/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #fdfcf7;
  --cream-2:    #f6f2eb;
  --surface:    #ffffff;
  --border:     #e5dfd5;
  --text:       #1e1a14;
  --muted:      #6e6356;
  --green:      #3a6b34;
  --green-dk:   #2c5228;
  --green-lt:   #e8f3e7;
  --gold:       #f4a01c;

  --fh: 'Poppins', system-ui, sans-serif;
  --fb: 'Inter', system-ui, sans-serif;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --sh-sm: 0 2px 10px rgba(0,0,0,.06);
  --sh-md: 0 8px 28px rgba(0,0,0,.09);
  --sh-lg: 0 20px 56px rgba(0,0,0,.12);

  --max: 1100px;
}

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 { font-family: var(--fh); letter-spacing: -.02em; }

img { display: block; max-width: 100%; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.section { padding: 100px 0; }

.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}
.section-header h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; margin-bottom: 12px; }
.section-header p { color: var(--muted); font-size: 17px; }
.section-header em { font-style: italic; }

.badge {
  display: inline-block;
  background: var(--green-lt);
  color: var(--green-dk);
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: var(--r-sm);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--green);
  color: #fff;
  padding: 15px 32px;
  font-size: 16px;
}
.btn--primary:hover {
  background: var(--green-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(58,107,52,.38);
}

.btn--light {
  background: #fff;
  color: var(--text);
  padding: 15px 32px;
  font-size: 16px;
}
.btn--light:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
}

.btn--cta { background: var(--green); color: #fff; }
.btn--cta:hover { background: var(--green-dk); }

.btn--sm { padding: 10px 20px; font-size: 13px; white-space: nowrap; }
.btn--lg { padding: 18px 42px; font-size: 17px; border-radius: var(--r-md); }
.btn--full { width: 100%; padding: 18px; font-size: 16px; }

/* Shimmer effect on CTA */
.btn--shimmer::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-20deg);
  animation: shimmer 2.8s ease-in-out infinite;
}
@keyframes shimmer {
  0%   { left: -100%; }
  60%  { left: 130%; }
  100% { left: 130%; }
}

/* ============================================================
   ANNOUNCEMENT BAR — marquee
   ============================================================ */
.ann-bar {
  background: var(--green);
  color: #fff;
  height: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ann-track {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 500;
  will-change: transform;
  animation: marquee 30s linear infinite;
}
.ann-dot { opacity: .5; }

@keyframes marquee {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(253,252,247,.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 76px;
}

/* Logo — the image has lots of built-in whitespace so use generous height */
.nav__logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav__logo-img { height: 64px; width: auto; }

.nav__links { display: flex; gap: 32px; list-style: none; flex: 1; }
.nav__links a {
  color: var(--muted);
  text-decoration: none;
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 500;
  transition: color .15s;
}
.nav__links a:hover { color: var(--text); }
.nav__account-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 13px !important;
}
.nav__account-link::before { content: '👤'; font-size: 12px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 80px 0 80px; background: var(--cream); }

.hero__inner {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 56px;
  align-items: center;
}

.hero__eyebrow { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.stars { color: var(--gold); font-size: 17px; letter-spacing: 2px; }
.review-ct { font-size: 14px; color: var(--muted); font-weight: 500; }

.hero__headline {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 800;
  line-height: 1.06;
  margin-bottom: 20px;
}
.hero__headline em { color: var(--green); font-style: normal; }

.hero__sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

/* Stat strip */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
}
.hero__stat { display: flex; flex-direction: column; flex: 1; text-align: center; }
.hero__stat-label { font-size: 11px; color: var(--muted); line-height: 1.3; margin: 0; }
.h-divider { width: 1px; height: 38px; background: var(--border); flex-shrink: 0; margin: 0 4px; }

.hero__cta { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.hero__guarantee { font-size: 13px; color: var(--muted); }

/* Product visual */
.hero__visual--mobile { display: none; } /* hidden on desktop, shown on mobile via media query */
.hero__visual { display: flex; justify-content: center; align-items: center; }
.hero__banner-img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  object-fit: cover;
}
.hero__product-wrap { position: relative; display: inline-block; }
.hero__product-img {
  width: 100%;
  max-width: 400px;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
}
.hero__badge {
  position: absolute;
  bottom: 20px;
  right: -18px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  width: 92px;
  height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--sh-md);
}
.hbadge-top { font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; opacity: .8; }
.hbadge-main { font-family: var(--fh); font-size: 15px; font-weight: 800; line-height: 1.2; margin-top: 3px; }

