/* Platform sections — multi-service homepage & service pages */
.platform-section {
  --section-pad-y: 2.75rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--section-pad-y) 1.25rem;
}

.platform-section--services {
  padding-bottom: 1.25rem;
}

.platform-section--activity {
  padding-top: 0.35rem;
  padding-bottom: 2.5rem;
}

.platform-section--shop {
  padding-top: 2.5rem;
}

.platform-section-head {
  text-align: center;
  margin-bottom: 1.75rem;
}

.platform-section-head--compact {
  margin-bottom: 1.15rem;
}

.platform-section-head h2 {
  margin: 0 0 0.4rem;
}

.platform-section-head p {
  color: #b87878;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.platform-section-link a {
  color: #ff8080;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s ease;
}

.platform-section-link a:hover {
  color: #ffb0b0;
}

/* ── Premium service cards ── */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.35rem;
}

.service-card--premium {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.5rem 1.45rem 1.35rem;
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  background:
    linear-gradient(148deg, rgba(118, 28, 42, 0.94) 0%, rgba(52, 10, 16, 0.97) 52%, rgba(28, 6, 10, 0.98) 100%);
  border: 1px solid rgba(255, 150, 150, 0.16);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 200, 200, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  will-change: transform;
}

.service-card-shine {
  position: absolute;
  top: -35%;
  right: -25%;
  width: 55%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(255, 120, 120, 0.14) 0%, transparent 68%);
  pointer-events: none;
}

.service-card--premium::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 38%);
  pointer-events: none;
}

.service-card--premium:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 120, 130, 0.32);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.44),
    0 0 0 1px rgba(229, 9, 20, 0.12),
    inset 0 1px 0 rgba(255, 210, 210, 0.14);
}

.service-card--featured {
  border-color: rgba(255, 100, 110, 0.28);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(229, 9, 20, 0.1),
    inset 0 1px 0 rgba(255, 210, 210, 0.12);
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.service-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #ff5050 0%, #e50914 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 14px rgba(229, 9, 20, 0.35);
}

.service-card-badge--soft {
  color: #ffd8d8;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 180, 180, 0.22);
  box-shadow: none;
}

.service-card-icon-wrap {
  margin-left: auto;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 160, 160, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-card-icon-wrap .service-card-icon {
  width: 28px;
  height: 28px;
  color: #ff8585;
}

.service-card-icon-wrap .service-card-icon svg {
  width: 26px;
  height: 26px;
}

.service-card-title {
  margin: 0;
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff0f0;
  letter-spacing: 0.01em;
}

.service-card-desc {
  margin: 0;
  flex: 1;
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #ddb0b0;
}

.service-card-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
  align-self: flex-start;
  font-size: 0.86rem;
  font-weight: 600;
  color: #ffc8c8;
  transition: color 0.15s ease, gap 0.15s ease;
}

.service-card-cta svg {
  transition: transform 0.15s ease;
}

.service-card--premium:hover .service-card-cta {
  color: #fff;
}

.service-card--premium:hover .service-card-cta svg {
  transform: translateX(3px);
}

.service-card-cta--primary {
  padding: 0.5rem 0.95rem;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(165deg, #ff4545 0%, #e50914 48%, #b20710 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 6px 18px rgba(229, 9, 20, 0.32);
}

.service-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff7070;
  flex-shrink: 0;
}

.service-card-icon svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card .service-card-icon {
  margin: 0 auto;
}

@media (min-width: 768px) {
  .service-card--premium {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
}

/* Activity feed */
.activity-feed {
  background:
    linear-gradient(160deg, rgba(72, 14, 22, 0.92) 0%, rgba(32, 6, 10, 0.96) 100%);
  border-radius: 18px;
  border: 1px solid rgba(255, 140, 140, 0.14);
  padding: 0.85rem 1.2rem;
  max-height: 260px;
  overflow: hidden;
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 180, 180, 0.08);
}

.activity-feed-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.activity-feed-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(140, 40, 52, 0.28);
  font-size: 0.875rem;
  color: #e8b8b8;
  animation: feedSlideIn 0.4s ease;
}

