/* ═══════════════════════════════════════════════
   WELLNEXIS – VITAREX
   CSS Principal · Versión 1.0 · 2025
═══════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --green-dark:   #1A3A28;
  --green-mid:    #2E6B4F;
  --green-light:  #4a9970;
  --green-pale:   #EBF5EE;
  --green-frost:  #f0f7f3;
  --gold-main:    #C8873A;
  --gold-light:   #e8a94c;
  --gold-pale:    #FEF3E8;
  --text-dark:    #1A3A28;
  --text-body:    #3a5444;
  --text-muted:   #7a9a8a;
  --border:       #d0e8da;
  --white:        #ffffff;
  --shadow-sm:    0 2px 12px rgba(46,107,79,.08);
  --shadow-md:    0 8px 32px rgba(46,107,79,.12);
  --shadow-lg:    0 20px 60px rgba(46,107,79,.16);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    36px;
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

/* ── Container ── */
.container {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

/* ── Typography ── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.22;
}
.section-title em { font-style: italic; color: var(--gold-main); }
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 52ch; margin: 0 auto; }
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--green-pale);
  border: 1px solid var(--border);
  padding: 0.3em 1em;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.danger-tag { color: #b94a4a; background: #fef0f0; border-color: #f5c6c6; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-title { margin-bottom: 1rem; }
.section-pad { padding-block: clamp(4rem, 8vw, 7rem); }
.eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-main);
  margin-bottom: 1.25rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
  padding: 0.65em 1.6em;
  font-size: 0.95rem;
  line-height: 1.4;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--green-mid);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(46,107,79,.3);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(46,107,79,.38);
}
.btn-ghost {
  background: transparent;
  color: var(--green-mid);
  border-color: var(--green-mid);
}
.btn-ghost:hover { background: var(--green-pale); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-lg { padding: 0.85em 2.2em; font-size: 1.05rem; }
.btn-sm { padding: 0.5em 1.2em; font-size: 0.875rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Reveal Animations ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* ═══════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 72px;
}
.logo-svg { height: 40px; width: auto; }
.main-nav { flex: 1; }
.main-nav ul { display: flex; gap: 2rem; justify-content: center; }
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color var(--transition);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold-main);
  transition: width var(--transition);
}
.main-nav a:hover { color: var(--green-mid); }
.main-nav a:hover::after { width: 100%; }
.nav-cta { flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px; height: 18px;
  background: none; border: none;
  cursor: pointer; padding: 0;
  margin-left: auto;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.mobile-nav {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fff;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { max-height: 500px; }
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.5rem;
  gap: 1rem;
}
.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  display: block;
  padding: 0.25rem 0;
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(26,58,40,0.88) 0%,
    rgba(26,58,40,0.65) 45%,
    rgba(26,58,40,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  padding-block: clamp(3rem, 8vh, 5rem);
}
.hero-text { max-width: 640px; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.16;
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle {
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 54ch;
}
.hero-subtitle strong { color: var(--white); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255,255,255,.75);
  font-size: 0.875rem;
  font-weight: 500;
}
.trust-item svg { width: 16px; height: 16px; fill: var(--gold-light); }

/* Product card */
.hero-product { flex-shrink: 0; }
.product-card {
  position: relative;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
  animation: floatProduct 4s ease-in-out infinite;
}
@keyframes floatProduct {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.product-card .product-img {
  width: clamp(160px, 18vw, 240px);
  height: auto;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,.3));
}
.product-badge {
  position: absolute;
  top: -14px; right: -14px;
  background: var(--gold-main);
  color: #fff;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
  text-align: center;
  line-height: 1.2;
}

