/* ================================
   VitaBright — Premium Wellness
   Colors: cream, beige, gray, dark green
   ================================ */

:root {
  --cream: #F7F3EA;
  --cream-2: #F1ECDF;
  --beige: #E6DBC4;
  --beige-soft: #EFE5D1;
  --white: #FFFFFF;
  --ink: #182524;
  --ink-2: #223634;
  --green: #1F6B72;        /* primary teal */
  --green-2: #2B7F87;      /* hover teal */
  --green-accent: #2A8A92; /* accent teal */
  --green-pale: #B9DEE1;   /* pale teal */
  --gray: #8A8478;
  --gray-2: #B6B0A3;
  --line: #D9D1BE;
  --shadow: 0 30px 80px -40px rgba(24, 37, 36, .32);

  --container: 1280px;
  --radius: 22px;
  --radius-sm: 14px;

  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

/* ---- Typography ---- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -.025em;
  color: var(--ink-2);
}
.display .accent {
  font-style: italic;
  color: var(--green-accent);
  font-weight: 300;
}
.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.8vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink-2);
}
.h-display em {
  font-style: italic;
  color: var(--green-accent);
  font-weight: 400;
}
.h-med {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--ink-2);
  margin: .75rem 0 1rem;
}
.eyebrow, .sec-label, .muted-tiny {
  font-family: var(--font-body);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gray);
  font-weight: 500;
}
.muted { color: #4C5548; }
.muted-tiny {
  font-size: .75rem;
  line-height: 1.6;
  color: var(--gray);
  text-transform: none;
  letter-spacing: .02em;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: .94rem;
  letter-spacing: .01em;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--green);
  color: var(--cream);
}
.btn-primary:hover { background: var(--green-2); }
.btn-outline {
  border-color: var(--ink-2);
  color: var(--ink-2);
  background: transparent;
}
.btn-outline:hover { background: var(--ink-2); color: var(--cream); }
.btn-ghost {
  color: var(--ink-2);
  background: transparent;
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-lg { padding: 18px 32px; font-size: 1rem; }

/* =========================
   Header — adaptive, premium
   ========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(247, 243, 234, .72);
  backdrop-filter: saturate(170%) blur(16px);
  -webkit-backdrop-filter: saturate(170%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header.scrolled {
  background: rgba(247, 243, 234, .92);
  border-bottom-color: rgba(217, 209, 190, .7);
  box-shadow: 0 10px 30px -20px rgba(24, 37, 36, .25);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(16px, 2.4vw, 32px);
  padding-top: clamp(12px, 1.8vw, 18px);
  padding-bottom: clamp(12px, 1.8vw, 18px);
  transition: padding .3s ease;
}
.site-header.scrolled .header-inner {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Left: Advertisement pill */
.ad-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #FFFFFF, var(--cream-2));
  border: 1px solid var(--line);
  color: var(--ink-2);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-weight: 600;
  box-shadow: 0 6px 14px -10px rgba(24,37,36,.35);
  white-space: nowrap;
}
.ad-pill-leaf{
  width: 14px;
  height: 14px;
  color: var(--green);
  flex-shrink: 0;
}

/* Desktop nav */
.nav {
  display: flex;
  gap: clamp(14px, 2.2vw, 28px);
  justify-content: center;
  align-items: center;
}
.nav a {
  position: relative;
  font-size: .875rem;
  font-weight: 500;
  color: var(--ink);
  opacity: .82;
  padding: 8px 2px;
  transition: opacity .2s ease, color .2s ease;
}
.nav a::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 1.5px;
  background: var(--green);
  border-radius: 2px;
  transition: width .25s ease, left .25s ease;
}
.nav a:hover{ opacity: 1; color: var(--green); }
.nav a:hover::after{ width: 100%; left: 0; }

/* Header CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: .82rem;
  letter-spacing: .04em;
  white-space: nowrap;
}
.header-cta svg{
  transition: transform .25s ease;
}
.header-cta:hover svg{ transform: translateX(3px); }

/* Burger */
.burger {
  display: none;
  position: relative;
  z-index: 100;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #FFFFFF;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
body.nav-open .burger{
  position: fixed;
  top: 16px;
  right: 20px;
  background: #FFFFFF;
  box-shadow: 0 8px 20px -10px rgba(24,37,36,.35);
}
.burger:hover{ border-color: var(--green); }
.burger span {
  display: block;
  height: 1.8px;
  width: 20px;
  background: var(--ink-2);
  border-radius: 2px;
  transition: transform .35s ease, opacity .25s ease;
  transform-origin: center;
}
.burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(6.8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity: 0; transform: scaleX(.2); }
.burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6.8px) rotate(-45deg); }

/* Backdrop for mobile menu */
.nav-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(19, 26, 26, .35);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 70;
}
.nav-backdrop.show{
  opacity: 1;
  visibility: visible;
}

/* Footer brand mark sizing (legacy helper) */
.brand-mark.large { width: 56px; height: 56px; border-radius: 16px; font-size: 1.3rem; }