.activity-feed-item:last-child { border-bottom: none; }

.activity-feed-body {
  flex: 1;
  min-width: 0;
}

.activity-feed-text {
  color: #ffe4e4;
  line-height: 1.45;
}

.activity-feed-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e50914;
  margin-top: 0.35rem;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(229, 9, 20, 0.55);
}

.activity-feed-time {
  font-size: 0.75rem;
  color: #a86868;
  white-space: nowrap;
}

@keyframes feedSlideIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .activity-feed-item {
    animation: none;
  }

  .service-card--premium {
    transition: none;
  }
}

/* Why choose us / benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.benefit-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 14px;
  border: 1px solid rgba(141, 123, 104, 0.1);
  text-align: center;
}

.benefit-card h4 {
  margin: 0.75rem 0 0.35rem;
  font-size: 1rem;
  color: var(--theme-font, #4a3c2e);
}

.benefit-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--theme-secondary, #a4907c);
}

/* FAQ accordion */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(141, 123, 104, 0.12);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--theme-font, #4a3c2e);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--theme-primary, #8d7b68);
  transition: transform 0.2s;
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 0.875rem;
  color: var(--theme-secondary, #a4907c);
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 1rem;
}

/* Share buttons */
.share-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* btn-share styled in platform.css bottom section */

/* Product reviews */
.product-reviews {
  margin-top: 2rem;
}

.reviews-grid {
  display: grid;
  gap: 1rem;
}

.review-card {
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  border: 1px solid rgba(141, 123, 104, 0.1);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.review-rating { color: #e6a817; font-size: 0.85rem; }

/* Service page hero */
.service-hero {
  text-align: center;
  padding: 3rem 1.25rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.service-hero:not(.service-hero--flirty) h1 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--theme-font, #4a3c2e);
  margin: 0 0 0.75rem;
}

.service-hero:not(.service-hero--flirty) p {
  color: var(--theme-secondary, #a4907c);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.service-hero-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.platform-closed-card {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(229, 60, 75, 0.42);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(229, 9, 20, 0.22) 0%, transparent 68%),
    linear-gradient(165deg, rgba(74, 16, 24, 0.98) 0%, rgba(18, 4, 6, 0.99) 100%);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 120, 130, 0.06) inset;
}

.platform-closed-glow {
  position: absolute;
  inset: -40% -20% auto;
  height: 70%;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.28) 0%, transparent 68%);
  pointer-events: none;
  animation: platform-closed-pulse 4s ease-in-out infinite;
}

@keyframes platform-closed-pulse {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

.platform-closed-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2.15rem 1.65rem 2rem;
}

.platform-closed-badge {
  display: inline-block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffc8c8;
  background: rgba(229, 9, 20, 0.16);
  border: 1px solid rgba(229, 60, 75, 0.38);
  border-radius: 999px;
  padding: 0.38rem 0.85rem;
  margin-bottom: 1rem;
  box-shadow: 0 0 18px rgba(229, 9, 20, 0.18);
}

.platform-closed-flirt {
  margin-bottom: 0.85rem;
}

.platform-closed-shadow {
  margin-bottom: -0.05em !important;
}

.platform-closed-title {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.15rem 0.45rem;
}

.platform-closed-msg {
  margin: 0 auto 1.35rem;
  max-width: 26rem;
  color: rgba(255, 210, 210, 0.82);
  line-height: 1.7;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(0.88rem, 2vw, 0.96rem);
  font-style: italic;
}

.platform-closed-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(229, 60, 75, 0.55);
  background: rgba(229, 9, 20, 0.12);
  color: #ffb8b8;
  text-decoration: none;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.18s;
}

.platform-closed-btn:hover {
  background: rgba(229, 9, 20, 0.24);
  border-color: rgba(255, 100, 110, 0.75);
  color: #ffe0e0;
  transform: translateY(-1px);
}

.platform-closed-card h1,
.platform-closed-card h2 {
  margin: 0;
}

