:root {
  --navy: #0b2a6f;
  --navy-deep: #071b46;
  --gold: #df9b17;
  --gold-soft: #f4d37a;
  --text: #172033;
  --muted: #5e677a;
  --bg: #f7f9fc;
  --white: #ffffff;
  --border: rgba(11, 42, 111, 0.08);
  --shadow: 0 18px 50px rgba(8, 21, 53, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.brand-logo {
  height: 68px;
  width: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 600;
  color: var(--navy-deep);
}
.nav-cta {
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
}
.hero {
  background:
    radial-gradient(circle at top right, rgba(223, 155, 23, 0.15), transparent 30%),
    linear-gradient(180deg, #fbfcff 0%, #f4f7fc 100%);
  padding: 72px 0 56px;
}
.hero-grid, .two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.eyebrow, .section-tag {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 14px;
}
.hero h1, .section h2 {
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  line-height: 1.08;
  margin: 0 0 18px;
  color: var(--navy-deep);
}
.section h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.hero-text {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 62ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-secondary {
  border: 1px solid rgba(11, 42, 111, 0.16);
  color: var(--navy);
  background: var(--white);
}
.btn-light {
  background: var(--white);
  color: var(--navy-deep);
}
.full { width: 100%; }
.hero-card {
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.stat-card {
  background: linear-gradient(145deg, var(--navy-deep), var(--navy));
  color: var(--white);
  border-radius: 22px;
  padding: 24px;
  margin-bottom: 18px;
}
.stat-card h3 { margin-top: 0; font-size: 1.35rem; }
.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.mini-grid div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
}
.mini-grid strong {
  display: block;
  color: var(--navy);
}
.mini-grid span { color: var(--muted); }
.section { padding: 86px 0; }
.alt { background: var(--bg); }
.section-head {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}
.section-head.left { margin-left: 0; text-align: left; }
.cards, .features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card, .feature, .client-item, .contact-form, .contact-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 8px 30px rgba(7, 27, 70, 0.04);
}
.card h3, .feature h3, .client-item h3 {
  margin-top: 0;
  color: var(--navy);
}
.client-list {
  display: grid;
  gap: 18px;
}
.cta-band {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--white);
}
.cta-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.light { color: var(--gold-soft); }
.contact-grid { align-items: start; }
.contact-form {
  display: grid;
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--navy-deep);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(11, 42, 111, 0.14);
  border-radius: 14px;
  font: inherit;
}
.site-footer {
  background: #08193f;
  color: rgba(255,255,255,0.82);
  padding: 28px 0;
}
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-logo { height: 46px; width: auto; }
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero-grid, .two-col, .cards, .features, .cta-wrap {
    grid-template-columns: 1fr;
    display: grid;
  }
  .cta-wrap { gap: 16px; }
  .nav {
    position: absolute;
    right: 20px;
    top: 74px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 18px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    min-width: 220px;
  }
  .nav.open { display: flex; }
  .menu-toggle { display: block; }
  .footer-wrap, .footer-brand { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .brand-logo { height: 44px; }
  .nav-wrap { padding: 8px 0; }
  .section, .hero { padding: 68px 0; }
  .mini-grid { grid-template-columns: 1fr; }
  .container { width: min(1120px, calc(100% - 28px)); }
}
  .section, .hero { padding: 68px 0; }
  .mini-grid { grid-template-columns: 1fr; }
  .container { width: min(1120px, calc(100% - 28px)); }
}

@media (max-width: 768px) {
  .brand-logo { height: 54px; }
}
