/* ── RESET & ROOT ── */
@import url('https://fonts.googleapis.com/css2?family=Covered+By+Your+Grace&display=swap');
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #077345;
  --green-dark: #055534;
  --green-deeper: #033D25;
  --accent: #89C648;
  --black: #FFFFFF;
  --dark: #F4FAF6;
  --dark2: #EBF5EE;
  --dark3: #077345;
  --dark4: #055534;
  --white: #111111;
  --off-white: #333333;
  --text-light: #111111;
  --text-dim: #555555;
  --b-green: rgba(7, 115, 69, 0.25);
  --b-accent: rgba(7, 115, 69, 0.4);
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --announcement-bg: #077345;
  --announcement-border: #89C648;
  --announcement-text: #FFFFFF;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: #FFFFFF;
  color: #111111;
  overflow-x: hidden;
  line-height: 1.6;
}
.hero .site-nav{z-index:2;}
.site-nav {
  background: transparent;
  z-index: 9999;
}

.site-nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  margin-right: auto;
}

.site-logo img {
  width: 180px;
  margin-bottom: 20px;
}

.site-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  min-height: 34px;
  padding: 10px 21px;
  border-radius: 4px;
  background: linear-gradient(90deg, #007244 0%, #2BA44F 50%, #89C547 100%);
  box-shadow: 0 8px 32px rgba(43, 164, 79, 0.40);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

/* ── PRODUCT PHOTO ── */
.product-img-wrap {
  display: inline-block;
  position: relative;
}

.product-photo {
  width: clamp(220px, 32vw, 380px);
  height: clamp(220px, 32vw, 380px);
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--green);
  box-shadow: 0 0 60px rgba(7, 115, 69, 0.45), 0 0 120px rgba(7, 115, 69, 0.18), 0 0 200px rgba(137, 198, 72, 0.08);
  display: block;
  animation: glow-pulse-green 2.4s ease-in-out infinite;
}

/* ── NAV LOGO ── */
.nav-logo img {
  display: block;
}

/* ── HERO ── */
.hero {
  background-color: #077345;
  background-image: linear-gradient(135deg, #077345 0%, #2ba44f 45%, #89C648 100%);
  padding: 35px 5% 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero img.new-hero-img {
  width: clamp(220px, 32vw, 380px);
  height: clamp(220px, 32vw, 380px);
  object-fit: contain;
  display: block;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 2px solid var(--green);
  box-shadow: 0 0 60px rgba(7, 115, 69, 0.45), 0 0 120px rgba(7, 115, 69, 0.18), 0 0 200px rgba(137, 198, 72, 0.08);
  animation: glow-pulse-green 2.4s ease-in-out infinite;
}

.product-photo {
  display: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: transparent;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, transparent 55%, rgba(0, 0, 0, 0.45) 100%);
}

.hero>* {
  position: relative;
  z-index: 1;
}

.rx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(7, 115, 69, 0.15);
  border: 1px solid var(--b-accent);
  padding: 7px 20px;
  margin-bottom: 32px;
}

.rx-eyebrow span {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 2s ease infinite;
  flex-shrink: 0;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.25;
  }
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 74px);
  font-weight: 900;
  line-height: 1.04;
  color: var(--white);
  max-width: 960px;
  margin: 0 auto 22px;
  letter-spacing: -1.5px;
  margin-bottom:0;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-dim);
  max-width: 660px;
  margin: 0 auto 44px;
  font-weight: 300;
  line-height: 1.75;
}

.hero-sub strong {
  color: var(--text-light);
  font-weight: 600;
}

/* ── HERO LAYOUT ── */
.hero-two-col {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.hero-cta-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.hero-img-wrap {
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 0;
}

.hero-pill-img {
  width: clamp(290px, 46vw, 400px);
  height: auto;
  display: block;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 24px rgba(137, 198, 72, 0.9)) drop-shadow(0 0 60px rgba(7, 115, 69, 0.6)) drop-shadow(0 0 100px rgba(137, 198, 72, 0.3));
  /* animation: glow-pulse-green 2.4s ease-in-out infinite; */
  max-width: fit-content;
}

