/* ============================================================
   BLADDERGUARD — Cape Shield Clinical (ZA)
   ============================================================ */

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0D3B66;
  --navy-mid:   #14508A;
  --navy-deep:  #082847;
  --teal:       #2A9D8F;
  --teal-light: #3DB8A8;
  --teal-pale:  #E0F5F2;
  --sky:        #E8F4F8;
  --amber:      #F4A261;
  --amber-dark: #E07B39;
  --slate:      #1A2332;
  --mid:        #5A6578;
  --light:      #94A3B8;
  --border:     #D8E2EC;
  --mist:       #F7FAFC;
  --white:      #FFFFFF;

  --ink:        var(--slate);
  --dark:       #2D3748;
  --green:      var(--teal);
  --green-mid:  var(--teal-light);
  --green-pale: var(--teal-pale);
  --jade:       var(--teal);
  --jade-light: var(--teal-light);
  --jade-deep:  var(--navy-deep);
  --jade-pale:  var(--teal-pale);
  --terra:      var(--amber);
  --terra-dark: var(--amber-dark);
  --sand:       var(--mist);
  --sand-deep:  var(--sky);
  --gold:       var(--amber);

  --shadow-sm:  0 2px 16px rgba(13,59,102,.06);
  --shadow-md:  0 8px 40px rgba(13,59,102,.10);
  --shadow-lg:  0 24px 80px rgba(13,59,102,.14);
  --shadow-glow: 0 0 60px rgba(42,157,143,.18);
  --gradient-brand: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 45%, var(--teal) 100%);
  --gradient-cta: linear-gradient(135deg, var(--amber) 0%, #E8924A 50%, var(--amber-dark) 100%);
  --max-w:      1200px;
  --serif:      'DM Serif Display', Georgia, serif;
  --sans:       'Plus Jakarta Sans', system-ui, sans-serif;
  --r:          16px;
  --r-lg:       28px;
}

html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--sans);
  color: var(--slate);
  background-color: var(--mist);
  background-image:
    radial-gradient(circle at 20% 10%, rgba(42,157,143,.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(13,59,102,.05) 0%, transparent 40%);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: opacity .2s, color .2s; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.sec { padding: 100px 0; }
.sec-sm { padding: 64px 0; }

h1, h2 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--slate);
}
h3, h4 {
  font-family: var(--sans);
  font-weight: 600;
  line-height: 1.3;
  color: var(--slate);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.15rem; }
p  { color: var(--mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
em { font-style: italic; color: var(--amber); }

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-pale);
  border: 1px solid rgba(42,157,143,.2);
  border-radius: 100px;
  padding: 7px 16px;
  margin-bottom: 20px;
}
.label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.lead { font-size: 1.08rem; color: var(--dark); line-height: 1.8; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: 100px;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }

.btn-dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(13,59,102,.25);
}
.btn-dark:hover { background: var(--navy-mid); color: var(--white); }

.btn-green {
  background: var(--gradient-cta);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(244,162,97,.4), inset 0 1px 0 rgba(255,255,255,.2);
  position: relative;
  overflow: hidden;
}
.btn-green::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .25s;
}
.btn-green:hover { opacity: 1; color: var(--white); box-shadow: 0 8px 28px rgba(244,162,97,.45); }
.btn-green:hover::after { opacity: 1; }

.btn-outline {
  background: transparent;
  color: var(--slate);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  padding: 0;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .03em;
}
.btn-ghost::after { content: ' →'; }
.btn-ghost:hover { opacity: .7; transform: none; }

.btn-white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}
.btn-white:hover { opacity: .95; color: var(--navy); }

/* ── Advertorial disclosure ───────────────────────────────── */
.ad-disclosure {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--navy-deep);
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 9px 16px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  min-height: 34px;
}
.ad-disclosure strong { font-weight: 800; color: var(--white); }
.ad-disclosure .ad-disclosure-sep { opacity: .4; margin: 0 2px; }
.ad-disclosure .ad-disclosure-sub {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: none;
  font-size: 0.74rem;
  color: rgba(255,255,255,.65);
}