.btn-primary-platform {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  background: var(--theme-primary, #8d7b68);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
}

.btn-primary-platform:hover { opacity: 0.9; }

.btn-outline-platform {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--theme-primary, #8d7b68);
  color: var(--theme-primary, #8d7b68);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  background: transparent;
  cursor: pointer;
}

/* Package / plan cards — maroon aesthetic, readable (no grey glass) */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.package-card {
  background: linear-gradient(155deg, #701828 0%, #4a1018 46%, #2a080c 100%);
  border: 1px solid rgba(190, 55, 68, 0.58);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 120, 120, 0.1),
    0 0 0 1px rgba(229, 9, 20, 0.06);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.package-card-media {
  border-radius: 10px;
  overflow: hidden;
  margin: -0.25rem 0 0.25rem;
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.25);
}

.package-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.package-card:hover {
  transform: translateY(-3px);
  border-color: rgba(229, 60, 75, 0.72);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.52),
    0 0 24px rgba(229, 9, 20, 0.16),
    inset 0 1px 0 rgba(255, 130, 130, 0.12);
}

.package-card h3 {
  margin: 0;
  font-size: 1.15rem;
  color: #ffe4e4;
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 800;
  text-transform: lowercase;
}

.package-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #e0a8a8;
  line-height: 1.55;
  font-style: italic;
}

.package-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff7070;
}

