/** Shopify CDN: Minification failed

Line 3000:14 Expected identifier but found whitespace
Line 3000:15 Unexpected "500"

**/
/* MYOTIDE Theme - Full CSS (PDP-superset) */

/* ========================================================
   SUBPAGE STYLES (about, contact, faq, ingredients, etc.)
   ======================================================== */
.page-hero { padding: 64px 24px 48px; text-align: center; max-width: 800px; margin: 0 auto; }
.page-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2.4px; text-transform: uppercase; color: var(--accent-blue-deep); margin-bottom: 14px; }
.page-title { font-size: 48px; font-weight: 500; letter-spacing: -1.6px; line-height: 1.05; color: var(--text); margin-bottom: 18px; }
.page-sub { font-size: 17px; color: var(--text-soft); line-height: 1.55; max-width: 620px; margin: 0 auto; }

.page-content { max-width: 760px; margin: 0 auto 96px; padding: 0 24px; }
.page-content h2 { font-size: 22px; font-weight: 600; letter-spacing: -0.6px; margin: 36px 0 12px; color: var(--text); }
.page-content h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.3px; margin: 24px 0 8px; color: var(--text); }
.page-content p { font-size: 15px; color: var(--text-soft); line-height: 1.65; margin-bottom: 12px; }
.page-content ul, .page-content ol { padding-left: 22px; margin-bottom: 12px; color: var(--text-soft); font-size: 15px; line-height: 1.65; }
.page-content li { margin-bottom: 6px; }
.page-content strong { color: var(--text); font-weight: 600; }
.page-content a { color: var(--accent-blue-deep); text-decoration: underline; text-underline-offset: 3px; }
.page-content a:hover { color: var(--text); }

.page-content .card { background: var(--white); border: 1px solid var(--line-soft); border-radius: 14px; padding: 24px 28px; margin-bottom: 18px; }
.page-content .card h3 { margin-top: 0; }
.page-content .card p { margin-bottom: 6px; }

.page-content .form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.page-content .form-row label { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text); }
.page-content .form-row input, .page-content .form-row textarea, .page-content .form-row select { font-family: inherit; font-size: 15px; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 9px; background: var(--white); color: var(--text); transition: border-color 0.15s; width: 100%; box-sizing: border-box; }
.page-content .form-row input:focus, .page-content .form-row textarea:focus, .page-content .form-row select:focus { outline: none; border-color: var(--accent-blue-deep); }
.page-content .form-row textarea { min-height: 110px; resize: vertical; }
.page-content .form-success { background: rgba(0,182,122,0.08); border: 1.5px solid #00b67a; border-radius: 10px; padding: 14px 16px; margin-bottom: 18px; color: #14120F; }
.page-content .form-success strong { color: #008f60; }
.page-content .form-error { background: rgba(208,64,64,0.06); border: 1.5px solid #D04040; border-radius: 10px; padding: 14px 16px; margin-bottom: 18px; color: #14120F; }
.page-content .form-error strong { color: #B53030; }

@media (max-width: 900px) {
  .page-hero { padding: 40px 18px 28px; }
  .page-title { font-size: 30px; letter-spacing: -1.2px; }
  .page-sub { font-size: 15px; }
  .page-content { padding: 0 18px; margin-bottom: 56px; }
}
@media (max-width: 520px) {
  .page-title { font-size: 26px; }
  .page-content .card { padding: 20px; }
}

:root {
  --bg: #F7F5F1;
  --bg-card: #F0EDE7;
  --bg-warm-1: #ECE6D6;
  --bg-warm-2: #DDD2BB;
  --bg-warm-3: #C8B68E;
  --text: #000000;
  --text-soft: #6A6A6A;
  --text-mute: #9A9A9A;
  --line: #DDD8CE;
  --line-soft: #E8E3D9;
  --accent-blue: #69BFF6;
  --accent-blue-deep: #2B7FE8;
  --accent-pill: #6BA8E8;
  --black: #000000;
  --white: #FFFFFF;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  background: var(--bg);
  /* GLOBAL horizontal-overflow lock (lock 2026-05-28) — was previously only
     inside `@media (max-width: 767px)` which let mid-size devices + iOS edge
     cases swipe-left into empty area. `clip` is preferred (doesn't break
     position: sticky), `hidden` is the fallback for older Safari. */
  overflow-x: hidden;
  overflow-x: clip;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
  /* Prevent iOS overscroll/rubber-band bounce that shows body background as
     cream gap below the sticky cart bar (lock 2026-05-28). `none` stops the
     overscroll-effect entirely; `contain` is the iOS-compatible fallback. */
  overscroll-behavior-y: contain;
  overscroll-behavior-y: none;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: transparent; color: inherit; }

/* ======== ANNOUNCEMENT BAR (scrolling marquee) ======== */
.announcement {
  background: var(--black);
  color: var(--white);
  padding: 11px 0;
  overflow: hidden;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.13px;
  position: relative;
  transition: max-height 0.28s cubic-bezier(0.22, 1, 0.36, 1), padding 0.28s ease, opacity 0.2s ease;
  max-height: 60px;
  will-change: max-height, padding;
}
.announcement.announcement-hidden {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  pointer-events: none;
}
.announcement-rotator {
  overflow: hidden;
  width: 100%;
}
.announcement-track {
  display: flex;
  width: 400%;
  animation: ann-slide 11s infinite linear;
}
.ann-msg {
  flex: 0 0 25%;
  white-space: nowrap;
  text-align: center;
  padding: 0 8px;
}
@keyframes ann-slide {
  0%, 27%   { transform: translateX(0%); }
  33%, 60%  { transform: translateX(-25%); }
  66%, 93%  { transform: translateX(-50%); }
  100%      { transform: translateX(-75%); }
}

/* ======== HEADER (lock 2026-05-24 v6 — natural flow + floating clone) ======== */
/* Behavior:
   - Original header is in natural flow — scrolls away with the page like any
     normal page content. NO swipe animation, NO sticky.
   - A floating CLONE is added to <body> on init. It's position:fixed; top:0;
     translateY(-100%) (hidden above viewport).
   - When user scrolls UP past the original header position, JS adds .is-visible
     to the clone → slides into view at top of viewport.
   - When user scrolls DOWN: clone slides back up (hidden).
   - When user is back at the top zone (original header in view): clone always hidden. */
.header {
  background: var(--white);
  position: relative;
  z-index: 100;
  border-bottom: 1px solid transparent;
}
.header-floating {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--white);
  border-bottom: 1px solid var(--line-soft);
  transform: translateY(-100%);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.header-floating.is-visible { transform: translateY(0); }
.header-inner {
  padding: 14px max(32px, calc((100vw - 1440px) / 2 + 56px));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-self: start;
  flex-wrap: wrap;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

/* ===== Hero-Switcher (preview-tool) ===== */
.hero-switcher {
  display: inline-flex;
  background: rgba(95, 145, 213, 0.08);
  border: 1px solid rgba(95, 145, 213, 0.25);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
  margin-right: 8px;
}
.hsw-btn {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--text-soft);
  transition: all 0.15s ease;
}
.hsw-btn:hover { color: var(--accent-blue-deep); }
.hsw-btn.active {
  background: var(--accent-blue-deep);
  color: var(--white);
}

/* Hero-variant visibility - body[data-hero] controls which is shown */
/* Hero responsive switch: Desktop = V1 (hero-v7), Mobile (≤900px) = V3 (hero-v9) */
[data-hero-variant="v3"] { display: none !important; }
@media (max-width: 900px) {
  [data-hero-variant="v1"] { display: none !important; }
  [data-hero-variant="v3"] { display: block !important; }
}
.brand-name {
  text-align: center;
}
.brand-name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--black);
  line-height: 1;
}
.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.1px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.15s;
}
.nav-link:hover { opacity: 0.6; }
.nav-link .caret {
  width: 10px; height: 10px;
  border-right: 1.2px solid currentColor;
  border-bottom: 1.2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
}
.nav-pill {
  background: var(--accent-pill);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.1px;
  padding: 5px 12px;
  border-radius: 999px;
}
.icon-btn {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.icon-btn:hover { background: var(--bg-card); }
.icon-btn svg { width: 22px; height: 22px; stroke: var(--black); stroke-width: 1.9; fill: none; }

/* ======== BUTTONS (lock 2026-05-24 — squared, matches PDP CTA) ======== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--black);
  color: var(--white);
  border-radius: 10px;
  padding: 18px 36px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: opacity 0.2s, transform 0.15s;
  width: fit-content;
}
.btn:hover { opacity: 0.85; }
.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}

/* ======== HERO ======== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-card);
  min-height: 720px;
}
.hero-text {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-blue-deep);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.hero h1 {
  font-size: 60px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 36px;
  color: var(--black);
}
.hero h1 em { font-style: italic; font-weight: 400; }
.hero .sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.45;
  letter-spacing: -0.18px;
  margin-bottom: 56px;
  max-width: 480px;
}
.hero-product {
  position: relative;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(255,250,240,0.85) 0%, rgba(248,240,224,0.4) 30%, transparent 60%),
    linear-gradient(160deg, #F2EBD9 0%, #E5D9BF 50%, #C9B68E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-badge {
  position: absolute;
  top: 56px;
  right: 56px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--accent-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  font-weight: 500;
  z-index: 5;
  box-shadow: 0 8px 32px rgba(105, 191, 246, 0.3);
}
.hero-badge .b-line1 { font-size: 30px; line-height: 1; letter-spacing: -0.6px; font-weight: 600; }
.hero-badge .b-line2 { font-size: 13px; letter-spacing: 0.8px; text-transform: uppercase; margin-top: 8px; opacity: 0.95; }

/* === HERO 2 - Editorial Refined (1:1 reference) === */
.hero-2 {
  background: var(--bg-card);
  position: relative;
  align-items: center;
  min-height: 720px;
}
.hero-2 .hero-text {
  padding: 80px 56px 80px max(56px, calc((100vw - 1440px) / 2 + 56px));
}
.hero-2 .h2-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent-blue-deep);
  margin-bottom: 28px;
}
.hero-2 .h2-headline {
  font-size: 46px;
  font-weight: 600;
  letter-spacing: -1.5px;
  line-height: 1.08;
  color: var(--black);
  margin-bottom: 28px;
}
.hero-2 .h2-sub {
  font-size: 15px;
  color: var(--black);
  line-height: 1.55;
  letter-spacing: -0.15px;
  margin-bottom: 36px;
  max-width: 520px;
  font-weight: 400;
}
.hero-2 .h2-cta {
  background: var(--black);
  color: var(--white);
  padding: 16px 36px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.6px;
  border-radius: 10px;
  text-transform: uppercase;
}
.hero-2 .h2-product {
  background: var(--bg-card);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 60px 60px 0;
}
.hero-2 .h2-product .pouch-img {
  max-width: 460px;
  width: 90%;
}
.hero-2 .h2-badge {
  position: absolute;
  top: 60px;
  right: 80px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #1E3A8A;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 5;
  padding: 12px;
}
.hero-2 .h2-b-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.6px;
  opacity: 0.95;
}
.hero-2 .h2-badge strong {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.05;
  margin: 6px 0 4px;
  letter-spacing: -0.2px;
  display: block;
}
.hero-2 .h2-b-sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.5px;
  line-height: 1.25;
  opacity: 0.92;
}
@media (max-width: 1100px) {
  .hero-2 .hero-text { padding: 64px 40px; }
  .hero-2 .h2-headline { font-size: 40px; letter-spacing: -1.4px; }
  .hero-2 .h2-product { padding: 40px; }
  .hero-2 .h2-badge { width: 100px; height: 100px; top: 24px; right: 24px; }
  .hero-2 .h2-badge strong { font-size: 14px; }
}

/* === HERO 2 VARIANTS A-E === */
/* 2A: Trust Pills */
.hero-2A .h2a-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}
.hero-2A .h2a-trust-row span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--text);
  background: var(--white);
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

/* 2B: Star Rating */
.hero-2 .h2b-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.hero-2 .h2b-stars {
  color: var(--black);
  letter-spacing: 2px;
  font-size: 14px;
}
.hero-2 .h2b-rating-text {
  font-size: 13px;
  color: var(--text-soft);
  letter-spacing: -0.13px;
}
.hero-2 .h2b-rating-text strong {
  color: var(--black);
  font-weight: 600;
}

/* 2C: Two CTAs */
.hero-2C .h2c-cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-2C .h2c-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -0.14px;
  text-decoration: none;
  border-bottom: 1.5px solid var(--black);
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.hero-2C .h2c-link:hover { gap: 10px; }
.hero-2C .h2c-arrow { color: var(--accent-blue-deep); }

/* 2D: Ingredient Pills */
.hero-2D .h2d-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.hero-2D .h2d-ingredients span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--accent-blue-deep);
  background: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

/* ===== Hero v7 - Triple-Pillar Brand-OS Locked ===== */
.hero-v7 .h7-headline {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -1.6px;
  font-weight: 500;
  margin-bottom: 22px;
}
.hero-v7 .h7-pillar {
  display: block;
  color: var(--black);
  position: relative;
}
.hero-v7 .h7-pillar:nth-child(2) {
  color: var(--accent-blue-deep);
}
.hero-v7 .h7-pillar:nth-child(3) {
  color: var(--black);
}
.hero-v7 .h7-sub {
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.15px;
  color: var(--text);
  max-width: 540px;
  margin-bottom: 28px;
}
.hero-v7 .h7-sub strong {
  color: var(--black);
  font-weight: 600;
}
.hero-v7 .h7-sub em {
  font-style: normal;
  color: var(--accent-blue-deep);
  font-weight: 500;
}
.hero-v7 .h7-format {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-soft);
  letter-spacing: -0.1px;
}
.hero-v7 .h7-ingredients {
  margin-bottom: 28px;
  visibility: hidden;
}
.hero-v7 .h7-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-v7 .h7-cta {
  font-size: 14px;
  letter-spacing: 1.4px;
  padding: 18px 36px;
}
.hero-v7 .h7-risk {
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: -0.1px;
  line-height: 1.4;
}
.hero-v7 .h7-risk strong {
  color: var(--black);
  font-weight: 600;
}
.hero-v7 .h7-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.hero-v7 .h7-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.2px;
}
.hero-v7 .h7-trust-item svg {
  color: var(--accent-blue-deep);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .hero-v7 .h7-headline { font-size: 38px; letter-spacing: -1.2px; }
  .hero-v7 .h7-sub { font-size: 15px; }
  .hero-v7 .h7-cta-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero-v7 .h7-trust { gap: 12px 16px; }
}

/* ===== Hero V7 - 4 Stat-Cards around pack (replaces round badge) ===== */
.hero-v7 .h7-product {
  position: relative;
}
.hero-v7 .h7-stat-card {
  position: absolute;
  background: var(--white);
  border: 1px solid rgba(95,145,213,0.15);
  border-radius: 14px;
  padding: 12px 16px;
  text-align: center;
  box-shadow: 0 8px 24px -10px rgba(11,26,43,0.18);
  min-width: 96px;
  z-index: 2;
  animation: h7-float 5s ease-in-out infinite;
  will-change: transform;
}
.hero-v7 .h7-stat-card-1 { top: 6%;     left: 16%;  animation-delay: 0s;    animation-duration: 5.4s; }
.hero-v7 .h7-stat-card-2 { bottom: 18%; left: 10%;  animation-delay: -1.2s; animation-duration: 4.8s; }
.hero-v7 .h7-stat-card-3 { top: 14%;    right: 16%; animation-delay: -2.4s; animation-duration: 5.6s; }
.hero-v7 .h7-stat-card-4 { bottom: 18%; right: 18%; animation-delay: -3.6s; animation-duration: 5.0s; }
.hero-v7 .h7-stat-num {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.6px;
  color: var(--accent-blue-deep);
  line-height: 1;
}
.hero-v7 .h7-stat-num span { font-size: 15px; opacity: 0.7; }
.hero-v7 .h7-stat-label {
  font-size: 9px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 6px;
  line-height: 1.3;
  font-weight: 500;
}

/* Subtle float animation (used by Hero 1 + Hero 2 stat-cards) */
@keyframes h7-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-v7 .h7-stat-card, .hero-v8 .h8-badge { animation: none; }
}

@media (max-width: 900px) {
  .hero-v7 .h7-stat-card { min-width: 78px; padding: 8px 12px; }
  .hero-v7 .h7-stat-card-1 { top: 6%;    left: 8%;  }
  .hero-v7 .h7-stat-card-2 { bottom: 8%; left: 4%;  }
  .hero-v7 .h7-stat-card-3 { top: 6%;    right: 8%; }
  .hero-v7 .h7-stat-card-4 { bottom: 8%; right: 4%; }
  .hero-v7 .h7-stat-num { font-size: 20px; }
  .hero-v7 .h7-stat-label { font-size: 8px; }
}

/* ============================================================
   HERO V8 - Editorial Centered (Magazine Cover Style)
   ============================================================ */
.hero-v8 {
  display: block;
  background: var(--bg);
  padding: 36px 32px 40px;
  position: relative;
  overflow: hidden;
}
.hero-v8 .h8-bg-decor {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(95,145,213,0.10), transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(235,188,33,0.06), transparent 40%);
  pointer-events: none;
}
.hero-v8 .h8-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}

/* ===== LEFT: Text column ===== */
.hero-v8 .h8-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-v8 .h8-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-soft);
  margin-bottom: 14px;
}
.hero-v8 .h8-stars {
  color: var(--accent-gold);
  letter-spacing: 1px;
  font-size: 13px;
}
.hero-v8 .h8-rating strong { color: var(--black); font-weight: 600; }
.hero-v8 .h8-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent-blue-deep);
  background: var(--white);
  border: 1px solid rgba(95,145,213,0.25);
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero-v8 .h8-headline {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 54px;
  line-height: 1.03;
  letter-spacing: -1.6px;
  font-weight: 500;
  color: var(--black);
  margin: 0 0 20px;
  text-align: left;
}
.hero-v8 .h8-pillar { display: block; }
.hero-v8 .h8-headline .h8-energy { color: var(--accent-blue-deep); }
.hero-v8 .h8-sub {
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.15px;
  color: var(--text);
  max-width: 580px;
  margin: 0 0 10px;
}
.hero-v8 .h8-sub strong { color: var(--black); font-weight: 600; }
.hero-v8 .h8-sub em { font-style: normal; color: var(--accent-blue-deep); font-weight: 500; }
.hero-v8 .h8-format {
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: 0.2px;
  margin-bottom: 20px;
}
.hero-v8 .h8-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.hero-v8 .h8-ingredients span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--accent-blue-deep);
  background: var(--white);
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.hero-v8 .h8-cta {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1.4px;
  padding: 15px 38px;
  text-transform: uppercase;
}

/* ===== RIGHT: Visual column ===== */
.hero-v8 .h8-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  width: 100%;
}
.hero-v8 .h8-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(95,145,213,0.18) 0%, rgba(95,145,213,0.04) 40%, transparent 70%);
  pointer-events: none;
}
.hero-v8 .h8-pouch {
  position: relative;
  z-index: 1;
  max-width: 320px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 38px rgba(11,26,43,0.14));
}
.hero-v8 .h8-badge {
  position: absolute;
  background: var(--white);
  border: 1px solid rgba(95,145,213,0.15);
  border-radius: 14px;
  padding: 12px 16px;
  text-align: center;
  box-shadow: 0 8px 24px -10px rgba(11,26,43,0.18);
  min-width: 96px;
  z-index: 2;
  animation: h7-float 5s ease-in-out infinite;
  will-change: transform;
}
.hero-v8 .h8-badge-1 { top: 6%;     left: 14%;  animation-delay: 0s;    animation-duration: 5.4s; }
.hero-v8 .h8-badge-2 { bottom: 18%; left: 8%;   animation-delay: -1.2s; animation-duration: 4.8s; }
.hero-v8 .h8-badge-3 { top: 14%;    right: 14%; animation-delay: -2.4s; animation-duration: 5.6s; }
.hero-v8 .h8-badge-4 { bottom: 18%; right: 16%; animation-delay: -3.6s; animation-duration: 5.0s; }
.hero-v8 .h8-badge-num {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.6px;
  color: var(--accent-blue-deep);
  line-height: 1;
}
.hero-v8 .h8-badge-num span { font-size: 15px; opacity: 0.7; }
.hero-v8 .h8-badge-label {
  font-size: 9px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 6px;
  line-height: 1.3;
  font-weight: 500;
}

