:root {
  color-scheme: dark;
  --bg: #070b12;
  --bg-elevated: #0b111b;
  --surface: #0e1622;
  --surface-2: #121c2a;
  --text: #f4f7fb;
  --text-soft: #a5b0c1;
  --muted: #6f7c90;
  --line: rgba(158, 184, 218, 0.14);
  --line-strong: rgba(158, 184, 218, 0.25);
  --blue: #4da3ff;
  --cyan: #64c2db;
  --blue-deep: #005fb8;
  --brand: linear-gradient(120deg, #64c2db 0%, #62bafe 38%, #4da3ff 66%, #0874d7 100%);
  --brand-soft: rgba(77, 163, 255, 0.12);
  --header-bg: rgba(7, 11, 18, 0.78);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius: 18px;
  --container: 1240px;
  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
html.lenis, html.lenis body { height: auto; }
html.lenis.lenis-smooth { scroll-behavior: auto !important; }
html.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
html.lenis.lenis-stopped { overflow: hidden; }
body { font-family: var(--font); color: var(--text); background: var(--bg); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; transition: background .3s, color .3s; }
body::selection { background: var(--blue); color: #fff; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
.container { width: min(100% - 48px, var(--container)); margin-inline: auto; }
.section { padding: 140px 0; position: relative; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; background: var(--header-bg); border-bottom: 1px solid transparent; backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); transition: border-color .25s, background .25s; }
.site-header.is-scrolled { border-bottom-color: var(--line); }
.header-inner { height: 76px; display: flex; align-items: center; gap: 32px; }
.logo { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.logo svg { display: block; width: 154px; height: auto; --logo-ink: var(--text) !important; }
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; align-items: center; list-style: none; gap: 4px; }
.main-nav a { display: block; padding: 9px 13px; color: var(--text-soft); font-size: 14px; font-weight: 600; transition: color .2s; }
.main-nav a:hover { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); padding: 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: currentColor; margin: 4px 0; transition: .2s; }

.btn { min-height: 50px; padding: 0 21px; border-radius: 12px; border: 1px solid transparent; display: inline-flex; align-items: center; justify-content: center; gap: 22px; font-weight: 700; font-size: 14px; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s, border-color .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #06101b; background: var(--brand); box-shadow: 0 10px 30px rgba(51, 150, 245, .16); }
.btn-primary:hover { box-shadow: 0 14px 38px rgba(51, 150, 245, .28); }
.btn-ghost { border-color: var(--line-strong); background: rgba(255,255,255,.025); color: var(--text); }
.btn-ghost:hover { background: var(--brand-soft); border-color: rgba(77,163,255,.4); }
.btn-small { min-height: 38px; padding: 0 15px; border-radius: 10px; font-size: 13px; }

.hero { min-height: 850px; height: min(100vh, 980px); padding-top: 76px; display: flex; align-items: center; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero::before { content: ""; position: absolute; width: 640px; height: 640px; right: 1%; top: 13%; background: radial-gradient(circle, rgba(39,132,231,.14), transparent 65%); pointer-events: none; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 88%); opacity: .3; }
.hero-grid::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg) 2%, transparent 24%, transparent 75%, var(--bg) 98%); }
.hero .hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 30px; width: min(calc(100% - 48px), 1180px); }
.hero-content { padding: 0 0 20px clamp(18px, 3vw, 54px); animation: heroIn .8s both; }
.eyebrow { display: flex; align-items: center; gap: 11px; color: var(--cyan); font: 500 11px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 29px; }
.eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(100,194,219,.09), 0 0 18px var(--cyan); }
.hero h1 { max-width: 720px; font-size: clamp(49px, 5.7vw, 82px); line-height: .99; letter-spacing: -.065em; font-weight: 600; }
.hero h1 em { font-style: normal; color: transparent; -webkit-text-stroke: 1px var(--text-soft); opacity: .82; }
.hero-lead { max-width: 600px; margin-top: 29px; color: var(--text-soft); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; gap: 12px; margin-top: 37px; }
.hero-proof { display: flex; align-items: center; gap: 13px; color: var(--muted); font: 400 10px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; margin-top: 47px; }
.hero-proof i { width: 3px; height: 3px; background: var(--muted); border-radius: 50%; }
.hero-visual { height: 660px; position: relative; isolation: isolate; cursor: grab; transform: translateY(-12px); }
.hero-visual:active { cursor: grabbing; }
#hero-canvas { width: 100%; height: 100%; display: block; position: relative; z-index: 1; }
.visual-glow { position: absolute; z-index: -1; inset: 22% 12%; background: radial-gradient(circle, rgba(77,163,255,.2), transparent 66%); filter: blur(35px); }

