/* ============================================================
   MB WELLNESS — Main Stylesheet
   Brand: #1E5631 (green) · #F7F5F0 (cream) · #B8860B (gold)
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #1E5631;
  --green-dark:  #163d23;
  --green-light: #e8efe9;
  --cream:       #F7F5F0;
  --cream-dark:  #EDE9E0;
  --gold:        #B8860B;
  --gold-light:  #d4a820;
  --white:       #FFFFFF;
  --text:        #1A1A1A;
  --text-muted:  #6B6B6B;
  --text-light:  #9A9A9A;
  --border:      rgba(30,86,49,0.12);

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'DM Sans', 'Inter', system-ui, sans-serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-pill: 100px;

  --shadow-xs:   0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:   0 4px 24px rgba(0,0,0,0.09);

  --transition:  0.25s ease;

  --space-section: 100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
address { font-style: normal; }

/* ── Container ────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ── Typography helpers ───────────────────────────────────── */
.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label--gold { color: var(--gold-light); }

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}
.section-headline--white { color: var(--white); }

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 60px;
}
.section-header--light .section-sub { color: rgba(255,255,255,0.75); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30,86,49,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--green);
  border-color: transparent;
  padding-left: 8px;
  padding-right: 8px;
  position: relative;
}
.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  height: 1px;
  background: var(--green);
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform var(--transition);
}
.btn-ghost:hover::after { transform: scaleX(1); }

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  font-size: 16px;
  padding: 18px 40px;
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,134,11,0.35);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--green);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

/* ── Nav container ─────────────────────────────────────────── */
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  height: 70px;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Logo — empurra o resto para a direita */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}
.nav-logo-img {
  height: 54px;
  width: auto;
  display: block;
}

/* Footer logo */
.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

/* Links centrais (desktop) */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links > li > a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-links > li > a:hover { color: #fff; }

/* Destaque visual sutil para Labs & Test Kits no desktop */
.nav-links > li > a[href="labs.html"] {
  color: var(--gold-light);
  font-weight: 500;
}
.nav-links > li > a[href="labs.html"]:hover { color: #fff; }
.nav-links > li > a[href="supplements.html"] {
  color: rgba(255,255,255,0.75);
}

/* Itens só visíveis no drawer mobile */
.nav-drawer-extra { display: none; }

/* Grupo direito: lang + CTA */
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 24px;
  flex-shrink: 0;
}

/* Botão CTA */
.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 500 !important;
  font-size: 13px;
  white-space: nowrap;
  transition: background var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  box-shadow: 0 4px 16px rgba(184,134,11,0.4);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 12px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  background-color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-botanical {
  position: absolute;
  top: 0;
  width: min(260px, 30vw);
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-botanical--left { left: 0; }
.hero-botanical--right { right: 0; }
.hero-botanical svg { width: 100%; height: 100%; }

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* Eyebrow wrap with live badge */
.hero-eyebrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.hero-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

.hero-eyebrow-divider {
  color: var(--cream-dark);
  font-size: 16px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(46px, 7vw, 80px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.hero-headline em {
  font-style: italic;
  color: var(--green);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 40px;
}
.hero-sub strong { color: var(--green); font-weight: 600; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.btn-primary--large {
  padding: 18px 40px;
  font-size: 16px;
  letter-spacing: 0.01em;
}

/* Hero social proof row */
.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.hsp-avatars {
  display: flex;
  align-items: center;
}
.hsp-avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  margin-left: -8px;
  font-family: var(--font-sans);
}
.hsp-avatars span:first-child { margin-left: 0; }

.hsp-google-logo {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.hsp-text {
  font-size: 13px;
  color: var(--text-muted);
}
.hsp-text strong { color: var(--text); }

/* ── Sticky Mobile CTA ────────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.sticky-cta.is-visible { display: flex; }

.sticky-cta-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.sticky-cta .btn {
  white-space: nowrap;
  padding: 11px 20px;
  font-size: 14px;
  flex-shrink: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--green));
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0; transform: scaleY(0) translateY(-20px); }
  50% { opacity: 0.6; transform: scaleY(1) translateY(0); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.trust-icon {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
}

.trust-divider {
  color: var(--cream-dark);
  font-size: 20px;
  line-height: 1;
  font-weight: 300;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: var(--space-section) 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 8vw, 100px);
  align-items: center;
  padding-bottom: 40px; /* espaço para a foto secundária que sobressai */
}

.about-photo-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Photo stack layout ──────────────────────────────────── */
.about-photo-stack {
  position: relative;
  width: 100%;
}

/* Main photo */
.about-photo-main {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--cream-dark);
  box-shadow: var(--shadow-md);
}

.about-img--main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
}
.about-photo-main:hover .about-img--main {
  transform: scale(1.03);
}

/* Fallback if image missing */
.about-photo-main.about-photo-fallback .about-img--main {
  display: none;
}
.about-photo-main.about-photo-fallback .about-photo-placeholder-inner {
  display: flex !important;
}
.about-photo-placeholder-inner {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.about-photo-placeholder-inner span {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--green);
  background: rgba(247,245,240,0.8);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
}

/* Secondary floating photo (landscape) */
.about-photo-secondary {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 56%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.about-img--secondary {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
}
.about-photo-secondary:hover .about-img--secondary {
  transform: scale(1.04);
}

/* Floating credential badge */
.about-photo-badge {
  position: absolute;
  top: 24px;
  left: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  max-width: 200px;
}
.about-photo-badge strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}
.about-photo-badge span {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  margin-top: 1px;
}

/* ── Photo proof strip ────────────────────────────────────── */
.photo-proof-strip {
  background: var(--green);
  overflow: hidden;
}
.photo-proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 420px;
}
.photo-proof-img-wrap {
  height: 420px;
  overflow: hidden;
}
.photo-proof-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.6s ease;
}
.photo-proof-img-wrap:hover .photo-proof-img {
  transform: scale(1.04);
}
.photo-proof-text {
  padding: 48px clamp(32px, 5vw, 72px);
}
.photo-proof-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.photo-proof-headline {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.photo-proof-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 380px;
  margin-bottom: 28px;
}