@media (max-width: 980px) {
  .hero-v8 { padding: 28px 20px 36px; }
  .hero-v8 .h8-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-v8 .h8-text { align-items: center; text-align: center; }
  .hero-v8 .h8-headline { font-size: 38px; letter-spacing: -1.2px; text-align: center; }
  .hero-v8 .h8-ingredients { justify-content: center; }
  .hero-v8 .h8-visual { min-height: 360px; }
  .hero-v8 .h8-pouch { max-width: 240px; }
  .hero-v8 .h8-badge { min-width: 78px; padding: 8px 12px; }
  .hero-v8 .h8-badge-num { font-size: 20px; }
  .hero-v8 .h8-badge-label { font-size: 8px; }
}

/* ============================================================
   HERO V9 - Premium Editorial · Asymmetric Bold (Homepage)
   Function-Health / Hims-tier Premium-Feel
   ============================================================ */
.hero-v9 {
  display: block;
  background: var(--bg);
  padding: 64px 32px 72px;
  position: relative;
  overflow: hidden;
}
.hero-v9 .h9-decor {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #F7F5F1 50%, #EAF1F8 50%);
  pointer-events: none;
}
.hero-v9 .h9-decor::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(95,145,213,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-v9 .h9-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ===== LEFT: Editorial Text ===== */
.hero-v9 .h9-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-v9 .h9-meta-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-soft);
  margin-bottom: 18px;
}
.hero-v9 .h9-meta-stars {
  color: var(--accent-gold);
  letter-spacing: 1.2px;
  font-size: 13px;
}
.hero-v9 .h9-meta-sep { opacity: 0.4; }
.hero-v9 .h9-meta-text strong { color: var(--black); font-weight: 600; }
.hero-v9 .h9-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-blue-deep);
  margin-bottom: 20px;
}
.hero-v9 .h9-headline {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -1.6px;
  font-weight: 500;
  color: var(--black);
  margin: 0 0 22px;
  text-align: left;
}
.hero-v9 .h9-headline span { display: block; }
.hero-v9 .h9-headline .h9-energy {
  color: var(--accent-blue-deep);
}
.hero-v9 .h9-sub {
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.15px;
  color: var(--text);
  max-width: 440px;
  margin: 0 0 36px;
}
.hero-v9 .h9-sub strong { color: var(--black); font-weight: 600; }
.hero-v9 .h9-sub em {
  font-style: normal;
  color: var(--accent-blue-deep);
  font-weight: 500;
}
.hero-v9 .h9-format {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-soft);
  letter-spacing: -0.1px;
}
.hero-v9 .h9-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  visibility: hidden;
}
.hero-v9 .h9-pouch-mobile { display: none; }
.hero-v9 .h9-format-mobile { display: none; }
.hero-v9 .h9-ingredients span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--accent-blue-deep);
  background: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.hero-v9 .h9-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-v9 .h9-cta-primary {
  display: inline-block;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 16px 36px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.15s;
}
.hero-v9 .h9-cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px -10px rgba(11,26,43,0.35);
}
.hero-v9 .h9-cta-secondary {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--black);
  text-decoration: none;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1.5px solid var(--black);
  padding-bottom: 4px;
}
.hero-v9 .h9-cta-secondary:hover { color: var(--accent-blue-deep); border-color: var(--accent-blue-deep); }
.hero-v9 .h9-arrow { font-size: 14px; }

.hero-v9 .h9-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(11,26,43,0.08);
  width: 100%;
  max-width: 560px;
}
.hero-v9 .h9-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.2px;
}
.hero-v9 .h9-trust-item svg {
  color: var(--accent-blue-deep);
  flex-shrink: 0;
}

/* ===== RIGHT: Visual + Floating Quote Card ===== */
.hero-v9 .h9-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 540px;
  width: 100%;
  transform: translateY(-36px);
}
.hero-v9 .h9-product-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(96px);
}
.hero-v9 .h9-spotlight {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95,145,213,0.18) 0%, rgba(95,145,213,0.06) 40%, transparent 70%);
  pointer-events: none;
}
.hero-v9 .h9-pouch {
  position: relative;
  z-index: 1;
  max-width: 380px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(11,26,43,0.18));
}

/* Floating Quote Card (bottom-left of visual · moves with pack via translateX) */
.hero-v9 .h9-quote-card {
  position: absolute;
  bottom: -8%;
  left: 2%;
  z-index: 3;
  max-width: 240px;
  background: #ffffff;
  border: 1px solid rgba(95,145,213,0.15);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 18px 36px -14px rgba(11,26,43,0.18);
  transform: translateX(96px);
}
.hero-v9 .h9-quote-text { font-size: 11px; }
.hero-v9 .h9-quote-name { font-size: 10px; }
.hero-v9 .h9-quote-role { font-size: 8px; }
.hero-v9 .h9-quote-mark {
  font-family: Georgia, serif;
  font-size: 36px;
  line-height: 0.6;
  color: rgba(95,145,213,0.30);
  font-weight: 700;
  position: absolute;
  top: 12px;
  left: 14px;
}
.hero-v9 .h9-quote-text {
  font-size: 11px;
  line-height: 1.45;
  color: var(--text);
  margin: 12px 0 10px;
  padding-left: 4px;
}
.hero-v9 .h9-quote-text strong { color: var(--black); font-weight: 600; }
.hero-v9 .h9-quote-text em {
  font-style: italic;
  color: var(--accent-blue-deep);
}
.hero-v9 .h9-quote-attr {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(11,26,43,0.06);
}
.hero-v9 .h9-quote-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-image: url(//myotide.co/cdn/shop/t/2/assets/doctor-1.png?v=104225388689150102811779462999);
  background-size: cover;
  background-position: center 18%;
  box-shadow: 0 0 0 2px rgba(95,145,213,0.20);
}
.hero-v9 .h9-quote-name {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
}
.hero-v9 .h9-quote-role {
  font-size: 9px;
  color: var(--accent-blue-deep);
  letter-spacing: 0.3px;
  line-height: 1.2;
  margin-top: 2px;
}

/* Floating Stat Card (top-right of visual · clean white style like Hero 1) */
.hero-v9 .h9-stat-card {
  position: absolute;
  top: 6%;
  right: 4%;
  z-index: 3;
  background: var(--white);
  border: 1px solid rgba(95,145,213,0.15);
  color: var(--text);
  padding: 14px 18px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 12px 28px -10px rgba(11,26,43,0.16);
  min-width: 96px;
}
.hero-v9 .h9-stat-num {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.6px;
  line-height: 1;
  color: var(--accent-blue-deep);
}
.hero-v9 .h9-stat-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-top: 6px;
  line-height: 1.3;
  color: var(--text-soft);
}

@media (max-width: 980px) {
  .hero-v9 { padding: 28px 20px 40px; }
  .hero-v9 .h9-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-v9 .h9-text { align-items: center; text-align: center; }
  .hero-v9 .h9-headline { font-size: 40px; letter-spacing: -1.2px; text-align: center; }
  .hero-v9 .h9-sub { text-align: center; }
  .hero-v9 .h9-endorsement-list { justify-content: center; }
  .hero-v9 .h9-visual { min-height: 420px; }
  .hero-v9 .h9-pouch { max-width: 260px; }
  .hero-v9 .h9-spotlight { width: 320px; height: 320px; }
  .hero-v9 .h9-quote-card { left: 0; max-width: 280px; bottom: 0; }
  .hero-v9 .h9-stat-card { right: 0; top: 0; }
}
/* 2E: Pricing Hint */
.hero-2E .h2e-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero-2E .h2e-price-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-2E .h2e-price-meta strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.2px;
}
.hero-2E .h2e-price-meta span {
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: -0.12px;
}
.hero-2E .h2e-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: -0.12px;
}
.hero-2E .h2e-guarantee svg { color: var(--accent-blue-deep); flex-shrink: 0; }

/* === HERO VARIANTS - 5 ALTERNATIVES === */
.hero { position: relative; }
.hv-eyebrow-tag {
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent-blue-deep);
  background: var(--white);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  z-index: 5;
}

