:root {
  --bg: #ffffff;
  --bg-alt: #f5f6fb;
  --ink: #0d0f1c;
  --ink-soft: #565d78;
  --line: #e6e8f2;
  --brand: #6d3cff;
  --brand-2: #22b8ff;
  --brand-3: #ff5c8a;
  --grad: linear-gradient(100deg, #6d3cff, #22b8ff);
  --grad-3: linear-gradient(100deg, #6d3cff, #22b8ff 60%, #7c5cff);
  --dark: #0a0b1e;
  --dark-2: #12132b;
  --shadow: 0 12px 40px rgba(20, 20, 60, 0.10);
  --shadow-lg: 0 24px 70px rgba(20, 20, 60, 0.16);
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.container { width: min(1160px, 92%); margin: 0 auto; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; }

.grad {
  background: var(--grad-3);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; padding: 11px 20px;
  border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, color .2s;
  white-space: nowrap;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 8px 24px rgba(109, 60, 255, 0.32); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(109, 60, 255, 0.42); }
.btn-ghost { color: var(--ink); border-color: var(--line); background: #fff; }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-outline { background: #fff; border-color: var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,0.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 20px; }
.brand-mark { display: grid; place-items: center; width: 30px; height: 30px; background: var(--grad); color: #fff; border-radius: 9px; font-size: 13px; }
.brand-accent { color: var(--brand); }
.nav-links { display: flex; gap: 26px; font-weight: 500; color: var(--ink-soft); }
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.menu-btn { display: none; font-size: 24px; background: none; border: none; cursor: pointer; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 84px 0 70px; text-align: center; overflow: hidden; }
.hero-glow {
  position: absolute; inset: -20% 0 auto 0; height: 620px; z-index: -1;
  background:
    radial-gradient(600px 340px at 30% 20%, rgba(109,60,255,0.18), transparent 70%),
    radial-gradient(560px 320px at 72% 10%, rgba(34,184,255,0.16), transparent 70%),
    radial-gradient(500px 300px at 55% 40%, rgba(255,92,138,0.10), transparent 70%);
}
.hero-inner { display: flex; flex-direction: column; align-items: center; }
.pill { display: inline-block; background: #fff; border: 1px solid var(--line); color: var(--brand); font-weight: 600; font-size: 13px; padding: 7px 16px; border-radius: 999px; box-shadow: var(--shadow); margin-bottom: 22px; }
.hero h1 { font-size: clamp(34px, 6.2vw, 66px); line-height: 1.05; font-weight: 900; letter-spacing: -2px; }
.hero-sub { max-width: 660px; margin: 22px auto 0; font-size: 18px; color: var(--ink-soft); }
.hero-sub em { font-style: italic; }

/* Analyze widget */
.analyze { margin-top: 32px; width: 100%; max-width: 620px; }
.analyze-field {
  display: flex; align-items: center; gap: 8px; background: #fff;
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 7px 7px 18px;
  box-shadow: var(--shadow-lg);
}
.analyze-icon { font-size: 17px; opacity: .7; }
.analyze-field input { flex: 1; border: none; outline: none; font-size: 16px; padding: 12px 6px; background: transparent; color: var(--ink); min-width: 0; }
.analyze-note { margin-top: 12px; font-size: 13px; color: var(--ink-soft); }

/* Scan result */
.scan { width: 100%; max-width: 620px; margin: 18px auto 0; background: var(--dark); color: #fff; border-radius: var(--radius); padding: 18px 20px; text-align: left; box-shadow: var(--shadow-lg); animation: pop .35s ease; }
@keyframes pop { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.scan-head { display: flex; align-items: center; gap: 10px; font-family: "JetBrains Mono", monospace; font-size: 14px; color: #c7cbe6; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.scan-dot { width: 9px; height: 9px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,0.2); }
.scan-status { margin-left: auto; color: #8b90c4; }
.scan-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 16px 0; }
.scan-stat { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 12px 14px; }
.scan-k { display: block; font-size: 12px; color: #8b90c4; }
.scan-stat b { font-size: 26px; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.scan-cta { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-top: 6px; font-size: 14px; color: #c7cbe6; flex-wrap: wrap; }

/* Trust */
.trust { margin-top: 34px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: center; }
.stars { color: #ffb020; font-weight: 700; font-size: 15px; }
.stars span { color: var(--ink-soft); font-weight: 500; }
.trust-logos { color: var(--ink-soft); font-size: 14px; }
.logo-row { margin-top: 22px; display: flex; gap: 34px; flex-wrap: wrap; justify-content: center; opacity: .45; font-weight: 800; letter-spacing: 1px; font-size: 15px; }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.eyebrow { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--brand); margin-bottom: 12px; }
.section-head h2 { font-size: clamp(27px, 4.2vw, 42px); font-weight: 800; letter-spacing: -1.2px; line-height: 1.12; }
.section-head p { margin-top: 14px; color: var(--ink-soft); font-size: 17px; }

/* ---------- Dashboard ---------- */
.dashboard { display: grid; grid-template-columns: 1.4fr 1fr; gap: 22px; }
.dash-left, .dash-right { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.dash-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 18px; }
.metric { background: var(--bg-alt); border-radius: 12px; padding: 14px 16px; }
.metric-k { display: block; font-size: 13px; color: var(--ink-soft); }
.metric b { font-size: 26px; font-weight: 800; letter-spacing: -1px; font-variant-numeric: tabular-nums; }
.metric-up { display: inline-block; margin-left: 8px; font-size: 12px; color: #22c55e; font-weight: 700; }
.chart-card { position: relative; background: var(--bg-alt); border-radius: 12px; padding: 16px; }
.chart-title { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.chart-title span { color: var(--ink-soft); font-weight: 400; }
.chart { width: 100%; height: 150px; display: block; }
.chart-line { stroke-dasharray: 1200; stroke-dashoffset: 1200; }
.chart.animate .chart-line { animation: draw 1.6s ease forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.chart-marker { position: absolute; left: 22%; bottom: 16px; font-size: 11px; color: var(--brand); font-weight: 700; background: #fff; padding: 2px 8px; border-radius: 999px; border: 1px solid var(--line); }

.queue-title { display: flex; align-items: center; justify-content: space-between; font-weight: 700; margin-bottom: 14px; }
.live { color: #22c55e; font-size: 12px; font-weight: 700; }
.queue { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.queue li { display: flex; align-items: center; gap: 10px; background: var(--bg-alt); border-radius: 10px; padding: 11px 13px; font-size: 13.5px; }
.q-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.q-active { outline: 2px solid rgba(109,60,255,0.25); }
.badge { font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; white-space: nowrap; }
.b-pub { background: rgba(34,197,94,0.14); color: #16a34a; }
.b-gen { background: rgba(109,60,255,0.14); color: var(--brand); }
.b-queue { background: rgba(86,93,120,0.12); color: var(--ink-soft); }
.gen-steps { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.gen-step { font-size: 11px; padding: 4px 9px; border-radius: 999px; background: var(--bg-alt); color: var(--ink-soft); transition: all .3s; }
.gen-step.on { background: var(--grad); color: #fff; }

/* ---------- Stats band ---------- */
.stats-band { background: var(--dark); color: #fff; padding: 46px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat b { display: block; font-size: clamp(30px, 4vw, 46px); font-weight: 900; letter-spacing: -1.5px; background: linear-gradient(100deg, #9d7bff, #57cbff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-variant-numeric: tabular-nums; }
.stat span { color: #a4a9d0; font-size: 14px; }

/* ---------- Problem ---------- */
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pain { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; transition: transform .15s, box-shadow .2s; }
.pain:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pain-ico { font-size: 26px; margin-bottom: 12px; }
.pain h3 { font-size: 16px; margin-bottom: 6px; }
.pain p { font-size: 14px; color: var(--ink-soft); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: transform .15s, box-shadow .2s; }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num { width: 40px; height: 40px; border-radius: 11px; background: var(--grad); color: #fff; display: grid; place-items: center; font-weight: 800; margin-bottom: 16px; }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 15px; }

/* ---------- Channels ---------- */
.channels { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
.channel { border-radius: var(--radius); padding: 30px; border: 1px solid var(--line); background: #fff; }
.channel-ai { background: linear-gradient(160deg, rgba(109,60,255,0.07), rgba(34,184,255,0.07)); border-color: rgba(109,60,255,0.25); }
.channel-tag { display: inline-block; font-weight: 700; font-size: 14px; padding: 5px 12px; border-radius: 999px; background: var(--bg-alt); margin-bottom: 14px; }
.channel h3 { font-size: 22px; letter-spacing: -.5px; margin-bottom: 8px; }
.channel p { color: var(--ink-soft); }

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: transform .15s, box-shadow .2s; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-ico { width: 50px; height: 50px; border-radius: 13px; background: var(--bg-alt); display: grid; place-items: center; font-size: 24px; margin-bottom: 14px; }
.feature h3 { font-size: 18px; margin-bottom: 7px; }
.feature p { color: var(--ink-soft); font-size: 15px; }

/* ---------- Cases ---------- */
.cases { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.case { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; transition: transform .15s, box-shadow .2s; }
.case:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.case-chart { position: relative; background: var(--bg-alt); border-radius: 12px; height: 90px; margin-bottom: 14px; overflow: hidden; }
.case-chart svg { width: 100%; height: 100%; }
.case-flag { position: absolute; left: 8px; bottom: 8px; font-size: 10px; font-weight: 700; color: #16a34a; background: #fff; padding: 2px 7px; border-radius: 999px; }
.case-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.avatar { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; }
.a1 { background: linear-gradient(135deg, #6d3cff, #22b8ff); }
.a2 { background: linear-gradient(135deg, #ff5c8a, #ffb020); }
.a3 { background: linear-gradient(135deg, #22c55e, #22b8ff); }
.a4 { background: linear-gradient(135deg, #7c5cff, #ff5c8a); }
.case-meta b { display: block; font-size: 14px; }
.case-meta span { font-size: 12px; color: var(--ink-soft); }
.case-num { font-weight: 800; font-size: 17px; letter-spacing: -.5px; }
.case-num span { font-weight: 500; font-size: 13px; color: var(--ink-soft); }

/* ---------- Compare table ---------- */
.compare-table { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
.compare-table table { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare-table th, .compare-table td { padding: 16px 18px; text-align: left; font-size: 15px; border-bottom: 1px solid var(--line); }
.compare-table thead th { font-size: 15px; font-weight: 700; color: var(--ink-soft); }
.compare-table tbody td:first-child { color: var(--ink-soft); }
.compare-table .col-us { background: linear-gradient(180deg, rgba(109,60,255,0.06), rgba(34,184,255,0.04)); color: var(--ink); font-weight: 600; }
.compare-table thead .col-us { color: var(--brand); font-weight: 800; }
.compare-table tr:last-child td { border-bottom: none; }

/* ---------- Integrations + languages ---------- */
.int-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.int-block { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.int-block h3 { font-size: 18px; margin-bottom: 16px; }
.int-logos { display: flex; flex-wrap: wrap; gap: 10px; }
.int-logos span { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 9px 15px; font-weight: 600; font-size: 14px; }
.flags { font-size: 24px; line-height: 1.9; letter-spacing: 3px; }
.flag-more { font-size: 14px; letter-spacing: 0; color: var(--brand); font-weight: 700; vertical-align: middle; }

/* ---------- Before/After ---------- */
.compare2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.cc { border-radius: var(--radius); padding: 32px; border: 1px solid var(--line); background: #fff; }
.cc-after { background: linear-gradient(160deg, rgba(109,60,255,0.06), rgba(34,184,255,0.06)); border-color: rgba(109,60,255,0.25); }
.cc h3 { font-size: 20px; margin-bottom: 18px; }
.cc ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.cc li { display: flex; gap: 12px; color: var(--ink-soft); font-size: 15px; }
.x { color: #ef4444; font-weight: 700; }
.c { color: #16a34a; font-weight: 700; }

/* ---------- Pricing ---------- */
.billing-toggle { display: flex; align-items: center; justify-content: center; gap: 14px; margin: -20px 0 40px; }
.bt-label { font-weight: 600; font-size: 15px; }
.bt-label.muted { color: var(--ink-soft); }
.save { font-style: normal; font-size: 12px; font-weight: 700; color: #16a34a; background: rgba(34,197,94,0.12); padding: 2px 8px; border-radius: 999px; margin-left: 4px; }
.switch { width: 52px; height: 30px; border-radius: 999px; background: var(--line); border: none; position: relative; cursor: pointer; transition: background .2s; }
.switch[aria-checked="true"] { background: var(--grad); }
.knob { position: absolute; top: 3px; left: 3px; width: 24px; height: 24px; border-radius: 50%; background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,.2); transition: transform .2s; }
.switch[aria-checked="true"] .knob { transform: translateX(22px); }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.plan { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 30px 26px; box-shadow: var(--shadow); }
.plan-pop { border: 2px solid transparent; background:
    linear-gradient(#fff, #fff) padding-box,
    var(--grad) border-box; box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.pop-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 15px; border-radius: 999px; }
.plan-name { font-size: 20px; }
.plan-desc { color: var(--ink-soft); font-size: 14px; margin: 6px 0 18px; }
.plan-price { display: flex; align-items: baseline; gap: 3px; }
.plan-price .cur { font-size: 24px; font-weight: 700; }
.plan-price .amt { font-size: 52px; font-weight: 900; letter-spacing: -2px; }
.plan-price .per { color: var(--ink-soft); }
.plan-billed { color: var(--ink-soft); font-size: 13px; margin: 4px 0 20px; }
.plan-feats { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-top: 22px; }
.plan-feats li { font-size: 14.5px; color: var(--ink-soft); }
.plan-feats li::first-letter { color: #16a34a; }
.price-benchmark { text-align: center; margin-top: 34px; color: var(--ink-soft); font-size: 15px; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quotes blockquote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; font-size: 16px; line-height: 1.55; }
.quotes cite { display: block; margin-top: 16px; font-style: normal; font-weight: 700; font-size: 14px; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 780px; }
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 4px 20px; }
.faq-item summary { cursor: pointer; list-style: none; padding: 16px 0; font-weight: 600; font-size: 16px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--brand); font-weight: 400; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { color: var(--ink-soft); padding: 0 0 18px; font-size: 15px; }

/* ---------- Final CTA ---------- */
.final-cta { position: relative; background: var(--dark); color: #fff; padding: 84px 0; text-align: center; overflow: hidden; }
.final-glow { position: absolute; inset: 0; z-index: 0; background: radial-gradient(600px 300px at 50% 0%, rgba(109,60,255,0.35), transparent 70%), radial-gradient(500px 300px at 70% 100%, rgba(34,184,255,0.22), transparent 70%); }
.final-cta .container { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.final-cta h2 { font-size: clamp(28px, 5vw, 46px); font-weight: 900; letter-spacing: -1.5px; line-height: 1.1; }
.analyze-cta { margin-top: 30px; }
.final-note { margin-top: 14px; font-size: 14px; color: #a4a9d0; }

/* ---------- Footer ---------- */
.site-footer { background: #060715; color: #a4a9d0; padding-top: 56px; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .brand { color: #fff; margin-bottom: 12px; }
.footer-brand p { color: #7d84ad; font-size: 15px; max-width: 260px; }

/* ---------- Login modal ---------- */
#loginBtn.is-logged-in { border-color: var(--brand); color: var(--brand); }
.plan-pill {
  display: inline-flex; align-items: center; padding: 6px 14px;
  border-radius: 999px; background: var(--bg-alt); color: var(--ink);
  font-weight: 600; font-size: 14px;
}
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(10, 11, 30, 0.55); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay[hidden] { display: none; }
.modal-card {
  position: relative; width: min(380px, 100%); background: #fff;
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 32px 28px 28px;
}
.modal-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.modal-sub { color: var(--ink-soft); font-size: 14px; margin-bottom: 18px; }
.modal-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.modal-input {
  width: 100%; padding: 11px 14px; border: 1px solid var(--line); border-radius: 12px;
  font-size: 15px; font-family: inherit; margin-bottom: 8px;
}
.modal-input:focus { outline: none; border-color: var(--brand); }
.modal-error { color: var(--brand-3); font-size: 13px; margin-bottom: 12px; }
.modal-close {
  position: absolute; top: 14px; right: 14px; width: 28px; height: 28px;
  border: none; background: var(--bg-alt); border-radius: 50%; cursor: pointer; font-size: 13px;
}
.modal-divider { display: flex; align-items: center; gap: 10px; margin: 18px 0; color: var(--ink-soft); font-size: 13px; }
.modal-divider::before, .modal-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.google-btn { gap: 10px; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-cols h4 { color: #fff; font-size: 14px; margin-bottom: 14px; }
.footer-cols a { display: block; margin-bottom: 10px; font-size: 14px; }
.footer-cols a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-size: 14px; flex-wrap: wrap; gap: 10px; }
.to-top:hover { color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .dashboard { grid-template-columns: 1fr; }
  .pain-grid, .steps, .features, .cases { grid-template-columns: repeat(2, 1fr); }
  .plans, .quotes { grid-template-columns: 1fr; }
  .plan-pop { transform: none; }
  .channels, .int-wrap, .compare2 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .nav-actions .btn-ghost { display: none; }
}
@media (max-width: 560px) {
  .pain-grid, .steps, .features, .cases { grid-template-columns: 1fr; }
  .scan-grid { grid-template-columns: 1fr; }
  .analyze-field { flex-wrap: wrap; border-radius: 18px; }
  .analyze-field input { width: 100%; }
  .analyze-field .btn { width: 100%; }
}
.nav-links.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 16px 6%; gap: 16px; }
