

/* ── Nardo Grey Gloss — metallic surface sheen on cards ─────── */
/* Adds the illusion of a metallic paint surface on key elements */
.card-gloss,
.hero-card,
.pain-card,
.pillar-card,
.include-item,
.testi-card,
.pricing-card,
.pain-callout,
.faq-item {
  position: relative;
}
.card-gloss::before,
.hero-card::before,
.pain-card::before,
.pillar-card::before,
.include-item::before,
.testi-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,.06) 0%,
    rgba(255,255,255,.02) 30%,
    rgba(255,255,255,.0)  60%,
    rgba(255,255,255,.03) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Metallic sheen on nav */
#site-nav {
  background: linear-gradient(180deg,
    rgba(28,28,34,.98) 0%,
    rgba(22,22,28,.99) 100%
  );
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 1px 0 rgba(255,255,255,.04), 0 4px 20px rgba(0,0,0,.4);
}

/* Glossy pill badges */
.hero-badge, .kicker {
  background: rgba(255,255,255,.06) !important;
  border-color: rgba(255,255,255,.12) !important;
  backdrop-filter: blur(4px);
}
/* ================================================================
   BP & BLOOD SUGAR RESET PROTOCOL — Landing Page Styles
   Aesthetic: Raw-luxury wellness. Editorial power. Life-or-death urgency.
   Fonts: Playfair Display (headlines) + Fira Sans (body) + Fira Sans Condensed (labels)
   Palette: Deep forest green, antique gold, off-white cream, charcoal
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Fira+Sans:wght@300;400;500;600;700&family=Fira+Sans+Condensed:wght@400;500;600&display=swap');

/* ── ROOT VARIABLES ─────────────────────────────────────────── */
:root {
  --forest:     #1c1c22;
  --forest-mid: #28282f;
  --forest-lt:  #3e3e48;
  --sage:       #c8c8d4;
  --sage-lt:    #e4e4ec;
  --gold:       #b8860b;
  --gold-lt:    #d4a017;
  --gold-pale:  #fdf3d7;
  --cream:      #faf7f2;
  --cream-dk:   #f0ebe0;
  --charcoal:   #1c1c1c;
  --slate:      #3d4045;
  --muted:      #7a7d82;
  --red:        #0d2b5e;
  --red-lt:     #e8eaf4;
  --white:      #ffffff;

  --ff-head: 'Playfair Display', Georgia, serif;
  --ff-body: 'Fira Sans', sans-serif;
  --ff-mono: 'Fira Sans Condensed', sans-serif;

  --max-w: 1100px;
  --radius: 12px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 12px rgba(15,61,38,.08);
  --shadow-md: 0 8px 40px rgba(15,61,38,.14);
  --shadow-lg: 0 20px 80px rgba(15,61,38,.22);
  --shadow-gold: 0 8px 40px rgba(184,134,11,.25);
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 700; }

/* ── UTILITY ────────────────────────────────────────────────── */
.container { width: min(var(--max-w), 100% - 48px); margin-inline: auto; }
.container--sm { width: min(760px, 100% - 48px); margin-inline: auto; }
.container--lg { width: min(1260px, 100% - 48px); margin-inline: auto; }

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-forest { color: var(--forest); }
.bg-forest { background: var(--forest); }
.bg-cream { background: var(--cream); }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--ff-head); line-height: 1.18; }
.kicker {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 20px;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 17px;
  padding: 18px 38px;
  border-radius: 60px;
  cursor: pointer;
  border: none;
  transition: all .25s ease;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 60px rgba(184,134,11,.4);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-lg { font-size: 20px; padding: 22px 52px; }
.btn-xl {
  font-size: 22px;
  padding: 26px 60px;
  border-radius: 80px;
  width: 100%;
  justify-content: center;
  max-width: 540px;
}
.btn-pulse {
  
}


/* ── STICKY NAV ─────────────────────────────────────────────── */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(15,61,38,.0);
  backdrop-filter: blur(0px);
  transition: all .35s ease;
}
#site-nav.scrolled {
  background: rgba(15,61,38,.97);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--ff-head);
  font-size: 19px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
}
.nav-logo { text-decoration: none; }
.nav-logo span { color: var(--gold-lt); }
.nav-cta { padding: 12px 28px; font-size: 15px; }

/* Homepage nav menu — white links on dark green */
#site-nav .nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}
#site-nav .nav-menu a {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}
#site-nav .nav-menu a:hover,
#site-nav .nav-menu .current-menu-item > a,
#site-nav .nav-menu .current_page_item > a {
  color: var(--white);
}

/* ── Dropdown submenus — homepage sticky nav ── */
#site-nav .nav-menu li {
  position: relative;
  list-style: none;
}

/* Hidden: display:none removes from flow entirely */
#site-nav .nav-menu .sub-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