/* Variante 1: Editorial Refined */
.hv-V1 .hero-text { padding: 96px 80px; }
.hv-V1 h1 {
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -1.6px;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hv-V1 h1 em { font-style: italic; font-weight: 400; color: var(--accent-blue-deep); }
.hv-V1 .sub { font-size: 16px; line-height: 1.55; max-width: 480px; }
.hv1-badge {
  position: absolute;
  top: 56px;
  right: 56px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #1E3A8A;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 5;
  padding: 18px;
}
.hv1-badge .b-tag { font-size: 11px; letter-spacing: 1.6px; opacity: 0.9; }
.hv1-badge strong { font-size: 22px; font-weight: 600; line-height: 1; margin: 6px 0; letter-spacing: -0.3px; }
.hv1-badge .b-sub { font-size: 9px; letter-spacing: 1.4px; opacity: 0.85; line-height: 1.2; }

/* Variante 2: Asymmetric - Pouch Left */
.hv-V2 { grid-template-columns: 1fr 1.1fr; }
.hv-V2 .hero-product { order: 1; padding: 60px 40px; position: relative; }
.hv-V2 .hero-text { order: 2; padding: 96px 80px 96px 40px; }
.hv-V2 h1 {
  font-size: 60px;
  font-weight: 500;
  letter-spacing: -1.8px;
  line-height: 1.02;
  margin-bottom: 24px;
}
.hv-V2 h1 em { font-style: italic; font-weight: 400; color: var(--accent-blue-deep); }
.hv-V2 .sub { font-size: 16px; line-height: 1.55; max-width: 460px; margin-bottom: 36px; }
.hv-V2 .pouch-img { max-width: 380px; }
.hv2-floating-stat {
  position: absolute;
  top: 80px;
  left: 40px;
  background: var(--white);
  padding: 18px 22px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(60,40,20,0.12);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 5;
}
.hv2-stat-num {
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -1.6px;
  color: var(--accent-blue-deep);
  line-height: 1;
}
.hv2-stat-label {
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
  line-height: 1.25;
}
.hv2-cta-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hv2-price { font-size: 13px; color: var(--text-soft); font-weight: 500; letter-spacing: -0.13px; }

/* Variante 3: Centered Minimal */
.hv-V3 {
  display: block;
  background: var(--bg-card);
  padding: 80px 24px;
  text-align: center;
}
.hv3-stack {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hv-V3 .hero-eyebrow { margin-bottom: 28px; }
.hv-V3 h1 {
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -1.8px;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hv-V3 .sub { font-size: 17px; max-width: 540px; margin-bottom: 36px; line-height: 1.55; color: var(--text); }
.hv3-pouch {
  max-width: 280px;
  margin-bottom: 32px;
  filter: drop-shadow(0 30px 40px rgba(60,40,20,0.18));
}
.hv-V3 .btn { margin-bottom: 24px; }
.hv3-trust { font-size: 13px; color: var(--text-soft); letter-spacing: -0.13px; }

/* Variante 4: Magazine - Massive Title */
.hv-V4 {
  display: block;
  background: var(--bg-card);
  padding: 80px 56px 64px;
}
.hv4-mega {
  font-size: 88px;
  font-weight: 500;
  letter-spacing: -3.2px;
  line-height: 0.96;
  margin-bottom: 56px;
  color: var(--black);
  max-width: 1200px;
}
.hv4-mega em { font-style: italic; font-weight: 400; color: var(--accent-blue-deep); }
.hv4-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
}
.hv4-product {
  background: linear-gradient(160deg, #F2EBD9 0%, #DDD2BB 100%);
  border-radius: 24px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hv4-meta { padding-left: 8px; }
.hv-V4 .sub { font-size: 17px; line-height: 1.6; max-width: 480px; margin-bottom: 28px; }
.hv-V4 .hero-eyebrow { margin-bottom: 18px; }
.hv4-credit {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: -0.12px;
  font-style: italic;
}

/* Variante 5: Stat-Forward */
.hv-V5 {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  background: var(--bg-card);
  align-items: center;
  padding: 56px 40px;
  gap: 40px;
}
.hv5-stat {
  text-align: right;
  padding-right: 16px;
  border-right: 2px solid var(--line);
}
.hv5-num {
  font-size: 96px;
  font-weight: 600;
  letter-spacing: -4px;
  color: var(--accent-blue-deep);
  line-height: 0.9;
  margin-bottom: 14px;
}
.hv5-stat-label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}
.hv5-content { padding: 0 16px; }
.hv-V5 h1 {
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -1.4px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hv-V5 h1 em { font-style: italic; font-weight: 400; color: var(--accent-blue-deep); }
.hv-V5 .sub { font-size: 15px; line-height: 1.55; margin-bottom: 26px; max-width: 440px; }
.hv5-product { display: flex; align-items: center; justify-content: center; }
.hv5-product .pouch-img { max-width: 260px; }

@media (max-width: 880px) {
  .hv-V1 .hero-text, .hv-V2 .hero-text, .hv-V4 { padding: 56px 24px; }
  .hv-V1 h1, .hv-V2 h1, .hv-V3 h1 { font-size: 36px; letter-spacing: -1.2px; }
  .hv4-mega { font-size: 44px; letter-spacing: -1.6px; }
  .hv4-row, .hv-V5 { grid-template-columns: 1fr; }
  .hv-V5 { padding: 48px 24px; }
  .hv5-stat { text-align: left; border-right: none; border-bottom: 2px solid var(--line); padding-bottom: 24px; padding-right: 0; }
  .hv5-num { font-size: 64px; }
  .hv1-badge { width: 100px; height: 100px; top: 24px; right: 24px; padding: 12px; }
  .hv1-badge strong { font-size: 16px; }
  .hv2-floating-stat { left: 16px; top: 16px; padding: 10px 14px; }
  .hv2-stat-num { font-size: 26px; }
}

/* MYOTIDE Pouch - image variant (real product photo) */
.pouch-img {
  max-width: 460px;
  width: 80%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(60,40,20,0.18)) drop-shadow(0 10px 20px rgba(60,40,20,0.10));
  z-index: 2;
  position: relative;
}

/* MYOTIDE Pouch - CSS mockup (kept for backup) */
.pouch {
  position: relative;
  width: 340px;
  height: 460px;
  background: var(--white);
  border-radius: 18px 18px 6px 6px;
  padding: 44px 30px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 40px 90px rgba(60,40,20,0.22), 0 12px 24px rgba(60,40,20,0.10);
  z-index: 2;
}
.pouch-top {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 16px;
  background: linear-gradient(180deg, #DDD8CE, #C9C4BA);
  border-radius: 6px 6px 0 0;
}
.pouch-logo-mark {
  width: 42px;
  height: 42px;
  background: #1E3A8A;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.pouch-brand {
  font-size: 22px;
  font-weight: 700;
  color: #1E3A8A;
  letter-spacing: 3.5px;
  margin-bottom: 4px;
}
.pouch-tagline {
  font-size: 9px;
  font-weight: 600;
  color: #444;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.pouch-banner {
  background: #2B7FE8;
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.4px;
  padding: 10px 0;
  text-align: center;
  margin: 0 -30px 22px;
}
.pouch-ingredients {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--text);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 24px;
}
.pouch-ingredients .sep { color: #BBB; margin: 0 5px; font-weight: 400; }
.pouch-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: auto;
  margin-bottom: 14px;
}
.pouch-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.pouch-icon-circle {
  width: 28px; height: 28px;
  border: 1.5px solid #2B7FE8;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: #2B7FE8;
}
.pouch-icon-label { font-size: 8px; font-weight: 700; color: #444; letter-spacing: 0.4px; line-height: 1.2; }
.pouch-bottom {
  font-size: 9px;
  font-weight: 700;
  color: #555;
  letter-spacing: 1.2px;
  text-align: center;
  border-top: 1px solid #EEE;
  padding-top: 10px;
}
/* Star-Gummies (blau, 5-zackig) */
.star-gummy {
  position: absolute;
  background: radial-gradient(circle at 30% 30%, #5C9CF0, #1E3A8A);
  z-index: 3;
  filter: drop-shadow(0 12px 20px rgba(30, 58, 138, 0.45));
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.star-gummy.s1 { width: 70px; height: 70px; bottom: 60px; right: 60px; transform: rotate(20deg); }
.star-gummy.s2 { width: 56px; height: 56px; bottom: 30px; right: 130px; transform: rotate(-15deg); }

/* ======== TRUST BAR ======== */
.trust-bar {
  background: var(--bg-card);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 32px auto 0;
  border-radius: 14px;
}
.trust-avatars { display: flex; }
.trust-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--bg-card);
  margin-left: -10px;
  background-size: cover;
  background-position: center;
}
.trust-avatar:first-child { margin-left: 0; }
.trust-avatar.a1 {
  background-color: #DDD2BB;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><rect fill='%23DDD2BB' width='100' height='100'/><circle cx='50' cy='38' r='15' fill='%23E8C8A8'/><path d='M 50 58 Q 22 58 16 100 L 84 100 Q 78 58 50 58 Z' fill='%231E3A8A'/><circle cx='44' cy='37' r='1.4' fill='%23333'/><circle cx='56' cy='37' r='1.4' fill='%23333'/><path d='M 35 28 Q 50 16 65 28 Q 65 32 50 32 Q 35 32 35 28 Z' fill='%234A2E1A'/></svg>");
}
.trust-avatar.a2 {
  background-color: #C8B68E;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><rect fill='%23C8B68E' width='100' height='100'/><circle cx='50' cy='38' r='15' fill='%23C49E7C'/><path d='M 50 58 Q 22 58 16 100 L 84 100 Q 78 58 50 58 Z' fill='%23F8FAFC'/><circle cx='44' cy='37' r='1.4' fill='%23222'/><circle cx='56' cy='37' r='1.4' fill='%23222'/><path d='M 35 27 Q 50 18 65 27 Q 65 33 50 33 Q 35 33 35 27 Z' fill='%23222'/><rect x='38' y='35' width='10' height='6' rx='1.5' fill='none' stroke='%23222' stroke-width='1'/><rect x='52' y='35' width='10' height='6' rx='1.5' fill='none' stroke='%23222' stroke-width='1'/><line x1='48' y1='37' x2='52' y2='37' stroke='%23222' stroke-width='1'/></svg>");
}
.trust-avatar.a3 {
  background-color: #ECE6D6;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><rect fill='%23ECE6D6' width='100' height='100'/><circle cx='50' cy='38' r='15' fill='%23F0D2B0'/><path d='M 50 58 Q 22 58 16 100 L 84 100 Q 78 58 50 58 Z' fill='%23475569'/><circle cx='44' cy='37' r='1.4' fill='%23333'/><circle cx='56' cy='37' r='1.4' fill='%23333'/><path d='M 32 30 Q 50 14 68 30 Q 68 38 50 36 Q 32 38 32 30 Z' fill='%23B8956F'/></svg>");
}
.trust-avatar.a4 {
  background-color: #B8A082;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><rect fill='%23B8A082' width='100' height='100'/><circle cx='50' cy='38' r='15' fill='%23A57E5C'/><path d='M 50 58 Q 22 58 16 100 L 84 100 Q 78 58 50 58 Z' fill='%23F8FAFC'/><circle cx='44' cy='37' r='1.4' fill='%23000'/><circle cx='56' cy='37' r='1.4' fill='%23000'/><path d='M 35 28 Q 50 18 65 28 Q 65 32 50 32 Q 35 32 35 28 Z' fill='%23222'/><path d='M 36 50 Q 50 56 64 50 Q 64 54 50 54 Q 36 54 36 50 Z' fill='%23222'/></svg>");
}
.trust-avatar {
  background-size: cover;
  background-position: center;
}
.trust-statement {
  font-size: 17px;
  color: var(--black);
  letter-spacing: -0.17px;
  max-width: 580px;
  line-height: 1.45;
}
.trust-statement em { font-style: italic; }

/* ======== REAL STORIES STRIP (marquee) ======== */
.real-stories {
  background: var(--bg);
  padding: 56px 0 64px;
  overflow: hidden;
}
.rs-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 29px;
  padding: 0 24px;
}
.rs-stars {
  color: #1E3A8A;
  letter-spacing: 6px;
  font-size: 18px;
  margin-bottom: 18px;
}
.rs-h2 {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -1.1px;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 12px;
}
.rs-h2 em {
  font-style: normal;
  color: var(--accent-blue-deep);
}
.rs-sub {
  font-size: 15px;
  color: var(--text-soft);
  letter-spacing: -0.15px;
}
.rs-marquee {
  overflow: hidden;
  position: relative;
  margin-top: 25px;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 12px, black calc(100% - 12px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 12px, black calc(100% - 12px), transparent 100%);
}
.rs-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 50s linear infinite;
  will-change: transform;
  transform: translateZ(0);
}
.rs-set {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  padding-right: 14px;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.rs-photo {
  width: 190px;
  height: 190px;
  border-radius: 12px;
  flex-shrink: 0;
  background-size: 108% auto;
  background-position: center 28%;
  background-repeat: no-repeat;
  background-color: var(--bg-card);
  box-shadow: none;
  border: none;
  outline: none;
}
.rs-photo.p1  { background-image: url(//myotide.co/cdn/shop/t/2/assets/photo-1.webp?v=157366065849037707891779619354); }
.rs-photo.p2  { background-image: url(//myotide.co/cdn/shop/t/2/assets/photo-2.webp?v=58183100178085439141779619352); }
.rs-photo.p3  { background-image: url(//myotide.co/cdn/shop/t/2/assets/photo-3.webp?v=49262088767638502421779619585); }
.rs-photo.p4  { background-image: url(//myotide.co/cdn/shop/t/2/assets/photo-4.webp?v=119337449775106097981779619352); }
.rs-photo.p5  { background-image: url(//myotide.co/cdn/shop/t/2/assets/photo-5.webp?v=78003257621744237971779619353); }
.rs-photo.p6  { background-image: url(//myotide.co/cdn/shop/t/2/assets/photo-6.webp?v=79831770466064688841779620154); }
.rs-photo.p7  { background-image: url(//myotide.co/cdn/shop/t/2/assets/photo-7.webp?v=145535669093631609431779618628); }
.rs-photo.p8  { background-image: url(//myotide.co/cdn/shop/t/2/assets/photo-8.webp?v=6090766307723501581779619353); }
.rs-photo.p9  { background-image: url(//myotide.co/cdn/shop/t/2/assets/photo-9.webp?v=164094532378046362181779619353); }
.rs-photo.p10 { background-image: url(//myotide.co/cdn/shop/t/2/assets/photo-10.webp?v=30600444193032037711779619585); }
.rs-photo.p11 { background-image: url(//myotide.co/cdn/shop/t/2/assets/photo-11.webp?v=50808497936565811701779619353); }
.rs-photo.p12 { background-image: url(//myotide.co/cdn/shop/t/2/assets/photo-12.webp?v=120835013282945344291779619354); }

/* ======== FEATURED REVIEW CARDS (swipe carousel) ======== */
.featured-reviews {
  background: var(--bg);
  padding: 16px 0 72px;
  overflow: hidden;
}
.fr-header {
  display: none;
}
.fr-eyebrow {
  color: #1E3A8A;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
.fr-h2 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.8px;
  line-height: 1.15;
  color: var(--black);
}
.fr-h2 em { font-style: italic; font-weight: 400; color: var(--accent-blue-deep); }
.fr-track-wrap {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}
.fr-track-clip {
  overflow: hidden;
}
.fr-track {
  display: flex;
  gap: 20px;
  padding: 8px 4px 28px;
  will-change: transform;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}
.fr-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 280px;
  background: var(--white);
  border-radius: 14px;
  padding: 20px 22px 18px;
  box-shadow: 0 8px 28px rgba(20,18,15,0.025);
  display: flex;
  flex-direction: column;
  gap: 13px;
}
/* ---- Trustpilot-style green rating pill ---- */
.fr-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 11px;
  border: 1.4px solid #00b67a;
  background: #ffffff;
  border-radius: 999px;
  align-self: flex-start;
}
.fr-rating-num {
  color: #00b67a;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2px;
}
.fr-rating-stars {
  color: #F0A500;
  letter-spacing: 1.5px;
  font-size: 12px;
}
.fr-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.4px;
  color: var(--black);
}
.fr-title .q {
  color: #b6b1a4;
  font-weight: 400;
  display: inline-block;
}
.fr-quote {
  font-size: 13.5px;
  line-height: 1.55;
  color: #54514a;
  flex-grow: 1;
}
.fr-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 2px;
}
.fr-person {
  display: flex;
  align-items: center;
  gap: 9px;
}
.fr-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.fr-name {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--black);
  text-transform: uppercase;
}
.fr-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: #54514a;
  white-space: nowrap;
  font-weight: 500;
}
.fr-verified svg { color: #00b67a; flex-shrink: 0; }
.fr-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.fr-tag {
  font-size: 11px;
  padding: 4px 10px;
  border: 1.4px solid #e5e1d4;
  border-radius: 999px;
  color: #54514a;
  white-space: nowrap;
}
.fr-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 4px;
}
.fr-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #d9d4c4;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .2s, color .2s, transform .15s;
  color: #1e3a8a;
  padding: 0;
}
.fr-arrow:hover { border-color: #1e3a8a; }
.fr-arrow:active { transform: scale(0.94); }
.fr-arrow:disabled { opacity: 0.35; cursor: default; }
.fr-progress {
  width: 84px;
  height: 2px;
  background: #e5e1d4;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.fr-progress-fill {
  position: absolute;
  inset: 0;
  width: 20%;
  background: #1e3a8a;
  border-radius: 2px;
  transition: width .3s ease, transform .3s ease;
  transform: translateX(0);
}

/* ======== SECTION SHARED ======== */
.section { padding: 96px 32px; }
.section.faq { padding-top: 112px; }
.section-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent-blue-deep);
  margin-bottom: 18px;
}
.section-h2 {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1.8px;
  color: var(--black);
}
.section-h2 em { font-style: italic; font-weight: 400; }
.section-sub {
  font-size: 17px;
  color: var(--black);
  line-height: 1.5;
  letter-spacing: -0.17px;
  max-width: 520px;
}

/* ======== PROBLEM (single, centered) ======== */
.ps-single { grid-template-columns: 1fr !important; max-width: 760px !important; margin: 0 auto; }
.ps-card-center { text-align: center; align-items: center; }
.ps-card-center p { margin-left: auto; margin-right: auto; }
.ps-card-center .stat-label { margin-bottom: 0; }

/* ======== PROBLEM / SOLUTION (legacy 2-col) ======== */
.ps-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ps-card {
  background: var(--bg-card);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  border-radius: 24px;
}
.ps-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent-blue-deep);
  margin-bottom: 22px;
}
.ps-card h3 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1.1px;
  margin-bottom: 24px;
  color: var(--black);
}
.ps-card p {
  font-size: 17px;
  line-height: 1.5;
  color: var(--black);
  letter-spacing: -0.17px;
  margin-bottom: 14px;
  max-width: 480px;
}
.ps-card .stat {
  font-size: 72px;
  font-weight: 500;
  letter-spacing: -2.4px;
  color: var(--black);
  line-height: 1;
  margin: 36px 0 14px;
}
.ps-card .stat-label {
  font-size: 14px;
  color: var(--text-soft);
  letter-spacing: -0.14px;
  margin-bottom: 36px;
}
.ps-card .btn { margin-top: auto; }

/* ======== FEATURED STACK ======== */
.fs-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.fs-image-wrap {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(255,250,240,0.85) 0%, rgba(248,240,224,0.4) 30%, transparent 60%),
    linear-gradient(160deg, #F2EBD9 0%, #E5D9BF 50%, #C9B68E 100%);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.fs-details { padding: 24px 0; }
.fs-tag {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent-blue-deep);
  margin-bottom: 18px;
}
.fs-details h2 {
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -1.7px;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--black);
}
.fs-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 14px;
}
.stars { color: var(--black); letter-spacing: 2px; font-size: 16px; }
.fs-desc {
  font-size: 17px;
  line-height: 1.5;
  color: var(--black);
  letter-spacing: -0.17px;
  margin-bottom: 32px;
  max-width: 520px;
}
.fs-bullets {
  list-style: none;
  margin-bottom: 40px;
}
.fs-bullets li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--black);
  letter-spacing: -0.15px;
}
.fs-bullets .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.price-card {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: transparent;
  transition: all 0.2s;
  position: relative;
}
.price-card:hover { border-color: var(--text-soft); }
.price-card.selected { border-color: var(--black); border-width: 2px; background: var(--bg-card); }
.price-card-title { font-size: 16px; font-weight: 500; color: var(--black); }
.price-card-sub { font-size: 13px; color: var(--text-soft); margin-top: 3px; }
.price-card-amount { font-size: 22px; font-weight: 500; color: var(--black); letter-spacing: -0.6px; text-align: right; }
.price-card-amount span { font-size: 13px; color: var(--text-soft); font-weight: 400; }
.price-card-discount { font-size: 11px; color: var(--accent-blue-deep); font-weight: 500; letter-spacing: 0.6px; text-transform: uppercase; text-align: right; margin-top: 3px; }
.badge-popular {
  position: absolute;
  top: -11px;
  right: 18px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.fs-trust-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 20px;
}

/* ======== DONUT-SPLIT (Where Your Weight Goes) ======== */
.split-chart {
  background: var(--bg);
  padding: 80px 32px 88px;
}
.split-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.split-eyebrow {
  color: #1E3A8A;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}
.split-h2 {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 14px;
}
.split-h2 em { font-style: italic; font-weight: 400; color: var(--accent-blue-deep); }
.split-sub {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.55;
  max-width: 600px;
  margin: 0 auto;
}
.split-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 920px;
  margin: 0 auto 28px;
  align-items: stretch;
}
.split-card {
  background: var(--white);
  border-radius: 18px;
  padding: 36px 32px 32px;
  box-shadow: 0 8px 28px rgba(20,18,15,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.split-card.is-good { background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 60%); border: 1.5px solid #d6e6ff; }
.split-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6a665a;
  margin-bottom: 18px;
}
.split-card.is-good .split-card-label { color: #1e3a8a; }
.split-donut-wrap {
  width: 200px;
  height: 200px;
  position: relative;
  margin-bottom: 22px;
}
.split-donut-wrap svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.split-donut-num {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.split-donut-pct {
  font-size: 46px;
  font-weight: 600;
  letter-spacing: -1.5px;
  color: #1e3a8a;
  line-height: 1;
}
.split-donut-pct.is-bad { color: #B43A3A; }
.split-donut-cap {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #54514a;
  margin-top: 6px;
}
.split-legend {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 12.5px;
  color: #54514a;
}
.split-legend-item { display: inline-flex; align-items: center; gap: 7px; }
.split-legend-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.split-card-h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.4px;
  color: var(--black);
  margin-bottom: 6px;
}
.split-card-h3 strong { font-weight: 800; }
.split-card-h3.is-good strong { color: #1e3a8a; }
.split-card-h3.is-bad strong { color: #B43A3A; }
.split-card-sub {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
  max-width: 280px;
}
.split-foot {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  font-size: 12.5px;
  color: var(--text-soft);
  line-height: 1.55;
}
.split-foot strong { color: var(--black); }

/* ======== CHART SECTION ======== */
section.chart-section { padding-top: 80px; padding-bottom: 80px; }
.chart-header {
  max-width: 1440px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
}
.chart-card {
  max-width: 1440px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  padding: 40px 32px 32px;
  box-shadow: 0 1px 3px rgba(60,40,20,0.04), 0 8px 24px rgba(60,40,20,0.05);
  border: 1px solid var(--line-soft);
}
.chart-svg { width: 100%; height: auto; display: block; }
.chart-tt-mobile { display: none; }
.chart-legend {
  display: grid;
  grid-template-columns: 40px auto auto 1fr;
  align-items: center;
  column-gap: 18px;
  row-gap: 0;
  margin-top: 24px;
  padding-top: 24px;
  font-size: 14px;
  color: var(--text);
  letter-spacing: -0.14px;
  justify-content: center;
}
.legend-item { display: contents; }
.legend-brand { display: block; white-space: nowrap; text-align: left; }
.legend-arrow { color: var(--text-soft); font-weight: 400; font-size: 14px; line-height: 1; }
.legend-desc { white-space: nowrap; }
.legend-line { width: 36px; height: 2px; border-radius: 1px; }
.legend-line.solid { background: #1E3A8A; }
.legend-line.dashed {
  background: repeating-linear-gradient(to right, #E04545 0 4px, transparent 4px 8px);
  height: 2px;
  border: none;
}

/* ======== EXPERTS V2 (full-width, dark navy, single doctor) ======== */
.experts-v2 {
  padding: 80px 24px;
}
.exv2-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent-blue-deep);
  margin: 0 auto 28px;
  text-align: center;
  max-width: 1200px;
}

/* === Variant 1: Cream Integration === */
.exp-V1 { background: var(--bg); color: var(--black); }
.exp-V1 .exv2-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
}
.exp-V1 .exv2-title { color: var(--black); }
.exp-V1 .exv2-quote { color: var(--text); }
.exp-V1 .exv2-attr strong { color: var(--black); text-decoration-color: var(--text-soft); }
.exp-V1 .exv2-attr span { color: var(--text-soft); }
.exp-V1 .exv2-bottom { color: var(--text-soft); }
.exp-V1 .exv2-badge { color: var(--black); border-color: var(--text-soft); }
.exp-V1 .exv2-avatar { border-color: var(--bg); }
.exp-V1 .exv2-stat { color: var(--text-soft); }
.exp-V1 .exv2-photo img { filter: none; }

/* === Variant 2: Editorial Black === */
.exp-V2 { background: #0F1115; color: var(--white); }
.exp-V2 .exv2-eyebrow { color: #69BFF6; }
.exp-V2 .exv2-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}
.exp-V2 .exv2-title { color: var(--white); }
.exp-V2 .exv2-quote { color: rgba(255,255,255,0.92); }
.exp-V2 .exv2-attr strong { color: var(--white); }
.exp-V2 .exv2-attr span { color: rgba(255,255,255,0.65); }
.exp-V2 .exv2-bottom { color: rgba(255,255,255,0.85); }
.exp-V2 .exv2-badge { color: var(--white); border-color: rgba(255,255,255,0.30); }
.exp-V2 .exv2-avatar { border-color: #0F1115; }
.exp-V2 .exv2-stat { color: rgba(255,255,255,0.85); }
.exp-V2 .exv2-photo img { filter: grayscale(0.3); }

/* === Variant 3: Soft Pastel Blue === */
.exp-V3 { background: linear-gradient(160deg, #EFF6FF 0%, #DBEAFE 100%); color: var(--black); }
.exp-V3 .exv2-card {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
}
.exp-V3 .exv2-title { color: var(--black); }
.exp-V3 .exv2-quote { color: var(--text); }
.exp-V3 .exv2-attr strong { color: var(--black); }
.exp-V3 .exv2-attr span { color: var(--text-soft); }
.exp-V3 .exv2-bottom { color: var(--text); }
.exp-V3 .exv2-badge { color: var(--accent-blue-deep); border-color: var(--accent-blue-deep); background: rgba(255,255,255,0.5); }
.exp-V3 .exv2-avatar { border-color: #DBEAFE; }
.exp-V3 .exv2-stat { color: var(--text-soft); }
.exp-V3 .exv2-photo img { filter: none; }

/* === Variant 4: Warm Stone/Khaki === */
.exp-V4 { background: #C8B68E; color: #2A2418; }
.exp-V4 .exv2-eyebrow { color: #5A4A28; }
.exp-V4 .exv2-card {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
}
.exp-V4 .exv2-title { color: #1F1A0E; }
.exp-V4 .exv2-quote { color: #2A2418; }
.exp-V4 .exv2-attr strong { color: #1F1A0E; }
.exp-V4 .exv2-attr span { color: #5A4A28; }
.exp-V4 .exv2-bottom { color: #2A2418; }
.exp-V4 .exv2-badge { color: #1F1A0E; border-color: #5A4A28; }
.exp-V4 .exv2-avatar { border-color: #C8B68E; }
.exp-V4 .exv2-stat { color: #5A4A28; }
.exp-V4 .exv2-photo img { filter: none; }

/* === Variant 5: White Minimal + Blue Accent Stripe === */
.exp-V5 { background: var(--bg); color: var(--black); position: relative; }
.exp-V5 .exv2-card {
  background: var(--white);
  border: 1px solid var(--line);
  position: relative;
}
.exp-V5 .exv2-card::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--accent-blue-deep), var(--accent-blue));
  border-radius: 24px 0 0 24px;
}
.exp-V5 .exv2-title { color: var(--black); }
.exp-V5 .exv2-quote { color: var(--text); }
.exp-V5 .exv2-attr strong { color: var(--black); }
.exp-V5 .exv2-attr span { color: var(--accent-blue-deep); font-weight: 500; }
.exp-V5 .exv2-bottom { color: var(--text-soft); }
.exp-V5 .exv2-badge { color: var(--accent-blue-deep); border-color: var(--accent-blue-deep); background: var(--white); }
.exp-V5 .exv2-avatar { border-color: var(--bg); }
.exp-V5 .exv2-stat { color: var(--text-soft); }
.exp-V5 .exv2-photo img { filter: none; }
.exv2-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.exv2-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: 56px 56px 56px 56px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 56px;
  align-items: center;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.exv2-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.exv2-title {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -1.2px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 32px;
}
.exv2-quote {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.19px;
  margin-bottom: 28px;
  max-width: 540px;
}
.exv2-attr {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.exv2-attr strong {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.15px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.exv2-attr span {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  letter-spacing: -0.13px;
}
.exv2-photo {
  width: 280px;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
}
.exv2-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.05);
}

.exv2-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-top: 36px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.85);
}
.exv2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.6px;
  color: var(--white);
}
.exv2-avatars {
  display: flex;
}
.exv2-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #4A9EE8;
  margin-left: -10px;
  background-size: 110% auto;
  background-position: center 30%;
  background-color: rgba(255,255,255,0.1);
}
.exv2-avatar:first-child { margin-left: 0; }
.exv2-stat {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.14px;
  font-style: italic;
  max-width: 480px;
}

@media (max-width: 880px) {
  .experts-v2 { padding: 64px 20px; }
  .exv2-card { grid-template-columns: 1fr; padding: 40px 28px; gap: 32px; }
  .exv2-photo { width: 100%; max-width: 320px; margin: 0 auto; }
  .exv2-title { font-size: 28px; }
  .exv2-quote { font-size: 16px; }
  .exv2-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ======== EXPERTS V6 - Clinical / Doctor-forward ======== */
.experts-v6 {
  padding: 104px 24px 104px;
  background: linear-gradient(180deg, #F7FAFD 0%, #EEF4FA 100%);
  position: relative;
}
.experts-v6::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(74,158,232,0.10), transparent 35%),
    radial-gradient(circle at 88% 100%, rgba(74,158,232,0.07), transparent 40%);
  pointer-events: none;
}
.exv6-inner { max-width: 1180px; margin: 0 auto; position: relative; }

.exv6-header { text-align: center; margin-bottom: 48px; }
.exv6-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #1E5AA8;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(30,90,168,0.22);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.exv6-eyebrow svg { color: #1E5AA8; }
.exv6-title {
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -1.4px;
  line-height: 1.15;
  color: #0B1A2B;
  max-width: 760px;
  margin: 0 auto;
}

.exv6-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: center;
  background: #FFFFFF;
  border-radius: 28px;
  padding: 48px;
  box-shadow:
    0 1px 0 rgba(11,26,43,0.04),
    0 24px 60px -20px rgba(30,90,168,0.18);
  border: 1px solid rgba(30,90,168,0.08);
  position: relative;
}

/* ---- LEFT: Doctor profile ---- */
.exv6-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.exv6-photo-wrap {
  position: relative;
  width: 220px;
  aspect-ratio: 1 / 1;
  margin-bottom: 24px;
}
.exv6-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #DDE7F2;
  box-shadow:
    0 0 0 4px #FFFFFF,
    0 0 0 5px rgba(30,90,168,0.30),
    0 12px 30px -8px rgba(11,26,43,0.20);
}
.exv6-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: contrast(1.04) saturate(0.95);
}
.exv6-md-badge {
  position: absolute;
  right: -8px;
  bottom: 8px;
  background: linear-gradient(135deg, #1E5AA8, #2A78D8);
  color: #fff;
  padding: 10px 14px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  box-shadow: 0 8px 20px -6px rgba(30,90,168,0.55);
  border: 2px solid #fff;
}
.exv6-md-letters {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.2px;
}
.exv6-md-label {
  font-size: 8px;
  letter-spacing: 1.0px;
  text-transform: uppercase;
  margin-top: 3px;
  opacity: 0.92;
}

.exv6-attribution { margin-top: 4px; }
.exv6-name {
  font-size: 17px;
  font-weight: 600;
  color: #0B1A2B;
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}
.exv6-role {
  font-size: 13px;
  color: #1E5AA8;
  font-weight: 500;
  margin-bottom: 14px;
}
.exv6-creds {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: #4B6280;
  max-width: 280px;
}
.exv6-cred-dot {
  width: 3px; height: 3px;
  background: #B7C5D6;
  border-radius: 50%;
}

/* ---- RIGHT: Quote + Stats ---- */
.exv6-side {
  position: relative;
  padding-left: 8px;
}
.exv6-quote-mark {
  position: absolute;
  top: -32px;
  left: 0;
  font-family: Georgia, serif;
  font-size: 96px;
  line-height: 1;
  color: rgba(30,90,168,0.16);
  font-weight: 700;
  pointer-events: none;
}
.exv6-quote {
  margin: 0 0 28px 0;
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: -0.2px;
  color: #1A2A3F;
  font-weight: 400;
}
.exv6-quote strong {
  color: #0B1A2B;
  font-weight: 600;
}
.exv6-quote em {
  color: #1E5AA8;
  font-style: normal;
  font-weight: 500;
}

.exv6-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(30,90,168,0.12);
}
.exv6-stat {
  flex: 1;
  text-align: center;
}
.exv6-stat-num {
  font-size: 26px;
  font-weight: 600;
  color: #1E5AA8;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.exv6-stat-label {
  font-size: 11px;
  color: #4B6280;
  letter-spacing: 0.2px;
  line-height: 1.35;
}
.exv6-stat-divider {
  width: 1px;
  background: rgba(30,90,168,0.12);
  margin: 4px 8px;
}

/* ---- Bottom institutions strip ---- */
.exv6-orgs {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.exv6-orgs-label {
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #4B6280;
  font-weight: 500;
}
.exv6-orgs-list {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.exv6-org {
  font-size: 13px;
  color: #1E5AA8;
  font-weight: 500;
  letter-spacing: 0.2px;
  opacity: 0.78;
  font-family: Georgia, "Times New Roman", serif;
}

@media (max-width: 900px) {
  .experts-v6 { padding: 64px 20px; }
  .exv6-title { font-size: 30px; letter-spacing: -1px; }
  .exv6-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
  .exv6-quote-mark { top: -24px; font-size: 72px; }
  .exv6-quote { font-size: 17px; }
  .exv6-stats { flex-direction: column; gap: 16px; }
  .exv6-stat-divider { display: none; }
  .exv6-stat { padding: 10px 0; border-bottom: 1px solid rgba(30,90,168,0.10); }
  .exv6-stat:last-child { border-bottom: none; }
  .exv6-orgs { flex-direction: column; gap: 12px; margin-top: 28px; }
  .exv6-orgs-list { gap: 16px; }
}

/* ======== EXPERTS (legacy 3-card) ======== */
.experts-inner {
  max-width: 1440px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: 88px 64px;
}
.experts-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  margin-bottom: 56px;
  align-items: end;
}
.experts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.expert-card {
  background: var(--bg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}
.expert-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin-bottom: 28px;
}
.expert-avatar.e1 {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><rect fill='%23ECE6D6' width='100' height='100'/><circle cx='50' cy='38' r='15' fill='%23F0D2B0'/><path d='M 50 58 Q 22 58 16 100 L 84 100 Q 78 58 50 58 Z' fill='%23F8FAFC'/><circle cx='44' cy='37' r='1.4' fill='%23222'/><circle cx='56' cy='37' r='1.4' fill='%23222'/><path d='M 32 30 Q 50 14 68 30 Q 68 38 50 36 Q 32 38 32 30 Z' fill='%23222'/><path d='M 38 70 L 38 90 M 62 70 L 62 90 M 38 76 L 62 76' stroke='%231E3A8A' stroke-width='1.2' fill='none'/></svg>");
}
.expert-avatar.e2 {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><rect fill='%23C8B68E' width='100' height='100'/><circle cx='50' cy='38' r='15' fill='%23A57E5C'/><path d='M 50 58 Q 22 58 16 100 L 84 100 Q 78 58 50 58 Z' fill='%23F8FAFC'/><circle cx='44' cy='37' r='1.4' fill='%23000'/><circle cx='56' cy='37' r='1.4' fill='%23000'/><path d='M 35 28 Q 50 18 65 28 Q 65 32 50 32 Q 35 32 35 28 Z' fill='%23222'/><rect x='38' y='35' width='10' height='6' rx='1.5' fill='none' stroke='%23222' stroke-width='1'/><rect x='52' y='35' width='10' height='6' rx='1.5' fill='none' stroke='%23222' stroke-width='1'/><line x1='48' y1='37' x2='52' y2='37' stroke='%23222' stroke-width='1'/></svg>");
}
.expert-avatar.e3 {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><rect fill='%23DDD2BB' width='100' height='100'/><circle cx='50' cy='38' r='15' fill='%23E8C8A8'/><path d='M 50 58 Q 22 58 16 100 L 84 100 Q 78 58 50 58 Z' fill='%23F8FAFC'/><circle cx='44' cy='37' r='1.4' fill='%23333'/><circle cx='56' cy='37' r='1.4' fill='%23333'/><path d='M 32 30 Q 50 14 68 30 Q 68 36 50 35 Q 32 36 32 30 Z' fill='%234A2E1A'/></svg>");
}
.expert-quote {
  font-size: 17px;
  line-height: 1.5;
  color: var(--black);
  letter-spacing: -0.17px;
  margin-bottom: 28px;
  font-style: italic;
}
.expert-name { font-size: 14px; font-weight: 500; color: var(--black); margin-bottom: 4px; }
.expert-title { font-size: 13px; color: var(--text-soft); letter-spacing: -0.13px; }

/* ======== WHY IT WORKS / INGREDIENTS ======== */
.ww-header {
  max-width: 1440px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
}
.ww-header-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.ww-header-stack .section-eyebrow { margin-bottom: 14px; }
.ww-header-stack .section-h2 { margin-bottom: 18px; }
.ww-header-stack .section-sub { margin-bottom: 28px; max-width: 640px; }
.ww-cards {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ingredient-card {
  background: var(--bg-card);
  padding: 28px 24px 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  min-height: 220px;
  border: 1px solid transparent;
}
.ingredient-card-hero {
  background: var(--white);
  border: 2px solid var(--accent-blue-deep);
  box-shadow: 0 18px 38px -16px rgba(95,145,213,0.32);
}
.ic-hero-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-blue-deep), #2A78D8);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 18px -6px rgba(95,145,213,0.45);
  z-index: 2;
}
.ic-function {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(11,26,43,0.08);
}
.ic-dose {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-blue-deep);
  letter-spacing: -0.2px;
}
.ic-dose span {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.2px;
  display: block;
  margin-top: 2px;
}
.ic-image-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: 300;
  color: var(--accent-blue-deep);
  background: linear-gradient(135deg, #EAF1F8, #DCE8F4) !important;
}
.ic-top {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  align-items: center;
}
.ic-image {
  width: 96px; height: 96px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ECE6D6, #C8B68E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px -4px rgba(11,26,43,0.18);
}
.ic-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,0.30) 0%, transparent 35%),
    radial-gradient(circle at 75% 70%, rgba(255,255,255,0.15) 0%, transparent 45%);
  mix-blend-mode: overlay;
  pointer-events: none;
}
  font-weight: 500;
  color: rgba(0,0,0,0.4);
}
.ic-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -0.4px;
  margin-bottom: 4px;
}
.ic-dose { font-size: 13px; color: var(--text-soft); letter-spacing: -0.13px; }
.ic-bar-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  align-items: center;
}
.ic-bar-label {
  background: var(--bg);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  line-height: 1.2;
}
.ic-bar-stack { display: flex; flex-direction: column; gap: 8px; }
.ic-bar-item { display: flex; align-items: center; gap: 10px; }
.ic-bar-name {
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: 0.3px;
  width: 78px;
  flex-shrink: 0;
  text-transform: uppercase;
  font-weight: 500;
}
.ic-bar-track {
  flex: 1;
  height: 8px;
  background: var(--bg);
  border-radius: 999px;
  overflow: hidden;
}
.ic-bar-fill {
  height: 100%;
  background: var(--black);
  border-radius: 999px;
}
.ic-bar-fill.competitor { background: var(--text-mute); }
.ic-bar-pct { font-size: 12px; font-weight: 500; color: var(--black); letter-spacing: 0.2px; width: 38px; text-align: right; }

/* ============================================================== */
/* === VARIANT A: HORIZONTAL CONNECTED MILESTONES =============== */
/* ============================================================== */
.variant-a .va-timeline {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 80px 32px 32px;
}
.variant-a .va-line {
  position: absolute;
  top: 110px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
  z-index: 1;
}
.variant-a .va-line-fill {
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, var(--accent-blue-deep), #1E3A8A);
  border-radius: 999px;
  animation: va-fill 4s ease-in-out infinite alternate;
}
@keyframes va-fill {
  0% { width: 30%; }
  100% { width: 95%; }
}
.variant-a .va-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.variant-a .va-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}
.variant-a .va-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 18px;
  color: var(--text-soft);
  margin-bottom: 22px;
  transition: all 0.3s;
  position: relative;
}
.variant-a .va-dot-active {
  background: #1E3A8A;
  color: var(--white);
  border-color: #1E3A8A;
}
.variant-a .va-dot-pulse {
  background: #2B7FE8;
  color: var(--white);
  border-color: #2B7FE8;
}
.variant-a .va-dot-pulse::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid #2B7FE8;
  animation: va-pulse 1.6s ease-out infinite;
}
@keyframes va-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
.variant-a .va-dot-finish {
  background: #1E3A8A;
  color: var(--white);
  border-color: #1E3A8A;
}
.variant-a .va-week {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent-blue-deep);
  margin-bottom: 8px;
}
.variant-a .va-step h4 {
  font-size: 17px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}
.variant-a .va-step p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}

/* ============================================================== */
/* === VARIANT B: VERTICAL ALTERNATING TIMELINE ================= */
/* ============================================================== */
.variant-b .vb-timeline {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  padding: 32px 0;
}
.variant-b .vb-line {
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 50%;
  width: 3px;
  background: var(--line);
  transform: translateX(-50%);
  border-radius: 999px;
  overflow: hidden;
}
.variant-b .vb-line-fill {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0%;
  background: linear-gradient(180deg, #69BFF6, #2B7FE8 60%, #1E3A8A);
  transition: height 0.18s ease-out;
  border-radius: 999px;
}
.variant-b .vb-step {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
  position: relative;
}
.variant-b .vb-step:last-child { margin-bottom: 0; }
.variant-b .vb-card {
  background: var(--bg-card);
  padding: 24px 28px;
  border-radius: 12px;
}
.variant-b .vb-step.vb-left .vb-card { grid-column: 1; text-align: right; }
.variant-b .vb-step.vb-left .vb-marker { grid-column: 2; }
.variant-b .vb-step.vb-right .vb-marker { grid-column: 2; }
.variant-b .vb-step.vb-right .vb-card { grid-column: 3; text-align: left; }
.variant-b .vb-marker {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 18px;
  color: var(--text-soft);
  z-index: 2;
  position: relative;
}
.variant-b .vb-marker.is-current {
  background: #2B7FE8;
  color: var(--white);
  border-color: #2B7FE8;
  animation: vb-glow 1.6s ease-in-out infinite;
  transform: scale(1.08);
}
.variant-b .vb-marker.is-passed {
  background: #1E3A8A;
  color: var(--white);
  border-color: #1E3A8A;
}
.variant-b .vb-marker-final.is-current,
.variant-b .vb-marker-final.is-passed,
.variant-b .vb-marker-final {
  /* checkmark always shown filled when reached */
}
.variant-b .vb-marker {
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
@keyframes vb-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(43, 127, 232, 0.45); }
  50% { box-shadow: 0 0 0 16px rgba(43, 127, 232, 0); }
}
.variant-b .vb-week {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent-blue-deep);
  margin-bottom: 8px;
}
.variant-b .vb-card h4 {
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}
.variant-b .vb-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
}

/* ============================================================== */
/* === VARIANT C: CURVED PATH JOURNEY =========================== */
/* ============================================================== */
.variant-c .vc-wrap {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 60px 0 320px;
  height: 480px;
}
.variant-c .vc-path {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.variant-c .vc-pins {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.variant-c .vc-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  text-align: center;
}
.variant-c .vc-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--accent-blue-deep);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 18px;
  color: var(--accent-blue-deep);
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(43,127,232,0.20);
  transition: all 0.3s;
}
.variant-c .vc-pin-active .vc-circle {
  background: #2B7FE8;
  color: var(--white);
  transform: scale(1.15);
  box-shadow: 0 0 0 8px rgba(43,127,232,0.18);
  animation: vc-pulse 1.8s ease-in-out infinite;
}
@keyframes vc-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(43,127,232,0.18); }
  50% { box-shadow: 0 0 0 14px rgba(43,127,232,0.05); }
}
.variant-c .vc-pin-finish .vc-circle {
  background: #1E3A8A;
  color: var(--white);
  border-color: #1E3A8A;
}
.variant-c .vc-card {
  width: 200px;
  background: var(--bg-card);
  padding: 16px 18px;
  border-radius: 12px;
  text-align: left;
}
.variant-c .vc-week {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent-blue-deep);
  margin-bottom: 6px;
}
.variant-c .vc-card h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -0.3px;
  margin-bottom: 6px;
  line-height: 1.25;
}
.variant-c .vc-card p {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.45;
}

/* ============================================================== */
/* ============================================================== */
/* === VARIANT D: BIG NUMERALS ================================== */
/* ============================================================== */
.variant-d .vd-stack {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.variant-d .vd-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  transition: all 0.3s;
}
.variant-d .vd-row:first-child { border-top: none; }
.variant-d .vd-num {
  font-size: 96px;
  font-weight: 200;
  letter-spacing: -4px;
  line-height: 1;
  color: var(--text-mute);
  text-align: right;
  font-feature-settings: 'tnum';
  transition: all 0.3s;
}
.variant-d .vd-row.vd-active .vd-num {
  color: var(--accent-blue-deep);
  font-weight: 300;
  -webkit-text-stroke: 0;
}
.variant-d .vd-row.vd-active {
  background: linear-gradient(90deg, transparent, var(--bg-card) 30%, var(--bg-card) 70%, transparent);
  border-radius: 16px;
  border-top-color: transparent;
}
.variant-d .vd-week {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent-blue-deep);
  margin-bottom: 8px;
}
.variant-d .vd-card h4 {
  font-size: 22px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.variant-d .vd-card p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.55;
  max-width: 520px;
}

/* ============================================================== */
/* === VARIANT E: DIAGONAL STAIR-STEP =========================== */
/* ============================================================== */
.variant-e .ve-stair {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0 16px;
  align-items: center;
}
.variant-e .ve-step {
  background: var(--bg-card);
  border-radius: 14px;
  padding: 22px 22px 22px 60px;
  position: relative;
  grid-column: span 2;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.variant-e .ve-s1 { grid-row: 1; transform: translateY(0); }
.variant-e .ve-s2 { grid-row: 2; transform: translateY(0); grid-column: 3 / span 2; }
.variant-e .ve-s3 { grid-row: 3; transform: translateY(0); grid-column: 5 / span 2; }
.variant-e .ve-s4 { grid-row: 4; transform: translateY(0); grid-column: 7 / span 2; }
.variant-e .ve-arrow {
  font-size: 36px;
  color: var(--accent-blue-deep);
  font-weight: 300;
  text-align: center;
  opacity: 0.4;
  align-self: center;
  animation: ve-bounce 2s ease-in-out infinite;
}
.variant-e .ve-arrow-1 { grid-row: 1 / span 2; grid-column: 3; align-self: end; padding-bottom: 0; }
.variant-e .ve-arrow-2 { grid-row: 2 / span 2; grid-column: 5; align-self: end; }
.variant-e .ve-arrow-3 { grid-row: 3 / span 2; grid-column: 7; align-self: end; }
@keyframes ve-bounce {
  0%, 100% { transform: translateY(-3px); opacity: 0.4; }
  50% { transform: translateY(3px); opacity: 0.7; }
}
.variant-e .ve-num {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--accent-blue-deep);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 15px;
  color: var(--accent-blue-deep);
}
.variant-e .ve-active {
  background: linear-gradient(135deg, #1E3A8A, #2B7FE8);
  color: var(--white);
}
.variant-e .ve-active .ve-num {
  background: var(--white);
  color: var(--accent-blue-deep);
  border-color: var(--white);
  animation: ve-pulse 1.6s ease-in-out infinite;
}
.variant-e .ve-active .ve-week { color: rgba(255,255,255,0.85); }
.variant-e .ve-active h4 { color: var(--white); }
.variant-e .ve-active p { color: rgba(255,255,255,0.8); }
@keyframes ve-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}
.variant-e .ve-week {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent-blue-deep);
  margin-bottom: 4px;
}
.variant-e .ve-card h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -0.4px;
  margin-bottom: 4px;
}
.variant-e .ve-card p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}

