:root {
  --bg: #07111f;
  --bg-soft: #0d1b2f;
  --text: #101828;
  --muted: #667085;
  --white: #ffffff;
  --accent: #3b82f6;
  --accent-dark: #1d4ed8;
  --accent-soft: #dbeafe;
  --border: #e4e7ec;
  --card: #ffffff;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: #f8fafc;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 96px 0; }
.section-sm { padding: 34px 0; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,.88); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(228,231,236,.8);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 74px; }
.logo { font-weight: 900; font-size: 24px; letter-spacing: -0.04em; }
.logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 28px; font-weight: 700; font-size: 14px; }
.nav-cta { background: var(--text); color: white; padding: 12px 18px; border-radius: 999px; }
.nav-toggle { display: none; background: none; border: 0; font-size: 28px; }
.hero {
  background: radial-gradient(circle at 80% 10%, rgba(59,130,246,.35), transparent 35%), linear-gradient(135deg, #07111f 0%, #10233f 100%);
  color: white;
  padding-top: 110px;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: .12em; font-size: 13px; font-weight: 900; margin: 0 0 16px; }
h1, h2, h3 { line-height: 1.05; letter-spacing: -0.04em; margin: 0; }
h1 { font-size: clamp(46px, 7vw, 76px); }
h2 { font-size: clamp(34px, 5vw, 52px); }
h3 { font-size: 24px; }
.hero-text { font-size: 21px; color: #d6e4ff; margin: 24px 0 34px; max-width: 650px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; justify-content: center; align-items: center; border-radius: 999px; padding: 16px 24px; font-weight: 900; border: 0; cursor: pointer; transition: .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: white; box-shadow: 0 14px 30px rgba(59,130,246,.35); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary { background: rgba(255,255,255,.12); color: white; border: 1px solid rgba(255,255,255,.2); }
.trust-row { margin-top: 42px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.trust-row div { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); padding: 18px; border-radius: 18px; }
.trust-row strong { display:block; font-size: 18px; }
.trust-row span { color: #b8c7e5; font-size: 13px; }
.hero-card { background: white; color: var(--text); border-radius: 32px; padding: 28px; box-shadow: var(--shadow); transform: rotate(1deg); }
.card-top { display:flex; align-items:center; gap:10px; font-weight:900; margin-bottom:20px; }
.pulse { width: 10px; height: 10px; background: #22c55e; border-radius: 50%; box-shadow: 0 0 0 8px rgba(34,197,94,.12); }
.metric { padding: 18px; border: 1px solid var(--border); border-radius: 18px; margin-bottom: 14px; }
.metric span { color: var(--muted); display:block; font-size:14px; }
.metric strong { display:block; margin-top:3px; }
.mini-form { background: #f1f5f9; padding: 18px; border-radius: 22px; margin-top: 18px; }
.mini-form p { font-weight: 900; margin: 0 0 12px; }
.mini-form input, .mini-form button { width: 100%; padding: 14px; border-radius: 12px; border: 1px solid var(--border); margin-bottom: 10px; }
.mini-form button { background: var(--accent); color:white; font-weight:900; border:0; }
.logos { background: white; border-bottom: 1px solid var(--border); }
.logos-inner { display:flex; gap: 28px; flex-wrap: wrap; align-items:center; color: var(--muted); }
.logos-inner strong { color: var(--text); }
.section-heading { max-width: 780px; margin-bottom: 42px; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.service-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { background: var(--card); border:1px solid var(--border); padding: 28px; border-radius: 28px; box-shadow: 0 10px 30px rgba(15,23,42,.05); }
.service-card.wide { grid-column: span 2; }
.icon { width: 54px; height:54px; display:flex; align-items:center; justify-content:center; background: var(--accent-soft); border-radius: 18px; font-size: 25px; margin-bottom: 20px; }
ul { padding-left: 20px; }
li { margin: 8px 0; }
.service-card p, .step p, .benefit-list p, .contact p { color: var(--muted); }
.dark { background: var(--bg); color: white; }
.dark .eyebrow { color: #93c5fd; }
.dark p { color: #c9d7ef; }
.split { display:grid; grid-template-columns: .9fr 1fr; gap: 70px; align-items:start; }
.benefit-list { display:grid; gap: 18px; }
.benefit-list div { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 24px; padding: 24px; }
.benefit-list span { color: #93c5fd; font-weight: 900; }
.benefit-list strong { display:block; font-size: 22px; margin: 6px 0; }
.steps { display:grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { background:white; border: 1px solid var(--border); padding: 26px; border-radius: 26px; }
.step span { width:42px; height:42px; background: var(--text); color:white; border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:900; margin-bottom: 18px; }
.testimonials { background:white; }
.testimonial-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
blockquote { margin:0; background:#f8fafc; border:1px solid var(--border); border-radius: 28px; padding: 28px; font-size:18px; font-weight:700; display:flex; flex-direction:column; }
.testimonial-author { display:flex; align-items:center; gap:14px; margin-top:auto; padding-top:22px; }
.testimonial-author img { width:56px; height:56px; border-radius:50%; object-fit:cover; object-position:center top; border:2px solid var(--border); flex-shrink:0; }
cite { display:flex; flex-direction:column; gap:2px; color: var(--muted); font-style:normal; font-size:14px; font-weight:600; }
cite strong { color: var(--text); font-size:15px; font-weight:800; }
.contact { background: linear-gradient(180deg, #f8fafc, #eaf1fb); }
.contact-grid { display:grid; grid-template-columns: .9fr 1fr; gap: 56px; align-items:start; }
.checklist { list-style: none; padding: 0; margin-top: 24px; }
.checklist li::before { content: '✓'; color: var(--accent); font-weight: 900; margin-right: 10px; }
.lead-form { background:white; padding: 30px; border-radius: 30px; box-shadow: var(--shadow); border:1px solid var(--border); }
.lead-form label { display:block; font-weight:800; margin-bottom: 14px; }
.lead-form input, .lead-form select { width:100%; padding: 15px 16px; margin-top: 7px; border-radius: 14px; border: 1px solid var(--border); font: inherit; }
.full { width: 100%; margin-top: 8px; }
.form-note { font-size: 12px; color: var(--muted); margin-bottom:0; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.footer { background: #020617; color:white; padding: 30px 0; }
.footer-inner { display:flex; justify-content:space-between; gap:20px; align-items:center; flex-wrap:wrap; }
.footer p { color:#94a3b8; }
.footer div:last-child { display:flex; gap:18px; color:#cbd5e1; }
.legal { padding-top: 70px; }
.legal-inner { max-width: 720px; }
.legal h1 { font-size: clamp(38px, 5vw, 56px); margin-bottom: 18px; }
.legal h2 { font-size: 20px; margin: 34px 0 6px; }
.legal p { color: var(--muted); margin: 0; }
.legal a { color: var(--accent); font-weight: 700; }
@media (max-width: 980px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .service-grid, .steps, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-card { transform:none; }
}
@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1120px); }
  .section { padding: 70px 0; }
  .nav-toggle { display:block; }
  .nav-links { display:none; position:absolute; top:74px; left:14px; right:14px; background:white; padding:20px; border:1px solid var(--border); border-radius:20px; flex-direction:column; align-items:flex-start; box-shadow: var(--shadow); }
  .nav-links.open { display:flex; }
  .nav-cta { color:white; }
  .trust-row, .service-grid, .steps, .testimonial-grid { grid-template-columns: 1fr; }
  .service-card.wide { grid-column: auto; }
  h1 { font-size: 44px; }
  .hero-text { font-size: 18px; }
}
