:root {
    --bg: #070A0E;
    --bg2: #0C1018;
    --bg3: #111820;
    --accent: #B4F43A;
    --accent2: #39FFB0;
    --accent-dim: rgba(180,244,58,0.12);
    --text: #F0F4FF;
    --muted: #7A8BA0;
    --border: rgba(180,244,58,0.18);
    --card: rgba(255,255,255,0.04);
    --font-head: 'Unbounded', sans-serif;
    --font-body: 'Manrope', sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NOISE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 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;
    z-index: 0;
    opacity: 0.5;
  }

  section, nav, footer { position: relative; z-index: 1; }

  @keyframes neon-flicker {
    0%   { filter: drop-shadow(0 0 8px #B4F43A) drop-shadow(0 0 22px rgba(180,244,58,0.55)); }
    4%   { filter: drop-shadow(0 0 1px #B4F43A); }
    6%   { filter: drop-shadow(0 0 8px #B4F43A) drop-shadow(0 0 22px rgba(180,244,58,0.55)); }
    9%   { filter: none; }
    11%  { filter: drop-shadow(0 0 10px #B4F43A) drop-shadow(0 0 28px rgba(180,244,58,0.7)); }
    60%  { filter: drop-shadow(0 0 8px #B4F43A) drop-shadow(0 0 22px rgba(180,244,58,0.55)); }
    62%  { filter: none; }
    64%  { filter: drop-shadow(0 0 8px #B4F43A) drop-shadow(0 0 22px rgba(180,244,58,0.55)); }
    100% { filter: drop-shadow(0 0 8px #B4F43A) drop-shadow(0 0 22px rgba(180,244,58,0.55)); }
  }

  .neon-wrap {
    display: inline-block;
    animation: neon-flicker 5s infinite;
  }

  .neon-wrap-d1 { animation-delay: 0.9s; }

  /* ── NAV ── */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: sticky;
    top: 0;
    background: rgba(7,10,14,0.92);
    backdrop-filter: blur(16px);
    z-index: 100;
  }

  .logo {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.02em;
  }
  .logo span { color: var(--accent); }

  .nav-cta {
    background: var(--accent);
    color: #070A0E;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 10px 22px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.04em;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: opacity .2s;
  }
  .nav-cta:hover { opacity: 0.85; }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 5% 40px;
    position: relative;
    overflow: hidden;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
  }

  .hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    pointer-events: none;
    z-index: 1;
  }

  .hero-graphic {
    width: 700px;
    height: 700px;
    opacity: 0.35;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
    flex-shrink: 0;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-14px); }
  }

  @media (max-width: 1100px) {
    .hero-right { right: -160px; width: 600px; height: 600px; }
    .hero-graphic { width: 600px; height: 600px; opacity: 0.25; }
  }
  @media (max-width: 860px) {
    .hero-right { right: -180px; width: 500px; height: 500px; }
    .hero-graphic { width: 500px; height: 500px; opacity: 0.18; }
  }
  @media (max-width: 768px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-right {
      right: -120px;
      top: 50%;
      width: 380px;
      height: 380px;
      opacity: 0.12;
    }
    .hero-graphic { width: 380px; height: 380px; opacity: 1; }
  }

  #hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(180,244,58,0.07) 0%, transparent 70%);
    pointer-events: none;
  }

  #hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(57,255,176,0.05) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-dim);
    border: 1px solid var(--border);
    padding: 6px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    width: fit-content;
  }

  .hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
  }

  @keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
  }

  h1 {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3.6vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    max-width: 680px;
    margin-bottom: 14px;
  }

  h1 .accent { color: var(--accent); }
  h1 .accent2 { color: var(--accent2); }

  .hero-sub {
    font-size: clamp(0.88rem, 1.3vw, 1rem);
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 22px;
    line-height: 1.65;
  }

  .hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }

  .btn-primary {
    background: var(--accent);
    color: #070A0E;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.78rem;
    padding: 13px 26px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: opacity .25s;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-primary:hover { background: #c9ff4a; transform: translateY(-2px); }

  .btn-secondary {
    background: transparent;
    color: var(--text);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.78rem;
    padding: 13px 26px;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

  .hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
  }

  .hero-stat {
    display: flex;
    flex-direction: column;
  }

  .stat-num {
    font-family: var(--font-head);
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.03em;
  }

  .stat-label {
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 4px;
  }

  /* ── DASHBOARD MOCKUP ── */
  .dashboard-wrap {
    position: relative;
    margin-top: 60px;
    border: 1px solid var(--border);
    background: var(--bg3);
    overflow: hidden;
  }

  .dashboard-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, var(--bg) 100%);
    z-index: 2;
    pointer-events: none;
  }

  .dash-header {
    background: var(--bg2);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .dot { width: 10px; height: 10px; border-radius: 50%; }
  .dot-r { background: #ff5f5f; }
  .dot-y { background: #ffc038; }
  .dot-g { background: var(--accent); }

  .dash-title { font-size: 0.72rem; color: var(--muted); margin-left: 8px; }

  .dash-body { padding: 20px 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

  .dash-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 14px;
  }

  .dash-card-label { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
  .dash-card-val { font-family: var(--font-head); font-size: 1.5rem; font-weight: 900; letter-spacing: -0.03em; }
  .dash-card-val.green { color: var(--accent); }
  .dash-card-val.blue { color: var(--accent2); }

  .dash-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
  .dash-name { font-size: 0.68rem; width: 60px; white-space: nowrap; }
  .dash-bar-bg { flex: 1; height: 6px; background: rgba(255,255,255,0.06); overflow: hidden; }
  .dash-bar { height: 100%; background: var(--accent); transition: width 1s; }
  .dash-score { font-size: 0.68rem; color: var(--accent); font-weight: 700; width: 28px; text-align: right; }

  .dash-card.wide { grid-column: span 2; }

  /* ── PROBLEM SECTION LAYOUT ── */
  .problem-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 48px;
  }

  .problem-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .problem-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  @media (max-width: 900px) {
    .problem-layout { grid-template-columns: 1fr; gap: 32px; }
    .problem-illustration { max-width: 360px; margin: 0 auto; }
  }
  .section-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
  }

  h2 {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
  }

  /* ── SECTION WRAPPERS ── */
  .section { padding: 100px 5%; }
  .section.dark { background: var(--bg2); }
  .container { max-width: 1100px; margin: 0 auto; }

  /* ── PROBLEM ── */
  .problem-grid { display: flex; flex-direction: column; gap: 0; }

  .problem-item {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: background .25s;
  }
  .problem-item:hover { background: rgba(255,255,255,0.06); }

  .problem-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent);
    opacity: 0;
    transition: opacity .25s;
  }
  .problem-item:hover::before { opacity: 1; }

  .problem-num {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 12px;
  }

  .problem-text { font-size: 1rem; color: var(--muted); line-height: 1.65; }
  .problem-text strong { color: var(--text); }

  /* ── ROI / BENEFITS ── */
  .benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }

  .benefit-card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 28px;
    transition: border-color .25s, transform .25s;
  }
  .benefit-card:hover { border-color: var(--border); transform: translateY(-4px); }

  .benefit-icon {
    width: 44px;
    height: 44px;
    background: rgba(180,244,58,0.10);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 16px;
  }
  .benefit-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .btn-icon {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
  }

  .benefit-title { font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
  .benefit-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
  .benefit-highlight { color: var(--accent); font-family: var(--font-head); font-size: 1.3rem; font-weight: 900; display: block; margin-bottom: 4px; }

  /* ── ROI FORM ── */
  .roi-block {
    margin-top: 56px;
    background: linear-gradient(135deg, rgba(180,244,58,0.06), rgba(57,255,176,0.04));
    border: 1px solid var(--border);
    padding: 40px;
    text-align: center;
  }

  .roi-block p { font-size: 1.05rem; color: var(--muted); margin-bottom: 24px; max-width: 560px; margin-inline: auto; }

  /* ── HOW IT WORKS ── */
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; position: relative; }

  .steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), var(--accent), var(--border), transparent);
    z-index: 0;
  }

  .step { padding: 0 16px; text-align: center; position: relative; z-index: 1; }

  .step-num {
    width: 72px;
    height: 72px;
    background: var(--bg);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--accent);
    margin: 0 auto 20px;
    box-shadow: 0 0 24px rgba(180,244,58,0.2);
  }

  .step-title { font-family: var(--font-head); font-size: 0.82rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
  .step-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

  /* ── FEATURES ── */
  .features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }

  .feature {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: border-color .25s;
  }
  .feature:hover { border-color: var(--border); }

  .feature-ico {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(180,244,58,0.10);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
  }
  .feature-ico svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .feature-title { font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; margin-bottom: 8px; }
  .feature-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

  /* ── OFFER ── */
  .offer-box {
    background: var(--bg3);
    border: 1px solid var(--border);
    padding: 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .offer-box::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(180,244,58,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .offer-box h2 { position: relative; z-index: 1; }
  .offer-box p { position: relative; z-index: 1; font-size: 1rem; color: var(--muted); max-width: 520px; margin: 16px auto 32px; line-height: 1.7; }

  /* ── ABOUT ── */
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 56px; }
  .about-text p { color: var(--muted); line-height: 1.8; margin-bottom: 16px; }

  .tech-logos {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
  }

  .tech-badge {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--muted);
    transition: border-color .2s, color .2s;
  }
  .tech-badge:hover { border-color: var(--border); color: var(--accent); }

  .stats-block { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  .stat-box {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 24px;
  }

  .stat-box-num { font-family: var(--font-head); font-size: 2rem; font-weight: 900; color: var(--accent); letter-spacing: -0.04em; }
  .stat-box-label { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }

  /* ── FAQ ── */
  .faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 2px; }

  .faq-item {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    transition: border-color .25s;
  }
  .faq-item:hover { border-color: var(--border); }

  .faq-q {
    padding: 22px 28px;
    font-family: var(--font-head);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    letter-spacing: -0.01em;
  }

  .faq-q::after {
    content: '+';
    color: var(--accent);
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: transform .3s;
  }

  .faq-item.open .faq-q::after { transform: rotate(45deg); }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    padding: 0 28px;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
  }

  .faq-item.open .faq-a { max-height: 200px; padding: 0 28px 22px; }

  /* ── MODAL ── */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(7,10,14,0.92);
    backdrop-filter: blur(8px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
  }
  .modal-overlay.active { display: flex; }

  .modal {
    background: var(--bg3);
    border: 1px solid var(--border);
    padding: 48px;
    max-width: 480px;
    width: 90%;
    position: relative;
    animation: modalIn .3s ease;
  }

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

  .modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--muted);
    font-size: 1.4rem;
    cursor: pointer;
    transition: color .2s;
  }
  .modal-close:hover { color: var(--text); }

  .modal h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 900; margin-bottom: 8px; letter-spacing: -0.02em; }
  .modal p { font-size: 0.85rem; color: var(--muted); margin-bottom: 28px; }

  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: 0.75rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }

  .form-group input {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
    outline: none;
    transition: border-color .2s;
  }
  .form-group input:focus { border-color: var(--accent); }
  .form-group input::placeholder { color: rgba(122,139,160,0.6); }

  .btn-submit {
    width: 100%;
    background: var(--accent);
    color: #070A0E;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 16px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.04em;
    margin-top: 8px;
    transition: all .2s;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  }
  .btn-submit:hover { background: #c9ff4a; }

  .success-msg { display: none; text-align: center; padding: 20px 0; }
  .success-msg .check {
    width: 46px;
    height: 46px;
    color: var(--accent);
    margin: 0 auto 12px;
  }
  .success-msg .check svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .success-msg p { color: var(--muted); margin: 0; }

  /* ── FOOTER ── */
  footer {
    background: var(--bg2);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 48px 5%;
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 24px; }

  .footer-logo { font-family: var(--font-head); font-size: 1rem; font-weight: 900; letter-spacing: -0.02em; }
  .footer-logo span { color: var(--accent); }

  .footer-desc { font-size: 0.82rem; color: var(--muted); margin-top: 8px; max-width: 260px; line-height: 1.6; }

  .footer-links { display: flex; gap: 24px; flex-wrap: wrap; }

  .footer-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .footer-link:hover { color: var(--accent); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-copy { font-size: 0.75rem; color: rgba(122,139,160,0.5); }

  /* ── TICKER ── */
  .ticker-wrap {
    overflow: hidden;
    background: var(--accent);
    padding: 10px 0;
    border-top: none;
    border-bottom: none;
  }

  .ticker-track {
    display: flex;
    gap: 0;
    animation: ticker 28s linear infinite;
    white-space: nowrap;
    width: max-content;
  }

  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  .ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 32px;
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 900;
    color: #070A0E;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .ticker-sep { color: rgba(7,10,14,0.3); }

  /* ── RESPONSIVE: TABLET ── */
  @media (max-width: 900px) {
    .steps { grid-template-columns: 1fr 1fr; gap: 32px; }
    .steps::before { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .stats-block { grid-template-columns: 1fr 1fr; }
    .hero-stats { gap: 28px; }
    .benefits-grid { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
  }

  /* ── RESPONSIVE: MOBILE ── */
  @media (max-width: 768px) {
    /* Layout */
    .problem-grid,
    .benefits-grid,
    .features-grid,
    .about-grid,
    .contact-grid { grid-template-columns: 1fr; }

    .steps { grid-template-columns: 1fr; gap: 0; }
    .steps::before { display: none; }

    /* Nav */
    nav { padding: 14px 5%; }
    .nav-cta { font-size: 0.7rem; padding: 9px 16px; }

    /* Hero */
    #hero { padding: 70px 5% 50px; min-height: auto; }
    .hero-badge { font-size: 0.65rem; padding: 5px 12px; margin-bottom: 20px; }
    h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); margin-bottom: 18px; }
    .hero-sub { font-size: 0.95rem; margin-bottom: 28px; }
    .hero-actions { flex-direction: column; gap: 12px; margin-bottom: 36px; }
    .btn-primary, .btn-secondary { width: 100%; text-align: center; justify-content: center; padding: 15px 20px; font-size: 0.8rem; }
    .hero-stats { gap: 0; display: grid; grid-template-columns: 1fr 1fr; row-gap: 20px; }
    .stat-num { font-size: 1.6rem; }

    /* Dashboard */
    .dashboard-wrap { margin-top: 36px; }
    .dash-body { grid-template-columns: 1fr; }
    .dash-card.wide { grid-column: span 1; }

    /* Sections */
    .section { padding: 60px 5%; }
    #contact { padding: 60px 5%; }
    h2 { font-size: clamp(1.3rem, 5.5vw, 2rem); }

    /* Problem */
    .problem-grid { gap: 0; }
    .problem-item { padding: 24px 20px; }
    .problem-num { font-size: 2rem; }

    /* Steps */
    .step {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      text-align: left;
      padding: 20px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .step:last-child { border-bottom: none; }
    .step-num {
      width: 48px;
      height: 48px;
      min-width: 48px;
      font-size: 0.9rem;
      margin: 0;
    }
    .step-title { margin-bottom: 6px; }

    /* Benefits */
    .benefit-card { padding: 22px 18px; }

    /* Features */
    .features-grid { gap: 0; }
    .feature { padding: 22px 18px; border-bottom: 1px solid rgba(255,255,255,0.05); border-right: none; }
    .feature:last-child { border-bottom: none; }

    /* Offer */
    .offer-box { padding: 32px 20px; }

    /* About */
    .stats-block { grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat-box-num { font-size: 1.5rem; }

    /* Contact */
    #contact { padding: 60px 5%; }
    .contact-form-box { padding: 24px 18px; }
    .cf-row { grid-template-columns: 1fr; gap: 0; }
    .cf-group { margin-bottom: 12px; }
    .cf-group input,
    .cf-group textarea { padding: 12px 14px; font-size: 0.85rem; }
    .btn-cf-submit { padding: 14px; font-size: 0.8rem; margin-top: 4px; }
    .contact-links { flex-direction: column; gap: 10px; }
    .contact-link-item { width: 100%; }

    /* Footer */
    footer { padding: 40px 5%; }
    .footer-top { flex-direction: column; gap: 20px; }
    .footer-links { flex-direction: column; gap: 14px; }

    /* Modal */
    .modal { padding: 28px 20px; width: 94%; }
  }

  /* ── RESPONSIVE: SMALL MOBILE ── */
  @media (max-width: 400px) {
    h1 { font-size: 1.5rem; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
    .stat-num { font-size: 1.4rem; }
    .section-tag { font-size: 0.62rem; }
    .btn-primary, .btn-secondary { font-size: 0.75rem; padding: 14px 16px; }
    .benefit-card { padding: 18px 14px; }
    .offer-box { padding: 28px 16px; }
    .stats-block { grid-template-columns: 1fr 1fr; }
    .contact-form-box { padding: 22px 16px; }
  }

  /* ── SCROLL ANIMATIONS ── */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  .reveal-d1 { transition-delay: .1s; }
  .reveal-d2 { transition-delay: .2s; }
  .reveal-d3 { transition-delay: .3s; }
  .reveal-d4 { transition-delay: .4s; }

  /* ── CONTACT ANIMATED RADAR ── */
  .contact-radar {
    position: absolute;
    top: 50%;
    right: -80px;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    pointer-events: none;
    opacity: 0.15;
  }
  @media (max-width: 768px) { .contact-radar { width: 300px; height: 300px; right: -100px; opacity: 0.08; } }

  /* ── CONTACT SECTION ── */
  #contact {
    background: var(--bg2);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
  }

  .contact-inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .contact-inner .section-tag { margin-bottom: 12px; }
  .contact-inner h2 { margin-bottom: 40px; }

  /* Form box */
  .contact-form-box {
    background: var(--bg3);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 40px;
    position: relative;
    margin-bottom: 32px;
  }
  .contact-form-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
  }

  .cf-group { margin-bottom: 14px; }
  .cf-group input, .cf-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 13px 16px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text);
    outline: none;
    transition: border-color .2s;
    resize: none;
  }
  .cf-group input:focus, .cf-group textarea:focus { border-color: var(--accent); }
  .cf-group input::placeholder, .cf-group textarea::placeholder { color: rgba(122,139,160,0.55); }
  .cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

  .btn-cf-submit {
    width: 100%;
    background: var(--accent);
    color: #070A0E;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 16px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.05em;
    margin-top: 8px;
    transition: all .2s;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  }
  .btn-cf-submit:hover { background: #c9ff4a; }

  .cf-success { display: none; text-align: center; padding: 32px 0; }
  .cf-success .cf-check {
    width: 46px;
    height: 46px;
    color: var(--accent);
    margin: 0 auto 12px;
  }
  .cf-success .cf-check svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .cf-success p { color: var(--muted); font-size: 0.88rem; }

  /* Contact info row below form */
  .contact-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  .contact-link-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 12px 18px;
    font-size: 0.85rem;
    color: var(--muted);
    text-decoration: none;
    transition: border-color .2s, color .2s;
    flex: 1;
    min-width: 220px;
  }
  .contact-link-item:hover { border-color: var(--border); color: var(--accent); }
  .contact-link-item svg { flex-shrink: 0; }
  .contact-link-item div { min-width: 0; }
  .contact-link-item span { font-size: 0.75rem; color: var(--muted); display: block; margin-top: 1px; }
  .contact-link-item .contact-phone { white-space: nowrap; }

  @media (max-width: 768px) {
    #contact { padding: 60px 5%; }
    .contact-form-box { padding: 24px 18px; }
    .cf-row { grid-template-columns: 1fr; gap: 0; }
    .contact-links { flex-direction: column; gap: 10px; }
    .contact-link-item { min-width: unset; width: 100%; }
  }
  @media (max-width: 400px) {
    .contact-form-box { padding: 20px 14px; }
  }