/* ── Scroll progress ──────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 34px; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  z-index: 401;
  transition: width .1s linear;
}

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 34px; left: 0; right: 0;
  z-index: 300;
  transition: background .4s, box-shadow .4s;
}
.site-header.solid {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(24px) saturate(1.4);
  box-shadow: 0 4px 30px rgba(13,59,102,.08);
}
.site-header.solid .header-inner {
  max-width: calc(var(--max-w) - 32px);
  margin-top: 8px;
  margin-bottom: 8px;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(216,226,236,.8);
  border-radius: 100px;
  padding: 0 28px;
  height: 64px;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  transition: color .3s;
}
.logo span { color: var(--teal); }
.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gradient-brand);
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(13,59,102,.25);
  transition: transform .3s, box-shadow .3s;
}
.logo:hover .logo-mark {
  transform: scale(1.05) rotate(-3deg);
  box-shadow: 0 6px 20px rgba(42,157,143,.35);
}
.logo-mark svg { width: 20px; fill: none; stroke: var(--white); stroke-width: 1.8; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.main-nav a:not(.btn) {
  font-size: .875rem;
  font-weight: 500;
  color: var(--dark);
  transition: color .3s;
  position: relative;
  padding-bottom: 2px;
}
.main-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: width .25s ease;
}
.main-nav a:not(.btn):hover { color: var(--navy); }
.main-nav a:not(.btn):hover::after { width: 100%; }
.nav-btn { padding: 10px 22px; font-size: .825rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--slate);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 24px 40px 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-weight: 500;
  font-size: 1rem;
  color: var(--dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

/* ── Hero (asymmetric split) ─────────────────────────────── */
.hero {
  padding: 140px 0 100px;
  background: var(--mist);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 58%;
  height: 100%;
  background: var(--gradient-brand);
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  left: 30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(42,157,143,.25) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
  animation: floatOrb 8s ease-in-out infinite;
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-blob-1 {
  width: 320px;
  height: 320px;
  top: 15%;
  right: 5%;
  background: radial-gradient(circle, rgba(244,162,97,.12) 0%, transparent 70%);
  animation: floatOrb 10s ease-in-out infinite reverse;
}
.hero-blob-2 {
  width: 200px;
  height: 200px;
  bottom: 10%;
  left: 45%;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
  animation: floatOrb 12s ease-in-out infinite;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content {
  padding-right: 20px;
  animation: fadeUp .7s ease-out both;
}
.hero-visual {
  animation: fadeUp .7s ease-out .12s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: 8px 18px;
  margin-bottom: 28px;
}
.hero-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  animation: blink 2s ease-in-out infinite;
}
.hero-pill span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero h1 { color: var(--white); margin-bottom: 22px; max-width: 540px; }
.hero h1 em {
  color: var(--amber);
  font-style: italic;
  background: linear-gradient(135deg, var(--amber) 0%, #FFD89B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .lead { color: rgba(255,255,255,.78); max-width: 500px; margin-bottom: 36px; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-cta .btn-outline {
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.35);
}
.hero-cta .btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.hero-numbers {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-num-item {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r);
  padding: 18px 24px;
  min-width: 130px;
}
.hero-num-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-num-item span {
  font-size: .65rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-visual { position: relative; }
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: calc(var(--r-lg) + 8px);
  background: linear-gradient(135deg, var(--teal), var(--amber));
  opacity: .35;
  z-index: 0;
  filter: blur(1px);
}
.hero-image-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  aspect-ratio: 4/5;
  border: 4px solid var(--white);
}
.hero-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13,59,102,.15) 100%);
  pointer-events: none;
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-right-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-radius: var(--r);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  max-width: 280px;
  border: 1px solid rgba(255,255,255,.8);
}
.badge-icon {
  width: 44px; height: 44px;
  background: var(--teal-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.badge-icon svg { width: 22px; stroke: var(--teal); fill: none; }
.badge-text strong { display: block; font-size: .9rem; color: var(--slate); }
.badge-text span { font-size: .76rem; color: var(--mid); }

.hero-bg, .hero-overlay, .hero-left, .hero-right { display: none; }

/* ── Trust bar ──────────────────────────────────────────── */
.trust-bar {
  background: transparent;
  padding: 0 0 48px;
  margin-top: -24px;
  position: relative;
  z-index: 2;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 8px;
  box-shadow: var(--shadow-md);
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--mist);
  border: 1px solid transparent;
  border-radius: calc(var(--r-lg) - 4px);
  padding: 22px 20px;
  transition: border-color .25s, box-shadow .25s, transform .25s, background .25s;
}
.trust-item:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
  background: var(--white);
}
.trust-item svg {
  width: 20px;
  stroke: var(--white);
  fill: none;
  flex-shrink: 0;
  margin-top: 0;
  padding: 10px;
  box-sizing: content-box;
  background: var(--gradient-brand);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(13,59,102,.2);
}
.trust-item span { font-size: .84rem; font-weight: 600; color: var(--dark); line-height: 1.4; }