/* Hero stats */
.hero-stats {
  position: relative;
  z-index: 1;
  background: rgba(26,58,40,.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.1);
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding-block: 1.5rem;
}
.stat-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 0.75rem 1rem;
}
.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-light);
  line-height: 1;
}
.stat-item span {
  font-size: 0.82rem;
  color: rgba(255,255,255,.65);
  margin-top: 0.25rem;
  display: block;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   PROBLEM SECTION
═══════════════════════════════════════════════ */
.problem-section { background: var(--white); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.problem-text { max-width: 540px; }
.problem-text h2 { margin-bottom: 1.25rem; }
.problem-text p { color: var(--text-body); line-height: 1.7; margin-bottom: 1.5rem; }
.problem-list { margin-bottom: 1.75rem; }
.problem-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-body);
}
.icon-red { color: #c0392b; font-size: 1rem; margin-top: 0.1rem; flex-shrink: 0; }
.problem-cta-text { font-weight: 500; color: var(--green-mid); }
.problem-image { position: relative; }
.problem-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.image-tag {
  position: absolute;
  bottom: -20px; left: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-mid);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.image-tag svg { width: 18px; height: 18px; stroke: var(--green-mid); }

/* ═══════════════════════════════════════════════
   BENEFITS
═══════════════════════════════════════════════ */
.benefits-section { background: var(--green-frost); position: relative; overflow: hidden; }
.benefits-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(46,107,79,.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(200,135,58,.04) 0%, transparent 40%);
  pointer-events: none;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
  position: relative;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.benefit-icon { margin-bottom: 1.25rem; }
.benefit-icon svg { width: 48px; height: 48px; }
.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.benefit-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.benefits-image-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--green-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.benefits-image-row img {
  width: 100%; height: 360px;
  object-fit: cover;
}
.benefits-image-caption {
  padding: 2.5rem 3rem 2.5rem 1rem;
  color: var(--white);
}
.benefits-image-caption h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  line-height: 1.3;
}
.benefits-image-caption p { color: rgba(255,255,255,.7); margin-bottom: 1.5rem; }
.benefits-image-caption .btn-primary { background: var(--gold-main); }
.benefits-image-caption .btn-primary:hover { background: var(--gold-light); }

/* ═══════════════════════════════════════════════
   COMPOSITION
═══════════════════════════════════════════════ */
.composition-section { background: var(--white); }
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.ingredient {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: var(--transition);
}
.ingredient:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.ing-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-pale);
  line-height: 1;
  margin-top: -0.2rem;
  user-select: none;
}
.ing-img {
  width: 100%; height: 100px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}
.ing-content h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.ing-content p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0.75rem; }
.ing-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-main);
  background: var(--gold-pale);
  border-radius: 100px;
  padding: 0.25em 0.8em;
}

/* ═══════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════ */
.how-section { background: var(--green-frost); }
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}
.how-steps { display: flex; flex-direction: column; gap: 1.5rem; }
.how-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.25rem;
  align-items: start;
}
.step-num {
  width: 52px; height: 52px;
  background: var(--white);
  border: 2px solid var(--green-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-mid);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.step-body h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}
.step-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.how-images { position: relative; }
.how-img-main {
  width: 100%; height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.how-img-secondary {
  width: 55%; height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
  position: absolute;
  bottom: -30px; right: -20px;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

/* Timeline */
.timeline {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 3rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.timeline h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}
.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}
.timeline-track::before {
  content: '';
  position: absolute;
  top: 10px; left: 12.5%;
  width: 75%; height: 2px;
  background: var(--border);
  z-index: 0;
}
.tl-item { text-align: center; position: relative; z-index: 1; }
.tl-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--green-mid);
  margin: 0 auto 0.75rem;
  transition: var(--transition);
}
.tl-dot.active {
  background: var(--gold-main);
  border-color: var(--gold-main);
  box-shadow: 0 0 0 6px rgba(200,135,58,.15);
  transform: scale(1.3);
}
.tl-week {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}
.tl-item p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative;
  transition: var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testi-card.featured {
  background: var(--green-dark);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  grid-row: span 1;
}
.testi-stars {
  font-size: 0.9rem;
  color: var(--gold-main);
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
}
.testi-card.featured .testi-stars { color: var(--gold-light); }
.testi-card blockquote {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testi-card.featured blockquote { color: rgba(255,255,255,.82); }
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-mid);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-card.featured .testi-avatar { background: var(--gold-main); }
.testi-author strong { display: block; font-size: 0.875rem; color: var(--text-dark); }
.testi-card.featured .testi-author strong { color: var(--white); }
.testi-author span { font-size: 0.78rem; color: var(--text-muted); }
.testi-card.featured .testi-author span { color: rgba(255,255,255,.55); }
.testi-date { font-size: 0.75rem; color: var(--text-muted); margin-top: 1rem; }
.testi-card.featured .testi-date { color: rgba(255,255,255,.4); }
.featured-tag {
  position: absolute;
  top: -12px; right: 16px;
  background: var(--gold-main);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3em 0.8em;
  border-radius: 100px;
}
.consultation-banner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--green-dark);
}
.consultation-banner img {
  width: 100%; height: 320px;
  object-fit: cover;
}
.consult-text {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}
.consult-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  line-height: 1.3;
}
.consult-text p { color: rgba(255,255,255,.7); margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════ */
.faq-section { background: var(--green-frost); }
.faq-container { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover { color: var(--green-mid); }
.faq-question[aria-expanded="true"] { color: var(--green-mid); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: var(--transition);
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--green-mid);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}
.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   ORDER SECTION
═══════════════════════════════════════════════ */
.order-section { background: var(--white); }
.order-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.order-info .section-tag { margin-bottom: 0.75rem; }
.order-info .section-title { margin-bottom: 2rem; }
.product-preview {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  background: var(--green-frost);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.75rem;
}
.product-preview img { width: 90px; height: auto; flex-shrink: 0; }
.product-details h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.25rem; }
.product-details p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.price-block { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.price-original { font-size: 1rem; color: var(--text-muted); text-decoration: line-through; }
.price-current { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--green-mid); }
.price-badge {
  background: var(--gold-pale);
  color: var(--gold-main);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2em 0.7em;
  border-radius: 100px;
}
.order-benefits { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.75rem; }
.ob-item { display: flex; gap: 0.5rem; font-size: 0.9rem; color: var(--green-mid); font-weight: 500; }
.ob-item span { color: var(--gold-main); font-weight: 700; }
.security-badges { display: flex; gap: 1rem; }
.sec-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}
.sec-badge svg { width: 18px; height: 18px; stroke: var(--green-mid); }