/* ============================================================== */
/* === VARIANT F: ANIMATED PROGRESS BAR ========================= */
/* ============================================================== */
.variant-f .vf-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 220px 80px 80px;
}
.variant-f .vf-bar {
  position: relative;
  height: 8px;
  background: var(--line);
  border-radius: 999px;
  overflow: visible;
}
.variant-f .vf-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent-blue-deep), #1E3A8A);
  border-radius: 999px;
  animation: vf-progress 5s ease-in-out infinite alternate;
}
@keyframes vf-progress {
  0% { width: 5%; }
  100% { width: 95%; }
}
.variant-f .vf-markers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.variant-f .vf-marker {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}
.variant-f .vf-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px;
  color: var(--text-soft);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.variant-f .vf-current .vf-circle {
  background: #2B7FE8;
  color: var(--white);
  border-color: #2B7FE8;
  transform: scale(1.25);
  box-shadow: 0 4px 16px rgba(43,127,232,0.3);
  animation: vf-pulse 1.6s ease-in-out infinite;
}
.variant-f .vf-final .vf-circle {
  background: #1E3A8A;
  color: var(--white);
  border-color: #1E3A8A;
}
@keyframes vf-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(43,127,232,0.4); }
  50% { box-shadow: 0 0 0 14px rgba(43,127,232,0); }
}
.variant-f .vf-tip {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  background: var(--bg-card);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: center;
  font-size: 13px;
  opacity: 0.55;
  transition: opacity 0.3s;
}
.variant-f .vf-marker:hover .vf-tip { opacity: 1; }
.variant-f .vf-tip-active { opacity: 1 !important; background: var(--bg-card-warm); }
.variant-f .vf-tip::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: inherit;
}
.variant-f .vf-tip .vf-week {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent-blue-deep);
  margin-bottom: 4px;
}
.variant-f .vf-tip strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}
.variant-f .vf-tip p {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.4;
  margin: 0;
}

