:root {
  --navy: #173c83;
  --navy-deep: #102a5d;
  --blue: #4678d7;
  --text: #1b2433;
  --muted: #5f6878;
  --bg: #f4f7fc;
  --line: rgba(23, 60, 131, 0.1);
  --shadow: 0 18px 44px rgba(13, 26, 58, 0.12);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(23,60,131,0.08);
}
.nav-wrap {
  min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.brand img { height: 46px; width: auto; }
.nav { display: flex; align-items: center; gap: 28px; font-weight: 700; color: var(--navy-deep); }
.nav a:hover { color: var(--blue); }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 22px;
  border-radius: 14px; border: 1px solid transparent;
  background: linear-gradient(180deg, #4b7ee0 0%, #2958b2 100%); color: #fff;
  font-weight: 800; letter-spacing: -0.01em; box-shadow: 0 12px 24px rgba(41, 88, 178, 0.25);
}
.button-sm { min-height: 44px; padding: 0 18px; }
.button-ghost { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.24); color: #fff; box-shadow: none; }
.hero-image-section { background: #e9eef8; }
.hero-image-section img {
  width: min(1520px, 100%); margin: 0 auto; display: block;
}
.contact-strip {
  background: var(--navy); color: #fff; padding: 16px 0;
}
.contact-strip-inner {
  display: flex; align-items: center; justify-content: center; gap: 16px; font-weight: 700;
}
.section { padding: 92px 0; }
.alt { background: var(--bg); }
.section-head { max-width: 760px; margin-bottom: 34px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.eyebrow {
  margin: 0 0 8px; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 800; font-size: 0.8rem; color: var(--blue);
}
.section h2 { margin: 0 0 12px; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; letter-spacing: -0.04em; }
.section-copy { margin: 0; color: var(--muted); font-size: 1.08rem; }
.cards { display: grid; gap: 18px; }
.three { grid-template-columns: repeat(3, 1fr); }
.card {
  padding: 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
}
.card h3 { margin-top: 0; margin-bottom: 10px; font-size: 1.22rem; }
.card p { margin: 0; color: var(--muted); }
.split { display: grid; grid-template-columns: 1.08fr .92fr; gap: 24px; align-items: start; }
.check-list { margin: 22px 0; padding-left: 22px; display: grid; gap: 12px; font-size: 1.06rem; }
.check-list.compact { gap: 10px; margin: 16px 0 0; }
.highlight-box {
  padding: 30px; border-radius: 28px; background: linear-gradient(180deg, #1b3e89 0%, #122c62 100%); color: #fff; box-shadow: var(--shadow);
}
.highlight-box h3 { margin-top: 0; }
.light { color: rgba(255,255,255,0.92); }
.step-number {
  display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 16px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 800;
}
.cta-section { background: var(--bg); }
.cta-box {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px; align-items: center; padding: 36px; border-radius: 30px;
  background: linear-gradient(180deg, #173471 0%, #10254f 100%); color: #fff; box-shadow: var(--shadow);
}
.cta-actions { display: flex; flex-direction: column; gap: 12px; }
.light-copy { color: rgba(255,255,255,0.84); }
.site-footer { padding: 34px 0 46px; background: #0b1732; color: rgba(255,255,255,0.82); }
.footer-wrap { display: grid; grid-template-columns: 1.2fr .8fr .9fr; gap: 20px; align-items: start; }
.footer-brand-text { margin-bottom: 12px; color: #fff; font-weight: 800; font-size: 2rem; line-height: 1; letter-spacing: -0.03em; }
.footer-brand-text span { display: block; font-size: 1rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-top: 6px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
@media (max-width: 920px) {
  .nav, .button-sm { display: none; }
  .three, .split, .cta-box, .footer-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 20px, 1180px); }
  .nav-wrap { min-height: 74px; }
  .brand img { height: 36px; }
  .contact-strip-inner { flex-direction: column; gap: 6px; }
  .contact-strip-inner span { display: none; }
  .cta-actions { flex-direction: column; }
  .button, .button-ghost { width: 100%; }
  .section { padding: 72px 0; }
  .cta-box { padding: 24px; border-radius: 24px; }
}
