:root {
  --blue-950: #071c48;
  --blue-900: #0b2d67;
  --blue-800: #12418c;
  --blue-700: #1657b8;
  --blue-600: #1d6de0;
  --blue-100: #eaf2ff;
  --ink: #13203a;
  --muted: #647089;
  --line: #dfe6f1;
  --white: #ffffff;
  --soft: #f6f9fe;
  --shadow: 0 24px 60px rgba(7, 28, 72, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 10;
  padding: 22px 0;
  background: var(--blue-950);
  color: var(--white);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.brand-mark {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 13px;
  background: var(--white);
  color: var(--blue-800);
  font-weight: 800;
}
.brand-text { font-size: 0.98rem; }
.nav { display: flex; gap: 30px; font-size: 0.95rem; }
.nav a { opacity: 0.86; }
.nav a:hover { opacity: 1; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
  color: var(--white);
  padding: 145px 0 90px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -28% 42%;
  height: 420px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  transform: rotate(-8deg);
}
.hero-glow { position: absolute; border-radius: 999px; filter: blur(2px); opacity: 0.42; }
.hero-glow-one { width: 420px; height: 420px; right: -120px; top: -80px; background: #69a6ff; }
.hero-glow-two { width: 280px; height: 280px; left: -100px; bottom: -40px; background: #2f77e7; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 72px; align-items: center; }
.eyebrow { margin: 0 0 12px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.eyebrow.blue { color: var(--blue-700); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(3rem, 6vw, 5.6rem); line-height: 0.98; letter-spacing: -0.055em; max-width: 760px; margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.08; letter-spacing: -0.04em; margin-bottom: 18px; }
h3 { font-size: 1.15rem; margin-bottom: 10px; }
.hero-text { max-width: 640px; font-size: 1.18rem; color: rgba(255,255,255,0.82); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 18px; font-size: .9rem; }
.button-light { background: var(--white); color: var(--blue-900); box-shadow: 0 12px 30px rgba(0,0,0,0.15); }
.button-outline { border-color: rgba(255,255,255,0.4); color: var(--white); background: rgba(255,255,255,0.05); }
.button-primary { background: var(--blue-700); color: var(--white); }
.live-info {
  margin-left: 16px;
  font-size: .9rem;
  color: var(--white);
  opacity: 0.9;
  align-self: center;
}
.button-full { width: 100%; }
.trust-row { display: flex; flex-wrap: wrap; gap: 24px; color: rgba(255,255,255,0.78); font-size: .9rem; }
.trust-row span::before { content: "✓"; margin-right: 8px; color: #a9ccff; font-weight: 800; }

.quote-card {
  background: rgba(255,255,255,0.97);
  color: var(--ink);
  padding: 34px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.card-kicker { color: var(--blue-700); font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 6px; }
.quote-card h2 { font-size: 2rem; }
.quote-card > p { color: var(--muted); }
form { display: grid; gap: 16px; margin-top: 24px; }
label { display: grid; gap: 7px; font-size: .9rem; font-weight: 600; }
input, select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 14px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}
input:focus, select:focus { border-color: var(--blue-600); box-shadow: 0 0 0 4px rgba(29,109,224,.12); }
.form-note { margin: 0; font-size: .78rem; color: var(--muted); text-align: center; }

.section { padding: 104px 0; }
.section-soft { background: var(--soft); }
.section-heading { max-width: 690px; margin-bottom: 44px; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.08rem; }
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: 0 10px 30px rgba(7,28,72,.05); }
.service-card p { color: var(--muted); margin-bottom: 0; }
.icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: var(--blue-100); color: var(--blue-700); font-weight: 800; margin-bottom: 24px; }
.split-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.about-copy { color: var(--muted); font-size: 1.08rem; }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; color: var(--ink); font-weight: 600; }
.check-list li::before { content: "✓"; display: inline-grid; place-items: center; width: 26px; height: 26px; margin-right: 10px; border-radius: 50%; background: var(--blue-100); color: var(--blue-700); }

.cta-section { padding: 88px 0; background: var(--white); }
.cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 54px 58px; border-radius: 28px; background: linear-gradient(135deg, var(--blue-950), var(--blue-700)); color: var(--white); box-shadow: var(--shadow); }
.cta-panel h2 { margin-bottom: 10px; }
.cta-panel p:last-child { margin-bottom: 0; color: rgba(255,255,255,.8); }
.site-footer { padding: 34px 0; border-top: 1px solid var(--line); }
.footer-wrap { display: flex; justify-content: space-between; gap: 30px; color: var(--muted); font-size: .88rem; }
.footer-wrap strong { color: var(--ink); }
.footer-wrap p { margin-bottom: 0; }

@media (max-width: 900px) {
  .nav, .site-header .button-small { display: none; }
  .hero-grid, .split-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 46px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-panel { align-items: flex-start; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 24px, 1120px); }
  .brand-text { font-size: .86rem; }
  .hero { padding-top: 120px; }
  h1 { font-size: 3.25rem; }
  .quote-card { padding: 24px; border-radius: 22px; }
  .cards-grid { grid-template-columns: 1fr; }
  .section { padding: 76px 0; }
  .cta-panel { flex-direction: column; padding: 36px 26px; }
  .footer-wrap { flex-direction: column; }
}