/* ── Callout ─────────────────────────────────────────────── */
.callout-strip {
  background: var(--navy-deep);
  padding: 88px 0;
  overflow: hidden;
  position: relative;
}
.callout-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(42,157,143,.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(244,162,97,.1) 0%, transparent 50%);
  pointer-events: none;
}
.callout-strip::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: 5%;
  font-family: var(--serif);
  font-size: 18rem;
  color: rgba(255,255,255,.04);
  line-height: 1;
  pointer-events: none;
}
.callout-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.callout-inner blockquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 24px;
}
.callout-inner blockquote em { color: var(--amber); font-style: normal; }
.callout-cite {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* ── Ingredients card grid ───────────────────────────────── */
.ingredients-sec { background: var(--white); position: relative; }
.ingredients-sec::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.ingredients-sec .sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 32px;
}
.ingredients-sec .sec-head h2 {
  max-width: 480px;
  position: relative;
}
.ingredients-sec .sec-head h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: var(--gradient-cta);
  border-radius: 2px;
  margin-top: 20px;
}
.ingredients-sec .sec-head p { max-width: 340px; text-align: right; }

.ingr-list { display: flex; flex-direction: column; }
.ingr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ingr-row {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s, border-color .35s;
  position: relative;
}
.ingr-row::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
  z-index: 1;
}
.ingr-row:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  border-color: rgba(42,157,143,.3);
}
.ingr-row:hover::before { transform: scaleX(1); }

.ingr-num {
  display: flex;
  align-items: center;
  padding: 16px 24px 0;
}
.ingr-num span {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  color: var(--white);
  background: var(--gradient-brand);
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.ingr-img {
  overflow: hidden;
  aspect-ratio: 16/10;
}
.ingr-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.ingr-row:hover .ingr-img img { transform: scale(1.05); }

.ingr-body {
  padding: 24px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ingr-body h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.ingr-body .lead { font-size: .95rem; margin-bottom: 16px; }
.ingr-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.ingr-pill {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--navy);
  background: var(--sky);
  padding: 6px 14px;
  border-radius: 100px;
}

.ingr-grid .ingr-row:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  flex-direction: row;
  max-height: 280px;
}
.ingr-grid .ingr-row:last-child:nth-child(odd) .ingr-img {
  width: 40%;
  aspect-ratio: auto;
  flex-shrink: 0;
}
.ingr-grid .ingr-row:last-child:nth-child(odd) .ingr-num { display: none; }
.ingr-grid .ingr-row:last-child:nth-child(odd) .ingr-body { flex: 1; justify-content: center; }

/* ── Steps timeline ──────────────────────────────────────── */
.steps-sec {
  background: var(--sky);
  padding: 96px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps-head { margin-bottom: 56px; text-align: center; }
.steps-head .label { color: var(--navy); }
.steps-head h2 { margin-top: 8px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--teal), var(--amber));
  z-index: 0;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 28px;
  margin: 0 12px;
  position: relative;
  text-align: center;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(42,157,143,.3);
}
.step-num { display: none; }

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--sky);
  box-shadow: 0 0 0 2px var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}
.step-icon svg { width: 24px; stroke: var(--navy); fill: none; }
.step-card h3 { color: var(--slate); font-size: 1.1rem; margin-bottom: 12px; }
.step-card p { color: var(--mid); font-size: .9rem; line-height: 1.75; }

