@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --color-primary: #7C3AED;
  --color-primary-light: #A855F7;
  --color-primary-pale: #C084FC;
  --color-primary-ghost: #F0ABFC;
  --color-dark: #1E1035;
  --color-dark-mid: #2D1B69;
  --color-bg: #F8F4FF;
  --color-bg-card: rgba(255,255,255,0.65);
  --color-text: #1E1035;
  --color-text-mid: #4A3B7A;
  --color-text-muted: #7A6FA0;
  --color-white: #FFFFFF;
  --color-accent: #F0ABFC;
  --color-success: #22C55E;
  --color-error: #EF4444;
  --color-border: rgba(124,58,237,0.18);
  --radius-btn: 4px 20px 4px 20px;
  --radius-card: 18px;
  --radius-inner: 10px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-card: 0 8px 40px rgba(124,58,237,0.13);
  --shadow-btn: 0 4px 24px rgba(124,58,237,0.32);
  --nav-width: 0px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
  margin-left: var(--nav-width);
  transition: margin-left 0.4s ease;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  box-sizing: border-box;
}

.container--narrow {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

/* ============================================================
   ON-DARK SCOPING
   ============================================================ */
.on-dark { color: rgba(255,255,255,0.85); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: #fff; }
.on-dark p { color: rgba(255,255,255,0.72); }
.on-dark a:not(.btn) { color: inherit; }
.on-dark .section-label { color: rgba(255,255,255,0.55); }

/* ============================================================
   SIDE NAVIGATION (V5)
   ============================================================ */
.side-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  background: rgba(30,16,53,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid rgba(192,132,252,0.15);
  display: flex;
  flex-direction: column;
  padding: 32px 0;
  z-index: 1000;
  overflow: hidden;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.side-nav.open {
  transform: translateX(0);
}

.side-nav__logo {
  padding: 0 28px 32px;
  border-bottom: 1px solid rgba(192,132,252,0.1);
}

.side-nav__logo a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  display: block;
  letter-spacing: -0.03em;
}

.side-nav__logo span {
  color: var(--color-primary-pale);
  font-style: italic;
}

.side-nav__links {
  flex: 1;
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.side-nav__links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  border-right: 3px solid transparent;
  transition: all 0.25s ease;
  position: relative;
}

.side-nav__links a:hover,
.side-nav__links a.active {
  color: #fff;
  background: rgba(168,85,247,0.12);
  border-right-color: var(--color-primary-pale);
}

.side-nav__links a .nav-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.25s ease;
}

.side-nav__links a:hover .nav-icon,
.side-nav__links a.active .nav-icon {
  opacity: 1;
}

.side-nav__cta {
  padding: 0 20px 0;
}

.side-nav__cta a {
  display: block;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  padding: 14px 20px;
  border-radius: var(--radius-btn);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: opacity 0.25s, transform 0.25s;
  box-shadow: var(--shadow-btn);
}

.side-nav__cta a:hover { opacity: 0.9; transform: translateY(-2px); }

.side-nav__advertorial {
  padding: 16px 28px 0;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-body);
  line-height: 1.5;
}

/* Nav toggle — sits beside the open panel so it never covers FitVilleDia */
.nav-toggle {
  display: flex;
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1100;
  background: var(--color-dark);
  border: 1px solid rgba(192,132,252,0.3);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  transition: left 0.4s ease, transform 0.3s ease;
}