.package-features {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.package-features li {
  font-size: 0.85rem;
  color: #ffc8c8;
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ff7070;
  font-weight: 700;
}

.package-card .btn-primary-platform {
  background: linear-gradient(165deg, #ff4545 0%, #e50914 48%, #b20710 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff !important;
  box-shadow: 0 4px 18px rgba(229, 9, 20, 0.38);
}

.package-card .btn-outline-platform {
  background: linear-gradient(155deg, #8a2030 0%, #5c1420 50%, #3a0a12 100%) !important;
  border: 1px solid rgba(220, 70, 85, 0.55) !important;
  color: #ffd8d8 !important;
}

.package-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* Info cards */
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.info-card {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  border: 1px solid rgba(141, 123, 104, 0.1);
}

.info-card h4 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--theme-font, #4a3c2e);
}

.info-card p, .info-card ul {
  margin: 0;
  font-size: 0.85rem;
  color: var(--theme-secondary, #a4907c);
  line-height: 1.5;
}

.info-card ul { padding-left: 1.1rem; }

/* Announcement bar */
.announcement-bar {
  background: var(--theme-primary, #8d7b68);
  color: #fff;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* Related products */
.related-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}

/* related-product-card — full styles at end of file */

/* Platform forms (website inquiry, etc.) */
.platform-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.platform-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--theme-font, #4a3c2e);
}

.platform-form input,
.platform-form textarea,
.platform-form select {
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(141, 123, 104, 0.25);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-family: inherit;
}

.platform-form textarea { min-height: 100px; resize: vertical; }

.platform-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.platform-form-full { grid-column: 1 / -1; }

/* Page transition hint */
body.page-loading { opacity: 0.98; }

.plugging-self-service-note {
  max-width: 520px;
  margin: 0.5rem auto 0;
  font-size: clamp(0.78rem, 1.8vw, 0.88rem);
  color: #c88888;
  line-height: 1.6;
  text-align: center;
  opacity: 0.95;
}

@media (max-width: 640px) {
  .platform-section { --section-pad-y: 2.15rem; padding: var(--section-pad-y) 1rem; }
  .platform-section--services { padding-bottom: 0.85rem; }
  .platform-section--activity { padding-top: 0.25rem; }
  .service-cards-grid { gap: 1rem; }
  .service-hero { padding: 2rem 1rem 1.5rem; }
}

/* —— Homepage About Me —— */
.about-portfolio-section {
  position: relative;
}

.about-page-head {
  padding-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.about-portfolio--page {
  max-width: 520px;
  margin: 0 auto 3rem;
}

.about-portfolio-sub {
  letter-spacing: 0.02em;
  opacity: 1;
  color: #c98888;
  font-style: italic;
}

.about-portfolio-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.about-portfolio--home {
  background: linear-gradient(160deg, rgba(88, 18, 28, 0.96) 0%, rgba(48, 10, 16, 0.97) 50%, rgba(24, 5, 8, 0.98) 100%) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(180, 50, 62, 0.58) !important;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 120, 120, 0.1),
    0 0 0 1px rgba(229, 9, 20, 0.08);
}

.about-portfolio--home .about-portfolio-glow {
  background: rgba(180, 30, 45, 0.35);
}

.about-portfolio--home .about-name {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 400;
  color: #ffd0d0;
  text-shadow: 0 0 20px rgba(229, 9, 20, 0.3);
}

.about-portfolio--home .about-eyebrow {
  color: #e87878;
  letter-spacing: 0.22em;
}

.about-portfolio--home .about-bio-text {
  color: #e0b0b0;
}

.about-portfolio--home .about-location {
  color: #c08080;
}

.about-portfolio--home .about-social-label {
  color: #e07070;
}

.about-portfolio--home .about-social-pill {
  background: linear-gradient(160deg, rgba(90, 20, 30, 0.85), rgba(40, 8, 12, 0.9));
  border-color: rgba(160, 45, 58, 0.45);
  padding: 0.26rem 0.68rem 0.26rem 0.26rem;
}

.about-portfolio--home .about-social-pill-label {
  color: #d89898;
}

.about-portfolio--home .about-social-pill-icon {
  background: rgba(120, 25, 35, 0.65);
  color: #ffb0b0;
}

.about-portfolio--home .about-divider::before,
.about-portfolio--home .about-divider::after {
  background: linear-gradient(90deg, transparent, rgba(160, 45, 55, 0.45), transparent);
}

.about-portfolio--home .about-divider {
  color: #a84848;
}

.guide-links-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-content: flex-start;
  align-items: flex-start;
}

.guide-link-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 100%;
  min-height: 0;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  color: #f0c0c0;
  background: linear-gradient(155deg, #681828 0%, #421018 48%, #28080c 100%) !important;
  border: 1px solid rgba(180, 50, 62, 0.55) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 110, 110, 0.1);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.guide-link-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(220, 60, 75, 0.72);
  background: linear-gradient(155deg, #701828 0%, #4a0c14 50%, #2e080c 100%);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.48), 0 0 20px rgba(229, 9, 20, 0.18);
}

.guide-link-btn-label {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  line-height: 1.2;
  color: #ffd4d4;
}

.guide-link-btn-hint {
  display: none;
}

.guide-link-btn--hot {
  background: linear-gradient(155deg, #7a1828 0%, #520f18 45%, #32080c 100%);
  border-color: rgba(229, 60, 75, 0.62);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.45),
    0 0 18px rgba(229, 9, 20, 0.12),
    inset 0 1px 0 rgba(255, 120, 120, 0.12);
}

.guide-link-btn--hot .guide-link-btn-label {
  color: #ffe0e0;
}

@media (max-width: 900px) {
  .about-portfolio-layout {
    grid-template-columns: 1fr;
  }
}

/* ── Shop catalog cards — premium maroon gloss ── */
.product-card.catalog-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px !important;
  background: linear-gradient(155deg, rgba(112, 24, 40, 0.96) 0%, rgba(42, 8, 12, 0.98) 55%, rgba(22, 4, 7, 0.99) 100%) !important;
  border: 1px solid rgba(255, 150, 150, 0.16) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow:
    0 14px 38px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 200, 200, 0.12) !important;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.catalog-card-gloss {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.product-card.catalog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.product-card.catalog-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 120, 130, 0.36) !important;
  box-shadow:
    0 26px 52px rgba(0, 0, 0, 0.52),
    0 0 32px rgba(229, 9, 20, 0.16),
    inset 0 1px 0 rgba(255, 210, 210, 0.16) !important;
}

.catalog-card .catalog-card-link {
  position: relative;
  z-index: 1;
}