@media (max-width: 860px) {
  .photo-proof-inner {
    grid-template-columns: 1fr;
  }
  .photo-proof-img-wrap {
    height: 300px;
  }
  .photo-proof-text {
    padding: 40px clamp(20px, 5vw, 48px);
  }
}

/* ── About responsive ────────────────────────────────────── */
@media (max-width: 900px) {
  .about-photo-secondary {
    right: -16px;
    bottom: -20px;
    width: 52%;
  }
  .about-photo-badge {
    left: -8px;
  }
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.credential-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
  background: var(--green-light);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.03em;
}

.about-content .section-label { margin-bottom: 8px; }

.about-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.about-badge {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 90px;
}
.about-badge strong {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--green);
}
.about-badge span {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.03em;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: var(--space-section) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hiw-bg-botanical {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}
.hiw-bg-botanical svg { width: 100%; }

.steps-list {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  position: relative;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
  position: relative;
}

.step-connector {
  display: flex;
  align-items: flex-start;
  padding-top: 48px;
}
.step-connector::before {
  content: '';
  display: block;
  width: clamp(20px, 4vw, 60px);
  height: 1px;
  background: var(--border);
  margin-top: 4px;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.step-icon {
  width: 56px;
  height: 56px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 16px;
  transition: background var(--transition);
}
.step-icon svg { width: 26px; height: 26px; }
.step-item:hover .step-icon {
  background: var(--green);
  color: var(--white);
}

.step-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   PROGRAMS — ENTRY POINTS
   ============================================================ */
.programs {
  padding: var(--space-section) 0;
  background: var(--cream);
}

/* Entry cards (Strategic Assessment + Maintenance) */
.entry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}

.entry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.entry-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.entry-card-inner {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.entry-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--green);
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.entry-icon svg { width: 100%; height: 100%; }

.entry-content { flex: 1; }

.entry-price-tag {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 4px;
  line-height: 1;
}
.entry-price-tag span {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}

.entry-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.entry-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.entry-card .btn {
  align-self: flex-start;
  padding: 11px 24px;
  font-size: 14px;
}

/* Divider between entry points and main programs */
.programs-divider {
  height: 1px;
  background: var(--border);
  margin: 64px 0;
  position: relative;
}
.programs-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ── 2x2 Program Cards ──────────────────────────────────────── */
.programs-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.program-card-v2 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.program-card-v2:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.program-card-v2--featured {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.program-card-v2--featured:hover {
  box-shadow: 0 8px 40px rgba(30,86,49,0.3);
}

.pcv2-badge {
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.pcv2-header { display: flex; flex-direction: column; gap: 4px; }

.pcv2-subtitle {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.program-card-v2--featured .pcv2-subtitle { color: rgba(255,255,255,0.65); }

.pcv2-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}
.program-card-v2--featured .pcv2-name { color: var(--white); }

.pcv2-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
}
.program-card-v2--featured .pcv2-desc { color: rgba(255,255,255,0.8); }

.pcv2-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.program-card-v2--featured .pcv2-footer { border-top-color: rgba(255,255,255,0.15); }

.pcv2-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pcv2-price-main {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--green);
  line-height: 1;
}
.program-card-v2--featured .pcv2-price-main { color: var(--white); }

.pcv2-price-sub {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.program-card-v2--featured .pcv2-price-sub { color: rgba(255,255,255,0.6); }

.program-card-v2 .btn-outline {
  border-color: rgba(30,86,49,0.25);
  color: var(--green);
  padding: 10px 20px;
  font-size: 14px;
}
.program-card-v2 .btn-outline:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.pcv2-btn-featured {
  background: var(--white) !important;
  color: var(--green) !important;
  border-color: var(--white) !important;
  padding: 10px 20px;
  font-size: 14px;
}
.pcv2-btn-featured:hover {
  background: var(--cream) !important;
  border-color: var(--cream) !important;
  box-shadow: none !important;
  transform: none !important;
}

/* ============================================================
   SHOP NAV BUTTONS (Supplements / Labs)
   ============================================================ */
.shop-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.shop-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: var(--shadow-xs);
}
.shop-nav-btn svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
}
.shop-nav-btn:hover {
  border-color: var(--green);
  color: var(--green);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.shop-nav-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 9px;
  border-radius: var(--radius-pill);
  margin-left: 2px;
  vertical-align: middle;
}