/* === RESPONSIVE: VARIANT B/C STACK ON MOBILE ================== */
/* ============================================================== */
@media (max-width: 720px) {
  .variant-a .va-steps { grid-template-columns: 1fr; gap: 24px; }
  .variant-a .va-line { display: none; }
  .variant-b .vb-step { grid-template-columns: 56px 1fr; }
  .variant-b .vb-step.vb-left .vb-card,
  .variant-b .vb-step.vb-right .vb-card { grid-column: 2; text-align: left; }
  .variant-b .vb-step .vb-marker { grid-column: 1 !important; }
  .variant-b .vb-line { left: 28px; }
  .variant-c .vc-wrap { height: auto; padding: 0; }
  .variant-c .vc-path { display: none; }
  .variant-c .vc-pins { position: static; display: flex; flex-direction: column; gap: 24px; }
  .variant-c .vc-pin { position: static; transform: none; }
}

/* ======== HOW IT WORKS / TIMELINE ======== */
.hw-header {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: end;
}
.timeline-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.timeline-step {
  background: var(--bg-card);
  padding: 32px 28px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.timeline-step.highlight {
  background: var(--bg-card-warm);
}
.t-week {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent-blue-deep);
}
.timeline-step h4 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.4px;
  color: var(--black);
}
.timeline-step p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  letter-spacing: -0.14px;
}

/* ======== REVIEWS ======== */
.rv-header {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: end;
}
.beta-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--bg-card);
  color: var(--text-soft);
  padding: 6px 14px;
  border-radius: 999px;
}
.reviews-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.review-card {
  background: var(--bg-card);
  padding: 32px 28px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.r-stars {
  color: var(--black);
  font-size: 14px;
  letter-spacing: 2px;
}
.r-quote {
  font-size: 15px;
  line-height: 1.55;
  color: var(--black);
  letter-spacing: -0.15px;
}
.r-author {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: auto;
}
.r-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.r-avatar.a1 {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><rect fill='%23DDD2BB' width='100' height='100'/><circle cx='50' cy='38' r='15' fill='%23F0D2B0'/><path d='M 50 58 Q 22 58 16 100 L 84 100 Q 78 58 50 58 Z' fill='%231E3A8A'/><circle cx='44' cy='37' r='1.4' fill='%23222'/><circle cx='56' cy='37' r='1.4' fill='%23222'/><path d='M 30 30 Q 50 16 70 30 Q 70 38 50 36 Q 30 38 30 30 Z' fill='%23B8956F'/></svg>");
}
.r-avatar.a2 {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><rect fill='%23ECE6D6' width='100' height='100'/><circle cx='50' cy='38' r='15' fill='%23C49E7C'/><path d='M 50 58 Q 22 58 16 100 L 84 100 Q 78 58 50 58 Z' fill='%23475569'/><circle cx='44' cy='37' r='1.4' fill='%23000'/><circle cx='56' cy='37' r='1.4' fill='%23000'/><path d='M 35 28 Q 50 18 65 28 Q 65 32 50 32 Q 35 32 35 28 Z' fill='%23222'/><path d='M 36 50 Q 50 56 64 50 Q 64 54 50 54 Q 36 54 36 50 Z' fill='%23222'/></svg>");
}
.r-avatar.a3 {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><rect fill='%23C8B68E' width='100' height='100'/><circle cx='50' cy='38' r='15' fill='%23E8C8A8'/><path d='M 50 58 Q 22 58 16 100 L 84 100 Q 78 58 50 58 Z' fill='%23F8FAFC'/><circle cx='44' cy='37' r='1.4' fill='%23222'/><circle cx='56' cy='37' r='1.4' fill='%23222'/><path d='M 32 30 Q 50 14 68 30 Q 68 38 50 36 Q 32 38 32 30 Z' fill='%23222'/></svg>");
}
.r-name { font-size: 14px; font-weight: 500; color: var(--black); }
.r-meta { font-size: 12px; color: var(--text-soft); margin-top: 2px; letter-spacing: -0.12px; }

/* ======== THE PRESERVE STACK ======== */
.preserve-stack {
  padding: 56px 24px 104px;
}
.ps-wrap {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: 12px;
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}
.ps-h2 {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -1px;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 14px;
}
.ps-sub-text {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.55;
  letter-spacing: -0.15px;
  margin-bottom: 12px;
  max-width: 480px;
}
.ps-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  border-bottom: 1.5px solid var(--black);
  padding-bottom: 2px;
  margin-bottom: 32px;
}
.ps-items {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}
.ps-benefits {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.ps-benefit {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px 0;
}
.ps-b-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue-deep);
  flex-shrink: 0;
}
.ps-b-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ps-b-text strong {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -0.2px;
}
.ps-b-text span {
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: -0.1px;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .ps-benefits { grid-template-columns: 1fr; }
}
.ps-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.ps-item:first-child { border-top: none; padding-top: 0; }
.ps-icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg);
  flex-shrink: 0;
}
.ps-item-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ps-item-text strong {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -0.2px;
}
.ps-item-text span {
  font-size: 13px;
  color: var(--text-soft);
  letter-spacing: -0.1px;
}
.ps-badge {
  background: var(--accent-pill);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4px;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.ps-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--black);
  color: var(--white);
  border-radius: 10px;
  padding: 18px 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
  transition: opacity 0.2s, transform 0.15s;
}
.ps-cta:hover { opacity: 0.88; transform: translateY(-1px); }
.ps-cta-label { text-transform: uppercase; font-weight: 600; letter-spacing: 1px; }
.ps-cta-arrow { font-size: 18px; line-height: 1; opacity: 0.85; transition: transform 0.15s; }
.ps-cta:hover .ps-cta-arrow { transform: translateX(2px); }
.ps-cta-meta { font-size: 12px; font-weight: 400; opacity: 0.75; letter-spacing: 0.2px; text-transform: none; }
.ps-sub-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 14px;
}
.ps-sub-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--bg);
  color: var(--accent-blue-deep);
  font-size: 16px;
  flex-shrink: 0;
}
.ps-sub-text { display: flex; flex-direction: column; gap: 2px; }
.ps-sub-text strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.15px;
}
.ps-sub-text span {
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: -0.05px;
  line-height: 1.4;
}
.ps-trust {
  text-align: center;
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: -0.12px;
}
.ps-right {
  background: var(--bg);
  border-radius: 16px;
  padding: 48px 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 480px;
}
.ps-pouch {
  max-width: 280px;
  width: 80%;
  height: auto;
}
/* Preserve Stack gallery (swipeable carousel - lock 2026-05-25) */
.ps-gallery {
  width: 100%;
  max-width: 380px;
  overflow: hidden;
  border-radius: 12px;
}
.ps-gallery-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ps-gallery-track::-webkit-scrollbar { display: none; }
.ps-gallery-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
}
.ps-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}
.ps-dots {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.ps-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, width 0.2s, border-radius 0.2s;
}
.ps-dot.ps-dot-active { background: var(--black); width: 22px; border-radius: 4px; }

.ps-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin: 12px 0 16px;
}
.ps-tier {
  position: relative;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 16px 10px 12px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: var(--white);
}
.ps-tier:hover { border-color: var(--black); }
.ps-tier.ps-tier-active { border-color: var(--black); background: var(--bg); }
.ps-tier-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 6px;
}
.ps-tier-price {
  display: block;
  font-size: 19px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.4px;
  line-height: 1.1;
}
.ps-tier-per {
  display: block;
  font-size: 11px;
  color: var(--text-soft);
  margin-top: 3px;
  letter-spacing: -0.1px;
}
.ps-tier-strike {
  display: block;
  font-size: 11px;
  color: var(--text-soft);
  margin-top: 4px;
  text-decoration: line-through;
  opacity: 0.7;
}
.ps-tier-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-pill);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.7px;
  padding: 3px 9px;
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
}
.ps-tier-badge.tier-badge-deep { background: var(--accent-blue-deep); }

@media (max-width: 880px) {
  .ps-wrap { grid-template-columns: 1fr; padding: 36px 24px; gap: 32px; }
  .ps-right { min-height: 320px; padding: 24px; }
  .ps-h2 { font-size: 28px; }
  .ps-cta { flex-wrap: wrap; gap: 6px; padding: 14px 20px; font-size: 13px; }
  .ps-tiers { grid-template-columns: 1fr; gap: 10px; }
}

/* ======== WHY TRUST MYOTIDE - STRIP ======== */
.trust-strip {
  position: relative;
  margin: 24px auto 24px;
  max-width: 1300px;
  padding: 0 24px;
}
.trust-bg, .trust-overlay {
  position: absolute;
  inset: 0 24px;
  border-radius: 18px;
  pointer-events: none;
}
.trust-bg {
  background-image: url(//myotide.co/cdn/shop/t/2/assets/trust-v1.png?v=10299294682491244421779463000);
  background-size: cover;
  background-position: center 35%;
}
.trust-overlay {
  background: linear-gradient(135deg, rgba(30,58,138,0.86) 0%, rgba(43,127,232,0.86) 100%);
}
.trust-inner {
  position: relative;
  z-index: 1;
  padding: 48px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: var(--white);
}
.trust-headline {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin: 0;
  text-align: center;
  max-width: 760px;
}
.trust-attrs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
  font-size: 14px;
  font-weight: 500;
}
.trust-attrs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.trust-attrs svg { opacity: 0.85; flex-shrink: 0; }
@media (max-width: 880px) {
  .trust-strip { margin: 16px auto; padding: 0 16px; }
  .trust-bg, .trust-overlay { inset: 0 16px; border-radius: 14px; }
  .trust-inner { padding: 32px 22px; gap: 18px; }
  .trust-headline { font-size: 20px; }
  .trust-attrs { gap: 12px 18px; font-size: 12.5px; }
  .trust-attrs svg { width: 14px; height: 14px; }
}
@media (max-width: 480px) {
  .trust-inner { padding: 28px 20px; }
  .trust-headline { font-size: 18px; letter-spacing: -0.2px; }
  .trust-attrs {
    display: grid;
    grid-template-columns: auto auto;
    gap: 10px 24px;
    font-size: 11.5px;
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
    justify-content: center;
  }
  .trust-attrs li {
    justify-self: start;
    white-space: nowrap;
  }
}

/* ======== LIFESTYLE BREAKER ======== */
.lifestyle-break {
  padding: 64px 24px 32px;
  background: transparent;
}
.lifestyle-figure {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  overflow: hidden;
  border-radius: 16px;
}
.lifestyle-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center 30%;
}
.lifestyle-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 40px 32px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.6) 100%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--white);
}
.lifestyle-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  opacity: 0.92;
}
.lifestyle-headline {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.8px;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .lifestyle-break { padding: 32px 16px 16px; }
  .lifestyle-figure { border-radius: 12px; }
  .lifestyle-img { max-height: 320px; }
  .lifestyle-caption { padding: 18px 18px 18px; gap: 4px; }
  .lifestyle-eyebrow { font-size: 9px; letter-spacing: 1.2px; }
  .lifestyle-headline { font-size: 22px; letter-spacing: -0.4px; }
}

/* ======== COMPARISON TABLE (compact · 2-tone) ======== */
.comparison {
  background: var(--bg);
  padding: 80px 24px;
}
.cmp-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}
.cmp-eyebrow {
  color: #1E3A8A;
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
.cmp-h2 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.6px;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 10px;
}
.cmp-h2 em { font-style: italic; font-weight: 400; color: var(--accent-blue-deep); }
.cmp-sub {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 520px;
  margin: 0 auto;
}
.cmp-wrap {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.cmp-scroll {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.cmp-scroll::-webkit-scrollbar { display: none; }
.cmp-table {
  width: 100%;
  min-width: 440px;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
  position: relative;
}
.cmp-table th, .cmp-table td {
  padding: 14px 10px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px dashed #d9d4c4;
  font-size: 13px;
  color: #54514a;
  background: transparent;
}
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #6a665a;
  padding: 60px 8px 18px;
  border-bottom: 1px dashed #d9d4c4;
  vertical-align: top;
  position: relative;
}
.cmp-row-label {
  text-align: left !important;
  font-weight: 600 !important;
  color: var(--black) !important;
  padding-left: 18px !important;
  font-size: 12px !important;
  width: 34%;
  line-height: 1.3;
}
/* ---- MYOTIDE column as a tall rounded blue pill ---- */
.cmp-col-myotide-head,
.cmp-col-myotide {
  background: #1e3a8a !important;
  color: #fff !important;
  border-bottom: 1px solid rgba(255,255,255,0.12) !important;
}
.cmp-col-myotide-head {
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 1.4px !important;
  padding-top: 60px !important;
  padding-bottom: 18px !important;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  vertical-align: top;
  position: relative;
}
.cmp-col-myotide-head .cmp-badge { display: none; }
.cmp-col-label {
  display: block;
  line-height: 1.15;
}
.cmp-myo-mark {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.cmp-table tbody tr:last-child td.cmp-col-myotide {
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
  border-bottom: none !important;
  vertical-align: middle !important;
}
/* All cells in monthly-cost row vertically center their content */
.cmp-table tbody tr:last-child td { vertical-align: middle !important; }
.cmp-yes, .cmp-no, .cmp-partial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 13px;
}
.cmp-yes {
  background: transparent;
  color: #1e3a8a;
  font-size: 18px;
}
.cmp-no  {
  background: #fbe5e5;
  color: #cf5f5f;
  font-size: 13px;
}
.cmp-partial {
  background: transparent;
  color: #bcb5a3;
  font-size: 20px;
  line-height: 0.7;
}
.cmp-col-myotide .cmp-yes {
  background: #fff;
  color: #1e3a8a;
  font-size: 14px;
  font-weight: 800;
}
.cmp-price {
  font-weight: 600 !important;
  font-size: 13px !important;
  color: #6a665a !important;
}
.cmp-price-myotide {
  font-weight: 800 !important;
  font-size: 16px !important;
  color: #fff !important;
}
.cmp-price-myotide small {
  display: block;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: rgba(255,255,255,0.75) !important;
  text-transform: uppercase;
  margin-top: 2px;
}
.cmp-foot {
  text-align: center;
  margin-top: 22px;
  font-size: 12.5px;
  color: var(--text-soft);
  line-height: 1.5;
}
.cmp-foot strong { color: var(--black); }

/* ======== REVIEWS ======== */
.reviews {
  padding: 80px 24px 96px;
  max-width: 1200px;
  margin: 0 auto;
}
.rv-header {
  text-align: center;
  margin-bottom: 48px;
}
.rv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent-blue-deep);
  margin-bottom: 16px;
}
.rv-eyebrow::before, .rv-eyebrow::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent-blue-deep);
  opacity: 0.4;
}
.rv-h2 {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -1px;
  color: var(--black);
  line-height: 1.12;
  margin-bottom: 12px;
}
.rv-h2 em { font-style: italic; color: var(--accent-blue-deep); font-weight: 500; }
.rv-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-soft);
  letter-spacing: -0.1px;
}
.rv-meta-stars { color: #E5B23F; letter-spacing: 2px; font-size: 14px; }
.rv-meta strong { color: var(--black); font-weight: 600; }
.rv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.rv-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
}
.rv-card-stars {
  color: #E5B23F;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 14px;
}
.rv-card-quote {
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.15px;
  color: var(--text);
  margin: 0 0 22px;
  flex: 1;
}
.rv-card-quote strong { color: var(--black); font-weight: 600; }
.rv-card-attr {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.rv-card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  background: var(--bg);
  flex-shrink: 0;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px rgba(95,145,213,0.18);
}
.rv-card-name-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}
.rv-card-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.15px;
}
.rv-card-cohort {
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: -0.05px;
}
.rv-card-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  color: var(--accent-blue-deep);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.rv-card-verified svg { flex-shrink: 0; }
.rv-footer {
  text-align: center;
  margin-top: 32px;
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: -0.1px;
}
@media (max-width: 880px) {
  .reviews { padding: 64px 16px 80px; }
  .rv-h2 { font-size: 28px; }
  .rv-grid { grid-template-columns: 1fr; gap: 14px; }
  .rv-card { padding: 24px 22px 20px; }
}

/* ======== 90-DAY GUARANTEE ======== */
.guarantee {
  padding: 80px 24px;
  background: var(--bg-card);
}
.guar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.guar-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.guar-badge {
  margin-bottom: 4px;
}
.guar-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-soft);
}
.guar-headline {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.12;
  color: var(--black);
  margin: 0;
}
.guar-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  letter-spacing: -0.15px;
  margin: 4px 0 8px;
  max-width: 480px;
}
.guar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: opacity 0.2s, transform 0.15s;
}
.guar-cta:hover { opacity: 0.88; transform: translateY(-1px); }
.guar-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.guar-photo {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
}
@media (max-width: 880px) {
  .guarantee { padding: 70px 20px; }
  .guar-inner { grid-template-columns: 1fr; gap: 28px; }
  .guar-right { order: -1; }
  .guar-headline { font-size: 28px; letter-spacing: -0.6px; }
  .guar-body { font-size: 14px; }
  .guar-badge svg { width: 110px; height: 110px; }
  .guar-photo { max-width: 100%; }
  .guar-left { align-items: flex-start; }
}
@media (max-width: 480px) {
  .guarantee { padding: 70px 16px; }
  .guar-headline { font-size: 24px; }
  .guar-badge svg { width: 96px; height: 96px; }
  .guar-cta { width: 100%; }
}

