/* ============================================================
   RubGlow MAX — css/style.css
   Architecture: Section-scoped semantic + utility helpers
   Variables: --brand / --brand-alt / --highlight
   Typography: Playfair Display (headings) + DM Sans (body/UI)
   Theme: Dark navy + vibrant green + pastel mint
   ============================================================ */

/* ---- RESET & BASE ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { border: none; cursor: pointer; background: none; font-family: inherit; }

/* ---- CUSTOM PROPERTIES ------------------------------------ */
:root {
  /* Brand palette */
  --brand:           #2ECC71;
  --brand-alt:       #22A65A;
  --brand-glow:      rgba(46, 204, 113, 0.22);
  --brand-glow-lg:   rgba(46, 204, 113, 0.12);
  --highlight:       #A8FFD8;
  --highlight-soft:  #ECFDF5;

  /* Backgrounds */
  --bg-primary:      #080D18;
  --bg-secondary:    #0D1424;
  --bg-card:         #111A2E;
  --bg-card-alt:     #0F1729;
  --bg-stripe:       #0A1020;

  /* Text */
  --text-primary:    #F8FAFC;
  --text-secondary:  #94A3B8;
  --text-muted:      #64748B;
  --text-invert:     #080D18;

  /* Borders */
  --border-brand:    rgba(46, 204, 113, 0.18);
  --border-subtle:   rgba(255, 255, 255, 0.06);

  /* Typography */
  --font-display:    'Playfair Display', Georgia, serif;
  --font-ui:         'DM Sans', sans-serif;
  --font-body:       'DM Sans', sans-serif;

  /* Spacing scale */
  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   16px;
  --space-lg:   24px;
  --space-xl:   40px;
  --space-2xl:  64px;
  --space-3xl:  96px;
  --space-4xl:  128px;

  /* Radius */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-card:     0 4px 32px rgba(0, 0, 0, 0.5);
  --shadow-brand:    0 0 48px rgba(46, 204, 113, 0.18);
  --shadow-hover:    0 8px 48px rgba(0, 0, 0, 0.6);
  --shadow-btn:      0 4px 20px rgba(46, 204, 113, 0.35);

  /* Layout */
  --container:       1160px;
  --container-sm:    740px;
  --header-h:        72px;
}

/* ---- UTILITIES -------------------------------------------- */
.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--space-md);
}
.eyebrow-light { color: var(--highlight); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.01em;
}
.title-accent { color: var(--brand); font-style: italic; }
.title-light   { color: #FFFFFF; }
.center-title  { text-align: center; }

.section-body {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-md);
  max-width: 560px;
}

/* ---- BUTTONS ---------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--brand);
  color: var(--text-invert);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-btn);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--brand-alt);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(46, 204, 113, 0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border-subtle);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.btn-ghost:hover {
  color: var(--text-primary);
  border-color: var(--brand);
}

/* ---- SITE HEADER ------------------------------------------ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(8, 13, 24, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(8, 13, 24, 0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}
.header-logo { flex-shrink: 0; }
.header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  margin-left: auto;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--brand); }
.header-cta {
  margin-left: var(--space-lg);
  background: var(--brand);
  color: var(--text-invert);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.header-cta:hover {
  background: var(--brand-alt);
  transform: translateY(-1px);
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-md) var(--space-xl);
  gap: 2px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: color 0.2s ease;
}
.mobile-nav-link:hover { color: var(--brand); }
.mobile-nav-cta {
  margin-top: var(--space-sm);
  color: var(--brand);
  font-weight: 700;
  border-bottom: none;
}

/* ---- HERO SECTION ----------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero-bg-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.mesh-orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.4), transparent 70%);
  top: -10%; left: -5%;
}
.mesh-orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(168, 255, 216, 0.2), transparent 70%);
  bottom: 10%; right: 5%;
}
.mesh-orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.15), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-xl);
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: var(--space-3xl);
  align-items: center;
}
.hero-content {
  text-align: left;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid var(--border-brand);
  color: var(--brand);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: var(--space-lg);
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  text-align: left;
}
.headline-accent {
  color: var(--brand);
  font-style: italic;
  display: block;
}
.hero-body {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
  max-width: 480px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}
.hero-reassurance {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.reassure-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-brand);
  max-width: 480px;
  width: 100%;
}
.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.hero-img-badge {
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-lg);
  background: var(--brand);
  color: var(--text-invert);
  padding: 10px 18px;
  border-radius: var(--r-md);
  text-align: center;
  box-shadow: var(--shadow-btn);
}
.price-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
}
.price-value {
  display: block;
  font-family: var(--font-ui);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

/* ---- TRUST STRIP ------------------------------------------ */
.trust-strip {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--space-xl) 0;
}
.strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}
.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-ui);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-ui);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-align: center;
  max-width: 120px;
}
.stat-icon { margin-bottom: 4px; }
.strip-divider {
  width: 1px;
  height: 48px;
  background: var(--border-subtle);
  flex-shrink: 0;
}