/* ---- Hero ---- */
.hero {
  padding: 60px 0 0;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  background: rgba(47, 139, 147, .08);
  color: var(--green);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  margin-bottom: 32px;
}
.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-accent);
  box-shadow: 0 0 0 4px rgba(47, 139, 147, .14);
}
.lede {
  margin-top: 28px;
  font-size: 1.15rem;
  color: #3A4138;
  max-width: 540px;
  line-height: 1.6;
}
.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-facts {
  list-style: none;
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 540px;
}
.hero-facts li { display: flex; flex-direction: column; gap: 4px; }
.hero-facts strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink-2);
  font-weight: 500;
}
.hero-facts span {
  font-size: .75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  min-height: 520px;
}
.hero-photo {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 9s ease;
}
.hero-photo:hover img { transform: scale(1.04); }

.hero-floating-card {
  position: absolute;
  left: -28px;
  bottom: 40px;
  background: var(--white);
  padding: 18px 22px 18px 18px;
  border-radius: 16px;
  display: flex;
  align-items: stretch;
  gap: 14px;
  box-shadow: 0 20px 50px -30px rgba(19, 42, 45, .4);
  border: 1px solid var(--line);
  max-width: 260px;
}
.hfc-line {
  width: 3px;
  border-radius: 3px;
  background: var(--green);
}
.hfc-body { display: flex; flex-direction: column; gap: 2px; }
.hfc-label {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray);
}
.hfc-value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--ink-2);
  letter-spacing: -.01em;
}
.hfc-meta {
  font-size: .8rem;
  color: #4C5548;
  line-height: 1.4;
}

/* Marquee */
.marquee {
  margin-top: 110px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--cream);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 20px 0;
  white-space: nowrap;
  animation: scroll-x 55s linear infinite;
  font-family: var(--font-body);
  font-size: .82rem;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 500;
}
.marquee-track span:not(.dot-sep) { opacity: .72; }
.marquee-track .dot-sep {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green-accent);
  flex-shrink: 0;
}
@keyframes scroll-x {
  to { transform: translateX(-50%); }
}

/* ---- Section base ---- */
.section {
  padding: 130px 0;
  position: relative;
}
.sec-head {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 60px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.sec-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--green);
  font-style: italic;
}
.sec-label {
  font-size: .78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .2em;
}
.sec-head.light .sec-num,
.sec-head.light .sec-label { color: var(--beige); }

/* ---- Problem ---- */
.problem { background: var(--cream); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.problem-lead .h-display { margin-bottom: 28px; }
.problem-lead p + p { margin-top: 18px; }

.cause-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.cause-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.cause-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--green);
  font-size: 1.3rem;
}
.cause-list h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.cause-list p { color: #4C5548; font-size: .95rem; }

/* Body-map infographic */
.body-map {
  margin-top: 100px;
  padding: 64px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}
.bm-head { margin-bottom: 48px; max-width: 720px; }
.bm-head .sec-label { display: inline-block; margin-bottom: 16px; }
.bm-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  color: var(--ink-2);
  letter-spacing: -.015em;
  margin-bottom: 14px;
}
.bm-sub {
  color: #4C5548;
  font-size: 1rem;
  line-height: 1.65;
}

.bm-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 72px;
  align-items: start;
}
.bm-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.bm-list li {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.bm-list li:last-child { border-bottom: none; padding-bottom: 0; }
.bm-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
}
.bm-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--ink-2);
}
.bm-val {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--green);
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
}
.bm-bar {
  height: 4px;
  background: var(--cream-2);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.bm-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--green-accent), var(--green));
  border-radius: 3px;
  transition: width 1.4s cubic-bezier(.2,.7,.2,1);
}
.bm-list li.in .bm-bar span {
  width: calc(var(--p) * 2);
  max-width: 100%;
}
.bm-desc {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.55;
}

.bm-figure {
  position: sticky;
  top: 120px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 28px 20px 22px;
  border: 1px solid var(--line);
}
.bm-figure svg { width: 100%; height: auto; display: block; }
.bm-figure figcaption {
  margin-top: 14px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--gray);
  text-align: center;
}

.bm-note {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: .82rem;
  color: var(--gray);
  font-style: italic;
  line-height: 1.6;
}