/* Floating animation on badge */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.float-anim { animation: float 3.6s ease-in-out infinite; }

/* ============================================================
   SCROLLING TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--cream-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
}
.trust-track {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  animation: marquee 22s linear infinite;
}
.t-dot { color: var(--border); font-size: 18px; }

/* ============================================================
   VET PROBLEM SECTION
   ============================================================ */
.problem {
  background: #141210;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.problem__kicker {
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
}

.problem__headline {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.0;
  margin-bottom: 20px;
  color: #fff;
}

.problem__deck {
  font-size: clamp(18px, 2.5vw, 24px);
  color: rgba(255,255,255,.75);
  max-width: 680px;
  margin: 0 auto 16px;
  line-height: 1.55;
}
.problem__deck em { color: #fff; font-style: italic; }

.problem__sub-text {
  font-size: 16px;
  color: rgba(255,255,255,.5);
  margin-bottom: 64px;
}

/* Problem stats */
.problem__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 56px 0;
}

.problem__stat {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  padding: 28px 20px;
  transition: background .2s;
}
.problem__stat:hover { background: rgba(255,255,255,.08); }

.pstat-num {
  font-family: var(--fh);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
}
.pstat-num span:last-child { font-size: .55em; }
.problem__stat p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.5; }

/* Blockquote */
.problem__quote {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 36px 40px;
  max-width: 800px;
  margin: 0 auto 52px;
  text-align: left;
}
.problem__quote p {
  font-family: var(--fh);
  font-size: clamp(16px, 2vw, 20px);
  font-style: italic;
  line-height: 1.65;
  color: rgba(255,255,255,.85);
  margin-bottom: 16px;
}
.problem__quote strong { color: #fff; }
.problem__quote cite { font-size: 13px; color: rgba(255,255,255,.4); font-style: normal; }

.problem__bridge { max-width: 640px; margin: 0 auto; }
.problem__bridge p {
  font-size: 19px;
  color: rgba(255,255,255,.8);
  line-height: 1.65;
  margin-bottom: 32px;
}
.problem__bridge strong { color: #fff; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: var(--cream); }

.steps {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.step {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px 28px;
  box-shadow: var(--sh-sm);
  transition: transform .2s, box-shadow .2s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.step__num {
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.step h3 { font-size: 21px; font-weight: 700; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 15px; }
.step__arrow {
  font-size: 26px;
  color: var(--border);
  flex-shrink: 0;
  margin-top: 44px;
}

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.before-after { background: var(--cream-2); }

.ba-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ba-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.ba-img { width: 100%; display: block; }
.ba-labels {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
}
.ba-label {
  flex: 1;
  text-align: center;
  padding: 12px;
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.ba-before { background: rgba(0,0,0,.5); color: #fff; }
.ba-after  { background: rgba(58,107,52,.82); color: #fff; }

.ba-text h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 700; margin-bottom: 16px; }
.ba-quote {
  font-family: var(--fh);
  font-size: 19px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
  border-left: 3px solid var(--green);
  padding-left: 18px;
  margin-bottom: 10px;
  color: var(--text);
}
.ba-attr { font-size: 13px; color: var(--muted); margin-bottom: 28px; padding-left: 21px; }
.result-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.result-list li { font-family: var(--fh); font-size: 15px; color: var(--green); font-weight: 600; }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits { background: var(--cream); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 24px;
  transition: transform .22s, box-shadow .22s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.bc-icon { font-size: 30px; margin-bottom: 14px; }
.benefit-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.benefit-card p { color: var(--muted); font-size: 14px; line-height: 1.65; }

/* ============================================================
   FOUNDER STORY
   ============================================================ */
.founder { background: var(--cream-2); }

.founder-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: start;
}

.founder-img-wrap { position: relative; }
.founder-img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  aspect-ratio: 1;
  object-fit: cover;
}
.founder-img-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-radius: var(--r-sm);
  padding: 8px 14px;
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--sh-sm);
}

.founder-text h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 700; margin-bottom: 20px; line-height: 1.25; }
.founder-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.founder-text p em { font-style: italic; color: var(--text); }
.founder-text strong { color: var(--text); }
.founder-sig {
  font-family: var(--fh);
  font-size: 16px;
  font-style: italic;
  font-weight: 600;
  color: var(--green);
  margin: 24px 0 28px;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--surface); }

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

.review-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .22s, box-shadow .22s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }

.rc-img-wrap { width: 100%; aspect-ratio: 1; overflow: hidden; }
.rc-img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.review-card:hover .rc-img { transform: scale(1.04); }

.rc-body { padding: 22px 22px 26px; }
.rc-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 12px; }
.rc-body p { font-size: 15px; line-height: 1.7; color: var(--text); margin-bottom: 18px; }
.rc-author strong { display: block; font-size: 14px; font-weight: 600; }
.rc-author span { font-size: 12px; color: var(--muted); }