/* ---- WHY SECTION ------------------------------------------ */
.why-section {
  padding: var(--space-4xl) 0;
  background: var(--bg-primary);
}
.why-section .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.why-img-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
}
.why-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.why-img-overlay {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
}
.overlay-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(8, 13, 24, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-primary);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-brand);
}
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.benefit-icon {
  width: 28px; height: 28px;
  background: rgba(46, 204, 113, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- WELLNESS SECTION ------------------------------------- */
.wellness-section {
  padding: var(--space-4xl) 0;
  background: var(--bg-stripe);
}
.wellness-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.wellness-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.pillar-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: var(--space-md) var(--space-lg);
  transition: border-color 0.2s ease;
}
.pillar-card:hover { border-color: var(--border-brand); }
.pillar-num {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.pillar-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.wellness-visual {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
}
.wellness-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

/* ---- CARDS SECTION ---------------------------------------- */
.cards-section {
  padding: var(--space-4xl) 0;
  background: var(--bg-primary);
}
.cards-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto var(--space-2xl);
}
.cards-intro {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: var(--space-sm);
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.habit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  animation-delay: var(--delay, 0ms);
}
.habit-card:hover {
  border-color: var(--border-brand);
  transform: translateY(-4px);
  box-shadow: var(--shadow-brand);
}
.card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.habit-card:hover .card-img { transform: scale(1.04); }
.card-img-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 13, 24, 0.6), transparent 60%);
}
.card-body {
  padding: var(--space-lg) var(--space-lg) var(--space-xl);
}
.card-icon {
  width: 40px; height: 40px;
  background: rgba(46, 204, 113, 0.1);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}
.card-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ---- PRODUCT SECTION -------------------------------------- */
.product-section {
  padding: var(--space-4xl) 0;
  background: var(--bg-secondary);
}
.product-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.product-img-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-2xl);
}
.product-glow {
  position: absolute;
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--brand-glow), transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.product-img {
  position: relative;
  z-index: 1;
  max-height: 420px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 48px rgba(46, 204, 113, 0.2));
  transition: transform 0.4s ease;
}
.product-img:hover { transform: scale(1.03) translateY(-4px); }
.product-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
  max-width: 520px;
}
.product-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.feat-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: var(--space-md);
}
.feat-dot {
  width: 8px; height: 8px;
  background: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
}
.feat-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.feat-item strong {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
}
.feat-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.product-ingredients {
  margin-bottom: var(--space-xl);
}
.ingr-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}
.ingr-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ingr-tag {
  background: rgba(46, 204, 113, 0.08);
  border: 1px solid var(--border-brand);
  color: var(--highlight);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: var(--r-pill);
}
.product-cta { margin-top: var(--space-sm); }

/* ---- ROUTINE SECTION -------------------------------------- */
.routine-section {
  position: relative;
  padding: var(--space-4xl) 0;
  overflow: hidden;
}
.routine-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.routine-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.routine-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(8, 13, 24, 0.96) 0%,
    rgba(13, 20, 36, 0.92) 50%,
    rgba(8, 13, 24, 0.96) 100%);
  z-index: 1;
}
.routine-section .section-inner { position: relative; z-index: 2; }
.routine-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}
.steps-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.step-item {
  background: rgba(17, 26, 46, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-brand);
  border-radius: var(--r-xl);
  padding: var(--space-xl) var(--space-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation-delay: var(--delay, 0ms);
}
.step-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-brand);
}
.step-num {
  font-family: var(--font-ui);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(46, 204, 113, 0.18);
  line-height: 1;
  margin-bottom: var(--space-md);
  letter-spacing: -0.04em;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}