/* ---- Science ---- */
.science {
  background: var(--white);
}
.science-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}
.science-text p { margin: 18px 0; color: #3A4138; font-size: 1.02rem; }
.refs {
  list-style: none;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.refs a {
  font-size: .85rem;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.refs a:hover { color: var(--green-accent); }

.science-card {
  background: var(--cream-2);
  border-radius: var(--radius);
  padding: 40px 36px;
  border: 1px solid var(--line);
  position: sticky;
  top: 120px;
}
.science-molecule {
  aspect-ratio: 1/1;
  color: var(--green);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 24px;
}
.science-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--ink-2);
  margin-bottom: 18px;
}
.sci-facts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sci-facts > div {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: .92rem;
}
.sci-facts dt { color: var(--gray); text-transform: uppercase; font-size: .75rem; letter-spacing: .12em; }
.sci-facts dd { color: var(--ink-2); font-weight: 500; }

/* ---- Product ---- */
.product {
  background: var(--green);
  color: var(--cream);
  padding: 140px 0;
  position: relative;
}
.product .sec-head { border-color: rgba(247, 243, 234, .14); }
.product .h-display { color: var(--cream); }
.product .h-display em { color: var(--green-pale); }

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.product-visual {
  position: relative;
}
.product-stage {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}
.stage-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(42, 138, 146, .06), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #F7F3EA 100%);
  z-index: 0;
}
.stage-bg::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 10%;
  width: 60%;
  height: 10px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(24, 37, 36, .18), transparent 70%);
  filter: blur(8px);
}
.product-stage img {
  position: relative;
  width: 78%;
  height: auto;
  max-height: 88%;
  object-fit: contain;
  z-index: 1;
  filter: drop-shadow(0 30px 50px rgba(19, 42, 45, .25));
  animation: can-float 6s ease-in-out infinite;
}
@keyframes can-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.stage-tag {
  position: absolute;
  left: 20px;
  top: 20px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-2);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  z-index: 3;
  border: 1px solid var(--line);
  box-shadow: 0 4px 14px -4px rgba(19, 42, 45, .15);
}

.product-text p {
  color: rgba(247, 243, 234, .78);
  margin: 20px 0;
  font-size: 1.02rem;
}
.product-bullets {
  list-style: none;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(247, 243, 234, .18);
}
.product-bullets li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(247, 243, 234, .18);
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.02rem;
  color: var(--cream);
}
.product-bullets span {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--green-pale);
  font-size: 1rem;
  min-width: 28px;
}

.product .btn-primary {
  background: var(--cream);
  color: var(--green);
}
.product .btn-primary:hover { background: #fff; }

/* ---- USP ---- */
.usp { background: var(--cream); }
.usp-title { margin-bottom: 60px; max-width: 900px; }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.usp-card {
  padding: 36px 28px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease;
}
.usp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -30px rgba(19, 42, 45, .35);
}
.usp-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--beige-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}
.usp-icon svg { width: 26px; height: 26px; }
.usp-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--ink-2);
  margin-bottom: 10px;
}
.usp-card p { color: #4C5548; font-size: .92rem; line-height: 1.55; }

/* ---- Who ---- */
.who { background: var(--white); }
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.who-text { position: sticky; top: 120px; }
.who-text p { margin-top: 20px; font-size: 1.05rem; line-height: 1.65; }
.who-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.who-card {
  padding: 30px 26px;
  border-radius: var(--radius-sm);
  background: var(--cream);
  border: 1px solid var(--line);
  transition: background .3s ease;
}
.who-card:hover { background: var(--cream-2); }
.who-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--green);
  color: var(--cream);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.who-card h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.who-card p { color: #4C5548; font-size: .9rem; }

/* ---- Reviews ---- */
.reviews { background: var(--cream-2); }
.reviews-title { margin-bottom: 60px; max-width: 820px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.review {
  background: var(--white);
  padding: 40px 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}
.review blockquote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--ink-2);
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
  padding-left: 20px;
}
.review blockquote::before {
  content: '"';
  position: absolute;
  left: -4px;
  top: -18px;
  font-size: 4rem;
  color: var(--green-accent);
  font-family: var(--font-display);
  opacity: .4;
}
.review figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bg, var(--beige));
  color: var(--ink-2);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
}
.review figcaption strong { display: block; color: var(--ink-2); font-size: .95rem; }
.review figcaption span { color: var(--gray); font-size: .8rem; }

/* ---- How to take ---- */
.howto {
  background: var(--green);
  color: var(--cream);
}
.howto .sec-head { border-color: rgba(247, 243, 234, .14); }
.howto .h-display { color: var(--cream); margin-bottom: 40px; }
.howto .h-display em { color: var(--green-pale); }
.howto-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.steps {
  list-style: none;
  border-top: 1px solid rgba(247, 243, 234, .18);
}
.steps li {
  padding: 26px 0;
  border-bottom: 1px solid rgba(247, 243, 234, .18);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: start;
}
.step-n {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--green-pale);
  font-size: 1.6rem;
}
.steps h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 6px;
}
.steps p { color: rgba(247, 243, 234, .72); font-size: .95rem; }

.howto-note {
  padding: 36px 32px;
  border-radius: var(--radius-sm);
  background: rgba(247, 243, 234, .08);
  border: 1px solid rgba(247, 243, 234, .18);
}
.howto-note .muted-tiny { color: var(--green-pale); }
.howto-note p:last-child {
  margin-top: 14px;
  color: var(--cream);
  font-size: .98rem;
  line-height: 1.6;
}

