:root{
    --lilac:#5B3A8E;
    --dark:#2B163D;
    --cream:#F6EBD8;
    --gold:#D9A441;
    --lilac-tint: #efe7f7;
    --ink: #2B163D;
    --max: 640px;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Work Sans', sans-serif;
    background:var(--cream);
    color:var(--ink);
    line-height:1.55;
    -webkit-font-smoothing:antialiased;
    padding-bottom:78px; /* room for sticky bar on mobile */
  }
  h1,h2,h3,.display{
    font-family:'Fraunces', serif;
    font-weight:600;
    line-height:1.12;
    letter-spacing:-0.01em;
    color:var(--dark);
  }
  .wrap{
    max-width:var(--max);
    margin:0 auto;
    padding:0 22px;
  }
  section{padding:56px 0;}
  .eyebrow{
    display:inline-block;
    font-size:12.5px;
    font-weight:600;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:var(--lilac);
    background:var(--lilac-tint);
    padding:6px 14px;
    border-radius:100px;
    margin-bottom:18px;
  }
  .price{
    font-family:'Fraunces', serif;
    font-weight:600;
  }

  /* HERO */
  .hero{
    background:var(--dark);
    color:var(--cream);
    padding:48px 0 40px;
    position:relative;
  }
  .hero .eyebrow{
    background:rgba(217,164,65,0.15);
    color:var(--gold);
  }
  .hero h1{
    color:var(--cream);
    font-size:clamp(30px, 8vw, 42px);
    margin-bottom:16px;
  }
  .hero h1 em{
    font-style:italic;
    color:var(--gold);
  }
  .hero p.sub{
    font-size:17px;
    color:#E4D6EE;
    max-width:52ch;
    margin-bottom:28px;
  }
  .price-row{
    display:flex;
    align-items:baseline;
    gap:10px;
    margin-bottom:22px;
  }
  .price-row .amount{
    font-size:28px;
    color:var(--gold);
  }
  .price-row .note{
    font-size:13px;
    color:#C9B8D6;
  }
  .btn-primary{
    display:block;
    width:100%;
    text-align:center;
    background:var(--gold);
    color:var(--dark);
    font-family:'Work Sans', sans-serif;
    font-weight:700;
    font-size:16.5px;
    padding:17px 20px;
    border-radius:10px;
    border:none;
    cursor:pointer;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(217,164,65,0.25);
  }
  .btn-primary:active{ transform: translateY(1px); }
  .trust-line{
    text-align:center;
    font-size:13px;
    color:#C9B8D6;
    margin-top:14px;
  }
  .trust-line svg{vertical-align:-2px; margin-right:5px;}

  /* PROBLEM */
  .problem{ background:var(--cream); }
  .problem h2{
    font-size:clamp(24px,6vw,30px);
    margin-bottom:8px;
  }
  .problem .lead{
    color:#5B4A66;
    margin-bottom:26px;
    font-size:15.5px;
  }
  .scenario-list{ list-style:none; }
  .scenario-list li{
    display:flex;
    gap:12px;
    align-items:flex-start;
    padding:14px 0;
    border-bottom:1px solid rgba(43,22,61,0.09);
    font-size:15px;
  }
  .scenario-list li:last-child{ border-bottom:none; }
  .scenario-list .mark{
    flex:0 0 auto;
    width:22px; height:22px;
    border-radius:50%;
    background:var(--lilac-tint);
    color:var(--lilac);
    display:flex; align-items:center; justify-content:center;
    font-size:13px;
    font-weight:700;
    margin-top:1px;
  }
  .callback{
    margin-top:28px;
    padding:18px 20px;
    background:var(--dark);
    color:var(--cream);
    border-radius:12px;
    font-family:'Fraunces', serif;
    font-style:italic;
    font-size:16.5px;
    text-align:center;
  }

  /* TRANSFORMATION / SOLUTION */
  .solution{ background:#fff; }
  .solution h2{ font-size:clamp(24px,6vw,30px); margin-bottom:14px; }
  .solution p{ font-size:15.5px; color:#453552; margin-bottom:14px; }
  .transform{
    margin-top:26px;
    border-radius:14px;
    overflow:hidden;
    border:1px solid rgba(91,58,142,0.15);
  }
  .transform .row{
    padding:18px 20px;
    font-size:15px;
    display:flex;
    gap:12px;
    align-items:center;
  }
  .transform .from{
    background:var(--lilac-tint);
    color:#6b5a80;
  }
  .transform .to{
    background:var(--lilac);
    color:#fff;
    font-weight:600;
  }
  .transform .tag{
    font-size:11px;
    font-weight:700;
    letter-spacing:0.08em;
    text-transform:uppercase;
    opacity:0.7;
    flex:0 0 44px;
  }

  /* WHATS INSIDE */
  .inside{ background:var(--lilac); color:#fff; }
  .inside h2{ color:#fff; font-size:clamp(24px,6vw,30px); margin-bottom:8px; }
  .inside .lead{ color:#E4D6EE; margin-bottom:26px; font-size:15px; }
  .inside-list{ list-style:none; display:flex; flex-direction:column; gap:14px; }
  .inside-list li{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.14);
    border-radius:12px;
    padding:18px 18px;
  }
  .inside-list .num{
    font-family:'Fraunces', serif;
    color:var(--gold);
    font-size:13px;
    font-weight:700;
    letter-spacing:0.06em;
    margin-bottom:6px;
    display:block;
  }
  .inside-list .title{
    font-weight:600;
    font-size:15.5px;
    margin-bottom:6px;
    display:block;
  }
  .inside-list .benefit{
    font-size:14px;
    color:#E4D6EE;
  }

  /* WHO ITS FOR */
  .who{ background:var(--cream); }
  .who h2{ font-size:clamp(24px,6vw,30px); margin-bottom:26px; }
  .who-grid{ display:flex; flex-direction:column; gap:14px; }
  .who-card{
    background:#fff;
    border-radius:12px;
    padding:18px 20px;
    border:1px solid rgba(43,22,61,0.08);
  }
  .who-card .title{
    font-family:'Fraunces', serif;
    font-weight:600;
    color:var(--lilac);
    font-size:16.5px;
    margin-bottom:6px;
  }
  .who-card p{ font-size:14.5px; color:#453552; }

  /* WORTH IT */
  .worth{ background:#fff; }
  .worth h2{ font-size:clamp(24px,6vw,30px); margin-bottom:14px; }
  .worth p{ font-size:15.5px; color:#453552; margin-bottom:14px; }
  .worth .highlight{
    background:var(--lilac-tint);
    border-left:4px solid var(--gold);
    padding:16px 18px;
    border-radius:8px;
    font-family:'Fraunces', serif;
    font-style:italic;
    font-size:16px;
    color:var(--dark);
    margin:18px 0;
  }

  /* LEAD MAGNET */
  .lead-magnet{ background:var(--dark); color:var(--cream); }
  .lead-magnet .eyebrow{ background:rgba(217,164,65,0.15); color:var(--gold); }
  .lead-magnet h2{ color:#fff; font-size:clamp(21px,5.5vw,25px); margin-bottom:10px; }
  .lead-magnet p{ color:#C9B8D6; font-size:14.5px; margin-bottom:20px; }
  .lm-form{ display:flex; flex-direction:column; gap:10px; }
  .lm-form input{
    padding:14px 16px;
    border-radius:9px;
    border:1px solid rgba(255,255,255,0.2);
    background:rgba(255,255,255,0.06);
    color:#fff;
    font-size:15px;
    font-family:'Work Sans', sans-serif;
  }
  .lm-form input::placeholder{ color:#B9A9C6; }
  .btn-secondary{
    background:transparent;
    border:1.5px solid var(--gold);
    color:var(--gold);
    font-weight:700;
    font-size:15px;
    padding:14px 20px;
    border-radius:9px;
    cursor:pointer;
    font-family:'Work Sans', sans-serif;
  }
  .lm-note{ font-size:12.5px; color:#9A87AB; margin-top:12px; }

  /* FAQ */
  .faq{ background:var(--cream); }
  .faq h2{ font-size:clamp(24px,6vw,30px); margin-bottom:22px; }
  .faq-item{
    border-bottom:1px solid rgba(43,22,61,0.12);
  }
  .faq-q{
    width:100%;
    text-align:left;
    background:none;
    border:none;
    padding:16px 0;
    font-family:'Work Sans', sans-serif;
    font-weight:600;
    font-size:15px;
    color:var(--dark);
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    gap:12px;
  }
  .faq-q .plus{
    font-size:20px;
    color:var(--lilac);
    transition:transform 0.2s ease;
    flex:0 0 auto;
  }
  .faq-item.open .plus{ transform:rotate(45deg); }
  .faq-a{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.25s ease;
    font-size:14.5px;
    color:#453552;
  }
  .faq-a p{ padding-bottom:16px; }
  .faq-item.open .faq-a{ max-height:300px; }

  /* TRUST / CREATOR */
  .creator{ background:#fff; }
  .creator h2{ font-size:clamp(22px,5.5vw,26px); margin-bottom:16px; }
  .creator-card{
    background:var(--lilac-tint);
    border-radius:14px;
    padding:22px 20px;
  }
  .creator-card p{ font-size:14.5px; color:#453552; margin-bottom:12px; }
  .creator-card p:last-child{ margin-bottom:0; }
  .creator-name{
    font-family:'Fraunces', serif;
    font-weight:600;
    color:var(--lilac);
    font-size:15.5px;
  }

  /* FINAL CTA */
  .final{
    background:var(--dark);
    color:var(--cream);
    text-align:center;
  }
  .final h2{
    color:#fff;
    font-size:clamp(25px,6.5vw,32px);
    margin-bottom:14px;
  }
  .final p{
    color:#D8C9E4;
    font-size:15.5px;
    margin-bottom:26px;
    max-width:44ch;
    margin-left:auto;
    margin-right:auto;
  }
  .final .price-block{
    margin-bottom:20px;
  }
  .final .price-block .amount{
    font-size:32px;
    color:var(--gold);
  }
  .final .price-block .label{
    display:block;
    font-size:13px;
    color:#B9A9C6;
    margin-top:2px;
  }

  /* STICKY BAR */
  .sticky-bar{
    position:fixed;
    left:0; right:0; bottom:0;
    background:var(--dark);
    padding:12px 16px;
    display:flex;
    align-items:center;
    gap:12px;
    z-index:50;
    box-shadow:0 -6px 20px rgba(0,0,0,0.2);
  }
  .sticky-bar .info{
    flex:1;
    color:var(--cream);
    font-size:12.5px;
    line-height:1.3;
  }
  .sticky-bar .info b{
    display:block;
    font-family:'Fraunces', serif;
    font-size:15px;
    color:#fff;
  }
  .sticky-bar .btn-primary{
    width:auto;
    padding:12px 18px;
    font-size:14.5px;
    white-space:nowrap;
  }

  @media (min-width:520px){
    .who-grid, .transform{ }
  }