.step-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ---- REVIEWS SECTION -------------------------------------- */
.reviews-section {
  padding: var(--space-4xl) 0;
  background: var(--bg-stripe);
}
.reviews-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: border-color 0.25s ease, transform 0.25s ease;
  animation-delay: var(--delay, 0ms);
}
.review-card:hover {
  border-color: var(--border-brand);
  transform: translateY(-3px);
}
.review-stars { flex-shrink: 0; }
.review-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: auto;
}
.author-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--brand), var(--brand-alt));
  color: var(--text-invert);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.author-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  font-style: normal;
}
.author-detail {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: normal;
}
.review-badge {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--brand);
  background: rgba(46, 204, 113, 0.1);
  padding: 3px 8px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

/* ---- ORDER SECTION ---------------------------------------- */
.order-section {
  position: relative;
  padding: var(--space-4xl) 0;
  background: var(--bg-primary);
  overflow: hidden;
}
.order-bg-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.order-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
}
.order-orb--1 {
  width: 500px; height: 500px;
  background: var(--brand);
  top: -10%; right: -5%;
}
.order-orb--2 {
  width: 300px; height: 300px;
  background: var(--brand-alt);
  bottom: 10%; left: 5%;
}
.order-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.order-body {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
}
.order-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.order-benefit-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.order-price-block {
  background: rgba(46, 204, 113, 0.06);
  border: 1px solid var(--border-brand);
  border-radius: var(--r-lg);
  padding: var(--space-lg) var(--space-xl);
  display: inline-flex;
  align-items: center;
}
.price-display {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
}
.price-main {
  font-family: var(--font-ui);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.03em;
}
.price-note {
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.form-card-header {
  background: linear-gradient(135deg, var(--brand), var(--brand-alt));
  padding: var(--space-lg) var(--space-xl);
}
.form-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-invert);
}
.form-card-sub {
  font-size: 0.8125rem;
  color: rgba(8, 13, 24, 0.7);
  margin-top: 4px;
}
.order-form {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-input {
  background: var(--bg-card-alt);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 12px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  width: 100%;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-glow);
}
.form-input.error { border-color: #EF4444; }
.field-error {
  font-size: 0.75rem;
  color: #EF4444;
  display: block;
  min-height: 1rem;
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}
.consent-check {
  width: 16px; height: 16px;
  accent-color: var(--brand);
  flex-shrink: 0;
  margin-top: 3px;
  cursor: pointer;
}
.consent-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}
.consent-link {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.btn-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  background: var(--brand);
  color: var(--text-invert);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-btn);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  width: 100%;
  margin-top: var(--space-sm);
  letter-spacing: 0.01em;
}
.btn-form-submit:hover {
  background: var(--brand-alt);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(46, 204, 113, 0.45);
}
.btn-form-submit:active { transform: translateY(0); }
.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
}

/* ---- FAQ SECTION ------------------------------------------ */
.faq-section {
  padding: var(--space-4xl) 0;
  background: var(--bg-secondary);
}
.faq-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item:has(.faq-trigger[aria-expanded="true"]) {
  border-color: var(--border-brand);
}
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  padding: var(--space-lg) var(--space-xl);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}
.faq-trigger:hover { background: rgba(255,255,255,0.02); }
.faq-q {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}
.faq-icon {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.2s ease;
}
.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--brand);
}
.faq-answer {
  padding: 0 var(--space-xl) var(--space-lg);
  border-top: 1px solid var(--border-subtle);
}
.faq-answer p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
  padding-top: var(--space-md);
}
.faq-answer[hidden] { display: none; }