/* ── Stat callout ────────────────────────────────────────── */
.stat-callout {
  background: var(--gradient-brand);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
.stat-callout::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244,162,97,.2) 0%, transparent 65%);
  pointer-events: none;
}
.stat-callout::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,.03) 40px,
    rgba(255,255,255,.03) 41px
  );
}
.stat-callout-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.stat-callout-main {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}
.stat-big {
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 6.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 4px 30px rgba(0,0,0,.2);
}
.stat-callout-text h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 8px;
}
.stat-callout-text p { color: rgba(255,255,255,.75); font-size: .95rem; margin: 0; max-width: 380px; }
.stat-callout-cta { flex-shrink: 0; }

/* ── Product ─────────────────────────────────────────────── */
.product-sec {
  background: var(--mist);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.product-sec::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(42,157,143,.08) 0%, transparent 70%);
  pointer-events: none;
}
.product-text {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: none;
  border-radius: var(--r-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  order: 1;
  position: relative;
}
.product-text::before {
  content: '';
  position: absolute;
  top: 24px; bottom: 24px; left: 0;
  width: 4px;
  background: var(--gradient-brand);
  border-radius: 0 4px 4px 0;
}
.product-sec .label { color: var(--teal); background: var(--teal-pale); }

.product-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.product-photo { position: relative; order: 2; }

.product-photo-inner {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--sky) 0%, var(--white) 100%);
  border: 1px solid var(--border);
  position: relative;
}
.product-photo-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.8) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.product-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  position: relative;
  z-index: 0;
}
.product-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md), 0 0 30px rgba(42,157,143,.3);
  border: 3px solid var(--white);
  z-index: 2;
}
.product-badge strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1.1;
}
.product-badge span { font-size: .58rem; color: rgba(255,255,255,.8); text-transform: uppercase; letter-spacing: .1em; }

.product-text .label { margin-bottom: 14px; }
.product-text h2 { margin-bottom: 18px; }
.product-text .lead { margin-bottom: 14px; }
.product-text > p { margin-bottom: 28px; }

.ingr-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.ingr-tags a {
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--sky);
  border: 1.5px solid transparent;
  padding: 9px 18px;
  border-radius: 100px;
  transition: border-color .2s, background .2s;
}
.ingr-tags a:hover { border-color: var(--teal); background: var(--white); }

.product-proof {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.proof-card {
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.proof-card-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--teal-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.proof-card-icon svg { width: 18px; stroke: var(--teal); fill: none; }
.proof-card-text strong { display: block; font-size: .78rem; color: var(--slate); line-height: 1.2; }
.proof-card-text span { font-size: .7rem; color: var(--mid); }

.feat-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark);
}
.feat-item::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-pale);
  color: var(--teal);
  font-size: .7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-note {
  font-size: .82rem;
  color: var(--light);
  border-left: 3px solid var(--amber);
  padding: 16px 16px 16px 20px;
  margin-bottom: 28px;
  line-height: 1.6;
  background: rgba(244,162,97,.08);
  border-radius: 0 var(--r) var(--r) 0;
}

.product-sec .btn-dark { background: var(--navy); }
.product-sec .btn-dark:hover { background: var(--navy-mid); }

/* ── Contact ─────────────────────────────────────────────── */
.contact-sec { background: var(--white); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-aside {
  background: var(--gradient-brand);
  border-radius: var(--r-lg);
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-aside::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(244,162,97,.2) 0%, transparent 70%);
  pointer-events: none;
}
.contact-aside > * { position: relative; z-index: 1; }
.contact-aside .label {
  color: var(--amber);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
}
.contact-aside .label::before { background: var(--amber); }
.contact-aside h2 { color: var(--white); margin-bottom: 16px; }
.contact-aside .lead { color: rgba(255,255,255,.7); margin-bottom: 36px; }

.contact-info-list { list-style: none; }
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.contact-info-list li:first-child { border-top: 1px solid rgba(255,255,255,.12); }

.ci-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(255,255,255,.06);
}
.ci-icon svg { width: 18px; stroke: rgba(255,255,255,.85); fill: none; }
.ci-label {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
  margin-bottom: 4px;
}
.ci-val { font-size: .95rem; font-weight: 500; color: var(--white); }
.ci-val a { color: var(--white); }
.ci-val a:hover { color: var(--amber); }

