:root {
  --bg: #f5f8ff;
  --text: #0b1220;
  --muted: #5c6b82;
  --line: #d8e2f3;
  --navy: #071226;
  --navy2: #0d1b35;
  --blue: #2563eb;
  --blue2: #0ea5e9;
  --cyan: #22d3ee;
  --green: #10b981;
  --soft: #eff6ff;
  --card: #ffffff;
  --shadow: 0 24px 80px rgba(15, 35, 75, 0.16);
  --shadow-soft: 0 14px 40px rgba(15, 35, 75, 0.10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1140px, calc(100% - 36px)); margin: 0 auto; }
.narrow { max-width: 920px; }
.hidden { display: none; }
.top-strip {
  background: linear-gradient(90deg, #0f172a, #1e3a8a);
  color: #dbeafe;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 8px 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(216, 226, 243, .9);
  backdrop-filter: blur(18px);
}
.nav-wrap { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; font-size: 21px; letter-spacing: -0.04em; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px; font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  box-shadow: 0 10px 26px rgba(37, 99, 235, .35);
}
nav { display: flex; align-items: center; gap: 22px; font-size: 14px; color: var(--muted); font-weight: 700; }
nav a:hover { color: var(--text); }
.nav-cta { color: #fff; background: var(--navy); padding: 10px 14px; border-radius: 999px; }
.nav-cta:hover { color: #fff; background: #14294e; }
.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 86px;
  background:
    radial-gradient(circle at 85% 12%, rgba(34, 211, 238, .22), transparent 30%),
    radial-gradient(circle at 10% 30%, rgba(37, 99, 235, .18), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
}
.hero-glow { position: absolute; border-radius: 999px; filter: blur(28px); opacity: .65; pointer-events: none; }
.hero-glow.one { width: 260px; height: 260px; background: #93c5fd; right: -80px; top: 60px; }
.hero-glow.two { width: 220px; height: 220px; background: #bae6fd; left: -80px; bottom: 30px; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 42px; align-items: center; }
.eyebrow { text-transform: uppercase; color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: 0.14em; margin: 0 0 14px; }
.eyebrow.invert { color: #93c5fd; }
h1 { font-size: clamp(38px, 5.2vw, 62px); line-height: 1.02; margin: 0 0 20px; letter-spacing: -0.05em; max-width: 780px; }
.h1-sub { display: block; font-size: clamp(13px, 1.2vw, 15px); font-weight: 500; letter-spacing: 0.01em; color: var(--muted); margin-top: 14px; line-height: 1.5; opacity: 0.82; }
h2 { font-size: clamp(30px, 4.5vw, 50px); line-height: 1.02; margin: 0 0 18px; letter-spacing: -0.055em; }
h3 { margin: 0 0 8px; font-size: 19px; letter-spacing: -0.02em; }
.hero-subtitle { font-size: 18px; color: var(--muted); max-width: 680px; margin: 0 0 28px; line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px; padding: 15px 22px; font-weight: 900;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: linear-gradient(135deg, var(--blue), var(--blue2)); color: #fff; box-shadow: 0 14px 30px rgba(37,99,235,.24); }
.btn.primary:hover { box-shadow: 0 18px 36px rgba(37,99,235,.32); }
.btn.primary.bright { background: linear-gradient(135deg, #38bdf8, #2563eb); }
.btn.secondary { background: rgba(255,255,255,.82); border-color: var(--line); color: var(--text); box-shadow: var(--shadow-soft); }
.btn.full { width: 100%; background: var(--navy); color: #fff; margin-top: 20px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 14px; }
.trust-row span { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; font-size: 13px; color: #334155; font-weight: 800; }
.mini-disclaimer { color: var(--muted); font-size: 13px; max-width: 760px; }
.hero-card {
  position: relative;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(216,226,243,.95);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.hero-card:before {
  content: ""; position: absolute; inset: 0; border-radius: 28px; padding: 1px;
  background: linear-gradient(135deg, rgba(37,99,235,.45), rgba(34,211,238,.28), transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.card-badge { display: inline-flex; background: #dbeafe; color: #1e3a8a; border: 1px solid #bfdbfe; border-radius: 999px; padding: 7px 11px; font-weight: 900; font-size: 12px; margin-bottom: 15px; }
.hero-card h2 { font-size: 32px; }
.hero-card p { color: var(--muted); margin-top: 0; }
.check-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.check-list li { position: relative; padding-left: 28px; font-weight: 800; color: #26354d; }
.check-list li:before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 900; }
.stats-band { background: var(--navy); color: #fff; padding: 24px 0; }
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.stat-grid div { border: 1px solid rgba(255,255,255,.12); border-radius: 18px; padding: 18px; background: rgba(255,255,255,.04); }
.stat-grid strong { display: block; font-size: 22px; letter-spacing: -0.03em; }
.stat-grid span { color: #b6c6de; font-size: 13px; font-weight: 700; }
.section { padding: 82px 0; }
.section.light { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { display: flex; justify-content: space-between; gap: 30px; align-items: end; }
.section-head p { max-width: 420px; color: var(--muted); margin: 0 0 20px; font-weight: 600; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 32px; }
.step { background: linear-gradient(180deg, #fff, #f8fbff); border: 1px solid var(--line); border-radius: 22px; padding: 24px; box-shadow: var(--shadow-soft); }
.step span { display: inline-flex; width: 38px; height: 38px; border-radius: 13px; background: linear-gradient(135deg, var(--blue), var(--blue2)); color: #fff; align-items: center; justify-content: center; font-weight: 900; margin-bottom: 18px; }
.step p { color: var(--muted); margin: 0; }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.case-grid div { padding: 21px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-soft); }
.case-grid strong { display: block; font-size: 18px; margin-bottom: 6px; }
.case-grid span { color: var(--muted); font-size: 14px; }
.proof-section { background: linear-gradient(180deg, #eff6ff, #ffffff); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.proof-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 24px; box-shadow: var(--shadow-soft); }
.proof-card p { color: var(--muted); margin-bottom: 0; }
.reviews-note { margin-top: 18px; background: #fff7ed; border: 1px solid #fed7aa; color: #7c2d12; padding: 16px; border-radius: 18px; font-size: 14px; font-weight: 650; }
.dark-callout { background: radial-gradient(circle at 80% 20%, rgba(37,99,235,.38), transparent 30%), linear-gradient(135deg, #071226, #0d1b35); color: #fff; }
.dark-callout p { color: #c7d7ef; max-width: 760px; }
.split { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.form-section { background: linear-gradient(180deg, #ffffff, #eff6ff); }
.form-intro { color: var(--muted); margin-bottom: 30px; font-weight: 600; }
.intake-form { background: rgba(255,255,255,.94); border: 1px solid var(--line); border-radius: 28px; padding: 30px; box-shadow: var(--shadow); }
fieldset { border: 1px solid var(--line); border-radius: 22px; padding: 24px; margin: 0 0 24px; background: #fff; }
legend { padding: 0 10px; font-size: 18px; font-weight: 900; letter-spacing: -0.02em; }
label { display: block; font-weight: 800; margin-bottom: 15px; color: #1c2b43; }
input, select, textarea { width: 100%; margin-top: 7px; padding: 14px 14px; border-radius: 12px; border: 1px solid #c8d5e8; font-size: 15px; font-family: inherit; color: var(--text); background: #fbfdff; transition: border-color .15s ease, box-shadow .15s ease, background .15s ease; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(37,99,235,.13); background: #fff; }
textarea { resize: vertical; }
.two-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 16px; margin-bottom: 16px; }
.checkbox-grid label, .consent-box label { display: flex; align-items: flex-start; gap: 10px; font-weight: 600; color: var(--text); margin: 0; }
.checkbox-grid input, .consent-box input { width: auto; margin-top: 4px; accent-color: var(--blue); }
.label-title { font-weight: 900; margin: 8px 0 12px; color: #1c2b43; }
.help-text { margin: -6px 0 0; font-size: 13px; color: var(--muted); }
.consent-box { background: #f8fbff; border: 1px solid var(--line); border-radius: 20px; padding: 18px; margin-bottom: 22px; font-size: 14px; }
.submit-btn { width: 100%; font-size: 17px; padding: 17px 24px; }
.center { text-align: center; margin: 16px auto 0; }
.faq-section { background: #fff; }
details { border: 1px solid var(--line); border-radius: 18px; padding: 18px 20px; margin: 12px 0; background: #fff; box-shadow: var(--shadow-soft); }
summary { cursor: pointer; font-weight: 900; font-size: 17px; }
details p { color: var(--muted); margin-bottom: 0; }
.site-footer { background: var(--navy); color: #d1d9e6; padding: 38px 0; font-size: 13px; }
.site-footer p { max-width: 1000px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; margin: 18px 0; }
.footer-links a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.copyright { color: #91a1ba; }
.page { padding: 82px 0; background: linear-gradient(180deg, #ffffff, #eff6ff); }
.page-card { background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 36px; box-shadow: var(--shadow); }
.page-card h1 { font-size: clamp(36px, 5vw, 56px); }
.page-card h2 { font-size: 26px; margin-top: 28px; }
.page-card p, .page-card li { color: var(--muted); }
/* ──────────────── MODERN UPGRADES ──────────────── */

.gradient-text {
  display: block;
  background: linear-gradient(125deg, #0f172a 0%, #1d4ed8 52%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.h1-sub { -webkit-text-fill-color: var(--muted); }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; }
.eyebrow::before { content: ''; display: inline-block; width: 16px; height: 2px; background: currentColor; border-radius: 2px; flex-shrink: 0; }
.eyebrow.invert::before { background: #93c5fd; }

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 14px 30px rgba(37,99,235,.24); }
  50% { box-shadow: 0 18px 48px rgba(37,99,235,.44), 0 0 0 7px rgba(37,99,235,.11); }
}
.hero-actions .btn.primary { animation: glow-pulse 2.8s ease-in-out infinite; }

.step, .case-grid div, .proof-card { transition: transform .25s ease, box-shadow .25s ease; }
.step:hover, .case-grid div:hover, .proof-card:hover { transform: translateY(-5px); box-shadow: 0 28px 60px rgba(37,99,235,.15); }
.hero-card { transition: transform .25s ease, box-shadow .25s ease; }
.hero-card:hover { transform: translateY(-4px); box-shadow: 0 32px 80px rgba(15,35,75,.22); }

.proof-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #fff; font-size: 13px; font-weight: 900;
  margin-bottom: 18px; letter-spacing: -0.02em;
}
.proof-card.accent-blue { border-top: 3px solid var(--blue); }
.proof-card.accent-green { border-top: 3px solid var(--green); }
.proof-card.accent-green .proof-icon { background: linear-gradient(135deg, #059669, var(--green)); }
.proof-card.accent-cyan { border-top: 3px solid var(--cyan); }
.proof-card.accent-cyan .proof-icon { background: linear-gradient(135deg, var(--blue2), var(--cyan)); }

.step span { box-shadow: 0 8px 22px rgba(37,99,235,.38); }

.case-grid div:hover strong { color: var(--blue); transition: color .2s ease; }
.case-grid strong { transition: color .2s ease; }

details { transition: box-shadow .2s ease; }
details:hover { box-shadow: 0 8px 28px rgba(37,99,235,.1); }

.btn.primary { letter-spacing: -0.01em; }
.btn.full:hover { background: #14294e; }

.top-strip {
  background: linear-gradient(90deg, #0f172a 0%, #1e3a8a 40%, #1d4ed8 70%, #0f172a 100%);
  background-size: 200% auto;
}
@keyframes strip-slide {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.top-strip { animation: strip-slide 8s linear infinite; }

.hero {
  background:
    radial-gradient(circle at 85% 12%, rgba(34, 211, 238, .28), transparent 30%),
    radial-gradient(circle at 10% 30%, rgba(37, 99, 235, .22), transparent 32%),
    radial-gradient(circle at 50% 80%, rgba(14, 165, 233, .14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
}

.hero-glow.one { width: 340px; height: 340px; opacity: .55; }
.hero-glow.two { width: 290px; height: 290px; opacity: .5; }

.stat-grid div { background: rgba(255,255,255,.07); transition: background .2s ease; }
.stat-grid div:hover { background: rgba(255,255,255,.12); }
.stat-grid strong { background: linear-gradient(135deg, #fff 0%, #93c5fd 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; font-size: 26px; }

.nav-cta { background: linear-gradient(135deg, var(--navy), #1d3a6e); box-shadow: 0 6px 18px rgba(7,18,38,.28); }
.nav-cta:hover { background: linear-gradient(135deg, #14294e, #1e3a8a); box-shadow: 0 8px 24px rgba(7,18,38,.36); }

/* ──────────────────────────────────────────────── */

@media (max-width: 900px) {
  nav { display: none; }
  .hero-grid, .steps, .case-grid, .two-col, .three-col, .stat-grid, .proof-grid { grid-template-columns: 1fr; }
  .section-head, .split { flex-direction: column; align-items: flex-start; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .hero { padding: 62px 0; }
  .intake-form { padding: 18px; }
  fieldset { padding: 18px; }
  h1 { font-size: 43px; }
  .hero-subtitle { font-size: 18px; }
}