.text-white {
  color: #FFFFFF;
}
.y-shading {display: flex;flex-flow: column;;gap: 15px;}
.y-shading .why-item{background: #fffde1;padding: 18px 10px; border-radius: 15px;border:1px solid #dedaa3; gap: 14px;}
.y-shading .why-item-icon{background: transparent;width:76px}
.why-item:has(+ .y-shading) { border-bottom:none}
/* CTA */
@keyframes glow-pulse {

  0%,
  100% {
    box-shadow: 0 0 14px rgba(232, 160, 20, 0.55), 0 0 30px rgba(212, 120, 10, 0.38);
  }

  50% {
    box-shadow: 0 0 26px rgba(240, 200, 0, 0.9), 0 0 58px rgba(232, 160, 20, 0.6), 0 0 95px rgba(196, 122, 10, 0.28);
  }
}

@keyframes glow-pulse-green {

  0%,
  100% {
    box-shadow: 0 0 12px rgba(137, 198, 72, 0.45), 0 0 28px rgba(7, 115, 69, 0.35);
  }

  50% {
    box-shadow: 0 0 22px rgba(137, 198, 72, 0.8), 0 0 50px rgba(137, 198, 72, 0.45), 0 0 80px rgba(7, 115, 69, 0.25);
  }
}

.cta-primary {
  display: inline-block;
  background: linear-gradient(90deg, #C47A0A 0%, #E8A020 40%, #F0C800 100%);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 18px 56px;
  text-decoration: none;
  transition: transform 0.2s, filter 0.2s;
  border-radius: 8px;
  animation: glow-pulse 2.4s ease-in-out infinite;
}

.cta-primary:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
}

.cta-primary::after {
  content: ' →';
}

.cta-white {
  display: inline-block;
  background: linear-gradient(90deg, #C47A0A 0%, #E8A020 40%, #F0C800 100%);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 18px 56px;
  text-decoration: none;
  transition: transform 0.2s, filter 0.2s;
  border-radius: 8px;
  animation: glow-pulse 2.4s ease-in-out infinite;
}

.cta-white:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
}

.cta-white::after {
  content: ' →';
}

/* CTA size modifiers */
.cta-sm {
  font-size: 15px;
  padding: 18px 52px;
}

.cta-md {
  font-size: 15px;
  padding: 18px 60px;
}

.cta-lg {
  font-size: 15px;
  padding: 20px 68px;
}

.cta-xl {
  font-size: 15px;
  padding: 18px 72px;
  letter-spacing: 3px;
}

/* Trust bar */
.hero-trust {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-right: 1px solid var(--b-green);
  font-family: var(--font-body);
}

.trust-item:last-child {
  border-right: none;
}

.tdot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── STATS BAR ── */

/* ── TRUST BAR (floating card) ── */
.trust-bar-outer {
  background: transparent;
  padding: 0 5%;
  margin-top: -32px;
  position: relative;
  z-index: 10;
}

.trust-bar-inner {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(10, 18, 12, 0.80);
  border: 1px solid rgba(7, 115, 69, 0.55);
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(137, 198, 72, 0.08), inset 0 1px 0 rgba(137, 198, 72, 0.08);
  overflow: hidden;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-right: 1px solid rgba(7, 115, 69, 0.3);
}

.trust-bar-item:last-child {
  border-right: none;
}

.trust-icon-wrap {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-item-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 3px;
}

.trust-item-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.4;
}

/* ── SHARED ── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-eyebrow--tight {
  margin-bottom: 8px;
}

.section-h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.4;
  color: #111111;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-h2 sup {
  font-size: 24px;
}

.section-h2 em {
  font-style: normal;
  color: var(--accent);
}

.section-body {
  font-size: 16px;
  color: #555555;
  line-height: 1.8;
  font-weight: 300;
}

.section-body strong {
  color: var(--text-light);
  font-weight: 600;
}

.green-rule {
  width: 48px;
  height: 3px;
  background: var(--green);
  margin: 14px auto 28px;
}

.green-rule.left {
  margin: 14px 0 28px;
}

.green-rule-sm {
  width: 48px;
  height: 3px;
  background: #077345;
  margin: 16px auto 0;
}

.centered {
  text-align: center;
}

.inner-wide {
  max-width: 1100px;
  margin: 0 auto;
}

.inner-mid {
  max-width: 860px;
  margin: 0 auto;
}

.inner-slim {
  max-width: 760px;
  margin: 0 auto;
}

/* ── PROPOSITION PILLARS ── */
.pillars-section {
  background: #FFFFFF;
  padding: 45px 5%;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
  background: var(--b-green);
  border: 1px solid var(--b-green);
}

@media (min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1px;
    margin-top: 50px;
  }
}

.pillar-card {
  background: #F4FAF6;
  padding: 30px 24px;
  border: 1px solid rgba(7, 115, 69, 0.15);
  border-radius: 8px;
}

@media (min-width: 768px) {
  .pillar-card {
    padding: 40px 32px;
  }
}

.pillar-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--b-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pillar-icon svg {
  width: 20px;
  height: 20px;
}

.pillar-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .pillar-title {
    font-size: 20px;
  }
}

.pillar-body {
  font-size: 14px;
  color: #555555;
  line-height: 1.7;
}

.pillar-body strong {
  color: var(--text-light);
  font-weight: 600;
}

/* ── PRODUCT INTRO ── */
.product-intro {
  background: #FFFFFF;
  padding: 45px 5%;
  text-align: center;
}

.product-rx-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.product-logo-img {
  width: 140px;
  height: auto;
  margin-inline:auto;
}

.product-name {
  font-family: var(--font-head);
  font-size: clamp(70px, 14vw, 155px);
  font-weight: 900;
  line-height: 0.9;
  color: #111111;
  letter-spacing: -4px;
  margin-bottom: 6px;
}

.product-name .wow-accent {
  color: var(--accent);
}

.product-name-lucky {
  color: #077345;
}

.product-formula-badge {
  display: inline-block;
  background: var(--green);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 7px 22px;
  margin: 20px 0 44px;
}

.tablet-graphic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(140px, 18vw, 185px);
  height: clamp(140px, 18vw, 185px);
  border-radius: 50%;
  background: var(--dark3);
  border: 2px solid var(--green);
  box-shadow: 0 0 60px rgba(7, 115, 69, 0.35), 0 0 120px rgba(7, 115, 69, 0.12);
  margin-bottom: 48px;
  position: relative;
}

.tablet-pill {
  width: 62%;
  height: 30%;
  background: linear-gradient(135deg, var(--accent), var(--green), var(--green-deeper));
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(137, 198, 72, 0.5);
}

.tablet-graphic::after {
  content: 'Rx';
  position: absolute;
  bottom: 16px;
  right: 18px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
}

.formula-overview {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 100%;
  margin: 0 0 48px;
  background: transparent;
}

.fo-item {
  background: transparent;
  padding: 22px 16px;
  text-align: center;
  border-right: 1px solid rgba(7, 115, 69, 0.25);
}