/* ======== MISSION + STATS (Brand-tinted, asymmetric collage) ======== */
.pdp-mission {
  background: #EFF4FB;
  padding: 80px 24px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.pdp-mission-inner {
  max-width: 760px;
  margin: 0 auto;
  border-radius: 20px;
  background: #DDE7F6;
  padding: 16px;
  border: 1px solid rgba(43, 127, 232, 0.18);
}
.pdp-mission-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr 0.94fr;
  grid-template-rows: 0.95fr 1.08fr;
  gap: 5px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 26px;
}
.pdp-mission-photo {
  background-size: cover;
  background-position: center;
  background-color: var(--bg-card);
  min-height: 110px;
}
/* Desktop only: force square (1:1) photos + uniform grid · mobile keeps original feel */
@media (min-width: 901px) {
  .pdp-mission-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .pdp-mission-photo {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }
}
/* Doctor positions */
.pdp-mission-photo.m-pro1 { background-image: url(//myotide.co/cdn/shop/t/2/assets/mission-pro-1.png?v=105570091511323702591779463003); }
.pdp-mission-photo.m-pro2 { background-image: url(//myotide.co/cdn/shop/t/2/assets/mission-pro-2.png?v=1185659488660626941779463001); }
.pdp-mission-photo.m-pro3 { background-image: url(//myotide.co/cdn/shop/t/2/assets/mission-pro-3.png?v=159324162624439771431779463001); }
/* Customer positions */
.pdp-mission-photo.m-cust2 { background-image: url(//myotide.co/cdn/shop/t/2/assets/photo-2.webp?v=58183100178085439141779619352); }
.pdp-mission-photo.m-cust3 { background-image: url(//myotide.co/cdn/shop/t/2/assets/photo-3.webp?v=49262088767638502421779619585); }
.pdp-mission-photo.m-cust6 { background-image: url(//myotide.co/cdn/shop/t/2/assets/mission-cust-bottom.webp?v=63342716817040821421779620154); }

.pdp-mission-content {
  padding: 8px 12px 12px;
}
.pdp-mission-h2 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.9px;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 18px;
}
.pdp-mission-h2 strong {
  font-weight: 700;
  color: var(--accent-blue-deep);
}
.pdp-mission-sub {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}
.pdp-mission-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.pdp-mission-stat {
  background: var(--white);
  color: var(--text);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 8px rgba(20, 18, 15, 0.04);
  border: 1px solid var(--line-soft);
}
.pdp-mission-num {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--accent-blue-deep);
  flex-shrink: 0;
  min-width: 64px;
  text-align: left;
}
.pdp-mission-num span {
  font-size: 18px;
  font-weight: 600;
}
.pdp-mission-text {
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--text);
}
.pdp-mission-text strong {
  font-weight: 700;
  color: var(--text);
}
.pdp-mission-foot {
  font-size: 12px;
  color: var(--text-soft);
  font-style: italic;
}
@media (max-width: 760px) {
  .pdp-mission { padding: 70px 16px; }
  .pdp-mission-h2 { font-size: 22px; letter-spacing: -0.6px; }
  .pdp-mission-sub { font-size: 15px; }
  .pdp-mission-num { font-size: 26px; min-width: 70px; padding: 12px 14px; }
  .pdp-mission-num span { font-size: 18px; }
  .pdp-mission-text { font-size: 13px; }
  .pdp-mission-stat { padding: 10px 12px; gap: 10px; }
}

/* ======== FAQ ======== */
.faq-header {
  max-width: 880px;
  margin: 0 auto 32px;
  text-align: center;
}
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 4px;
}
.faq-item summary {
  font-size: 17px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -0.17px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--text-soft);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { color: var(--accent-blue-deep); }
.faq-item p {
  padding: 14px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
  letter-spacing: -0.15px;
  max-width: 760px;
}

/* ======== NEWSLETTER (deprecated, kept for compat) ======== */
.newsletter-inner {
  max-width: 980px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: 48px 56px;
  text-align: center;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  text-align: left;
}
.newsletter-inner h3 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.7px;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--black);
}
.newsletter-inner h3 em { font-style: italic; font-weight: 400; }
.newsletter-inner p {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 0;
  letter-spacing: -0.14px;
  line-height: 1.45;
}
.newsletter-cta { display: flex; flex-direction: column; gap: 8px; }
@media (max-width: 800px) {
  .newsletter-inner { grid-template-columns: 1fr; gap: 24px; padding: 36px 28px; text-align: center; }
}
.newsletter-form {
  display: flex;
  gap: 8px;
  width: 100%;
}
.newsletter-input {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 14px;
  color: var(--black);
  font-family: inherit;
  outline: none;
}
.newsletter-input:focus { border-color: var(--black); }
.newsletter-form .btn { padding: 14px 28px; font-size: 12px; letter-spacing: 1.3px; }

/* ======== FOOTER ======== */
.footer {
  background: var(--bg);
  padding: 80px 32px 32px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
}
.footer-brand-name {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.7px;
  color: var(--black);
  margin-bottom: 16px;
}
.footer-tagline { font-size: 14px; color: var(--text-soft); line-height: 1.5; max-width: 280px; }
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}
.footer-payments li { display: inline-flex; }
.footer-payment-icon {
  height: 26px;
  width: auto;
  display: block;
  border-radius: 4px;
}
/* Desktop: icons under brand block (left-aligned) */
.footer-payments--desktop {
  margin-top: 20px;
  justify-content: flex-start;
}
.footer-payments--mobile { display: none; }
@media (max-width: 900px) {
  .footer-payments--desktop { display: none; }
  .footer-payments--mobile {
    display: flex;
    max-width: 1200px;
    margin: 24px auto 0;
    justify-content: center;
    gap: 8px;
    padding-bottom: 0;
  }
  .footer-payments--mobile .footer-payment-icon { height: 22px; }
}
.footer-col h4,
.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--black);
  margin: 0 0 22px;
  line-height: 1.2;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 16px; margin: 0; padding: 0; }
.footer-col a { font-size: 14px; color: var(--text-soft); transition: color 0.2s; }
.footer-col a:hover { color: var(--black); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: 0.2px;
  gap: 32px;
}

/* ======== COMPACT MODE - schlanker, weniger fett, schmaler ======== */
.section { padding: 64px 24px; }

/* 6-Ingredients-Protocol section — reduce top padding only (desktop keeps centered layout, lock 2026-05-26) */
#science.section { padding-top: 40px; }
#science .ww-header { margin-bottom: 32px; }
/* Mobile-only: shift header content flush-left + tighter padding (lock 2026-05-24, scoped 2026-05-26) */
@media (max-width: 767px) {
  #science.section { padding-left: 16px; padding-right: 16px; }
  #science .ww-header { margin-left: 0; max-width: 100%; gap: 56px; }
  #science .ww-header > div:first-child { text-align: left; }
}
.hero { min-height: 540px; }
.hero-text { padding: 64px 56px 64px max(56px, calc((100vw - 1440px) / 2 + 56px)); }
.hero-product { padding-right: max(40px, calc((100vw - 1440px) / 2 + 40px)); }
.hero h1 { font-size: 42px; letter-spacing: -1.4px; margin-bottom: 24px; }
.hero-eyebrow { font-size: 12px; margin-bottom: 22px; }
.hero .sub { font-size: 16px; max-width: 440px; margin-bottom: 36px; }
.btn { padding: 14px 28px; font-size: 12px; letter-spacing: 1.2px; }
.hero-product { padding: 40px; }
.pouch-img { max-width: 360px; }
.hero-badge { width: 130px; height: 130px; top: 32px; right: 32px; }
.hero-badge .b-line1 { font-size: 22px; }
.hero-badge .b-line2 { font-size: 11px; letter-spacing: 0.6px; }

.trust-bar { padding: 20px 48px; }
.trust-avatar { width: 38px; height: 38px; }
.trust-statement { font-size: 14px; max-width: 480px; }

.section-h2 { font-size: 38px; letter-spacing: -1.2px; }
.section-eyebrow { font-size: 12px; margin-bottom: 14px; }
.section-sub { font-size: 15px; }

.ps-grid, .chart-header, .experts-inner, .ww-header, .ww-cards { max-width: 1200px; }
.chart-card, .chart-header { max-width: 960px; }
.ps-grid { gap: 16px; }
.ps-card { padding: 44px 40px; min-height: 440px; }
.ps-card h3 { font-size: 28px; letter-spacing: -0.7px; margin-bottom: 18px; }
.ps-card p { font-size: 15px; max-width: 420px; }
.ps-card .stat { font-size: 56px; letter-spacing: -1.6px; margin: 28px 0 10px; }
.ps-card .stat-label { font-size: 13px; margin-bottom: 28px; }

.chart-header { gap: 56px; margin-bottom: 36px; }
.chart-card { padding: 28px 24px 20px; border-radius: 16px; }
.chart-svg { max-width: 100%; }
.chart-legend { column-gap: 18px; row-gap: 10px; margin-top: 16px; padding-top: 16px; font-size: 13px; }

.experts-inner { padding: 56px 48px; }
.experts-header { gap: 56px; margin-bottom: 40px; }
.experts-grid { gap: 14px; }
.expert-card { padding: 32px 28px; }
.expert-avatar { width: 60px; height: 60px; margin-bottom: 22px; }
.expert-quote { font-size: 15px; margin-bottom: 22px; }
.expert-name { font-size: 13px; }
.expert-title { font-size: 12px; }

.ww-header { gap: 56px; margin-bottom: 36px; }
.ww-cards { gap: 14px; }
.ingredient-card { padding: 22px 24px; gap: 16px; }
.ic-image { width: 80px; height: 80px; font-size: 30px; }
.ic-top { grid-template-columns: 80px 1fr; gap: 16px; }
.ic-title { font-size: 16px; }
.ic-dose { font-size: 12px; }
.ic-bar-row { grid-template-columns: 76px 1fr; gap: 14px; }
.ic-bar-label { font-size: 10px; padding: 8px 6px; }

.footer { padding-bottom: 28px; }
.footer-inner { gap: 32px; margin-bottom: 24px; }
.footer-bottom { padding-top: 24px; padding-bottom: 0; }
@media (max-width: 900px) {
  .footer { padding: 48px 24px 8px; }
}

/* ======== RESPONSIVE ======== */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-text { padding: 64px 40px; }
  .hero h1 { font-size: 44px; letter-spacing: -1.4px; }
  .hero-product { min-height: 540px; padding: 64px 0; }
  .ps-grid { grid-template-columns: 1fr; }
  .fs-grid { grid-template-columns: 1fr; gap: 32px; }
  .experts-header, .ww-header, .chart-header { grid-template-columns: 1fr; gap: 24px; }
  .chart-card { padding: 24px 16px 16px; }
  .pouch-img { max-width: 320px; }
  .experts-grid, .ww-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .section-h2, .fs-details h2, .newsletter-inner h3 { font-size: 40px; letter-spacing: -1.2px; }
  .ps-card h3 { font-size: 30px; }
}
@media (max-width: 640px) {
  .header { grid-template-columns: auto 1fr auto; padding: 16px; }
  .nav-link, .nav-pill { display: none; }
  .header-left { gap: 14px; }
  .brand-name { font-size: 22px; }
  .hero-text { padding: 48px 24px; }
  .hero h1 { font-size: 34px; letter-spacing: -1.1px; }
  .hero-eyebrow { font-size: 12px; margin-bottom: 24px; }
  .hero .sub { font-size: 16px; margin-bottom: 36px; }
  .hero-badge { width: 110px; height: 110px; top: 20px; right: 20px; }
  .hero-badge .b-line1 { font-size: 18px; }
  .hero-badge .b-line2 { font-size: 9px; letter-spacing: 0.6px; }
  .pouch { width: 240px; height: 340px; padding: 30px 22px 24px; }
  .pouch-banner { font-size: 11px; padding: 8px 0; }
  .ps-card { padding: 40px 28px; min-height: auto; }
  .ps-card h3 { font-size: 26px; }
  .ps-card .stat { font-size: 52px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .experts-inner, .newsletter-inner { padding: 56px 28px; }
  .newsletter-form { flex-direction: column; }
  .section-h2 { font-size: 32px; letter-spacing: -0.8px; }
  .section { padding: 64px 16px; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* ============================================================ */
/* ============== MOBILE RESPONSIVE - v1 - base =============== */
/* ============================================================ */

/* Mobile-only elements: default-hidden until media-query enables them */
.mobile-menu-btn,
.mobile-drawer,
.mobile-drawer-overlay,
.sticky-cta { display: none; }

/* Mobile menu button */
.mobile-menu-btn {
  width: 40px; height: 40px;
  background: none; border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.mobile-menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(11, 26, 43, 0.6);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  /* FIX (lock 2026-05-24): default rule above sets `display: none` for ALL
     mobile UI; the `.open` class only toggles opacity/pointer-events, so the
     overlay needs `display: block` here to actually render when opened. */
  display: block;
}
/* Same fix for drawer itself — was display:none by default. */
.mobile-drawer { display: flex; }
.mobile-drawer-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-drawer {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: 86%; max-width: 360px;
  background: var(--white);
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 200;
  /* lock 2026-05-24 v3: bottom padding 15px above safe-area
     (further dialed back per FT feedback). */
  padding: 20px 24px calc(env(safe-area-inset-bottom, 0px) + 15px);
  display: flex;
  flex-direction: column;
  box-shadow: 6px 0 24px -8px rgba(0,0,0,0.12);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.mobile-drawer-brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  color: var(--black);
}
.mobile-drawer-close {
  background: none; border: none;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--black);
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-drawer-close:hover { background: var(--bg); }
.mobile-drawer-nav {
  display: flex; flex-direction: column;
  flex: 1;
  gap: 0;
  padding-top: 4px;
}
.mobile-drawer-link {
  font-size: 16px;
  font-weight: 500;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--black);
  letter-spacing: -0.2px;
  transition: color 0.15s, padding-left 0.15s;
}
.mobile-drawer-link:hover, .mobile-drawer-link:focus {
  color: var(--accent-blue-deep);
  padding-left: 8px;
}
.mobile-drawer-icons {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}
.mobile-drawer-icon {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
}
.mobile-drawer-foot {
  font-size: 11px;
  color: var(--text-soft);
  text-align: center;
  padding-top: 18px;
  letter-spacing: 0.1px;
  border-top: 1px solid var(--line-soft);
  margin-top: 18px;
}
.mobile-drawer-hero-switch {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.mobile-drawer-hero-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-soft);
}
.hero-switcher.mobile-drawer-hero-switcher {
  display: inline-flex !important;
  background: rgba(95, 145, 213, 0.08);
  border: 1px solid rgba(95, 145, 213, 0.25);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
body.drawer-open { overflow: hidden; }

/* Sticky bottom CTA (mobile only) */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--black);
  color: var(--white);
  padding: 14px 18px calc(env(safe-area-inset-bottom, 12px) + 14px);
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  box-shadow: 0 -8px 24px -8px rgba(0,0,0,0.16);
  transform: translateY(110%);
  transition: transform 0.3s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-arrow { font-size: 16px; opacity: 0.9; line-height: 1; }
.sticky-cta-meta {
  text-transform: none;
  font-weight: 400;
  font-size: 11px;
  opacity: 0.75;
  letter-spacing: 0.1px;
}

/* ============================================================ */
/* ============== MOBILE - Tablet (≤ 1023px) ================== */
/* ============================================================ */
@media (max-width: 1023px) {
  .hero-switcher { display: none !important; }
  .mobile-menu-btn { display: inline-flex; }
  .header-inner {
    padding: 2px 14px;
    display: flex !important;
    align-items: center;
    gap: 10px;
  }
  .header-left { display: none; }
  .header-right {
    margin-left: auto;
    gap: 8px;
  }
  .brand-name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.4px;
    text-align: left;
    flex: 0 0 auto;
  }
  .icon-btn {
    width: 38px;
    height: 38px;
    background: none;
    border: none;
  }
  .icon-btn svg {
    width: 23px;
    height: 23px;
    stroke-width: 1.8;
  }
  .icon-btn:hover { background: none; opacity: 0.6; }
  .mobile-menu-btn {
    width: 30px; height: 30px; gap: 4px;
    /* shift burger ~8px left so lines sit closer to screen edge (lock 2026-05-28) */
    margin-left: -8px;
  }
  .mobile-menu-btn span {
    width: 21px;
    /* lock 2026-05-28 (later): 1.8px caused sub-pixel rendering — top/bottom lines
       landed on half-pixel grid and looked thinner than the middle. 2px = clean
       integer pixel grid → all three lines render identically thick. */
    height: 2px;
    background: var(--black);
  }
  .mobile-menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .mobile-menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* Featured Reviews - tablet shows 2 cards */
  .fr-card { flex: 0 0 calc(50% - 10px); min-width: 0; }
  .fr-h2 { font-size: 28px; }

  /* Donut Split Chart - stack to 1-col below tablet (catches Pro Max landscape 932px) */
  .split-pair {
    grid-template-columns: 1fr !important;
    gap: 20px;
    max-width: 540px;
  }
  .split-card { padding: 32px 28px 28px; }
  .split-h2 { font-size: 32px; }

  /* Comparison Table - fit tighter, less aggressive min-width */
  .cmp-table { min-width: 560px; }
  .cmp-h2 { font-size: 30px; letter-spacing: -0.6px; }
}

/* ============================================================ */
/* ============== MOBILE - Phones (≤ 767px) =================== */
/* ============================================================ */
@media (max-width: 767px) {
  html { -webkit-text-size-adjust: 100%; }
  /* FIX (lock 2026-05-24): use `overflow-x: clip` instead of `hidden`.
     `overflow-x: hidden` implicitly forces `overflow-y: auto` on iOS Safari,
     which creates a non-viewport scroll container and breaks `position: sticky`
     on the header. `clip` prevents horizontal scroll without creating a scroll
     container, so the sticky header keeps working on mobile.
     Fallback: still set `hidden` for older browsers (Safari < 16) where `clip` is unsupported. */
  body { overflow-x: hidden; overflow-x: clip; }

  /* --- Show mobile-specific UI --- */
  .mobile-menu-btn { display: inline-flex; }
  .sticky-cta { display: none !important; }

  /* --- Global type/section --- */
  .section { padding: 56px 20px; }
  .section-h2, .ww-header h2.section-h2, .hw-header h2.section-h2 {
    font-size: 28px; line-height: 1.15; letter-spacing: -0.6px;
  }
  .section-eyebrow { font-size: 11px; }
  .section-sub { font-size: 14px; line-height: 1.55; }

  /* --- Announcement --- */
  .announcement { padding: 9px 0; font-size: 12px; }

  /* --- Header (already shrunk in ≤1023px block) --- */

  /* --- Hero V1 (Editorial Split - image first on mobile) --- */
  .hero-v7.hero-2 {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }
  .hero-v7 .h7-product {
    order: -1;
    background: #D6E0EC !important;
  }
  .hero-v7 .hero-text {
    order: 2;
    padding: 35px 20px 27px;
  }
  .hero-v7 .h2b-rating { display: none; }
  .hero-v7 .h2-eyebrow { font-weight: 700; color: var(--accent-blue-deep); }
  .hero-v7 .h7-headline { font-size: 28px; line-height: 1.0; letter-spacing: -0.7px; }
  .hero-v7 .h7-pillar { font-size: 28px; margin-bottom: 4px; display: block; }
  .hero-v7 .h7-sub { font-size: 14px; margin-bottom: 18px; line-height: 1.5; }
  .hero-v7 .h7-format { font-size: 13px; margin-top: 8px; display: inline-block; }
  .hero-v7 .h2b-rating { margin-bottom: 14px; }
  .hero-v7 .h2-eyebrow { font-size: 11px; margin-bottom: 14px; }
  .hero-v7 .h7-ingredients { display: none; }
  .hero-v7 .h7-cta-row { flex-direction: row; align-items: flex-start; gap: 12px; }
  .hero-v7 .h7-cta {
    width: auto;
    align-self: flex-start;
    text-align: center;
    padding: 13px 28px;
    font-size: 11px;
    border-radius: 8px;
    letter-spacing: 1px;
  }
  .hero-v7 .h7-trust {
    gap: 8px;
    padding-top: 24px;
    padding-bottom: 0;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
  }
  .hero-v7 .h7-trust-item {
    font-size: 9px;
    gap: 3px;
    white-space: nowrap;
    letter-spacing: -0.05px;
  }
  .hero-v7 .h7-trust-item svg { width: 10px; height: 10px; }
  .hero-v7.hero-2 .h7-product {
    min-height: 260px !important;
    padding: 18px 20px !important;
    width: 100% !important;
    max-width: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    align-self: stretch;
  }
  .hero-v7.hero-2 .h7-product .pouch-img,
  .hero-2 .h2-product .pouch-img {
    max-width: 195px !important;
    width: 100% !important;
    height: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    position: relative;
    z-index: 2;
  }

  /* Single circular badge top-right OVERLAPPING the pouch upper-right corner */
  .hero-v7 .h7-stat-card-1 {
    transform: none !important;
    top: calc(8% - 6px) !important;
    right: calc(22% + 12px) !important;
    bottom: auto !important;
    left: auto !important;
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    background: var(--accent-pill) !important;
    border: none !important;
    box-shadow: 0 5px 14px -5px rgba(95,145,213,0.5) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 2px 3px !important;
    min-width: 0 !important;
    animation: none !important;
    z-index: 5;
  }
  .hero-v7 .h7-stat-card-1 .h7-stat-num {
    color: var(--white) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    margin-bottom: -2px !important;
  }
  .hero-v7 .h7-stat-card-1 .h7-stat-num span {
    color: var(--white) !important;
    font-size: 9px !important;
    font-weight: 600 !important;
  }
  .hero-v7 .h7-stat-card-1 .h7-stat-label {
    color: var(--white) !important;
    font-size: 6px !important;
    font-weight: 600 !important;
    letter-spacing: 0.1px !important;
    text-transform: uppercase !important;
    line-height: 1.15 !important;
    opacity: 1 !important;
  }
  .hero-v7 .h7-stat-card-2,
  .hero-v7 .h7-stat-card-3,
  .hero-v7 .h7-stat-card-4 { display: none !important; }

  /* --- Hero V3 (Premium Editorial) --- */
  .hero-v9 .h9-inner { grid-template-columns: 1fr !important; padding: 18px 20px 22px; gap: 20px; box-sizing: border-box !important; }
  .hero-v9 .h9-text { width: 100% !important; min-width: 0 !important; max-width: 100% !important; box-sizing: border-box !important; align-items: center !important; text-align: center !important; }
  .hero-v9 .h9-decor { background: var(--bg-card) !important; }
  .hero-v9 .h9-decor::after { display: none !important; }
  .hero-v9 .h9-meta-row { display: none !important; }
  .hero-v9 .h9-eyebrow { font-weight: 700; margin-top: 0; margin-bottom: 12px; }
  .hero-v9 .h9-headline { font-size: 32px; line-height: 1.06; letter-spacing: -0.8px; }
  .hero-v9 .h9-sub { font-size: 14px; }
  .hero-v9 .h9-format { display: none !important; }
  .hero-v9 .h9-format-mobile { display: none !important; }
  .hero-v9 .h9-ingredients { display: none; }
  .hero-v9 .h9-pouch-mobile {
    display: block !important;
    max-width: 180px;
    width: 65%;
    height: auto;
    margin: -1px auto 27px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .hero-v9 .h9-cta-row { flex-direction: column; align-items: center; gap: 12px; margin-bottom: 24px; }
  .hero-v9 .h9-cta-primary {
    width: auto;
    align-self: center;
    text-align: center;
    padding: 13px 40px;
    border-radius: 8px !important;
    font-size: 11px;
    letter-spacing: 1px;
  }
  .hero-v9 .h9-cta-secondary { display: none !important; }
  .hero-v9 .h9-visual { display: none !important; }
  .hero-v9 .h9-quote-card { display: none !important; }
  .hero-v9 .h9-stat-card { display: none !important; }
  .hero-v9 .h9-trust {
    gap: 14px;
    padding-top: 23px;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
  }
  .hero-v9 .h9-trust-item {
    font-size: 9px;
    gap: 3px;
    white-space: nowrap;
    letter-spacing: -0.05px;
  }
  .hero-v9 .h9-trust-item svg { width: 10px; height: 10px; }

  /* --- Real Stories Strip --- */
  .real-stories { padding: 48px 0 32px; }
  .rs-content { padding: 0 20px 6px; margin-bottom: 0; }
  .rs-h2 { font-size: 26px; letter-spacing: -0.5px; }
  .rs-sub { font-size: 13px; line-height: 1.5; }
  .rs-marquee { margin-top: 14px; }
  .rs-photo { width: 148px !important; height: 148px !important; flex-shrink: 0; }

  /* --- Featured Review Carousel --- */
  .featured-reviews { padding: 36px 0 36px; }
  .fr-header { display: none !important; }
  .fr-track-wrap { padding: 0 16px; }
  .fr-track {
    gap: 12px;
    padding: 6px 0 22px;
  }
  .fr-card {
    flex: 0 0 calc(100% - 36px);
    min-width: 0;
    padding: 18px 18px 16px;
    gap: 11px;
    border-radius: 12px;
  }
  .fr-title { font-size: 16px; line-height: 1.25; letter-spacing: -0.3px; }
  .fr-quote { font-size: 14.5px; line-height: 1.6; }
  .fr-meta { flex-wrap: wrap; gap: 8px; }
  .fr-name { font-size: 11px; }
  .fr-verified { font-size: 11px; }
  .fr-tag { font-size: 10.5px; padding: 4px 9px; }
  .fr-nav { gap: 14px; margin-top: 0; }
  .fr-arrow { width: 36px; height: 36px; }
  .fr-rating { padding: 4px 9px; }
  .fr-rating-num { font-size: 12px; }
  .fr-rating-stars { font-size: 11px; }
  .fr-avatar { width: 26px; height: 26px; }

  /* --- Comparison Table (mobile fits full viewport, no overflow) --- */
  .comparison { padding: 70px 14px; }
  .cmp-header { margin-bottom: 22px; padding: 0 6px; }
  .cmp-eyebrow { font-size: 10.5px; letter-spacing: 1.8px; margin-bottom: 8px; }
  .cmp-h2 { font-size: 23px; letter-spacing: -0.4px; margin-bottom: 10px; line-height: 1.18; }
  .cmp-sub { font-size: 13px; line-height: 1.5; }
  .cmp-scroll { margin: 0; padding: 0; overflow: visible; }
  .cmp-table {
    min-width: 0 !important;
    width: 100% !important;
    table-layout: fixed;
  }
  .cmp-table th, .cmp-table td { padding: 11px 4px; font-size: 11.5px; }
  .cmp-table th { font-size: 9.5px; letter-spacing: 0.8px; padding: 14px 3px 10px; }
  .cmp-row-label { padding-left: 6px !important; padding-right: 4px !important; font-size: 10.5px !important; width: 40% !important; line-height: 1.25; }
  .cmp-table thead th:not(.cmp-row-label):not(.cmp-col-myotide-head),
  .cmp-table tbody td:not(.cmp-row-label):not(.cmp-col-myotide) { width: 20% !important; }
  .cmp-col-myotide-head, .cmp-col-myotide { width: 20% !important; }
  .cmp-yes, .cmp-no, .cmp-partial { width: 22px; height: 22px; font-size: 12px; }
  .cmp-table th { padding: 40px 2px 14px; }
  .cmp-col-myotide-head { font-size: 10.5px !important; letter-spacing: 0.8px !important; padding-top: 40px !important; padding-bottom: 14px !important; }
  .cmp-myo-mark { width: 20px; top: 12px; }
  .cmp-table tbody tr:last-child td.cmp-col-myotide { padding-bottom: 22px !important; }
  .cmp-price-myotide { font-size: 12.5px !important; }
  .cmp-price-myotide small { font-size: 8px; letter-spacing: 0.4px; }
  .cmp-price { font-size: 11px !important; }
  .cmp-foot { font-size: 12px; margin-top: 18px; padding: 0 8px; }

  /* --- Problem / Solution --- */
  .ps-grid { grid-template-columns: 1fr; gap: 16px; max-width: 100%; }
  .ps-card { padding: 32px 24px; min-height: auto; }
  .ps-card h3 { font-size: 24px; letter-spacing: -0.4px; }
  .ps-card p { font-size: 14px; max-width: 100%; }
  .ps-card .stat { font-size: 44px; margin: 20px 0 8px; }
  .ps-card .stat-label { font-size: 12px; }
  .ps-card .btn {
    align-self: flex-start;
    padding: 13px 28px;
    font-size: 11px;
    border-radius: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: auto;
    margin-top: 14px;
  }

  /* --- Chart --- */
  section.chart-section { padding: 70px 16px; }
  .chart-header { padding: 0 4px; }
  .chart-card {
    padding: 16px 8px 12px;
    overflow: visible;
  }
  .chart-card svg {
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    display: block;
  }
  /* Inflate SVG inner font-sizes for mobile readability since SVG scales down ~3x */
  .chart-card svg text { font-size: 22px !important; }
  .chart-card svg text[font-weight="700"] { font-size: 28px !important; }
  .chart-card svg text[font-weight="400"] { font-size: 18px !important; }
  /* Mobile: hide desktop tooltips, show mobile tooltips */
  .chart-tt-desktop { display: none !important; }
  .chart-tt-mobile { display: inline !important; }
  .chart-legend {
    grid-template-columns: 24px auto auto 1fr !important;
    column-gap: 14px !important;
    row-gap: 6px !important;
    margin-top: 16px;
    padding: 0 8px;
    font-size: 12px;
    justify-content: start !important;
  }
  .chart-legend .legend-line { width: 24px !important; }
  .chart-legend .legend-line.dashed { background: repeating-linear-gradient(to right, #E04545 0 6px, transparent 6px 9px) !important; }
  .chart-legend .legend-desc { white-space: normal; }
  .chart-legend .legend-arrow { font-size: 13px; }

  /* --- Why MYOTIDE / Ingredients --- */
  .ww-header { padding: 0 4px; gap: 16px; }
  .ww-cards { grid-template-columns: 1fr !important; gap: 12px; }
  .ingredient-card { padding: 20px 20px 18px; min-height: 170px !important; }
  .ingredient-card-hero { padding-top: 30px; padding-bottom: 18px; min-height: 170px !important; }
  .ic-image { width: 60px !important; height: 60px !important; }
  .ic-title { font-size: 16px; }
  .ic-dose { font-size: 13px; }
  .ic-function { font-size: 13px; line-height: 1.55; }
  .ic-hero-badge { font-size: 9.5px; padding: 5px 12px; letter-spacing: 0.7px; }
  .ic-top { gap: 6px; align-items: center; }

  /* --- How It Works (Timeline) --- */
  .how-works { padding: 48px 16px; }
  .hw-header { padding: 0 4px; gap: 14px; grid-template-columns: 1fr !important; }
  .vb-timeline { padding: 32px 0 0; }
  .vb-line { left: 22px !important; right: auto !important; }
  .vb-step {
    grid-template-columns: 44px 1fr !important;
    gap: 14px;
    margin-bottom: 22px;
  }
  .vb-step.vb-left, .vb-step.vb-right {
    grid-template-columns: 44px 1fr !important;
    direction: ltr;
  }
  .vb-step.vb-left .vb-card, .vb-step.vb-right .vb-card {
    grid-column: 2 !important;
    grid-row: 1 !important;
    text-align: left;
  }
  .vb-step.vb-left .vb-marker, .vb-step.vb-right .vb-marker {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: center;
    align-self: center !important;
  }
  .variant-b .vb-step { align-items: center !important; }
  .variant-b .vb-marker { width: 44px !important; height: 44px !important; font-size: 16px; align-self: center !important; }
  .vb-card { padding: 20px; border-radius: 12px; }
  .vb-week { font-size: 11px; letter-spacing: 1px; }
  .vb-card h4 { font-size: 17px; letter-spacing: -0.3px; }
  .vb-card p { font-size: 13px; line-height: 1.55; }

  /* --- Preserve Stack --- */
  .preserve-stack { padding: 32px 16px 56px; }
  .ps-wrap {
    grid-template-columns: 1fr !important;
    padding: 32px 24px;
    gap: 28px;
    border-radius: 10px;
  }
  .ps-h2 { font-size: 28px; letter-spacing: -0.6px; }
  .ps-sub-text { font-size: 14px; max-width: 100%; }
  .ps-benefits { grid-template-columns: 1fr !important; gap: 12px; }
  .ps-b-text strong { font-size: 13px; }
  .ps-b-text span { font-size: 11px; }
  .ps-cta { padding: 18px 24px; font-size: 13px; width: 100%; }
  .ps-cta-arrow { font-size: 17px; }
  .ps-right {
    background: var(--bg);
    min-height: auto;
    padding: 32px 20px 16px;
    order: -1;
  }
  .ps-pouch { max-width: 200px; }
  .ps-dots { margin-top: 18px; }

  /* --- Reviews --- */
  .reviews { padding: 48px 16px 56px; }
  .rv-header { margin-bottom: 32px; }
  .rv-h2 { font-size: 28px; letter-spacing: -0.6px; }
  .rv-eyebrow { font-size: 10px; letter-spacing: 1px; }
  .rv-eyebrow::before, .rv-eyebrow::after { width: 18px; }
  .rv-meta { font-size: 12px; }
  .rv-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .rv-card { padding: 22px 20px 18px; }
  .rv-card-quote { font-size: 14px; line-height: 1.55; margin-bottom: 18px; }
  .rv-card-attr { padding-top: 14px; gap: 10px; }
  .rv-card-avatar { width: 44px; height: 44px; }
  .rv-card-name { font-size: 12.5px; }
  .rv-card-cohort { font-size: 11px; }
  .rv-footer { font-size: 11px; margin-top: 24px; }

  /* --- FAQ --- */
  .faq { padding: 48px 16px 32px; }
  .faq-header { margin-bottom: 24px; }
  .faq-list { padding: 0; }
  .faq-item { padding: 16px 4px; }
  .faq-item summary { font-size: 14px; padding-right: 28px; line-height: 1.4; letter-spacing: -0.2px; }
  .faq-item p { font-size: 13px; line-height: 1.55; }

  /* --- Footer --- */
  .footer { padding: 48px 20px 8px; }
  .footer-inner { grid-template-columns: 1fr 1fr !important; gap: 28px 16px !important; margin-bottom: 24px; }
  .footer-inner > div:first-child { grid-column: 1 / -1; }
  .footer-brand-name { font-size: 20px; }
  .footer-tagline { font-size: 13px; max-width: 100%; }
  .footer h4 { font-size: 12px; letter-spacing: 1.2px; }
  .footer li { font-size: 14px; }
  .footer-bottom { font-size: 11px; flex-direction: column; gap: 12px; align-items: flex-start; padding-top: 24px; }

  /* --- No sticky CTA, no extra body padding --- */
  body { padding-bottom: 0; }
}

/* ============================================================ */
/* =========== MOBILE - Small (≤ 400px / iPhone SE) =========== */
/* ============================================================ */
@media (max-width: 400px) {
  .section { padding: 48px 14px; }
  .preserve-stack, .reviews, .faq, .real-stories, .chart-section { padding-left: 14px; padding-right: 14px; }

  /* --- Donut Split Chart --- */
  .split-chart { padding: 48px 16px 56px; }
  .split-header { margin-bottom: 28px; }
  .split-eyebrow { font-size: 10.5px; letter-spacing: 1.8px; }
  .split-h2 { font-size: 26px; letter-spacing: -0.4px; line-height: 1.15; margin-bottom: 10px; }
  .split-sub { font-size: 13px; line-height: 1.5; }
  .split-pair { grid-template-columns: 1fr; gap: 16px; margin-bottom: 20px; }
  .split-card { padding: 28px 22px 24px; border-radius: 14px; }
  .split-donut-wrap { width: 160px; height: 160px; margin-bottom: 16px; }
  .split-donut-pct { font-size: 38px; letter-spacing: -1px; }
  .split-donut-cap { font-size: 10px; }
  .split-card-h3 { font-size: 17px; }
  .split-card-sub { font-size: 12.5px; }
  .split-legend { gap: 14px; font-size: 12px; }
  .split-foot { font-size: 12px; padding: 0 8px; }

  /* --- Comparison Table --- */
  .comparison { padding: 70px 14px; }
  .cmp-header { margin-bottom: 22px; padding: 0 6px; }
  .cmp-eyebrow { font-size: 10.5px; letter-spacing: 1.8px; margin-bottom: 8px; }
  .cmp-h2 { font-size: 23px; letter-spacing: -0.4px; margin-bottom: 10px; line-height: 1.18; }
  .cmp-sub { font-size: 13px; line-height: 1.5; }
  .cmp-scroll {
    margin: 0;
    padding: 0;
    overflow: visible;
  }
  .cmp-table {
    min-width: 0 !important;
    width: 100% !important;
    table-layout: fixed;
  }
  .cmp-table th, .cmp-table td { padding: 11px 4px; font-size: 11.5px; }
  .cmp-table th { font-size: 9px; letter-spacing: 0.8px; padding: 14px 3px 10px; }
  .cmp-row-label { padding-left: 6px !important; padding-right: 4px !important; font-size: 10.5px !important; width: 40% !important; line-height: 1.25; }
  .cmp-table thead th:not(.cmp-row-label):not(.cmp-col-myotide-head),
  .cmp-table tbody td:not(.cmp-row-label):not(.cmp-col-myotide) { width: 20% !important; }
  .cmp-col-myotide-head, .cmp-col-myotide { width: 20% !important; }
  .cmp-yes, .cmp-no, .cmp-partial { width: 22px; height: 22px; font-size: 12px; }
  .cmp-table th { padding: 40px 2px 14px; }
  .cmp-col-myotide-head { font-size: 10.5px !important; letter-spacing: 0.8px !important; padding-top: 40px !important; padding-bottom: 14px !important; }
  .cmp-myo-mark { width: 20px; top: 12px; }
  .cmp-table tbody tr:last-child td.cmp-col-myotide { padding-bottom: 22px !important; }
  .cmp-price-myotide { font-size: 12.5px !important; }
  .cmp-price-myotide small { font-size: 8px; letter-spacing: 0.4px; }
  .cmp-price { font-size: 11px !important; }
  .cmp-foot { font-size: 12px; margin-top: 18px; padding: 0 8px; }
  .hero-v7 .h7-headline, .hero-v9 .h9-headline { font-size: 30px; }
  .section-h2, .ps-h2, .rv-h2 { font-size: 24px; }
  .hero-v7.hero-2 .h7-product { padding: 14px !important; min-height: 234px !important; }
  .hero-v7.hero-2 .h7-product .pouch-img { max-width: 170px !important; }
  .h7-stat-card { transform: scale(0.6) !important; }
  .ps-benefits { grid-template-columns: 1fr !important; }
  .vb-card { padding: 16px; }
  .rv-card { padding: 20px 18px 16px; }
  .ingredient-card { padding: 18px 18px 16px; min-height: 160px !important; }
  .ingredient-card-hero { padding-top: 26px; padding-bottom: 16px; min-height: 160px !important; }
  .sticky-cta { padding: 12px 14px calc(env(safe-area-inset-bottom, 10px) + 12px); font-size: 12px; }
  .sticky-cta-meta { display: none; }
}

/* ============================================================ */
/* PRODUCT PAGE - NEW SECTIONS                                  */
/* ============================================================ */

/* ====== PDP HERO + PRICING-BOX ====== */
.pdp-hero {
  background: var(--bg);
  padding: 36px 32px 64px;
  border-bottom: 1px solid var(--line-soft);
}
.pdp-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: start;
}

/* === Left: Gallery === */
.pdp-gallery {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pdp-gallery-main {
  aspect-ratio: 1 / 1;
  background: var(--bg-card);
  border-radius: 18px;
  overflow: hidden;
  display: block;
  padding: 0;
  position: relative;
}
/* Desktop: slides stacked, fade between active states (thumb-click driven) */
.pdp-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.pdp-slide.active { opacity: 1; pointer-events: auto; }
.pdp-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Mobile (≤768px): main gallery becomes horizontal scroll-snap carousel —
   all 7 slides side-by-side, swipeable. Active class no longer drives
   visibility; instead, scroll position does. */
@media (max-width: 768px) {
  .pdp-gallery-main {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .pdp-gallery-main::-webkit-scrollbar { display: none; }
  .pdp-slide {
    position: static;
    flex: 0 0 100%;
    opacity: 1;
    pointer-events: auto;
    scroll-snap-align: start;
    transition: none;
  }
}
.pdp-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.pdp-thumb {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1.5px solid transparent;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.15s ease, transform 0.15s ease;
  width: 100%;
}
/* Mobile (≤768px): switch from grid to horizontal scroll-snap row.
   Each thumb sized so 6 fit in viewport — 7th (and any future ones)
   are reachable by horizontal swipe. */
@media (max-width: 768px) {
  .pdp-gallery-thumbs {
    display: flex;
    grid-template-columns: none;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 16px;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    /* Hide scrollbar visually but keep functional */
    scrollbar-width: none;
  }
  .pdp-gallery-thumbs::-webkit-scrollbar { display: none; }
  .pdp-thumb {
    flex: 0 0 calc((100% - 30px) / 6); /* 6 cards visible with 5x 6px gaps */
    scroll-snap-align: start;
    width: auto;
  }
}
.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pdp-thumb:hover { border-color: var(--accent-pill); }
.pdp-thumb.active { border-color: var(--accent-blue-deep); }

/* === Right: Purchase Column === */
.pdp-purchase {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}
.pdp-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.pdp-stars {
  color: #F0A500;
  font-size: 15px;
  letter-spacing: 1.5px;
}
.pdp-rating-text {
  color: var(--text-soft);
}
.pdp-rating-text strong {
  color: var(--text);
  font-weight: 700;
}
.pdp-title {
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -1.4px;
  line-height: 1.05;
  color: var(--text);
  margin-top: 2px;
}
.pdp-title sup {
  font-size: 16px;
  font-weight: 500;
  vertical-align: super;
  letter-spacing: 0;
  color: var(--text-soft);
}
.pdp-subtitle {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.55;
  font-weight: 400;
  max-width: 480px;
}
.pdp-quick-bullets {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 4px;
}
.pdp-quick-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}
.pdp-quick-bullets svg {
  color: var(--accent-blue-deep);
  flex-shrink: 0;
}
.pdp-ingredients-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  margin-top: 2px;
  align-self: flex-start;
  transition: color 0.12s ease;
  cursor: pointer;
}
.pdp-ingredients-link:hover {
  color: var(--text);
}
button.pdp-ingredients-link {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
}

/* Ingredients Popup Modal */
.pdp-ing-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(20, 18, 15, 0.55);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  animation: pdp-ing-fade-in 0.18s ease;
}
.pdp-ing-modal.open { display: flex; }
@keyframes pdp-ing-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.pdp-ing-modal-card {
  background: var(--white);
  border-radius: 16px;
  max-width: 480px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 28px;
  position: relative;
  box-shadow: 0 18px 48px rgba(0,0,0,0.18);
  animation: pdp-ing-slide-up 0.22s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes pdp-ing-slide-up {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.pdp-ing-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  font-size: 18px;
  color: var(--text);
  transition: background 0.12s ease;
}
.pdp-ing-close:hover { background: var(--line); }
.pdp-ing-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-blue-deep);
  margin-bottom: 6px;
}
.pdp-ing-title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.6px;
  color: var(--text);
  margin: 0 0 4px;
  line-height: 1.15;
}
.pdp-ing-sub {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 18px;
  line-height: 1.5;
}
.pdp-ing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pdp-ing-list li {
  padding: 13px 0;
  border-top: 1px solid var(--line-soft);
}
.pdp-ing-list li:last-child { padding-bottom: 4px; }
.pdp-ing-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.pdp-ing-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.pdp-ing-dose {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-blue-deep);
  white-space: nowrap;
}
.pdp-ing-fn {
  font-size: 12.5px;
  color: var(--text-soft);
  line-height: 1.5;
  margin-top: 3px;
}
.pdp-ing-footnote {
  font-size: 11.5px;
  color: var(--text-mute);
  margin-top: 14px;
  text-align: center;
  font-style: italic;
}

