*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --cream: #F5F0E8;
      --ink: #1A1612;
      --warm-mid: #7A6652;
      --accent: #C84B2F;
      --accent-hover: #A83820;
      --accent-light: #F0E0D8;
      --border: rgba(26,22,18,0.10);
      --border-strong: rgba(26,22,18,0.18);
      --radius: 14px;
      --radius-sm: 8px;
      --radius-btn: 50px;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--cream);
      color: var(--ink);
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      font-size: 1.2rem;
      min-height: 100vh;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 100;
      opacity: 0.5;
    }

    .page { max-width: 1280px; margin: 0 auto; padding: 0 3rem; }

    /* ── HEADER ── */
    header {
      padding: 2.25rem 0 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      opacity: 0;
      animation: fadeUp 0.7s 0.1s ease forwards;
    }
    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 700;
      letter-spacing: -0.01em;
      color: var(--ink);
      text-decoration: none;
    }
    .logo span { color: var(--accent); }
    .logo sup {
      font-size: 0.45em;
      vertical-align: super;
      letter-spacing: 0;
    }
    .nav-cta {
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--warm-mid);
      text-decoration: none;
      border-bottom: 1px solid var(--border-strong);
      padding-bottom: 1px;
      transition: color 0.2s, border-color 0.2s;
      cursor: pointer;
      background: none;
      border-top: none;
      border-left: none;
      border-right: none;
      font-family: inherit;
    }
    .nav-cta:hover { color: var(--accent); border-bottom-color: var(--accent); }

    /* ── HERO ── */
    .hero {
      padding: 2rem 0 2rem;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .eyebrow {
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1.75rem;
      opacity: 0;
      animation: fadeUp 0.7s 0.25s ease forwards;
      display: flex;
      align-items: center;
      gap: 10px;
      justify-content: center;
    }
    .eyebrow::before, .eyebrow::after {
      content: '';
      display: block;
      width: 28px;
      height: 1px;
      background: var(--accent);
      flex-shrink: 0;
    }

    h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 4.8vw, 4.6rem);
      font-weight: 700;
      line-height: 1.08;
      letter-spacing: -0.02em;
      color: var(--ink);
      opacity: 0;
      animation: fadeUp 0.8s 0.35s ease forwards;
    }
    h1 em {
      font-style: italic;
      color: var(--accent);
    }

    .hero-sub {
      margin-top: 2rem;
      font-size: 1.35rem;
      line-height: 1.5;
      color: var(--warm-mid);
      width: 90%;
      max-width: 100%;
      opacity: 0;
      animation: fadeUp 0.7s 0.5s ease forwards;
    }

    .hero-cta-row {
      margin-top: 2.75rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
      opacity: 0;
      animation: fadeUp 0.7s 0.65s ease forwards;
    }

    .btn-primary {
      display: inline-block;
      background: var(--accent);
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding: 1.35rem 3.25rem;
      text-decoration: none;
      border-radius: var(--radius-btn);
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      white-space: normal;
      word-break: break-word;
      box-shadow: 0 6px 28px rgba(200,75,47,0.32);
    }
    .btn-primary:hover {
      background: var(--accent-hover);
      transform: translateY(-2px);
      box-shadow: 0 10px 36px rgba(200,75,47,0.4);
    }

    /* ── SECTION SHARED ── */
    .section-label {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--warm-mid);
      margin-bottom: 1rem;
      display: block;
    }

    .section-header {
      text-align: center;
      margin-bottom: 2rem;
    }
    .section-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3.5vw, 2.9rem);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }
    .section-header h2 em { font-style: italic; color: var(--accent); }
    .section-header p {
      font-size: 1.18rem;
      line-height: 1.5;
      color: var(--warm-mid);
      max-width: 780px;
      margin: 0 auto;
    }

    /* ── PAIN SECTION ── */
    .pain-section {
      border-top: 1px solid var(--border);
      padding: 3rem 0;
    }

    .pain-prose {
      font-size: 1.18rem;
      line-height: 1.5;
      color: var(--warm-mid);
      padding-top: 2rem;
    }
    .pain-banner {
      width: 100%;
      height: 360px;
      object-fit: cover;
      object-position: center 40%;
      border-radius: var(--radius);
      display: block;
      margin-bottom: 1.5rem;
      border: 2px solid var(--accent);
    }
    .pain-stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border: 1px solid var(--border-strong);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .pain-stat {
      padding: 2rem 1.75rem;
      background: white;
      border-right: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .pain-stat:last-child { border-right: none; }
    .pain-stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.6rem;
      font-weight: 700;
      color: var(--accent);
      line-height: 1;
    }
    .pain-stat-text strong {
      display: block;
      font-size: 1rem;
      font-weight: 500;
      color: var(--ink);
      margin-bottom: 4px;
      line-height: 1.4;
    }
    .pain-stat-text span {
      font-size: 0.9rem;
      color: var(--warm-mid);
      line-height: 1.55;
    }

    /* ── WHAT'S INCLUDED ── */
    .offer-section {
      border-top: 1px solid var(--border);
      padding: 3rem 0;
    }

    .offer-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .offer-card {
      padding: 2.25rem 2rem;
      border: 1px solid var(--border-strong);
      border-radius: var(--radius);
      background: white;
      text-align: center;
      transition: border-color 0.2s, transform 0.2s;
      position: relative;
      overflow: hidden;
    }
    .offer-card:hover { border-color: var(--accent); transform: translateY(-3px); }

    .offer-card.is-bonus { border-color: var(--accent); }
    .offer-card.is-included { border-color: var(--ink); }

    .card-ribbon {
      position: absolute;
      top: 14px;
      right: -28px;
      width: 110px;
      text-align: center;
      padding: 4px 0;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transform: rotate(45deg);
      transform-origin: center;
    }
    .card-ribbon.bonus {
      background: var(--accent);
      color: white;
    }
    .card-ribbon.included {
      background: var(--ink);
      color: var(--cream);
    }

    .offer-icon {
      width: 52px;
      height: 52px;
      background: var(--accent-light);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin: 0 auto 1.25rem;
    }

    .offer-card h3 {
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--ink);
      margin-bottom: 0.5rem;
    }
    .offer-card p {
      font-size: 1.05rem;
      color: var(--warm-mid);
      line-height: 1.6;
      margin-bottom: 1.25rem;
    }
    .offer-value {
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--warm-mid);
      border-top: 1px solid var(--border);
      padding-top: 1rem;
    }
    .offer-value strong {
      color: var(--ink);
      font-size: 1rem;
    }

    /* Value total row */
    .value-total-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      padding: 1.25rem 2rem;
      background: var(--accent-light);
      border: 1px solid rgba(200,75,47,0.2);
      border-radius: var(--radius);
      margin-bottom: 1.5rem;
      flex-wrap: wrap;
    }
    .value-total-label {
      font-size: 0.9rem;
      color: var(--warm-mid);
    }
    .value-total-amount {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--ink);
      text-decoration: line-through;
      opacity: 0.5;
    }
    .value-arrow {
      font-size: 1.2rem;
      color: var(--accent);
    }
    .value-your-price {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--accent);
    }
    .value-your-label {
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--accent);
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    /* ── PRICING BLOCK ── */
    .pricing-block {
      background: var(--ink);
      border-radius: var(--radius);
      padding: 3.5rem;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 3rem;
      align-items: center;
    }

    .pricing-eyebrow {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: rgba(245,240,232,0.4);
      margin-bottom: 0.75rem;
      display: block;
    }
    .pricing-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.5rem, 2.2vw, 2rem);
      font-weight: 700;
      color: var(--cream);
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }
    .pricing-headline em { font-style: italic; color: #E8917A; }

    .guarantee-line {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.25rem;
      padding: 1.1rem 1.25rem;
      background: rgba(255,255,255,0.06);
      border-radius: 8px;
      border-left: 3px solid #E8917A;
    }
    .guarantee-line:last-child { margin-bottom: 0; }
    .check {
      color: #E8917A;
      font-size: 1.15rem;
      flex-shrink: 0;
      margin-top: 1px;
      font-weight: 700;
    }
    .guarantee-line span {
      font-size: 1.05rem;
      color: rgba(245,240,232,0.82);
      line-height: 1.55;
    }
    .guarantee-line span strong { color: #fff; font-weight: 600; }

    .pricing-right { text-align: center; flex-shrink: 0; }
    .price-total-value {
      font-size: 1.7rem;
      font-weight: 500;
      color: rgba(245,240,232,0.4);
      text-decoration: line-through;
      margin-bottom: 0.25rem;
      letter-spacing: 0.02em;
    }
    .price-amount {
      font-family: 'Playfair Display', serif;
      font-size: 4.5rem;
      font-weight: 700;
      color: var(--cream);
      line-height: 1;
    }
    .price-amount sup { font-size: 2rem; vertical-align: top; margin-top: 0.5rem; display: inline-block; }
    .price-note { font-size: 1rem; color: rgba(245,240,232,0.4); margin-top: 1rem; line-height: 1.5; }
    .price-credit { margin-top: 0.75rem; font-size: 1rem; color: #E8917A; font-weight: 500; }

    .btn-light {
      display: inline-block;
      margin-top: 1.75rem;
      background: var(--cream);
      color: var(--ink);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding: 1rem 2rem;
      text-decoration: none;
      border-radius: var(--radius-btn);
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      white-space: nowrap;
    }
    .btn-light:hover { background: #fff; transform: translateY(-1px); }

    /* ── HOW IT WORKS ── */
    .how-section {
      border-top: 1px solid var(--border);
      padding: 3rem 0 0;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border: 1px solid var(--border-strong);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .step {
      padding: 2.25rem 1.75rem;
      background: white;
      border-right: 1px solid var(--border);
      transition: background 0.2s;
    }
    .step:last-child { border-right: none; }
    .step:hover { background: var(--cream); }

    .step-n {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 700;
      color: var(--accent-light);
      line-height: 1;
      margin-bottom: 1.25rem;
    }
    .step h3 { font-size: 1.05rem; font-weight: 500; color: var(--ink); margin-bottom: 0.6rem; line-height: 1.4; }
    .step p { font-size: 1.05rem; color: var(--warm-mid); line-height: 1.6; }

    /* ── SOCIAL PROOF ── */
    .proof-section {
      padding: 3rem 0;
    }

    .proof-agg {
      text-align: center;
      margin-bottom: 3rem;
    }
    .proof-agg-num {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      font-weight: 700;
      color: var(--ink);
      line-height: 1;
    }
    .proof-agg-num span { color: var(--accent); }
    .proof-agg-label { font-size: 0.9rem; color: var(--warm-mid); margin-top: 6px; }

    .testimonials {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .testimonial {
      padding: 2rem;
      border: 1px solid var(--border-strong);
      border-radius: var(--radius);
      background: white;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .testimonial-quote {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-style: italic;
      line-height: 1.72;
      color: var(--ink);
      margin-bottom: 1.5rem;
      flex: 1;
    }
    .testimonial-quote::before {
      content: '\201C';
      color: var(--accent);
      font-size: 3.5rem;
      line-height: 0;
      vertical-align: -0.5em;
      margin-right: 4px;
    }
    .testimonial-meta {
      margin-top: auto;
      padding-top: 1.25rem;
      border-top: 1px solid var(--border);
    }
    .testimonial-logo {
      height: 110px;
      width: auto;
      max-width: 160px;
      object-fit: contain;
      object-position: left center;
      display: block;
      margin-bottom: 1.25rem;
      opacity: 0.85;
    }
    .testimonial-name { font-size: 1.2rem; font-weight: 500; color: var(--ink); }
    .testimonial-brand { font-size: 1.2rem; color: var(--warm-mid); margin-top: 2px; margin-bottom: 2rem; }
    .testimonial-result {
      display: inline-block;
      background: var(--accent);
      color: white;
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.55rem 1.25rem 0.55rem 1.5rem;
      border-radius: 0 4px 4px 0;
      position: relative;
      margin-left: -2rem;
      box-shadow: 2px 2px 8px rgba(200,75,47,0.25);
    }
    .testimonial-result::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 4px;
      background: rgba(0,0,0,0.15);
      border-radius: 0;
    }

    /* ── DREAM OUTCOME ── */
    .dream-section {
      border-top: 1px solid var(--border);
      padding: 5rem 3rem;
      background: var(--ink);
      margin: 0 0 0 0;
      border-radius: var(--radius);
    }
    .dream-section .section-label { color: rgba(245,240,232,0.4); }
    .dream-section .section-header h2 { color: var(--cream); }
    .dream-section .section-header h2 em { color: #E8917A; }
    .dream-section .section-header p { color: rgba(245,240,232,0.6); }

    .dream-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(255,255,255,0.08);
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.1);
    }
    .dream-card {
      padding: 2.5rem 2rem;
      background: rgba(255,255,255,0.04);
      transition: background 0.2s;
    }
    .dream-card:hover { background: rgba(255,255,255,0.08); }
    .dream-icon {
      width: 52px;
      height: 52px;
      background: rgba(255,255,255,0.08);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
    }
    .dream-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--cream);
      margin-bottom: 0.6rem;
      line-height: 1.3;
    }
    .dream-card p {
      font-size: 1.05rem;
      color: rgba(245,240,232,0.6);
      line-height: 1.6;
    }

    /* ── STANDALONE GUARANTEE ── */
    .guarantee-section {
      padding: 0;
    }
    .guarantee-box {
      border: 2px solid var(--accent);
      border-radius: var(--radius);
      padding: 3.5rem 4rem;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 3rem;
      align-items: center;
      background: white;
      position: relative;
      overflow: hidden;
    }
    .guarantee-badge {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background: var(--accent);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      text-align: center;
      padding: 1.25rem;
      gap: 2px;
    }
    .guarantee-badge-top {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 700;
      color: white;
      line-height: 1;
    }
    .guarantee-badge-num {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
      line-height: 1.3;
    }
    .guarantee-badge-unit {
      font-size: 0.68rem;
      font-weight: 400;
      color: rgba(255,255,255,0.65);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-top: 1px;
    }
    .guarantee-content h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 2.5vw, 2.2rem);
      font-weight: 700;
      color: var(--ink);
      line-height: 1.15;
      margin-bottom: 1rem;
    }
    .guarantee-content h2 em { font-style: italic; color: var(--accent); }
    .guarantee-content p {
      font-size: 1.1rem;
      color: var(--warm-mid);
      line-height: 1.6;
      margin-bottom: 0.75rem;
    }
    .guarantee-content p:last-child { margin-bottom: 0; }
    .guarantee-content strong { color: var(--ink); font-weight: 500; }

    /* ── OBJECTIONS ── */
    .objections-section {
      padding: 0;
    }
    .objections-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }
    .objection-card {
      padding: 2rem 2.25rem;
      border: 1px solid var(--border-strong);
      border-radius: var(--radius);
      background: white;
    }
    .objection-q {
      font-size: 1.05rem;
      font-weight: 500;
      color: var(--ink);
      margin-bottom: 0.65rem;
      line-height: 1.4;
    }
    .objection-q::before {
      content: 'Q: ';
      color: var(--accent);
      font-weight: 600;
    }
    .objection-a {
      font-size: 1.05rem;
      color: var(--warm-mid);
      line-height: 1.6;
    }
    .objection-a strong { color: var(--ink); font-weight: 500; }

    /* ── SCARCITY BAR ── */
    .scarcity-bar {
      background: var(--accent);
      border-radius: var(--radius);
      padding: 1.5rem 2.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 2rem;
      flex-wrap: wrap;
      text-align: center;
    }
    .scarcity-dot {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .scarcity-dot span {
      width: 10px; height: 10px;
      background: rgba(255,255,255,0.6);
      border-radius: 50%;
      display: inline-block;
      flex-shrink: 0;
    }
    .scarcity-dot span.filled { background: white; }
    .scarcity-text {
      font-size: 1rem;
      font-weight: 500;
      color: white;
      letter-spacing: 0.01em;
    }
    .scarcity-text strong { color: white; font-weight: 700; }

    /* ── BOTTOM CTA ── */
    .cta-section {
      padding: 5rem 0 6rem;
    }
    .cta-block {
      background: var(--ink);
      border-radius: var(--radius);
      padding: 5rem 4rem;
      text-align: center;
    }
    .cta-eyebrow {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: rgba(245,240,232,0.4);
      margin-bottom: 1rem;
      display: block;
    }
    .cta-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 700;
      color: var(--cream);
      line-height: 1.15;
      margin-bottom: 1.25rem;
    }
    .cta-headline em { font-style: italic; color: #E8917A; }
    .cta-sub {
      font-size: 1.15rem;
      color: rgba(245,240,232,0.6);
      line-height: 1.7;
      max-width: 560px;
      margin: 0 auto 2.5rem;
    }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid var(--border);
      padding: 2rem 0 2.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--ink);
      text-decoration: none;
    }
    .footer-logo span { color: var(--accent); }
    .footer-logo sup {
      font-size: 0.45em;
      vertical-align: super;
      letter-spacing: 0;
    }
    .footer-right { font-size: 0.82rem; color: var(--warm-mid); }
    .footer-right a {
      color: var(--warm-mid);
      text-decoration: none;
      border-bottom: 1px solid var(--border);
      padding-bottom: 1px;
      transition: color 0.2s;
    }
    .footer-right a:hover { color: var(--accent); }

    /* ── MODAL ── */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(26,22,18,0.65);
      backdrop-filter: blur(4px);
      z-index: 999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease;
      overflow-y: auto;
    }
    .modal-overlay.open { opacity: 1; pointer-events: all; }
    .modal {
      background: var(--cream);
      border-radius: var(--radius);
      padding: 3rem;
      width: 100%;
      max-width: 500px;
      position: relative;
      transform: translateY(16px);
      transition: transform 0.25s ease;
      margin: auto;
    }
    .modal-overlay.open .modal { transform: translateY(0); }
    .modal-close {
      position: absolute;
      top: 1.25rem; right: 1.25rem;
      background: none; border: none;
      font-size: 1rem; color: var(--warm-mid);
      cursor: pointer; width: 32px; height: 32px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%;
      transition: background 0.2s, color 0.2s;
    }
    .modal-close:hover { background: var(--accent-light); color: var(--accent); }
    .modal-eyebrow {
      font-size: 0.72rem; font-weight: 500; letter-spacing: 0.13em;
      text-transform: uppercase; color: var(--accent); margin-bottom: 0.6rem;
    }
    .modal h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem; font-weight: 700;
      letter-spacing: -0.01em; color: var(--ink); margin-bottom: 0.5rem;
    }
    .modal-sub { font-size: 0.95rem; color: var(--warm-mid); line-height: 1.6; margin-bottom: 2rem; }
    .form-group { margin-bottom: 1.25rem; }
    .form-group label {
      display: block; font-size: 0.82rem; font-weight: 500;
      color: var(--ink); margin-bottom: 0.4rem; letter-spacing: 0.02em;
    }
    .form-group input {
      width: 100%; padding: 0.85rem 1rem;
      border: 1px solid var(--border-strong);
      border-radius: var(--radius-sm);
      background: white;
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem; color: var(--ink);
      outline: none; transition: border-color 0.2s;
    }
    .form-group input:focus { border-color: var(--accent); }
    .form-group input.input-error { border-color: var(--accent); }
    .field-error { display: block; font-size: 0.78rem; color: var(--accent); margin-top: 4px; min-height: 1em; }
    .form-submit {
      width: 100%; padding: 1.05rem;
      background: var(--accent); color: white;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem; font-weight: 500;
      letter-spacing: 0.05em; text-transform: uppercase;
      border: none; border-radius: var(--radius-btn);
      cursor: pointer; transition: background 0.2s;
      margin-top: 0.5rem;
    }
    .form-submit:hover { background: var(--accent-hover); }
    .form-note { font-size: 0.78rem; color: var(--warm-mid); text-align: center; margin-top: 1rem; line-height: 1.5; }
    .form-success { display: none; text-align: center; padding: 2rem 0; }
    .success-icon { font-size: 2.5rem; margin-bottom: 1rem; }
    .form-success h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem; font-weight: 700; color: var(--ink); margin-bottom: 0.75rem;
    }
    .form-success p { font-size: 0.92rem; color: var(--warm-mid); line-height: 1.6; }

    /* ── CUSTOMER SLIDESHOW ── */
    .slideshow-section {
      padding: 0 0 3rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      opacity: 0;
      animation: fadeUp 0.7s 0.9s ease forwards;
    }
    .slideshow-img {
      width: 380px;
      height: 380px;
      object-fit: cover;
      display: block;
      transition: opacity 0.9s ease;
    }
    .slideshow-img.fading { opacity: 0; }

    /* ── CALCULATOR ── */
    .calc-section {
      padding: 0 0 2rem;
    }
    .calc-box {
      border: 2px solid var(--border-strong);
      border-radius: var(--radius);
      padding: 4rem;
      width: 100%;
      text-align: center;
    }
    .calc-eyebrow {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--warm-mid);
      margin-bottom: 1rem;
      display: block;
    }
    .calc-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3.2vw, 2.9rem);
      font-weight: 700;
      color: var(--ink);
      line-height: 1.15;
      margin-bottom: 0.75rem;
    }
    .calc-title em { font-style: italic; color: var(--accent); }
    .calc-sub {
      font-size: 1.18rem;
      color: var(--warm-mid);
      line-height: 1.7;
      margin-bottom: 2.5rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    .calc-input-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.25rem;
      flex-wrap: wrap;
      margin-bottom: 2.5rem;
    }
    .calc-input-wrap {
      display: flex;
      align-items: center;
    }
    .calc-input {
      width: 200px;
      padding: 0.25rem 1.25rem 1.25rem;
      background: var(--accent-light);
      border: 2px solid var(--accent);
      border-radius: var(--radius-sm);
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--ink);
      text-align: center;
      line-height: 1;
      outline: none;
      transition: border-color 0.2s, background 0.2s;
      -moz-appearance: textfield;
    }
    .calc-input::-webkit-outer-spin-button,
    .calc-input::-webkit-inner-spin-button { -webkit-appearance: none; }
    .calc-input:focus {
      border-color: var(--accent-hover);
      background: #ecddd8;
    }
    .calc-input::placeholder { color: rgba(26,22,18,0.3); font-size: 2.8rem; line-height: normal; }
    .calc-input-label {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--ink);
      white-space: nowrap;
    }
    .calc-results {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 2rem;
      animation: fadeUp 0.5s ease forwards;
    }
    .calc-results.visible { display: flex; }
    .calc-stats-row {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
      width: 100%;
    }
    .calc-stat {
      flex: 1;
      min-width: 160px;
      background: white;
      border: 1px solid var(--border-strong);
      border-radius: var(--radius);
      padding: 1.75rem 1.5rem;
    }
    .calc-stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 3.2rem;
      font-weight: 700;
      color: var(--accent);
      line-height: 1;
      margin-bottom: 0.5rem;
    }
    .calc-stat-label {
      font-size: 1rem;
      color: var(--warm-mid);
      letter-spacing: 0.02em;
      line-height: 1.45;
    }
    .calc-summary {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.2rem, 1.8vw, 1.7rem);
      font-weight: 700;
      font-style: italic;
      color: var(--ink);
      line-height: 1.5;
      max-width: 820px;
      margin: 0 auto;
    }
    .calc-summary em {
      color: var(--accent);
      font-style: italic;
    }
    .calc-cta {
      margin-top: 0.5rem;
    }

    /* ── REVEAL ── */
    .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .pain-stats-row { grid-template-columns: 1fr 1fr; }
      .pain-stat { border-right: none; border-bottom: 1px solid var(--border); }
      .pain-stat:nth-child(2) { border-right: none; }
      .pain-banner { height: 280px; }
      .offer-grid { grid-template-columns: 1fr 1fr; }
      .steps { grid-template-columns: 1fr 1fr; }
      .step { border-right: none; border-bottom: 1px solid var(--border); }
      .step:last-child { border-bottom: none; }
      .testimonials { grid-template-columns: 1fr; }
      .pricing-block { grid-template-columns: 1fr; gap: 2rem; }
      .pricing-right { text-align: left; }
      .dream-grid { grid-template-columns: 1fr 1fr; }
      .objections-grid { grid-template-columns: 1fr; }
      .guarantee-box { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem; text-align: center; }
      .guarantee-badge { width: 130px; height: 130px; margin: 0 auto; }
    }
    @media (max-width: 600px) {
      .page { padding: 0 1.25rem; }
      .pain-stats-row { grid-template-columns: 1fr; }
      .pain-banner { height: 200px; }
      .offer-grid { grid-template-columns: 1fr; }
      .steps { grid-template-columns: 1fr; }
      .dream-grid { grid-template-columns: 1fr; }
      h1 { font-size: 3rem; }
      .hero-sub { width: 100%; }
      .btn-primary { width: 100%; text-align: center; box-sizing: border-box; }
      .hero-cta-row { width: 100%; }
      .guarantee-box { padding: 2rem 1.5rem; }
      .guarantee-badge { width: 120px; height: 120px; margin: 0 auto; }
      .guarantee-badge-top { font-size: 2.2rem; }
      .guarantee-badge-num { font-size: 0.65rem; letter-spacing: 0.08em; }
      .guarantee-badge-unit { font-size: 0.6rem; }
      .cta-block { padding: 3rem 1.5rem; overflow: hidden; }
      .cta-headline { font-size: 1.8rem; word-break: break-word; }
      .pricing-block { padding: 2.5rem 1.5rem; }
      .calc-box { padding: 2.5rem 1.5rem; }
      .calc-input-row { flex-direction: column; gap: 0.75rem; }
      .calc-input { width: 180px; font-size: 2.4rem; }
      .calc-stats-row { flex-direction: column; }
      .calc-stat { min-width: unset; }
      .scarcity-bar { flex-direction: column; gap: 0.75rem; padding: 1.25rem 1.5rem; }
      .value-total-row { flex-direction: column; gap: 0.5rem; text-align: center; }
      .btn-light { width: 100%; text-align: center; box-sizing: border-box; }
      .dream-section { padding-left: 2rem; padding-right: 2rem; }
      .modal-overlay { padding: 1rem; align-items: flex-start; }
      .modal { padding: 2rem 1.5rem; margin: 1rem auto; }
    }