/* Text-only review card fills the height */
.review-card--text { display: flex; flex-direction: column; }
.review-card--text .rc-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 28px;
}
.review-card--text .rc-body p { font-size: 17px; line-height: 1.7; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--cream-2); }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item[open] { box-shadow: var(--sh-sm); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background .15s;
}
.faq-item summary:hover { background: var(--cream-2); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--fh);
  font-size: 24px;
  font-weight: 300;
  color: var(--green);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform .25s;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 24px 24px; }
.faq-body p { color: var(--muted); font-size: 15px; line-height: 1.75; }

/* ============================================================
   BUY / CTA
   ============================================================ */
.buy { background: var(--cream); }

.pricing-wrap { max-width: 1020px; margin: 0 auto; }

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  display: grid;
  grid-template-columns: 380px 1fr;
  overflow: hidden;
}

.pc-img-col {
  background: linear-gradient(145deg, #e8f3e7 0%, #d0e8ce 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 28px;
}
.pc-img { width: 100%; max-width: 190px; border-radius: var(--r-md); }

/* Product image gallery */
.product-gallery { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.gallery-main {
  width: 100%;
  border-radius: var(--r-md);
  object-fit: cover;
  aspect-ratio: 1;
  transition: opacity .2s;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.gallery-thumb {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: .6;
  transition: border-color .15s, opacity .15s;
}
.gallery-thumb:hover { opacity: .9; }
.gallery-thumb--active { border-color: var(--green); opacity: 1; }

.pc-content { padding: 36px 36px 36px 32px; }
.pc-bestseller {
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pc-name { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.pc-desc { font-size: 13px; color: var(--muted); margin-bottom: 24px; }

.pc-price-block { margin-bottom: 24px; }
.pc-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.pc-price {
  font-family: var(--fh);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
}
.pc-compare {
  background: var(--green-lt);
  color: var(--green-dk);
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  line-height: 1.3;
}
.pc-subscribe { font-size: 13px; color: var(--muted); }
.pc-subscribe strong { color: var(--green); }

.pc-knockoffs-warn {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fffbf0;
  border: 1px solid #f0d896;
  border-radius: var(--r-sm);
  padding: 12px 14px;
  margin: 14px 0 0;
  font-size: 13px;
}
.pc-knockoffs-warn span { flex-shrink: 0; line-height: 1.6; }
.pc-knockoffs-warn p { margin: 0; color: var(--muted); line-height: 1.6; }
.pc-knockoffs-warn strong { color: var(--text); }

.pc-trust { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.trust-pill {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 5px 12px;
}

/* ============================================================
   HERO PLACEHOLDER
   ============================================================ */
.hero__placeholder {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  border: 2px dashed var(--border);
  border-radius: var(--r-lg);
  background: var(--cream-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
}
.placeholder-icon { font-size: 40px; }
.placeholder-label { font-family: var(--fh); font-size: 16px; font-weight: 600; }
.placeholder-sub { font-size: 13px; color: var(--border); }

/* ============================================================
   HERO STAT NUMBER — fixed layout
   ============================================================ */
.hero__stat-num {
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 4px;
}
.stat-pct {
  font-size: 1em;
  font-weight: 700;
  opacity: 1;
}

/* ============================================================
   BUY — auto-delivery box & promise box
   ============================================================ */
.pc-auto-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 20px;
  margin: 20px 0;
}
.pc-auto-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.pc-auto-box strong { display: block; font-family: var(--fh); font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.pc-auto-box p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }
.pc-cancel { margin-top: 8px !important; font-style: italic; }

.pc-subscribe-note { font-size: 13px; color: var(--muted); }
.pc-link { color: var(--green); text-decoration: underline; }
.pc-ebook-bonus {
  font-size: 13px;
  color: var(--green-dk);
  font-family: var(--fh);
  margin-top: 8px;
}
.pc-ebook-bonus em { color: var(--muted); font-style: normal; }

/* ============================================================
   FREE EBOOK SECTION
   ============================================================ */
.ebook-bonus {
  background: var(--green-dk);
  padding: 80px 0;
  overflow: hidden;
}
.ebook-inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px 72px;
  align-items: center;
}
.ebook-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.ebook-kicker {
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
.ebook-headline {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin: 0;
}
.ebook-byline {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin: -8px 0 0;
}
.ebook-byline em {
  color: rgba(255,255,255,.85);
  font-style: italic;
}
.ebook-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ebook-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,.82);
  line-height: 1.5;
}
.ebook-bullets li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.ebook-value-pill {
  display: inline-block;
  background: var(--gold);
  color: #1a2000;
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 99px;
  letter-spacing: .02em;
  width: fit-content;
}
.ebook-note {
  font-size: 13px;
  color: rgba(255,255,255,.38);
  margin: -6px 0 0;
}

/* Device / phone mockup */
.ebook-device-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ebook-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180,210,60,.28) 0%, transparent 70%);
  pointer-events: none;
}
.ebook-phone {
  position: relative;
  width: 100%;
  max-width: 280px;
  border-radius: 28px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.07),
    0 24px 60px rgba(0,0,0,.55),
    0 8px 20px rgba(0,0,0,.3);
  transform: rotate(2.5deg);
  transition: transform .4s ease, box-shadow .4s ease;
}
.ebook-phone:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.1),
    0 32px 72px rgba(0,0,0,.6),
    0 12px 28px rgba(0,0,0,.35);
}