/* ---- CTA ---- */
.cta-section { background: var(--cream); padding: 130px 0; }
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.cta-visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  background:
    radial-gradient(ellipse at 50% 110%, rgba(47, 139, 147, .18), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #EFE8D8 100%);
  display: grid;
  place-items: center;
}
.cta-visual img {
  width: 72%;
  height: auto;
  max-height: 86%;
  object-fit: contain;
  filter: drop-shadow(0 25px 45px rgba(19, 42, 45, .22));
}
.cta-text .sec-label { display: block; margin-bottom: 20px; }
.cta-text .h-display { margin-bottom: 20px; max-width: 520px; }
.cta-text p { color: #4C5548; font-size: 1.05rem; margin-bottom: 32px; max-width: 520px; }

/* ---- FAQ ---- */
.faq { background: var(--white); }
.faq-title { margin-bottom: 60px; }
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  max-width: 960px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 32px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink-2);
  font-weight: 500;
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--green); }
.faq-item summary i {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--ink-2);
  flex-shrink: 0;
  transition: background .3s ease, border-color .3s ease;
}
.faq-item summary i::before,
.faq-item summary i::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 11px; height: 1px;
  background: var(--ink-2);
  transform: translate(-50%, -50%);
  transition: transform .3s ease, background .3s ease;
}
.faq-item summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] summary i { background: var(--green); border-color: var(--green); }
.faq-item[open] summary i::before,
.faq-item[open] summary i::after { background: var(--cream); }
.faq-item[open] summary i::after { transform: translate(-50%, -50%) rotate(0); }
.faq-body {
  padding: 0 0 32px;
  color: #4C5548;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 80%;
}

/* ---- Disclaimer ---- */
.disclaimer { background: var(--beige-soft); padding: 100px 0; }
.disclaimer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.disclaimer-col .sec-label { display: block; margin-bottom: 12px; }
.disclaimer-col p { color: #3A4138; font-size: .98rem; line-height: 1.7; }

/* ---- Footer ---- */
.site-footer {
  background: var(--ink-2);
  color: var(--cream);
  padding: 90px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(247, 243, 234, .14);
}
.footer-brand h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.6rem;
  margin: 20px 0 10px;
}
.footer-brand .brand-mark { background: var(--green-accent); }
.footer-col h5 {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: #A8D6DB;
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col .muted-tiny { color: rgba(247, 243, 234, .7); }
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: .88rem;
  color: rgba(247, 243, 234, .78);
  transition: color .2s ease;
}
.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: .78rem;
  color: rgba(247, 243, 234, .55);
  flex-wrap: wrap;
  gap: 14px;
}

/* =========================
   Legal pages (privacy, terms)
   ========================= */
.page-hero {
  padding: 80px 0 40px;
  background: var(--cream-2);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--ink-2);
  font-weight: 400;
  letter-spacing: -.02em;
  margin: 16px 0 12px;
  line-height: 1.1;
}
.page-hero .muted-tiny { color: var(--gray); }

.legal {
  padding: 70px 0 120px;
  background: var(--white);
}
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  color: #2F3830;
  font-size: 1rem;
  line-height: 1.75;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--ink-2);
  margin: 48px 0 16px;
}
.legal-content h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.22rem;
  color: var(--ink-2);
  margin: 32px 0 12px;
}
.legal-content p { margin-bottom: 16px; }
.legal-content ul, .legal-content ol { margin: 16px 0 20px 22px; }
.legal-content li { margin-bottom: 8px; }
.legal-content strong { color: var(--ink-2); }
.legal-content a { color: var(--green); text-decoration: underline; }

/* =========================
   Contact page
   ========================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  padding: 80px 0 120px;
  align-items: start;
}
.contact-info .h-display { margin-bottom: 26px; }
.contact-info p { color: #3A4138; margin-bottom: 18px; line-height: 1.7; }
.contact-details {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-details dt {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--gray);
  margin-bottom: 4px;
}
.contact-details dd { color: var(--ink-2); font-size: 1rem; }

.contact-form {
  background: var(--cream-2);
  padding: 48px 44px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--ink-2);
  margin-bottom: 4px;
}
.contact-form .form-subtitle {
  font-size: .92rem;
  color: var(--gray);
  margin-bottom: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gray);
  font-weight: 500;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: .98rem;
  color: var(--ink-2);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field textarea { resize: vertical; min-height: 140px; font-family: var(--font-body); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 139, 147, .12);
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .82rem;
  color: var(--gray);
  line-height: 1.5;
}
.form-check input { margin-top: 3px; accent-color: var(--green); }
.form-check a { color: var(--green); text-decoration: underline; }

.contact-form button[type="submit"] {
  width: 100%;
  margin-top: 8px;
  padding: 18px;
  border-radius: 999px;
  background: var(--green);
  color: var(--cream);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .04em;
  transition: background .2s ease;
}
.contact-form button[type="submit"]:hover { background: var(--green-2); }

/* =========================
   Thank you page
   ========================= */
