:root {
  color-scheme: dark;
  --bg: #07090f;
  --bg-2: #0b0e18;
  --bg-3: #04060a;
  --surface: rgba(255, 255, 255, .03);
  --surface-2: rgba(255, 255, 255, .05);
  --line: rgba(255, 255, 255, .08);
  --line-2: rgba(255, 255, 255, .14);
  --ink: #f1f3f9;
  --ink-soft: #b4b9cc;
  --muted: #7d8399;
  --brand: #5b4cf5;
  --brand-2: #7c6cff;
  --brand-glow: rgba(91, 76, 245, .35);
  --green: #34d399;
  --violet: #b18cff;
  --orange: #f5a524;
  --pink: #f0508c;
  --cyan: #38bdf8;
  --radius: 14px;
  --max: 1160px;
  --display: "Space Grotesk", "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--brand-2); text-decoration: none; }
a:hover { color: #a79dff; }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.12; letter-spacing: -0.02em; margin: 0 0 .55em; color: var(--ink); }
h1 { font-size: clamp(2.3rem, 5.2vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.7rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 600; }
p { margin: 0 0 1em; color: var(--ink-soft); }
strong { color: var(--ink); }
::selection { background: var(--brand); color: #fff; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; position: relative; }
.section { padding: 110px 0; position: relative; }
.section.alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section.deep { background: var(--bg-3); }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 700; color: var(--violet); margin-bottom: 1em; display: block; }
.eyebrow.orange { color: var(--orange); }
.eyebrow.pink { color: var(--pink); }
.eyebrow.cyan { color: var(--cyan); }
.eyebrow.green { color: var(--green); }
.lead { font-size: 1.08rem; max-width: 620px; color: var(--ink-soft); }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; margin-bottom: 56px; }
.section-head h2 { margin-bottom: .3em; }
.section-head .lead { margin: 0; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(7, 9, 15, .78); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; font-size: 1.2rem; color: var(--ink); }
.logo:hover { color: var(--ink); }
.logo span b { color: var(--brand-2); font-weight: 500; }
.logo-mark { width: 32px; height: 32px; }
.nav-links { display: flex; gap: 34px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink-soft); font-weight: 500; font-size: .92rem; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-toggle { display: none; background: var(--surface-2); color: var(--ink); border: 1px solid var(--line-2); border-radius: 10px; padding: 8px 12px; cursor: pointer; font-size: 1rem; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 10px; font-weight: 600; font-size: .94rem; transition: .2s; border: 1px solid transparent; cursor: pointer; font-family: inherit; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 8px 30px -8px var(--brand-glow); }
.btn-primary:hover { background: var(--brand-2); color: #fff; transform: translateY(-1px); }
.btn-outline { border-color: var(--line-2); color: var(--ink); background: var(--surface); }
.btn-outline:hover { border-color: var(--brand-2); color: #fff; background: var(--surface-2); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* Hero */
.hero { position: relative; min-height: calc(100vh - 70px); min-height: calc(100svh - 70px); display: flex; align-items: center; padding: 90px 0; overflow: hidden; border-bottom: 1px solid var(--line);
  background: radial-gradient(900px 500px at 15% 80%, rgba(91,76,245,.14), transparent 60%), radial-gradient(700px 400px at 55% 20%, rgba(52,211,153,.07), transparent 60%), var(--bg); }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(ellipse at center, #000 10%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse at center, #000 10%, transparent 70%); opacity: .35; }
.hero .container { z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.25fr .85fr; gap: 64px; align-items: center; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; background: rgba(91,76,245,.12); border: 1px solid rgba(124,108,255,.35); color: #c9c2ff; font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 26px; }
.pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.hero h1 { max-width: 640px; min-height: 2.3em; }
.hero .lead { min-height: 3.4em; }
.fade-swap { transition: opacity .35s, transform .35s; }
.fade-swap.out { opacity: 0; transform: translateY(6px); }

.hero-tabs { display: flex; flex-direction: column; gap: 10px; }
.hero-tab { text-align: left; background: transparent; border: 1px solid transparent; border-radius: 14px; padding: 16px 18px; cursor: pointer; font: inherit; color: var(--muted); display: grid; grid-template-columns: 34px 1fr; gap: 4px 14px; transition: .25s; position: relative; overflow: hidden; }
.hero-tab:hover { color: var(--ink-soft); background: var(--surface); }
.hero-tab .num { grid-row: span 2; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-size: .72rem; font-weight: 700; border: 1px solid var(--line-2); color: var(--muted); align-self: center; }
.hero-tab .cat { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; }
.hero-tab .ttl { font-size: .95rem; font-weight: 600; font-family: var(--display); }
.hero-tab.active { background: rgba(14, 17, 30, .85); border-color: var(--line-2); color: var(--ink); box-shadow: 0 20px 50px -20px rgba(0,0,0,.8); backdrop-filter: blur(8px); }
.hero-tab.active .num { background: var(--brand); border-color: var(--brand); color: #fff; }
.hero-tab.active .cat { color: var(--violet); }
.hero-tab .bar { position: absolute; left: 66px; right: 18px; bottom: 10px; height: 2px; background: var(--line); border-radius: 2px; overflow: hidden; opacity: 0; }
.hero-tab.active .bar { opacity: 1; }
.hero-tab .bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--brand-2), var(--green)); }
.hero-tab.active .bar i { animation: fill 6s linear forwards; }
.hero-tabs.paused .hero-tab.active .bar i { animation-play-state: paused; }
@keyframes fill { to { width: 100%; } }

.page-hero { position: relative; overflow: hidden; padding: 96px 0 72px; border-bottom: 1px solid var(--line);
  background: radial-gradient(700px 360px at 85% 0%, rgba(91,76,245,.2), transparent 65%), radial-gradient(500px 300px at 0% 100%, rgba(52,211,153,.06), transparent 60%), var(--bg); }
.page-hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(90deg, transparent, #000 60%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 60%, transparent); opacity: .3; }
.page-hero .container { z-index: 1; }

/* Grids & cards */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); gap: 48px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: linear-gradient(180deg, rgba(91,76,245,.07), rgba(255,255,255,.015)); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: border-color .25s, transform .25s, box-shadow .25s; position: relative; }
.card:hover { border-color: rgba(124,108,255,.4); transform: translateY(-3px); box-shadow: 0 24px 50px -24px var(--brand-glow); }
.card h3 { margin-bottom: .45em; }
.card p { font-size: .92rem; margin-bottom: 0; }
.icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(91,76,245,.16); border: 1px solid rgba(124,108,255,.3); color: var(--violet); display: grid; place-items: center; margin-bottom: 20px; }
.icon svg { width: 20px; height: 20px; }
.card ul { padding-left: 18px; margin: 14px 0 0; color: var(--ink-soft); font-size: .92rem; }
.card li { margin-bottom: 4px; }
.card li::marker { color: var(--brand-2); }
.price { font-size: .88rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 14px; margin-top: 20px; }
.price strong { color: var(--green); font-size: 1.05rem; }
.step-num { font-family: var(--display); font-weight: 700; font-size: 2rem; color: rgba(124,108,255,.45); line-height: 1; margin-bottom: 12px; }

/* Services tabs (home) */
.seg { display: inline-flex; gap: 4px; padding: 4px; border-radius: 12px; background: var(--surface); border: 1px solid var(--line); flex-wrap: wrap; }
.seg button { background: none; border: 0; color: var(--muted); font: inherit; font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 9px 14px; border-radius: 9px; cursor: pointer; transition: .2s; }
.seg button:hover { color: var(--ink); }
.seg button.active { background: var(--brand); color: #fff; box-shadow: 0 6px 20px -6px var(--brand-glow); }
.cap-panel { display: grid; grid-template-columns: .9fr 1.6fr; gap: 24px; align-items: start; }
.cap-panel[hidden] { display: none; }
.cap-intro { background: linear-gradient(160deg, rgba(91,76,245,.14), rgba(255,255,255,.02)); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 30px; }
.cap-intro h3 { font-size: 1.5rem; }
.cap-count { display: flex; align-items: center; gap: 14px; margin-top: 24px; padding: 14px 16px; border-radius: 12px; background: rgba(0,0,0,.3); border: 1px solid var(--line); font-size: .85rem; color: var(--ink-soft); }
.cap-count b { font-family: var(--display); font-size: 1.5rem; color: var(--violet); }
.cap-list { list-style: none; margin: 0; padding: 26px 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 36px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); counter-reset: cap; }
.cap-list li { counter-increment: cap; display: flex; gap: 14px; align-items: baseline; padding: 11px 0; border-bottom: 1px dashed var(--line); font-size: .93rem; color: var(--ink-soft); }
.cap-list li::before { content: counter(cap, decimal-leading-zero); font-size: .7rem; color: var(--muted); font-family: "JetBrains Mono", ui-monospace, monospace; }
.cap-panel.enter .cap-list li { animation: rise .45s both; }
.cap-panel.enter .cap-list li:nth-child(2n) { animation-delay: .05s; }
.cap-panel.enter .cap-list li:nth-child(3n) { animation-delay: .1s; }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } }

/* Carousel */
.carousel-nav { display: flex; gap: 10px; }
.round-btn { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--surface-2); border: 1px solid var(--line-2); color: var(--ink); cursor: pointer; font-size: 1.1rem; transition: .2s; }
.round-btn:hover { border-color: var(--brand-2); }
.round-btn.primary { background: var(--brand); border-color: var(--brand); box-shadow: 0 8px 24px -6px var(--brand-glow); }
.track { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 40px calc(50% - 170px); scrollbar-width: none; align-items: center; }
.track::-webkit-scrollbar { display: none; }
.slide { flex: 0 0 340px; height: 260px; scroll-snap-align: center; border-radius: 18px; padding: 26px; display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid var(--line-2); position: relative; overflow: hidden; transform: scale(.86); opacity: .45; transition: transform .45s, opacity .45s, box-shadow .45s; }
.slide.is-active { transform: scale(1); opacity: 1; box-shadow: 0 40px 80px -30px rgba(0,0,0,.9), 0 0 0 1px rgba(255,255,255,.12); }
.slide::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 28px 28px; mask-image: linear-gradient(180deg, #000, transparent 70%); -webkit-mask-image: linear-gradient(180deg, #000, transparent 70%); }
.slide .tag { position: absolute; top: 18px; right: 18px; font-size: .7rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; background: rgba(0,0,0,.35); border: 1px solid rgba(255,255,255,.2); color: #fff; font-family: "JetBrains Mono", monospace; }
.slide .glyph { position: absolute; top: 22px; left: 24px; width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.12); display: grid; place-items: center; color: #fff; }
.slide .glyph svg { width: 22px; height: 22px; }
.slide h3 { color: #fff; font-size: 1.3rem; position: relative; }
.slide p { color: rgba(255,255,255,.78); font-size: .88rem; margin: 0; position: relative; }
.g1 { background: linear-gradient(145deg, #2438e8, #3a2aa8 60%, #1a1a5e); }
.g2 { background: linear-gradient(145deg, #8a1fa8, #5a1580 55%, #251040); }
.g3 { background: linear-gradient(145deg, #0e7490, #1e3a8a 60%, #4c1d95); }
.g4 { background: linear-gradient(145deg, #047857, #064e3b 60%, #0b1f1a); }
.g5 { background: linear-gradient(145deg, #c2410c, #7c2d12 60%, #2a0f07); }
.g6 { background: linear-gradient(145deg, #334155, #1e293b 60%, #0b1020); }
.dots { display: flex; justify-content: center; gap: 6px; margin-top: 10px; }
.dots button { width: 8px; height: 4px; border-radius: 2px; border: 0; background: var(--line-2); cursor: pointer; transition: .3s; padding: 0; }
.dots button.active { width: 30px; background: var(--orange); }

/* Process (reviews-style) */
.proc { display: grid; grid-template-columns: .8fr 1.5fr; gap: 28px; align-items: stretch; }
.proc-list { display: flex; flex-direction: column; gap: 10px; }
.proc-item { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 12px; background: transparent; border: 1px solid transparent; cursor: pointer; font: inherit; color: var(--muted); text-align: left; transition: .2s; }
.proc-item:hover { background: var(--surface); color: var(--ink-soft); }
.proc-item .av { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; font-weight: 700; font-size: .78rem; background: rgba(240,80,140,.1); color: var(--pink); border: 1px solid rgba(240,80,140,.25); flex-shrink: 0; }
.proc-item b { display: block; color: inherit; font-size: .95rem; }
.proc-item small { font-size: .78rem; color: var(--muted); }
.proc-item.active { background: var(--surface-2); border-color: var(--line-2); color: var(--ink); }
.proc-card { background: linear-gradient(160deg, rgba(240,80,140,.06), rgba(91,76,245,.06) 50%, rgba(255,255,255,.015)); border: 1px solid var(--line-2); border-radius: 18px; padding: 44px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; min-height: 320px; }
.proc-card .kicker { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--pink); margin-bottom: 18px; display: flex; gap: 10px; align-items: center; }
.proc-card .kicker i { display: inline-flex; gap: 4px; }
.proc-card .kicker i::before { content: "\25CF\00a0\25CF\00a0\25CF\00a0\25CF"; letter-spacing: 2px; font-style: normal; font-size: .55rem; color: var(--pink); }
.proc-card blockquote { margin: 0 0 26px; font-family: var(--display); font-size: clamp(1.2rem, 2.2vw, 1.6rem); line-height: 1.4; color: var(--ink); font-weight: 500; }
.proc-card .meta b { display: block; }
.proc-card .meta span { color: var(--muted); font-size: .86rem; }
.proc-card .big { position: absolute; right: 30px; bottom: -30px; font-family: var(--display); font-size: 9rem; font-weight: 700; color: rgba(240,80,140,.08); line-height: 1; pointer-events: none; }

/* Stats */
.stat-card { background: linear-gradient(160deg, rgba(56,189,248,.08), rgba(255,255,255,.02)); border: 1px solid var(--line-2); border-radius: 18px; padding: 34px; }
.stat-card .num { font-family: var(--display); font-size: clamp(2.6rem, 5vw, 3.8rem); font-weight: 700; line-height: 1; background: linear-gradient(90deg, #7dd3fc, #818cf8); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 12px; }
.stat-card .num.green { background: linear-gradient(90deg, #6ee7b7, #38bdf8); -webkit-background-clip: text; background-clip: text; }
.stat-card b { display: block; text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; }
.stat-card span { color: var(--muted); font-size: .86rem; }
.stat-stack { display: grid; gap: 18px; }
.split { display: grid; grid-template-columns: 1.2fr .9fr; gap: 56px; align-items: center; }

/* Company info table */
.info-table { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.info-table th, .info-table td { text-align: left; padding: 15px 20px; border-bottom: 1px solid var(--line); vertical-align: top; font-size: .93rem; }
.info-table th { width: 38%; background: rgba(255,255,255,.02); font-weight: 600; color: var(--muted); }
.info-table td { color: var(--ink); }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: none; }

/* Contact */
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: flex; gap: 16px; margin-bottom: 24px; color: var(--ink-soft); }
.contact-list .icon { margin: 0; flex-shrink: 0; }
.contact-list strong { display: block; }
form .field { margin-bottom: 16px; }
label { display: block; font-weight: 600; font-size: .86rem; margin-bottom: 7px; color: var(--ink-soft); }
input, select, textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line-2); border-radius: 10px; font: inherit; color: var(--ink); background: rgba(0,0,0,.3); transition: .2s; }
select option { background: #0b0e18; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--brand-2); box-shadow: 0 0 0 3px rgba(124,108,255,.2); }
textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 12px; }
.form-status { margin: 14px 0 0; font-size: .9rem; font-weight: 500; }
.form-status:empty { display: none; }
.form-status.ok { color: var(--green); }
.form-status.err { color: #f87171; }
.btn:disabled { opacity: .6; cursor: wait; }

/* Final CTA */
.cta-final { position: relative; overflow: hidden; padding: 120px 0; border-top: 1px solid var(--line);
  background: radial-gradient(800px 400px at 70% 100%, rgba(91,76,245,.28), transparent 65%), radial-gradient(600px 300px at 10% 0%, rgba(240,80,140,.08), transparent 60%), var(--bg-2); }
.cta-final h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 620px; }
.cta-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: end; }
.cta-contacts { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 12px; }
.cta-contacts li { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.cta-contacts .icon { width: 34px; height: 34px; margin: 0; background: rgba(240,80,140,.1); border-color: rgba(240,80,140,.3); color: var(--pink); }
.cta-contacts .icon svg { width: 16px; height: 16px; }
.cta-contacts a { color: var(--ink); }
.cta-box { background: rgba(0,0,0,.3); border: 1px solid var(--line-2); border-radius: 18px; padding: 30px; backdrop-filter: blur(6px); }
.cta-box p { font-size: .92rem; }

/* Legal pages */
.legal { max-width: 800px; }
.legal h2 { font-size: 1.35rem; margin-top: 2.2em; }
.legal h3 { margin-top: 1.4em; }
.legal ul { color: var(--ink-soft); padding-left: 22px; }
.legal li { margin-bottom: 6px; }
.legal li::marker { color: var(--brand-2); }
.updated { color: var(--muted); font-size: .9rem; }

/* Footer */
.site-footer { background: var(--bg-3); color: var(--muted); padding: 72px 0 30px; font-size: .9rem; border-top: 1px solid var(--line); }
.site-footer a { color: var(--ink-soft); }
.site-footer a:hover { color: #fff; }
.site-footer h4 { color: var(--ink); font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; margin: 0 0 16px; font-family: "Inter", sans-serif; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer p { color: var(--muted); font-size: .88rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; }
.footer-logo { margin-bottom: 14px; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .82rem; }
address { font-style: normal; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid, .grid-2, .split, .cta-grid, .proc, .cap-panel { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: auto; }
  .hero-tabs { max-width: 480px; }
}
@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0; background: rgba(7,9,15,.97); flex-direction: column; gap: 0; border-bottom: 1px solid var(--line); padding: 8px 24px 18px; }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav > .btn { display: none; }
  .grid-3, .grid-4, .footer-grid, .cap-list { grid-template-columns: 1fr; }
  .section { padding: 76px 0; }
  .hero { padding: 64px 0 56px; }
  #hero-canvas { opacity: .55; }
  .hero h1, .hero .lead { min-height: 0; }
  .track { padding: 30px calc(50% - 135px); }
  .slide { flex-basis: 270px; height: 240px; }
  .proc-card { padding: 30px; }
  .cta-final { padding: 80px 0; }
  .info-table th, .info-table td { display: block; width: 100%; }
  .info-table th { border-bottom: none; padding-bottom: 2px; }
}