.fo-num {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.fo-name {
  font-family: var(--font-head);
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 800;
  color: #89C648;
  line-height: 1.2;
}

.fo-dose {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  font-weight: 400;
}

.fo-item:last-child {
  border-right: none;
}

/* ── PRODUCT INTRO IMAGES & WRAPPERS ── */
.product-img-wrapper {
  margin-bottom: 20px;
}

.product-pill-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.product-cta-wrap {
  margin-bottom: 36px;
}

.product-disclaimer {
  font-size: 12px;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 44px;
  font-weight: 300;
  line-height: 1.2;
}

.product-scroll-hint {
  font-size: 18px;
  color: var(--text-dim);
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 2px;
  margin-bottom: 0;
}

/* ── FORMULA BAR (dark card) ── */
.formula-bar-outer {
  max-width: 100%;
  margin: 0 0 48px;
  padding: 0;
}

.formula-bar-inner {
  background: rgba(10, 20, 12, 0.80);
  border: 1px solid rgba(7, 115, 69, 0.5);
  border-radius: 14px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(137, 198, 72, 0.07);
}

.formula-bar-cell {
  padding: 26px 20px;
  border-right: 1px solid rgba(7, 115, 69, 0.25);
  text-align: center;
}

.formula-bar-cell:last-child {
  border-right: none;
}

.formula-bar-num {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 800;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.formula-bar-name {
  font-family: var(--font-head);
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 800;
  color: #89C648;
  line-height: 1.2;
  margin-bottom: 6px;
}

.formula-bar-dose {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
}

/* ── INGREDIENT FEATURE SECTIONS ── */
.ingredient-feature {
  padding: 45px 5%;
  background: #FFFFFF;
}

.ingredient-feature.bg-a {
  background: #FFFFFF;
}

.ingredient-feature.bg-b {
  background: #F4FAF6;
}

.if-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.if-inner.reverse {
  direction: rtl;
}

.if-inner.reverse>* {
  direction: ltr;
}

.if-inner--bordered {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 18px;
}

/* Left: number + visual */
.if-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  min-height: 330px;
  position: relative;
  isolation: isolate;
}

.if-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.6;
  background-repeat: no-repeat;
  background-position: 6px 0;
  background-size: 100%;
  top: -160px;
}

#acc-01 .if-visual::before {
  /* background-image: url("../images/sildenafil-molecule.png"); */
  background-image: url("../images/sildenafil-molecule.png");

  background-image: -webkit-image-set(url("../images/sildenafil-molecule.webp") type("image/webp"),
      url("../images/sildenafil-molecule.png") type("image/png"));

  background-image: image-set(url("../images/sildenafil-molecule.webp") type("image/webp"),
      url("../images/sildenafil-molecule.png") type("image/png"));
}

#acc-02 .if-visual::before {
  background-image: url("../images/tadalafil-molecule.png");

  background-image: -webkit-image-set(url("../images/tadalafil-molecule.webp") type("image/webp"),
      url("../images/tadalafil-molecule.png") type("image/png"));

  background-image: image-set(url("../images/tadalafil-molecule.webp") type("image/webp"),
      url("../images/tadalafil-molecule.png") type("image/png"));
}

#acc-03 .if-visual::before {
  background-image: url("../images/apomorphine-molecule.png");

  background-image: -webkit-image-set(url("../images/apomorphine-molecule.webp") type("image/webp"),
      url("../images/apomorphine-molecule.png") type("image/png"));

  background-image: image-set(url("../images/apomorphine-molecule.webp") type("image/webp"),
      url("../images/apomorphine-molecule.png") type("image/png"));
}

#acc-04 .if-visual::before {
  background-image: url("../images/oxytocin-molecule.png");

  background-image: -webkit-image-set(url("../images/oxytocin-molecule.webp") type("image/webp"),
      url("../images/oxytocin-molecule.png") type("image/png"));

  background-image: image-set(url("../images/oxytocin-molecule.webp") type("image/webp"),
      url("../images/oxytocin-molecule.png") type("image/png"));
}

#acc-05 .if-visual::before {
  background-image: url("../images/vitamin-b12-molecule.png");

  background-image: -webkit-image-set(url("../images/vitamin-b12-molecule.webp") type("image/webp"),
      url("../images/vitamin-b12-molecule.png") type("image/png"));

  background-image: image-set(url("../images/vitamin-b12-molecule.webp") type("image/webp"),
      url("../images/vitamin-b12-molecule.png") type("image/png"));
}

.if-compound-num {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--accent);
}

.if-big-num {
  font-family: var(--font-head);
  font-size: clamp(100px, 16vw, 180px);
  font-weight: 800;
  line-height: 0.85;
  color: rgba(7, 115, 69, 0.18);
  letter-spacing: -6px;
}

.if-dose-block {
  background: var(--dark3);
  border: 1px solid var(--b-accent);
  padding: 18px 24px;
}