.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s;
}
.contact-form-box:focus-within {
  box-shadow: var(--shadow-md), 0 0 0 3px rgba(42,157,143,.08);
}
.contact-form-box h3 { margin-bottom: 6px; }
.contact-form-box .sub { font-size: .9rem; color: var(--mid); margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: .95rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--slate);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--light); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,157,143,.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: .95rem;
}
.form-note {
  font-size: .78rem;
  color: var(--light);
  margin-top: 16px;
  text-align: center;
}
.form-note a { color: var(--navy); }
.form-success {
  display: none;
  margin-top: 20px;
  padding: 18px 20px;
  background: var(--teal-pale);
  border-left: 3px solid var(--teal);
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--teal);
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-sec { background: var(--sky); }
.faq-head { margin-bottom: 48px; text-align: center; }
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: none;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow .25s, border-color .25s;
}
.faq-item.open {
  box-shadow: var(--shadow-sm);
  border-color: rgba(42,157,143,.35);
  border-left: 3px solid var(--teal);
}
.faq-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 100%;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  text-align: left;
  cursor: pointer;
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 600;
  color: var(--slate);
  transition: color .2s, background .2s;
}
.faq-question:hover { color: var(--teal); background: var(--mist); }

.faq-icon {
  width: 28px; height: 28px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color .2s, transform .3s, background .2s;
}
.faq-icon svg { width: 12px; stroke: var(--mid); fill: none; transition: stroke .2s; }
.faq-item.open .faq-icon {
  border-color: var(--teal);
  background: var(--teal);
  transform: rotate(45deg);
}
.faq-item.open .faq-icon svg { stroke: var(--white); }
.faq-item.open .faq-question { color: var(--navy); }

.faq-answer {
  display: none;
  padding: 0 22px 20px;
}
.faq-answer p { font-size: .9rem; color: var(--mid); line-height: 1.8; margin: 0; }
.faq-item.open .faq-answer { display: block; }

/* ── Disclaimer ─────────────────────────────────────────── */
.disclaimer {
  background: var(--navy-deep);
  padding: 28px 0;
  border-top: 3px solid var(--teal);
}
.disclaimer p {
  font-size: .8rem;
  line-height: 1.75;
  color: rgba(255,255,255,.5);
  margin: 0;
  text-align: center;
}
.disclaimer strong { color: rgba(255,255,255,.75); }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  padding: 72px 0 40px;
  border-top: 3px solid var(--teal);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(42,157,143,.08) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(244,162,97,.06) 0%, transparent 50%);
  pointer-events: none;
}
.footer-top, .footer-bottom { position: relative; z-index: 1; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3,1fr);
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.foot-brand .logo { color: var(--white); display: flex; gap: 10px; align-items: center; margin-bottom: 18px; }
.foot-brand .logo span { color: var(--teal-light); }
.foot-brand p { font-size: .88rem; color: rgba(255,255,255,.45); line-height: 1.75; max-width: 300px; }

.foot-col h5 {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--amber);
  margin-bottom: 20px;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 12px; }
.foot-col a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  font-weight: 400;
}
.foot-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.35); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--white); }

/* ── Legal pages ────────────────────────────────────────── */
.pg-hero {
  background: var(--gradient-brand);
  padding: 140px 0 72px;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  position: relative;
  overflow: hidden;
}
.pg-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  pointer-events: none;
}
.pg-hero .container { position: relative; z-index: 1; }
.pg-hero .crumb { font-size: .8rem; color: rgba(255,255,255,.4); margin-bottom: 20px; }
.pg-hero .crumb a { color: rgba(255,255,255,.6); }
.pg-hero .crumb a:hover { color: var(--white); }
.pg-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.pg-hero p { color: rgba(255,255,255,.65); margin: 0; font-size: 1.05rem; }
.pg-bar { width: 48px; height: 4px; background: var(--amber); margin-top: 28px; border-radius: 2px; }