/* ============================================================
   ENTRY CARDS (Wellness Assessment / Membership)
   ============================================================ */
.entry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}

.entry-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.entry-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(30,86,49,0.25);
}

.entry-card--membership {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fffdf5 0%, var(--white) 60%);
}
.entry-card--membership:hover {
  border-color: var(--gold-light);
}

.entry-card-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.entry-price-tag {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.entry-price-tag span {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
}

.entry-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
}

.entry-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

.entry-includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.entry-includes li {
  font-size: 14px;
  color: var(--text);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.entry-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  opacity: 0.7;
}

.entry-note {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-transform: uppercase;
  padding: 8px 14px;
  background: rgba(184,134,11,0.07);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}

.programs-divider {
  height: 1px;
  background: var(--border);
  margin: 56px 0;
}

/* ============================================================
   PROGRAM CARDS V3 (3-column nutrition grid)
   ============================================================ */
.programs-grid-col3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.program-card-v3 {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.program-card-v3:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(30,86,49,0.25);
  transform: translateY(-3px);
}

.program-card-v3--featured {
  border-color: var(--green);
  background: var(--green);
}
.program-card-v3--featured:hover {
  border-color: var(--green-dark);
  background: var(--green-dark);
}

.pcv3-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.pcv3-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pcv3-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
}
.program-card-v3--featured .pcv3-name { color: var(--white); }

.pcv3-subtitle {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.4;
}
.program-card-v3--featured .pcv3-subtitle { color: rgba(255,255,255,0.6); }

.pcv3-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pcv3-features li {
  font-size: 13.5px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}
.pcv3-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  opacity: 0.65;
}
.program-card-v3--featured .pcv3-features li {
  color: rgba(255,255,255,0.8);
}
.program-card-v3--featured .pcv3-features li::before {
  background: var(--gold-light);
  opacity: 0.9;
}

.pcv3-footer {
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.program-card-v3--featured .pcv3-footer {
  border-top-color: rgba(255,255,255,0.15);
}
.pcv3-footer .btn-outline {
  border-color: rgba(30,86,49,0.25);
  color: var(--green);
  padding: 10px 22px;
  font-size: 14px;
}
.pcv3-footer .btn-outline:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.program-card-v3--featured .pcv3-footer .btn-primary {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}
.program-card-v3--featured .pcv3-footer .btn-primary:hover {
  background: var(--cream);
  border-color: var(--cream);
  transform: none;
  box-shadow: none;
}

/* ============================================================
   WHY GRID — 5 columns
   ============================================================ */
.why-grid--5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* ============================================================
   INCLUDED SECTION
   ============================================================ */
.included-section {
  padding: var(--space-section) 0;
  background: var(--cream);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.included-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.included-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.included-card--wide {
  grid-column: 1 / -1;
}

.included-icon {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.included-icon svg { width: 22px; height: 22px; }

.included-card h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.included-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   MEDICAL PROTOCOLS
   ============================================================ */
.medical-protocols {
  padding: var(--space-section) 0;
  background: var(--green);
  position: relative;
  overflow: hidden;
}

.medical-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.medical-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: background var(--transition);
}
.medical-card:hover { background: rgba(255,255,255,0.12); }

.medical-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: var(--gold-light);
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px;
}
.medical-card-icon svg { width: 100%; height: 100%; }

.medical-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.medical-card-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
}

