@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #071f4a;
  --navy-2: #0b2d67;
  --blue: #0b6cf2;
  --blue-2: #1f8cff;
  --pale: #eef6ff;
  --text: #142033;
  --muted: #5d6b7f;
  --line: #dfe7f2;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}
.narrow { width: min(850px, calc(100% - 40px)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(7,31,74,.08);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand img {
  width: 175px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}
nav a:hover { color: var(--blue); }
.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--navy);
  border-radius: 9px;
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 35%, rgba(31,140,255,.14), transparent 25%),
    linear-gradient(135deg, #fff 0%, #f5f9ff 58%, #e6f1ff 100%);
}
.hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: 68px;
  padding: 80px 0;
}
.eyebrow, .section-label {
  color: var(--blue);
  font-size: 12px;
  letter-spacing: .16em;
  font-weight: 800;
  margin-bottom: 18px;
}
h1 {
  margin: 0;
  max-width: 760px;
  color: var(--navy);
  font-size: clamp(46px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.hero-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: #46566e;
  font-size: 20px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .15s ease, box-shadow .15s ease;
}
.button:hover { transform: translateY(-1px); }
.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--navy-2), var(--blue));
  box-shadow: 0 10px 28px rgba(11,108,242,.18);
}
.secondary {
  border: 1px solid #b9c6d9;
  background: rgba(255,255,255,.72);
}
.language-note {
  margin-top: 22px;
  color: #778397;
  font-size: 13px;
}
.hero-panel {
  position: relative;
  min-height: 460px;
  padding: 38px;
  border-radius: 28px;
  background: linear-gradient(145deg, #061a3d, #092c68 62%, #0b5ed1);
  box-shadow: 0 28px 70px rgba(7,31,74,.22);
  color: #fff;
  overflow: hidden;
}
.hero-panel::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  right: -110px;
  top: -120px;
}
.panel-kicker {
  font-size: 11px;
  letter-spacing: .15em;
  font-weight: 800;
  color: #80c2ff;
  margin-bottom: 20px;
}
.metric-card {
  position: relative;
  z-index: 2;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.metric-label {
  display: block;
  margin-bottom: 6px;
  color: #8dc7ff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.metric-card strong {
  display: block;
  max-width: 360px;
  font-size: 18px;
  line-height: 1.45;
}
.mini-chart {
  position: absolute;
  right: 34px;
  bottom: 26px;
  left: 34px;
  height: 100px;
  display: flex;
  align-items: end;
  gap: 10px;
  opacity: .32;
}
.mini-chart span {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(#69bdff, #0b6cf2);
}

.section { padding: 100px 0; }
.intro { text-align: center; }
h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.12;
  letter-spacing: -.035em;
}
.intro p {
  margin: 25px auto 0;
  color: var(--muted);
  font-size: 18px;
  max-width: 760px;
}

.services {
  background: #f7faff;
  border-top: 1px solid #edf2f8;
  border-bottom: 1px solid #edf2f8;
}
.services > .container > h2 { max-width: 720px; }
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 46px;
}
.card {
  min-height: 310px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(18,55,103,.05);
}
.card-number {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}
.card h3 {
  margin: 42px 0 14px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.25;
}
.card p { margin: 0; color: var(--muted); font-size: 15px; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 78px;
  align-items: start;
}
.who p, .about-copy p {
  color: var(--muted);
  font-size: 17px;
}
.fit-box {
  border-radius: 20px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 50px rgba(7,31,74,.08);
}
.fit-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}
.fit-row:last-child { border-bottom: 0; }
.fit-row span { color: var(--muted); }
.fit-row strong { color: var(--navy); text-align: right; }

.about {
  background: linear-gradient(135deg, #071f4a, #0a2b65);
  color: #fff;
}
.about h2 { color: #fff; }
.about .section-label { color: #70bbff; }
.about-copy p { color: #cfdaea; }
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.pill-row span {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #e6effb;
  font-size: 13px;
}

.cta-section { padding: 90px 0; background: #f6faff; }
.cta-box {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 50px;
  align-items: center;
  padding: 48px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(130deg, #071f4a, #0a3c88);
  box-shadow: 0 24px 65px rgba(7,31,74,.16);
}
.cta-box h2 { color: #fff; font-size: 42px; }
.cta-box p { color: #d5e3f5; max-width: 700px; }
.light { color: #80c2ff; }
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.white { background: #fff; color: var(--navy); }
.text-link { color: #9bd0ff; font-weight: 700; }

footer {
  padding: 28px 0;
  border-top: 1px solid #e6edf6;
  color: #758195;
  font-size: 13px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 900px) {
  nav a:not(.nav-cta) { display: none; }
  .hero-grid, .split, .cta-box { grid-template-columns: 1fr; }
  .hero-grid { gap: 42px; min-height: auto; }
  .hero-panel { min-height: 430px; }
  .cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .nav { min-height: 68px; }
  .brand img { width: 140px; }
  .hero-grid { padding: 54px 0; }
  h1 { font-size: 44px; }
  .hero-lead { font-size: 17px; }
  .hero-panel { padding: 28px; min-height: 420px; }
  .section { padding: 72px 0; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .fit-row { flex-direction: column; gap: 5px; }
  .fit-row strong { text-align: left; }
  .cta-box { padding: 32px 24px; }
  .cta-box h2 { font-size: 34px; }
  .footer-inner { flex-direction: column; }
}
