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

  :root {
    --sky: #4DB8E8;
    --sky-dark: #1A8AC0;
    --red: #E8304A;
    --red-dark: #C0162E;
    --yellow: #F9C846;
    --yellow-dark: #E0A800;
    --green: #52C97A;
    --green-dark: #2EA358;
    --white: #FFFFFF;
    --cream: #FFF8F0;
    --text-dark: #1A2B3C;
    --text-mid: #4A5568;
    --border-light: rgba(255,255,255,0.6);
  }

  html { scroll-behavior: smooth; }

  /* ── STICKY TIMER TOP BAR ── */
  .sticky-timer-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1001;
    background: linear-gradient(135deg, #FF1433 0%, #CC0011 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 10px 20px;
    box-shadow: 0 3px 20px rgba(255,20,51,0.65);
  }
  .sticky-timer-label {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
  }
  .sticky-timer-digits {
    font-family: 'Fredoka One', cursive;
    font-size: 22px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.35);
    border-radius: 8px;
    padding: 2px 14px;
    letter-spacing: 3px;
    color: var(--white);
    line-height: 1.4;
  }

  body {
    padding-top: 48px;
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(180deg, #D8F0FF 0%, #EAF6FF 18%, #FFF8F0 45%, #FFF3E8 100%);
    min-height: 100vh;
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ── FLOATING DECO SHAPES ── */
  .deco-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 0; overflow: hidden;
  }
  .deco-bg svg { position: absolute; opacity: 0.12; }

  /* ── WRAPPER ── */
  .page-wrap {
    position: relative; z-index: 1;
    max-width: 780px;
    margin: 0 auto;
    padding: 0 16px 60px;
  }

  /* ── TOP THANK-YOU BAR ── */
  .thankyou-bar {
    background: #00B248;
    color: var(--white);
    text-align: center;
    padding: 18px 24px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
  .thankyou-bar span {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    border-radius: 30px;
    padding: 3px 14px;
    margin-right: 8px;
    font-size: 15px;
  }

  /* ── URGENCY BAND ── */
  .urgency-band {
    background: #FF1433;
    color: var(--white);
    text-align: center;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  .urgency-band b { color: var(--yellow); font-size: 17px; }

  /* ── HERO ── */
  .hero {
    padding: 40px 0 0;
    text-align: center;
  }
  .hero-eyebrow {
    display: inline-block;
    background: var(--yellow);
    color: var(--text-dark);
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 30px;
    padding: 6px 18px;
    margin-bottom: 20px;
  }
  .hero-headline {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(28px, 6vw, 46px);
    line-height: 1.15;
    color: var(--sky-dark);
    margin-bottom: 8px;
  }
  .hero-headline .red { color: var(--red); }
  .hero-sub {
    font-size: clamp(15px, 3vw, 19px);
    color: var(--text-mid);
    font-weight: 600;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.5;
  }
  .hero-sub strong { color: var(--red); }

  /* ── PRODUCT SHOWCASE ── */
  .product-showcase {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
    margin: 0 auto 36px;
    max-width: 520px;
    padding: 0 10px;
  }
  .product-book {
    flex: 0 0 auto;
    width: 52%;
    filter: drop-shadow(0 16px 32px rgba(0,0,0,0.18));
    transform: rotate(-3deg) translateY(8px);
    transition: transform 0.3s ease;
  }
  .product-book:hover { transform: rotate(-1deg) translateY(0); }
  .product-flat {
    flex: 0 0 auto;
    width: 42%;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.14));
    transform: rotate(2deg);
    border-radius: 16px;
    transition: transform 0.3s ease;
  }
  .product-flat:hover { transform: rotate(0deg); }
  .product-book img, .product-flat img {
    width: 100%;
    display: block;
    border-radius: 8px;
  }

  /* ── TIMER ── */
  .timer-wrap {
    background: linear-gradient(135deg, var(--red) 0%, #C0162E 100%);
    border-radius: 20px;
    padding: 22px 28px;
    text-align: center;
    margin-bottom: 36px;
    box-shadow: 0 8px 30px rgba(232,48,74,0.35);
    position: relative;
    overflow: hidden;
  }
  .timer-wrap::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 120px; height: 120px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
  }
  .timer-label {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .timer-digits {
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
  }
  .digit-block {
    text-align: center;
  }
  .digit-num {
    background: rgba(255,255,255,0.18);
    border: 2px solid rgba(255,255,255,0.35);
    border-radius: 12px;
    color: var(--white);
    font-family: 'Fredoka One', cursive;
    font-size: 38px;
    line-height: 1;
    padding: 8px 14px;
    min-width: 66px;
    display: block;
  }
  .digit-label {
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    font-weight: 700;
    margin-top: 5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .timer-sep {
    color: rgba(255,255,255,0.6);
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 14px;
  }
  .timer-note {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    font-weight: 600;
    margin-top: 12px;
  }

  /* ── WHAT YOU GET ── */
  .section-title {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(20px, 4vw, 28px);
    color: var(--sky-dark);
    text-align: center;
    margin-bottom: 20px;
  }
  .section-title .accent { color: var(--red); }

  .what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 36px;
  }
  @media (max-width: 500px) {
    .what-grid { grid-template-columns: 1fr; }
  }
  .what-card {
    background: var(--white);
    border-radius: 18px;
    padding: 20px 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    border: 2px solid transparent;
    transition: border-color 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
  }
  .what-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 5px;
    background: var(--card-accent, var(--sky));
  }
  .what-card:hover {
    border-color: var(--card-accent, var(--sky));
    transform: translateY(-3px);
  }
  .what-card .icon { font-size: 28px; margin-bottom: 8px; display: block; }
  .what-card h3 {
    font-weight: 800;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 6px;
  }
  .what-card p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.5;
    font-weight: 600;
  }
  .what-card .badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    border-radius: 20px;
    padding: 2px 10px;
    margin-top: 8px;
    background: var(--card-accent, var(--sky));
    color: var(--white);
  }

  /* ── FOR WHO ── */
  .for-who {
    background: var(--white);
    border-radius: 24px;
    padding: 28px 28px 24px;
    margin-bottom: 36px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border: 2px solid #E8F7FF;
  }
  .check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 14px;
  }
  .check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
  }
  .check-list li .chk {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 13px;
    font-weight: 900;
    margin-top: 1px;
  }

  /* ── PRICE BLOCK ── */
  .price-block {
    background: linear-gradient(135deg, #1A8AC0 0%, #0D6E9E 100%);
    border-radius: 28px;
    padding: 32px 28px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 12px 40px rgba(26,138,192,0.35);
    position: relative;
    overflow: hidden;
  }
  .price-block::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -40px;
    width: 160px; height: 160px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
  }
  .price-was {
    font-size: 15px;
    font-weight: 700;
    color: rgba(255,255,255,0.65);
    text-decoration: line-through;
    margin-bottom: 4px;
  }
  .price-now-label {
    font-size: 13px;
    font-weight: 800;
    color: var(--yellow);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .price-amount {
    font-family: 'Fredoka One', cursive;
    font-size: 62px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
  }
  .price-amount sup {
    font-size: 30px;
    vertical-align: super;
  }
  .price-once {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    margin-bottom: 20px;
  }
  .price-saving {
    display: inline-block;
    background: var(--yellow);
    color: var(--text-dark);
    font-weight: 900;
    font-size: 13px;
    border-radius: 30px;
    padding: 6px 18px;
    margin-bottom: 24px;
  }
  .cta-btn {
    display: block;
    width: 100%;
    max-width: 460px;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, #FFD000 0%, #E69500 100%);
    color: #1A1A00;
    font-family: 'Fredoka One', cursive;
    font-size: clamp(18px, 4vw, 24px);
    font-weight: 400;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 60px;
    padding: 20px 32px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 6px 0 #A86A00, 0 12px 28px rgba(0,0,0,0.25);
    transition: transform 0.15s, box-shadow 0.15s;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-btn::after {
    content: '';
    position: absolute;
    top: -10%;
    left: 0;
    width: 40%;
    height: 120%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
    transform: translateX(-160%) skewX(-18deg);
    animation: cta-shimmer 2.6s ease-in-out infinite;
    pointer-events: none;
  }
  .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 0 #C8900A, 0 18px 36px rgba(0,0,0,0.3);
  }
  .cta-btn:active {
    transform: translateY(2px);
    box-shadow: 0 3px 0 #C8900A, 0 6px 16px rgba(0,0,0,0.2);
  }
  .cta-btn .sub-line {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: rgba(0,0,0,0.55);
    margin-top: 3px;
  }
  .cta-guarantee {
    color: rgba(255,255,255,0.75);
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 6px;
  }

  /* ── NO THANKS ── */
  .no-thanks {
    text-align: center;
    margin-bottom: 36px;
  }
  .no-thanks a {
    display: inline-block;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 40px;
    padding: 9px 22px;
    background: #FF1433;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.01em;
  }
  .no-thanks a:hover {
    background: #CC0011;
    transform: translateY(-1px);
  }

  /* ── GUARANTEE ── */
  .guarantee-block {
    background: var(--white);
    border-radius: 20px;
    padding: 24px 28px;
    margin-bottom: 36px;
    border: 2px dashed var(--green);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  }
  .guarantee-icon {
    font-size: 48px;
    flex-shrink: 0;
  }
  .guarantee-block h3 {
    font-weight: 900;
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 6px;
  }
  .guarantee-block p {
    font-size: 13px;
    color: var(--text-mid);
    font-weight: 600;
    line-height: 1.5;
  }

  /* ── FAQ ── */
  .faq-list { margin-bottom: 36px; }
  .faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #EEF5FF;
  }
  .faq-q {
    padding: 18px 20px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    user-select: none;
  }
  .faq-q .arrow {
    font-size: 18px;
    transition: transform 0.25s;
    color: var(--sky);
    flex-shrink: 0;
  }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s;
    padding: 0 20px;
    font-size: 13px;
    color: var(--text-mid);
    font-weight: 600;
    line-height: 1.6;
  }
  .faq-item.open .faq-q .arrow { transform: rotate(180deg); }
  .faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 20px 18px;
  }

  /* ── SECOND CTA ── */
  .cta-bottom-wrap {
    text-align: center;
    padding: 36px 0 0;
  }
  .cta-bottom-wrap .cta-btn {
    background: linear-gradient(135deg, var(--red) 0%, #C0162E 100%);
    color: var(--white);
    box-shadow: 0 6px 0 #8C0018, 0 12px 28px rgba(232,48,74,0.35);
  }
  .cta-bottom-wrap .cta-btn:hover {
    box-shadow: 0 9px 0 #8C0018, 0 18px 36px rgba(232,48,74,0.45);
  }
  .cta-bottom-wrap .cta-btn:active {
    box-shadow: 0 3px 0 #8C0018, 0 6px 16px rgba(232,48,74,0.25);
  }
  .cta-bottom-wrap .cta-btn .sub-line { color: rgba(255,255,255,0.7); }

  /* ── STICKY MOBILE CTA ── */
  .sticky-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(135deg, var(--red) 0%, #C0162E 100%);
    padding: 14px 20px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .sticky-cta-text {
    color: white;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
  }
  .sticky-cta-text strong { color: var(--yellow); font-size: 15px; display: block; }
  .sticky-btn {
    flex-shrink: 0;
    background: linear-gradient(135deg, #FFD000 0%, #E69500 100%);
    color: #1A1A00;
    font-family: 'Fredoka One', cursive;
    font-size: 15px;
    border: none;
    border-radius: 40px;
    padding: 12px 22px;
    cursor: pointer;
    box-shadow: 0 4px 0 #A86A00, 0 8px 18px rgba(0,0,0,0.2);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    will-change: transform;
    -webkit-animation: sticky-btn-pulse 2.2s ease-in-out infinite;
    animation: sticky-btn-pulse 2.2s ease-in-out infinite;
  }
  .sticky-btn::after {
    content: '';
    position: absolute;
    top: -10%; left: 0;
    width: 40%; height: 120%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
    -webkit-transform: translateX(-160%) skewX(-18deg);
    transform: translateX(-160%) skewX(-18deg);
    -webkit-animation: cta-shimmer 2.6s ease-in-out infinite;
    animation: cta-shimmer 2.6s ease-in-out infinite;
    pointer-events: none;
  }
  .sticky-btn:hover {
    -webkit-animation: none;
    animation: none;
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
  }
  @media (max-width: 600px) {
    .sticky-cta { display: flex; }
    .page-wrap { padding-bottom: 100px; }
  }

  /* ── DIVIDER ── */
  .wave-divider { margin: 10px 0 28px; text-align: center; opacity: 0.15; }

  /* ── ANIMATIONS ── */
  @keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  .product-book { animation: floatY 4s ease-in-out infinite; }
  .product-flat { animation: floatY 4s ease-in-out infinite 0.8s; }

  @-webkit-keyframes sticky-btn-pulse {
    0%, 100% { -webkit-transform: scale(1);    transform: scale(1);    box-shadow: 0 4px 0 #A86A00, 0 8px 18px rgba(0,0,0,0.2); }
    50%       { -webkit-transform: scale(1.06); transform: scale(1.06); box-shadow: 0 6px 0 #A86A00, 0 14px 26px rgba(255,208,0,0.55); }
  }
  @keyframes sticky-btn-pulse {
    0%, 100% { transform: scale(1);    box-shadow: 0 4px 0 #A86A00, 0 8px 18px rgba(0,0,0,0.2); }
    50%       { transform: scale(1.06); box-shadow: 0 6px 0 #A86A00, 0 14px 26px rgba(255,208,0,0.55); }
  }

  @keyframes cta-shimmer {
    0%   { transform: translateX(-160%) skewX(-18deg); }
    38%  { transform: translateX(320%) skewX(-18deg); }
    100% { transform: translateX(320%) skewX(-18deg); }
  }

  @keyframes cta-float-pulse {
    0%, 100% {
      transform: translateY(0);
      box-shadow: 0 6px 0 #A86A00, 0 12px 28px rgba(0,0,0,0.25);
    }
    50% {
      transform: translateY(-6px);
      box-shadow: 0 12px 0 #A86A00, 0 22px 44px rgba(255,208,0,0.65);
    }
  }
  @keyframes cta-float-pulse-red {
    0%, 100% {
      transform: translateY(0);
      box-shadow: 0 6px 0 #8C0018, 0 12px 28px rgba(232,48,74,0.35);
    }
    50% {
      transform: translateY(-6px);
      box-shadow: 0 12px 0 #8C0018, 0 22px 44px rgba(255,20,51,0.6);
    }
  }
  .cta-btn { animation: cta-float-pulse 2.2s ease-in-out infinite; }
  .cta-btn:hover { animation: none; transform: translateY(-3px); }
  .cta-bottom-wrap .cta-btn { animation: cta-float-pulse-red 2.2s ease-in-out infinite; }

  @media (prefers-reduced-motion: reduce) {
    .product-book, .product-flat, .cta-btn { animation: none; }
  }