.catalog-card .catalog-card-name {
  color: #ffe4e4;
}

.catalog-card .catalog-desc {
  color: #e0a8a8;
  font-size: 0.78rem;
  line-height: 1.45;
}

.catalog-card .catalog-card-category,
.catalog-card .catalog-price-label {
  color: #d89898;
}

.catalog-card .catalog-price-value,
.catalog-card .catalog-price-currency,
.catalog-card .catalog-price-major,
.catalog-card .catalog-price-minor {
  color: #ff7070;
}

.catalog-card .catalog-card-foot {
  border-top-color: rgba(190, 55, 68, 0.4);
}

.catalog-card .catalog-card-arrow {
  color: #ff7070;
  background: rgba(229, 9, 20, 0.15);
  border-radius: 8px;
}

.catalog-card .catalog-card-icon .logo.has-icon {
  background: linear-gradient(145deg, #3a0a12 0%, #120204 100%) !important;
  border: 1px solid rgba(229, 60, 75, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 120, 120, 0.1);
}

.catalog-card .catalog-card-icon .logo img,
.catalog-card .catalog-card-icon .logo-img {
  width: 62%;
  height: 62%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.catalog-card .product-icon-fallback {
  color: #ffffff;
  font-size: 1.1rem;
}

/* Info cards */
.info-card {
  background: linear-gradient(155deg, #701828 0%, #4a1018 46%, #2a080c 100%) !important;
  border: 1px solid rgba(190, 55, 68, 0.58) !important;
  backdrop-filter: none !important;
  color: #e0a8a8;
}

.info-card h4 {
  color: #ffe4e4 !important;
}

.info-card p,
.info-card ul,
.info-card li {
  color: #ffc8c8 !important;
}

.platform-section .benefit-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #701828 0%, #4a1018 46%, #2a080c 100%) !important;
  border: 1px solid rgba(190, 55, 68, 0.45) !important;
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 200, 200, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.benefit-card--float:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 120, 130, 0.32) !important;
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.48),
    0 0 24px rgba(229, 9, 20, 0.12),
    inset 0 1px 0 rgba(255, 210, 210, 0.14);
}