@media (max-width: 700px) {
  .ebook-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .ebook-copy {
    align-items: center;
  }
  .ebook-bullets li {
    text-align: left;
  }
  .ebook-device-wrap {
    order: -1;
  }
  .ebook-phone {
    max-width: 220px;
    transform: rotate(0deg);
  }
}

.promise-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  max-width: 800px;
  margin: 32px auto 0;
  background: var(--green-lt);
  border: 1px solid rgba(58,107,52,.2);
  border-radius: var(--r-lg);
  padding: 28px 32px;
}
.promise-icon { font-size: 32px; flex-shrink: 0; }
.promise-content h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.promise-content p { font-size: 15px; color: var(--muted); line-height: 1.75; }

/* ============================================================
   KNOCKOFFS — compact warning bar
   ============================================================ */
.knockoffs-bar {
  background: #fffbf0;
  border-top: 1px solid #f0d896;
  border-bottom: 1px solid #f0d896;
  padding: 18px 0;
}
.knockoffs-bar-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}
.knockoffs-bar-icon { font-size: 22px; flex-shrink: 0; line-height: 1; }
.knockoffs-bar-inner p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }
.knockoffs-bar-inner strong { color: var(--text); }

.badge--warn {
  background: #fef3cd;
  color: #7a5c00;
}

/* ============================================================
   CART SIDEBAR
   ============================================================ */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 900;
}
.cart-overlay.open { display: block; }

.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: 360px;
  max-width: 100vw;
  height: 100%;
  background: var(--cream);
  box-shadow: -8px 0 40px rgba(0,0,0,.15);
  z-index: 901;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-family: var(--fh); font-size: 18px; font-weight: 700; }

.cart-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: var(--muted);
  padding: 4px 8px;
  border-radius: var(--r-sm);
  transition: background .15s, color .15s;
  line-height: 1;
}
.cart-close:hover { background: var(--cream-2); color: var(--text); }

.cart-body { flex: 1; overflow-y: auto; padding: 24px; }

.cart-item { display: flex; gap: 16px; align-items: flex-start; }

.cart-item-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: var(--r-sm);
  background: var(--green-lt);
  flex-shrink: 0;
  padding: 6px;
}

.cart-item-info { flex: 1; }
.cart-item-name { font-family: var(--fh); font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.cart-item-sub { font-size: 12px; color: var(--muted); margin-bottom: 12px; }

.cart-qty-row { display: flex; align-items: center; gap: 10px; }
.qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background .15s;
}
.qty-btn:hover { background: var(--cream-2); }
.qty-num { font-family: var(--fh); font-size: 16px; font-weight: 700; min-width: 24px; text-align: center; }

.cart-item-price { font-family: var(--fh); font-size: 16px; font-weight: 700; flex-shrink: 0; }

.cart-footer {
  border-top: 1px solid var(--border);
  padding: 20px 24px 28px;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-family: var(--fh);
  font-size: 17px;
  font-weight: 700;
}
.cart-total { color: var(--green); }
.cart-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 10px; }

