:root {
  --navy: #0b2a4a;
  --blue: #174f8f;
  --red: #b61f36;
  --ink: #17212b;
  --muted: #5d6873;
  --paper: #ffffff;
  --soft: #f4f6f8;
  --line: #dfe4e8;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  border-top: 4px solid var(--red);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav-wrap {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand img { width: 235px; height: auto; }
nav { display: flex; align-items: center; gap: 30px; }
nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: .95rem;
}
nav a:hover { color: var(--red); }
.nav-contact {
  border: 1px solid var(--navy);
  padding: 9px 15px;
  border-radius: 3px;
}

.hero {
  background: linear-gradient(135deg, #0b2a4a 0%, #174f8f 70%, #1c5da3 100%);
  color: white;
}
.hero-inner { padding: 110px 0 105px; max-width: 980px; margin-left: max(20px, calc((100vw - var(--max)) / 2)); }
.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow.light { color: #f4c7cf; }
h1, h2, h3 { color: var(--navy); line-height: 1.15; margin-top: 0; }
.hero h1 {
  color: white;
  max-width: 900px;
  font-size: clamp(2.7rem, 5.8vw, 5.4rem);
  font-weight: 650;
  letter-spacing: -.035em;
  margin-bottom: 28px;
}
.hero-copy { max-width: 850px; font-size: clamp(1.08rem, 1.9vw, 1.32rem); color: #e7edf5; margin: 0 0 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { display: inline-block; text-decoration: none; padding: 13px 20px; border-radius: 3px; font-weight: 700; }
.button.primary { background: var(--red); color: white; }
.button.secondary { border: 1px solid rgba(255,255,255,.65); color: white; }

.section { padding: 95px 0; }
.section.alt { background: var(--soft); }
.split { display: grid; grid-template-columns: .85fr 1.35fr; gap: 80px; align-items: start; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -.025em; margin-bottom: 24px; }
.copy { font-size: 1.08rem; }
.copy p:first-child { margin-top: 0; }
.copy p:last-child { margin-bottom: 0; }

.capabilities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 70px; }
.capabilities article {
  border-top: 3px solid var(--red);
  padding: 26px 24px 20px;
  background: var(--soft);
}
.capabilities h3 { font-size: 1.18rem; margin-bottom: 10px; }
.capabilities p { margin: 0; color: var(--muted); }

.section-heading { max-width: 850px; margin-bottom: 50px; }
.partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.partner-card {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 28px;
  background: white;
  padding: 34px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(9, 38, 69, .06);
}
.partner-photo { width: 155px; height: 155px; border-radius: 50%; object-fit: cover; object-position: center top; }
.partner-card h3 { font-size: 1.7rem; margin-bottom: 3px; }
.partner-title { margin-top: 0; color: var(--red); font-weight: 700; }
.partner-card p { color: #3f4953; }
.contact-lines { margin-top: 22px; }
.contact-lines a { color: var(--navy); font-weight: 650; text-decoration: none; }
.contact-lines a:hover { color: var(--red); }

.contact-section { padding: 78px 0; background: var(--navy); color: white; }
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; align-items: start; }
.contact-section h2 { color: white; margin-bottom: 14px; }
.contact-section p { color: #d6e0ea; max-width: 620px; }
.contact-card { padding-top: 6px; display: flex; flex-direction: column; gap: 8px; }
.contact-card strong { color: white; font-size: 1.05rem; margin-bottom: 5px; }
.contact-card a { color: #dfe8f1; text-decoration: none; }
.contact-card a:hover { color: white; text-decoration: underline; }

footer { padding: 28px 0; border-bottom: 4px solid var(--red); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.footer-inner img { width: 185px; }
.footer-inner p { color: var(--muted); font-size: .9rem; margin: 0; }

@media (max-width: 960px) {
  nav { gap: 18px; }
  .split { grid-template-columns: 1fr; gap: 24px; }
  .partner-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .site-header { position: static; }
  .nav-wrap { min-height: 0; padding: 18px 0; align-items: flex-start; flex-direction: column; }
  .brand img { width: 205px; }
  nav { width: 100%; overflow-x: auto; gap: 20px; padding-bottom: 2px; }
  nav a { white-space: nowrap; font-size: .9rem; }
  .nav-contact { border: 0; padding: 0; }
  .hero-inner { padding: 76px 0 72px; margin-left: auto; }
  .section { padding: 68px 0; }
  .capabilities { grid-template-columns: 1fr; margin-top: 48px; }
  .partner-card { grid-template-columns: 1fr; padding: 26px; }
  .partner-photo { width: 130px; height: 130px; }
  .contact-grid { grid-template-columns: 1fr; gap: 26px; }
  .contact-grid > div:first-child { grid-column: auto; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}