.if-dose-label {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.if-dose-value {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1;
}

.if-dose-unit {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-left: 4px;
}

/* Right: copy */
.if-copy {}

.if-number-label {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.if-name {
  font-family: var(--font-head);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -1px;
  line-height: 1.05;
  margin-bottom: 4px;
}

.if-aka {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.if-mechanism {
  font-family: var(--font-body);
  font-size: 18px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  border-left: 3px solid rgba(255, 255, 255, 0.5);
  padding-left: 14px;
  margin-bottom: 22px;
  line-height: 1.6;
}

.if-mechanism strong {
  color: #FFFFFF;
  font-style: normal;
  font-weight: 700;
}

.if-body {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 28px;
}

.if-body strong {
  color: var(--text-light);
  font-weight: 600;
}

.if-benefits li {
  color: rgba(255, 255, 255, 0.85);
}

.if-benefits {
  list-style: none;
  margin-bottom: 0;
}

.if-benefits li {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 0 8px 22px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  line-height: 1.5;
}

.if-benefits li:last-child {
  border-bottom: none;
}

.if-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFFFFF;
  font-weight: 700;
}

/* ── INGREDIENTS ACCORDION ── */
.accordion-section {
  background: var(--dark2);
  padding: 30px 5%;
}

.accordion-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.acc-item {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(7, 115, 69, 0.45);
  box-shadow: 0 0 40px rgba(7, 115, 69, 0.12);
}

.acc-header {
  width: 100%;
  border: none;
  cursor: pointer;
  text-align: left;
  background: linear-gradient(135deg, #077345 0%, #2ba44f 45%, #89C648 100%);
  padding: 24px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  line-height: normal;
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.acc-body-inner {
  background: linear-gradient(135deg, #077345 0%, #2ba44f 45%, #89C648 100%);
  padding: 0 52px 28px;
}

.acc-body-inner--rev {
  background: linear-gradient(135deg, #89C648 0%, #2ba44f 45%, #077345 100%);
}

.acc-title-group {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  flex-wrap: wrap;
}

.acc-num {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 900;
  color: #FFFFFF;
  white-space: nowrap;
}

.acc-badge {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.acc-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
}

.acc-arrow {
  font-size: 24px;
  color: #FFFFFF;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.acc-cta-wrap {
  text-align: center;
  margin-top: 48px;
}

/* ── COMPARISON ── */
.comparison-section {
  background: #FFFFFF;
  padding: 50px 5%;
}

.comp-table-wrap {
  overflow-x: auto;
  margin-top: 44px;
  position: relative;
}

table.comp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 620px;
}

.comp-table th {
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  border-bottom: 2px solid rgba(7, 115, 69, 0.3);
  color: #555555;
}

.comp-table th.hcol {
  background: #89C648;
  color: #FFFFFF;
  border: 1px solid rgba(137, 198, 72, 0.5);
  border-bottom: 2px solid var(--accent);
  box-shadow: 0 -4px 20px rgba(7, 115, 69, 0.4), 0 0 30px rgba(7, 115, 69, 0.35);
  position: relative;
  z-index: 2;
  padding-left: 18px;
  padding-right: 18px;
  font-weight: 900;
}

.comp-table th.hcol.th-lucky {
  font-size: 14px;
  font-weight: 700;
}

.comp-table td.hcol.check {
  font-size: 14px;
  padding: 12px 18px;
}

.comp-table td.cross {
  color: red;
}

.comp-table th.hcol span {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 900;
}

.comp-table th:first-child {
  text-align: left;
  padding-right: 5px;
}

.comp-table td {
  padding: 13px 18px;
  font-size: 16px;
  text-align: center;
  border-bottom: 1px solid rgba(7, 115, 69, 0.1);
  color: #555555;
  vertical-align: middle;
}

.comp-table td:first-child {
  text-align: left;
  color: #111111;
  font-weight: 500;
  padding-right: 5px;
}

.comp-table td.hcol {
  background: #89C648;
  border-left: 1px solid rgba(137, 198, 72, 0.5);
  border-right: 1px solid rgba(137, 198, 72, 0.5);
  color: #FFFFFF;
  font-weight: 800;
  position: relative;
  z-index: 2;
  padding-left: 5px;
  padding-right: 18px;
  box-shadow: -6px 0 24px rgba(7, 115, 69, 0.4), 6px 0 24px rgba(7, 115, 69, 0.4), 0 0 40px rgba(7, 115, 69, 0.25);
}

.comp-table tr:last-child td.hcol {
  border-bottom: 2px solid rgba(137, 198, 72, 0.5);
  box-shadow: -6px 0 24px rgba(7, 115, 69, 0.4), 6px 0 24px rgba(7, 115, 69, 0.4), 0 8px 24px rgba(7, 115, 69, 0.45), 0 0 40px rgba(7, 115, 69, 0.25);
}

.check {
  color: #E05C5C;
  font-size: 16px;
  font-weight: 700;
}

.hcol .check {
  color: #FFFFFF;
  font-weight: 900;
  font-size: 21px;
}

.cross {
  color: #E05C5C;
  font-size: 16px;
}

.partial {
  color: var(--text-dim);
  font-size: 12px;
}

.comp-note {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgb(137 198 72);
    text-align: center;
    margin-top: 18px;
    letter-spacing: 1px;
    font-weight: 600;
}

.comp-empty-note {
  font-size: 15px;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
}

.th-left {
  text-align: left;
}

.th-lucky {
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--accent);
}

.span-sub {
  font-size: 9px;
  letter-spacing: 1px;
  font-weight: 400;
}

.comp-cta-wrap {
  text-align: center;
}

/* ── WHY LUCKYRX ── */
.why-section {
  background: #FFFFFF;
  padding: 50px 5%;
  position: relative;
  overflow: hidden;
}

.why-header {
  text-align: center;
  margin-bottom: 44px;
}

.why-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #077345;
  margin-bottom: 10px;
}

.why-h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  color: #111111;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 0;
}

.why-h2-em {
  color: #077345;
  font-style: normal;
  font-family: 'Covered By Your Grace', cursive;
  font-weight: 400;
  font-size: 1.3em;
  letter-spacing: 1px;
  text-shadow: 0 0 40px rgba(7, 115, 69, 0.5);
}

.why-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.why-img-col {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.why-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 16px;
}

.why-img-overlay {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 2px solid rgba(7, 115, 69, 0.4);
  pointer-events: none;
}

.why-value-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-intro-text {
  font-family: var(--font-body);
  font-size: 18px;
  color: #444444;
  margin-bottom: 28px;
  font-weight: 300;
  line-height: 1.5;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #e8f5ee;
}

.why-item:last-child {
  /* border-bottom: none; */
}

.why-item-icon {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  border-radius: 10px;
  background: linear-gradient(135deg, #077345, #89C648);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.why-item-icon img {
  max-width: 100%;
}

.why-item-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 3px;
  line-height: 1.2;
}

.why-item-title--flex {
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-item-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: #666666;
  font-weight: 300;
  line-height: 1.5;
}

.why-badge {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  color: #FFFFFF;
  background: #077345;
  padding: 2px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.6;
}

/* ── HOW IT WORKS ── */
.how-section {
  background: #EBF5EE;
  padding: 45px 5%;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 50px;
}

.step-item {
  background: #FFFFFF;
  padding: 34px 24px;
  border-radius: 8px;
}

.step-num {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 14px;
  display: block;
}

.step-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
  line-height: 1.3;
}

.step-body {
  font-size: 13px;
  color: #555555;
  line-height: 1.65;
}

.how-h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  color: #077345;
  margin-bottom: 8px;
  letter-spacing: -1px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.how-h2 img {
  width: 145px;
}

.how-rule {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 18px auto 52px;
}

.how-grid-wrap {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.how-connector {
  position: absolute;
  top: 160px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(137, 198, 72, 0.3), var(--accent));
  pointer-events: none;
  z-index: 0;
}

.how-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.how-step-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #060E0B;
  border: 1px solid var(--b-green);
  box-shadow: 0 0 30px rgba(7, 115, 69, 0.25);
}