.pdp-rec-use {
  background: #F1F6FD;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-soft);
  margin-top: 6px;
  text-align: center;
}
.pdp-rec-use strong {
  color: var(--text);
  font-weight: 700;
}

/* === Plan heading === */
.pdp-plan-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  scroll-margin-top: 90px;
}
.pdp-plan-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
}
.pdp-plan-meta {
  font-size: 12px;
  color: var(--text-soft);
}

/* === Plans === */
.pdp-plans {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 2px;
}
.pdp-plan {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: start;
  gap: 14px;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.pdp-plan:hover {
  border-color: var(--accent-pill);
}
.pdp-plan-selected {
  border-color: var(--accent-blue-deep);
  background: #F1F6FD;
}
.pdp-plan-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pdp-plan-radio-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--white);
  display: block;
  position: relative;
  flex-shrink: 0;
  margin-top: 4px;
  transition: border-color 0.15s ease;
}
.pdp-plan-selected .pdp-plan-radio-circle {
  border-color: var(--accent-blue-deep);
}
.pdp-plan-selected .pdp-plan-radio-circle::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--accent-blue-deep);
}
.pdp-plan-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.pdp-plan-line1 {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pdp-plan-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.2px;
  min-width: 72px;
}
.pdp-plan-corner-badge {
  position: absolute;
  top: -9px;
  right: 14px;
  padding: 4px 9px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 4px;
  white-space: nowrap;
  line-height: 1;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.pdp-plan-line2 {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.35;
}
.pdp-plan-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4.45px 7px 1.55px;
  border-radius: 4px;
  white-space: nowrap;
  line-height: 1;
}
.pdp-badge-save {
  background: #00b67a;
  color: #fff;
}
.pdp-badge-popular {
  background: var(--accent-blue-deep);
  color: #fff;
}
.pdp-badge-best {
  background: var(--accent-blue-deep);
  color: #fff;
}
.pdp-plan-price {
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.pdp-plan-pm {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.3px;
  line-height: 1;
}
.pdp-plan-pm span {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0;
}
.pdp-plan-strike {
  font-size: 12px;
  color: var(--text-mute);
  text-decoration: line-through;
  margin-top: 4px;
}
.pdp-plan-save {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #00b67a;
  margin-top: 2px;
}

/* === Free Gifts === */
.pdp-gifts {
  background: #FFF8E1;
  border: 1px solid #F5DC85;
  border-radius: 10px;
  padding: 12px 14px;
  margin-top: 6px;
}
.pdp-gifts-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.pdp-gifts-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #a07020;
  flex-shrink: 0;
}
.pdp-gifts-title {
  flex: 1;
  line-height: 1.25;
}
.pdp-gifts-value {
  font-size: 10.5px;
  font-weight: 700;
  color: #a07020;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: rgba(160,112,32,0.12);
  padding: 3px 6px;
  border-radius: 4px;
  white-space: nowrap;
}
.pdp-gifts-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.pdp-gifts-list li {
  font-size: 12.5px;
  color: var(--text-soft);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.pdp-gifts-list strong {
  font-weight: 600;
  color: var(--text);
}
.pdp-gifts-list span {
  color: var(--text-mute);
  font-size: 11.5px;
  font-weight: 500;
}

/* Gift Cards (dashed-border, flex-width) */
.pdp-gifts-grid {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.pdp-gift-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px dashed rgba(160, 112, 32, 0.32);
  border-radius: 9px;
  padding: 8px 6px 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
}
.pdp-gift-img {
  width: 56px;
  height: 56px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pdp-gift-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(20, 18, 15, 0.12));
  /* iOS-Safari sharpness hint */
  image-rendering: -webkit-optimize-contrast;
}
.pdp-gift-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  min-width: 0;
}
.pdp-gift-name {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.1px;
}
.pdp-gift-value {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--accent-gold, #a07020);
  letter-spacing: 0.2px;
  margin-top: 2px;
}