.thankyou {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
  background: var(--cream);
}
.thankyou-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.thankyou-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  border-radius: 50%;
  background: var(--green);
  display: grid;
  place-items: center;
  color: var(--cream);
}
.thankyou h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--ink-2);
  letter-spacing: -.02em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.thankyou p {
  color: #3A4138;
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 36px;
}
.thankyou-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================
   Scroll-in animation
   ========================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .problem-grid,
  .science-grid,
  .product-grid,
  .who-grid,
  .howto-grid,
  .cta-inner,
  .contact-grid,
  .disclaimer-grid,
  .bm-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .science-card, .who-text, .bm-figure { position: static; }
  .bm-figure { max-width: 260px; }
}

@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  .section { padding: 80px 0; }
  .cta-section { padding: 80px 0; }
  .product, .howto { padding: 90px 0; }
  /* header handled in its own breakpoints below */

  .hero { padding-top: 40px; }
  .hero-visual { min-height: 420px; }
  .hero-floating-card { left: 12px; bottom: 16px; max-width: 220px; padding: 14px 16px 14px 14px; }
  .hfc-value { font-size: 1.1rem; }
  .hero-facts { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .hero-facts strong { font-size: 1.1rem; }

  .usp-grid { grid-template-columns: 1fr; }
  .who-cards { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

  .body-map { padding: 32px 22px; }
  .bm-head { margin-bottom: 32px; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }

  .faq-item summary { font-size: 1.1rem; padding: 24px 0; gap: 16px; }
  .faq-body { max-width: 100%; padding-bottom: 24px; }

  .sec-head { gap: 14px; margin-bottom: 36px; }
  .sec-num { font-size: 1.6rem; }
}

/* =========================
   Header — responsive breakpoints
   ========================= */
/* Tablet: hide CTA text label (keep icon button-like), tighten gaps */
@media (max-width: 980px){
  .nav { gap: 18px; }
  .header-cta span { display: none; }
  .header-cta { padding: 10px 12px; }
}

/* Mobile: burger takes over */
@media (max-width: 820px){
  .header-inner{
    grid-template-columns: 1fr auto;
    gap: 12px;
  }
  .nav,
  .header-cta{ display: none; }
  .burger{ display: flex; }

  .ad-pill{
    padding: 8px 12px;
    font-size: .62rem;
    letter-spacing: .2em;
  }

  /* Slide-in mobile menu */
  .nav.open{
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(340px, 86vw);
    background: linear-gradient(180deg, #FFFFFF 0%, var(--cream) 100%);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    padding: 90px 28px 32px;
    z-index: 90;
    border-left: 1px solid var(--line);
    box-shadow: -30px 0 60px -30px rgba(24,37,36,.35);
    animation: navSlideIn .35s cubic-bezier(.2,.8,.2,1);
  }
  .nav.open a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--ink-2);
    opacity: 1;
    padding: 16px 0;
    border-bottom: 1px solid rgba(217,209,190,.6);
    letter-spacing: .005em;
  }
  .nav.open a::after{ display: none; }
  .nav.open a::before{
    content: "→";
    order: 2;
    color: var(--green);
    font-family: var(--font-sans);
    font-size: 1rem;
    opacity: .6;
    transition: transform .25s ease, opacity .25s ease;
  }
  .nav.open a:hover::before{ transform: translateX(4px); opacity: 1; }
}
@keyframes navSlideIn{
  from { transform: translateX(100%); opacity: .4; }
  to   { transform: translateX(0);    opacity: 1; }
}

@media (max-width: 480px){
  .ad-pill span{ display: none; } /* keep only leaf icon on very small screens */
  .ad-pill{ padding: 8px 10px; border-radius: 50%; width: 36px; height: 36px; justify-content: center; }
  .ad-pill-leaf{ width: 16px; height: 16px; }
}

/* Prevent body scroll when menu is open */
body.nav-open{ overflow: hidden; }

/* =========================
   Page loader — premium leaf
   ========================= */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 28px;
  background:
    radial-gradient(1000px 600px at 50% 30%, #FBF7ED 0%, var(--cream) 55%, #F0E9D7 100%);
  transition: opacity .8s ease, visibility .8s;
}
.page-loader::before,
.page-loader::after{
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
  opacity: .55;
}
.page-loader::before{
  width: 420px; height: 420px;
  left: 50%; top: 42%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(42,138,146,.18), transparent 70%);
}
.page-loader::after{
  width: 260px; height: 260px;
  left: 50%; top: 42%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(227,215,190,.9), transparent 70%);
}
.page-loader.hide { opacity: 0; visibility: hidden; }

/* Stage that holds spinner + halo + leaf */
.pl-stage{
  position: relative;
  width: 160px;
  height: 160px;
  display: grid;
  place-items: center;
}