.how-step-media img {
  width: 100%;
  height: 100%;
}

.how-step-media--green {
  background: var(--green);
  border-color: var(--b-accent);
  box-shadow: 0 0 30px rgba(7, 115, 69, 0.35);
}

.how-step-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a1f0e 0%, #1a3d22 40%, #0d2614 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.how-step-bg--alt {
  background: linear-gradient(160deg, #077345 0%, #055534 60%, #033D24 100%);
  align-items: center;
  justify-content: center;
}

.how-step-num {
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-family: var(--font-head);
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
  opacity: 0.2;
  text-shadow: 0 0 20px rgba(137, 198, 72, 0.5);
}

.how-step-num--3 {
  opacity: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(137, 198, 72, 0.6);
}

.how-step-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(137, 198, 72, 0.6);
  text-transform: uppercase;
}

.how-step-title {
  font-family: var(--font-head);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.how-step-desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: #555555;
  font-weight: 300;
}

.how-step-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.phone-mockup {
  width: 44%;
  aspect-ratio: 9 / 16;
  background: #0a0d0a;
  border-radius: 14px;
  border: 2px solid rgba(137, 198, 72, 0.4);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.phone-label {
  font-family: var(--font-body);
  font-size: 5px;
  letter-spacing: 1px;
  color: var(--accent);
  text-align: center;
  margin-bottom: 4px;
}

.phone-field {
  background: rgba(137, 198, 72, 0.1);
  border: 1px solid rgba(137, 198, 72, 0.25);
  height: 10px;
  border-radius: 3px;
}

.phone-cta-btn {
  background: var(--accent);
  height: 12px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-cta-text {
  font-family: var(--font-body);
  font-size: 5px;
  font-weight: 700;
  color: #000;
  letter-spacing: 1px;
}

.how-cta-wrap {
  margin-top: 52px;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--black);
  padding: 50px 5%;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(24%, 1fr));
  gap: 10px;
  max-width: 1100px;
  margin: 48px auto 0;
}

.testi-card {
  background: #F4FAF6;
  padding: 15px;
  border: 1px solid rgba(7, 115, 69, 0.2);
  border-radius: 12px;
  height: 420px;
  position: relative;
}