/* Variant Label (dev-only · for compare) */
.pdp-gifts { position: relative; }
.pdp-gifts-variant-label {
  position: absolute;
  top: -10px;
  left: 14px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent-blue-deep);
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 1;
}
.pdp-gifts + .pdp-gifts { margin-top: 14px; }

/* === OPTION B - Flat cards, value below === */
.pdp-gifts-grid-b {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.pdp-gift-card-b {
  background: var(--white);
  border-radius: 9px;
  padding: 8px 6px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.pdp-gift-b-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--bg-card);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp-gift-b-img img { width: 100%; height: 100%; object-fit: contain; }
.pdp-gift-b-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-top: 2px;
}
.pdp-gift-b-val {
  font-size: 9.5px;
  font-weight: 700;
  color: #8a5e0d;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* === OPTION C - Horizontal rows === */
.pdp-gifts-grid-c {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pdp-gift-card-c {
  background: rgba(255,255,255,0.55);
  border-radius: 9px;
  padding: 7px 10px 7px 7px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pdp-gift-c-img {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pdp-gift-c-img img { width: 100%; height: 100%; object-fit: contain; }
.pdp-gift-c-text {
  flex: 1;
  min-width: 0;
}
.pdp-gift-c-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.1px;
  line-height: 1.15;
}
.pdp-gift-c-sub {
  font-size: 10.5px;
  color: var(--text-soft);
  margin-top: 1px;
  line-height: 1.25;
}
.pdp-gift-c-val {
  font-size: 12px;
  font-weight: 700;
  color: #8a5e0d;
  flex-shrink: 0;
}

/* === CTAs === */
.pdp-cta-primary {
  width: 100%;
  background: var(--text);
  color: var(--white);
  padding: 17px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  transition: opacity 0.12s ease, transform 0.12s ease;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}
.pdp-cta-primary:hover {
  opacity: 0.92;
  transform: scale(1.005);
}
.pdp-cta-divider {
  opacity: 0.4;
}
.pdp-cta-total {
  font-weight: 700;
  letter-spacing: 0.6px;
}
.pdp-cta-onetime {
  width: 100%;
  background: transparent;
  color: var(--text-soft);
  padding: 8px 12px;
  font-size: 12.5px;
  font-weight: 500;
  margin-top: -2px;
  transition: color 0.12s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}
.pdp-cta-onetime span:first-child {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pdp-cta-onetime:hover {
  color: var(--text);
}
.pdp-onetime-arrow {
  font-size: 14px;
  opacity: 0.7;
}

/* === Trust Bar Variants === */
.pdp-variant-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ff4a5c;
  margin-top: 14px;
  padding-bottom: 4px;
  border-bottom: 1px dashed #ff4a5c44;
}
.pdp-variant-label-c {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ff4a5c;
  text-align: center;
  padding: 16px 0 6px;
  background: var(--bg);
}

/* Variant A: Icon-Row */
.pdp-trust {
  list-style: none;
  padding: 20px 0 4px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 10px;
  border-top: 1px solid var(--line-soft);
}
.pdp-trust li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 8px;
  padding: 0 6px;
  position: relative;
}
.pdp-trust li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: var(--line-soft);
}
.pdp-trust-icon {
  color: var(--accent-blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px;
}
.pdp-trust-icon svg {
  width: 24px;
  height: 24px;
}
.pdp-trust-label {
  font-size: 10.5px;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.15px;
  line-height: 1.3;
}

/* Variant B: Floating Pills */
.pdp-trust-b {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 14px;
}
.pdp-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #F1F6FD;
  color: var(--accent-blue-deep);
  padding: 6px 10px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 600;
  border: 1px solid #DCE7F7;
}
.pdp-trust-pill svg {
  flex-shrink: 0;
}

/* Variant C: Page-spanning Trust-Strip */
.pdp-trust-c {
  background: var(--bg-card);
  padding: 22px 32px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.pdp-trust-c-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pdp-trust-c-item {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.pdp-trust-c-item + .pdp-trust-c-item::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--line-soft);
}
.pdp-trust-c-item svg {
  color: var(--accent-blue-deep);
  flex-shrink: 0;
}
.pdp-trust-c-item div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.pdp-trust-c-item strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.pdp-trust-c-item span {
  font-size: 11.5px;
  color: var(--text-soft);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .pdp-trust-c {
    padding: 16px;
  }
  .pdp-trust-c-inner {
    grid-template-columns: 1fr 1fr;
    gap: 14px 12px;
  }
  .pdp-trust-c-item + .pdp-trust-c-item::before { display: none; }
  .pdp-trust-c-item svg { width: 22px; height: 22px; }
  .pdp-trust-c-item strong { font-size: 12px; }
  .pdp-trust-c-item span { font-size: 10.5px; }
}

/* ====== PDP QUICK BENEFITS BAR ====== */
.pdp-quickbar {
  background: var(--bg-card);
  padding: 28px 32px;
  border-bottom: 1px solid var(--line-soft);
}
.pdp-quickbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pdp-quickbar-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pdp-quickbar-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue-deep);
}
.pdp-quickbar-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.pdp-quickbar-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.2px;
}
.pdp-quickbar-text span {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.3;
}

/* ====== BACKED BY EXPERTS ====== */
.pdp-experts {
  background: var(--bg-card);
  padding: 72px 24px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.pdp-experts-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pdp-experts-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.pdp-experts-h2 {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.12;
  color: var(--text);
  margin: 12px 0 12px;
}
.pdp-experts-h2 em {
  font-style: italic;
  color: var(--accent-blue-deep);
}
.pdp-experts-sub {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.55;
}
.pdp-experts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pdp-expert-card {
  background: var(--white);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 6px 18px rgba(20,18,15,0.04);
  border: 1px solid var(--line-soft);
}
.pdp-expert-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-card);
}
.pdp-expert-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pdp-expert-body {
  flex: 1;
  min-width: 0;
}
.pdp-expert-quote {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 14px;
  position: relative;
  padding-left: 14px;
  border-left: 3px solid var(--accent-blue-deep);
}
.pdp-expert-quote strong {
  font-weight: 700;
  color: var(--accent-blue-deep);
}
.pdp-expert-attr {
  border-top: 1px solid var(--line-soft);
  padding-top: 10px;
}
.pdp-expert-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.2px;
}
.pdp-expert-role {
  font-size: 11.5px;
  color: var(--text-soft);
  margin-top: 2px;
  line-height: 1.4;
}
@media (max-width: 760px) {
  .pdp-experts { padding: 48px 16px; }
  .pdp-experts-h2 { font-size: 26px; letter-spacing: -0.6px; }
  .pdp-experts-sub { font-size: 14px; }
  .pdp-experts-grid { grid-template-columns: 1fr; gap: 14px; }
  .pdp-expert-card { padding: 18px; gap: 14px; }
  .pdp-expert-photo { width: 64px; height: 64px; }
  .pdp-expert-quote { font-size: 13.5px; padding-left: 12px; }
  .pdp-expert-name { font-size: 13px; }
  .pdp-expert-role { font-size: 11px; }
}

/* ====== PDP REPEAT PRICING CTA ====== */
.pdp-repeat-cta {
  background: var(--bg-card);
  padding: 80px 24px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.pdp-repeat-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.pdp-repeat-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--accent-blue-deep);
}
.pdp-repeat-h2 {
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text);
}
.pdp-repeat-h2 em {
  font-style: italic;
  color: var(--accent-blue-deep);
  font-weight: 500;
}
.pdp-repeat-sub {
  font-size: 15px;
  color: var(--text-soft);
  max-width: 520px;
  line-height: 1.55;
}
.pdp-repeat-priceline {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 6px 0 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.pdp-repeat-priceline strong {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1.2px;
  color: var(--text);
}
.pdp-repeat-priceline .pm {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-soft);
}
.pdp-repeat-priceline .strike {
  font-size: 20px;
  color: var(--text-mute);
  text-decoration: line-through;
}
.pdp-repeat-cta-btn {
  background: var(--text);
  color: var(--white);
  padding: 17px 36px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  transition: opacity 0.12s ease, transform 0.12s ease;
  display: inline-block;
  text-decoration: none;
  margin-top: 6px;
}
.pdp-repeat-cta-btn:hover {
  opacity: 0.92;
  transform: scale(1.02);
}
.pdp-repeat-trust {
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 4px;
}

/* ====== PDP STICKY ADD-TO-CART BAR (mobile) ====== */
.pdp-sticky-cart {
  display: none;
}

/* ====== Tablet/Mobile responsive ====== */
@media (max-width: 1000px) {
  .pdp-hero {
    padding: 24px 24px 48px;
  }
  .pdp-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .pdp-gallery {
    position: static;
  }
  .pdp-gallery-main {
    padding: 24px;
  }
  .pdp-title {
    font-size: 32px;
    letter-spacing: -1.2px;
  }
  .pdp-title sup {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .pdp-hero {
    padding: 16px 16px 32px;
  }
  .pdp-hero-inner {
    gap: 20px;
  }
  .pdp-gallery-main {
    padding: 0;
    border-radius: 14px;
  }
  .pdp-gallery-thumbs {
    gap: 6px;
  }
  .pdp-thumb {
    border-radius: 7px;
  }
  .pdp-title {
    font-size: 26px;
    letter-spacing: -1px;
  }
  .pdp-subtitle {
    font-size: 14px;
  }
  .pdp-plan {
    grid-template-columns: 22px 1fr;
    gap: 10px;
    padding: 12px 14px;
  }
  .pdp-plan-price {
    grid-column: 1 / -1;
    text-align: left;
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    padding-left: 32px;
    margin-top: 2px;
  }
  .pdp-plan-pm { font-size: 16px; }
  .pdp-plan-strike, .pdp-plan-save { margin-top: 0; }
  .pdp-quickbar {
    padding: 20px 16px;
  }
  .pdp-quickbar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 16px;
  }
  .pdp-quickbar-icon {
    width: 36px;
    height: 36px;
  }
  .pdp-quickbar-icon svg { width: 18px; height: 18px; }
  .pdp-quickbar-text strong { font-size: 13px; }
  .pdp-quickbar-text span { font-size: 11.5px; }
  .pdp-repeat-cta { padding: 70px 16px; }
  .pdp-repeat-h2 { font-size: 24px; }
  .pdp-repeat-priceline strong { font-size: 30px; }
  .pdp-repeat-cta-btn { padding: 15px 28px; font-size: 13px; }

  /* === Sticky Add-to-Cart Bar shows on mobile === */
  .pdp-sticky-cart {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 20px rgba(0,0,0,0.06);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    gap: 10px;
    align-items: center;
    transform: translateY(110%);
    transition: transform 0.25s ease;
  }
  .pdp-sticky-cart.visible {
    transform: translateY(0);
  }
  .pdp-sticky-thumb {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pdp-sticky-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .pdp-sticky-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
  }
  .pdp-sticky-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .pdp-sticky-plan {
    font-size: 11px;
    color: var(--text-soft);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .pdp-sticky-cart-btn {
    background: var(--text);
    color: var(--white);
    padding: 14px 20px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    flex-shrink: 0;
    white-space: nowrap;
    cursor: pointer;
  }
  /* Reserve space ONLY while sticky-cart-bar is visible (JS adds
     body.has-sticky-cart on scroll-past-hero) — so non-PDP pages and the
     top of PDP have no dead whitespace, but the bar never hides the footer
     once it slides in. */
  body.has-sticky-cart { padding-bottom: 76px; }
}

@media (max-width: 480px) {
  .pdp-title { font-size: 22px; }
  .pdp-trust li { padding: 0 2px; }
  .pdp-trust-icon svg { width: 22px; height: 22px; }
  .pdp-trust-label { font-size: 9.5px; letter-spacing: 0; }
  .pdp-plan-line1 { gap: 5px; }
  .pdp-plan-badge { font-size: 9px; padding: 3.45px 6px 1.55px; }
  .pdp-gifts-head { flex-wrap: wrap; }
  .pdp-cta-primary { padding: 15px 18px; font-size: 13px; letter-spacing: 1.2px; }
}
