:root {
  --navy: #0b2545;
  --slate: #134074;
  --slate-light: #1e5a94;
  --amber: #e0842d;
  --amber-dark: #c96f1e;
  --bg: #f7f8fa;
  --white: #ffffff;
  --text: #23303f;
  --muted: #5c6b7a;
  --border: #e2e6eb;
  --radius: 10px;
  --max-width: 1100px;
}

* { 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(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.logo span { color: var(--amber); }

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  color: #cfd9e6;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  display: block;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%);
  color: var(--white);
  padding: 80px 24px 90px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 760px;
}
.eyebrow {
  color: var(--amber);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.hero h1 {
  font-size: 2.6rem;
  margin: 0;
  line-height: 1.15;
}
.hero p {
  font-size: 1.15rem;
  color: #d7e0ea;
  max-width: 620px;
  margin: 0;
}

.btn {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 8px;
  transition: background 0.15s, transform 0.15s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.btn:hover { background: var(--amber-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px; }

/* Sections */
section { padding: 64px 24px; }
section.alt { background: var(--white); }

.section-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.section-head h2 { font-size: 2rem; margin-bottom: 10px; color: var(--navy); }
.section-head p { color: var(--muted); font-size: 1.05rem; margin: 0; }

/* Cards / grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.card h3 {
  color: var(--navy);
  margin-top: 0;
  font-size: 1.2rem;
}
.card p { color: var(--muted); margin-bottom: 0; }
.card .tag {
  display: inline-block;
  background: #eef3f8;
  color: var(--slate);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.highlight-card {
  border: 2px solid var(--amber);
  background: #fff8ef;
}

/* Logos / clients strip */
.clients-strip {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}
.clients-strip .label {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.clients-strip .names {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
}

/* Two column */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}
.two-col h2 { color: var(--navy); font-size: 1.9rem; }
.two-col .stat-box {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px;
}
.two-col .stat-box ul { padding-left: 20px; margin: 0; }
.two-col .stat-box li { margin-bottom: 12px; }

/* CTA band */
.cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}
.cta-band h2 { font-size: 1.8rem; margin-bottom: 10px; }
.cta-band p { color: #d7e0ea; margin-bottom: 24px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-card h3 { color: var(--navy); margin-top: 0; }
.contact-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.contact-line .icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #eef3f8;
  color: var(--slate);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-line a { color: var(--slate); font-weight: 600; }
.contact-line a:hover { text-decoration: underline; }

/* Footer */
footer.site-footer {
  background: var(--navy);
  color: #b9c6d4;
  padding: 40px 24px 30px;
  font-size: 0.9rem;
}
footer.site-footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
footer.site-footer a:hover { color: var(--white); }

/* Responsive */
@media (max-width: 800px) {
  .two-col, .contact-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  nav.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    display: none;
    flex-direction: column;
    padding: 10px 24px 20px;
  }
  nav.main-nav.open { display: flex; }
  nav.main-nav ul { flex-direction: column; }
  .nav-toggle { display: flex; }
}
