:root {
    --bg: #fdfaf4;
    --bg-alt: #f7f0e2;
    --card: #ffffff;
    --ink: #1a2b1f;
    --ink-soft: #4a5d4f;
    --muted: #6b7a70;
    --line: #e8ddc6;
    --line-soft: #f0e7d2;
    --cta: #2d7a3c;
    --cta-hover: #235f2f;
    --cta-soft: #e6f2e8;
    --accent: #b8841a;
    --accent-soft: #fbf0d8;
    --urgent: #b73a27;
    --urgent-soft: #fce8e4;
    --gold: #d4a73c;
    --radius: 14px;
    --radius-sm: 10px;
    --shadow-sm: 0 2px 8px rgba(26,43,31,.06);
    --shadow: 0 6px 22px rgba(26,43,31,.08);
    --shadow-lg: 0 14px 40px rgba(26,43,31,.12);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img { max-width: 100%; height: auto; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; border: none; cursor: pointer; background: none; }

  .wrap { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
  .wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 20px; }

  h1, h2, h3, h4 { font-family: 'Merriweather', Georgia, serif; line-height: 1.2; color: var(--ink); }
  h1 { font-size: clamp(2rem, 5.2vw, 3.4rem); font-weight: 900; letter-spacing: -.02em; }
  h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 900; letter-spacing: -.015em; }
  h3 { font-size: clamp(1.25rem, 2.6vw, 1.6rem); font-weight: 700; }
  .eyebrow {
    font-family: 'Quicksand', sans-serif;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: 12px;
    font-weight: 700;
    color: var(--cta);
    display: inline-block;
    margin-bottom: 14px;
  }
  em.hl { font-style: italic; color: var(--cta); font-weight: 900; }

  /* ============ TOP URGENCY BAR ============ */
  .top-bar {
    background: var(--ink);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 9px 14px;
    text-align: center;
    letter-spacing: .01em;
  }
  .top-bar strong { color: var(--gold); font-weight: 700; }
  .top-bar .sep { opacity: .45; margin: 0 10px; }
  .top-bar #countdown { display: inline-block; min-width: 68px; font-variant-numeric: tabular-nums; color: var(--gold); font-weight: 700; }
  @media (max-width: 600px) { .top-bar { font-size: 11.5px; } .top-bar .sep { margin: 0 6px; } }

  /* ============ HEADER ============ */
  .site-header {
    background: var(--bg);
    border-bottom: 1px solid var(--line-soft);
    padding: 14px 0;
    position: relative;
    z-index: 10;
  }
  .site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .logo {
    font-family: 'Merriweather', serif;
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -.02em;
    color: var(--ink);
  }
  .logo span { color: var(--cta); }
  .logo img{width: auto;max-height: 55px;}
  .header-trust {
    display: flex;
    gap: 22px;
    font-size: 12px;
    color: var(--ink-soft);
    align-items: center;
  }
  .header-trust > div { line-height: 1.2; }
  .header-trust strong { display: block; color: var(--ink); font-weight: 700; font-size: 13px; }
  .header-phone { display: flex; align-items: center; gap: 6px; font-weight: 700; color: var(--ink); }
  @media (max-width: 780px) {
    .header-trust > div:not(.header-phone) { display: none; }
  }

  /* ============ BREAKING BANNER ============ */
  .breaking {
    background: linear-gradient(135deg, #fcf3dc 0%, #fbe9c0 100%);
    border-top: 1px solid #e8d199;
    border-bottom: 1px solid #e8d199;
    padding: 14px 20px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #5a3f0e;
  }
  .breaking strong { color: var(--urgent); font-weight: 800; }
  @media (max-width: 600px) { .breaking { font-size: 13.5px; padding: 12px 16px; } }

  /* ============ TICKER ============ */
  .ticker-wrap {
    background: var(--ink);
    color: #f1ead8;
    overflow: hidden;
    padding: 10px 0;
    border-bottom: 1px solid #2a3b2f;
  }
  .ticker {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: tickerScroll 48s linear infinite;
    font-size: 13.5px;
    font-weight: 500;
  }
  .ticker span { padding: 0 22px; display: inline-block; }
  .ticker .dot { color: var(--gold); opacity: .6; }
  @keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ============ HERO ============ */
  .hero {
    padding: 56px 0 44px;
    background:
      radial-gradient(ellipse at top right, rgba(212,167,60,.08), transparent 60%),
      radial-gradient(ellipse at bottom left, rgba(45,122,60,.06), transparent 60%),
      var(--bg);
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
  }
  @media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 36px; } }
  .hero h1 { margin-bottom: 18px; }
  .hero-lede {
    font-size: 18px;
    color: var(--ink-soft);
    margin-bottom: 26px;
    max-width: 560px;
  }
  .hero-lede strong { color: var(--ink); font-weight: 700; }
  .hero-bullets {
    list-style: none;
    margin-bottom: 30px;
  }
  .hero-bullets li {
    padding: 8px 0;
    padding-left: 32px;
    position: relative;
    font-size: 15.5px;
    color: var(--ink);
  }
  .hero-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    width: 22px;
    height: 22px;
    background: var(--cta-soft);
    color: var(--cta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
  }

  .hero-product {
    position: relative;
    text-align: center;
  }
  .hero-product-img {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    filter: drop-shadow(0 30px 40px rgba(26,43,31,.15));
  }
  .hero-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 30px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-badge {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 12px 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
  }
  .hero-badge strong {
    display: block;
    font-family: 'Merriweather', serif;
    font-size: 22px;
    color: var(--cta);
    line-height: 1;
    margin-bottom: 4px;
  }
  .hero-badge span { font-size: 11px; color: var(--muted); font-weight: 500; letter-spacing: .03em; }

  /* ============ CTA BUTTONS ============ */
  .btn-cta {
    display: inline-block;
    background: var(--cta);
    color: #fff;
    padding: 18px 32px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: .01em;
    box-shadow: 0 8px 20px rgba(45,122,60,.28);
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    cursor: pointer;
    text-align: center;
    font-family: 'Inter', sans-serif;
  }
  .btn-cta:hover { background: var(--cta-hover); transform: translateY(-1px); box-shadow: 0 12px 26px rgba(45,122,60,.34); }
  .btn-cta.full { display: block; width: 100%; }
  .btn-cta.large { padding: 22px 40px; font-size: 19px; }
  .btn-cta .arrow { display: inline-block; margin-left: 6px; transition: transform .2s ease; }
  .btn-cta:hover .arrow { transform: translateX(4px); }
  .btn-meta {
    font-size: 12.5px;
    color: var(--muted);
    margin-top: 12px;
    text-align: center;
  }
  .btn-meta span { display: inline-block; margin: 0 8px; }

  /* ============ BUNDLES ============ */
  .bundles-section { padding: 50px 0; background: var(--bg); }
  .bundles-head { text-align: center; margin-bottom: 34px; }
  .bundles-head h2 { margin-bottom: 10px; }
  .bundles-head p { color: var(--muted); font-size: 15px; }

  .bundles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 28px;
  }
  @media (max-width: 860px) { .bundles { grid-template-columns: 1fr; } }

  .bundle {
    background: var(--card);
    border: 2px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 20px 22px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    cursor: pointer;
  }
  .bundle:hover { border-color: var(--cta); box-shadow: var(--shadow); transform: translateY(-2px); }
  .bundle.featured {
    border-color: var(--cta);
    background: linear-gradient(180deg, #f4fbf4 0%, #fff 60%);
    box-shadow: var(--shadow);
  }
  .bundle-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cta);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    white-space: nowrap;
  }
  .bundle-tag.gold { background: var(--gold); color: #3d2f0a; }
  .bundle-title { font-family: 'Merriweather', serif; font-weight: 900; font-size: 19px; margin-bottom: 4px; }
  .bundle-sub { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
  .bundle-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 6px;
  }
  .bundle-price .now { font-family: 'Merriweather', serif; font-size: 32px; font-weight: 900; color: var(--ink); }
  .bundle-price .per { font-size: 13px; color: var(--muted); }
  .bundle-price .was {
    text-decoration: line-through;
    color: var(--muted);
    font-size: 14px;
  }
  .bundle-save {
    display: inline-block;
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 700;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    margin-top: 6px;
    letter-spacing: .03em;
  }

  .bundle-perks {
    list-style: none;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed var(--line);
  }
  .bundle-perks li {
    font-size: 13px;
    color: var(--ink-soft);
    padding: 4px 0 4px 22px;
    position: relative;
  }
  .bundle-perks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--cta);
    font-weight: 900;
  }

  .bundles-trust {
    display: flex;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
    margin-top: 18px;
    font-size: 12.5px;
    color: var(--muted);
  }
  .bundles-trust span { display: flex; align-items: center; gap: 6px; }

  /* ============ FEATURED-IN ============ */
  .featured-in {
    padding: 30px 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
  }
  .featured-in-label {
    text-align: center;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 16px;
  }
  .featured-in-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 38px;
    flex-wrap: wrap;
    font-family: 'Merriweather', serif;
    font-weight: 900;
    font-size: 18px;
    color: var(--ink-soft);
    opacity: .55;
  }
  .featured-in-logos span { letter-spacing: .05em; }
  @media (max-width: 600px) { .featured-in-logos { gap: 22px; font-size: 15px; } }

  /* ============ SECTIONS GENERIC ============ */
  .section { padding: 70px 0; }
  .section.alt { background: var(--bg-alt); }
  .section.dark { background: var(--ink); color: #f1ead8; }
  .section.dark h2, .section.dark h3 { color: #fff; }
  .section-head { text-align: center; margin-bottom: 46px; max-width: 720px; margin-left: auto; margin-right: auto; padding: 0 20px; }
  .section-head h2 { margin-bottom: 14px; }
  .section-head p { font-size: 16px; color: var(--ink-soft); }

  /* ============ PAIN / SYMPTOMS CARDS ============ */
  .pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  @media (max-width: 900px) { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .pain-grid { grid-template-columns: 1fr; } }
  .pain-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
  }
  .pain-icon {
    font-size: 34px;
    margin-bottom: 10px;
    display: inline-block;
  }
  .pain-card h3 { font-size: 17px; margin-bottom: 10px; color: var(--ink); }
  .pain-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }

  /* ============ CORTISOL CHECKLIST ============ */
  .checklist-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px;
    max-width: 780px;
    margin: 0 auto;
    box-shadow: var(--shadow);
  }
  @media (max-width: 600px) { .checklist-card { padding: 26px 20px; } }
  .checklist-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 20px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--line);
  }
  .checklist-head-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--urgent-soft);
    color: var(--urgent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
  }
  .checklist-head h3 { font-size: 20px; margin-bottom: 3px; }
  .checklist-head p { font-size: 13.5px; color: var(--muted); }

  .symptoms { list-style: none; }
  .symptom {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
    cursor: pointer;
    transition: background .15s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }
  .symptom:last-child { border-bottom: none; }
  .symptom:hover { background: var(--bg-alt); margin: 0 -14px; padding: 14px; border-radius: 6px; border-bottom-color: transparent; }
  .symptom-check {
    width: 24px;
    height: 24px;
    border: 2px solid var(--line);
    border-radius: 6px;
    flex-shrink: 0;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: all .15s ease;
  }
  .symptom.checked .symptom-check {
    background: var(--cta);
    border-color: var(--cta);
    color: #fff;
  }
  .symptom.checked .symptom-check::after {
    content: "✓";
    font-size: 14px;
    font-weight: 900;
  }
  .symptom-text { font-size: 15px; color: var(--ink); line-height: 1.5; }
  .symptom.checked .symptom-text { color: var(--ink-soft); }

  .checklist-verdict {
    display: none;
    margin-top: 26px;
    padding: 22px;
    background: linear-gradient(135deg, var(--urgent-soft) 0%, #fff4e8 100%);
    border: 1px solid #e8c0b5;
    border-radius: var(--radius-sm);
    font-size: 15px;
    line-height: 1.65;
    color: #5a2318;
  }
  .checklist-verdict.show { display: block; }
  .checklist-verdict strong { font-weight: 800; }
  .checklist-verdict .verdict-title {
    font-family: 'Merriweather', serif;
    font-size: 18px;
    font-weight: 900;
    color: var(--urgent);
    margin-bottom: 8px;
    display: block;
  }
  .checklist-cta { text-align: center; margin-top: 26px; }

  /* ============ SCIENCE / ABSORPTION ============ */
  .science { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
  @media (max-width: 860px) { .science { grid-template-columns: 1fr; gap: 30px; } }
  .science-bars { display: flex; flex-direction: column; gap: 18px; }
  .bar-row .bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--ink);
    font-weight: 600;
  }
  .bar-row .bar-label strong { font-family: 'Merriweather', serif; font-size: 16px; }
  .bar-track {
    height: 30px;
    background: var(--line-soft);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
  }
  .bar-fill {
    height: 100%;
    border-radius: 999px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    color: #fff;
    font-weight: 700;
    font-size: 12.5px;
    transition: width 1.5s cubic-bezier(.2,.8,.2,1);
  }
  .bar-row.zen .bar-fill { background: linear-gradient(90deg, var(--cta) 0%, #3b9a4d 100%); }
  .bar-row.pill .bar-fill { background: #a89272; }
  .bar-row.cbd .bar-fill { background: #b08a55; }

  /* ============ TESTIMONIALS ============ */
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  @media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
  .testi {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow-sm);
  }
  .testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
  .testi-title {
    font-family: 'Merriweather', serif;
    font-weight: 900;
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--ink);
    line-height: 1.35;
  }
  .testi-body {
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 18px;
  }
  .testi-body strong { color: var(--ink); font-weight: 700; }
  .testi-person {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--line-soft);
  }
  .testi-person img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
  }
  .testi-person-info strong { display: block; font-size: 14px; font-weight: 700; color: var(--ink); }
  .testi-person-info span { font-size: 12px; color: var(--muted); }
  .testi-verified { color: var(--cta); font-weight: 600; }

  /* ============ INGREDIENTS ============ */
  .ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  @media (max-width: 900px) { .ingredients-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) { .ingredients-grid { grid-template-columns: 1fr; } }
  .ing-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 24px;
    position: relative;
    box-shadow: var(--shadow-sm);
  }
  .ing-num {
    position: absolute;
    top: -14px;
    left: 20px;
    width: 30px;
    height: 30px;
    background: var(--cta);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Merriweather', serif;
    font-weight: 900;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(45,122,60,.3);
  }
  .ing-name { font-family: 'Merriweather', serif; font-size: 18px; font-weight: 900; margin: 4px 0 4px; color: var(--ink); }
  .ing-role { font-size: 13px; color: var(--cta); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
  .ing-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }

  /* ============ TIMELINE ============ */
  .timeline {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
  }
  .timeline::before {
    content: "";
    position: absolute;
    left: 50px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--cta) 0%, var(--gold) 50%, var(--cta) 100%);
    opacity: .3;
  }
  @media (max-width: 600px) { .timeline::before { left: 24px; } }

  .t-stage {
    position: relative;
    padding-left: 110px;
    padding-bottom: 32px;
  }
  .t-stage:last-child { padding-bottom: 0; }
  @media (max-width: 600px) { .t-stage { padding-left: 60px; } }

  .t-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    text-align: center;
  }
  @media (max-width: 600px) { .t-marker { width: 50px; } }
  .t-marker-dot {
    width: 20px;
    height: 20px;
    background: var(--cta);
    border: 4px solid var(--bg);
    border-radius: 50%;
    margin: 0 auto 8px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 3px rgba(45,122,60,.2);
  }
  @media (max-width: 600px) {
    .t-marker-dot { margin-left: 14px; margin-right: 0; }
  }
  .t-marker-label {
    display: inline-block;
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: .08em;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
  }
  @media (max-width: 600px) { .t-marker-label { display: none; } }

  .t-content {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 24px;
    box-shadow: var(--shadow-sm);
  }
  .t-stage-mobile-label {
    display: none;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: .08em;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    background: var(--accent-soft);
    color: var(--accent);
    margin-bottom: 8px;
  }
  @media (max-width: 600px) { .t-stage-mobile-label { display: inline-block; } }
  .t-content h3 { font-size: 17px; margin-bottom: 8px; color: var(--ink); }
  .t-content p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.65; }
  .t-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
  }
  .t-tags span {
    font-size: 12px;
    background: var(--cta-soft);
    color: var(--cta);
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
  }

  /* ============ COMPARISON TABLE ============ */
  .compare {
    max-width: 880px;
    margin: 0 auto;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }
  .compare-row {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--line-soft);
    font-size: 14.5px;
  }
  .compare-row:last-child { border-bottom: none; }
  .compare-cell { padding: 16px 18px; display: flex; align-items: center; }
  .compare-row.header { background: var(--bg-alt); font-weight: 700; font-size: 13px; }
  .compare-row.header .compare-cell { padding: 14px 18px; }
  .compare-row.header .zen { background: var(--cta); color: #fff; }
  .compare-cell.zen { background: #f4fbf4; font-weight: 700; color: var(--cta); }
  .compare-cell.first { font-weight: 600; color: var(--ink); }
  .compare-cell.bad { color: var(--urgent); font-weight: 600; }
  @media (max-width: 700px) {
    .compare-row { grid-template-columns: 1.2fr .8fr .8fr .8fr; font-size: 12.5px; }
    .compare-cell { padding: 12px 10px; }
  }

  /* ============ FOUNDER ============ */
  .founder {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 46px;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
  }
  @media (max-width: 780px) { .founder { grid-template-columns: 1fr; gap: 26px; text-align: center; } }
  .founder-img {
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: var(--shadow-lg);
    background: var(--line);
  }
  .founder-img img { width: 100%; height: 100%; object-fit: cover; }
  .founder-role {
    color: var(--cta);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px;
  }
  .founder h2 { margin-bottom: 16px; }
  .founder p { font-size: 15px; color: var(--ink-soft); margin-bottom: 14px; line-height: 1.7; }
  .founder-sig { font-family: 'Merriweather', serif; font-style: italic; color: var(--ink); font-size: 15px; margin-top: 16px; }

  /* ============ GUARANTEE ============ */
  .guarantee-wrap {
    background: linear-gradient(135deg, #f4fbf4 0%, #fff 100%);
    border: 2px solid var(--cta);
    border-radius: var(--radius);
    padding: 46px 40px;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    position: relative;
  }
  @media (max-width: 600px) { .guarantee-wrap { padding: 34px 22px; } }
  .guarantee-seal {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--cta);
    color: #fff;
    margin: -80px auto 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(45,122,60,.3);
    border: 6px solid var(--bg-alt);
  }
  .guarantee-seal .big {
    font-family: 'Merriweather', serif;
    font-weight: 900;
    font-size: 34px;
    line-height: 1;
  }
  .guarantee-seal .lbl {
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-top: 4px;
    opacity: .9;
  }
  .guarantee-wrap h2 { margin-bottom: 16px; }
  .guarantee-wrap p { font-size: 16px; color: var(--ink-soft); line-height: 1.7; max-width: 640px; margin: 0 auto 14px; }
  .guarantee-contact {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 22px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--ink);
    font-weight: 600;
  }

  /* ============ BONUSES ============ */
  .bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    max-width: 880px;
    margin: 0 auto;
  }
  @media (max-width: 700px) { .bonus-grid { grid-template-columns: 1fr; } }
  .bonus-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 26px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
  }
  .bonus-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-soft) 0%, #fdf4dc 100%);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
  }
  .bonus-card h3 { font-size: 17px; margin-bottom: 6px; }
  .bonus-card h3 .val { color: var(--cta); font-size: 14px; font-weight: 700; margin-left: 4px; }
  .bonus-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }

  /* ============ FAQ ============ */
  .faq-list { max-width: 780px; margin: 0 auto; }
  .faq-item {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }
  .faq-q {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: none;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
  }
  .faq-q:hover{background: #fff;}
  .faq-q .arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background: var(--cta-soft);
    color: var(--cta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    transition: transform .2s ease;
  }
  .faq-item.open .faq-q .arrow { transform: rotate(45deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    padding: 0 24px;
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.7;
  }
  .faq-item.open .faq-a {
    max-height: 400px;
    padding: 0 24px 22px;
  }

  /* ============ FOOTER ============ */
  .footer {
    background: var(--ink);
    color: #a9b3aa;
    padding: 40px 0 30px;
    font-size: 12.5px;
    line-height: 1.7;
    text-align: center;
  }
  .footer-disclaimers {
    max-width: 820px;
    margin: 0 auto 20px;
    color: #8c958c;
  }
  .footer-disclaimers p { margin-bottom: 10px; }
  .footer-disclaimers strong { color: #c2ccc3; font-weight: 700; }
  .footer-links {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 16px;
  }
  .footer-links a { color: #c2ccc3; }
  .footer-links a:hover { color: #fff; }
  .footer-copy { margin-top: 16px; color: #7a847b; }

  /* ============ STICKY MOBILE CTA ============ */
  .sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card);
    border-top: 1px solid var(--line);
    padding: 12px 16px;
    z-index: 100;
    box-shadow: 0 -4px 18px rgba(26,43,31,.12);
  }
  .sticky-cta-inner {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .sticky-cta-price { flex-shrink: 0; }
  .sticky-cta-price strong {
    display: block;
    font-family: 'Merriweather', serif;
    font-size: 19px;
    font-weight: 900;
    color: var(--ink);
    line-height: 1;
  }
  .sticky-cta-price span { font-size: 11px; color: var(--muted); }
  .sticky-cta .btn-cta { flex: 1; padding: 14px 20px; font-size: 15px; }
  @media (max-width: 780px) {
    .sticky-cta.visible { display: block; }
    body { padding-bottom: 72px; }
    .guarantee-seal .lbl{font-size: 9px;}
  }
  @media (max-width: 414px){
.guarantee-seal .lbl{font-size: 8px;}
  }
  /* ============ UTILITIES / ANIMATIONS ============ */
  .fade-up { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
  .fade-up.in { opacity: 1; transform: translateY(0); }