/* Form */
.order-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.order-form h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}
.form-date {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}
input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(46,107,79,.12);
}
input.error, select.error, textarea.error { border-color: #c0392b; }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232E6B4F' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; padding-right: 2.5rem; }
textarea { resize: vertical; min-height: 80px; }
.form-consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.form-consent input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 0.1rem; accent-color: var(--green-mid); cursor: pointer; }
.form-consent a { color: var(--green-mid); text-decoration: underline; }
.order-form .btn-primary svg { width: 18px; height: 18px; }
.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.site-footer { background: var(--green-dark); color: rgba(255,255,255,.75); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 4rem;
  padding-block: 4rem;
}
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-top: 1.25rem; max-width: 300px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a, .footer-col address p { font-size: 0.875rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-col a:hover { color: var(--gold-light); }
.footer-col address { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom-inner {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-block: 1.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,.35); }
.disclaimer { max-width: 60ch; }

/* ── Scroll Top ── */
.scroll-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  background: var(--green-mid);
  color: var(--white);
  border: none; border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transition: var(--transition);
  z-index: 90;
  display: flex; align-items: center; justify-content: center;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--green-dark); transform: translateY(-3px); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .order-container { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
  .hero-content { grid-template-columns: 1fr; }
  .hero-product { display: none; }
}
@media (max-width: 768px) {
  .main-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .benefits-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .problem-image img { height: 300px; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .how-img-secondary { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .consultation-banner { grid-template-columns: 1fr; }
  .consultation-banner img { height: 220px; }
  .benefits-image-row { grid-template-columns: 1fr; }
  .benefits-image-row img { height: 220px; }
  .benefits-image-caption { padding: 1.5rem; }
  .timeline-track { grid-template-columns: 1fr 1fr; }
  .timeline-track::before { display: none; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-row { gap: 0; }
  .stat-divider { display: none; }
  .stat-item { min-width: 50%; }
  .order-form-wrap { padding: 1.75rem; }
}
@media (max-width: 480px) {
  .footer-links { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .timeline-track { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   COOKIE CONSENT BANNER
═══════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 2px solid var(--border);
  box-shadow: 0 -8px 32px rgba(26,58,40,.12);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem clamp(1rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-banner-text {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  flex: 1;
  min-width: 260px;
}
.cookie-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.cookie-banner-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}
.cookie-banner-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-link {
  font-size: 0.82rem;
  color: var(--green-mid);
  text-decoration: underline;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .cookie-banner-inner { flex-direction: column; gap: 1rem; }
  .cookie-banner-actions { width: 100%; justify-content: flex-end; }
}

/* ── Consultation banner without image ── */
.consultation-banner--no-img {
  grid-template-columns: 1fr;
}
.consultation-banner--no-img .consult-text {
  padding: 3rem 4rem;
  text-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .consultation-banner--no-img .consult-text { padding: 2rem 1.5rem; }
}

/* ── Medical consultation banner ── */
.consult-text--medical {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.75rem 4rem;
  text-align: left;
}
.consult-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
}
.consult-icon svg { width: 36px; height: 36px; }
.consult-body { flex: 1; }
.consult-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}
.consult-text--medical h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  margin-bottom: 0.75rem;
}
.consult-text--medical p {
  color: rgba(255,255,255,.72);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 64ch;
}
.consult-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .consult-text--medical {
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
  }
}

/* ── Compact consultation card ── */
.consult-compact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold-main);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}
.consult-compact-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.consult-compact-body .consult-eyebrow {
  color: var(--gold-main);
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 0.35rem;
}
.consult-compact-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
.consult-compact-body strong { color: var(--text-dark); }
@media (max-width: 480px) {
  .consult-compact { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .consult-compact-img { width: 56px; height: 56px; }
}