/* Soft pulsing halos */
.pl-halo,
.pl-halo-2,
.pl-glow{
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}
.pl-glow{
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.9), rgba(255,255,255,0) 65%);
}
.pl-halo{
  border: 1px solid rgba(42,138,146,.35);
  animation: pl-pulse 2.4s ease-out infinite;
}
.pl-halo-2{
  border: 1px solid rgba(42,138,146,.2);
  animation: pl-pulse 2.4s ease-out .8s infinite;
}
@keyframes pl-pulse{
  0%   { transform: scale(.7);  opacity: .0; }
  20%  { opacity: .9; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* Rotating gradient arc */
.pl-spinner{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: pl-spin 1.6s linear infinite;
  filter: drop-shadow(0 10px 22px rgba(31,107,114,.18));
}
.pl-spinner .pl-track{
  fill: none;
  stroke: rgba(31,107,114,.08);
  stroke-width: 3;
}
.pl-spinner .pl-arc{
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 70 210;
  stroke-dashoffset: 0;
  transform-origin: 50% 50%;
}
@keyframes pl-spin { to { transform: rotate(360deg); } }

/* Leaf in the center */
.pl-leaf{
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  transform-origin: 50% 90%;
  animation: pl-sway 3.2s ease-in-out infinite;
  filter: drop-shadow(0 14px 22px rgba(31,107,114,.28));
}
.pl-leaf-body{
  transform-origin: 40px 30px;
  animation: pl-breathe 3.2s ease-in-out infinite;
}
.pl-leaf-vein{
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: pl-draw 2.4s ease-in-out infinite;
}
.pl-leaf-veins path{
  stroke-dasharray: 18;
  stroke-dashoffset: 18;
  animation: pl-draw-mini 2.4s ease-in-out infinite;
}
.pl-leaf-veins path:nth-child(2){ animation-delay: .2s; }
.pl-leaf-veins path:nth-child(3){ animation-delay: .4s; }

@keyframes pl-sway{
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50%      { transform: rotate( 6deg) translateY(-2px); }
}
@keyframes pl-breathe{
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}
@keyframes pl-draw{
  0%   { stroke-dashoffset: 60; }
  55%  { stroke-dashoffset: 0;  }
  100% { stroke-dashoffset: -60; }
}
@keyframes pl-draw-mini{
  0%   { stroke-dashoffset: 18; }
  55%  { stroke-dashoffset: 0;  }
  100% { stroke-dashoffset: -18; }
}

/* Brand block under the stage */
.pl-brand{
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}
.pl-text{
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink-2);
  opacity: 0;
  transform: translateY(6px);
  animation: pl-rise .8s ease .15s forwards;
}
.pl-sub{
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gray);
  opacity: 0;
  transform: translateY(6px);
  animation: pl-rise .8s ease .35s forwards;
}
.pl-dots{
  display: inline-flex;
  gap: 6px;
  margin-top: 4px;
  opacity: 0;
  animation: pl-rise .6s ease .55s forwards;
}
.pl-dots i{
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-accent);
  opacity: .35;
  animation: pl-dot 1.2s ease-in-out infinite;
}
.pl-dots i:nth-child(2){ animation-delay: .15s; }
.pl-dots i:nth-child(3){ animation-delay: .30s; }

@keyframes pl-rise{
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pl-dot{
  0%, 100% { opacity: .25; transform: translateY(0) scale(1); }
  50%      { opacity: 1;   transform: translateY(-3px) scale(1.15); }
}

@media (max-width: 520px){
  .pl-stage{ width: 140px; height: 140px; }
  .pl-leaf{ width: 62px; height: 62px; }
  .pl-text{ font-size: 1.15rem; letter-spacing: .28em; }
}
@media (prefers-reduced-motion: reduce){
  .pl-spinner, .pl-leaf, .pl-leaf-body, .pl-leaf-vein, .pl-leaf-veins path,
  .pl-halo, .pl-halo-2, .pl-dots i { animation: none; }
}

/* =========================
   HERO v3 — Minimal & calm
   ========================= */
.hero-v3 {
  position: relative;
  padding: 40px 0 90px;
  background: var(--cream);
  overflow: hidden;
}

/* Top meta row */
.hv3-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: hv3-in .8s ease .15s forwards;
}
.hv3-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gray);
  font-weight: 500;
}
.hv3-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--green);
  font-size: .95rem;
  letter-spacing: .02em;
  text-transform: none;
  font-weight: 400;
}
.hv3-sep {
  width: 28px;
  height: 1px;
  background: var(--gray-2);
}
.hv3-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  color: var(--gray);
}
.hv3-stars { gap: 1px; }
.hv3-stars svg { width: 13px; height: 13px; }
.hv3-rating strong {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink-2);
  font-size: .95rem;
  margin-left: 4px;
}
.hv3-rating span {
  letter-spacing: .04em;
}

/* Main grid */
.hv3-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0 70px;
}

/* Text column */
.hv3-text {
  max-width: 560px;
}
.hv3-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  line-height: 1;
  letter-spacing: -.028em;
  color: var(--ink-2);
  margin: 0;
}
.hv3-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--green);
}
.hv3-line {
  display: block;
  overflow: hidden;
}
.hv3-line > * {
  display: inline-block;
}
.hv3-line {
  opacity: 0;
  transform: translateY(24px);
  animation: hv3-in 1s cubic-bezier(.2,.8,.2,1) forwards;
}
.hv3-line:nth-child(1) { animation-delay: .3s; }
.hv3-line:nth-child(2) { animation-delay: .45s; }