/* Visible: absolute drop below parent item */
#site-nav .nav-menu li:hover > .sub-menu,
#site-nav .nav-menu li:focus-within > .sub-menu {
  display: block !important;
  position: absolute !important;
  top: calc(100% + 12px) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  min-width: 210px !important;
  z-index: 9999 !important;
  background: rgba(8,20,14,.98) !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  border-radius: 10px !important;
  box-shadow: 0 10px 36px rgba(0,0,0,.5) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  animation: subMenuIn .18s ease both !important;
}

/* Arrow caret */
#site-nav .nav-menu li:hover > .sub-menu::before,
#site-nav .nav-menu li:focus-within > .sub-menu::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: rgba(255,255,255,.15);
  width: 0; height: 0;
}
#site-nav .nav-menu li:hover > .sub-menu::after,
#site-nav .nav-menu li:focus-within > .sub-menu::after {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-bottom-color: rgba(8,20,14,.98);
  width: 0; height: 0;
}

/* Sub-menu items */
#site-nav .nav-menu .sub-menu li {
  position: static !important;
  display: block !important;
  width: 100%;
}
#site-nav .nav-menu .sub-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: rgba(255,255,255,.72);
  white-space: nowrap;
  transition: color .18s, background .18s;
}
#site-nav .nav-menu .sub-menu a:hover {
  color: var(--gold-lt);
  background: rgba(255,255,255,.07);
}

@media (max-width: 860px) {
  #site-nav .nav-menu { display: none; }
}

/* ── HERO ───────────────────────────────────────────────────── */
/* Old #hero removed — replaced by #hero-slider (see front-page.php inline styles) */
/* These shared hero component styles are still used by the slider */
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,.78);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  padding: 7px 15px;
  border-radius: 40px;
  backdrop-filter: blur(8px);
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--gold-lt);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  width: 100%;
  max-width: 400px;
}
.hero-card-price {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.15);
  margin-bottom: 24px;
}
.hero-card-price .was {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  text-decoration: line-through;
  margin-bottom: 5px;
}
.hero-card-price .now {
  font-family: var(--ff-head);
  font-size: 62px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-card-price .now sub { font-size: 26px; vertical-align: middle; }
.hero-card-price .label {
  font-size: 12px;
  color: var(--gold-lt);
  font-weight: 600;
  letter-spacing: .06em;
  margin-top: 6px;
}
.hero-card-list { list-style: none; }
.hero-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 13px;
  color: rgba(255,255,255,.82);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.hero-card-list li:last-child { border-bottom: none; }
.hero-card-list .check {
  width: 19px; height: 19px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 1px;
}
.hero-guarantee {
  margin-top: 18px;
  background: rgba(184,134,11,.15);
  border: 1px solid rgba(184,134,11,.35);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 12px;
  color: var(--gold-lt);
  text-align: center;
}
.scroll-indicator {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  
  z-index: 20;
}
.scroll-indicator svg { opacity: .5; }




/* ── SOCIAL PROOF BAR ───────────────────────────────────────── */
#proof-bar {
  background: var(--gold);
  padding: 16px 0;
  overflow: hidden;
}
.proof-bar-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
}
.proof-sep {
  color: rgba(255,255,255,.5);
  font-size: 20px;
}
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── PAIN SECTION ───────────────────────────────────────────── */
#pain {
  padding: 100px 0;
  background: var(--cream);
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 60px;
}
.pain-card {
  background: var(--white);
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--forest-lt));
}
.pain-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.pain-card h3 {
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.pain-card p { font-size: 15px; color: var(--slate); line-height: 1.65; }
.pain-callout {
  margin-top: 60px;
  background: linear-gradient(135deg, var(--forest), var(--forest-mid));
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.pain-callout h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}
.pain-callout p { font-size: 17px; color: rgba(255,255,255,.82); line-height: 1.7; }
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-box {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.stat-box .num {
  font-family: var(--ff-head);
  font-size: 46px;
  font-weight: 900;
  color: var(--gold-lt);
  line-height: 1;
}
.stat-box .lbl { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 6px; }

/* ── SECTION DIVIDER ────────────────────────────────────────── */
.section-head { margin-bottom: 60px; }
.section-head h2 { font-size: clamp(32px, 4.5vw, 54px); line-height: 1.15; }
.section-head p { font-size: 18px; color: var(--slate); margin-top: 16px; max-width: 620px; }
.section-head.center { text-align: center; }
.section-head.center p { margin-inline: auto; }

/* ── TRUTH / MYTH SECTION ───────────────────────────────────── */
#truth {
  padding: 100px 0;
  background: var(--sage-lt);
}
.myth-list { display: flex; flex-direction: column; gap: 24px; margin-top: 60px; }
.myth-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.myth-side {
  padding: 36px 32px;
  background: var(--red-lt);
  border-right: 3px solid var(--red);
}
.myth-side .tag {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
}
.myth-side p { font-size: 16px; font-weight: 600; color: var(--red); font-style: italic; }
.truth-side { padding: 36px 32px; }
.truth-side .tag {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--forest-lt);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
}
.truth-side p { font-size: 16px; color: var(--slate); line-height: 1.65; }