.testi-card::before {
  content: 'Patient Success Stories';
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 3px;
  color: var(--green);
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.testi-stars {
  /* color: var(--accent); */
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.testi-stars img {
  max-width: 85px;
}

.testi-quote {
  font-size: 16px;
  font-style: italic;
  color: #333333;
  line-height: 26px;
  margin-bottom: 0;
  font-weight: 300;
  border-left: 3px solid var(--green);
  padding-left: 12px;
}

.testi-author {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #111111;
  margin: 0;
}

.testi-details {
  font-family: var(--font-body);
  font-size: 12px;
  color: #777777;
  margin-top: 3px;
  letter-spacing: 1px;
  margin: 0;
}

.testi-dots {
  display: none;
}

.testimonial-disclaimer {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    text-align: center;
}
/* ── TESTIMONIALS MOBILE SLIDER ── */
@media (max-width: 767px) {
  .testi-grid {
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    padding: 0 5% 4px;
    margin: 48px -5% 0;
    width: calc(100% + 10%);
  }

  .product-formula-badge {
    font-size: 12px;
  }

  .testi-grid::-webkit-scrollbar {
    display: none;
  }

  .testi-card {
    flex: 0 0 85%;
    min-width: 85%;
    scroll-snap-align: center;
  }

  .testi-dots {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }

  table.comp-table {
    table-layout: auto;
    min-width: 100%;
    width: 100%;
  }

  .comp-table .th-w-25 {
    min-width: 80px !important;
    max-width: 80px !important;
  }

  .comp-table th.hcol.th-lucky,
  .comp-table th {
    font-size: 10px;
  }

  .span-sub {
    font-size: 8px;
  }

  .comp-table td.hcol.check,
  .comp-table td {
    padding: 10px 8px;
    font-size: 10px;
  }

  .comp-table th {
    padding: 10px 8px;
  }

  .span-sub {
    font-size: 8px;
  }

  .comparison-section {
    padding: 50px 15px;
  }

  .span-sub {
    font-size: 6px;
  }

  .comp-table td:first-child,
  .comp-table th.hcol.th-lucky {
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (min-width: 768px) {
  .testi-dots {
    display: none;
  }
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(7, 115, 69, 0.25);
  transition: background 0.25s;
  cursor: pointer;
}

.testi-dot.active {
  background: var(--green);
}

/* ── GUARANTEE ── */
.guarantee-section {
  background: var(--green);
  padding: 40px 5%;
  text-align: center;
}

.guarantee-inner {
  max-width: 660px;
  margin: 0 auto;
}

.guarantee-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 28px;
}

.guarantee-mark .days {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.guarantee-mark .day-label {
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.8);
}

.guarantee-h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.guarantee-body {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.75;
  font-weight: 300;
}

/* ── FAQ ── */
.faq-section {
  background: var(--dark);
  padding: 50px 5%;
}

.faq-item {
  padding: 24px 0;
}

.faq-q {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-q .faq-arrow {
  color: var(--accent);
  font-size: 22px;
  flex-shrink: 0;
  transition: transform 0.25s;
  font-family: var(--font-body);
  font-weight: 300;
}

.faq-item.open .faq-arrow {
  transform: rotate(45deg);
}

.faq-a {
  font-size: 18px;
  color: #555555;
  line-height: 1.6;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, margin-top 0.25s;
}

.faq-item.open .faq-a {
  max-height: 400px;
  margin-top: 14px;
}

.faq-header {
  margin-bottom: 50px;
}

/* ── FINAL CTA ── */
.final-cta {
  background-color: #077345;
  background-image: linear-gradient(135deg, #077345 0%, #2ba44f 45%, #89C648 100%);
  padding: 55px 5%;
  text-align: center;
}

.final-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 5.5vw, 66px);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.final-cta h2 em {
  font-style: normal;
  color: #89C648;
}

.final-cta-h2-span {
  color: #ffffff;
}

.final-cta-h2-em {
  color: var(--accent);
  font-style: normal;
  font-size: 1.5em;
  line-height: 1;
}

.final-cta p {
  font-size: 12px;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  font-weight: 300;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.cta-subtext {
  font-family: var(--font-body);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 2px;
}

.cta-subtext strong {
  color: var(--text-light);
}

.final-cta-footer-logo {
  margin-bottom: 18px;
}

/* ── FOOTER ── */
footer {
  background: var(--dark3);
  padding: 40px 5% 30px;
  text-align: center;
}

.footer-logo img {
  width: 100%;
  max-width: 350px;
}

.footer-legal {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  max-width: 100%;
  margin: 0 auto;
}

/* SITE FOOTER */
.site-footer {
  background: transparent;
  color: #ffffff;
  padding: 40px;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, .4);
}

.site-footer__inner {
  width: 100%;
  margin: 0 auto;
}

.site-footer__columns {
  display: grid;
  /* grid-template-columns: minmax(200px, 1fr) minmax(160px, 1fr) auto; */
  grid-template-columns: minmax(200px, 1fr) minmax(160px, 1fr) minmax(160px, 1fr) minmax(160px, 1fr) auto;
  gap: 48px;
  align-items: start;
}

.site-footer__group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 19px;
}

.site-footer__group h2 {
  margin: 0 0 1px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer a {
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

.site-footer__social {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}

.site-footer__social a {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.site-footer__social img {
  width: 30px;
  height: 30px;
  display: block;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: minmax(180px, auto) 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 50px;
}

.site-footer__badges {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}

.site-footer__badges img {
  width: auto;
  height: 78px;
  display: block;
}

.site-footer__legal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.site-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: flex-end;
}

.site-footer__legal-links a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #ffffff;
  font-family: var(--font-body);
  line-height: 1.3;
}

.site-footer__legal p {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
}
@keyframes announcement-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}
.announcement-bar {
    background: var(--announcement-bg);
    border-bottom: 0.1rem solid var(--announcement-border);
}

.announcement-bar__viewport {
    overflow: hidden;
}

.announcement-bar__marquee {
    display: flex;
    width: max-content;
    animation: announcement-scroll 35s linear infinite;
    will-change: transform;
    padding: 6px 0;
}

.announcement-bar__track {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 0 0 auto;
    padding-inline-end: 0;
    margin: 0;
    padding:0;
}

.announcement-bar__item {
    display: flex;
    align-items: center;
    gap: 17px;
    flex: 0 0 auto;
    min-height: 22px;
    padding-inline-start: 17px;
}

.announcement-bar__text {
    /* font-size: 1.4rem; */
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 20px;
    text-transform: uppercase;
    color: var(--announcement-text);
}

.announcement-bar__text img {
    color: var(--announcement-text);
    white-space: nowrap;
}

.announcement-bar__icon img {
    width: 15px;
}

.announcement-bar__marquee:hover {
    animation-play-state: paused;
}
.antialiased .glow-button {
  animation:fadeUp 0.6s 0.24s ease both,  glow-pulse 2.4s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
    .announcement-bar__viewport {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .announcement-bar__viewport::-webkit-scrollbar {
        display: none;
    }

    .announcement-bar__marquee {
        animation: none;
    }
}
@media screen and (max-width:767px) {
.announcement-bar__track {
        gap: 0;
        padding-inline-end: 0;
    }

    .announcement-bar__item {
        min-height: 24px;
        gap: 12px;
        padding-inline-start: 12px;
    }

    .announcement-bar__text,
    .announcement-bar__icon {
        font-size: 12px;
        letter-spacing: 1.2px;
    }
  }

@media (max-width: 900px) {
  .site-footer {
    padding: 34px 24px 40px;
  }

  .site-footer__columns {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
  }

  .site-footer__social {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .site-footer__legal {
    align-items: flex-start;
  }

  .site-footer__legal-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-footer__columns {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer__group {
    gap: 15px;
  }

  .site-footer__badges {
    gap: 18px;
  }

  .site-footer__badges img {
    height: 66px;
  }

  .site-footer__legal-links {
    flex-direction: column;
    gap: 12px;
  }
}

/* FLOATING CTA */
.float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

/* ── HOW H2 LOGO & FOOTER BRAND LOGO ── */
.how-h2-logo {
  height: clamp(40px, 6vw, 70px);
  width: auto;
  vertical-align: middle;
  margin-left: 10px;
  filter: brightness(0) saturate(100%) invert(45%) sepia(80%) saturate(400%) hue-rotate(95deg) brightness(95%);
}

.footer-brand-logo {
  height: 352px;
  width: auto;
}

.float-cta-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: linear-gradient(90deg, #C47A0A 0%, #E8A020 40%, #F0C800 100%);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 10px;
  animation: glow-pulse 2.4s ease-in-out infinite;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.display_switch {
  display: none;
}

.testi-author-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  width: auto;
}

.testi-author-img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background-color: #c3c3c3;
}

.testi-author-content {
  display: flex;
  flex-direction: column;
}

/* ── RESPONSIVE ── */
@media (max-width:1199px) {
  .testi-grid {
    grid-template-columns: repeat(auto-fit, minmax(48%, 2fr));
  }

  .testi-card {
    height: auto;
  }

  .testi-quote {
    margin-bottom: 1rem;
  }

  .testi-author-wrap {
    position: relative;
    bottom: inherit;
  }

  .site-logo img {
    margin-bottom: 0;
  }
   .why-grid {
    gap:30px;
  }
  .why-item-title{font-size:15px;}
}

@media (max-width: 900px) {
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-two-col {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

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

  .trust-bar-item {
    gap: 10px;
    padding: 15px;
  }

  .testi-card {
    height: 340px;
  }

  .testi-author-wrap {
    position: absolute;
    bottom: 15px;
  }
}

@media (max-width: 800px) {
  .if-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .if-inner.reverse {
    direction: ltr;
  }

  .if-big-num {
    font-size: 100px;
  }

  .formula-overview {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .testi-card {
    height: auto;
  }

  .testi-author-wrap {
    position: relative;
    bottom: inherit;
  }

  .how-steps-grid {
    gap: 10px;
  }

  .how-step-title {
    font-size: 14px;
    line-height: 16px;
    margin-top: 10px;
  }

  .how-step-desc {
    font-size: 12px;
    line-height: 14px;
  }

  .how-rule {
    margin-bottom: 30px;
  }

  .how-cta-wrap {
    margin-top: 30px;
  }

  .how-connector {
    display: none;
  }
}

@media (max-width: 600px) {
  .if-visual::before {
    top: 0;
  }

  .why-item-title--flex {
    gap: 5px;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
  }

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

  .trust-item {
    padding: 8px 12px;
  }

  .formula-overview {
    grid-template-columns: 1fr 1fr;
  }

  .formula-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-two-col {
    gap: 0px;
  }

  .hero-cta-col {
    gap: 0;
  }

  .acc-title-group {
    row-gap: 10px;
  }

  .adv-acc-name {
    font-size: 16px;
  }

  .acc-header {
    padding: 18px 20px;
    gap: 14px;
  }

  .acc-body-inner {
    padding: 0 20px 24px;
  }

  .formula-bar-cell {
    padding: 15px;
  }

  .formula-bar-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .formula-bar-cell {
    flex: 0 0 50%;
  }

  .formula-bar-cell:last-child {
    margin-left: auto;
    margin-right: auto;
  }

  .how-h2 {
    flex-flow: column-reverse;
    gap: 0;
  }

  .site-nav__inner {
    justify-content: center;
  }

  .site-logo {
    margin-right: unset;
  }

  .site-nav__inner .site-nav__cta {
    display: none;
  }

  .if-visual {
    gap: 80px;
  }

  .why-intro-text {
    display: none;
  }

  .why-intro-text.display_switch {
    display: block;
    margin-top: 10px;
  }

  .why-grid {
    gap: 20px;
  }
}

/* ── ENTRANCE ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rx-eyebrow {
  animation: fadeUp 0.6s ease both;
}

.hero h1 {
  animation: fadeUp 0.6s 0.08s ease both;
}

.hero-sub {
  animation: fadeUp 0.6s 0.16s ease both;
}

.cta-primary {
  animation: fadeUp 0.6s 0.24s ease both;
}

.hero-trust {
  animation: fadeUp 0.6s 0.32s ease both;
}

/* All selectors prefixed with .adv- to avoid collisions with existing CSS */

.adv-section {
  background: #080d0a;
  padding: 80px 5% 96px;
  position: relative;
  overflow: hidden;
}

/* Ambient glow — matches brand's dark section treatment */
.adv-section::before {
  content: '';
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 115, 69, 0.09) 0%, transparent 68%);
  top: -140px;
  right: -100px;
  pointer-events: none;
}

.adv-section::after {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(137, 198, 72, 0.05) 0%, transparent 70%);
  bottom: -80px;
  left: -60px;
  pointer-events: none;
}

.adv-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.adv-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #89C648;
  text-align: center;
  margin-bottom: 14px;
}

.adv-h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 900;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0 auto 16px;
  max-width: 700px;
}

.adv-h2 em {
  font-style: italic;
  color: #89C648;
}

/* Matches site's .green-rule */
.adv-rule {
  width: 48px;
  height: 3px;
  background: #077345;
  margin: 14px auto 52px;
}

/* ── Two-column grid ── */
.adv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ── Feature rows — left column ── */
.adv-features {
  display: flex;
  flex-direction: column;
}

.adv-feature {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(7, 115, 69, 0.2);
  align-items: start;
}

.adv-feature:first-child {
  border-top: 1px solid rgba(7, 115, 69, 0.2);
}

.adv-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(137, 198, 72, 0.3);
  background: rgba(7, 115, 69, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.adv-label {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #89C648;
  margin-bottom: 4px;
}

.adv-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 5px;
}

.adv-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  font-weight: 300;
}

/* ── Visual card — right column ── */
.adv-card {
  background: rgba(10, 20, 12, 0.85);
  border: 1px solid rgba(7, 115, 69, 0.45);
  border-radius: 20px;
  padding: 40px 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(137, 198, 72, 0.06), inset 0 1px 0 rgba(137, 198, 72, 0.06);
}

.adv-card::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(137, 198, 72, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.adv-flavor-badge {
  background: rgba(7, 115, 69, 0.2);
  border: 1px solid rgba(137, 198, 72, 0.4);
  border-radius: 40px;
  padding: 7px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #89C648;
  position: relative;
  z-index: 2;
}

/* 
  The pill image has a pure black background.
  mix-blend-mode: screen removes the black — identical to how the site
  handles .hero-pill-img — leaving only the bright lime pill visible.
*/
.adv-pill-img {
  width: 240px;
  max-width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  mix-blend-mode: screen;
  filter:
    drop-shadow(0 0 20px rgba(137, 198, 72, 0.7)) drop-shadow(0 0 50px rgba(7, 115, 69, 0.5)) drop-shadow(0 0 90px rgba(137, 198, 72, 0.2));
}

.adv-flavor-name {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 900;
  font-style: italic;
  color: #FFFFFF;
  text-align: center;
  line-height: 1;
  letter-spacing: -1px;
  position: relative;
  z-index: 2;
}

.adv-flavor-name span {
  color: #89C648;
}

.adv-flavor-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  max-width: 100%;
  line-height: 1.6;
  font-weight: 300;
  position: relative;
  z-index: 2;
}

/* Fact chips */
.adv-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.adv-chip {
  border-radius: 20px;
  background: #ffffff;
  border: 1.5px solid #077345;
  padding: 6px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #077345;
  display: flex;
  align-items: center;
  gap: 7px;
}

.adv-chip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #077345;
  flex-shrink: 0;
}