/* Cart ebook free gift row */
.cart-ebook {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 12px 14px;
  background: #f0f9ef;
  border: 1px dashed #a8d3a6;
  border-radius: var(--r-sm);
}
.cart-ebook-img-wrap { flex-shrink: 0; }
.cart-ebook-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.cart-ebook-info { flex: 1; min-width: 0; }
.cart-ebook-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--fh);
  color: var(--green-dk);
  background: #c9e8c7;
  padding: 2px 8px;
  border-radius: 99px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.cart-ebook-name {
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-ebook-sub { font-size: 11px; color: var(--muted); margin-top: 1px; }
.cart-ebook-prices {
  flex-shrink: 0;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
}
.cart-ebook-free {
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 800;
  color: var(--green);
}
.cart-ebook-was {
  font-size: 11px;
  color: var(--muted);
  text-decoration: line-through;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--cream-2);
  border-top: 1px solid var(--border);
  padding: 52px 0 24px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 32px;
}
.footer-logo { height: 52px; width: auto; margin-bottom: 8px; }
.footer-brand p { color: var(--muted); font-size: 14px; max-width: 220px; }
.footer-links ul { list-style: none; display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color .15s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; }
.footer-bottom p { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ============================================================
   ANIMATIONS — hero load sequence
   ============================================================ */
.hero-anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease var(--d, 0s), transform .65s ease var(--d, 0s);
}
.hero-anim.loaded { opacity: 1; transform: translateY(0); }

/* Scroll reveals */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-up.is-on { opacity: 1; transform: translateY(0); }

/* Split reveal */
.reveal-split > *:first-child {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity .7s ease .1s, transform .7s ease .1s;
}
.reveal-split > *:last-child {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity .7s ease .2s, transform .7s ease .2s;
}
.reveal-split.is-on > * { opacity: 1; transform: translateX(0); }

/* Stagger items */
.stagger-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.stagger-item.is-on { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero__inner       { grid-template-columns: 1fr; gap: 48px; }
  .hero__banner-img  { max-width: 100%; }
  .ba-inner          { grid-template-columns: 1fr; gap: 40px; }
  .ba-img-wrap       { order: -1; }
  .founder-inner     { grid-template-columns: 1fr; gap: 40px; }
  .founder-img       { aspect-ratio: 4/3; }
  .steps             { flex-direction: column; }
  .step__arrow       { display: none; }
  .benefits-grid     { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid      { grid-template-columns: 1fr; }
  .problem__stats    { grid-template-columns: repeat(2, 1fr); }
  .pricing-card      { grid-template-columns: 1fr; }
  .pc-img-col        { padding: 28px; min-height: 200px; }
  /* Disable split reveal on mobile */
  .reveal-split > *:first-child,
  .reveal-split > *:last-child {
    transform: translateY(24px);
    transition: opacity .6s ease .1s, transform .6s ease .1s;
  }
}

@media (max-width: 640px) {
  .nav__links        { display: none; }
  .nav__logo-img     { height: 46px; }
  .nav__inner        { gap: 12px; }
  .nav__inner > .btn { flex-shrink: 0; }
  .benefits-grid     { grid-template-columns: 1fr; }
  .problem__stats    { grid-template-columns: 1fr 1fr; }
  .hero              { padding: 48px 0 56px; }
  .section           { padding: 64px 0; }
  .footer-inner      { flex-direction: column; }
  .hero__badge       { right: 8px; bottom: 8px; width: 80px; height: 80px; }
  .problem__quote    { padding: 24px 24px; }
  .ann-bar           { font-size: 12px; }
  .problem           { padding: 72px 0; }
  .founder-inner     { gap: 32px; }

  /* ── Hero mobile: show inline image, hide sidebar image ── */
  .hero__visual           { display: none; }
  .hero__visual--mobile   { display: block; margin-bottom: 40px; }
}

/* ============================================================
   QUOTE STRIP (between-section social proof)
   ============================================================ */
.quote-strip {
  background: var(--green-lt);
  border-top: 1px solid #c5dfc4;
  border-bottom: 1px solid #c5dfc4;
  padding: 36px 0;
}
.quote-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.qs-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.qs-stars { color: var(--gold); font-size: 14px; }
.qs-text {
  font-size: 15px;
  line-height: 1.65;
  font-style: italic;
  color: var(--text);
  flex: 1;
}
.qs-name { font-size: 12px; font-weight: 600; color: var(--muted); }

/* ============================================================
   TEXT REVIEW CARDS
   ============================================================ */
.reviews-text-grid {
  columns: 3;
  column-gap: 16px;
  margin-top: 40px;
}
.review-text-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .2s;
  break-inside: avoid;
  margin-bottom: 16px;
}
.review-text-card:hover { box-shadow: var(--sh-md); }
.rtc-header { display: flex; align-items: center; gap: 10px; }
.rtc-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-lt);
  color: var(--green-dk);
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rtc-name { font-family: var(--fh); font-size: 13px; font-weight: 700; line-height: 1.2; }
.rtc-stars { color: var(--gold); font-size: 12px; margin-top: 1px; }
.rtc-title { font-size: 13px; font-weight: 700; color: var(--text); }
.review-text-card > p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
}
.rtc-pet { font-size: 11px; color: var(--muted); margin-top: -4px; }