/* ── PILLARS ────────────────────────────────────────────────── */
#pillars {
  padding: 100px 0;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
#pillars::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(184,134,11,.12), transparent 70%);
  pointer-events: none;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.pillar-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, background .3s ease;
}
.pillar-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.09);
}
.pillar-num {
  font-family: var(--ff-head);
  font-size: 80px;
  font-weight: 900;
  color: rgba(255,255,255,.05);
  position: absolute;
  top: -10px; right: 20px;
  line-height: 1;
  pointer-events: none;
}
.pillar-icon {
  font-size: 44px;
  margin-bottom: 20px;
}
.pillar-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--gold-lt);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pillar-card h3 {
  font-size: 26px;
  color: var(--white);
  margin-bottom: 16px;
}
.pillar-card p { font-size: 15px; color: rgba(255,255,255,.72); line-height: 1.7; }
.pillar-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pillar-list li {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  padding-left: 18px;
  position: relative;
}
.pillar-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── WHAT YOU GET ───────────────────────────────────────────── */
#includes {
  padding: 100px 0;
  background: var(--cream);
}
.includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.include-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  transition: all .3s;
}
.include-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.include-icon {
  width: 52px; height: 52px;
  background: var(--sage);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.include-item h3 { font-size: 18px; margin-bottom: 6px; color: var(--forest); }
.include-item p { font-size: 14px; color: var(--slate); line-height: 1.6; }
.include-item .badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 3px 10px;
  margin-top: 8px;
}

/* ── RESULTS TIMELINE ───────────────────────────────────────── */
#results {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--sage-lt) 0%, var(--cream) 100%);
}
.timeline {
  position: relative;
  margin-top: 70px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--forest-lt), var(--gold));
  transform: translateX(-50%);
}
.tl-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  margin-bottom: 60px;
  align-items: start;
}
.tl-item:nth-child(even) .tl-content { grid-column: 3; grid-row: 1; }
.tl-item:nth-child(even) .tl-dot { grid-column: 2; grid-row: 1; }
.tl-item:nth-child(even) .tl-spacer { grid-column: 1; grid-row: 1; }
.tl-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.tl-dot-inner {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--forest-lt), var(--forest));
  border: 4px solid var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 900;
  color: var(--gold-lt);
  box-shadow: var(--shadow-md);
}
.tl-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dk);
  margin: 0 24px;
}
.tl-content h3 { font-size: 22px; color: var(--forest); margin-bottom: 14px; }
.tl-content ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.tl-content ul li { font-size: 15px; color: var(--slate); padding-left: 22px; position: relative; }
.tl-content ul li::before { content: '✓'; position: absolute; left: 0; color: var(--forest-lt); font-weight: 700; }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
#testimonials {
  padding: 100px 0;
  background: var(--forest);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.testi-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform .3s;
}
.testi-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.1); }
.stars { color: var(--gold-lt); font-size: 18px; margin-bottom: 18px; }
.testi-quote {
  font-family: var(--ff-head);
  font-size: 18px;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 24px;
}
.testi-quote::before { content: '\201C'; color: var(--gold); font-size: 32px; line-height: 0; vertical-align: -12px; margin-right: 4px; }
.testi-meta { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--forest-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testi-name { font-weight: 700; color: var(--white); font-size: 15px; }
.testi-detail { font-size: 13px; color: rgba(255,255,255,.55); }
.testi-result {
  display: inline-block;
  background: rgba(184,134,11,.2);
  border: 1px solid rgba(184,134,11,.4);
  color: var(--gold-lt);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 6px;
}

/* ── PRICING ────────────────────────────────────────────────── */
#pricing {
  padding: 120px 0;
  background: var(--cream);
}
.pricing-wrap {
  max-width: 720px;
  margin-inline: auto;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--forest-lt);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--forest), var(--gold), var(--forest));
}
.pricing-top {
  background: linear-gradient(135deg, var(--forest), var(--forest-mid));
  padding: 56px 56px 48px;
  text-align: center;
  color: var(--white);
}
.pricing-top .kicker { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); color: var(--gold-lt); }
.pricing-top h2 { font-size: 36px; color: var(--white); margin-bottom: 10px; }
.pricing-top .subhead { font-size: 16px; color: rgba(255,255,255,.7); max-width: 460px; margin-inline: auto; }
.price-display {
  margin: 36px auto;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.price-was {
  font-size: 18px;
  color: rgba(255,255,255,.45);
  text-decoration: line-through;
  font-weight: 400;
}
.price-amount {
  font-family: var(--ff-head);
  font-size: 100px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -4px;
}
.price-amount sup { font-size: 36px; letter-spacing: 0; vertical-align: top; margin-top: 18px; display: inline-block; }
.price-once {
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: .14em;
  color: var(--gold-lt);
  text-transform: uppercase;
}
.pricing-body { padding: 48px 56px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-bottom: 40px; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  color: var(--slate);
}
.feat-check {
  width: 26px; height: 26px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-features li strong { color: var(--charcoal); }
.pricing-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.secure-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.secure-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

/* ── FAQ ────────────────────────────────────────────────────── */
#faq {
  padding: 100px 0;
  background: var(--sage-lt);
}
.faq-list { margin-top: 60px; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 26px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--ff-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
  transition: color .2s;
}
.faq-q:hover { color: var(--forest); }
.faq-arrow {
  width: 32px; height: 32px;
  background: var(--sage);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .3s, background .3s;
  font-size: 16px;
  color: var(--forest);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--forest); color: var(--white); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 32px 26px;
  font-size: 16px;
  color: var(--slate);
  line-height: 1.75;
}

