  /* ═══════════════════════════════════════════════════════
     RESET + TOKENS
  ═══════════════════════════════════════════════════════ */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --accent:       #6E4FF7;
    --accent-dark:  #5538E0;
    --accent-glow:  rgba(110,79,247,0.28);
    --accent-10:    rgba(110,79,247,0.10);
    --accent-08:    rgba(110,79,247,0.08);
    --accent-06:    rgba(110,79,247,0.06);
    --accent-03:    rgba(110,79,247,0.03);
    --accent-light: #EDE9FF;
    --border:       rgba(110,79,247,0.13);
    --border-soft:  rgba(110,79,247,0.07);
    --text:         #0D0B1A;
    --text-2:       #6B6785;
    --text-3:       #A09CBC;
    --bg:           #FAFBFF;
    --bg-section:   #F4F3FC;
    --white:        #FFFFFF;
    --dark:         #0D0B1A;
    --danger:       #D93030;
    --danger-bg:    #FEE8E8;
    --warn:         #B86D00;
    --warn-bg:      #FEF3C7;
    --ok:           #15803D;
    --ok-bg:        #DCFCE7;
    --r-sm:  8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 26px;
    --shadow-card:  0 2px 4px rgba(13,11,26,.04), 0 8px 28px rgba(13,11,26,.08), 0 0 0 1px var(--border);
    --shadow-lg:    0 4px 8px rgba(13,11,26,.04), 0 20px 60px rgba(13,11,26,.10), 0 0 0 1px var(--border);
    --max-w: 1160px;
  }

  html { font-size: 16px; scroll-behavior: smooth; }

  body {
    font-family: 'Onest', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* ═══════════════════════════════════════════════════════
     TYPOGRAPHY SCALE
  ═══════════════════════════════════════════════════════ */
  .geo { font-family: 'Geologica', sans-serif; }

  h1, h2, h3 { font-family: 'Geologica', sans-serif; }

  /* section label */
  .s-tag {
    display: inline-block;
    font-family: 'Geologica', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: .10em; text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-light);
    padding: 5px 14px; border-radius: 50px;
    margin-bottom: 18px;
  }

  .s-title {
    font-family: 'Geologica', sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.028em;
    color: var(--text);
    margin-bottom: 14px;
  }

  .s-sub {
    font-size: 17px; line-height: 1.65;
    color: var(--text-2); max-width: 560px;
  }

  /* ═══════════════════════════════════════════════════════
     SCROLL REVEAL
  ═══════════════════════════════════════════════════════ */
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal.d1 { transition-delay: .10s; }
  .reveal.d2 { transition-delay: .20s; }
  .reveal.d3 { transition-delay: .30s; }
  .reveal.d4 { transition-delay: .40s; }
  .reveal.d5 { transition-delay: .50s; }
  .reveal.d6 { transition-delay: .60s; }

  /* no-JS fallback: show all reveals if JS hasn't run */
  body:not(.js-ready) .reveal { opacity: 1; transform: none; }
  /* prefers-reduced-motion: skip animations */
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .blob, .sh-diamond, .sh-ring, .card-scene, .mini-card, .rkn-live, .badge-dot, .ring-fill, .check-row { animation: none; }
  }

  /* ═══════════════════════════════════════════════════════
     LAYOUT HELPERS
  ═══════════════════════════════════════════════════════ */
  .container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
  }

  section { position: relative; }

  .section-white  { background: var(--white); }
  .section-tinted { background: var(--bg-section); }

  /* ═══════════════════════════════════════════════════════
     BUTTONS
  ═══════════════════════════════════════════════════════ */
  .btn-main {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--accent); color: var(--white);
    font-family: 'Onest', sans-serif; font-size: 15px; font-weight: 600;
    padding: 15px 28px; border-radius: 50px;
    text-decoration: none; border: none; cursor: pointer;
    box-shadow: 0 6px 22px var(--accent-glow);
    transition: background .22s, transform .22s, box-shadow .22s;
    position: relative; overflow: hidden; letter-spacing: -.01em;
    white-space: nowrap;
  }
  .btn-main::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,.18) 0%, transparent 55%);
    opacity: 0; transition: opacity .3s;
  }
  .btn-main:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(110,79,247,.48); }
  .btn-main:hover::before { opacity: 1; }

  .btn-ghost {
    display: inline-flex; align-items: center; gap: 9px;
    background: transparent; color: var(--text);
    font-family: 'Onest', sans-serif; font-size: 15px; font-weight: 500;
    padding: 14px 22px; border-radius: 50px;
    text-decoration: none; border: 1.5px solid var(--border); cursor: pointer;
    transition: border-color .22s, color .22s, background .22s;
    letter-spacing: -.01em; white-space: nowrap;
  }
  .btn-ghost:hover { border-color: rgba(110,79,247,.35); color: var(--accent); background: var(--accent-03); }

  .btn-white {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--white); color: var(--accent);
    font-family: 'Onest', sans-serif; font-size: 15px; font-weight: 600;
    padding: 15px 28px; border-radius: 50px;
    text-decoration: none; border: none; cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,.12);
    transition: transform .22s, box-shadow .22s;
    letter-spacing: -.01em; white-space: nowrap;
  }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.18); }

  .btn-outline-white {
    display: inline-flex; align-items: center; gap: 9px;
    background: transparent; color: var(--white);
    font-family: 'Onest', sans-serif; font-size: 15px; font-weight: 500;
    padding: 14px 22px; border-radius: 50px;
    text-decoration: none; border: 1.5px solid rgba(255,255,255,.35); cursor: pointer;
    transition: border-color .22s, background .22s;
    letter-spacing: -.01em; white-space: nowrap;
  }
  .btn-outline-white:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.08); }

  .btn-msg-ico { height: 22px; width: 22px; border-radius: 50%; display: block; flex-shrink: 0; }

  /* ═══════════════════════════════════════════════════════
     BACKGROUND DECORATION (fixed, hero only)
  ═══════════════════════════════════════════════════════ */
  .bg-deco {
    position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
  }
  .blob { position: absolute; border-radius: 50%; filter: blur(90px); will-change: transform; }
  .blob-a {
    width: 680px; height: 680px;
    background: radial-gradient(circle, rgba(110,79,247,.16) 0%, rgba(110,79,247,.04) 55%, transparent 100%);
    top: -160px; right: -140px; animation: floatA 9s ease-in-out infinite;
  }
  .blob-b {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(165,130,255,.10) 0%, transparent 70%);
    top: 300px; right: 360px; animation: floatB 11s ease-in-out infinite;
  }
  .blob-c {
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(110,79,247,.06) 0%, transparent 70%);
    bottom: 60px; left: 160px; animation: floatC 13s ease-in-out infinite;
  }
  @keyframes floatA { 0%,100%{transform:translate(0,0) scale(1)} 40%{transform:translate(-28px,18px) scale(1.04)} 70%{transform:translate(18px,-14px) scale(.97)} }
  @keyframes floatB { 0%,100%{transform:translate(0,0)} 50%{transform:translate(36px,-28px)} }
  @keyframes floatC { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-18px,24px)} }

  .dot-field {
    position: absolute; top: 130px; left: 44%;
    width: 220px; height: 220px; opacity: .10;
    background-image: radial-gradient(circle, var(--accent) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
  }

  .sh { position: absolute; pointer-events: none; }
  .sh-diamond { width: 11px; height: 11px; background: var(--accent); opacity: .2; animation: driftD 7s ease-in-out infinite; }
  .sh-ring    { width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--accent); opacity: .18; animation: driftR 10s ease-in-out infinite; }
  @keyframes driftD { 0%,100%{transform:translateY(0) rotate(45deg)} 50%{transform:translateY(-14px) rotate(45deg)} }
  @keyframes driftR { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-18px)} }
  .sh-1{top:170px;left:130px}
  .sh-2{top:340px;left:64px;animation-delay:-3s}
  .sh-3{bottom:220px;right:130px;animation-delay:-5s}
  .sh-4{top:210px;right:500px;animation-delay:-1.5s}

  /* ═══════════════════════════════════════════════════════
     NAV
  ═══════════════════════════════════════════════════════ */
  #nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
    padding: 22px 0;
    transition: background .3s, padding .3s, box-shadow .3s;
  }
  #nav.pinned {
    background: rgba(250,251,255,.93);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 12px rgba(13,11,26,.06);
  }
  .nav-inner {
    max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
    display: flex; align-items: center; gap: 40px;
  }
  .logo-wrap { flex-shrink: 0; }
  .logo-wrap img { height: 38px; width: auto; display: block; }
  .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; flex: 1; }
  .nav-links a {
    font-size: 14px; font-weight: 500; color: var(--text-2); text-decoration: none;
    transition: color .2s; letter-spacing: -.01em;
  }
  .nav-links a:hover { color: var(--accent); }
  .nav-cta {
    flex-shrink: 0;
    display: inline-flex; align-items: center;
    background: var(--accent); color: var(--white);
    font-family: 'Onest', sans-serif; font-size: 14px; font-weight: 600;
    padding: 11px 22px; border-radius: 50px; text-decoration: none;
    box-shadow: 0 4px 16px var(--accent-glow);
    transition: background .2s, transform .2s, box-shadow .2s;
    letter-spacing: -.01em; border: none; cursor: pointer;
  }
  .nav-cta:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 6px 22px rgba(110,79,247,.45); }

  .nav-actions { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
  .nav-phone {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Onest', sans-serif; font-size: 14px; font-weight: 600;
    color: var(--text); text-decoration: none; white-space: nowrap;
    letter-spacing: -.01em; transition: color .2s;
  }
  .nav-phone:hover { color: var(--accent); }
  .nav-phone-ico { color: var(--accent); flex-shrink: 0; }
  .nav-messengers { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
  .nav-msg-btn {
    display: inline-flex; align-items: center; gap: 7px;
    font-family: 'Onest', sans-serif; font-size: 13px; font-weight: 600;
    padding: 9px 16px; border-radius: 50px; text-decoration: none;
    background: var(--accent); color: var(--white);
    box-shadow: 0 4px 14px var(--accent-glow);
    transition: background .2s, transform .2s, box-shadow .2s;
    letter-spacing: -.01em; white-space: nowrap;
  }
  .nav-msg-btn:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 6px 22px rgba(110,79,247,.45); }
  .nav-msg-btn img { height: 20px; width: 20px; border-radius: 50%; display: block; flex-shrink: 0; }
  .nav-msg-btn.nav-msg-alt {
    background: transparent; color: var(--text); box-shadow: none;
    border: 1.5px solid var(--border);
  }
  .nav-msg-btn.nav-msg-alt:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-06); }

  /* Burger (mobile only) */
  .nav-burger {
    display: none;
    flex-direction: column; gap: 5px;
    width: 36px; height: 36px;
    background: none; border: none; cursor: pointer; padding: 0;
    align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .nav-burger span {
    display: block; width: 22px; height: 2px;
    background: var(--text); border-radius: 2px;
    transition: transform .25s, opacity .2s;
  }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ═══════════════════════════════════════════════════════
     §1 HERO
  ═══════════════════════════════════════════════════════ */
  .hero {
    position: relative; z-index: 1;
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 110px 0 70px;
  }
  .hero-inner {
    max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center; width: 100%;
  }
  .hero-left { position: relative; z-index: 2; }

  .badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent-light); color: var(--accent);
    font-family: 'Geologica', sans-serif;
    font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 50px; margin-bottom: 26px;
    opacity: 0; animation: upFade .5s ease forwards .05s;
  }
  .badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulseDot 2s ease infinite; }
  @keyframes pulseDot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }

  h1.hero-h1 {
    font-size: clamp(30px, 3.4vw, 48px);
    font-weight: 800;
    line-height: 1.13;
    letter-spacing: -.03em;
    color: var(--text);
    margin-bottom: 22px;
    opacity: 0; animation: upFade .65s ease forwards .2s;
  }
  h1.hero-h1 .accent { color: var(--accent); }
  h1.hero-h1 .underline-w {
    position: relative; display: inline-block;
  }
  h1.hero-h1 .underline-w::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--accent); border-radius: 2px;
    transform: scaleX(0); transform-origin: left;
    animation: growLine .7s ease forwards 1.1s;
  }
  @keyframes growLine { to { transform: scaleX(1); } }

  .hero-sub {
    font-size: 17px; line-height: 1.68; color: var(--text-2);
    margin-bottom: 12px; max-width: 510px;
    opacity: 0; animation: upFade .65s ease forwards .35s;
  }
  .fine-pill {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--danger-bg); color: var(--danger);
    font-weight: 700; font-size: 15px; padding: 2px 10px; border-radius: 6px;
  }
  .hero-micro {
    font-size: 13.5px; color: var(--text-3); margin-bottom: 34px;
    opacity: 0; animation: upFade .65s ease forwards .48s;
  }
  .hero-micro strong { color: var(--text-2); font-weight: 600; }

  .cta-row {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    margin-bottom: 38px;
    opacity: 0; animation: upFade .65s ease forwards .6s;
  }
  .trust-row {
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
    opacity: 0; animation: upFade .65s ease forwards .76s;
  }
  .trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500; color: var(--text-2); }
  .trust-ok { width: 18px; height: 18px; background: var(--ok); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .trust-ok svg { width: 10px; height: 10px; }
  .trust-sep { width: 4px; height: 4px; background: var(--border); border-radius: 50%; }

  @keyframes upFade { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }

  /* hero right */
  .hero-right {
    position: relative; z-index: 2;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; animation: slideFadeIn .8s ease forwards .38s;
  }
  @keyframes slideFadeIn { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }

  .card-scene { position: relative; width: 360px; animation: floatCard 6s ease-in-out infinite; }
  @keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

  .audit-card {
    background: var(--white); border-radius: var(--r-xl);
    box-shadow: var(--shadow-lg); overflow: hidden; position: relative; z-index: 2;
  }
  .ac-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 22px 18px; border-bottom: 1px solid var(--accent-06);
  }
  .ac-hd-left { display: flex; align-items: center; gap: 12px; }
  .ac-ico { width: 40px; height: 40px; background: var(--accent-light); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .ac-title { font-family: 'Geologica', sans-serif; font-size: 12.5px; font-weight: 700; color: var(--text); letter-spacing: -.02em; }
  .ac-url { font-size: 11.5px; color: var(--text-3); margin-top: 2px; }
  .ac-badge-danger { font-size: 11px; font-weight: 700; color: var(--danger); background: var(--danger-bg); padding: 5px 11px; border-radius: 50px; }

  .ac-score {
    display: flex; align-items: center; gap: 18px;
    padding: 18px 22px;
    background: linear-gradient(135deg, var(--accent-06) 0%, transparent 100%);
    border-bottom: 1px solid var(--accent-06);
  }
  .score-ring-wrap { position: relative; width: 68px; height: 68px; flex-shrink: 0; }
  .score-ring-wrap svg { transform: rotate(-90deg); }
  .ring-track { fill: none; stroke: var(--accent-10); stroke-width: 6; }
  .ring-fill  {
    fill: none; stroke: var(--danger); stroke-width: 6; stroke-linecap: round;
    stroke-dasharray: 175.9; stroke-dashoffset: 175.9;
    animation: fillRing 1.6s cubic-bezier(.4,0,.2,1) forwards 1.3s;
  }
  @keyframes fillRing { to { stroke-dashoffset: 116.1; } }
  .ring-value { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
  .ring-num { font-family: 'Geologica', sans-serif; font-size: 17px; font-weight: 800; color: var(--danger); line-height: 1; }
  .ring-lbl { font-size: 8px; color: var(--text-3); text-transform: uppercase; letter-spacing: .04em; margin-top: 1px; }

  .score-info-title { font-size: 13.5px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
  .score-info-sub   { font-size: 12px; color: var(--text-2); line-height: 1.5; }

  .ac-checks { padding: 2px 0; }
  .check-row {
    display: flex; align-items: center; gap: 11px;
    padding: 12px 22px; border-bottom: 1px solid var(--accent-06);
    opacity: 0; transform: translateX(-8px);
  }
  .check-row:last-child { border-bottom: none; }
  .check-row.show { animation: rowIn .35s ease forwards; }
  @keyframes rowIn { to { opacity:1; transform:translateX(0); } }

  .check-ico { width: 22px; height: 22px; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .check-ico.fail { background: var(--danger-bg); }
  .check-ico.warn { background: var(--warn-bg); }
  .check-ico.ok   { background: var(--ok-bg); }
  .check-ico svg  { width: 12px; height: 12px; }
  .check-label { flex: 1; font-size: 12.5px; font-weight: 500; color: var(--text); }

  .sev { font-size: 10.5px; font-weight: 700; padding: 3px 8px; border-radius: 4px; }
  .sev.high   { color: var(--danger); background: var(--danger-bg); }
  .sev.medium { color: var(--warn);   background: var(--warn-bg); }
  .sev.low    { color: var(--ok);     background: var(--ok-bg); }

  .ac-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 22px;
    background: linear-gradient(135deg, var(--accent) 0%, #9271FA 100%);
  }
  .viol-block { color: rgba(255,255,255,.75); font-size: 12.5px; font-weight: 500; }
  .viol-num { display: block; font-family: 'Geologica', sans-serif; font-size: 26px; font-weight: 800; color: #fff; letter-spacing: -.04em; line-height: 1; }
  .ac-fix-btn {
    background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.22);
    color: #fff; font-family: 'Onest', sans-serif; font-size: 13px; font-weight: 600;
    padding: 10px 18px; border-radius: 50px; cursor: pointer;
    transition: background .2s; backdrop-filter: blur(8px);
  }
  .ac-fix-btn:hover { background: rgba(255,255,255,.28); }

  /* floating mini-cards */
  .mini-card {
    position: absolute; background: var(--white);
    border-radius: var(--r-md); box-shadow: var(--shadow-card);
    display: flex; align-items: center; gap: 11px; padding: 13px 16px;
  }
  .mc-1 { top: -18px; left: -110px; width: 196px; animation: floatCard 7.5s ease-in-out infinite; animation-delay: -3.5s; }
  .mc-2 { bottom: 70px; right: -80px; width: 186px; animation: floatCard 8.5s ease-in-out infinite; animation-delay: -1.5s; }
  .mc-ico { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .mc-ico.g { background: var(--ok-bg); }
  .mc-ico.r { background: var(--danger-bg); }
  .mc-lbl { font-size: 10.5px; color: var(--text-3); font-weight: 500; }
  .mc-val { font-size: 14px; font-weight: 700; letter-spacing: -.02em; }
  .mc-val.green { color: var(--ok); }
  .mc-val.red   { color: var(--danger); }

  .rkn-live {
    position: absolute; top: 50%; right: -106px; transform: translateY(-50%);
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--r-md); padding: 13px 15px; width: 176px;
    box-shadow: var(--shadow-card);
    animation: floatCard 9s ease-in-out infinite; animation-delay: -2s;
  }
  .rkn-head { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
  .rkn-dot { width: 8px; height: 8px; background: var(--danger); border-radius: 50%; animation: pulseDot 1.6s ease infinite; }
  .rkn-title { font-size: 10px; font-weight: 700; color: var(--danger); text-transform: uppercase; letter-spacing: .05em; }
  .rkn-body { font-size: 11.5px; color: var(--text-2); line-height: 1.55; }
  .rkn-body span { display: block; color: var(--text); font-weight: 600; }

  /* ═══════════════════════════════════════════════════════
     §2 STATS
  ═══════════════════════════════════════════════════════ */
  .stats { padding: 72px 0; background: var(--white); border-top: 1px solid var(--border-soft); }
  .stats-inner { display: flex; justify-content: center; }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }

  .stat-item {
    text-align: center; padding: 36px 40px;
    border-right: 1px solid var(--border-soft);
  }
  .stat-item:last-child { border-right: none; }

  .stat-icon {
    width: 56px; height: 56px; border-radius: 16px;
    background: var(--accent-light);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    flex-shrink: 0;
  }
  .stat-num {
    font-family: 'Geologica', sans-serif;
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 800; line-height: 1;
    letter-spacing: -.04em;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
  }
  .stat-label {
    font-size: 14px; font-weight: 500;
    color: var(--text-2); line-height: 1.45;
  }

  /* ═══════════════════════════════════════════════════════
     §3 PROBLEM
  ═══════════════════════════════════════════════════════ */
  .problem { padding: 96px 0; background: var(--bg-section); }
  .problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

  .problem-intro { max-width: 480px; }
  .problem-intro .s-sub { margin-bottom: 28px; max-width: 100%; }

  .warning-block {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 3px solid var(--danger);
    border-radius: var(--r-md);
    padding: 20px 22px;
    font-size: 14px; line-height: 1.65; color: var(--text-2);
  }
  .warning-block strong { color: var(--text); font-weight: 600; display: block; margin-bottom: 6px; }

  .violations-list { list-style: none; }
  .viol-item {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px 0; border-bottom: 1px solid var(--border-soft);
  }
  .viol-item:last-child { border-bottom: none; }
  .viol-x {
    width: 24px; height: 24px; flex-shrink: 0; margin-top: 1px;
    background: var(--danger-bg); border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
  }
  .viol-x svg { width: 12px; height: 12px; }
  .viol-text { font-size: 14.5px; line-height: 1.55; color: var(--text); font-weight: 500; }

  /* ═══════════════════════════════════════════════════════
     §4 FINES TABLE
  ═══════════════════════════════════════════════════════ */
  .fines { padding: 96px 0; background: var(--white); }
  .fines-head { text-align: center; margin-bottom: 52px; }
  .fines-head .s-sub { margin: 0 auto; }

  .table-wrap { overflow-x: auto; }
  .fines-table {
    width: 100%; border-collapse: collapse;
    font-size: 14.5px;
  }
  .fines-table thead th {
    font-family: 'Geologica', sans-serif;
    font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: var(--text-3); padding: 12px 20px;
    border-bottom: 2px solid var(--border);
    text-align: left; white-space: nowrap;
  }
  .fines-table tbody tr {
    border-bottom: 1px solid var(--border-soft);
    transition: background .15s;
  }
  .fines-table tbody tr:hover { background: var(--bg-section); }
  .fines-table tbody tr.top-fine { background: var(--danger-bg); }
  .fines-table tbody tr.top-fine:hover { background: #fddcdc; }
  .fines-table tbody td {
    padding: 16px 20px; vertical-align: top; line-height: 1.5;
  }
  .fines-table .td-violation { color: var(--text); font-weight: 500; }
  .fines-table .td-fine { color: var(--danger); font-weight: 700; white-space: nowrap; }
  .fines-table .td-article { color: var(--text-3); font-size: 13px; white-space: nowrap; }

  .fines-footer {
    margin-top: 28px; padding: 20px 24px;
    background: linear-gradient(135deg, var(--accent-light) 0%, #F5F0FF 100%);
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    flex-wrap: wrap;
  }
  .fines-footer-text { font-size: 14.5px; color: var(--text-2); line-height: 1.5; }
  .fines-footer-text strong { color: var(--accent); font-size: 18px; }
  .fines-footer-btns { display: flex; gap: 10px; flex-wrap: wrap; }

  /* ═══════════════════════════════════════════════════════
     §5 SERVICES
  ═══════════════════════════════════════════════════════ */
  .services { padding: 96px 0; background: var(--bg-section); }
  .services-head { text-align: center; margin-bottom: 60px; }
  .services-head .s-sub { margin: 0 auto; }

  .services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

  .svc-block {
    background: var(--white); border-radius: var(--r-xl);
    border: 1px solid var(--border-soft);
    padding: 36px; box-shadow: 0 2px 12px rgba(13,11,26,.05);
  }
  .svc-block-head { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
  .svc-block-ico {
    width: 48px; height: 48px; border-radius: var(--r-md);
    background: var(--accent-light);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .svc-block-ico svg { width: 24px; height: 24px; }
  .svc-block-title { font-family: 'Geologica', sans-serif; font-size: 17px; font-weight: 700; color: var(--text); letter-spacing: -.02em; }

  .svc-list { list-style: none; }
  .svc-item {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 0; border-bottom: 1px solid var(--border-soft);
    font-size: 14.5px; color: var(--text); font-weight: 500; line-height: 1.4;
  }
  .svc-item:last-child { border-bottom: none; padding-bottom: 0; }
  .svc-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent); flex-shrink: 0; opacity: .6;
  }

  /* ═══════════════════════════════════════════════════════
     §6 PRICING
  ═══════════════════════════════════════════════════════ */
  .pricing { padding: 96px 0; background: var(--white); }
  .pricing-head { text-align: center; margin-bottom: 56px; }
  .pricing-head .s-sub { margin: 0 auto; }

  .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

  .plan-card {
    border-radius: var(--r-xl);
    border: 1px solid var(--border);
    padding: 36px 30px;
    background: var(--white);
    position: relative;
    display: flex; flex-direction: column;
    transition: transform .25s, box-shadow .25s;
  }
  .plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

  .plan-card.featured {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 12px 50px rgba(110,79,247,.35);
  }
  .plan-card.featured:hover { box-shadow: 0 18px 60px rgba(110,79,247,.45); }

  .plan-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--text); color: var(--white);
    font-family: 'Geologica', sans-serif;
    font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    padding: 5px 14px; border-radius: 50px; white-space: nowrap;
  }
  .plan-card.featured .plan-badge { background: var(--text); }

  .plan-name {
    font-family: 'Geologica', sans-serif;
    font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    color: var(--text-2); margin-bottom: 20px;
  }
  .plan-card.featured .plan-name { color: rgba(255,255,255,.7); }

  .plan-price-row { display: flex; align-items: flex-end; gap: 10px; margin-bottom: 6px; }
  .plan-price {
    font-family: 'Geologica', sans-serif;
    font-size: 38px; font-weight: 800; color: var(--text);
    letter-spacing: -.04em; line-height: 1;
  }
  .plan-card.featured .plan-price { color: var(--white); }

  .plan-old {
    font-size: 14px; color: var(--text-3); text-decoration: line-through;
    margin-bottom: 4px;
  }
  .plan-card.featured .plan-old { color: rgba(255,255,255,.45); }

  .plan-period { font-size: 13px; color: var(--text-3); margin-bottom: 8px; }
  .plan-card.featured .plan-period { color: rgba(255,255,255,.55); }

  .plan-risk {
    display: inline-block;
    font-size: 12px; font-weight: 600;
    padding: 4px 10px; border-radius: 6px;
    margin-bottom: 28px;
  }
  .plan-risk.high   { background: var(--danger-bg); color: var(--danger); }
  .plan-risk.med    { background: var(--warn-bg);   color: var(--warn); }
  .plan-risk.none   { background: var(--ok-bg);     color: var(--ok); }
  .plan-card.featured .plan-risk.none { background: rgba(255,255,255,.2); color: var(--white); }

  .plan-desc {
    font-size: 13.5px; color: var(--text-2); line-height: 1.55; margin-bottom: 24px;
  }
  .plan-card.featured .plan-desc { color: rgba(255,255,255,.7); }

  .plan-features { list-style: none; flex: 1; margin-bottom: 30px; }
  .plan-feat {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 9px 0; border-bottom: 1px solid var(--border-soft);
    font-size: 13.5px; color: var(--text); font-weight: 500; line-height: 1.4;
  }
  .plan-card.featured .plan-feat { color: rgba(255,255,255,.9); border-bottom-color: rgba(255,255,255,.12); }
  .plan-feat:last-child { border-bottom: none; }
  .feat-check { flex-shrink: 0; margin-top: 2px; }

  .plan-btn {
    display: block; text-align: center;
    font-family: 'Onest', sans-serif; font-size: 14.5px; font-weight: 600;
    padding: 14px; border-radius: 50px; text-decoration: none; border: none; cursor: pointer;
    transition: all .22s;
  }
  .plan-btn-outline {
    background: transparent; color: var(--accent);
    border: 1.5px solid var(--border);
  }
  .plan-btn-outline:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
  .plan-btn-white {
    background: var(--white); color: var(--accent);
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
  }
  .plan-btn-white:hover { box-shadow: 0 8px 28px rgba(0,0,0,.2); transform: translateY(-1px); }

  .plan-btns { display: flex; gap: 8px; }
  .plan-msg-btn {
    flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    font-family: 'Onest', sans-serif; font-size: 13px; font-weight: 600;
    padding: 12px 10px; border-radius: 50px; text-decoration: none;
    transition: all .22s; white-space: nowrap; min-width: 0;
  }
  .plan-msg-btn img { height: 18px; width: 18px; border-radius: 50%; flex-shrink: 0; }
  .plan-msg-btn-max { background: var(--accent); color: var(--white); box-shadow: 0 4px 14px var(--accent-glow); }
  .plan-msg-btn-max:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(110,79,247,.45); }
  .plan-msg-btn-tg { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
  .plan-msg-btn-tg:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-06); }
  /* Featured (purple) card overrides */
  .plan-card.featured .plan-msg-btn-max { background: var(--white); color: var(--accent); box-shadow: 0 4px 16px rgba(0,0,0,.15); }
  .plan-card.featured .plan-msg-btn-max:hover { box-shadow: 0 8px 24px rgba(0,0,0,.22); transform: translateY(-1px); }
  .plan-card.featured .plan-msg-btn-tg { border-color: rgba(255,255,255,.35); color: rgba(255,255,255,.85); }
  .plan-card.featured .plan-msg-btn-tg:hover { border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.08); }

  .pricing-note { text-align: center; margin-top: 32px; font-size: 14px; color: var(--text-3); }
  .pricing-note a { color: var(--accent); text-decoration: none; }
  .pricing-note a:hover { text-decoration: underline; }

  /* ═══════════════════════════════════════════════════════
     §7 WHY US
  ═══════════════════════════════════════════════════════ */
  .why { padding: 96px 0; background: var(--bg-section); }
  .why-head { text-align: center; margin-bottom: 56px; }
  .why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .why-card {
    background: var(--white); border-radius: var(--r-xl);
    border: 1px solid var(--border-soft); padding: 36px;
    box-shadow: 0 2px 12px rgba(13,11,26,.04);
    transition: transform .25s, box-shadow .25s;
  }
  .why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }

  .why-num {
    font-family: 'Geologica', sans-serif;
    font-size: 13px; font-weight: 700; color: var(--accent);
    letter-spacing: .04em; margin-bottom: 16px;
    display: flex; align-items: center; gap: 10px;
  }
  .why-num::after { content: ''; flex: 1; max-width: 40px; height: 1px; background: var(--accent); opacity: .3; }

  .why-title {
    font-family: 'Geologica', sans-serif;
    font-size: 20px; font-weight: 700; color: var(--text);
    letter-spacing: -.025em; margin-bottom: 12px;
  }
  .why-text { font-size: 14.5px; line-height: 1.65; color: var(--text-2); }

  /* ═══════════════════════════════════════════════════════
     §8 REVIEWS
  ═══════════════════════════════════════════════════════ */
  .reviews { padding: 96px 0; background: var(--white); }
  .reviews-head { text-align: center; margin-bottom: 56px; }
  .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

  .review-card {
    background: var(--bg-section); border-radius: var(--r-xl);
    border: 1px solid var(--border-soft); padding: 32px;
    display: flex; flex-direction: column; gap: 18px;
    transition: transform .25s, box-shadow .25s;
  }
  .review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }

  .review-stars { display: flex; gap: 3px; }
  .star { color: #F59E0B; font-size: 15px; }

  .review-quote {
    font-size: 14.5px; line-height: 1.7; color: var(--text);
    flex: 1;
    position: relative; padding-top: 4px;
  }
  .review-quote::before {
    content: '\201C';
    font-family: 'Geologica', sans-serif;
    font-size: 52px; font-weight: 800; color: var(--accent);
    opacity: .15; position: absolute; top: -20px; left: -8px;
    line-height: 1; pointer-events: none;
  }

  .review-author { display: flex; align-items: center; gap: 12px; }
  .review-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--accent-light);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Geologica', sans-serif; font-size: 15px; font-weight: 700; color: var(--accent);
    flex-shrink: 0;
  }
  .review-name { font-size: 14px; font-weight: 600; color: var(--text); }
  .review-role { font-size: 12.5px; color: var(--text-3); margin-top: 1px; }

  /* ═══════════════════════════════════════════════════════
     §9 FAQ
  ═══════════════════════════════════════════════════════ */
  .faq { padding: 96px 0; background: var(--bg-section); }
  .faq-head { text-align: center; margin-bottom: 56px; }

  .faq-list { max-width: 760px; margin: 0 auto; }
  .faq-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }
  .faq-item:first-child { border-top: 1px solid var(--border); }

  .faq-q {
    width: 100%; background: transparent; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 22px 0; text-align: left;
    font-family: 'Geologica', sans-serif;
    font-size: 16px; font-weight: 600; color: var(--text); letter-spacing: -.02em;
    transition: color .2s;
  }
  .faq-q:hover { color: var(--accent); }
  .faq-q.open { color: var(--accent); }

  .faq-icon {
    width: 28px; height: 28px; flex-shrink: 0;
    border-radius: 50%; border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, border-color .2s, transform .3s;
  }
  .faq-q.open .faq-icon { background: var(--accent); border-color: var(--accent); transform: rotate(45deg); }
  .faq-icon svg { width: 14px; height: 14px; }
  .faq-q:not(.open) .faq-icon svg path { stroke: var(--text-3); }
  .faq-q.open .faq-icon svg path { stroke: white; }

  .faq-a-wrap { overflow: hidden; max-height: 0; transition: max-height .38s ease; }
  .faq-a-wrap.open { max-height: 400px; }
  .faq-a {
    padding: 0 0 22px;
    font-size: 14.5px; line-height: 1.72; color: var(--text-2);
  }

  /* ═══════════════════════════════════════════════════════
     §10 FINAL CTA
  ═══════════════════════════════════════════════════════ */
  .final-cta {
    padding: 96px 0;
    background: linear-gradient(135deg, var(--accent) 0%, #8A62F8 50%, #6840E8 100%);
    position: relative; overflow: hidden;
  }
  .final-cta::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.06) 1.5px, transparent 1.5px);
    background-size: 36px 36px;
  }
  .final-cta-inner { position: relative; z-index: 1; text-align: center; }

  .final-cta h2 {
    font-size: clamp(28px, 3.6vw, 46px);
    font-weight: 800; color: var(--white); letter-spacing: -.035em;
    margin-bottom: 16px; line-height: 1.12;
  }
  .final-cta-sub {
    font-size: 17px; color: rgba(255,255,255,.75); line-height: 1.65;
    max-width: 540px; margin: 0 auto 36px;
  }
  .final-cta-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
  .final-cta-micro { margin-top: 22px; font-size: 13px; color: rgba(255,255,255,.5); }

  /* ═══════════════════════════════════════════════════════
     §11 FOOTER
  ═══════════════════════════════════════════════════════ */
  footer {
    background: var(--dark); padding: 60px 0 36px;
    border-top: 1px solid rgba(255,255,255,.06);
  }
  .footer-inner {
    display: grid; grid-template-columns: 1.4fr 1fr 1.3fr;
    align-items: start; gap: 48px; margin-bottom: 48px;
  }
  .footer-col-title {
    font-size: 11px; font-weight: 700; letter-spacing: .10em; text-transform: uppercase;
    color: rgba(255,255,255,.3); margin-bottom: 18px;
  }
  .footer-logo img { height: 34px; width: auto; }
  .footer-tagline {
    font-size: 13.5px; color: rgba(255,255,255,.38); line-height: 1.65; margin-top: 16px;
  }

  /* Footer nav (horizontal links) */
  .footer-nav { display: flex; flex-direction: row; flex-wrap: wrap; gap: 8px 24px; }
  .footer-nav a {
    font-size: 14px; font-weight: 500; color: rgba(255,255,255,.55);
    text-decoration: none; transition: color .2s;
  }
  .footer-nav a:hover { color: rgba(255,255,255,.9); }

  /* Footer contact column */
  .footer-contact { display: flex; flex-direction: column; gap: 16px; }
  .footer-contact-info { display: flex; flex-direction: column; gap: 7px; }
  .footer-contact-info a {
    font-size: 14px; font-weight: 500; color: var(--accent);
    text-decoration: none; transition: color .2s;
  }
  .footer-contact-info a:hover { text-decoration: underline; }
  .footer-msng { display: flex; gap: 8px; flex-wrap: wrap; }
  .footer-msg-btn {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12.5px; font-weight: 600;
    padding: 8px 14px; border-radius: 50px; text-decoration: none;
    background: rgba(255,255,255,.10); color: rgba(255,255,255,.85);
    border: 1px solid rgba(255,255,255,.18);
    transition: background .2s, border-color .2s;
  }
  .footer-msg-btn img { height: 18px; width: 18px; border-radius: 50%; flex-shrink: 0; }
  .footer-msg-btn:hover { background: rgba(255,255,255,.20); border-color: rgba(255,255,255,.35); }

  .footer-bottom {
    padding-top: 28px; border-top: 1px solid rgba(255,255,255,.06);
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
  }
  .footer-copy { font-size: 13px; color: rgba(255,255,255,.3); }
  .footer-docs { display: flex; gap: 20px; }
  .footer-docs a { font-size: 13px; color: rgba(255,255,255,.3); text-decoration: none; transition: color .2s; }
  .footer-docs a:hover { color: rgba(255,255,255,.65); }

  /* ═══════════════════════════════════════════════════════
     RESPONSIVE
  ═══════════════════════════════════════════════════════ */

  /* Tablet ≤ 1024px */
  @media (max-width: 1024px) {
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-col:first-child { grid-column: 1 / -1; }

    .hero-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
    .card-scene { width: 300px; }
    .rkn-live { right: -72px; width: 156px; font-size: 10.5px; }
    .mc-1 { left: -80px; width: 176px; }
    .mc-2 { right: -64px; width: 166px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-top: 1px solid var(--border-soft); }
    .stat-item:nth-child(4) { border-top: 1px solid var(--border-soft); border-right: none; }
    .pricing-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .plan-card.featured { grid-column: 1 / -1; max-width: 420px; margin: 0 auto; }
    .reviews-grid { grid-template-columns: 1fr 1fr; }
    .review-card:last-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
  }

  /* Mobile ≤ 768px */
  @media (max-width: 768px) {
    /* Nav */
    #nav { padding: 13px 0; }
    .nav-inner { padding: 0 20px; gap: 12px; justify-content: space-between; }
    .nav-phone { display: none; }
    .nav-burger { display: flex; }
    .nav-links {
      position: fixed; top: 64px; left: 0; right: 0;
      flex-direction: column; align-items: stretch; gap: 0;
      flex: none;
      background: var(--white);
      padding: 12px 20px 20px;
      border-bottom: 1px solid var(--border);
      box-shadow: 0 12px 28px rgba(13,11,26,.08);
      transform: translateY(-12px);
      opacity: 0; pointer-events: none;
      transition: transform .25s, opacity .2s;
      z-index: 90;
    }
    .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .nav-links li { padding: 14px 4px; border-bottom: 1px solid var(--border-soft); }
    .nav-links li:last-child { border-bottom: none; }
    .nav-links a { font-size: 16px; display: block; }
    .nav-actions { gap: 10px; }
    .nav-phone-num { display: none; }
    .nav-msg-btn { font-size: 12px; padding: 8px 11px; gap: 5px; }
    .nav-msg-btn img { height: 17px; width: 17px; }

    /* Hero */
    .hero { min-height: auto; padding: 90px 0 56px; }
    .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 20px; }
    .hero-right { display: none; }
    h1.hero-h1 { font-size: clamp(28px, 8vw, 40px); }
    .hero-sub { font-size: 15px; max-width: 100%; }
    .cta-row { flex-direction: column; align-items: flex-start; }
    .cta-row .btn-main, .cta-row .btn-ghost { width: 100%; justify-content: center; }
    .trust-row { gap: 12px; }

    /* Layout */
    .container { padding: 0 20px; }

    /* Stats */
    .stats { padding: 48px 0; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-item { padding: 24px 20px; }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid var(--border-soft); }
    .stat-item:nth-child(4) { border-right: none; }

    /* Problem */
    .problem { padding: 64px 0; }
    .problem-grid { grid-template-columns: 1fr; gap: 40px; }
    .problem-intro { max-width: 100%; }

    /* Fines */
    .fines { padding: 64px 0; }
    .fines-footer { flex-direction: column; gap: 16px; text-align: center; }
    .fines-footer-btns { flex-direction: column; }
    .fines-footer-btns .btn-main,
    .fines-footer-btns .btn-ghost { width: 100%; justify-content: center; }
    .fines-table thead th:last-child,
    .fines-table tbody td:last-child { display: none; }

    /* Services */
    .services { padding: 64px 0; }
    .services-grid { grid-template-columns: 1fr; }

    /* Pricing */
    .pricing { padding: 64px 0; }
    .pricing-grid { grid-template-columns: 1fr; }
    .plan-card.featured { max-width: 100%; }

    /* Why */
    .why { padding: 64px 0; }
    .why-grid { grid-template-columns: 1fr; }

    /* Reviews */
    .reviews { padding: 64px 0; }
    .reviews-grid { grid-template-columns: 1fr; }
    .review-card:last-child { grid-column: auto; max-width: 100%; margin: 0; }

    /* FAQ */
    .faq { padding: 64px 0; }

    /* Final CTA */
    .final-cta { padding: 64px 0; }
    .final-cta-btns { flex-direction: column; align-items: stretch; }
    .final-cta-btns a { text-align: center; justify-content: center; }

    /* Footer */
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 10px; }
  }

  /* Small mobile ≤ 480px */
  @media (max-width: 480px) {
    .stat-item { padding: 20px 14px; }
    .stat-num { font-size: clamp(28px, 9vw, 36px); }
    .stat-label { font-size: 12px; }
    .trust-row { flex-direction: column; gap: 8px; }
    .trust-sep { display: none; }
    .s-title { font-size: clamp(24px, 7vw, 32px); }
    .fines-table { font-size: 13px; }
    .fines-table thead th, .fines-table tbody td { padding: 12px 12px; }
  }

  /* ═══════════════════════════════════════════════════════
     COOKIE BANNER
  ═══════════════════════════════════════════════════════ */
  .cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 9999;
    max-width: 960px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lg);
    padding: 18px 22px;
    font-family: 'Onest', sans-serif;
    transform: translateY(calc(100% + 24px));
    opacity: 0;
    transition: transform .28s ease-out, opacity .28s ease-out;
  }
  .cookie-banner[hidden] { display: none; }
  .cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
  .cookie-banner__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .cookie-banner__text {
    flex: 1 1 320px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text);
  }
  .cookie-banner__text a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .cookie-banner__text a:hover { color: var(--accent-dark); }
  .cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
  }
  .cookie-banner__btn {
    padding: 11px 22px;
    font-size: 14px;
  }

  @media (max-width: 640px) {
    .cookie-banner {
      left: 8px;
      right: 8px;
      bottom: 8px;
      padding: 16px 16px;
    }
    .cookie-banner__inner { gap: 14px; }
    .cookie-banner__actions { width: 100%; flex-direction: column; }
    .cookie-banner__btn { width: 100%; justify-content: center; }
  }

  /* ═══════════════════════════════════════════════════════
     LEAD FORM MODAL (landing /lp/)
  ═══════════════════════════════════════════════════════ */
  body.is-modal-open { overflow: hidden; }

  .lf-modal {
    position: fixed; inset: 0;
    background: rgba(13, 11, 26, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    z-index: 200;
    opacity: 0; pointer-events: none;
    transition: opacity .3s ease;
  }
  .lf-modal.is-open { opacity: 1; pointer-events: auto; }

  .lf-modal__content {
    position: relative;
    max-width: 480px; width: 100%;
    max-height: 90vh; overflow-y: auto;
    padding: 36px 32px 32px;
    background: var(--white);
    border-radius: var(--r-lg);
    box-shadow: 0 30px 80px rgba(13,11,26,.35);
    transform: translateY(12px);
    transition: transform .3s ease;
  }
  .lf-modal.is-open .lf-modal__content { transform: none; }

  .lf-modal__close {
    position: absolute; top: 14px; right: 14px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--bg-section);
    border: none; cursor: pointer;
    display: grid; place-items: center;
    color: var(--text-2);
    transition: background .15s, color .15s;
  }
  .lf-modal__close:hover { background: var(--accent-light); color: var(--accent); }

  .lead-form__title {
    font-family: 'Geologica', sans-serif;
    font-size: 24px; font-weight: 700;
    line-height: 1.2; letter-spacing: -.02em;
    color: var(--text);
    margin: 0 0 8px;
  }
  .lead-form__intro {
    margin: 0 0 22px;
    color: var(--text-2);
    font-size: 14px; line-height: 1.5;
  }

  .lead-form { display: flex; flex-direction: column; gap: 14px; }

  .lead-form__field { display: flex; flex-direction: column; gap: 6px; }
  .lead-form__label {
    font-family: 'Geologica', sans-serif;
    font-size: 12px; font-weight: 600;
    letter-spacing: .02em;
    color: var(--text);
  }
  .lead-form__req { color: var(--danger); font-style: normal; font-weight: 700; }

  .lead-form__field input[type="text"],
  .lead-form__field input[type="tel"] {
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    padding: 13px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    background: var(--white);
    color: var(--text);
    transition: border-color .15s, box-shadow .15s;
    width: 100%;
  }
  .lead-form__field input:focus-visible {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-10);
  }
  .lead-form__field input::placeholder { color: var(--text-3); }

  .lead-form__radio-group {
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    padding: 12px 14px 10px;
    margin: 0;
    display: flex; flex-direction: column; gap: 8px;
  }
  .lead-form__legend {
    font-family: 'Geologica', sans-serif;
    font-size: 12px; font-weight: 600;
    letter-spacing: .02em;
    color: var(--text);
    padding: 0 4px;
  }
  .lead-form__radio {
    display: flex; align-items: center; gap: 10px;
    cursor: pointer;
    font-size: 15px; color: var(--text);
    padding: 4px 0;
  }
  .lead-form__radio input[type="radio"] {
    width: 18px; height: 18px;
    accent-color: var(--accent);
    cursor: pointer;
  }

  .lead-form__checkbox {
    display: flex; align-items: flex-start; gap: 10px;
    cursor: pointer;
    font-size: 13px; line-height: 1.45;
    color: var(--text-2);
  }
  .lead-form__checkbox input[type="checkbox"] {
    width: 18px; height: 18px;
    margin-top: 1px;
    accent-color: var(--accent);
    cursor: pointer;
    flex-shrink: 0;
  }
  .lead-form__checkbox a { color: var(--accent); text-decoration: underline; }
  .lead-form__checkbox a:hover { color: var(--accent-dark); }

  .lead-form__error {
    background: var(--danger-bg);
    border: 1px solid rgba(217,48,48,.25);
    color: var(--danger);
    padding: 12px 14px;
    border-radius: var(--r-sm);
    font-size: 14px; line-height: 1.45;
  }

  .lead-form__submit {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }
  .lead-form__submit:disabled {
    opacity: .65;
    cursor: progress;
    transform: none !important;
  }

  @media (max-width: 480px) {
    .lf-modal { padding: 0; align-items: stretch; }
    .lf-modal__content {
      padding: 28px 18px 24px;
      max-height: 100vh;
      border-radius: 0;
    }
    .lead-form__title { font-size: 22px; }
  }

  /* ═══════════════════════════════════════════════════════
     THANKS PAGE (/lp/thanks/)
  ═══════════════════════════════════════════════════════ */
  .thanks-section { padding: 90px 0 50px; }
  .thanks-inner   { max-width: 720px; text-align: center; }

  .thanks-ico {
    width: 96px; height: 96px;
    margin: 0 auto 28px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
  }

  .thanks-title {
    font-family: 'Geologica', sans-serif;
    font-size: clamp(28px, 3.4vw, 44px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.028em;
    color: var(--text);
    margin: 0 0 16px;
  }

  .thanks-sub {
    max-width: 560px;
    margin: 0 auto 32px;
    font-size: 17px; line-height: 1.6;
    color: var(--text-2);
  }

  .thanks-msg-hint {
    font-size: 14px;
    color: var(--text-3);
    margin: 0 0 14px;
  }

  .thanks-msg-row {
    display: flex; gap: 12px;
    justify-content: center; flex-wrap: wrap;
  }

  .thanks-blog { padding: 60px 0 80px; }
  .thanks-blog-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 36px;
  }
  .thanks-blog-head .s-title { margin-bottom: 10px; }
  .thanks-blog-head .s-sub   { margin: 0 auto; }

  .thanks-blog-more {
    margin-top: 40px;
    display: flex; gap: 12px;
    justify-content: center; flex-wrap: wrap;
  }

  @media (max-width: 640px) {
    .thanks-section { padding: 60px 0 30px; }
    .thanks-ico { width: 80px; height: 80px; margin-bottom: 20px; }
    .thanks-blog { padding: 40px 0 60px; }
  }