.content-sec { padding: 72px 0 100px; background: var(--mist); }
.content-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}
.content-sidebar {
  position: sticky;
  top: 120px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.content-sidebar h4 {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--mid);
  margin-bottom: 16px;
}
.content-sidebar ul { list-style: none; }
.content-sidebar li { margin-bottom: 4px; }
.content-sidebar a {
  font-size: .85rem;
  color: var(--mid);
  font-weight: 500;
  display: block;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.content-sidebar a:hover {
  color: var(--navy);
  background: var(--sky);
}

.content-body { max-width: 760px; }
.content-body h2 {
  font-size: 1.35rem;
  margin: 44px 0 14px;
  color: var(--slate);
  font-family: var(--serif);
  font-weight: 700;
}
.content-body h2:first-child { margin-top: 0; }
.content-body p { margin-bottom: 1rem; }
.content-body ul { margin: 0 0 1rem 24px; }
.content-body li { margin-bottom: 10px; color: var(--mid); }
.content-body a { color: var(--navy); font-weight: 500; }
.content-body a:hover { color: var(--teal); }

.info-box {
  background: linear-gradient(135deg, var(--white) 0%, var(--sky) 100%);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 32px 36px;
  margin-top: 48px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
}
.info-box h3 { margin-bottom: 16px; font-size: 1.1rem; color: var(--slate); }
.info-box p { margin-bottom: 8px; font-size: .92rem; }
.info-box a { color: var(--navy); }

.hours-box {
  background: var(--sky);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 28px;
  margin-top: 28px;
}
.hours-box h4 { font-size: .9rem; margin-bottom: 8px; color: var(--slate); }
.hours-box p { font-size: .88rem; margin: 0; }

.page-hero { display: none; }
.contact-info-card { display: none; }
.contact-page-grid { display: none; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1080px) {
  .hero-split { gap: 40px; }
  .product-wrap { gap: 48px; }
  .contact-wrap { gap: 40px; }
  .footer-top { grid-template-columns: 1.2fr repeat(3,1fr); gap: 32px; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .content-layout { grid-template-columns: 1fr; }
  .content-sidebar { position: static; display: none; }
}

@media (max-width: 900px) {
  .site-header.solid .header-inner {
    max-width: none;
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  .hero::before { width: 100%; clip-path: none; height: 55%; }
  .hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-content { padding-right: 0; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .trust-bar { margin-top: 0; padding: 32px 0; }
  .trust-bar-inner { border-radius: var(--r); }

  .ingr-grid { grid-template-columns: 1fr; }
  .ingr-grid .ingr-row:last-child:nth-child(odd) {
    flex-direction: column;
    max-height: none;
  }
  .ingr-grid .ingr-row:last-child:nth-child(odd) .ingr-img { width: 100%; }
  .ingr-grid .ingr-row:last-child:nth-child(odd) .ingr-num { display: flex; }

  .ingredients-sec .sec-head { flex-direction: column; align-items: flex-start; }
  .ingredients-sec .sec-head p { text-align: left; }

  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .steps-grid::before { display: none; }
  .step-card { margin: 0; }

  .product-wrap, .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .product-text, .product-photo { order: unset; }
  .product-text { padding: 32px; }
  .product-badge { top: 12px; right: 12px; width: 86px; height: 86px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-form-box { padding: 32px; }
  .contact-aside { padding: 36px; }

  .stat-callout-inner { flex-direction: column; gap: 28px; align-items: flex-start; }
  .callout-strip::before { font-size: 10rem; }
  .product-proof { flex-direction: column; }
  .faq-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 24px; }
  .header-inner { padding: 0 24px; }
  .hero { padding: 110px 0 60px; }
  .hero-numbers { flex-direction: column; }
  .hero-num-item { min-width: 0; }

  .sec { padding: 72px 0; }
  .trust-bar-inner { grid-template-columns: 1fr; }
  .ingr-body { padding: 20px 22px 28px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 28px 20px; }
  .contact-aside { padding: 28px 24px; }

  .ad-disclosure { font-size: 0.7rem; letter-spacing: 0.1em; padding: 8px 12px; min-height: 32px; }
  .ad-disclosure .ad-disclosure-sub { font-size: 0.68rem; }
  .site-header { top: 32px; }
  .scroll-progress { top: 32px; }
}

@media (max-width: 480px) {
  .ad-disclosure .ad-disclosure-sub { display: none; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { justify-content: center; }
  .hero-image-frame { aspect-ratio: 3/2; }
  .product-photo-inner { aspect-ratio: 3/2; }
}