/* Card footer / CTA strip */
.adv-card-footer {
  background: rgba(7, 115, 69, 0.12);
  border: 1px solid rgba(7, 115, 69, 0.35);
  border-radius: 12px;
  padding: 16px 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 2;
  margin-top: 4px;
}

.adv-footer-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
}

.adv-footer-sub {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 3px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/*
  Overrides .cta-primary padding only — gradient, animation, color, font
  all come from the site's existing style.css definition.
  Do not add background/color here; let .cta-primary handle it.
*/
.adv-cta {
  padding: 12px 22px !important;
  font-size: 12px !important;
  white-space: nowrap;
  letter-spacing: 2px !important;
  border-radius: 6px !important;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .adv-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .adv-section {
    padding: 64px 5% 80px;
  }
}

@media (max-width: 600px) {
  .adv-card {
    padding: 32px 20px 22px;
  }

  .adv-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .adv-pill-img {
    width: 180px;
  }

  .adv-chips {
    gap: 6px;
  }
}

.adv-acc-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(7, 115, 69, 0.45);
  box-shadow: 0 0 24px rgba(7, 115, 69, 0.1);
  margin-bottom: 10px;
}

.adv-acc-item:last-child {
  margin-bottom: 0;
}

.adv-acc-header {
  width: 100%;
  border: none;
  cursor: pointer;
  text-align: left;
  background: linear-gradient(135deg, #077345 0%, #2ba44f 45%, #89C648 100%);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  transition: filter 0.2s;
}

.adv-acc-header:hover {
  filter: brightness(1.08);
}

.adv-acc-title-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.adv-acc-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.adv-acc-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.adv-acc-label {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.adv-acc-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.adv-acc-arrow {
  font-size: 24px;
  color: #fff;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
  font-family: 'Inter', sans-serif;
}

.adv-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.adv-acc-body-inner {
  background: #ffffff;
  padding: 8px 22px 10px;
  border-top: 1px solid rgba(7, 115, 69, 0.3);
}

.adv-acc-body-inner .adv-desc {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #444444;
  line-height: 1.4;
  font-weight: 400;
}

/* Desktop: accordions always expanded, arrow hidden, header not interactive */
@media (min-width: 901px) {
  .adv-acc-body {
    max-height: 600px !important;
    transition: none !important;
  }

  .adv-acc-arrow {
    display: none !important;
  }

  .adv-acc-header {
    pointer-events: none;
    cursor: default;
  }

  /* Stretch right card to match left column height */
  .adv-grid {
    align-items: stretch;
  }

  .adv-card-col {
    display: flex;
    flex-direction: column;
  }

  .adv-card {
    flex: 1;
    justify-content: space-between;
  }
  .hero-two-col{margin-top:-70px;}
}

/* Mobile: pill card first, accordions below */
@media (max-width: 900px) {
  .adv-grid {
    display: flex !important;
    flex-direction: column;
  }

  .adv-card-col {
    order: 1;
  }

  .adv-features {
    order: 2;
  }
}

/* Lucy transparent PNG on dark card */
.adv-lucy-img {
  width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  mix-blend-mode: screen;
  /* filter: drop-shadow(0 0 22px rgba(137, 198, 72, 0.55)) drop-shadow(0 0 55px rgba(7, 115, 69, 0.38)) drop-shadow(0 0 100px rgba(137, 198, 72, 0.15)); */
}

@media(max-width:767px) {
  .adv-acc-name {
    font-size: 16px;
  }

  .adv-acc-header {
    gap: 12px;
  }

  .adv-acc-title-group {
    gap: 10px;
  }

  .if-mechanism,
  .if-benefits li,
  .why-intro-text,
  .testi-quote,
  .faq-a,
  .adv-acc-body-inner .adv-desc {
    font-size: 16px;
  }
}