@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --navy: #062747;
  --blue: #0b58c9;
  --blue-dark: #0849a8;
  --text: #122033;
  --muted: #647084;
  --line: #dfe6ee;
  --soft: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(6, 39, 71, .12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 96px 0; }
.section-soft { background: var(--soft); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(223,230,238,.9);
  backdrop-filter: blur(12px);
}
.nav-wrap { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand img { width: 270px; height: auto; }
.nav { display: flex; align-items: center; gap: 28px; font-weight: 600; }
.nav > a:not(.button):hover { color: var(--blue); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { background: var(--blue-dark); transform: translateY(-1px); }
.button-small { min-height: 42px; padding: 0 18px; border-radius: 10px; }
.button-light { background: var(--white); color: var(--navy); }
.button-light:hover { background: #eef4fb; }
.text-link { font-weight: 700; color: var(--navy); }
.text-link:hover { color: var(--blue); }

.hero { padding-top: 110px; padding-bottom: 110px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 72px; align-items: center; }
.hero-copy h1, .section-heading h2, .split-grid h2, .cta-box h2 {
  margin: 0;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.hero-copy h1 { font-size: clamp(46px, 6vw, 76px); max-width: 850px; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.lead { margin: 28px 0 0; font-size: 20px; color: var(--muted); max-width: 760px; }
.lead.compact { max-width: 600px; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; flex-wrap: wrap; }

.hero-card {
  position: relative;
  padding: 42px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  border: 46px solid rgba(11,88,201,.85);
}
.hero-card > * { position: relative; z-index: 1; }
.card-kicker { margin: 0 0 10px; color: #a9c8f6; font-weight: 700; }
.hero-card h2 { margin: 0; font-size: 34px; line-height: 1.15; }
.hero-card > p:not(.card-kicker) { color: #d7e2ef; margin: 20px 0 0; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
.metric-row div { border-top: 1px solid rgba(255,255,255,.22); padding-top: 16px; }
.metric-row strong, .metric-row span { display: block; }
.metric-row strong { font-size: 16px; }
.metric-row span { font-size: 12px; color: #b8c6d7; margin-top: 4px; }

.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading h2, .split-grid h2, .cta-box h2 { font-size: clamp(36px, 4vw, 54px); }
.section-heading > p:last-child { margin: 20px 0 0; color: var(--muted); font-size: 18px; }
.cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  min-height: 250px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.service-number { color: var(--blue); font-size: 13px; font-weight: 800; letter-spacing: .12em; }
.service-card h3 { margin: 42px 0 10px; color: var(--navy); font-size: 24px; }
.service-card p { margin: 0; color: var(--muted); }

.split-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.benefits { display: grid; gap: 4px; }
.benefit { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.benefit:first-child { padding-top: 0; }
.benefit span { color: var(--blue); font-size: 13px; font-weight: 800; padding-top: 5px; }
.benefit h3 { margin: 0; color: var(--navy); font-size: 22px; }
.benefit p { margin: 7px 0 0; color: var(--muted); }

.cta-section { padding-top: 32px; }
.cta-box {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 56px;
  align-items: center;
  background: linear-gradient(135deg, var(--navy), #0a3b71);
  color: var(--white);
  border-radius: 28px;
  padding: 52px;
}
.cta-box h2 { color: var(--white); }
.cta-box > div:first-child > p:last-child { color: #d7e2ef; margin: 20px 0 0; }
.contact-actions { display: flex; align-items: flex-start; flex-direction: column; gap: 10px; }
.contact-note { margin: 0; color: #a9b9cc; font-size: 12px; }

.site-footer { padding: 36px 0; border-top: 1px solid var(--line); margin-top: 80px; }
.footer-wrap { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer-wrap strong { color: var(--navy); }
.footer-wrap p { margin: 4px 0 0; color: var(--muted); font-size: 14px; }
.footer-links { display: flex; gap: 24px; font-weight: 600; }
.footer-links a:hover { color: var(--blue); }

.legal-page { background: var(--soft); min-height: 100vh; }
.legal-main { padding: 70px 0 100px; }
.legal-card { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 44px; max-width: 900px; }
.legal-card h1 { color: var(--navy); font-size: 44px; letter-spacing: -.03em; margin: 0 0 20px; }
.legal-card h2 { color: var(--navy); margin-top: 34px; }
.legal-card p, .legal-card li { color: var(--muted); }
.legal-note { border-left: 4px solid var(--blue); padding-left: 18px; }
.back-link { display: inline-block; margin-top: 30px; color: var(--blue); font-weight: 700; }

@media (max-width: 920px) {
  .nav { display: none; }
  .brand img { width: 225px; }
  .hero-grid, .split-grid, .cta-box { grid-template-columns: 1fr; gap: 42px; }
  .hero { padding-top: 76px; }
  .cards-grid { grid-template-columns: 1fr; }
  .metric-row { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 70px 0; }
  .hero { padding-top: 62px; padding-bottom: 76px; }
  .hero-copy h1 { font-size: 44px; }
  .lead { font-size: 18px; }
  .hero-card, .cta-box, .legal-card { padding: 28px; border-radius: 18px; }
  .footer-wrap { align-items: flex-start; flex-direction: column; }
}
