:root {
      --bg: #fbf7f0;
      --surface: #ffffff;
      --ink: #09080d;
      --muted: #6b6673;
      --line: rgba(9, 8, 13, .10);
      --purple: #6650c7;
      --purple-dark: #3f2f91;
      --green: #34a26f;
      --soft-purple: #eee9ff;
      --soft-green: #e8f7ef;
      --shadow: 0 24px 80px rgba(51, 38, 92, .14);
      --radius: 28px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at 20% 0%, rgba(102,80,199,.15), transparent 36%),
        radial-gradient(circle at 90% 10%, rgba(52,162,111,.12), transparent 32%),
        var(--bg);
      color: var(--ink);
      line-height: 1.5;
    }

    a { color: inherit; text-decoration: none; }
    .wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

    header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(18px);
      background: rgba(251, 247, 240, .78);
      border-bottom: 1px solid var(--line);
    }
    .nav {
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      letter-spacing: .08em;
      font-size: 25px;
    }
    .mark {
      width: 34px;
      height: 34px;
      border: 7px solid var(--ink);
      border-left-color: transparent;
      border-right-color: transparent;
      border-radius: 50%;
      transform: rotate(-20deg);
      position: relative;
    }
    .mark:before, .mark:after {
      content: "";
      position: absolute;
      width: 8px;
      height: 8px;
      background: var(--ink);
      border-radius: 50%;
      left: 50%;
      transform: translateX(-50%);
    }
    .mark:before { top: -7px; }
    .mark:after { bottom: -7px; }

    nav { display: flex; gap: 24px; color: var(--muted); font-weight: 650; font-size: 14px; }
    .nav-cta, .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 18px;
      border-radius: 999px;
      font-weight: 800;
      border: 1px solid var(--line);
      background: var(--ink);
      color: white;
      box-shadow: 0 12px 34px rgba(9,8,13,.18);
    }
    .btn.secondary { background: white; color: var(--ink); box-shadow: none; }
    .btn.green { background: var(--green); }

    .hero { padding: 86px 0 68px; }
    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.03fr) minmax(360px, .97fr);
      gap: 52px;
      align-items: center;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--purple-dark);
      background: var(--soft-purple);
      padding: 9px 14px;
      border-radius: 999px;
      font-weight: 800;
      font-size: 14px;
      margin-bottom: 24px;
    }
    h1 {
      margin: 0;
      font-size: clamp(48px, 7vw, 88px);
      line-height: .94;
      letter-spacing: -.065em;
    }
    .gradient-text {
      color: var(--purple);
    }
    .lead {
      margin: 26px 0 0;
      color: #3d3945;
      font-size: clamp(19px, 2vw, 23px);
      max-width: 650px;
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
    .micro { color: var(--muted); margin-top: 18px; font-size: 14px; }

    .phone-stack {
      position: relative;
      min-height: 560px;
    }
    .phone {
      position: absolute;
      width: 290px;
      min-height: 560px;
      background: #fffaf4;
      border: 10px solid #0c0b10;
      border-radius: 42px;
      box-shadow: var(--shadow);
      overflow: hidden;
      padding: 22px 18px;
    }
    .phone.one { left: 0; top: 28px; transform: rotate(-5deg); }
    .phone.two { right: 0; top: 0; transform: rotate(5deg); }
    .phone h3 { margin: 16px 0 8px; font-size: 22px; line-height: 1.08; }
    .phone p { margin: 0; color: var(--muted); font-size: 13px; }
    .phone-top { display: flex; justify-content: space-between; align-items: center; font-weight: 900; font-size: 13px; }
    .search { margin: 22px 0 16px; background: white; border: 1px solid var(--line); border-radius: 12px; padding: 11px; color: var(--muted); font-size: 13px; }
    .product-card { background: linear-gradient(180deg,#f4eee6,#fff); border-radius: 22px; padding: 16px; margin-top: 14px; border: 1px solid var(--line); }
    .product-art { height: 145px; border-radius: 18px; background: radial-gradient(circle,#d7c9b6 0 100%, transparent 20%), linear-gradient(145deg,#eee6dc,#faf8f4); display: grid; place-items:center; font-size: 58px; }
    .price { font-weight: 900; margin-top: 6px; }
    .success-card { margin-top: 28px; padding: 20px; border-radius: 22px; background: white; border: 1px solid var(--line); }
    .save { font-size: 36px; color: var(--green); font-weight: 950; margin: 8px 0 4px; }
    .progress { height: 10px; background: #ebe6df; border-radius: 99px; margin: 16px 0; overflow: hidden; }
    .progress span { display: block; height: 100%; width: 78%; background: var(--green); border-radius: 99px; }

    section { padding: 70px 0; }
    .section-head { max-width: 730px; margin-bottom: 34px; }
    .kicker { color: var(--purple); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; font-size: 12px; }
    h2 { margin: 10px 0 0; font-size: clamp(34px, 4vw, 56px); line-height: 1; letter-spacing: -.045em; }
    .section-head p { color: var(--muted); font-size: 18px; }

    .steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
    .card {
      background: rgba(255,255,255,.72);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: 0 18px 50px rgba(51,38,92,.07);
    }
    .num { width: 36px; height: 36px; border-radius: 50%; background: var(--purple); color: white; display:grid; place-items:center; font-weight: 900; margin-bottom: 22px; }
    .card h3 { margin: 0 0 10px; font-size: 21px; line-height: 1.14; }
    .card p { margin: 0; color: var(--muted); }

    .split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: stretch; }
    .big-card { padding: 34px; border-radius: 34px; background: white; border: 1px solid var(--line); box-shadow: var(--shadow); }
    .formula { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 26px; }
    .bubble { flex: 1; min-height: 138px; border-radius: 28px; display: grid; place-items: center; text-align:center; padding: 18px; font-weight: 850; }
    .bubble.purple { background: var(--soft-purple); color: var(--purple-dark); }
    .bubble.red { background: #f7e9e1; color: #8b4b31; }
    .bubble.green { background: var(--soft-green); color: #1d744d; }
    .operator { font-size: 30px; font-weight: 900; }

    .timeline { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
    .mail { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 22px; min-height: 210px; }
    .mail small { color: var(--muted); font-weight: 800; }
    .mail h3 { margin: 18px 0 10px; font-size: 22px; line-height: 1.05; }
    .mail p { color: var(--muted); margin: 0; }

    .quote {
      text-align: center;
      padding: 74px 28px;
      border-radius: 40px;
      background: linear-gradient(135deg, #111016, #31265f);
      color: white;
      box-shadow: var(--shadow);
    }
    .quote h2 { max-width: 850px; margin: 0 auto; }
    .quote p { color: rgba(255,255,255,.72); font-size: 19px; max-width: 720px; margin: 22px auto 0; }

    .pricing { display:grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
    .price-card { background: white; border: 1px solid var(--line); border-radius: 30px; padding: 28px; }
    .price-card.featured { border: 2px solid var(--purple); box-shadow: var(--shadow); transform: translateY(-8px); }
    .price-card h3 { margin: 0; font-size: 24px; }
    .amount { font-size: 44px; font-weight: 950; letter-spacing: -.04em; margin: 18px 0 4px; }
    ul { padding: 0; margin: 22px 0 0; list-style: none; display: grid; gap: 12px; color: var(--muted); }
    li:before { content: "✓"; color: var(--green); font-weight: 900; margin-right: 9px; }

    .cta { padding-bottom: 92px; }
    .cta-box { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items:center; background: #fff; border-radius: 38px; padding: 42px; border: 1px solid var(--line); box-shadow: var(--shadow); }
    .cta-box h2 { margin: 0; }
    .cta-box p { color: var(--muted); font-size: 18px; max-width: 680px; }

    footer { border-top: 1px solid var(--line); padding: 34px 0; color: var(--muted); }
    .footer-row { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }

    @media (max-width: 980px) {
      nav { display: none; }
      .hero-grid, .split, .cta-box { grid-template-columns: 1fr; }
      .phone-stack { min-height: 610px; }
      .phone.one { left: 4%; }
      .phone.two { right: 4%; top: 60px; }
      .steps { grid-template-columns: repeat(2,1fr); }
      .timeline, .pricing { grid-template-columns: 1fr; }
      .price-card.featured { transform: none; }
    }
    @media (max-width: 640px) {
      .wrap { padding: 0 18px; }
      .hero { padding-top: 56px; }
      .phone-stack { min-height: 900px; }
      .phone { position: relative; width: 100%; max-width: 330px; margin: 0 auto 20px; }
      .phone.one, .phone.two { left: auto; right: auto; top: auto; transform: none; }
      .steps { grid-template-columns: 1fr; }
      .formula { flex-direction: column; }
      .operator { transform: rotate(90deg); }
    }