.hv3-lede {
  margin-top: 32px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #3A4138;
  max-width: 480px;
  opacity: 0;
  animation: hv3-in .9s ease .7s forwards;
}

.hv3-actions {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  opacity: 0;
  animation: hv3-in .9s ease .85s forwards;
}
.hv3-cta { padding: 16px 30px; font-size: .95rem; }
.hv3-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: 6px 0;
  border-bottom: 1px solid var(--ink-2);
  transition: color .2s ease, border-color .2s ease, gap .25s ease;
}
.hv3-link:hover {
  color: var(--green);
  border-color: var(--green);
  gap: 12px;
}

/* Visual column */
.hv3-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 480px;
  justify-self: end;
  display: grid;
  place-items: center;
  opacity: 0;
  animation: hv3-in 1.1s cubic-bezier(.2,.8,.2,1) .25s forwards;
}
.hv3-halo {
  position: absolute;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 139, 147, .18) 0%, transparent 65%);
  filter: blur(8px);
  z-index: 0;
}
.hv3-can {
  position: relative;
  width: 78%;
  height: auto;
  z-index: 1;
  filter: drop-shadow(0 40px 50px rgba(19, 42, 45, .22));
  animation: hv3-float 6s ease-in-out 1.2s infinite;
}
@keyframes hv3-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes hv3-in {
  to { opacity: 1; transform: translateY(0); }
}

/* Bottom facts */
.hv3-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  opacity: 0;
  animation: hv3-in .9s ease 1s forwards;
}
.hv3-fact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.hv3-fact strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--ink-2);
  letter-spacing: -.015em;
  line-height: 1.1;
}
.hv3-fact span {
  font-size: .72rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .18em;
}
.hv3-vline {
  width: 1px;
  height: 36px;
  background: var(--line);
  flex-shrink: 0;
}

/* Hero v3 responsive */
@media (max-width: 1100px) {
  .hero-v3 { padding: 30px 0 70px; }
  .hv3-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 50px 0;
  }
  .hv3-visual {
    justify-self: center;
    max-width: 380px;
    order: -1;
  }
  .hv3-bottom {
    flex-wrap: wrap;
    gap: 24px 20px;
  }
  .hv3-fact { flex: 1 1 40%; }
  .hv3-vline:nth-of-type(2) { display: none; }
}

@media (max-width: 720px) {
  .hero-v3 { padding: 24px 0 50px; }
  .hv3-top {
    padding-bottom: 20px;
    gap: 12px;
  }
  .hv3-eyebrow { font-size: .68rem; letter-spacing: .18em; gap: 10px; }
  .hv3-sep { width: 20px; }
  .hv3-rating { font-size: .72rem; }
  .hv3-rating strong { font-size: .85rem; }
  .hv3-stars svg { width: 11px; height: 11px; }

  .hv3-grid { padding: 36px 0; gap: 36px; }
  .hv3-visual { max-width: 280px; }
  .hv3-can { width: 82%; }

  .hv3-lede { margin-top: 22px; font-size: 1rem; }
  .hv3-actions { margin-top: 30px; gap: 20px; }
  .hv3-cta { padding: 14px 24px; font-size: .88rem; }
  .hv3-link { font-size: .72rem; letter-spacing: .12em; }

  .hv3-bottom {
    padding-top: 28px;
    gap: 18px 14px;
  }
  .hv3-fact { flex: 1 1 42%; }
  .hv3-fact strong { font-size: 1rem; }
  .hv3-fact span { font-size: .62rem; letter-spacing: .14em; }
  .hv3-vline { display: none; }
}

/* =========================
   WOW: Scroll progress
   ========================= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--green-accent), var(--green));
  z-index: 200;
  transition: width .12s linear;
  border-radius: 0 2px 2px 0;
}

/* (header ad-pill styles moved into Header section above) */

/* =========================
   WOW: Trust badges in hero
   ========================= */
.hero-trust {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px 10px 14px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px -20px rgba(19, 42, 45, .25);
}
.stars {
  display: inline-flex;
  gap: 2px;
  align-items: center;
}
.stars svg {
  width: 16px;
  height: 16px;
  fill: #E2B341;
}
.trust-rating-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.trust-rating-text strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink-2);
}
.trust-rating-text span {
  font-size: .76rem;
  color: var(--gray);
  letter-spacing: .02em;
}
.trust-rating-text em {
  font-style: normal;
  color: var(--green);
  font-weight: 500;
}
.trust-badges {
  display: flex;
  gap: 8px;
}
.tb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--cream-2);
  color: var(--ink-2);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid var(--line);
}
.tb i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-accent);
  display: inline-block;
}

/* =========================
   WOW: Shine button
   ========================= */
