:root {
  --navy: #082f5f;
  --blue: #0673d8;
  --light: #f4f8fd;
  --text: #1b2a3a;
  --muted: #65758b;
  --white: #ffffff;
  --line: #dbe7f3;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, 92%); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; color: var(--navy); }
.brand img { width: 52px; height: 52px; object-fit: contain; }
.nav { display: flex; gap: 20px; font-size: 14px; font-weight: 700; color: var(--navy); }
.nav a:hover { color: var(--blue); }
.hero {
  padding: 86px 0;
  background:
    radial-gradient(circle at top right, rgba(6,115,216,.18), transparent 38%),
    linear-gradient(135deg, #f7fbff 0%, #eef6ff 48%, #ffffff 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 50px; }
.eyebrow { color: var(--blue); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: 13px; margin: 0 0 12px; }
h1, h2, h3 { margin: 0 0 16px; color: var(--navy); line-height: 1.12; }
h1 { font-size: clamp(42px, 6vw, 68px); letter-spacing: -2px; }
h2 { font-size: clamp(30px, 4vw, 44px); letter-spacing: -1px; }
h3 { font-size: 22px; }
.lead { font-size: 19px; color: var(--muted); max-width: 620px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.btn { padding: 13px 22px; border-radius: 999px; font-weight: 800; border: 1px solid var(--blue); }
.btn.primary { background: var(--blue); color: var(--white); }
.btn.secondary { background: var(--white); color: var(--navy); }
.hero-card {
  min-height: 430px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(8,47,95,.15);
  position: relative;
  overflow: hidden;
}
.hero-card:before {
  content: "";
  position: absolute;
  inset: -60px -40px auto auto;
  width: 210px;
  height: 210px;
  background: rgba(6,115,216,.12);
  border-radius: 50%;
}
.hero-card img { width: 100%; max-width: 320px; display: block; margin: 10px auto 28px; position: relative; z-index: 1; }
.route-line { height: 8px; background: linear-gradient(90deg, var(--navy), var(--blue), transparent); border-radius: 999px; margin: 28px 0; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.stats div { background: var(--light); border: 1px solid var(--line); border-radius: 18px; padding: 18px; text-align: center; }
.stats strong { display: block; color: var(--navy); font-size: 24px; }
.stats span { color: var(--muted); font-size: 13px; }
.section { padding: 88px 0; }
.soft-bg { background: var(--light); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.reverse { grid-template-columns: .9fr 1.1fr; }
.image-panel {
  min-height: 330px;
  border-radius: 28px;
  padding: 38px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 22px 60px rgba(8,47,95,.18);
  overflow: hidden;
  position: relative;
}
.image-panel h3, .image-panel p { color: var(--white); position: relative; z-index: 1; }
.panel-icon { font-size: 96px; opacity: .18; position: absolute; right: 28px; top: 12px; }
.line-art { position: absolute; inset: auto -20px 40px 40px; height: 130px; border-top: 8px solid rgba(255,255,255,.28); border-radius: 50%; transform: rotate(-8deg); }
.center { text-align: center; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 36px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: 22px; padding: 28px; box-shadow: 0 14px 35px rgba(8,47,95,.07); }
.icon { font-size: 32px; margin-bottom: 18px; }
.card p, .split p, .contact-section p, details p { color: var(--muted); }
.check-list { list-style: none; padding: 0; margin: 26px 0 0; }
.check-list li { margin: 13px 0; padding-left: 34px; position: relative; font-weight: 700; }
.check-list li:before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 900; }
.narrow { max-width: 850px; }
details { background: var(--white); border: 1px solid var(--line); border-radius: 18px; margin: 14px 0; padding: 18px 22px; }
summary { cursor: pointer; font-weight: 800; color: var(--navy); }
.contact-section { background: linear-gradient(135deg, var(--navy), #0a4f93); color: var(--white); }
.contact-section h2, .contact-section .eyebrow { color: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 44px; align-items: start; }
.contact-card { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); border-radius: 24px; padding: 30px; }
.contact-card p { color: var(--white); }
.contact-card a { color: var(--white); text-decoration: underline; }
.footer { padding: 28px 0; background: #061f40; color: rgba(255,255,255,.84); }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 14px; }
@media (max-width: 900px) {
  .nav { display: none; }
  .hero-grid, .split, .reverse, .contact-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cards, .stats { grid-template-columns: 1fr; }
  .hero { padding: 58px 0; }
  .section { padding: 62px 0; }
  .brand span { display: none; }
}
