
  :root {
    --forest: #1A3D2E;
    --forest-deep: #0F2A1E;
    --burgundy: #8B1E2E;
    --burgundy-deep: #6B1622;
    --coral-light: #F8C5B8;
    --coral-mid: #F4A89B;
    --coral-deep: #E88A7E;
    --peach: #FBDCD0;
    --cream: #FAF7F0;
    --cream-warm: #F5EFE3;
    --charcoal: #1A1A1A;
    --gold: #D4A24C;
  }

  .gg2-root *, .gg2-root { margin: 0; padding: 0; box-sizing: border-box; }

  .gg2-root { scroll-behavior: smooth; }

  .gg2-root {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* Display font stack — Circular fallback chain */
  .display {
    font-family: 'Circular Std', 'CircularXX', 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 0.92;
    text-transform: uppercase;
  }

  /* ============ ANNOUNCEMENT BAR ============ */
  .announce {
    background: var(--forest);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .announce span { opacity: 0.7; margin: 0 6px; }

  /* ============ HEADER ============ */
  header {
    background: white;
    padding: 22px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(26, 61, 46, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  /* ============ JAR IMAGE STYLING ============ */
  .logo-img {
    height: 48px;
    width: auto;
    display: block;
  }
  .footer-logo {
    height: 56px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
  }
  .hero-jar {
    max-width: 580px;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 30px 50px rgba(107, 22, 34, 0.35));
    animation: heroJarFloat 6s ease-in-out infinite;
  }
  @keyframes heroJarFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }
  .mech-jar {
    max-width: 380px;
    width: 80%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 24px 40px rgba(107, 22, 34, 0.3));
  }
  .product-jar {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(107, 22, 34, 0.25));
  }
  .product-hero {
    border: none;
    background: linear-gradient(135deg, var(--coral-light) 0%, var(--peach) 100%);
  }
  .product-hero .label { display: none; }
  nav ul {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  nav a {
    color: var(--forest);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: opacity 0.2s;
  }
  nav a:hover { opacity: 0.6; }
  .header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .header-actions a {
    color: var(--forest);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .cart-bubble {
    background: var(--burgundy);
    color: white;
    border-radius: 999px;
    padding: 2px 8px;
    font-size: 11px;
    margin-left: 4px;
  }

  /* ============ HERO ============ */
  .hero {
    background: linear-gradient(135deg, var(--coral-light) 0%, var(--coral-mid) 60%, var(--coral-deep) 100%);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 24px;
    padding: 56px 48px 64px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 60%);
    pointer-events: none;
  }
  .hero-copy {
    max-width: 620px;
    justify-self: end;
    padding-right: 32px;
    position: relative;
    z-index: 2;
  }
  .eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 24px;
    display: inline-block;
    padding: 8px 14px;
    background: rgba(255,255,255,0.45);
    border-radius: 999px;
    backdrop-filter: blur(8px);
  }
  .hero h1 {
    font-size: clamp(48px, 6.5vw, 92px);
    color: var(--forest);
    margin-bottom: 28px;
  }
  .hero h1 .highlight {
    color: var(--burgundy-deep);
  }
  .hero-sub {
    font-size: 19px;
    color: var(--burgundy);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.55;
    font-weight: 400;
  }
  .btn {
    display: inline-block;
    padding: 20px 36px;
    background: var(--forest);
    color: white;
    text-decoration: none;
    font-family: 'Circular Std', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 8px 24px rgba(26, 61, 46, 0.25);
  }
  .btn:hover {
    background: var(--forest-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(26, 61, 46, 0.35);
  }
  .btn-arrow { margin-left: 10px; transition: transform 0.25s; }
  .btn:hover .btn-arrow { transform: translateX(4px); }
  .trust-row {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-top: 22px;
    font-size: 12px;
    color: var(--forest);
    opacity: 0.75;
    font-weight: 600;
  }
  .trust-row span { display: flex; align-items: center; gap: 6px; }
  .check { color: var(--forest); font-weight: 900; }

  .hero-product {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 8px;
  }
  /* Product placeholder — drop your jar render here */
  .jar-placeholder {
    width: 380px;
    height: 480px;
    background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.15) 100%);
    border: 2px dashed rgba(26, 61, 46, 0.4);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--forest);
    font-weight: 700;
    text-align: center;
    padding: 40px;
    backdrop-filter: blur(4px);
    position: relative;
    z-index: 2;
  }
  .jar-placeholder .label {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 12px;
  }
  .jar-placeholder .filename {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.5;
    margin-top: 16px;
    font-family: monospace;
  }
    50% { transform: translateY(-22px); }
  }
  /* Bubble decorations */
  .bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7), rgba(255,255,255,0.1));
    border: 1px solid rgba(255,255,255,0.4);
    pointer-events: none;
  }
  .b1 { width: 22px; height: 22px; top: 28%; right: 22%; }
  .b2 { width: 14px; height: 14px; top: 38%; left: 18%; }
  .b3 { width: 30px; height: 30px; bottom: 30%; right: 30%; }
  .b4 { width: 10px; height: 10px; bottom: 18%; left: 22%; }

  /* ============ SOCIAL PROOF STRIP ============ */
  .social-proof {
    background: linear-gradient(180deg, var(--coral-deep) 0%, var(--coral-mid) 100%);
    padding: 100px 48px 120px;
    position: relative;
    overflow: hidden;
  }
  .sp-header {
    text-align: center;
    margin-bottom: 64px;
  }
  .sp-header h2 {
    font-size: clamp(36px, 4.5vw, 64px);
    color: var(--forest);
    line-height: 0.95;
  }
  .sp-header h2 .accent { color: white; }
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  .t-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 12px 40px rgba(107, 22, 34, 0.18);
    position: relative;
  }
  .t-card.tilt-left { transform: rotate(-2deg); }
  .t-card.tilt-right { transform: rotate(2deg); margin-top: 32px; }
  .t-card.center { margin-top: 16px; }
  .stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }
  .t-quote {
    font-size: 19px;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.4;
    margin-bottom: 18px;
  }
  .t-underline {
    width: 50px;
    height: 2px;
    background: var(--burgundy);
  }

  /* ============ MECHANISM SECTION ============ */
  .mechanism {
    background: var(--cream);
    padding: 140px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
  }
  .mech-copy .eyebrow-plain {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 20px;
    display: block;
  }
  .mech-copy h2 {
    font-size: clamp(40px, 4.5vw, 64px);
    color: var(--forest);
    margin-bottom: 36px;
    line-height: 0.95;
  }
  .mech-copy p {
    font-size: 17px;
    color: var(--charcoal);
    line-height: 1.65;
    margin-bottom: 20px;
  }
  .mech-copy p strong {
    color: var(--burgundy-deep);
    font-weight: 700;
  }
  .secondary-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--forest);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 2px solid var(--forest);
    padding-bottom: 4px;
    transition: gap 0.2s;
  }
  .secondary-link:hover { padding-bottom: 6px; }

  .mech-visual {
    position: relative;
    height: 560px;
    border-radius: 32px;
    background: linear-gradient(135deg, var(--peach) 0%, var(--coral-mid) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mech-visual .jar-placeholder {
    background: rgba(255,255,255,0.3);
    border-color: rgba(26, 61, 46, 0.3);
  }
  /* Decorative dots */
  .dot {
    position: absolute;
    border-radius: 50%;
    background: var(--forest);
    opacity: 0.6;
  }
  .d1 { width: 12px; height: 12px; top: 15%; left: 20%; }
  .d2 { width: 8px; height: 8px; top: 25%; right: 25%; }
  .d3 { width: 14px; height: 14px; bottom: 20%; left: 15%; }
  .d4 { width: 10px; height: 10px; bottom: 30%; right: 20%; }
  .d5 { width: 6px; height: 6px; top: 50%; left: 10%; }
  .d6 { width: 8px; height: 8px; top: 60%; right: 15%; }
  .connector {
    position: absolute;
    height: 1px;
    background: var(--forest);
    opacity: 0.25;
    transform-origin: left;
  }
  .c1 { width: 120px; top: 18%; left: 22%; transform: rotate(25deg); }
  .c2 { width: 100px; bottom: 25%; left: 17%; transform: rotate(-15deg); }

  /* ============ FEATURE GRID ============ */
  .features {
    background: linear-gradient(180deg, var(--coral-light) 0%, var(--coral-mid) 100%);
    padding: 120px 48px 140px;
    position: relative;
  }
  .features-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
  }
  .features-header h2 {
    font-size: clamp(38px, 4.5vw, 62px);
    color: var(--forest);
    line-height: 0.95;
    margin-bottom: 20px;
  }
  .features-header p {
    font-size: 18px;
    color: var(--burgundy);
    font-weight: 500;
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
  }
  .f-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 36px 28px;
    box-shadow: 0 8px 32px rgba(26, 61, 46, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .f-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(26, 61, 46, 0.15);
  }
  .f-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--forest);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
  }
  .f-card h3 {
    font-family: 'Circular Std', 'Inter', sans-serif;
    font-weight: 900;
    font-size: 17px;
    color: var(--forest);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    line-height: 1.15;
  }
  .f-card p {
    font-size: 15px;
    color: var(--charcoal);
    line-height: 1.55;
  }

  /* ============ PARADOX / DIFFERENTIATION ============ */
  .paradox {
    background: var(--forest);
    color: white;
    padding: 140px 48px;
    position: relative;
    overflow: hidden;
  }
  .paradox::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
      radial-gradient(circle at 15% 20%, rgba(232, 138, 126, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 85% 80%, rgba(139, 30, 46, 0.2) 0%, transparent 50%);
    pointer-events: none;
  }
  .paradox-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .paradox .eyebrow-light {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--coral-mid);
    margin-bottom: 24px;
    display: block;
  }
  .paradox h2 {
    font-size: clamp(44px, 5.5vw, 84px);
    line-height: 0.92;
    margin-bottom: 32px;
    max-width: 1000px;
  }
  .paradox .sub {
    font-size: 22px;
    color: var(--coral-light);
    margin-bottom: 56px;
    font-weight: 500;
    max-width: 700px;
  }
  .paradox p..gg2-root {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255,255,255,0.85);
    margin-bottom: 22px;
    max-width: 800px;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin: 80px 0 60px;
  }
  .stat {
    border-top: 1px solid rgba(244, 168, 155, 0.3);
    padding-top: 24px;
  }
  .stat-num {
    font-family: 'Circular Std', 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(48px, 5vw, 80px);
    color: var(--coral-mid);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
  }
  .stat-label {
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
  }
  .btn-light {
    background: white;
    color: var(--forest);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
  .btn-light:hover {
    background: var(--cream);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  }

  /* ============ TESTIMONIAL TRIO ============ */
  .testimonials {
    background: var(--cream);
    padding: 140px 48px;
  }
  .testimonials-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
  }
  .testimonials-header h2 {
    font-size: clamp(38px, 4.5vw, 62px);
    color: var(--forest);
    line-height: 0.95;
    margin-bottom: 20px;
  }
  .testimonials-header p {
    font-size: 18px;
    color: var(--burgundy);
    font-weight: 500;
  }
  .t-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1300px;
    margin: 0 auto;
  }
  .t-large {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 12px 40px rgba(26, 61, 46, 0.08);
    display: flex;
    flex-direction: column;
  }
  .t-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
  }
  .t-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coral-mid) 0%, var(--burgundy) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 16px;
    font-family: 'Circular Std', 'Inter', sans-serif;
  }
  .t-meta {
    display: flex;
    flex-direction: column;
  }
  .t-name {
    font-weight: 700;
    color: var(--forest);
    font-size: 15px;
  }
  .t-verified {
    font-size: 11px;
    color: var(--burgundy);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .t-large .stars { margin-bottom: 18px; }
  .t-body {
    font-size: 15px;
    line-height: 1.6;
    color: var(--charcoal);
  }
  .t-body p { margin-bottom: 12px; }

  /* ============ PRODUCT CARD / ATC ============ */
  .product-section {
    background: linear-gradient(180deg, var(--coral-light) 0%, var(--coral-mid) 100%);
    padding: 140px 48px;
  }
  .product-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .product-gallery {
    position: sticky;
    top: 100px;
  }
  .product-hero {
    background: rgba(255,255,255,0.55);
    border-radius: 28px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
  }
  .product-hero img.product-jar {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .product-hero .label { display: none; }
  .thumb-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }
  .thumb {
    aspect-ratio: 1;
    background: rgba(255,255,255,0.55);
    border-radius: 10px;
    border: 1.5px solid rgba(26, 61, 46, 0.15);
    cursor: pointer;
    transition: all 0.2s;
    overflow: hidden;
  }
  .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .thumb:hover {
    border-color: rgba(26, 61, 46, 0.45);
    transform: translateY(-2px);
  }
  .thumb.active {
    border: 2px solid var(--forest);
    background: rgba(255,255,255,0.85);
  }

  .product-info .star-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--forest);
    font-weight: 700;
    font-size: 14px;
  }
  .product-info .star-row .stars { color: var(--gold); font-size: 16px; margin: 0; }
  .product-info h1 {
    font-size: clamp(32px, 3.5vw, 48px);
    color: var(--forest);
    margin-bottom: 24px;
    line-height: 1;
  }
  .benefits-list {
    list-style: none;
    margin-bottom: 24px;
  }
  .benefits-list li {
    padding: 10px 0;
    font-size: 16px;
    color: var(--charcoal);
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  .benefits-list li::before {
    content: '✓';
    color: var(--forest);
    font-weight: 900;
    font-size: 18px;
    flex-shrink: 0;
  }
  .nutrition-link {
    color: var(--forest);
    font-size: 13px;
    font-weight: 700;
    text-decoration: underline;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 32px;
    display: inline-block;
  }
  .pricing-toggle {
    display: inline-flex;
    background: var(--cream);
    border-radius: 999px;
    padding: 4px;
    margin: 20px 0 12px;
    gap: 4px;
  }
  .pricing-toggle button {
    border: 0;
    background: transparent;
    color: var(--forest);
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .pricing-toggle button.active {
    background: var(--forest);
    color: white;
  }
  .pricing-toggle .save-pill {
    display: inline-block;
    background: rgba(26, 61, 46, 0.12);
    color: rgba(26, 61, 46, 0.55);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 999px;
    margin-left: 6px;
    letter-spacing: 0.05em;
    transition: all 0.2s;
  }
  .pricing-toggle button.active .save-pill {
    background: white;
    color: var(--burgundy);
  }
  .pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 8px 0 28px;
  }
  .price-tile { cursor: pointer; }
  .price-tile:not(.selected) {
    opacity: 0.55;
    filter: saturate(0.7);
  }
  .price-tile:not(.selected):hover { opacity: 0.85; }
  .price-tile .pcompare {
    font-size: 12px;
    color: var(--charcoal);
    opacity: 0.55;
    text-decoration: line-through;
    margin-top: 2px;
    min-height: 16px;
  }
  .price-tile {
    background: var(--cream);
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 20px 18px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
  }
  .price-tile.selected {
    border-color: var(--forest);
    background: white;
  }
  .price-tile .badge {
    position: absolute;
    top: -10px;
    right: 14px;
    background: var(--burgundy);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .price-tile .ptitle {
    font-size: 13px;
    font-weight: 700;
    color: var(--forest);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
  }
  .price-tile .pprice {
    font-family: 'Circular Std', 'Inter', sans-serif;
    font-weight: 900;
    font-size: 26px;
    color: var(--forest);
    margin-bottom: 4px;
  }
  .price-tile .psub {
    font-size: 12px;
    color: var(--charcoal);
    opacity: 0.7;
  }
  .btn-atc {
    width: 100%;
    padding: 22px;
    font-size: 16px;
    margin-bottom: 24px;
  }
  .trust-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 32px;
    padding: 18px 0;
    border-top: 1px solid rgba(26, 61, 46, 0.15);
    border-bottom: 1px solid rgba(26, 61, 46, 0.15);
  }
  .trust-icon {
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    color: var(--forest);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.3;
  }
  .accordion-item {
    border-bottom: 1px solid rgba(26, 61, 46, 0.15);
  }
  .accordion-item summary {
    padding: 20px 0;
    cursor: pointer;
    font-weight: 700;
    color: var(--forest);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .accordion-item summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 400;
    transition: transform 0.2s;
  }
  .accordion-item[open] summary::after {
    transform: rotate(45deg);
  }
  .accordion-content {
    padding-bottom: 24px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--charcoal);
  }
  .accordion-content p { margin-bottom: 14px; }
  .accordion-content strong { color: var(--forest); }

  /* ============ TIMELINE ============ */
  .timeline-section {
    background: var(--cream);
    padding: 140px 48px;
  }
  .timeline-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
  }
  .timeline-header h2 {
    font-size: clamp(38px, 4.5vw, 62px);
    color: var(--forest);
    line-height: 0.95;
    margin-bottom: 20px;
  }
  .timeline-header p {
    font-size: 18px;
    color: var(--burgundy);
    font-weight: 500;
  }
  .timeline {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
  }
  .timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--forest) 0%, var(--burgundy) 100%);
    opacity: 0.2;
    z-index: 0;
  }
  .tl-card {
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .tl-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--forest);
    color: white;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Circular Std', 'Inter', sans-serif;
    font-weight: 900;
    font-size: 24px;
    box-shadow: 0 6px 16px rgba(26, 61, 46, 0.2);
  }
  .tl-phase {
    font-size: 11px;
    font-weight: 700;
    color: var(--burgundy);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .tl-title {
    font-family: 'Circular Std', 'Inter', sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: var(--forest);
    text-transform: uppercase;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
    line-height: 1.15;
  }
  .tl-body {
    font-size: 14px;
    line-height: 1.55;
    color: var(--charcoal);
    padding: 0 8px;
  }

  /* ============ COMPETITOR COMPARISON (TORN PAPER) ============ */
  .competitor {
    background: linear-gradient(180deg, var(--coral-mid) 0%, var(--coral-light) 100%);
    padding: 140px 48px;
    position: relative;
    overflow: hidden;
  }
  .torn-scrap {
    position: absolute;
    background: var(--cream-warm);
    padding: 18px 24px;
    font-family: 'Times New Roman', serif;
    font-weight: 700;
    color: rgba(107, 22, 34, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.55;
    box-shadow: 0 8px 24px rgba(107, 22, 34, 0.1);
    pointer-events: none;
    clip-path: polygon(2% 0%, 98% 4%, 100% 96%, 0% 100%);
  }
  .scrap-1 { top: 8%; left: 4%; transform: rotate(-12deg); font-size: 28px; }
  .scrap-2 { top: 18%; right: 6%; transform: rotate(8deg); font-size: 24px; }
  .scrap-3 { top: 50%; left: 2%; transform: rotate(5deg); font-size: 20px; }
  .scrap-4 { bottom: 18%; right: 4%; transform: rotate(-6deg); font-size: 22px; }
  .scrap-5 { top: 32%; left: 38%; transform: rotate(-3deg); font-size: 18px; opacity: 0.35; }
  .scrap-6 { bottom: 30%; right: 32%; transform: rotate(10deg); font-size: 22px; }
  .scrap-7 { top: 65%; left: 8%; transform: rotate(-8deg); font-size: 18px; }

  .competitor-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .competitor h2 {
    font-size: clamp(44px, 5.5vw, 84px);
    color: var(--forest);
    line-height: 0.92;
    margin: 24px 0 20px;
  }
  .competitor .sub {
    font-size: 20px;
    color: var(--burgundy);
    margin-bottom: 60px;
    font-weight: 500;
  }
  .compare-table {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(26, 61, 46, 0.12);
    text-align: left;
  }
  .compare-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 18px 32px;
    border-bottom: 1px solid rgba(26, 61, 46, 0.08);
    align-items: center;
  }
  .compare-row:last-child { border-bottom: none; }
  .compare-row.header {
    background: var(--forest);
    color: white;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .compare-row.header > div { text-align: center; }
  .compare-row.header > div:first-child { text-align: left; }
  .compare-row .label {
    font-weight: 600;
    color: var(--charcoal);
    font-size: 15px;
  }
  .compare-row .generic, .compare-row .ours {
    text-align: center;
    font-size: 14px;
  }
  .compare-row .generic {
    color: rgba(26, 61, 46, 0.5);
  }
  .compare-row .ours {
    color: var(--forest);
    font-weight: 700;
    background: var(--coral-light);
    border-radius: 8px;
    padding: 8px 4px;
  }
  .x-mark { color: rgba(26, 61, 46, 0.4); font-size: 18px; font-weight: 700; }
  .check-mark { color: var(--forest); font-size: 18px; font-weight: 900; }

  /* ============ EXPERTS ============ */
  .experts {
    background: var(--cream);
    padding: 140px 48px;
    border-top: 1px solid rgba(26, 61, 46, 0.08);
  }
  .experts-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  .experts .display {
    font-size: clamp(38px, 4.5vw, 62px);
    color: var(--forest);
    line-height: 0.95;
    margin: 14px auto 14px;
    max-width: 900px;
  }
  .experts .sub {
    color: var(--charcoal);
    opacity: 0.75;
    font-size: 17px;
    line-height: 1.5;
    max-width: 640px;
    margin: 0 auto 56px;
  }
  .experts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    text-align: left;
  }
  .expert-card {
    background: white;
    border-radius: 20px;
    padding: 0 0 28px;
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(26, 61, 46, 0.05), 0 12px 28px -18px rgba(26, 61, 46, 0.18);
  }
  .expert-photo {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--cream);
  }
  .expert-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .expert-name {
    font-weight: 800;
    font-size: 20px;
    color: var(--forest);
    margin: 24px 28px 4px;
  }
  .expert-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin: 0 28px 16px;
  }
  .expert-quote {
    color: var(--charcoal);
    opacity: 0.85;
    font-size: 15px;
    line-height: 1.55;
    margin: 0 28px;
  }
  @media (max-width: 880px) {
    .experts { padding: 80px 24px; }
    .experts-grid { grid-template-columns: 1fr; gap: 20px; }
  }

  /* ============ FAQ ============ */
  .faq-section {
    background: var(--cream);
    padding: 140px 48px;
  }
  .faq-inner {
    max-width: 800px;
    margin: 0 auto;
  }
  .faq-section h2 {
    font-size: clamp(38px, 4.5vw, 62px);
    color: var(--forest);
    line-height: 0.95;
    margin-bottom: 60px;
    text-align: center;
  }
  .faq-item {
    border-bottom: 1px solid rgba(26, 61, 46, 0.15);
  }
  .faq-item:first-child { border-top: 1px solid rgba(26, 61, 46, 0.15); }
  .faq-item summary {
    padding: 28px 0;
    cursor: pointer;
    font-weight: 700;
    color: var(--forest);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '+';
    font-size: 28px;
    font-weight: 300;
    transition: transform 0.2s;
    flex-shrink: 0;
    color: var(--forest);
  }
  .faq-item[open] summary::after {
    transform: rotate(45deg);
  }
  .faq-content {
    padding: 0 0 28px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--charcoal);
  }

  /* ============ FINAL CTA ============ */
  .final-cta {
    background: linear-gradient(135deg, var(--coral-mid) 0%, var(--coral-deep) 100%);
    padding: 160px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, transparent 60%);
    pointer-events: none;
  }
  .final-cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .final-cta h2 {
    font-size: clamp(48px, 6.5vw, 96px);
    line-height: 0.92;
    color: var(--forest);
    margin-bottom: 48px;
  }
  .final-cta h2 .accent { color: white; }
  .final-cta .micro {
    margin-top: 22px;
    font-size: 13px;
    color: var(--forest);
    opacity: 0.75;
    font-weight: 600;
  }

  /* ============ FOOTER ============ */
  footer {
    background: var(--forest);
    color: white;
    padding: 80px 48px 40px;
  }
  .newsletter {
    background: var(--cream);
    border-radius: 24px;
    padding: 48px;
    max-width: 1200px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
  }
  .newsletter h3 {
    font-family: 'Circular Std', 'Inter', sans-serif;
    font-weight: 900;
    font-size: 28px;
    color: var(--forest);
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -0.01em;
  }
  .newsletter-form {
    display: flex;
    gap: 8px;
  }
  .newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border-radius: 999px;
    border: 1px solid rgba(26, 61, 46, 0.2);
    font-family: inherit;
    font-size: 15px;
    background: white;
  }
  .newsletter-form button {
    padding: 16px 28px;
    background: var(--forest);
    color: white;
    border: none;
    border-radius: 999px;
    font-family: 'Circular Std', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.2s;
  }
  .newsletter-form button:hover { background: var(--forest-deep); }
  .footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .footer-brand .logo {
    color: white;
    margin-bottom: 16px;
  }
  .footer-brand p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 24px;
    line-height: 1.55;
    max-width: 320px;
  }
  .social-row {
    display: flex;
    gap: 12px;
  }
  .social-row a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
  }
  .social-row a:hover { background: rgba(255,255,255,0.25); }
  .footer-col h4 {
    font-family: 'Circular Std', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: var(--coral-light);
  }
  .footer-col ul {
    list-style: none;
  }
  .footer-col li { margin-bottom: 12px; }
  .footer-col a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: white; }
  .footer-bottom {
    max-width: 1200px;
    margin: 32px auto 0;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    text-align: center;
  }
  .footer-bottom .disclaimer { font-style: italic; }
  .legal-disclaimers {
    max-width: 1200px;
    margin: 40px auto 0;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.55;
  }
  .legal-fda {
    border: 1px solid rgba(255,255,255,0.55);
    padding: 22px 26px;
    margin-bottom: 22px;
  }
  .legal-fda p { margin: 0; }
  .legal-body p {
    margin: 0 0 12px;
  }
  .legal-body p:last-child { margin-bottom: 0; }
  @media (max-width: 600px) {
    .legal-disclaimers { font-size: 13px; }
    .legal-fda { padding: 18px 20px; }
  }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 900px) {
    header { padding: 16px 20px; }
    nav { display: none; }
    .hero {
      grid-template-columns: 1fr;
      padding: 40px 24px;
      min-height: auto;
    }
    .hero-copy { justify-self: stretch; padding-right: 0; max-width: 100%; }
    .hero-product { justify-content: center; padding-left: 0; margin-top: 32px; }
    .hero-jar { max-width: 360px; }
    .jar-placeholder { width: 280px; height: 360px; }
    .social-proof { padding: 70px 24px 90px; }
    .testimonial-grid { grid-template-columns: 1fr; gap: 20px; }
    .t-card.tilt-left, .t-card.tilt-right, .t-card.center { transform: none; margin-top: 0; }
    .mechanism { grid-template-columns: 1fr; gap: 50px; padding: 80px 24px; }
    .mech-visual { height: 420px; }
    .features { padding: 80px 24px; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .paradox { padding: 80px 24px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .testimonials { padding: 80px 24px; }
    .t-trio { grid-template-columns: 1fr; }
    .product-section { padding: 80px 24px; }
    .product-inner { grid-template-columns: 1fr; gap: 40px; }
    .product-gallery { position: static; }
    .timeline-section { padding: 80px 24px; }
    .timeline { grid-template-columns: 1fr; gap: 40px; }
    .timeline::before { display: none; }
    .competitor { padding: 80px 24px; }
    .scrap-5, .scrap-7 { display: none; }
    .compare-row { padding: 14px 18px; font-size: 13px; }
    .faq-section { padding: 80px 24px; }
    .final-cta { padding: 100px 24px; }
    footer { padding: 60px 24px 32px; }
    .newsletter { grid-template-columns: 1fr; padding: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  }
  @media (max-width: 540px) {
    .features-grid { grid-template-columns: 1fr; }
    .trust-row { flex-wrap: wrap; gap: 10px; }
    .pricing { grid-template-columns: 1fr; }
    .trust-icons { grid-template-columns: 1fr 1fr; gap: 16px; }
    .footer-grid { grid-template-columns: 1fr; }
  }

  /* ===== Pull-quote testimonial ===== */
  .big-quote {
    padding: 100px 24px 120px;
    background: var(--cream);
    display: flex;
    justify-content: center;
  }
  .big-quote-inner {
    max-width: 780px;
    width: 100%;
    background: var(--peach);
    border-radius: 28px;
    padding: 64px 56px;
    text-align: center;
    box-shadow: 0 30px 60px -30px rgba(139, 30, 46, 0.18);
  }
  .bq-stars {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 28px;
  }
  .bq-stars svg {
    width: 22px;
    height: 22px;
    fill: var(--gold);
  }
  .big-quote .display {
    font-size: clamp(26px, 3.2vw, 38px);
    line-height: 1.18;
    color: var(--forest);
    margin: 0 0 36px;
    letter-spacing: -0.01em;
  }
  .big-quote-body {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px;
  }
  .big-quote-body p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--charcoal);
    margin: 0 0 16px;
  }
  .big-quote-body p:last-child { margin-bottom: 0; }
  .big-quote-attribution {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
  }
  .bq-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Circular Std', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.01em;
  }
  .bq-meta {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.35;
  }
  .bq-name {
    font-weight: 700;
    color: var(--forest);
    font-size: 15px;
    letter-spacing: 0.01em;
  }
  .bq-role {
    color: var(--burgundy);
    font-size: 13px;
    opacity: 0.85;
  }
  @media (max-width: 600px) {
    .big-quote { padding: 60px 16px 80px; }
    .big-quote-inner { padding: 40px 24px; border-radius: 20px; }
    .big-quote-body p { font-size: 16px; }
  }