.benefit-card-gloss {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.benefit-card .service-card-icon {
  position: relative;
  z-index: 1;
}

.platform-section .benefit-card h4 {
  color: #ffe4e4;
}

.platform-section .benefit-card p {
  color: #d89898;
}

.platform-section .benefit-card .service-card-icon {
  color: #ff7070;
}

.platform-empty-hint {
  text-align: center;
  color: var(--text-muted, #b8a0a4);
  font-size: 0.9rem;
  margin: 0.5rem 0 0;
}

.platform-empty-hint a {
  color: var(--accent, #e50914);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.15rem;
}

.testimonial-card {
  padding: 1.25rem 1.2rem;
  border-radius: 16px;
  background: linear-gradient(155deg, rgba(92, 20, 32, 0.95) 0%, rgba(36, 8, 12, 0.98) 100%);
  border: 1px solid rgba(255, 140, 140, 0.14);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.testimonial-card-top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffe4e4;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 160, 160, 0.2);
  flex-shrink: 0;
}

.testimonial-meta {
  flex: 1;
  min-width: 0;
}

.testimonial-name {
  display: block;
  font-size: 0.92rem;
  color: #fff0f0;
}

.testimonial-role {
  display: block;
  font-size: 0.75rem;
  color: #b88888;
}

.testimonial-service-badge {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  color: #ffc8c8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 140, 140, 0.18);
  flex-shrink: 0;
}

.testimonial-body {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #ddb8b8;
}

.testimonial-stars {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: #ffb040;
}

.related-product-card {
  text-align: center;
  text-decoration: none;
  color: inherit;
  padding: 1rem;
  background: linear-gradient(155deg, #701828 0%, #4a1018 46%, #2a080c 100%);
  border-radius: 12px;
  border: 1px solid rgba(190, 55, 68, 0.58);
  transition: transform 0.15s, border-color 0.15s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.related-product-card strong {
  color: #ffe4e4;
  font-size: 0.88rem;
  display: block;
  margin-top: 0.5rem;
}

.related-product-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #3a0a12 0%, #120204 100%);
  border: 1px solid rgba(229, 60, 75, 0.45);
}

.related-product-icon .logo-img,
.related-product-icon img {
  width: 62%;
  height: 62%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.related-product-price {
  font-size: 0.8rem;
  margin-top: 0.25rem;
  color: #d89898;
}

.related-product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(229, 60, 75, 0.72);
}

/* Share / copy link — always at page bottom */
.page-share-bar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 2rem;
  border-top: 1px solid rgba(190, 55, 68, 0.35);
}

.page-share-bar .share-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-share {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(229, 60, 75, 0.5);
  background: linear-gradient(155deg, #5c1420 0%, #3a0a12 100%);
  color: #ffd4dc;
  font-size: 0.82rem;
  font-style: italic;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.btn-share:hover {
  background: linear-gradient(155deg, #701828 0%, #4a1018 100%);
  border-color: rgba(255, 100, 110, 0.65);
  color: #fff;
}

.plugging-share-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem 1.5rem;
}

/* Website inquiry chat */
.inquiry-chat-wrap { max-width: 720px; margin: 0 auto; }
.inquiry-chat-head { margin-bottom: 1rem; }
.inquiry-back { color: var(--muted-color, #a0a0b0); text-decoration: none; font-size: 0.9rem; }
.inquiry-meta { color: var(--muted-color, #a0a0b0); font-size: 0.9rem; margin-top: 0.35rem; }
.inquiry-chat-panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}
.inquiry-chat-messages {
  flex: 1;
  padding: 1rem;
  max-height: 55vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.inquiry-msg { max-width: 88%; padding: 0.65rem 0.85rem; border-radius: 12px; }
.inquiry-msg--client { align-self: flex-end; background: rgba(229,9,20,0.15); border: 1px solid rgba(229,9,20,0.25); }
.inquiry-msg--admin { align-self: flex-start; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); }
.inquiry-msg-meta { font-size: 0.75rem; opacity: 0.75; margin-bottom: 0.25rem; }
.inquiry-msg-body { font-size: 0.95rem; line-height: 1.45; word-break: break-word; }
.inquiry-chat-compose {
  padding: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.inquiry-chat-compose input,
.inquiry-chat-compose textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.25);
  color: inherit;
  font: inherit;
}
.inquiry-closed-note, .inquiry-empty { padding: 1rem; text-align: center; color: var(--muted-color); }
.buyer-service-unread { color: #e50914; font-size: 0.8rem; margin-left: 0.35rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

@media (max-width: 640px) {
  .inquiry-chat-messages { max-height: 50vh; }
  .inquiry-msg { max-width: 95%; }
}

/* Website package detail */
.package-detail-hero {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
  padding-top: 1.5rem;
}
.package-detail-badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(229, 9, 20, 0.15);
  border: 1px solid rgba(229, 9, 20, 0.35);
  color: #ffb4b4;
}
.package-detail-price {
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 700;
  color: #ff6b6b;
  margin: 0.5rem 0 1rem;
}
.package-detail-lead {
  color: var(--muted-color);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.55;
}
.package-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto 2.5rem;
  padding: 0 1rem;
}
.package-detail-media img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  object-fit: cover;
  max-height: 320px;
}
.package-detail-section {
  background: rgba(12, 4, 6, 0.55);
  border: 1px solid rgba(229, 9, 20, 0.18);
  border-radius: 16px;
  padding: 1.35rem 1.25rem;
}
.package-detail-body {
  color: var(--text-muted, #b8a0a4);
  line-height: 1.6;
  margin-bottom: 1rem;
  white-space: pre-line;
}
.package-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.package-detail-related {
  max-width: 960px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}
.package-grid--related {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.package-card--compact .package-card-body {
  padding: 0.85rem 1rem 1rem;
}
@media (min-width: 768px) {
  .package-detail-grid {
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.4fr);
    align-items: start;
  }
}