.medical-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
}

.medical-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 4px;
}

.medical-price {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}
.medical-price em {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  color: rgba(255,255,255,0.55);
  margin-left: 2px;
}

.medical-card-footer .btn-gold {
  padding: 9px 20px;
  font-size: 13px;
  flex-shrink: 0;
}

.medical-disclaimer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  background: rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.6;
}
.medical-disclaimer svg { color: rgba(255,255,255,0.4); }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: var(--space-section) 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
  border-color: var(--green-light);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--green);
  margin-bottom: 20px;
}
.service-icon svg { width: 100%; height: 100%; }

.service-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-us {
  padding: var(--space-section) 0;
  background: var(--green);
  position: relative;
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: background var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.12); }

.why-icon {
  width: 52px;
  height: 52px;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.why-icon svg { width: 100%; height: 100%; }

.why-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.why-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: var(--space-section) 0;
  background: var(--cream);
}

/* ── Google Rating Badge ───────────────────────────────────── */
.google-rating-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  margin-bottom: 56px;
  gap: 20px;
  flex-wrap: wrap;
}

.grb-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.grb-label {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}

.grb-stars {
  display: flex;
  gap: 3px;
  color: #FBBC05;
  font-size: 22px;
  line-height: 1;
}

.grb-count {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

.grb-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.grb-right svg {
  width: 28px;
  height: 28px;
}

.grb-link {
  font-size: 13px;
  font-weight: 500;
  color: #4285F4;
  transition: opacity var(--transition);
}
.grb-link:hover { opacity: 0.75; }

/* ── Reviews Carousel ─────────────────────────────────────── */
.reviews-track-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews-viewport {
  overflow: hidden;
  flex: 1;
  border-radius: var(--radius-md);
}

.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Each card takes exactly 1/3 of viewport (show 3 at a time) */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow var(--transition);
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
}
.testimonial-card:hover { box-shadow: var(--shadow-sm); }

/* Top row: stars + Google icon */
.tc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tc-google-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: #FBBC05;
  font-size: 16px;
}

