
  :root {
    --cream: #FAF6F1;
    --warm-white: #FFFDF9;
    --text-dark: #2C2416;
    --text-mid: #5C4A30;
    --text-light: #8C7A62;
    --accent: #9B3A4A;
    --accent-dark: #7A2A38;
    --accent-light: #C4626F;
    --gold: #C4943A;
    --gold-light: #E8C87A;
    --soft-pink: #F5E6E8;
    --border: #E8DDD0;
    --cta-bg: #9B3A4A;
    --cta-hover: #7A2A38;
  }

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

  body {
    font-family: 'Lato', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    font-size: 17px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
  }

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

  /* ─── SCARCITY TIMER ─── */
  .scarcity-bar {
    background: linear-gradient(135deg, #7A2A38 0%, #9B3A4A 100%);
    color: #fff;
    text-align: center;
    padding: 14px 20px;
    position: sticky;
    top: 0;
    z-index: 998;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  }
  .scarcity-bar-inner {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  .scarcity-text {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    line-height: 1.4;
  }
  .scarcity-text strong { color: #fff; }
  .timer-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    padding: 6px 14px;
    flex-shrink: 0;
  }
  .timer-unit {
    text-align: center;
    min-width: 36px;
  }
  .timer-num {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    color: var(--gold-light);
  }
  .timer-label {
    font-size: 9px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-top: 2px;
  }
  .timer-sep {
    font-size: 20px;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    line-height: 1;
    margin-bottom: 6px;
  }
  @media (max-width: 480px) {
    .scarcity-text { font-size: 13px; }
    .timer-num { font-size: 18px; }
    .timer-wrap { padding: 5px 10px; }
  }

  /* ─── SCARCITY SECTION (mid-page) ─── */
  .scarcity-section {
    background: linear-gradient(135deg, #FFF0F2 0%, #FAF6F1 100%);
    border-top: 3px solid var(--accent);
    padding: 48px 20px;
  }
  .scarcity-box {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
  }
  .scarcity-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
  }
  .scarcity-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 3vw, 28px);
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 8px;
  }
  .scarcity-sub {
    font-size: 15px;
    color: var(--text-mid);
    margin-bottom: 28px;
    line-height: 1.6;
  }
  .scarcity-timer-big {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
  }
  .stb-unit {
    background: var(--text-dark);
    border-radius: 12px;
    padding: 14px 18px;
    min-width: 64px;
    text-align: center;
  }
  .stb-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--gold-light);
    line-height: 1;
  }
  .stb-label {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
    display: block;
  }
  .stb-sep {
    font-size: 32px;
    color: var(--text-light);
    line-height: 1;
    padding-top: 14px;
  }
  .scarcity-bonus-list {
    background: #fff;
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 28px;
    text-align: left;
    border: 1px solid var(--border);
  }
  .scarcity-bonus-list p {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 12px;
  }
  .scarcity-bonus-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.4;
  }
  .scarcity-bonus-item:last-child { border-bottom: none; }
  .scarcity-bonus-item span { color: var(--accent); font-weight: 700; flex-shrink: 0; }

  /* ─── STICKY CTA BAR ─── */

  .sticky-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--accent);
    color: #fff;
    text-align: center;
    padding: 14px 20px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .sticky-bar span { font-size: 15px; opacity: 0.9; }
  .sticky-bar a {
    background: var(--gold);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 15px;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
  }
  .sticky-bar a:hover { background: var(--gold-light); }

  /* ─── SECTIONS ─── */
  section { padding: 60px 20px; }
  .container { max-width: 680px; margin: 0 auto; }
  .container-wide { max-width: 860px; margin: 0 auto; }

  /* ─── HERO ─── */
  .hero {
    background: linear-gradient(160deg, #F5E6E8 0%, var(--cream) 60%);
    padding: 0;
    position: relative;
    overflow: hidden;
  }
  .hero-inner {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 560px;
  }
  .hero-text {
    padding: 60px 48px 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
  }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 22px;
    font-weight: 900;
  }
  .hero-sub {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 380px;
  }
  .hero-cta-wrap { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
  .btn-main {
    background: var(--cta-bg);
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 17px;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 6px 24px rgba(155,58,74,0.3);
  }
  .btn-main:hover { background: var(--cta-hover); transform: translateY(-1px); }
  .hero-price-note { font-size: 13px; color: var(--text-light); }
  .hero-img {
    position: relative;
    overflow: hidden;
  }
  .hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  .hero-trust-strip {
    background: var(--accent);
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    font-size: 13px;
    letter-spacing: 0.03em;
  }
  .hero-trust-strip strong { font-weight: 700; }

  /* ─── PAIN SECTION ─── */
  .pain { background: var(--warm-white); }
  .pain-open {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 3vw, 30px);
    line-height: 1.45;
    color: var(--text-dark);
    margin-bottom: 32px;
    font-style: italic;
  }
  .pain-line { margin-bottom: 8px; font-size: 17px; color: var(--text-mid); }
  .pain-quote {
    border-left: 3px solid var(--accent);
    padding: 14px 24px;
    margin: 28px 0;
    background: var(--soft-pink);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--text-mid);
    font-size: 16px;
  }
  .pain-statement {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 24px 0 8px;
    line-height: 1.4;
  }

  /* ─── SECTION TITLES ─── */
  .section-label {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3.5vw, 38px);
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 700;
  }
  .section-title em { font-style: italic; color: var(--accent); }

  /* ─── DIVIDER ─── */
  .divider { width: 60px; height: 3px; background: var(--gold); margin: 0 auto 40px; border-radius: 2px; }
  .divider-left { margin-left: 0; }

  /* ─── BULLETS / CHECKS ─── */
  .check-list { list-style: none; margin: 20px 0; }
  .check-list li {
    padding: 8px 0 8px 36px;
    position: relative;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.5;
  }
  .check-list li:last-child { border-bottom: none; }
  .check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 9px;
    color: var(--accent);
    font-weight: 700;
    font-size: 16px;
  }
  .x-list { list-style: none; margin: 20px 0; }
  .x-list li {
    padding: 12px 0 12px 36px;
    position: relative;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.5;
  }
  .x-list li:last-child { border-bottom: none; }
  .x-list li::before {
    content: '❌';
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 14px;
  }
  .x-list li strong { display: block; color: var(--text-dark); font-weight: 700; margin-bottom: 2px; }

  /* ─── PROBLEM SECTION ─── */
  .problems { background: #FFF8F4; }
  .problem-intro { font-size: 18px; line-height: 1.7; color: var(--text-mid); margin-bottom: 32px; }

  /* ─── STATS SECTION ─── */
  .stats { background: var(--soft-pink); }
  .stat-block {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 4px 20px rgba(155,58,74,0.08);
    border-left: 4px solid var(--accent);
  }
  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
  }
  .stat-label { font-size: 15px; color: var(--text-mid); line-height: 1.5; }
  .stat-source { font-size: 12px; color: var(--text-light); margin-top: 8px; }

  /* ─── PERIMENOPAUZA CAN'T WAIT ─── */
  .cant-wait { background: var(--text-dark); color: #F5E6E8; }
  .cant-wait .section-title { color: #F5E6E8; }
  .cant-wait .section-label { color: var(--gold-light); }
  .cant-wait p { color: #D4C4B0; margin-bottom: 14px; font-size: 16px; }
  .cant-wait .bold-line {
    font-size: 19px;
    font-weight: 700;
    color: #F5E6E8;
    line-height: 1.4;
    margin: 20px 0;
  }
  .cant-wait-list { list-style: none; margin: 20px 0; }
  .cant-wait-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: #C4B09A;
    font-size: 16px;
  }
  .cant-wait-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
  }

  /* ─── SOLUTION ─── */
  .solution { background: var(--cream); }
  .solution-transition {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.4;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
    font-style: italic;
  }
  .solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin: 32px 0;
  }
  .solution-col {
    padding: 36px 32px;
    background: var(--warm-white);
  }
  .solution-col:first-child { border-right: 1px solid var(--border); }
  .solution-col-title {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--text-light);
  }
  .bad-item { color: var(--text-mid); font-size: 15px; margin-bottom: 12px; line-height: 1.4; }
  .bad-item::before { content: '✗  '; color: #C4626F; font-weight: 700; }
  .good-item { color: var(--text-mid); font-size: 15px; margin-bottom: 12px; line-height: 1.4; }
  .good-item::before { content: '✓  '; color: var(--accent); font-weight: 700; }

  /* ─── SPOKÓJ METHOD ─── */
  .method { background: #F5E6E8; }
  .spokój-intro { font-size: 17px; color: var(--text-mid); margin-bottom: 40px; line-height: 1.7; }
  .spokój-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
  .spokój-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0;
    align-items: stretch;
    border-bottom: 1px solid var(--border);
    background: #fff;
  }
  .spokój-item:first-child { border-radius: 16px 16px 0 0; overflow: hidden; }
  .spokój-item:last-child { border-radius: 0 0 16px 16px; overflow: hidden; border-bottom: none; }
  .spokój-letter {
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    flex-shrink: 0;
  }
  .spokój-content { padding: 24px 28px; }
  .spokój-word {
    font-weight: 700;
    font-size: 16px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
  }
  .spokój-desc { font-size: 15px; color: var(--text-mid); line-height: 1.6; }

  /* ─── FOR WHOM ─── */
  .forwhom { background: var(--cream); }
  .forwhom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
  }
  .forwhom-box {
    background: var(--warm-white);
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid var(--border);
  }
  .forwhom-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-dark);
  }

  /* ─── PRODUCT BOX ─── */
  .product { background: var(--warm-white); }
  .product-hero {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
  }
  .product-img-wrap {
    position: relative;
  }
  .product-img-wrap img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(155,58,74,0.2);
  }
  .product-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 3vw, 34px);
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
  }
  .product-desc { font-size: 16px; color: var(--text-mid); line-height: 1.7; margin-bottom: 24px; }
  .bonus-cards { display: grid; grid-template-columns: 1fr; gap: 16px; margin: 32px 0; }
  .bonus-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 28px;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    align-items: start;
  }
  .bonus-icon {
    width: 56px; height: 56px;
    background: var(--soft-pink);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
  }
  .bonus-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
  }
  .bonus-title { font-weight: 700; font-size: 16px; color: var(--text-dark); margin-bottom: 6px; }
  .bonus-desc { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

  /* ─── PACKAGE SUMMARY ─── */
  .package-box {
    background: linear-gradient(135deg, var(--soft-pink) 0%, #FFF8F4 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    border: 1px solid var(--border);
  }
  .package-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 24px;
  }
  .package-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
    color: var(--text-dark);
  }
  .package-item:last-child { border-bottom: none; }
  .package-item .pi-check { color: var(--accent); font-weight: 700; font-size: 18px; }

  /* ─── STORY SECTION ─── */
  .story { background: #FFF8F4; }
  .story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    margin: 32px 0;
    background: var(--border);
  }
  .story-col {
    padding: 36px 32px;
    background: var(--warm-white);
  }
  .story-col:first-child { background: #F5E6E8; border-right: 1px solid var(--border); }
  .story-col-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--text-light);
  }
  .story-text { font-size: 15px; color: var(--text-mid); line-height: 1.7; }
  .story-text p { margin-bottom: 10px; }
  .story-img-wrap { margin: 40px 0; border-radius: 16px; overflow: hidden; }
  .story-img-wrap img { width: 100%; }

  /* ─── RESULTS ─── */
  .results { background: var(--cream); }
  .results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }
  .result-item {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 22px;
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.5;
  }
  .result-item::before { content: '✅ '; }

  /* ─── TRUST ─── */
  .trust { background: var(--soft-pink); }
  .trust-note {
    background: #fff;
    border-radius: 12px;
    padding: 24px 28px;
    margin: 24px 0;
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    border: 1px solid var(--border);
  }
  .trust-note strong { color: var(--text-dark); }

  /* ─── FINAL CTA ─── */
  .final-cta { background: var(--accent); color: #fff; text-align: center; padding: 80px 20px 100px; }
  .final-cta .section-label { color: rgba(255,255,255,0.6); }
  .final-cta .section-title { color: #fff; margin-bottom: 16px; }
  .final-question {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 3vw, 36px);
    font-style: italic;
    line-height: 1.4;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
  }
  .final-cta-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto 48px;
  }
  .option-bad {
    background: rgba(0,0,0,0.25);
    border-radius: 16px;
    padding: 24px;
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    text-align: left;
    line-height: 1.6;
  }
  .option-bad strong { color: rgba(255,255,255,0.5); font-size: 13px; display: block; margin-bottom: 10px; letter-spacing: 0.08em; text-transform: uppercase; }
  .option-good {
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 16px;
    padding: 24px;
    font-size: 15px;
    color: #fff;
    text-align: left;
    line-height: 1.6;
  }
  .option-good strong { color: var(--gold-light); font-size: 13px; display: block; margin-bottom: 10px; letter-spacing: 0.08em; text-transform: uppercase; }
  .btn-main-white {
    background: #fff;
    color: var(--accent);
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 19px;
    padding: 22px 48px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    margin-bottom: 16px;
  }
  .btn-main-white:hover { background: var(--gold-light); color: var(--text-dark); transform: translateY(-2px); }
  .final-sub { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
  .final-legal { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 24px; max-width: 500px; margin-left: auto; margin-right: auto; }

  /* ─── PS ─── */
  .ps-section { background: var(--warm-white); padding: 48px 20px; }
  .ps-box {
    max-width: 640px;
    margin: 0 auto;
    background: var(--cream);
    border-radius: 16px;
    padding: 36px 40px;
    border: 1px solid var(--border);
  }
  .ps-label { font-size: 14px; color: var(--text-light); margin-bottom: 16px; font-style: italic; }
  .ps-text { font-size: 16px; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }
  .ps-summary { list-style: none; margin: 20px 0 24px; }
  .ps-summary li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 15px;
    color: var(--text-mid);
  }
  .ps-summary li::before { content: '✅'; position: absolute; left: 0; font-size: 13px; top: 8px; }

  /* ─── TRUST BAR ─── */
  .trust-bar {
    background: var(--text-dark);
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 16px 20px;
    font-size: 13px;
    line-height: 1.6;
  }
  .trust-bar strong { color: rgba(255,255,255,0.9); }

  /* ─── RESPONSIVE ─── */
  /* ─── EMOTION IMAGES ─── */
  .emotion-img-wrap {
    margin: 36px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  }
  .emotion-img-wrap img { width: 100%; display: block; }
  .img-caption {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 10px;
  }
  .two-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 36px 0;
  }
  .two-img-grid .emotion-img-wrap { margin: 0; }
  .bonus-img-wrap {
    margin: 40px 0 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  }
  .bonus-img-wrap img { width: 100%; display: block; }

  @media (max-width: 680px) {
    .two-img-grid { grid-template-columns: 1fr; }
  }

  /* original responsive below */
  @media (max-width: 680px) {
    section { padding: 48px 18px; }
    .hero-inner {
      grid-template-columns: 1fr;
      min-height: auto;
    }
    .hero-text {
      padding: 40px 24px 32px;
      order: 1;
    }
    .hero-img {
      height: 280px;
      order: 0;
    }
    .hero-sub { max-width: 100%; }
    .hero-cta-wrap { align-items: stretch; }
    .btn-main { text-align: center; }
    .solution-grid { grid-template-columns: 1fr; }
    .solution-col:first-child { border-right: none; border-bottom: 1px solid var(--border); }
    .forwhom-grid { grid-template-columns: 1fr; }
    .product-hero { grid-template-columns: 1fr; gap: 32px; }
    .product-img-wrap { max-width: 260px; margin: 0 auto; }
    .story-grid { grid-template-columns: 1fr; }
    .story-col:first-child { border-right: none; border-bottom: 1px solid var(--border); }
    .results-grid { grid-template-columns: 1fr; }
    .final-cta-options { grid-template-columns: 1fr; }
    .sticky-bar { padding: 12px 16px; }
    .sticky-bar span { display: none; }
    .package-box { padding: 28px 20px; }
    .spokój-letter { font-size: 28px; }
    .stat-number { font-size: 38px; }
  }



      /* Desktop: 2 góra + 1 środek */
      .testi-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
      }
      .testi-grid .testi-card:last-child {
        grid-column: 1 / -1;
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
      }
      .testi-card {
        background: #fff;
        border-radius: 16px;
        border: 1px solid var(--border);
        overflow: hidden;
      }
      .testi-card .testi-full {
        padding: 28px 32px;
      }

      /* Mobile: akordeony */
      @media (max-width: 680px) {
        .testi-grid { grid-template-columns: 1fr; gap: 12px; }
        .testi-grid .testi-card:last-child { grid-column: auto; max-width: 100%; }

        .testi-card .testi-full { display: none; padding: 0 20px 0; }
        .testi-card.open .testi-full {
          display: block;
          padding: 0 20px 20px;
          animation: fadeIn 0.25s ease;
        }
        @keyframes fadeIn { from { opacity:0; transform:translateY(-4px); } to { opacity:1; transform:translateY(0); } }

        .testi-header {
          display: flex;
          align-items: center;
          gap: 12px;
          padding: 16px 20px;
          cursor: pointer;
          user-select: none;
          -webkit-tap-highlight-color: transparent;
        }
        .testi-header-right { flex: 1; min-width: 0; }
        .testi-header-stars { color: var(--gold); font-size: 14px; line-height: 1; margin-bottom: 2px; }
        .testi-header-name { font-weight: 700; font-size: 15px; color: var(--text-dark); }
        .testi-header-age { font-size: 12px; color: var(--text-light); }
        .testi-header-preview {
          font-size: 13px;
          color: var(--text-mid);
          font-style: italic;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
          margin-top: 3px;
        }
        .testi-chevron {
          font-size: 18px;
          color: var(--text-light);
          transition: transform 0.25s;
          flex-shrink: 0;
        }
        .testi-card.open .testi-chevron { transform: rotate(180deg); }
        .testi-full p {
          font-size: 15px;
          color: var(--text-mid);
          line-height: 1.7;
          font-style: italic;
          padding-top: 4px;
          border-top: 1px solid var(--border);
          padding-top: 14px;
        }
      }

      /* Desktop: ukryj mobile header, pokaż pełne */
      @media (min-width: 681px) {
        .testi-header { display: none; }
        .testi-card .testi-full { display: block !important; }
      }
    