:root{
    --purple-deep:#3a2a6b;
    --purple:#7c5cd6;
    --purple-light:#a98aec;
    --lavender-bg:#f4f0fd;
    --pink:#ff8fb1;
    --pink-light:#ffe1ea;
    --mint:#7fe0c4;
    --gold:#ffc94a;
    --ink:#2c2438;
    --muted:#6b6280;
    --white:#ffffff;
    --shadow:0 20px 45px rgba(58,42,107,0.18);
  }
  *{box-sizing:border-box;margin:0;padding:0;}
  body{
    font-family:'Segoe UI',-apple-system,BlinkMacSystemFont,Roboto,Helvetica,Arial,sans-serif;
    color:var(--ink);
    background:linear-gradient(180deg,#fbf9ff 0%,#ffffff 40%);
    line-height:1.6;
    overflow-x:hidden;
  }
  a{text-decoration:none;color:inherit;}
  img{max-width:100%;height:auto;display:block;}
  .container{max-width:1120px;margin:0 auto;padding:0 24px;}

  /* ---------- Top bar ---------- */
  .topbar{
    display:flex;align-items:center;justify-content:space-between;
    padding:18px 24px;max-width:1120px;margin:0 auto;
  }
  .brand{display:flex;align-items:center;gap:10px;font-weight:800;font-size:1.15rem;color:var(--purple-deep);}
  .brand-logo{width:38px;height:38px;border-radius:10px;box-shadow:0 4px 10px rgba(58,42,107,0.25);}
  .topbar .cta-mini{
    background:var(--purple);color:#fff;padding:10px 20px;border-radius:999px;font-weight:700;font-size:0.9rem;
    box-shadow:0 8px 20px rgba(124,92,214,0.35);
  }

  /* ---------- Hero ---------- */
  .hero{
    position:relative;
    padding:36px 24px 70px;
    background:radial-gradient(circle at 15% 20%, #efe7ff 0%, transparent 45%),
               radial-gradient(circle at 85% 10%, #ffe9f1 0%, transparent 40%);
  }
  .hero-grid{
    max-width:1120px;margin:0 auto;
    display:grid;grid-template-columns:1.1fr 0.9fr;gap:56px;align-items:center;
  }
  .badge-launch{
    display:inline-flex;align-items:center;gap:8px;
    background:var(--pink-light);color:#c23566;font-weight:700;font-size:0.82rem;
    padding:7px 14px;border-radius:999px;margin-bottom:18px;
    letter-spacing:.3px;
  }
  .badge-launch:before{content:"✨";}
  .hero h1{
    font-size:2.7rem;line-height:1.15;color:var(--purple-deep);font-weight:900;margin-bottom:18px;
  }
  .hero h1 span{color:var(--pink);}
  .hero p.sub{
    font-size:1.15rem;color:var(--muted);max-width:520px;margin-bottom:26px;
  }
  .hero-points{list-style:none;margin-bottom:30px;display:flex;flex-direction:column;gap:10px;}
  .hero-points li{display:flex;align-items:center;gap:10px;font-weight:600;color:var(--ink);font-size:0.98rem;}
  .hero-points li .ic{
    width:24px;height:24px;border-radius:50%;background:var(--mint);
    display:flex;align-items:center;justify-content:center;color:#fff;font-size:0.75rem;font-weight:900;flex-shrink:0;
  }
  .btn-primary{
    display:inline-flex;align-items:center;justify-content:center;gap:10px;
    background:linear-gradient(135deg,#ff9fbd,#ff6f9c);color:#fff;font-weight:800;
    font-size:1.15rem;padding:18px 38px;border-radius:16px;
    box-shadow:0 14px 30px rgba(255,111,156,0.45);
    border:none;cursor:pointer;transition:transform .15s ease, box-shadow .15s ease;
  }
  .btn-primary:hover{transform:translateY(-2px);box-shadow:0 18px 36px rgba(255,111,156,0.55);}
  .btn-sub{margin-top:12px;font-size:0.85rem;color:var(--muted);display:flex;align-items:center;gap:6px;}
  .btn-sub:before{content:"🔒";}

  .hero-visual{position:relative;display:flex;justify-content:center;}
  .cover-frame{
    position:relative;max-width:340px;width:100%;
    transform:rotate(-3deg);
  }
  .cover-frame img{
    border-radius:18px;box-shadow:var(--shadow);border:6px solid #fff;
  }
  .float-tag{
    position:absolute;background:#fff;border-radius:14px;box-shadow:0 12px 24px rgba(58,42,107,0.18);
    padding:10px 16px;font-weight:800;font-size:0.85rem;color:var(--purple-deep);
    display:flex;align-items:center;gap:8px;
  }
  .float-tag.pages{top:-18px;right:-22px;}
  .float-tag.pdf{bottom:14px;left:-34px;}
  .float-tag .em{font-size:1.1rem;}

  /* ---------- Section shared ---------- */
  section{padding:70px 0;}
  .eyebrow{
    text-align:center;color:var(--pink);font-weight:800;letter-spacing:1px;text-transform:uppercase;font-size:0.82rem;margin-bottom:10px;
  }
  h2.section-title{
    text-align:center;font-size:2.1rem;color:var(--purple-deep);font-weight:900;margin-bottom:14px;
  }
  p.section-sub{
    text-align:center;color:var(--muted);max-width:600px;margin:0 auto 46px;font-size:1.05rem;
  }

  /* ---------- Benefits ---------- */
  .benefits{background:var(--lavender-bg);}
  .benefits-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;}
  .benefit-card{
    background:#fff;border-radius:20px;padding:30px 24px;box-shadow:0 10px 30px rgba(58,42,107,0.08);
    text-align:left;
  }
  .benefit-card .icon{
    width:52px;height:52px;border-radius:14px;display:flex;align-items:center;justify-content:center;
    font-size:1.5rem;margin-bottom:16px;
  }
  .benefit-card:nth-child(1) .icon{background:#ffe1ea;}
  .benefit-card:nth-child(2) .icon{background:#e4f9f1;}
  .benefit-card:nth-child(3) .icon{background:#fff3d6;}
  .benefit-card:nth-child(4) .icon{background:#eee5ff;}
  .benefit-card:nth-child(5) .icon{background:#e1f2ff;}
  .benefit-card:nth-child(6) .icon{background:#ffe9df;}
  .benefit-card h3{font-size:1.08rem;color:var(--ink);margin-bottom:8px;font-weight:800;}
  .benefit-card p{font-size:0.92rem;color:var(--muted);}

  /* ---------- Gallery ---------- */
  .gallery-grid{
    display:grid;grid-template-columns:repeat(4,1fr);gap:18px;
  }
  .gallery-grid figure{
    border-radius:16px;overflow:hidden;box-shadow:0 10px 24px rgba(58,42,107,0.12);
    border:1px solid #eee6ff;background:#fff;
  }
  .gallery-grid img{width:100%;display:block;}
  .gallery-grid figcaption{
    padding:10px 12px;font-size:0.82rem;font-weight:700;color:var(--purple-deep);text-align:center;
  }
  .gallery-note{text-align:center;color:var(--muted);margin-top:26px;font-size:0.95rem;}

  /* ---------- How it works ---------- */
  .steps{background:var(--lavender-bg);}
  .steps-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;}
  .step-card{text-align:center;padding:10px 18px;}
  .step-num{
    width:46px;height:46px;border-radius:50%;background:var(--purple);color:#fff;font-weight:900;
    display:flex;align-items:center;justify-content:center;margin:0 auto 16px;font-size:1.1rem;
    box-shadow:0 10px 20px rgba(124,92,214,0.35);
  }
  .step-card h3{font-weight:800;margin-bottom:8px;font-size:1.05rem;color:var(--ink);}
  .step-card p{color:var(--muted);font-size:0.92rem;}

  /* ---------- Guarantee ---------- */
  .guarantee{
    background:linear-gradient(135deg,#efe7ff,#ffe9f1);
    border-radius:28px;max-width:1120px;margin:0 auto;padding:50px 40px;
    display:grid;grid-template-columns:auto 1fr;gap:34px;align-items:center;
  }
  .guarantee-badge{
    width:130px;height:130px;border-radius:50%;background:#fff;box-shadow:0 14px 30px rgba(58,42,107,0.18);
    display:flex;flex-direction:column;align-items:center;justify-content:center;flex-shrink:0;
    border:4px dashed var(--gold);
  }
  .guarantee-badge .num{font-size:2.1rem;font-weight:900;color:var(--purple-deep);line-height:1;}
  .guarantee-badge .lbl{font-size:0.72rem;font-weight:800;color:var(--pink);text-transform:uppercase;letter-spacing:.5px;margin-top:4px;}
  .guarantee-text h3{font-size:1.4rem;color:var(--purple-deep);font-weight:900;margin-bottom:10px;}
  .guarantee-text p{color:var(--muted);font-size:1rem;}

  /* ---------- Pricing ---------- */
  .pricing{text-align:center;}
  .price-card{
    max-width:460px;margin:0 auto;background:#fff;border-radius:26px;
    box-shadow:0 24px 50px rgba(58,42,107,0.18);padding:44px 36px;border:2px solid #f1e9ff;
  }
  .price-old{color:var(--muted);text-decoration:line-through;font-size:1.15rem;margin-bottom:4px;}
  .price-new{font-size:3.2rem;font-weight:900;color:var(--purple-deep);}
  .price-new sup{font-size:1.4rem;top:-1.4rem;}
  .price-cents{font-size:1.8rem;}
  .price-tag{
    display:inline-block;background:#ffe1ea;color:#c23566;font-weight:800;font-size:0.85rem;
    padding:6px 14px;border-radius:999px;margin-bottom:14px;
  }
  .price-includes{list-style:none;text-align:left;margin:26px 0;display:flex;flex-direction:column;gap:12px;}
  .price-includes li{display:flex;gap:10px;align-items:flex-start;font-size:0.96rem;color:var(--ink);font-weight:600;}
  .price-includes li .ic{color:var(--mint);font-weight:900;flex-shrink:0;}
  .price-card .btn-primary{width:100%;font-size:1.2rem;padding:20px;}

  /* ---------- FAQ ---------- */
  .faq{background:var(--lavender-bg);}
  .faq-list{max-width:760px;margin:0 auto;display:flex;flex-direction:column;gap:14px;}
  .faq-item{background:#fff;border-radius:16px;padding:22px 26px;box-shadow:0 8px 20px rgba(58,42,107,0.07);}
  .faq-item h4{font-size:1.02rem;color:var(--purple-deep);font-weight:800;margin-bottom:8px;display:flex;gap:10px;}
  .faq-item h4:before{content:"?";background:var(--purple);color:#fff;width:24px;height:24px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:0.8rem;flex-shrink:0;}
  .faq-item p{color:var(--muted);font-size:0.92rem;padding-left:34px;}

  /* ---------- Final CTA ---------- */
  .final-cta{
    text-align:center;background:linear-gradient(135deg,var(--purple-deep),#5a3fa0);
    border-radius:32px;max-width:1120px;margin:0 auto;padding:60px 40px;color:#fff;
  }
  .final-cta h2{font-size:2rem;font-weight:900;margin-bottom:14px;}
  .final-cta p{color:#ddd4ff;max-width:520px;margin:0 auto 28px;font-size:1.05rem;}
  .final-cta .btn-primary{background:linear-gradient(135deg,var(--gold),#ffb020);color:#3a2a6b;box-shadow:0 14px 30px rgba(255,201,74,0.4);}

  footer{padding:36px 24px;text-align:center;color:var(--muted);font-size:0.82rem;}
  footer p{margin-bottom:6px;}
  .footer-logo{width:88px;height:88px;margin:0 auto 16px;}

  @media(max-width:860px){
    .hero-grid{grid-template-columns:1fr;text-align:center;}
    .hero p.sub{margin:0 auto 26px;}
    .hero-points{align-items:center;}
    .hero-visual{order:-1;margin-bottom:10px;}
    .benefits-grid{grid-template-columns:repeat(2,1fr);}
    .gallery-grid{grid-template-columns:repeat(2,1fr);}
    .steps-grid{grid-template-columns:1fr;}
    .guarantee{grid-template-columns:1fr;text-align:center;padding:36px 26px;}
    .hero h1{font-size:2.1rem;}
  }

  /* ---------- Phone ---------- */
  @media(max-width:480px){
    .container{padding:0 18px;}
    .topbar{padding:14px 18px;}
    .brand{font-size:0.95rem;gap:6px;}
    .topbar .cta-mini{padding:9px 16px;font-size:0.82rem;}

    .hero{padding:28px 18px 50px;}
    .badge-launch{font-size:0.75rem;padding:6px 12px;}
    .hero h1{font-size:1.8rem;}
    .hero p.sub{font-size:1rem;}
    .btn-primary{width:100%;padding:16px 24px;font-size:1.05rem;}

    .cover-frame{max-width:270px;}
    .float-tag{padding:8px 12px;font-size:0.78rem;}
    .float-tag.pages{top:-12px;right:0;}
    .float-tag.pdf{bottom:10px;left:0;}

    section{padding:50px 0;}
    h2.section-title{font-size:1.6rem;}
    p.section-sub{font-size:0.95rem;margin-bottom:32px;}

    .benefits-grid{grid-template-columns:1fr;gap:16px;}
    .benefit-card{padding:24px 20px;}

    .gallery-grid{gap:12px;}

    .guarantee{padding:28px 20px;gap:20px;}
    .guarantee-badge{width:104px;height:104px;}
    .guarantee-badge .num{font-size:1.7rem;}
    .guarantee-text h3{font-size:1.2rem;}

    .price-card{padding:32px 22px;}
    .price-new{font-size:2.5rem;}

    .final-cta{padding:40px 22px;}
    .final-cta h2{font-size:1.6rem;}
  }