.section-index { color: var(--blue); font: 500 10px/1 var(--mono); letter-spacing: .15em; }
.section-heading { display: grid; grid-template-columns: 1fr 420px; align-items: end; gap: 40px; margin-bottom: 65px; }
.section-heading h2, .approach-copy h2, .about-copy h2, .contact-heading h2 { margin-top: 18px; font-size: clamp(40px, 5vw, 67px); line-height: 1.06; letter-spacing: -.055em; font-weight: 600; }
.section-heading h2 span, .approach-copy h2 span, .about-copy h2 span, .contact-heading h2 span { color: var(--text-soft); font-weight: 400; }
.section-heading > p { color: var(--text-soft); font-size: 16px; line-height: 1.8; padding-bottom: 5px; }

.services-section { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 340px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; transition: background .3s; }
.service-card::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--brand); transition: width .4s ease; }
.service-card:hover { background: var(--surface); }
.service-card:hover::after { width: 100%; }
.service-number { color: var(--muted); font: 400 10px/1 var(--mono); position: absolute; right: 25px; top: 27px; }
.service-icon { width: 47px; height: 47px; display: grid; place-items: center; border: 1px solid var(--line); background: var(--brand-soft); border-radius: 13px; color: var(--blue); }
.service-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 20px; letter-spacing: -.025em; margin-top: 48px; }
.service-card p { color: var(--text-soft); font-size: 14px; line-height: 1.75; margin-top: 11px; max-width: 330px; }
.service-tag { display: inline-block; position: absolute; bottom: 28px; left: 30px; color: var(--muted); font: 400 9px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.service-card-featured { background: linear-gradient(145deg, rgba(77,163,255,.11), transparent 60%); }
.service-card-cta { background: var(--brand); color: #06111e; display: flex; flex-direction: column; justify-content: center; }
.service-card-cta:hover { background: var(--brand); }
.service-card-cta::after { display: none; }
.service-card-cta .service-kicker { font: 500 10px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; opacity: .7; }
.service-card-cta h3 { font-size: 31px; line-height: 1.15; letter-spacing: -.04em; margin-top: 18px; }
.service-card-cta a { margin-top: 46px; padding-top: 16px; border-top: 1px solid rgba(6,17,30,.23); font-size: 13px; font-weight: 700; display: flex; justify-content: space-between; }

.approach-section { background: var(--bg-elevated); border-block: 1px solid var(--line); }
.approach-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 11%; }
.approach-copy { position: sticky; top: 130px; align-self: start; }
.approach-copy > p { color: var(--text-soft); max-width: 440px; margin-top: 30px; font-size: 16px; line-height: 1.85; }
.text-link { display: inline-flex; gap: 45px; margin-top: 35px; padding-bottom: 7px; border-bottom: 1px solid var(--line-strong); font-size: 13px; font-weight: 700; }
.text-link span { color: var(--blue); }
.process-list { border-top: 1px solid var(--line); }
.process-item { min-height: 168px; display: grid; grid-template-columns: 55px 1fr auto; gap: 24px; align-items: start; padding: 34px 0; border-bottom: 1px solid var(--line); }
.process-item > span { color: var(--blue); font: 400 11px/1.8 var(--mono); }
.process-item h3 { font-size: 19px; margin-bottom: 8px; }
.process-item p { color: var(--text-soft); max-width: 480px; font-size: 14px; }
.process-item i { font-style: normal; color: var(--muted); border: 1px solid var(--line); border-radius: 99px; padding: 5px 10px; font: 400 9px/1 var(--mono); text-transform: uppercase; letter-spacing: .08em; }

.about-section { overflow: hidden; }
.about-panel { min-height: 590px; position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: 26px; display: grid; grid-template-columns: 1.12fr .88fr; padding: 75px; overflow: hidden; box-shadow: var(--shadow); }
.about-panel::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 55px 55px; opacity: .16; mask-image: linear-gradient(90deg, transparent, #000); }
.about-copy { position: relative; z-index: 2; }
.about-copy h2 { font-size: clamp(42px, 4.6vw, 64px); }
.about-copy p { max-width: 590px; color: var(--text-soft); margin-top: 27px; font-size: 15px; line-height: 1.85; }
.about-copy strong { color: var(--text); }
.about-metrics { position: relative; z-index: 2; grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); align-self: end; border-top: 1px solid var(--line); margin-top: 55px; padding-top: 29px; }
.about-metrics > div { display: flex; align-items: center; gap: 20px; border-right: 1px solid var(--line); padding-right: 30px; margin-right: 30px; }
.about-metrics > div:last-child { border: 0; }
.about-metrics strong { font: 500 38px/1 var(--mono); letter-spacing: -.05em; color: var(--cyan); }
.about-metrics span { color: var(--text-soft); font-size: 11px; line-height: 1.5; text-transform: uppercase; letter-spacing: .07em; }
.about-orbit { position: absolute; width: 430px; height: 430px; border: 1px solid var(--line-strong); border-radius: 50%; right: -40px; top: -15px; animation: slowSpin 28s linear infinite; }
.about-orbit::before, .about-orbit::after { content: ""; position: absolute; border: 1px solid var(--line); border-radius: 50%; }
.about-orbit::before { inset: 55px; }
.about-orbit::after { inset: 115px; background: radial-gradient(circle at 40% 30%, rgba(100,194,219,.22), rgba(0,95,184,.06) 45%, transparent 70%); }
.about-orbit span, .about-orbit i, .about-orbit b { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 18px var(--blue); }
.about-orbit span { left: 47px; top: 83px; }.about-orbit i { right: 62px; bottom: 72px; }.about-orbit b { left: 48%; top: -5px; }

.contact-section { background: var(--bg-elevated); border-top: 1px solid var(--line); }
.contact-heading { max-width: 850px; margin-bottom: 65px; }
.contact-heading > p { max-width: 600px; color: var(--text-soft); margin-top: 25px; }
.ticket-shell { display: grid; grid-template-columns: 330px 1fr; min-height: 680px; border: 1px solid var(--line); background: var(--surface); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); }
.ticket-sidebar { padding: 42px 35px; border-right: 1px solid var(--line); background: linear-gradient(160deg, rgba(77,163,255,.07), transparent 48%); display: flex; flex-direction: column; }
.ticket-steps { position: relative; }
.ticket-steps::before { content: ""; position: absolute; width: 1px; height: 117px; background: var(--line); left: 17px; top: 34px; }
.ticket-step { position: relative; z-index: 1; display: flex; align-items: center; gap: 16px; margin-bottom: 36px; opacity: .42; transition: opacity .25s; }
.ticket-step.is-active, .ticket-step.is-done { opacity: 1; }
.ticket-step > span { width: 35px; height: 35px; flex: 0 0 auto; border: 1px solid var(--line-strong); background: var(--surface); border-radius: 50%; display: grid; place-items: center; font: 500 10px/1 var(--mono); }
.ticket-step.is-active > span { color: #07121d; background: var(--brand); border-color: transparent; box-shadow: 0 0 25px rgba(77,163,255,.25); }
.ticket-step.is-done > span { color: var(--blue); border-color: var(--blue); }
.ticket-step strong { display: block; font-size: 13px; }
.ticket-step small { display: block; color: var(--muted); font-size: 11px; margin-top: 2px; }
.ticket-promise { margin-top: auto; padding-top: 28px; border-top: 1px solid var(--line); display: flex; gap: 12px; }
.status-pulse { width: 8px; height: 8px; flex: 0 0 auto; background: #5de2a5; border-radius: 50%; box-shadow: 0 0 0 5px rgba(93,226,165,.08); margin-top: 6px; }
.ticket-promise strong { font-size: 12px; }
.ticket-promise p { color: var(--muted); font-size: 11px; line-height: 1.6; margin-top: 5px; }
.ticket-form-wrap { padding: 46px 55px; min-width: 0; }
.ticket-form { max-width: 760px; }
.form-step { display: none; animation: formIn .35s ease both; }
.form-step.is-active { display: block; }
.form-step-heading { margin-bottom: 31px; }
.form-step-heading > span { color: var(--blue); font: 500 9px/1 var(--mono); letter-spacing: .12em; }
.form-step-heading h3 { font-size: 25px; letter-spacing: -.035em; margin-top: 9px; }
.form-step-heading p { color: var(--text-soft); font-size: 13px; margin-top: 3px; }
.category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-bottom: 27px; }
.category-choice { min-height: 102px; position: relative; border: 1px solid var(--line); background: var(--bg-elevated); border-radius: 12px; padding: 16px 13px; cursor: pointer; transition: border-color .2s, background .2s; }
.category-choice:hover { border-color: var(--line-strong); }
.category-choice:has(input:checked) { border-color: var(--blue); background: var(--brand-soft); }
.category-choice input { position: absolute; opacity: 0; pointer-events: none; }
.category-choice svg { width: 21px; height: 21px; fill: none; stroke: var(--text-soft); stroke-width: 1.2; }
.category-choice strong { display: block; font-size: 10px; margin-top: 18px; }
.category-radio { position: absolute; right: 10px; top: 10px; width: 9px; height: 9px; border: 1px solid var(--line-strong); border-radius: 50%; }
.category-choice input:checked + .category-radio { border: 3px solid var(--blue); }
.form-group { margin-bottom: 21px; position: relative; }
.form-group label, .priority-field legend { display: block; font-size: 11px; font-weight: 700; margin-bottom: 7px; }
.form-group label em { color: var(--blue); font-style: normal; }
.form-group input, .form-group textarea, .ticket-status-form select { width: 100%; border: 1px solid var(--line); border-radius: 10px; color: var(--text); background: var(--bg-elevated); outline: 0; padding: 13px 15px; font-size: 13px; transition: border-color .2s, box-shadow .2s; }
.form-group textarea { resize: vertical; min-height: 125px; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(77,163,255,.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.form-group input.is-invalid, .form-group textarea.is-invalid { border-color: #ef6a77; }
.field-hint { position: absolute; right: 3px; bottom: -18px; color: var(--muted); font-size: 9px; }
.priority-field { display: flex; align-items: center; gap: 6px; border: 0; margin: 26px 0; }
.priority-field legend { float: left; margin: 8px 14px 0 0; }
.priority-field input { position: absolute; opacity: 0; }
.priority-field span { display: block; border: 1px solid var(--line); padding: 7px 14px; border-radius: 99px; color: var(--text-soft); font-size: 10px; cursor: pointer; }
.priority-field input:checked + span { color: var(--blue); background: var(--brand-soft); border-color: rgba(77,163,255,.45); }
.btn-next { min-width: 150px; float: right; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-back { border: 0; background: transparent; color: var(--text-soft); cursor: pointer; font-size: 11px; margin-bottom: 21px; }
.form-privacy { color: var(--muted); font-size: 10px; line-height: 1.6; max-width: 580px; margin-top: 8px; }
.privacy-link, .footer-privacy-link { appearance: none; border: 0; padding: 0; background: transparent; color: var(--blue); font: inherit; cursor: pointer; text-decoration: underline; text-decoration-color: rgba(77,163,255,.38); text-underline-offset: 3px; }
.privacy-link:hover, .footer-privacy-link:hover { color: var(--cyan); text-decoration-color: currentColor; }
.btn-submit { width: 100%; margin-top: 24px; justify-content: space-between; padding-inline: 20px; }
.btn-submit i { font-style: normal; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.alert { border-radius: 10px; padding: 13px 16px; margin-bottom: 20px; font-size: 12px; }
.alert-error { background: rgba(239,106,119,.1); border: 1px solid rgba(239,106,119,.25); color: #ef8d97; }
.ticket-success { min-height: 580px; display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center; }
.success-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: rgba(93,226,165,.1); border: 1px solid rgba(93,226,165,.3); color: #5de2a5; font-size: 23px; margin-bottom: 25px; }
.ticket-success > span { color: #5de2a5; font: 500 9px/1 var(--mono); letter-spacing: .13em; }
.ticket-success h3 { font-size: 31px; margin-top: 11px; }
.ticket-success p { color: var(--text-soft); margin-top: 4px; font-size: 13px; }
.ticket-success .btn { margin-top: 26px; }
.site-footer { background: #05080d; color: #f4f7fb; border-top: 1px solid rgba(158,184,218,.12); }
.site-footer .logo-solid { fill: #f4f7fb; }
.footer-top { min-height: 300px; display: grid; grid-template-columns: 1.5fr .7fr 1fr; gap: 55px; padding-top: 65px; padding-bottom: 55px; }
.logo-footer { width: max-content; transform: translateX(5px); }
.footer-brand > p { max-width: 300px; margin-top: 19px; color: #8190a3; font-size: 13px; }
.footer-socials { display: flex; gap: 9px; margin-top: 22px; }
.footer-socials a { width: 38px; height: 38px; display: grid; place-items: center; color: #8b9aad; background: rgba(158,184,218,.045); border: 1px solid rgba(158,184,218,.14); border-radius: 11px; transition: color .2s, border-color .2s, background .2s, transform .2s; }
.footer-socials a:hover { color: var(--cyan); border-color: rgba(100,194,219,.42); background: rgba(100,194,219,.08); transform: translateY(-2px); }
.footer-socials svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.footer-socials .social-icon-filled { fill: currentColor; stroke: none; }
.footer-top h4 { color: #718096; font: 500 9px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-nav { display: flex; flex-direction: column; align-items: flex-start; }
.footer-nav a, .footer-col p { color: #b4bdca; font-size: 12px; margin-bottom: 9px; }
.footer-nav a:hover, .footer-col a:hover { color: var(--cyan); }
.footer-address h4:nth-of-type(2) { margin-top: 25px; }
.footer-address { width: fit-content; justify-self: center; text-align: center; }
.footer-legal { color: #718096 !important; }
.footer-bottom { border-top: 1px solid rgba(158,184,218,.1); }
.footer-bottom .container { min-height: 62px; display: flex; align-items: center; justify-content: center; color: #68768a; font-size: 10px; text-align: center; }
.footer-privacy-link { color: inherit; }

body.privacy-open { overflow: hidden; }
.privacy-modal[hidden] { display: none; }
.privacy-modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 24px; opacity: 0; transition: opacity .22s ease; }
.privacy-modal.is-open { opacity: 1; }
.privacy-modal-backdrop { position: absolute; inset: 0; background: rgba(2,5,9,.78); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.privacy-dialog { position: relative; width: min(100%, 760px); max-height: min(82vh, 780px); overflow-y: auto; overscroll-behavior: contain; padding: 42px 46px 36px; color: var(--text); background: linear-gradient(145deg, rgba(18,28,42,.98), rgba(8,13,21,.99)); border: 1px solid var(--line-strong); border-radius: 22px; box-shadow: 0 35px 100px rgba(0,0,0,.55); outline: 0; transform: translateY(14px) scale(.985); transition: transform .22s ease; }
.privacy-modal.is-open .privacy-dialog { transform: none; }
.privacy-close { position: sticky; z-index: 2; top: 0; float: right; width: 36px; height: 36px; margin: -19px -23px 0 20px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); color: var(--text-soft); font-size: 23px; line-height: 1; cursor: pointer; }
.privacy-close:hover { color: var(--text); border-color: var(--line-strong); }
.privacy-kicker { color: var(--cyan); font: 500 9px/1 var(--mono); letter-spacing: .13em; }
.privacy-dialog > h2 { margin-top: 12px; font-size: 34px; letter-spacing: -.045em; }
.privacy-intro { margin-top: 5px; color: var(--text-soft); font-size: 13px; }
.privacy-content { display: grid; grid-template-columns: 1fr 1fr; gap: 0 34px; margin-top: 30px; }
.privacy-content section { padding: 18px 0; border-top: 1px solid var(--line); }
.privacy-content h3 { margin-bottom: 7px; font-size: 12px; }
.privacy-content p { color: var(--text-soft); font-size: 11px; line-height: 1.72; }
.privacy-content a { color: var(--blue); overflow-wrap: anywhere; }
.privacy-confirm { min-height: 42px; margin-top: 20px; }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-stagger .reveal:nth-child(2) { transition-delay: .06s; }.reveal-stagger .reveal:nth-child(3) { transition-delay: .12s; }.reveal-stagger .reveal:nth-child(4) { transition-delay: .18s; }.reveal-stagger .reveal:nth-child(5) { transition-delay: .24s; }.reveal-stagger .reveal:nth-child(6) { transition-delay: .3s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(18px); } }
@keyframes formIn { from { opacity: 0; transform: translateX(12px); } }
@keyframes slowSpin { to { transform: rotate(360deg); } }
@keyframes scrollLine { 0% { transform: translateX(0); } 60%,100% { transform: translateX(56px); } }

@media (max-width: 1050px) {
  .section { padding: 110px 0; }
  .hero { min-height: 780px; }
  .hero-inner { grid-template-columns: 1fr 1fr; }
  .hero-visual { height: 560px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { gap: 7%; }
  .about-panel { padding: 55px; }
  .ticket-shell { grid-template-columns: 280px 1fr; }
  .ticket-form-wrap { padding: 40px 36px; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1.3fr .7fr 1fr; }
}

@media (max-width: 780px) {
  .container { width: min(100% - 32px, var(--container)); }
  .header-inner { height: 68px; }
  .main-nav { display: none; position: absolute; left: 16px; right: 16px; top: 62px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 10px; box-shadow: var(--shadow); }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; }
  .nav-toggle { display: block; margin-left: auto; order: 2; }
  .header-actions { order: 1; margin-left: auto; }
  .header-cta { display: none; }
  .main-nav { order: 3; }
  .hero { height: auto; min-height: 920px; padding: 125px 0 80px; align-items: start; }
  .hero .hero-inner { grid-template-columns: 1fr; gap: 15px; width: min(calc(100% - 32px), 1180px); }
  .hero-content { padding-left: 0; }
  .hero h1 { font-size: clamp(46px, 12vw, 70px); }
  .hero-visual { height: 430px; margin: -20px -10px 0; }
  .hero-proof { flex-wrap: wrap; }
  .section-heading { grid-template-columns: 1fr; align-items: start; }
  .section-heading > p { max-width: 580px; }
  .approach-grid { grid-template-columns: 1fr; gap: 60px; }
  .approach-copy { position: static; }
  .about-panel { grid-template-columns: 1fr; padding: 42px 32px; }
  .about-orbit { opacity: .35; right: -220px; }
  .about-metrics { grid-template-columns: 1fr; gap: 21px; }
  .about-metrics > div { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 21px; }
  .about-metrics > div:last-child { border: 0; }
  .ticket-shell { grid-template-columns: 1fr; }
  .ticket-sidebar { padding: 24px; border-right: 0; border-bottom: 1px solid var(--line); }
  .ticket-steps { display: grid; grid-template-columns: repeat(3, 1fr); }
  .ticket-steps::before { width: 66%; height: 1px; left: 17%; top: 17px; }
  .ticket-step { flex-direction: column; text-align: center; gap: 8px; margin: 0; }
  .ticket-step small { display: none; }
  .ticket-step-final { display: flex; }
  .ticket-promise { display: none; }
  .ticket-form-wrap { padding: 36px 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .section { padding: 85px 0; }
  .logo svg { width: 138px; }
  .hero { min-height: 850px; }
  .eyebrow { font-size: 9px; }
  .hero h1 { font-size: 44px; }
  .hero-lead { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-proof { line-height: 1.5; }
  .hero-visual { height: 360px; margin-top: -10px; }
  .section-heading h2, .approach-copy h2, .about-copy h2, .contact-heading h2 { font-size: 39px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 310px; }
  .process-item { grid-template-columns: 36px 1fr; }
  .process-item i { display: none; }
  .about-panel { padding: 37px 23px; border-radius: 19px; }
  .about-copy p { font-size: 14px; }
  .ticket-form-wrap { padding: 30px 20px; }
  .ticket-step strong { font-size: 10px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .priority-field { flex-wrap: wrap; }
  .priority-field legend { width: 100%; margin-bottom: 3px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-nav { display: none; }
  .logo-footer { display: flex; margin-inline: auto; }
  .footer-brand > p { margin-inline: auto; text-align: center; }
  .footer-socials { justify-content: center; }
  .footer-bottom .container { align-items: flex-start; flex-direction: column; justify-content: center; gap: 5px; }
  .privacy-modal { padding: 12px; }
  .privacy-dialog { max-height: 88vh; padding: 34px 24px 27px; border-radius: 18px; }
  .privacy-close { margin: -17px -10px 0 15px; }
  .privacy-dialog > h2 { font-size: 29px; }
  .privacy-content { grid-template-columns: 1fr; gap: 0; margin-top: 24px; }
  .privacy-confirm { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