.testimonial-quote {
  font-size: 14px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  font-family: var(--font-serif);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.testimonial-author strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.testimonial-author span {
  display: block;
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
}

/* Avatars with varied colors */
.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-avatar--purple  { background: #ede7f6; color: #6a1b9a; }
.testimonial-avatar--green   { background: #e8f5e9; color: #2e7d32; }
.testimonial-avatar--blue    { background: #e3f2fd; color: #1565c0; }
.testimonial-avatar--orange  { background: #fff3e0; color: #e65100; }
.testimonial-avatar--teal    { background: #e0f2f1; color: #00695c; }
.testimonial-avatar--rose    { background: #fce4ec; color: #c62828; }
.testimonial-avatar--indigo  { background: #e8eaf6; color: #283593; }
.testimonial-avatar--amber   { background: #fff8e1; color: #f57f17; }

/* ── Carousel Navigation Buttons ──────────────────────────── */
.reviews-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
}
.reviews-nav:hover {
  border-color: var(--green);
  color: var(--green);
  box-shadow: var(--shadow-sm);
}
.reviews-nav:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
.reviews-nav svg { width: 18px; height: 18px; }

/* ── Dots ──────────────────────────────────────────────────── */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.reviews-dot.is-active {
  background: var(--green);
  transform: scale(1.25);
}

/* Responsive: show 2 cards on tablet, 1 on mobile */
@media (max-width: 900px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 10px);
  }
}
@media (max-width: 580px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
  .reviews-nav { display: none; }
  .reviews-track-wrap { gap: 0; }
}

/* ============================================================
   INCLUDED IN EVERY PLAN
   ============================================================ */
.included-section {
  padding: var(--space-section) 0;
  background: var(--white);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.included-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.included-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.included-card:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-sm);
}
.included-card:hover::before { transform: scaleX(1); }

.included-icon {
  width: 40px;
  height: 40px;
  color: var(--green);
  margin-bottom: 4px;
}
.included-icon svg { width: 100%; height: 100%; }

.included-card h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.included-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .included-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .included-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: var(--space-section) 0;
  background: var(--cream);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 96px;
}

.faq-sidebar-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 8px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item[open] {
  box-shadow: var(--shadow-xs);
  border-color: rgba(30,86,49,0.2);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
  list-style: none;
  user-select: none;
  transition: background var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-item[open] .faq-question {
  background: var(--green-light);
  color: var(--green);
}
.faq-question:hover { background: var(--cream); }
.faq-item[open] .faq-question:hover { background: var(--green-light); }

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all var(--transition);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all var(--transition);
}
.faq-icon::before { width: 8px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 8px; }

.faq-item[open] .faq-icon {
  border-color: var(--green);
  background: var(--green);
}
.faq-item[open] .faq-icon::before { background: var(--white); }
.faq-item[open] .faq-icon::after  { opacity: 0; transform: rotate(90deg); }

.faq-answer {
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; }
  .faq-sidebar .btn { display: none; }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
  text-align: left; /* override para layout grid */
}

/* Grid 2 colunas: texto + foto quadrada */
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  align-items: center;
  min-height: 520px;
}

/* Coluna de texto */
.cta-content {
  position: relative;
  z-index: 1;
  padding: 100px clamp(40px, 5vw, 80px) 100px clamp(40px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Foto quadrada à direita */
.cta-photo-wrap {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px 48px 0;
}
.cta-photo {
  width: 260px;
  height: 260px;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  transition: transform 0.6s ease;
  flex-shrink: 0;
}
.cta-photo-wrap:hover .cta-photo {
  transform: scale(1.03);
}

@media (max-width: 900px) {
  .cta-inner {
    grid-template-columns: 1fr;
  }
  .cta-photo-wrap {
    order: -1;
    padding: 40px 40px 0;
    justify-content: center;
  }
  .cta-photo {
    width: 260px;
    height: 260px;
  }
  .cta-content {
    padding: 40px clamp(20px, 5vw, 48px) 60px;
    align-items: center;
    text-align: center;
  }
  .cta-sub { margin-left: auto; margin-right: auto; }
  .cta-options { justify-content: center; }
  .cta-note { justify-content: center; }
}

.cta-botanical {
  position: absolute;
  top: 0;
  width: 160px;
  height: 100%;
  pointer-events: none;
}
.cta-botanical--left { left: 0; }
.cta-botanical--right { right: 0; }
.cta-botanical svg { width: 100%; height: 100%; }

/* .cta-content handled in .cta-inner grid above */

.cta-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 0 36px;
}

/* Two option cards above main CTA button */
.cta-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 40px;
}

.cta-option {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  text-align: left;
  min-width: 240px;
  max-width: 300px;
}

.cta-option-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--gold-light);
}
.cta-option-icon svg { width: 100%; height: 100%; }