/* ── FINAL CTA ──────────────────────────────────────────────── */
#final-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--forest) 0%, #0e0e14 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
#final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='1' fill='%23ffffff' fill-opacity='0.025'/%3E%3C/svg%3E");
}
#final-cta .kicker { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.25); color: var(--gold-lt); }
#final-cta h2 {
  font-size: clamp(36px, 5.5vw, 68px);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}
#final-cta h2 em { color: var(--gold-lt); font-style: italic; }
#final-cta p {
  font-size: 20px;
  color: rgba(255,255,255,.75);
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 52px;
}
.final-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.cta-note { font-size: 14px; color: rgba(255,255,255,.5); }

/* ── FOOTER ─────────────────────────────────────────────────── */
#footer {
  background: #0e0e12;
  padding: 48px 0;
  text-align: center;
  color: rgba(255,255,255,.4);
  font-size: 13px;
  line-height: 1.8;
}
#footer a { color: rgba(255,255,255,.55); }
#footer a:hover { color: var(--gold-lt); }
.footer-links { display: flex; justify-content: center; gap: 28px; margin-bottom: 20px; flex-wrap: wrap; }
.footer-disclaimer {
  max-width: 700px;
  margin: 16px auto 0;
  font-size: 11px;
  color: rgba(255,255,255,.28);
  line-height: 1.7;
}

/* ── FLOATING CTA ───────────────────────────────────────────── */
#float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: all .4s ease;
  pointer-events: none;
}
#float-cta.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.float-btn {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: 60px;
  box-shadow: 0 8px 40px rgba(184,134,11,.5);
  display: flex;
  align-items: center;
  gap: 10px;
  
  white-space: nowrap;
}

/* ── COUNTER / URGENCY ──────────────────────────────────────── */
.urgency-bar {
  background: var(--red-lt);
  border: 1px solid rgba(192,57,43,.25);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 28px;
  justify-content: center;
}
.urgency-dot {
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  
}


/* ── ANIMATIONS ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.in { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: .1s; }
.fade-up-d2 { transition-delay: .2s; }
.fade-up-d3 { transition-delay: .3s; }
.fade-up-d4 { transition-delay: .4s; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-layout { display: flex; flex-direction: column; gap: 48px; }
  .hero-visual { display: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-callout { grid-template-columns: 1fr; padding: 40px 32px; }
  .myth-card { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 32px; }
  .tl-item { grid-template-columns: 64px 1fr; grid-template-rows: auto; }
  .tl-dot { grid-column: 1; grid-row: 1; }
  .tl-content { grid-column: 2; grid-row: 1; margin: 0 0 0 16px; }
  .tl-spacer { display: none; }
  .tl-item:nth-child(even) .tl-content { grid-column: 2; }
  .tl-item:nth-child(even) .tl-dot { grid-column: 1; }
  .tl-item:nth-child(even) .tl-spacer { display: none; }
  .pricing-top, .pricing-body { padding: 40px 28px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .btn-xl { font-size: 18px; padding: 22px 32px; }
  .price-amount { font-size: 72px; }
  #float-cta { bottom: 16px; right: 16px; }
  .float-btn { font-size: 14px; padding: 14px 20px; }
}

/* ── HERO SLIDER: load hidden in <head> so browser never flashes SVGs ──
   opacity: 0 MUST live in this enqueued file, not in the inline <style>
   block at the bottom of front-page.php, because the browser renders
   the SVG paths before reaching bottom-of-page <style> tags.          */
#hero-slider {
  opacity: 0;
  transition: opacity .5s ease;
}
#hero-slider.hs-loaded {
  opacity: 1;
}

@keyframes subMenuIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
