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

    h1, h2, h3, h4, h5, h6,
    .heading, .hero h1, .stat-big, .stat-num,
    .plan-price, .addon-price, .step-num,
    .nav-logo, .cta-primary, .plan-cta, .addon-cta {
      overflow: visible !important;
      line-height: 1.3 !important;
      padding-bottom: 0.1em;
    }

    :root {
      --bg:        #0a0a0f;
      --bg2:       #111118;
      --bg3:       #16161f;
      --surface:   #1c1c27;
      --border:    rgba(255,255,255,.08);
      --border2:   rgba(255,255,255,.14);
      --text:      #f0eff8;
      --muted:     #8b8a9e;
      --accent:    #6c47ff;
      --accent2:   #8b6fff;
      --gold:      #f5c842;
      --gold-lt:   rgba(245,200,66,.12);
      --green:     #22c55e;
      --green-lt:  rgba(34,197,94,.12);
      --red:       #ef4444;
      --serif:     'Plus Jakarta Sans', sans-serif;
      --sans:      'DM Sans', system-ui, sans-serif;
      --r:         14px;
      --r2:        20px;
    }

    html { scroll-behavior: smooth; }
    body { font-family: var(--sans); background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
    a { color: inherit; text-decoration: none; }

    /* ── NOISE TEXTURE ── */
    body::before {
      content: '';
      position: fixed; inset: 0; z-index: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
    }

    /* ── GLOW ORBS ── */
    .orb { position: fixed; border-radius: 50%; filter: blur(100px); pointer-events: none; z-index: 0; }
    .orb1 { width: 500px; height: 500px; background: rgba(108,71,255,.18); top: -100px; right: -100px; }
    .orb2 { width: 400px; height: 400px; background: rgba(245,200,66,.08); bottom: 200px; left: -150px; }

    /* ── PAGE SYSTEM ── */
    .page { display: none; position: relative; z-index: 1; }
    .page.active { display: block; }

    /* ── PAGE TRANSITION ── */
    @keyframes pageFadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .page.active { animation: pageFadeIn .3s ease both; }

    /* ── URGENCY BAR ── */
    .urgency-bar {
      background: linear-gradient(90deg, var(--gold-lt) 0%, rgba(245,200,66,.06) 100%);
      border-bottom: 1px solid rgba(245,200,66,.2);
      text-align: center;
      padding: 10px 16px;
      font-size: 13px;
      font-weight: 500;
      color: var(--gold);
      letter-spacing: .01em;
      position: relative; z-index: 101;
    }
    .urgency-bar strong { font-weight: 700; }

    /* ── NAV ── */
    nav {
      position: sticky; top: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 40px;
      height: 64px;
      background: rgba(10,10,15,.92);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-bottom: 1px solid rgba(255,255,255,.06);
    }

    /* Logo */
    .nav-logo {
      font-family: var(--serif); font-size: 18px; font-weight: 800;
      letter-spacing: -.4px; cursor: pointer;
      color: var(--text);
    }
    .nav-logo span { color: var(--accent2); }

    /* Center links */
    .nav-links {
      display: flex; align-items: center; gap: 2px;
      position: absolute; left: 50%; transform: translateX(-50%);
    }

    .nav-link {
      padding: 7px 16px;
      border-radius: 8px;
      font-size: 13.5px; font-weight: 400;
      border: none;
      color: var(--muted);
      background: transparent;
      cursor: pointer;
      transition: color .15s, background .15s;
      font-family: var(--sans);
      letter-spacing: -.01em;
      white-space: nowrap;
    }
    .nav-link:hover { color: var(--text); background: rgba(255,255,255,.05); }
    .nav-link.active { color: var(--text); font-weight: 500; background: rgba(255,255,255,.07); }

    /* Right CTA */
    .nav-cta-btn {
      padding: 9px 22px;
      border-radius: 8px;
      font-size: 13.5px; font-weight: 600;
      background: var(--accent); color: #fff; border: none;
      cursor: pointer; transition: opacity .15s, transform .15s;
      font-family: var(--sans);
      letter-spacing: -.01em;
    }
    .nav-cta-btn:hover { opacity: .88; transform: translateY(-1px); }

    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }

    /* ── HERO ── */
    .hero {
      position: relative; z-index: 1;
      max-width: 1080px; margin: 0 auto;
      padding: 72px 24px 64px;
      text-align: center;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--surface); border: 1px solid var(--border2);
      color: var(--muted); font-size: 13px; font-weight: 400;
      padding: 6px 16px; border-radius: 100px;
      margin-bottom: 32px;
    }
    .hero-eyebrow .green { color: var(--green); font-weight: 600; }
    .hero h1 {
      font-family: var(--serif);
      font-size: clamp(40px, 6vw, 68px);
      font-weight: 800;
      line-height: 1.3;
      letter-spacing: -.03em;
      margin-bottom: 24px;
      overflow: visible;
      padding-bottom: 0.1em;
    }
    .hero h1 .line2 { display: block; color: var(--accent2); }
    .hero h1 .line3 { display: block; color: var(--muted); font-weight: 400; font-size: clamp(28px, 4.5vw, 52px); margin-top: 8px; }
    .hero-sub {
      font-size: 19px; color: var(--muted); font-weight: 300;
      max-width: 720px; margin: 0 auto 32px;
      line-height: 1.65;
    }
    .hero-sub strong { color: var(--text); font-weight: 500; }

    /* ── TRUST BADGES ── */
    .trust-row {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
      margin-bottom: 44px;
    }
    .trust-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--surface); border: 1px solid var(--border);
      padding: 7px 14px; border-radius: 100px;
      font-size: 13px; font-weight: 400; color: var(--muted);
    }
    .trust-badge .icon { font-size: 14px; }

    /* ── CTA GROUP ── */
    .hero-ctas { display: flex; flex-direction: column; align-items: center; gap: 12px; }
    .cta-primary {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--accent); color: #fff;
      padding: 18px 40px; border-radius: 100px;
      font-family: var(--serif); font-size: 17px; font-weight: 700;
      letter-spacing: -.02em;
      transition: all .2s;
      box-shadow: 0 0 40px rgba(108,71,255,.45), 0 2px 0 rgba(255,255,255,.1) inset;
      cursor: pointer; border: none;
    }
    .cta-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 50px rgba(108,71,255,.6), 0 2px 0 rgba(255,255,255,.1) inset; }
    .cta-primary .arrow { transition: transform .2s; }
    .cta-primary:hover .arrow { transform: translateX(4px); }
    .cta-note { font-size: 13px; color: var(--muted); }
    .cta-note strong { color: var(--green); font-weight: 600; }

    /* ── PLATFORMS ── */
    .platforms {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      margin-top: 56px; flex-wrap: wrap;
    }
    .platforms-label { font-size: 13px; color: var(--muted); }
    .platform-pill {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--surface); border: 1px solid var(--border2);
      padding: 6px 14px; border-radius: 100px;
      font-size: 13px; font-weight: 500; color: var(--text);
    }
    .dot-li { width:8px;height:8px;border-radius:50%;background:#0a66c2;flex-shrink:0; }
    .dot-nk { width:8px;height:8px;border-radius:50%;background:#ef4123;flex-shrink:0; }

    /* ── STATS STRIP ── */
    .stats-strip {
      position: relative; z-index: 1;
      display: flex; justify-content: center; flex-wrap: wrap; gap: 2px;
      max-width: 1100px; margin: 0 auto 0;
      padding: 0 24px 72px;
    }
    .stat-card {
      flex: 1; min-width: 180px;
      background: var(--bg2); border: 1px solid var(--border);
      padding: 28px 24px; text-align: center;
    }
    .stat-card:first-child { border-radius: var(--r) 0 0 var(--r); }
    .stat-card:last-child  { border-radius: 0 var(--r) var(--r) 0; }
    .stat-big { font-family: var(--serif); font-size: 40px; font-weight: 800; line-height: 1.3; color: var(--accent2); margin-bottom: 6px; letter-spacing: -.02em; overflow: visible; padding-bottom: 0.1em; }
    .stat-lbl { font-size: 13px; color: var(--muted); font-weight: 300; }

    /* ── SECTION BASE ── */
    .section { position: relative; z-index: 1; padding: 80px 24px; }
    .section-inner { max-width: 1120px; margin: 0 auto; }
    .label { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent2); margin-bottom: 14px; }
    .heading {
      font-family: var(--serif);
      font-size: clamp(28px, 4.5vw, 46px);
      font-weight: 800; line-height: 1.3;
      letter-spacing: -.02em; margin-bottom: 48px;
      overflow: visible; padding-bottom: 0.1em;
    }
    .heading .muted { color: var(--muted); }

    /* ── HOW IT WORKS ── */
    #how { background: var(--bg2); }
    .steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; border-radius: var(--r2); overflow: hidden; }
    .step {
      background: var(--surface);
      padding: 36px 28px;
      position: relative;
      transition: background .2s;
    }
    .step:hover { background: #1e1e2c; }
    .step-num {
      font-family: var(--serif); font-size: 56px; font-weight: 800;
      color: rgba(108,71,255,.18); line-height: 1.3; margin-bottom: 20px;
      letter-spacing: -.02em; overflow: visible; padding-bottom: 0.1em;
    }
    .step h3 { font-family: var(--serif); font-size: 17px; font-weight: 700; margin-bottom: 10px; letter-spacing: -.01em; line-height: 1.4; overflow: visible; }
    .step p  { font-size: 14px; color: var(--muted); line-height: 1.65; font-weight: 300; }
    .step-tag {
      display: inline-block; margin-top: 18px;
      background: rgba(108,71,255,.18);
      border: 1px solid rgba(108,71,255,.3);
      color: var(--accent2); font-size: 11px; font-weight: 600;
      padding: 4px 12px; border-radius: 100px; letter-spacing: .04em;
    }

    /* ── PAIN GRID ── */
    #problem { background: var(--bg2); }
    .pain-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
    .pain-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: var(--r2); padding: 32px 28px;
      transition: border-color .2s, transform .2s;
    }
    .pain-card:hover { border-color: var(--border2); transform: translateY(-2px); }
    .pain-card.accent-card {
      background: linear-gradient(145deg,#1a1630,#0f0f1c);
      border-color: rgba(108,71,255,.35);
    }
    .pain-icon { font-size: 28px; margin-bottom: 10px; }
    .pain-num { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
    .pain-card h3 { font-family: var(--serif); font-size: 16px; font-weight: 700; margin-bottom: 10px; letter-spacing: -.01em; line-height: 1.4; overflow: visible; }
    .pain-card p { font-size: 14px; color: var(--muted); line-height: 1.65; font-weight: 300; margin-bottom: 16px; }
    .pain-result {
      font-size: 13px; font-weight: 600; color: rgba(239,68,68,.9);
      background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.2);
      padding: 7px 14px; border-radius: 100px; display: inline-block;
    }

    /* ── OFFER SECTION ── */
    .offer-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
    .offer-card {
      background: var(--bg2); border: 1px solid var(--border);
      border-radius: var(--r2); padding: 28px 24px;
      transition: border-color .2s, transform .2s;
    }
    .offer-card:hover { border-color: var(--border2); transform: translateY(-2px); }
    .offer-icon { font-size: 28px; margin-bottom: 12px; }
    .offer-card h3 { font-family: var(--serif); font-size: 16px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.01em; line-height: 1.4; overflow: visible; }
    .offer-card p { font-size: 14px; color: var(--muted); line-height: 1.6; font-weight: 300; }
    .offer-card .chip {
      display: inline-block; margin-top: 12px;
      background: var(--gold-lt); border: 1px solid rgba(245,200,66,.2);
      color: var(--gold); font-size: 11px; font-weight: 600;
      padding: 3px 10px; border-radius: 100px;
    }

    /* ── PRICING ── */
    .pricing-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 14px; align-items: start; max-width: 1100px; margin: 0 auto; }
    .plan {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: var(--r2); padding: 36px 32px;
      position: relative;
    }
    .plan.hero-plan {
      background: linear-gradient(145deg, #1a1630 0%, #0f0f1c 100%);
      border-color: rgba(108,71,255,.45);
      box-shadow: 0 0 50px rgba(108,71,255,.15);
    }
    .plan-badge {
      position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
      background: var(--accent); color: #fff;
      font-size: 11px; font-weight: 700; letter-spacing: .08em;
      text-transform: uppercase; padding: 5px 18px; border-radius: 100px;
      white-space: nowrap; box-shadow: 0 4px 14px rgba(108,71,255,.4);
    }
    .plan-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
    .plan-price { font-family: var(--serif); font-size: 58px; font-weight: 800; line-height: 1.3; letter-spacing: -.02em; margin-bottom: 4px; overflow: visible; padding-bottom: 0.1em; }
    .plan-price sup { font-size: 24px; vertical-align: super; font-weight: 700; }
    .plan-period { font-size: 14px; color: var(--muted); margin-bottom: 28px; font-weight: 300; }
    .plan-features { list-style: none; margin-bottom: 32px; }
    .plan-features li {
      font-size: 14px; padding: 11px 0;
      border-bottom: 1px solid var(--border);
      display: flex; align-items: flex-start; gap: 10px;
      font-weight: 300; line-height: 1.4;
      color: var(--muted);
    }
    .plan.hero-plan .plan-features li { color: var(--text); }
    .plan-features li:last-child { border-bottom: none; }
    .chk {
      width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
      display: flex; align-items: center; justify-content: center;
      font-size: 9px; font-weight: 900;
      background: var(--green-lt); color: var(--green);
    }
    .plan.hero-plan .chk { background: rgba(34,197,94,.2); color: #4ade80; }
    .plan-cta {
      display: block; width: 100%; text-align: center;
      padding: 15px; border-radius: 100px;
      font-family: var(--serif); font-size: 15px; font-weight: 700;
      transition: all .2s; cursor: pointer; letter-spacing: -.01em;
      border: none;
    }
    .plan.hero-plan .plan-cta {
      background: var(--accent); color: #fff;
      box-shadow: 0 4px 24px rgba(108,71,255,.45);
    }
    .plan.hero-plan .plan-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(108,71,255,.6); }
    .plan:not(.hero-plan) .plan-cta {
      background: transparent; color: var(--muted);
      border: 1px solid var(--border2);
    }
    .plan:not(.hero-plan) .plan-cta:hover { background: var(--bg3); color: var(--text); border-color: var(--border2); }

    .savings-pill {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--gold-lt); border: 1px solid rgba(245,200,66,.25);
      color: var(--gold); font-size: 12px; font-weight: 600;
      padding: 4px 12px; border-radius: 100px; margin-bottom: 14px;
    }
    .pricing-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 20px; font-weight: 300; }
    .pricing-note strong { color: var(--text); font-weight: 500; }

    /* ── CV ADD-ON ── */
    .addon-card {
      max-width: 1100px; margin: 0 auto;
      background: linear-gradient(135deg, #1a1628, #0f0f1a);
      border: 1px solid rgba(108,71,255,.4);
      border-radius: var(--r2); padding: 40px 40px;
      display: grid; grid-template-columns: 1fr auto;
      gap: 32px; align-items: center;
      box-shadow: 0 0 60px rgba(108,71,255,.1);
    }
    .addon-badge {
      display: inline-block; margin-bottom: 12px;
      background: var(--gold-lt); border: 1px solid rgba(245,200,66,.3);
      color: var(--gold); font-size: 11px; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase;
      padding: 4px 12px; border-radius: 100px;
    }
    .addon-card h3 { font-family: var(--serif); font-size: 24px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 10px; line-height: 1.35; overflow: visible; }
    .addon-card p { font-size: 14px; color: var(--muted); line-height: 1.65; font-weight: 300; margin-bottom: 16px; }
    .addon-feats { display: flex; flex-wrap: wrap; gap: 8px; }
    .addon-feat {
      display: inline-flex; align-items: center; gap: 5px;
      background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.2);
      color: var(--green); font-size: 12px; font-weight: 500;
      padding: 4px 10px; border-radius: 100px;
    }
    .addon-right { text-align: center; flex-shrink: 0; }
    .addon-price { font-family: var(--serif); font-size: 52px; font-weight: 800; line-height: 1.3; letter-spacing: -.02em; overflow: visible; padding-bottom: 0.1em; }
    .addon-price sup { font-size: 22px; vertical-align: super; }
    .addon-period { font-size: 13px; color: var(--muted); margin-bottom: 20px; font-weight: 300; }
    .addon-cta {
      display: block; background: var(--accent); color: #fff;
      padding: 14px 28px; border-radius: 100px;
      font-family: var(--serif); font-size: 15px; font-weight: 700;
      transition: all .2s;
      box-shadow: 0 4px 20px rgba(108,71,255,.4);
      white-space: nowrap; cursor: pointer; border: none;
    }
    .addon-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(108,71,255,.55); }

    /* ── TESTIMONIALS ── */
    .testi-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
    .testi-card {
      background: var(--bg2); border: 1px solid var(--border);
      border-radius: var(--r2); padding: 28px 24px;
      transition: border-color .2s;
    }
    .testi-card:hover { border-color: var(--border2); }
    .stars { color: var(--gold); font-size: 13px; margin-bottom: 14px; letter-spacing: 2px; }
    .testi-text {
      font-family: 'DM Sans', sans-serif;
      font-size: 15px; font-style: italic; font-weight: 300;
      line-height: 1.7; color: var(--text); margin-bottom: 20px;
    }
    .testi-text strong { font-style: normal; font-weight: 500; color: var(--accent2); }
    .t-author { display: flex; align-items: center; gap: 10px; }
    .t-av {
      width: 36px; height: 36px; border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), #9b78ff);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--serif); font-size: 12px; font-weight: 700; color: #fff;
      flex-shrink: 0;
    }
    .t-name { font-size: 14px; font-weight: 500; }
    .t-role { font-size: 12px; color: var(--muted); }

    /* ── FORM ── */
    .form-wrap {
      background: var(--surface); border: 1px solid rgba(108,71,255,.3);
      border-radius: 24px; padding: 60px 56px;
      max-width: 900px; margin: 0 auto;
      box-shadow: 0 0 80px rgba(108,71,255,.1);
    }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
    .form-left .heading { margin-bottom: 12px; }
    .form-promise { font-size: 15px; color: var(--muted); font-weight: 300; line-height: 1.65; margin-bottom: 28px; }
    .form-promise strong { color: var(--text); font-weight: 500; }
    .form-bullets { display: flex; flex-direction: column; gap: 10px; }
    .form-bullet {
      display: flex; align-items: center; gap: 10px;
      font-size: 14px; color: var(--muted); font-weight: 300;
    }
    .form-bullet::before {
      content: '✓'; width: 20px; height: 20px; border-radius: 50%;
      background: var(--green-lt); color: var(--green);
      font-size: 10px; font-weight: 700;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .form-subtext-display { 
      margin-top: 28px; padding: 14px 16px;
      background: rgba(108,71,255,.1); border: 1px solid rgba(108,71,255,.2);
      border-radius: var(--r); font-size: 13px; color: var(--accent2);
      font-weight: 500; min-height: 44px; transition: all .2s;
    }
    .upload-form { display: flex; flex-direction: column; gap: 18px; }
    .field label {
      display: block; font-size: 11px; font-weight: 600;
      color: var(--muted); margin-bottom: 8px; letter-spacing: .06em; text-transform: uppercase;
    }
    .field input, .field select {
      width: 100%; background: var(--bg3); border: 1px solid var(--border2);
      color: var(--text); border-radius: 10px; padding: 14px 16px;
      font-family: var(--sans); font-size: 14px; font-weight: 300;
      outline: none; transition: border-color .2s, box-shadow .2s;
      -webkit-appearance: none;
    }
    .field input::placeholder { color: rgba(240,239,248,.2); }
    .field input:focus, .field select:focus {
      border-color: rgba(108,71,255,.6);
      box-shadow: 0 0 0 3px rgba(108,71,255,.12);
    }
    .field select option { background: #16161f; color: #fff; }
    .submit-btn {
      width: 100%; background: var(--accent); color: #fff;
      border: none; border-radius: 100px; padding: 16px;
      font-family: var(--serif); font-size: 16px; font-weight: 700;
      cursor: pointer; transition: all .2s; margin-top: 4px;
      letter-spacing: -.02em;
      box-shadow: 0 4px 24px rgba(108,71,255,.4);
    }
    .submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(108,71,255,.55); }
    .submit-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
    .upload-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 6px; font-weight: 300; min-height: 18px; }
    .upload-note strong { color: var(--green); font-weight: 600; }
    .success-msg {
      display: none; background: var(--green-lt); border: 1px solid rgba(34,197,94,.3);
      color: var(--green); border-radius: 12px; padding: 16px 20px;
      font-size: 14px; font-weight: 500; text-align: center; margin-top: 8px;
    }

    /* ── FAQ ── */
    .faq-list { max-width: 680px; }
    .faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
    .faq-q {
      font-size: 15px; font-weight: 500; cursor: pointer;
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
      user-select: none; font-family: var(--serif); letter-spacing: -.01em;
      line-height: 1.4; overflow: visible;
    }
    .faq-q::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--muted); flex-shrink: 0; transition: transform .2s; }
    .faq-item.open .faq-q::after { transform: rotate(45deg); }
    .faq-a { font-size: 14px; color: var(--muted); line-height: 1.75; font-weight: 300; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; }
    .faq-item.open .faq-a { max-height: 600px; padding-top: 14px; }

    /* ── ABOUT US ── */
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 64px; align-items: center;
    }
    .about-left { position: relative; }
    .founder-card {
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: var(--r2);
      padding: 36px 32px;
      position: relative;
      overflow: hidden;
    }
    .founder-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--accent), var(--accent2), #9b78ff);
    }
    .founder-avatar {
      width: 72px; height: 72px; border-radius: 50%;
      background: linear-gradient(135deg, var(--accent) 0%, #9b78ff 100%);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--serif); font-size: 26px; font-weight: 800; color: #fff;
      margin-bottom: 20px;
      box-shadow: 0 0 28px rgba(108,71,255,.35);
    }
    .founder-name {
      font-family: var(--serif); font-size: 22px; font-weight: 800;
      letter-spacing: -.02em; margin-bottom: 4px; overflow: visible;
    }
    .founder-title {
      font-size: 13px; color: var(--muted); font-weight: 300; margin-bottom: 18px;
    }
    .founder-bio {
      font-size: 14px; color: var(--muted); line-height: 1.75;
      font-weight: 300; margin-bottom: 22px;
    }
    .founder-bio strong { color: var(--text); font-weight: 500; }
    .founder-creds {
      display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px;
    }
    .cred-pill {
      display: inline-flex; align-items: center; gap: 5px;
      background: var(--bg3); border: 1px solid var(--border2);
      color: var(--text); font-size: 12px; font-weight: 500;
      padding: 5px 12px; border-radius: 100px;
    }
    .cred-pill .cred-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--accent2); flex-shrink: 0;
    }
    .linkedin-btn {
      display: inline-flex; align-items: center; gap: 8px;
      background: #0a66c2; color: #fff;
      padding: 11px 20px; border-radius: 100px;
      font-size: 13px; font-weight: 600;
      transition: all .2s;
      text-decoration: none;
      box-shadow: 0 4px 16px rgba(10,102,194,.35);
    }
    .linkedin-btn:hover { background: #0959ab; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,102,194,.45); }
    .linkedin-icon { width: 16px; height: 16px; fill: #fff; flex-shrink: 0; }
    .about-story {
      font-size: 15px; color: var(--muted); line-height: 1.8;
      font-weight: 300; margin-bottom: 24px;
    }
    .about-story strong { color: var(--text); font-weight: 500; }
    .about-story em { color: var(--accent2); font-style: normal; font-weight: 500; }
    .trust-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 10px; margin-bottom: 28px;
    }
    .trust-item {
      background: var(--bg2); border: 1px solid var(--border);
      border-radius: var(--r); padding: 20px 18px;
      transition: border-color .2s, transform .2s;
    }
    .trust-item:hover { border-color: var(--border2); transform: translateY(-2px); }
    .trust-item-icon { font-size: 22px; margin-bottom: 8px; }
    .trust-item h4 {
      font-family: var(--serif); font-size: 14px; font-weight: 700;
      letter-spacing: -.01em; margin-bottom: 5px; overflow: visible;
    }
    .trust-item p { font-size: 12px; color: var(--muted); line-height: 1.55; font-weight: 300; }
    .mission-block {
      background: linear-gradient(135deg, #1a1630, #0f0f1c);
      border: 1px solid rgba(108,71,255,.3);
      border-radius: var(--r2); padding: 24px 22px;
      font-size: 15px; color: var(--text); line-height: 1.7;
      font-style: italic; font-weight: 300;
      position: relative;
    }
    .mission-block::before {
      content: '"';
      font-family: var(--serif); font-size: 72px; font-weight: 800;
      color: rgba(108,71,255,.25); line-height: 1;
      position: absolute; top: -8px; left: 16px;
    }
    .mission-block p { padding-left: 12px; }
    .mission-block cite {
      display: block; margin-top: 14px; padding-left: 12px;
      font-size: 12px; color: var(--accent2); font-style: normal;
      font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
    }

    /* ── FINAL CTA (home page) ── */
    .final-cta-section {
      position: relative; z-index: 1;
      padding: 100px 24px; text-align: center;
      background: linear-gradient(180deg, var(--bg) 0%, #0d0a1e 100%);
    }
    .final-cta-section .heading { margin-bottom: 16px; font-size: clamp(32px,5vw,56px); }
    .final-sub { font-size: 17px; color: var(--muted); font-weight: 300; max-width: 440px; margin: 0 auto 36px; line-height: 1.6; }
    .final-note { font-size: 13px; color: var(--muted); margin-top: 16px; }
    .final-note strong { color: var(--green); }

    /* ── FOOTER ── */
    footer {
      text-align: center; padding: 40px 24px;
      font-size: 13px; color: var(--muted);
      border-top: 1px solid var(--border);
      position: relative; z-index: 1;
    }
    footer a { color: var(--accent2); text-decoration: underline; text-underline-offset: 3px; }

    /* ── ANALYZER PAGE ── */
    .analyzer-page-wrap {
      max-width: 900px; margin: 0 auto;
      padding: 60px 24px;
    }
    .analyzer-header {
      text-align: center;
      margin-bottom: 48px;
    }
    .analyzer-inputs {
      display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
      margin-bottom: 24px;
    }
    .analyzer-inputs textarea {
      width: 100%; min-height: 240px;
      background: var(--bg3); color: var(--text);
      border: 1px solid var(--border2); border-radius: 14px;
      padding: 18px; font-family: var(--sans); font-size: 14px;
      font-weight: 300; line-height: 1.6; resize: vertical;
      transition: border-color .2s, box-shadow .2s;
      outline: none;
    }
    .analyzer-inputs textarea:focus {
      border-color: rgba(108,71,255,.6);
      box-shadow: 0 0 0 3px rgba(108,71,255,.12);
    }
    .analyzer-inputs textarea::placeholder { color: rgba(240,239,248,.25); }
    .analyzer-actions {
      display: flex; align-items: center; justify-content: center; gap: 14px;
      flex-wrap: wrap; margin-bottom: 32px;
    }
    .analyze-btn {
      background: var(--green); color: #fff;
      padding: 14px 34px; border: none; border-radius: 100px;
      font-family: var(--serif); font-size: 16px; font-weight: 700;
      cursor: pointer; transition: all .2s;
      box-shadow: 0 4px 20px rgba(34,197,94,.35);
    }
    .analyze-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(34,197,94,.5); }
    .analyze-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
    .optimize-btn {
      background: transparent; color: var(--accent2);
      padding: 14px 28px; border: 1px solid rgba(108,71,255,.4); border-radius: 100px;
      font-family: var(--serif); font-size: 15px; font-weight: 600;
      cursor: pointer; transition: all .2s;
    }
    .optimize-btn:hover { background: rgba(108,71,255,.1); }

    .google-signin-block {
      display: flex; flex-direction: column; align-items: center; gap: 10px;
      padding: 24px; background: var(--surface); border: 1px solid var(--border2);
      border-radius: 16px; margin-bottom: 24px; text-align: center;
    }
    .google-signin-block p { font-size: 13px; color: var(--muted); }

    #fitResult {
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: 16px;
      padding: 28px;
      min-height: 120px;
      white-space: pre-wrap;
      font-size: 14px;
      line-height: 1.7;
    }
    #fitResult:empty { display: none; }

    #downloadBtn {
      display: none;
      margin-top: 16px;
      padding: 12px 24px;
      border-radius: 100px;
      background: var(--green);
      color: white;
      border: none;
      cursor: pointer;
      font-family: var(--serif);
      font-size: 14px;
      font-weight: 600;
      transition: all .2s;
    }
    #downloadBtn:hover { transform: translateY(-1px); }

    #activeEmail {
      font-size: 12px; opacity: 0.7;
      text-align: center; margin-top: 6px;
      color: var(--green);
    }

    /* ── PRICING PAGE ── */
    .pricing-page-wrap {
      max-width: 960px; margin: 0 auto;
      padding: 60px 24px;
    }
    .pricing-page-header { text-align: center; margin-bottom: 56px; }
    .pricing-faq { max-width: 680px; margin: 64px auto 0; }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero > * { animation: fadeUp .6s ease both; }
    .hero .hero-eyebrow { animation-delay: 0s; }
    .hero h1 { animation-delay: .1s; }
    .hero-sub { animation-delay: .2s; }
    .trust-row { animation-delay: .3s; }
    .hero-ctas { animation-delay: .35s; }
    .platforms { animation-delay: .4s; }

    /* ── TABLE ── */
    table { width: 100%; border-collapse: collapse; margin-top: 10px; }
    td { border: 1px solid rgba(255,255,255,0.1); padding: 8px; font-size: 13px; }
    tr:first-child { background: rgba(108,71,255,0.15); font-weight: bold; }
    b { color: #8b6fff; }

  
    
     
    /* ── CV EDITOR ── */
    #cvEditor { font-family: var(--sans); }

    .editor-toolbar {
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 10px;
      margin-bottom: 16px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--border);
    }

    .tool-btn {
      padding: 9px 18px; border: none; border-radius: 100px;
      font-family: var(--serif); font-size: 13px; font-weight: 700;
      cursor: pointer; transition: all .2s; white-space: nowrap;
    }
    .copy-btn { background: var(--accent); color: #fff; box-shadow: 0 4px 14px rgba(108,71,255,.35); }
    .copy-btn:hover { opacity: .88; transform: translateY(-1px); }
    .dl-btn { background: var(--green); color: #fff; box-shadow: 0 4px 14px rgba(34,197,94,.3); }
    .dl-btn:hover { opacity: .88; transform: translateY(-1px); }

    .cv-preview {
      background: var(--bg3); border: 1px solid var(--border2);
      border-radius: 14px; padding: 28px 32px;
      max-height: 640px; overflow-y: auto;
    }

    .cv-name {
      font-family: var(--serif); font-size: 20px; font-weight: 800;
      letter-spacing: .04em; color: var(--text); margin-bottom: 4px;
    }
    .cv-contact { font-size: 12px; color: var(--muted); margin-bottom: 18px; }

    .cv-section-header {
      font-size: 11px; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; color: var(--accent2);
      border-bottom: 1px solid rgba(108,71,255,.25);
      padding-bottom: 4px; margin: 18px 0 10px;
    }

    .cv-role-block { margin-bottom: 14px; }

    .role-header {
      display: flex; align-items: flex-start; justify-content: space-between;
      gap: 10px; flex-wrap: wrap; margin-bottom: 6px;
    }
    .role-title { font-size: 13.5px; font-weight: 700; color: var(--text); }
    .role-company { font-size: 13.5px; color: var(--muted); font-weight: 400; }
    .role-meta { font-size: 12px; color: var(--muted); white-space: nowrap; }

    .cv-edu-row {
      display: flex; justify-content: space-between; flex-wrap: wrap;
      gap: 6px; margin-bottom: 8px; font-size: 13px;
    }

    .cv-skills, .cv-cert { font-size: 13px; color: var(--muted); margin-bottom: 4px; line-height: 1.7; }

    /* Bullets */
    .bullet-row {
      display: flex; align-items: flex-start; gap: 8px;
      padding: 5px 6px; border-radius: 6px;
      transition: background .15s;
      margin-bottom: 2px;
    }
    .bullet-row:hover { background: rgba(255,255,255,.04); }

    .bullet-dot { color: var(--accent2); font-size: 13px; flex-shrink: 0; padding-top: 2px; }

    .bullet-text {
      flex: 1; font-size: 13px; line-height: 1.65; color: var(--text);
      outline: none; border-radius: 4px;
      padding: 1px 4px; min-width: 0;
      transition: background .15s;
    }
    .bullet-text:focus {
      background: rgba(108,71,255,.1);
      box-shadow: 0 0 0 2px rgba(108,71,255,.3);
    }

    /* AI-rewritten bullets highlighted in amber */
    .bullet-text.new-bullet {
      background: rgba(245,200,66,.08);
      border-left: 2px solid rgba(245,200,66,.5);
      padding-left: 6px;
    }
    .bullet-text.new-bullet:focus { background: rgba(108,71,255,.1); border-left-color: var(--accent2); }

    .del-btn {
      background: none; border: none; color: rgba(239,68,68,.5);
      cursor: pointer; font-size: 11px; padding: 2px 5px;
      border-radius: 4px; flex-shrink: 0; opacity: 0;
      transition: opacity .15s, color .15s;
    }
    .bullet-row:hover .del-btn { opacity: 1; }
    .del-btn:hover { color: var(--red); background: rgba(239,68,68,.1); }

    .add-btn {
      background: none; border: 1px dashed rgba(108,71,255,.35); color: var(--accent2);
      padding: 5px 12px; border-radius: 6px; font-size: 12px; font-weight: 500;
      cursor: pointer; margin-top: 4px; transition: all .15s;
    }
    .add-btn:hover { background: rgba(108,71,255,.1); border-style: solid; }






  /* ── RESPONSIVE ── */


/* =========================================
   IMPROVED RESPONSIVE FIXES
   ADD AT VERY END OF CSS
========================================= */

/* Tablet */
@media (max-width: 1024px) {

  nav {
    padding: 0 20px;
    height: auto;
    min-height: 64px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-links {
    position: static;
    transform: none;
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 12px;
  }

  .nav-link {
    font-size: 13px;
    padding: 8px 12px;
  }

  .nav-cta-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .hero {
    padding: 48px 20px;
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.2;
  }

  .hero-sub {
    font-size: 16px;
    line-height: 1.5;
  }

  .pricing-grid,
  .offer-grid,
  .pain-grid,
  .testi-grid,
  .about-grid,
  .form-grid,
  .analyzer-inputs {
    grid-template-columns: 1fr;
  }

  .addon-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px;
  }

  .addon-feats {
    justify-content: center;
  }

  .stats-strip {
    flex-direction: column;
  }

  .stat-card {
    min-width: 100%;
    border-radius: 14px !important;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 20px;
  }

  .form-wrap {
    padding: 32px 20px;
  }

  .pricing-page-wrap,
  .analyzer-page-wrap {
    padding: 40px 20px;
  }

  .plan {
    padding: 28px 20px;
  }

  .plan-price {
    font-size: 46px;
  }

  .addon-price {
    font-size: 42px;
  }
}


/* Mobile */
@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  .urgency-bar {
    font-size: 11px;
    padding: 8px 10px;
  }

  nav {
    flex-direction: column;
    align-items: center;
    padding: 14px 16px;
  }

  .nav-logo {
    font-size: 20px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    gap: 6px;
  }

  .nav-link {
    font-size: 12px;
    padding: 8px 10px;
  }

  .nav-cta-btn {
    width: 100%;
    max-width: 280px;
  }

  .hero {
    padding: 36px 16px;
  }

  .hero h1 {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.15;
  }

  .hero h1 .line3 {
    font-size: clamp(18px, 5vw, 26px);
  }

  .hero-sub {
    font-size: 14px;
  }

  .cta-primary {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
    font-size: 15px;
  }

  .platforms {
    gap: 8px;
  }

  .platform-pill {
    font-size: 11px;
    padding: 6px 10px;
  }

  .heading {
    font-size: 28px;
    margin-bottom: 28px;
  }

  .step,
  .pain-card,
  .offer-card,
  .testi-card {
    padding: 20px;
  }

  .step-num {
    font-size: 42px;
  }

  .plan-price {
    font-size: 40px;
  }

  .plan-price sup {
    font-size: 18px;
  }

  .plan-features li {
    font-size: 13px;
  }

  .addon-price {
    font-size: 36px;
  }

  .form-wrap {
    padding: 24px 16px;
  }

  .field input,
  .field select {
    font-size: 16px;
  }

  .submit-btn {
    font-size: 15px;
    padding: 14px;
  }

  .analyzer-inputs textarea {
    min-height: 180px;
    font-size: 15px;
  }

  .cv-preview {
    padding: 18px;
  }

  .faq-q {
    font-size: 14px;
  }

  .faq-a {
    font-size: 13px;
  }

  footer {
    font-size: 12px;
    padding: 28px 16px;
  }
}


/* Small phones */
@media (max-width: 480px) {

  .hero h1 {
    font-size: 26px;
  }

  .heading {
    font-size: 24px;
  }

  .plan-price {
    font-size: 34px;
  }

  .addon-price {
    font-size: 30px;
  }

  .nav-link {
    font-size: 11px;
    padding: 6px 8px;
  }
}
  