.btn-shine {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-shine::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 80%; height: 100%;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, .35) 50%, transparent 80%);
  transform: skewX(-18deg);
  z-index: -1;
  animation: btn-shine 3.5s ease-in-out infinite;
}
@keyframes btn-shine {
  0% { left: -120%; }
  45% { left: 140%; }
  100% { left: 140%; }
}
.btn-shine svg { transition: transform .3s ease; }
.btn-shine:hover svg { transform: translateX(4px); }

/* =========================
   WOW: Ken Burns hero img
   ========================= */
.hero-photo img {
  animation: kenburns 18s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* =========================
   WOW: Social proof block
   ========================= */
.social-proof {
  background: var(--cream);
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.sp-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.sp-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sp-value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--ink-2);
  line-height: 1;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.sp-label {
  font-size: .78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .16em;
}
.sp-divider {
  width: 1px;
  height: 50px;
  background: var(--line);
  justify-self: center;
}

/* =========================
   WOW: Product hotspots
   ========================= */
.hotspot {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: #FFFFFF;
  z-index: 4;
  cursor: pointer;
  transition: transform .25s ease;
  padding: 0;
  box-shadow: 0 0 0 6px rgba(42,138,146,.15), 0 6px 16px -6px rgba(24,37,36,.35);
}
.hotspot::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(42,138,146,.5);
  animation: hs-pulse 2.4s ease-out infinite;
}
@keyframes hs-pulse {
  0% { transform: scale(.7); opacity: .9; }
  100% { transform: scale(1.8); opacity: 0; }
}
.hs-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .9rem;
}
.hs-tip {
  position: absolute;
  left: 44px;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  background: var(--ink-2);
  color: var(--cream);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: .78rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  font-weight: 400;
  letter-spacing: .01em;
}
.hs-tip::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right-color: var(--ink-2);
}
.hotspot:hover {
  transform: scale(1.1);
}
.hotspot:hover .hs-tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Product rating under product image */
.product-rating {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 24px -18px rgba(24,37,36,.3);
}
.stars-light svg { fill: #F2C668; }
.product-rating div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.product-rating strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink-2);
}
.product-rating span:last-child {
  font-size: .72rem;
  color: var(--gray);
  letter-spacing: .06em;
}

/* =========================
   WOW: Review stars & verified
   ========================= */
.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
  flex-wrap: wrap;
}
.review-head .stars svg { width: 18px; height: 18px; }
.verified-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(47, 139, 147, .1);
  color: var(--green);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .02em;
}

/* =========================
   WOW: Sticky bottom buy bar
   ========================= */
.sticky-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 150;
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px -20px rgba(19, 42, 45, .35);
  padding: 12px 16px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), opacity .4s ease;
  pointer-events: none;
}
.sticky-bar.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-bar.hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.sb-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1100px;
}
.sb-product {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}
.sb-thumb {
  width: 56px; height: 56px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, #EFE8D8 100%);
  flex-shrink: 0;
  display: grid;
  place-items: center;
}
.sb-thumb img {
  width: 75%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(19, 42, 45, .2));
}
.sb-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.sb-meta strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sb-meta > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--gray);
}
.sb-stars svg { width: 12px; height: 12px; }
.sb-cta { padding: 12px 22px; font-size: .88rem; flex-shrink: 0; }
.sb-close {
  width: 34px; height: 34px;
  border-radius: 50%;
  color: var(--gray);
  display: grid;
  place-items: center;
  transition: background .2s ease, color .2s ease;
  flex-shrink: 0;
}
.sb-close:hover { background: var(--cream-2); color: var(--ink-2); }

/* Responsive tweaks for wow elements */
@media (max-width: 1100px) {
  .sp-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }
  .sp-divider { display: none; }
}
@media (max-width: 720px) {
  .hero-trust { gap: 14px; margin-top: 24px; }
  .trust-rating { padding: 8px 14px 8px 12px; gap: 10px; }
  .trust-rating-text strong { font-size: .92rem; }
  .trust-rating-text span { font-size: .7rem; }
  .tb { padding: 6px 10px; font-size: .65rem; }

  .sp-grid { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .sp-value { font-size: 1.7rem; }

  .hotspot { width: 26px; height: 26px; }
  .hs-num { font-size: .78rem; }
  .hs-tip { font-size: .7rem; padding: 6px 10px; left: 36px; }

  .sticky-bar {
    left: 10px; right: 10px; bottom: 10px;
    padding: 10px 12px;
    border-radius: 14px;
  }
  .sb-inner { gap: 10px; }
  .sb-thumb { width: 44px; height: 44px; }
  .sb-meta strong { font-size: .85rem; }
  .sb-meta > span { font-size: .7rem; }
  .sb-cta {
    padding: 10px 14px;
    font-size: .78rem;
  }
  .sb-cta span { display: none; }
  .sb-close { width: 28px; height: 28px; }

  .review-head { margin-bottom: 14px; }
  .review-head .stars svg { width: 16px; height: 16px; }
}