.cta-option strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.cta-option span {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

.btn-gold--large {
  font-size: 17px;
  padding: 20px 48px;
  letter-spacing: 0.01em;
}

.cta-note {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

@media (max-width: 600px) {
  .cta-options { flex-direction: column; align-items: center; }
  .cta-option { max-width: 100%; width: 100%; }
}

/* ============================================================
   LANG SWITCHER
   ============================================================ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 3px;
  flex-shrink: 0;
}
.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 9px;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
}
.lang-btn:hover { color: #fff; }
.lang-btn.active {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: var(--cream);
  padding: var(--space-section) 0 160px;
}

/* Cabeçalho centralizado */
.contact-top {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}
.contact-top .section-sub { margin: 0 auto; }

/* Grid: canais à esquerda, formulário à direita */
.contact-body {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}
.contact-body > * { min-width: 0; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  text-decoration: none;
  transition: all var(--transition);
}
.contact-channel:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.contact-channel-icon {
  width: 40px;
  height: 40px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}
.contact-channel-icon svg { width: 18px; height: 18px; }
.contact-channel strong { display: block; font-size: 14px; font-weight: 600; color: var(--text); }
.contact-channel span { font-size: 13px; color: var(--text-muted); }

/* Container do iframe — completamente transparente */
.contact-form-wrap {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.contact-form-wrap iframe {
  display: block;
  width: 100%;
  min-height: 640px;
  border: none;
}

@media (max-width: 860px) {
  .contact-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-form-wrap iframe {
    min-height: 700px;
  }
}

/* Footer phone */
.footer-phone {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  transition: color var(--transition);
  margin-bottom: 6px;
}
.footer-phone:hover { color: #fff; }

@media (max-width: 860px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.85);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 48px;
}

.footer-brand { display: flex; flex-direction: column; gap: 14px; }
/* Footer logo blend — black bg disappears on dark footer */
.logo-img--footer.logo-img--blend {
  mix-blend-mode: screen;
  filter: brightness(1.1);
  opacity: 0.9;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 200px;
}

.footer-langs {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold-light);
}

.footer-nav-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-nav ul a:hover { color: var(--white); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-social svg { width: 18px; height: 18px; flex-shrink: 0; }
.footer-social:hover { color: var(--white); }

.footer-website {
  font-size: 14px;
  color: var(--gold-light);
  transition: color var(--transition);
}
.footer-website:hover { color: var(--white); }

.footer-address {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.footer-address span { color: rgba(255,255,255,0.35); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
}

.footer-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  max-width: 600px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --space-section: 80px; }

  .steps-list {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .step-connector { display: none; }

  /* Medical grid: stack at tablet */
  .medical-grid { grid-template-columns: 1fr; }

  /* Programs 3-col → 2-col at tablet */
  .programs-grid-col3 { grid-template-columns: 1fr 1fr; }

  /* Why 5-col → 3-col at tablet */
  .why-grid--5 { grid-template-columns: repeat(3, 1fr); }

  /* Included 3-col → 2-col at tablet */
  .included-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

}

@media (max-width: 768px) {
  :root { --space-section: 64px; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-right { display: none; }

  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0; bottom: 0;
    background: var(--green-dark);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 99;
  }
  .nav-links.is-open { transform: translateX(0); }

  .nav-links > li > a {
    display: block;
    padding: 15px 0;
    font-size: 17px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.88);
  }

  /* Show drawer-only items on mobile */
  .nav-drawer-extra { display: block; }

  /* Phone in drawer */
  .nav-phone-drawer {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
  }

  /* Lang in drawer */
  .nav-drawer-lang {
    padding: 20px 0 8px;
    border-bottom: none !important;
  }
  .nav-drawer-lang .lang-switcher {
    background: rgba(255,255,255,0.08);
  }
  .nav-drawer-lang .lang-btn {
    font-size: 13px;
    padding: 6px 16px;
  }

  /* Hero */
  .hero-botanical { width: 120px; }
  .hero-headline { font-size: clamp(38px, 10vw, 56px); }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    padding-bottom: 56px; /* espaço para foto secundária em mobile */
  }
  .about-photo-main { aspect-ratio: 4/3; }
  .about-photo-secondary {
    width: 48%;
    right: -12px;
    bottom: -36px;
  }
  .about-photo-badge {
    left: 8px;
    top: 16px;
    padding: 8px 12px;
  }
  .about-photo-badge strong { font-size: 12px; }
  .about-photo-badge span { font-size: 10px; }

  /* Steps */
  .steps-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Services */
  .services-grid { grid-template-columns: 1fr 1fr; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* Programs */
  .entry-grid { grid-template-columns: 1fr; }
  .programs-grid-2x2 { grid-template-columns: 1fr; }
  .programs-grid-col3 { grid-template-columns: 1fr; }
  .program-card-v3--featured { order: -1; }
  .program-card-v2--featured { order: -1; }
  .medical-grid { grid-template-columns: 1fr; }
  .medical-card { flex-direction: column; gap: 14px; }
  .medical-card-footer { flex-direction: column; align-items: flex-start; }

  /* Why 5-col → single col on mobile */
  .why-grid--5 { grid-template-columns: 1fr; }

  /* Included grid → 1 col on mobile */
  .included-grid { grid-template-columns: 1fr; }
  .included-card--wide { grid-column: auto; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 48px;
    padding-bottom: 32px;
  }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .footer-copy { order: -1; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  .trust-list { gap: 12px 10px; }
  .trust-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .about-badges { gap: 12px; }
  .cta-botanical { width: 80px; }
  .entry-card-inner { flex-direction: column; gap: 12px; }
  .pcv2-footer { flex-direction: column; align-items: flex-start; }
  .medical-card-footer .btn-gold { width: 100%; }
}

/* ============================================================
   ANIMATIONS & UTILITIES
   ============================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up-delay-1 { transition-delay: 0.1s; }
.fade-in-up-delay-2 { transition-delay: 0.2s; }
.fade-in-up-delay-3 { transition-delay: 0.3s; }
.fade-in-up-delay-4 { transition-delay: 0.4s; }