.nav-toggle.open {
  left: 276px; /* 260px nav + 16px gap — clear of FitVilleDia logo */
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* When menu is open, reserve space so content isn't under the panel */
body:has(.side-nav.open) {
  margin-left: 260px;
}

body:has(.side-nav.open) .sticky-cta {
  left: 260px;
}

@media (max-width: 900px) {
  body:has(.side-nav.open) {
    margin-left: 0;
  }

  body:has(.side-nav.open) .sticky-cta {
    left: 0;
  }

  .nav-toggle.open {
    left: 220px; /* still clear of logo inside 260px drawer */
  }
}

/* ============================================================
   ADVERTORIAL BANNER
   ============================================================ */
.advertorial-banner {
  background: rgba(124,58,237,0.08);
  border-bottom: 1px solid rgba(124,58,237,0.12);
  padding: 8px 20px;
  text-align: center;
  font-size: 11px;
  font-family: var(--font-body);
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

.advertorial-banner strong { color: var(--color-primary); }

/* ============================================================
   SECTION LABELS / EYEBROWS
   ============================================================ */
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(124,58,237,0.08);
  border-radius: 50px;
  border: 1px solid rgba(124,58,237,0.15);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(42px, 6vw, 80px); font-weight: 700; }
h2 { font-size: clamp(32px, 4vw, 54px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }

p { font-family: var(--font-body); line-height: 1.7; font-size: 16px; color: var(--color-text-mid); }

.outline-word {
  -webkit-text-stroke: 2px var(--color-primary-pale);
  color: transparent;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #fff;
  box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124,58,237,0.4);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn--ghost-dark {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}

.btn--ghost-dark:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.btn--large { padding: 18px 40px; font-size: 16px; }
.btn--full { width: 100%; }

/* ============================================================
   PHOTO PLACEHOLDERS
   ============================================================ */
.photo-placeholder {
  background: linear-gradient(135deg, #ff6eb4, #ff3d9a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  min-height: 200px;
  border-radius: inherit;
}

.photo-placeholder__icon { font-size: 32px; }
.photo-placeholder__label {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: sans-serif;
  text-align: center;
  padding: 0 16px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes blob-morph {
  0%,100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

@keyframes aurora-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes draw-line {
  from { stroke-dashoffset: 300; }
  to { stroke-dashoffset: 0; }
}

@keyframes ripple {
  0% { transform: scale(0); opacity: 0.6; }
  100% { transform: scale(4); opacity: 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

/* stagger */
.stagger-child {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stagger-visible .stagger-child { opacity: 1; transform: translateY(0); }
.stagger-child:nth-child(1) { transition-delay: 0s; }
.stagger-child:nth-child(2) { transition-delay: 0.12s; }
.stagger-child:nth-child(3) { transition-delay: 0.24s; }
.stagger-child:nth-child(4) { transition-delay: 0.36s; }
.stagger-child:nth-child(5) { transition-delay: 0.48s; }
.stagger-child:nth-child(6) { transition-delay: 0.6s; }

/* ============================================================
   HERO (H — Scene + Product)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #1E1035 0%, #2D1B69 35%, #4C1D95 65%, #1E1035 100%);
  background-size: 300% 300%;
  animation: aurora-shift 12s ease infinite;
}

.hero__blob {
  position: absolute;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: blob-morph 10s ease infinite;
  pointer-events: none;
  z-index: 1;
}

.hero__blob--1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(ellipse, rgba(168,85,247,0.35) 0%, transparent 70%);
  top: -100px;
  right: -60px;
}

.hero__blob--2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(ellipse, rgba(240,171,252,0.2) 0%, transparent 70%);
  bottom: -80px;
  left: 10%;
  animation-delay: -5s;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 4, 30, 0.38);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__content {
  animation: fade-up 0.9s ease forwards;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,171,252,0.12);
  border: 1px solid rgba(240,171,252,0.3);
  border-radius: 50px;
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  position: relative;
}

.hero__badge-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--color-accent);
  animation: pulse-ring 1.8s ease infinite;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero__price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}

.hero__price-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__price-current {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--color-accent);
}

.hero__cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero__trust-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12px;
  font-family: var(--font-body);
  color: rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);
}

.hero__trust-pill svg { width: 14px; height: 14px; flex-shrink: 0; }

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fade-up 0.9s ease 0.2s forwards;
  opacity: 0;
}

.hero__img-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  overflow: visible;
}

.hero__img-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(168,85,247,0.45));
  animation: float 6s ease-in-out infinite;
}

.hero__float-card {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 12px 16px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  z-index: 10;
  white-space: nowrap;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.hero__float-card--tl {
  top: 40px;
  left: -60px;
  animation: fade-up 0.8s ease 0.6s forwards;
  opacity: 0;
}

.hero__float-card--tr {
  top: 160px;
  right: -50px;
  animation: fade-up 0.8s ease 0.8s forwards;
  opacity: 0;
}

.hero__float-card--br {
  bottom: 100px;
  right: -40px;
  animation: fade-up 0.8s ease 1s forwards;
  opacity: 0;
}

.hero__float-card--bl {
  bottom: 60px;
  left: -50px;
  animation: fade-up 0.8s ease 1.2s forwards;
  opacity: 0;
}

.hero__float-card .card-val {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-accent);
  display: block;
  line-height: 1;
}

.hero__float-card .card-label {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  display: block;
  margin-top: 2px;
}

/* ============================================================
   STATS STRIP (N4 — horizontal dark strip)
   ============================================================ */
.stats-strip {
  background: var(--color-dark);
  position: relative;
  z-index: 10;
  margin-top: -1px;
}

.stats-strip .container {
  display: flex;
  align-items: stretch;
  border-top: 1px solid rgba(192,132,252,0.12);
  border-bottom: 1px solid rgba(192,132,252,0.12);
}

.stat-item {
  flex: 1;
  padding: 28px 24px;
  text-align: center;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(192,132,252,0.2);
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--color-accent);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item__label {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   MARQUEE / TICKER
   ============================================================ */
.marquee-section {
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
  gap: 0;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

/* ============================================================
   PROBLEM SECTION — dark banner, large statement
   ============================================================ */
.problem-section {
  background: var(--color-dark-mid);
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  margin-top: -60px;
  z-index: 4;
}

.problem-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(168,85,247,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.problem-section .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-section__visual {
  position: relative;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
}

.problem-section__quote {
  position: relative;
}

.problem-section__qmark {
  font-family: var(--font-display);
  font-size: 180px;
  font-weight: 700;
  color: rgba(168,85,247,0.08);
  position: absolute;
  top: -60px;
  left: -30px;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.problem-section__pain-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.problem-pain-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(168,85,247,0.08);
  border-left: 3px solid var(--color-primary-pale);
  border-radius: 0 12px 12px 0;
  transition: background 0.3s ease;
}

.problem-pain-item:hover { background: rgba(168,85,247,0.15); }

.problem-pain-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-pain-item__text {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

/* ============================================================
   PRODUCT SECTION
   ============================================================ */
.product-section {
  padding: 120px 0 80px;
  position: relative;
  z-index: 5;
  background: var(--color-bg);
  margin-top: -40px;
}

.product-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  height: 160px;
  background: var(--color-bg);
  clip-path: ellipse(80% 100% at 50% 100%);
  z-index: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 560px; margin-inline: auto; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 1;
}

.product-card {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(124,58,237,0.12);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168,85,247,0.04), transparent);
  pointer-events: none;
  z-index: 0;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(124,58,237,0.2);
}

.product-card__img {
  width: 100%;
  height: 280px;
  overflow: visible;
  background: linear-gradient(135deg, rgba(240,171,252,0.12), rgba(168,85,247,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}

.product-card__body {
  padding: 24px 28px 28px;
  position: relative;
  z-index: 1;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.product-card__desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-card__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}

/* ============================================================
   BENEFITS SECTION (stacked rows)
   ============================================================ */
.benefits-section {
  padding: 100px 0;
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
  z-index: 4;
  margin-top: -40px;
}

.benefits-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(124,58,237,0.22) 0%, transparent 70%);
  pointer-events: none;
}

.benefits-section .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.benefit-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(192,132,252,0.1);
  transition: background 0.3s ease;
  position: relative;
}

.benefit-row:last-child { border-bottom: none; }

.benefit-row__num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary-pale);
  letter-spacing: 0.08em;
  min-width: 28px;
  margin-top: 4px;
}

.benefit-row__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(168,85,247,0.15);
  border: 1px solid rgba(168,85,247,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-row__icon svg { width: 22px; height: 22px; }

.benefit-row__body {}

.benefit-row__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.benefit-row__text {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.benefits-visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-visual__img {
  width: 100%;
  max-width: 440px;
  height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(168,85,247,0.35));
  animation: float 7s ease-in-out infinite;
}

.benefits-visual__ring {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(168,85,247,0.15);
  animation: spin-slow 30s linear infinite;
}

.benefits-visual__ring--2 {
  width: 480px;
  height: 480px;
  border-color: rgba(240,171,252,0.08);
  animation-duration: 20s;
  animation-direction: reverse;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section {
  padding: 100px 0;
  background: var(--color-bg);
  position: relative;
  z-index: 5;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: contain;
  background: rgba(240,171,252,0.08);
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,16,53,0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
}

/* ============================================================
   HOW IT WORKS — vertical timeline
   ============================================================ */
.how-section {
  padding: 100px 0;
  background: var(--color-dark-mid);
  position: relative;
  overflow: hidden;
  z-index: 4;
}

.how-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 30%, rgba(168,85,247,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.how-section .container {
  position: relative;
  z-index: 1;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 740px;
  margin: 60px auto 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-primary-pale), transparent);
}

.timeline-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding-bottom: 48px;
  position: relative;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(124,58,237,0.2), 0 0 0 8px rgba(124,58,237,0.08);
}

.timeline-item__content {
  padding-top: 12px;
}

.timeline-item__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.timeline-item__text {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison-section {
  padding: 100px 0;
  background: var(--color-bg);
  position: relative;
  z-index: 5;
}

.table-scroll {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(124,58,237,0.12);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  background: #fff;
}

.spec-table th, .spec-table td {
  padding: 18px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(124,58,237,0.07);
  font-size: 14px;
  font-family: var(--font-body);
}

.spec-table thead th {
  background: var(--color-dark);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}

.spec-table__label {
  background: rgba(248,244,255,0.8);
  font-weight: 600;
  text-align: left;
  font-family: var(--font-display);
  color: var(--color-text);
}

.spec-table tbody th.spec-table__label { text-align: left; }

.spec-table__hl {
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
}

.spec-table thead th.spec-table__hl { background: var(--color-primary); }

.spec-table__check { color: #22C55E; font-size: 18px; }
.spec-table__cross { color: #EF4444; font-size: 18px; }

.spec-table tbody tr:hover .spec-table__label { background: rgba(124,58,237,0.06); }

/* ============================================================
   TESTIMONIALS — masonry-style editorial
   ============================================================ */
.testimonials-section {
  padding: 100px 0;
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
  z-index: 4;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(124,58,237,0.2) 0%, transparent 65%);
  pointer-events: none;
}

.testimonials-section .container { position: relative; z-index: 1; }

.testimonials-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.testimonial-card--featured {
  grid-column: 1 / 3;
  background: rgba(124,58,237,0.18);
  border-color: rgba(168,85,247,0.3);
}

.testimonial-card__qmark {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 700;
  color: rgba(192,132,252,0.25);
  line-height: 0.7;
  margin-bottom: 12px;
  display: block;
}

.testimonial-card__text {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card--featured .testimonial-card__text {
  font-size: 18px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-card__avatar .photo-placeholder {
  min-height: 44px;
}

.testimonial-card__name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 3px;
}

.testimonial-card__meta {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.testimonial-card__star {
  color: #F59E0B;
  font-size: 14px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: 100px 0;
  background: var(--color-bg);
  position: relative;
  z-index: 5;
}

.faq-list {
  max-width: 760px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(124,58,237,0.12);
  border-radius: var(--radius-inner);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover { box-shadow: 0 4px 24px rgba(124,58,237,0.1); }

.faq-item.faq--open { box-shadow: 0 8px 32px rgba(124,58,237,0.15); }

.faq-item.faq--open .faq-item__question {
  background: rgba(124,58,237,0.06);
  color: var(--color-primary);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark);
  text-align: left;
  transition: all 0.3s ease;
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(124,58,237,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.faq--open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--color-primary);
}

.faq-item__icon svg { width: 14px; height: 14px; }
.faq-item.faq--open .faq-item__icon svg { stroke: #fff; }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.faq--open .faq-item__answer { max-height: 400px; }

.faq-item__answer-inner {
  padding: 0 24px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-mid);
  line-height: 1.7;
}

/* ============================================================
   ORDER / CTA SECTION (Form Style B — Split screen)
   ============================================================ */
.order-section {
  padding: 0;
  background: var(--color-dark);
  position: relative;
  z-index: 4;
  overflow: hidden;
}

.order-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(124,58,237,0.3) 0%, transparent 60%);
  pointer-events: none;
}

.order-split {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 700px;
  position: relative;
  z-index: 1;
}

.order-split__left {
  padding: 80px clamp(32px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.order-split__visual {
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.order-split__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}

.order-trust-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.order-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.order-trust-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-accent);
}

.order-price-display {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 8px;
}

.order-price-display__label {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.order-price-display__amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: -0.03em;
}

.order-split__right {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255,255,255,0.08);
  padding: 60px clamp(28px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.order-form-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.order-form-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}

/* FORM */
.order-form { display: flex; flex-direction: column; gap: 18px; }

.amazon-order-cta {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.amazon-order-cta .btn--submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
}

.amazon-order-cta .btn--submit:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}


.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-inner);
  font-family: var(--font-body);
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input::placeholder { color: rgba(255,255,255,0.3); }

.form-group input:focus,
.form-group select:focus {
  border-color: var(--color-primary-pale);
  background: rgba(255,255,255,0.12);
}

.form-group input.error { border-color: var(--color-error); }
.form-group input.valid { border-color: var(--color-success); }

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  color: rgba(255,255,255,0.85);
}

.form-group select option {
  background: var(--color-dark);
  color: #fff;
}

.field-error {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-error);
  display: none;
  margin-top: 2px;
}

.field-error.visible { display: block; }

.btn--submit {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #fff;
  padding: 18px 32px;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-btn);
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn--submit:hover { opacity: 0.9; transform: translateY(-2px); }
.btn--submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn--submit .ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

.form-footer-note {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,4,30,0.8);
  backdrop-filter: blur(8px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--color-dark-mid);
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.modal-overlay.active .modal-box { transform: scale(1); }

.modal-box__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 0 12px rgba(124,58,237,0.15);
}

.modal-box__icon svg { width: 36px; height: 36px; }

.modal-box__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.modal-box__text {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 28px;
}

.modal-box__close {
  background: none;
  border: none;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.modal-box__close:hover { color: #fff; }
.modal-box__close svg { width: 20px; height: 20px; }

/* ============================================================
   STICKY CTA BAR
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: var(--nav-width);
  right: 0;
  background: rgba(30,16,53,0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(168,85,247,0.2);
  padding: 16px 32px;
  z-index: 900;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sticky-cta--visible { transform: translateY(0); }

.sticky-cta__info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sticky-cta__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.sticky-cta__price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-accent);
}

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee-section {
  padding: 80px 0;
  background: var(--color-bg);
  position: relative;
  z-index: 5;
}

.guarantee-card {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(124,58,237,0.15);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.guarantee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-pale));
}

.guarantee-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 0 16px rgba(124,58,237,0.08);
}

.guarantee-icon svg { width: 40px; height: 40px; }

.guarantee-card h3 {
  font-size: 28px;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.guarantee-card p {
  max-width: 520px;
  margin-inline: auto;
  font-size: 15px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #120926;
  padding: 60px 0 0;
  position: relative;
  z-index: 6;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  display: block;
}

.footer__brand span { color: var(--color-primary-pale); font-style: italic; }

.footer__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease;
}

.footer__links a:hover { color: var(--color-primary-pale); }

.footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__copy {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.footer__advertorial-note {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  max-width: 500px;
  line-height: 1.5;
  text-align: right;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero .container { gap: 40px; }
  .hero__float-card--tl { left: -20px; }
  .hero__float-card--tr { right: -20px; }
  .hero__float-card--br { right: -20px; }
  .hero__float-card--bl { left: -20px; }

  .testimonials-masonry { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card--featured { grid-column: 1 / -1; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero__subtitle { margin-inline: auto; }
  .hero__cta-row { justify-content: center; }
  .hero__trust-pills { justify-content: center; }
  .hero__float-card--tl, .hero__float-card--bl { left: 0; }
  .hero__float-card--tr, .hero__float-card--br { right: 0; }

  .stats-strip .container { flex-wrap: wrap; }
  .stat-item { min-width: 50%; }

  .problem-section .container { grid-template-columns: 1fr; gap: 40px; }
  .benefits-section .container { grid-template-columns: 1fr; gap: 40px; }
  .benefits-visual { height: 320px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: 1 / -1; }

  .order-split { grid-template-columns: 1fr; }
  .order-split__left { padding: 60px 32px 40px; }
  .order-split__right { padding: 40px 32px 60px; }

  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__advertorial-note { text-align: left; }

  .testimonials-masonry { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  h1 { font-size: clamp(34px, 9vw, 48px); }
  h2 { font-size: clamp(26px, 7vw, 38px); }

  .stat-item { min-width: 100%; }
  .stat-item + .stat-item::before { display: none; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: 1; }

  .hero__img-wrapper img { height: 320px; }

  .products-grid { grid-template-columns: 1fr; }

  .sticky-cta { flex-direction: column; padding: 12px 20px; }
}

/* Progressive-enhancement safety (injected by builder): scroll-reveal blocks stay VISIBLE
   unless JS confirms it can animate them by adding .js-anim to <html>. Guarantees a
   truncated page or a failed script can never leave content permanently hidden. */
html:not(.js-anim) .reveal,
html:not(.js-anim) .reveal-left,
html:not(.js-anim) .reveal-right,
html:not(.js-anim) .reveal-scale,
html:not(.js-anim) .stagger-child {
  opacity: 1 !important;
  transform: none !important;
}
