:root {
--bg: #05070d;
--bg-alt: #0b0f1a;
--surface: #10141f;
--surface-2: #151a28;
--border: rgba(255,255,255,0.08);
--text: #f5f6fa;
--text-dim: #a3aab8;
--text-dimmer: #6b7280;
--accent: #6d5cff;
--accent-2: #22d3ee;
--accent-gradient: linear-gradient(135deg, #6d5cff 0%, #8b5cf6 45%, #22d3ee 100%);
--radius: 16px;
--maxw: 1160px;
--shadow: 0 20px 60px rgba(0,0,0,0.45);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
margin: 0;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.55;
-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select {
font-family: inherit;
background: var(--surface-2);
border: 1px solid var(--border);
color: var(--text);
border-radius: 10px;
padding: 13px 16px;
font-size: 15px;
outline: none;
transition: border-color .2s, box-shadow .2s;
width: 100%;
}
input::placeholder, textarea::placeholder { color: var(--text-dimmer); }
input:focus, textarea:focus, select:focus {
border-color: var(--accent);
box-shadow: 0 0 0 3px rgba(109,92,255,0.25);
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; }

.section { padding: 100px 0; position: relative; }
.section-eyebrow {
text-transform: uppercase;
letter-spacing: .12em;
font-size: 13px;
font-weight: 700;
color: var(--accent-2);
margin: 0 0 14px;
}
.section h2 {
font-size: clamp(28px, 4vw, 42px);
font-weight: 800;
letter-spacing: -0.02em;
margin: 0 0 48px;
max-width: 680px;
}

.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 14px 26px;
border-radius: 999px;
font-weight: 700;
font-size: 15px;
border: none;
transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
white-space: nowrap;
}
.btn-primary {
background: var(--accent-gradient);
color: #fff;
box-shadow: 0 10px 30px rgba(109,92,255,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(109,92,255,0.5); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-block { width: 100%; }

.announcement {
background: var(--accent-gradient);
color: #fff;
text-align: center;
font-size: 13px;
font-weight: 600;
padding: 10px 16px;
}
.announcement a { text-decoration: underline; }

.header {
position: sticky;
top: 0;
z-index: 50;
background: rgba(5,7,13,0.75);
backdrop-filter: blur(14px);
border-bottom: 1px solid var(--border);
}
.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
height: 76px;
}
.logo { font-size: 21px; font-weight: 900; letter-spacing: -0.02em; }
.nav { display: flex; gap: 32px; }
.nav a { font-size: 14px; font-weight: 600; color: var(--text-dim); transition: color .15s; }
.nav a:hover { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.menu-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

.hero { position: relative; padding: 120px 0 100px; overflow: hidden; }
.hero-bg {
position: absolute; inset: -20% -10% auto -10%; height: 700px;
background: radial-gradient(60% 60% at 30% 20%, rgba(109,92,255,0.35), transparent 70%),
radial-gradient(50% 50% at 80% 10%, rgba(34,211,238,0.25), transparent 70%);
filter: blur(10px);
z-index: 0;
}
.hero-inner { position: relative; z-index: 1; text-align: center; }
.eyebrow {
display: inline-block;
background: rgba(109,92,255,0.15);
border: 1px solid rgba(109,92,255,0.35);
color: #c4bbff;
font-size: 13px;
font-weight: 700;
padding: 7px 16px;
border-radius: 999px;
margin-bottom: 24px;
}
.hero h1 {
font-size: clamp(36px, 6vw, 68px);
font-weight: 900;
letter-spacing: -0.03em;
line-height: 1.05;
margin: 0 0 24px;
max-width: 900px;
margin-left: auto;
margin-right: auto;
}
.hero-sub {
font-size: clamp(16px, 2vw, 19px);
color: var(--text-dim);
max-width: 620px;
margin: 0 auto 40px;
}
.hero-form {
display: flex;
gap: 12px;
max-width: 520px;
margin: 0 auto 16px;
}
.hero-form input { flex: 1; }
.hero-microcopy { font-size: 13px; color: var(--text-dimmer); margin: 0 0 40px; }
.hero-trust { font-size: 14px; color: var(--text-dim); font-weight: 600; }

.stats-section { padding: 20px 0 80px; }
.stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 40px 24px;
}
.stat { text-align: center; }
.stat-value {
font-size: clamp(26px, 3vw, 38px);
font-weight: 900;
background: var(--accent-gradient);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.stat-label { font-size: 13px; color: var(--text-dim); margin-top: 6px; }

.services-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
.service-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 32px;
transition: transform .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(109,92,255,0.4); }
.service-icon {
width: 46px; height: 46px;
border-radius: 12px;
background: var(--accent-gradient);
display: flex; align-items: center; justify-content: center;
margin-bottom: 20px;
}
.service-icon svg { width: 22px; height: 22px; stroke: #fff; }
.service-card h3 { font-size: 19px; font-weight: 700; margin: 0 0 10px; }
.service-card p { font-size: 15px; color: var(--text-dim); margin: 0; }

.process-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
}
.process-step { position: relative; padding: 28px 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.process-step .step-num {
font-size: 34px;
font-weight: 900;
color: transparent;
-webkit-text-stroke: 1.5px rgba(255,255,255,0.25);
margin-bottom: 14px;
}
.process-step h3 { font-size: 17px; font-weight: 700; margin: 0 0 8px; }
.process-step p { font-size: 14px; color: var(--text-dim); margin: 0; }

.testimonials-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.testimonial-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 30px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.testimonial-card p.quote { font-size: 15.5px; color: var(--text); margin: 0 0 24px; }
.testimonial-card .author { font-size: 14px; font-weight: 700; }
.testimonial-card .role { font-size: 13px; color: var(--text-dim); }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.faq-question {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
background: none;
border: none;
color: var(--text);
padding: 22px 24px;
font-size: 16px;
font-weight: 600;
text-align: left;
}
.faq-question .plus { font-size: 22px; color: var(--accent-2); transition: transform .2s; flex-shrink: 0; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-answer p { padding: 0 24px 22px; margin: 0; color: var(--text-dim); font-size: 15px; }

.contact-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 24px;
padding: 56px;
text-align: center;
}
.contact-card h2 { margin: 0 0 12px; }
.contact-card > p { color: var(--text-dim); margin: 0 0 36px; }
.lead-form { display: flex; flex-direction: column; gap: 14px; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: 12px; color: var(--text-dimmer); text-align: center; margin: 6px 0 0; }
.lead-success { text-align: center; padding: 20px 0; }
.lead-success h3 { font-size: 24px; margin: 0 0 10px; }
.contact-direct { margin-top: 28px; font-size: 14px; color: var(--text-dim); }

.footer { border-top: 1px solid var(--border); padding: 40px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-inner p { margin: 0; font-size: 13px; color: var(--text-dimmer); }
#footerLogo { font-weight: 800; color: var(--text); font-size: 16px; }

.sticky-cta {
position: fixed;
bottom: 18px;
left: 50%;
transform: translate(-50%, 140%);
z-index: 60;
background: var(--surface);
border: 1px solid var(--border);
box-shadow: var(--shadow);
border-radius: 999px;
padding: 10px 10px 10px 22px;
display: flex;
align-items: center;
gap: 16px;
transition: transform .3s ease;
}
.sticky-cta.visible { transform: translate(-50%, 0); }
.sticky-cta span { font-size: 14px; font-weight: 600; white-space: nowrap; }

.exit-modal {
position: fixed; inset: 0; background: rgba(2,3,8,0.75);
display: flex; align-items: center; justify-content: center;
z-index: 100; padding: 20px;
}
.exit-modal-inner {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 20px;
padding: 44px;
max-width: 440px;
width: 100%;
position: relative;
text-align: center;
box-shadow: var(--shadow);
}
.exit-modal-inner h3 { font-size: 24px; margin: 0 0 12px; }
.exit-modal-inner > p { color: var(--text-dim); margin: 0 0 24px; }
.exit-close {
position: absolute; top: 14px; right: 18px;
background: none; border: none; color: var(--text-dim);
font-size: 22px;
}
.exit-form { display: flex; flex-direction: column; gap: 12px; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
.stats-grid { grid-template-columns: repeat(2, 1fr); }
.services-grid { grid-template-columns: 1fr; }
.process-grid { grid-template-columns: repeat(2, 1fr); }
.testimonials-grid { grid-template-columns: 1fr; }
.form-row { grid-template-columns: 1fr; }
.contact-card { padding: 36px 24px; }
}

@media (max-width: 720px) {
.nav { display: none; }
.menu-toggle { display: flex; }
.hero-form { flex-direction: column; }
.footer-inner { flex-direction: column; gap: 10px; text-align: center; }
}