/* ---- CONTACT SECTION -------------------------------------- */
.contact-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-stripe);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.contact-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
  transition: border-color 0.2s ease, transform 0.2s ease;
  animation-delay: var(--delay, 0ms);
}
.contact-card:hover {
  border-color: var(--border-brand);
  transform: translateY(-2px);
}
.contact-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(46, 204, 113, 0.08);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}
.contact-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.contact-card-address {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.contact-card-link {
  font-size: 0.9375rem;
  color: var(--brand);
  font-weight: 600;
  transition: color 0.2s ease;
}
.contact-card-link:hover { color: var(--highlight); }
.contact-card-hours {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---- SITE FOOTER ------------------------------------------ */
.site-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-3xl);
  padding: var(--space-3xl) 0 var(--space-2xl);
  border-bottom: 1px solid var(--border-subtle);
}
.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: var(--space-md) 0 var(--space-sm);
  line-height: 1.6;
}
.footer-company-info {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer-col-title {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}
.footer-links-col nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-link {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  line-height: 1.5;
}
.footer-link:hover { color: var(--brand); }
.footer-bottom {
  padding: var(--space-xl) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.footer-disclaimer-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 720px;
  opacity: 0.75;
}

/* ---- COOKIE BANNER ---------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: min(800px, calc(100% - 2 * var(--space-lg)));
  background: var(--bg-card);
  border: 1px solid var(--border-brand);
  border-radius: var(--r-xl);
  box-shadow: 0 8px 48px rgba(0,0,0,0.7);
  z-index: 9999;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  opacity: 0;
}
.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.cookie-inner {
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  gap: var(--space-xl);
  align-items: center;
  flex-wrap: wrap;
}
.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  flex: 1;
  min-width: 280px;
}
.cookie-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.cookie-title {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.cookie-body {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.cookie-link {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  align-items: center;
}
.btn-cookie-reject {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 9px 16px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-subtle);
  transition: color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.btn-cookie-reject:hover {
  color: var(--text-primary);
  border-color: var(--text-muted);
}
.btn-cookie-settings {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand);
  padding: 9px 16px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-brand);
  background: transparent;
  transition: background 0.2s ease;
  cursor: pointer;
}
.btn-cookie-settings:hover { background: rgba(46, 204, 113, 0.08); }
.btn-cookie-accept {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-invert);
  background: var(--brand);
  padding: 9px 18px;
  border-radius: var(--r-pill);
  transition: background 0.2s ease;
  cursor: pointer;
}
.btn-cookie-accept:hover { background: var(--brand-alt); }

/* ---- ANIMATIONS ------------------------------------------- */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0ms);
}
[data-animate="fade-left"] {
  transform: translateX(24px);
}
[data-animate="fade-right"] {
  transform: translateX(-24px);
}
[data-animate].in-view {
  opacity: 1;
  transform: none;
}

/* ---- RESPONSIVE ------------------------------------------- */
@media (max-width: 1024px) {
  .hero-inner,
  .why-section .section-inner,
  .wellness-inner,
  .product-inner,
  .order-inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .hero-inner { padding: var(--space-2xl) var(--space-xl); }
  .hero-img { height: 380px; }
  .why-img, .wellness-img { height: 360px; }
  .product-img-stage { padding: var(--space-lg); }
  .product-img { max-height: 320px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
  .footer-brand { grid-column: 1 / -1; }
  .steps-list { grid-template-columns: 1fr; gap: var(--space-lg); max-width: 520px; margin: 0 auto; }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 64px;
    --space-4xl: 80px;
  }
  .header-nav, .header-cta { display: none; }
  .nav-burger { display: flex; }
  .cards-grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .reviews-grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .strip-inner { gap: var(--space-xl); }
  .strip-divider { display: none; }
  .hero-headline { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .section-title { font-size: clamp(1.8rem, 5vw, 2.4rem); }
  .feat-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer-brand { grid-column: auto; }
  .cookie-inner { flex-direction: column; align-items: stretch; }
  .cookie-actions { justify-content: flex-end; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  :root { --space-xl: 28px; }
  .section-inner { padding: 0 var(--space-md); }
  .hero-inner, .footer-inner { padding: 0 var(--space-md); }
  .order-form { padding: var(--space-lg) var(--space-md); }
}

/* ---- REDUCED MOTION --------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  [data-animate] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