/* ── REVIEW PHOTO CARDS ─────────────────────────────── */
.review-photo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
  break-inside: avoid;
  margin-bottom: 16px;
}
.review-photo-card:hover { box-shadow: var(--sh-md); }
.rpc-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-2);
}
.rpc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.review-photo-card:hover .rpc-img { transform: scale(1.04); }
.rpc-body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rpc-body > p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-2);
  flex: 1;
}

/* Mini quotes inside buy card */
.pc-mini-quotes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  padding: 14px 16px;
  background: var(--cream);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--gold);
}
.pc-mini-quote { font-size: 13px; line-height: 1.5; color: var(--text); }
.pc-mq-stars { color: var(--gold); font-size: 11px; margin-right: 4px; }
.pc-mq-name { font-weight: 600; color: var(--muted); margin-left: 4px; }

/* ============================================================
   REVIEW SUBMISSION FORM
   ============================================================ */
.review-form-section {
  margin-top: 60px;
  padding-top: 52px;
  border-top: 2px solid var(--border);
}
.review-form-header {
  text-align: center;
  margin-bottom: 32px;
}
.review-form-header h3 {
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}
.review-form-header p { font-size: 14px; color: var(--muted); }

.review-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.rf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rf-field { display: flex; flex-direction: column; gap: 6px; }
.rf-field label {
  font-size: 11px;
  font-weight: 700;
  font-family: var(--fh);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
}
.rf-field input,
.rf-field textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  font-family: var(--fb);
  font-size: 14px;
  background: var(--surface);
  color: var(--text);
  transition: border-color .15s;
  outline: none;
  resize: vertical;
}
.rf-field input:focus,
.rf-field textarea:focus { border-color: var(--green); }
.rf-stars-wrap { display: flex; gap: 4px; }
.rf-star {
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #ddd;
  transition: color .1s, transform .1s;
  padding: 0;
  line-height: 1;
}
.rf-star.lit { color: var(--gold); }
.rf-star:hover { transform: scale(1.1); }
.rf-submit-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.rf-success {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  display: none;
}
.rf-success.show { display: block; }

.user-reviews-section { margin-top: 40px; }
.user-reviews-title {
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.user-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 960px) {
  .reviews-text-grid   { columns: 2; }
  .user-reviews-grid   { grid-template-columns: repeat(2, 1fr); }
  .quote-strip-inner   { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .reviews-text-grid   { columns: 1; }
  .user-reviews-grid   { grid-template-columns: 1fr; }
  .rf-row              { grid-template-columns: 1fr; }
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-hero {
  background: var(--green-dk);
  padding: 52px 0 44px;
  color: #fff;
}
.legal-hero h1 {
  font-family: var(--fh);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 8px;
}
.legal-hero .legal-updated {
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

.legal-body {
  padding: 64px 0 80px;
  background: var(--cream);
}
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.legal-content h2 {
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 700;
  color: var(--green-dk);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-lt);
}
.legal-content h3 {
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.legal-content p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 10px;
}
.legal-content p:last-child { margin-bottom: 0; }
.legal-content ul, .legal-content ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-content li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
}
.legal-content a { color: var(--green); }
.legal-content a:hover { color: var(--green-dk); }
.legal-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-intro {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  border-left: 3px solid var(--green);
  padding-left: 16px;
}
.legal-highlight-box {
  background: var(--green-lt);
  border: 1px solid #c5dfc4;
  border-radius: var(--r-sm);
  padding: 20px 24px;
}
.legal-highlight-box p { margin: 0; font-size: 14px; color: var(--green-dk); }

@media (max-width: 640px) {
  .legal-body { padding: 40px 0 60px; }
  .legal-hero { padding: 40px 0 32px; }
}
