:root {
  --navy: #0F2A46;
  --navy-light: #1C4C7C;
  --blue: #2E86DE;
  --blue-light: #5FA8F5;
  --bg: #F4F7FA;
  --white: #FFFFFF;
  --text: #1A1F26;
  --muted: #5B6B7B;
  --border: #E1E8EF;
  --radius: 10px;
  --max-width: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* Header */
header.site {
  border-bottom: 1px solid var(--border);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 40px; width: auto; }
.brand .wordmark {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.brand .wordmark span { display: block; font-size: 12px; font-weight: 500; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }

nav.main ul { display: flex; gap: 32px; list-style: none; }
nav.main a { font-size: 15px; font-weight: 500; color: var(--text); }
nav.main a:hover { color: var(--blue); }
nav.main a.active { color: var(--navy); font-weight: 700; }

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 14px !important;
}
.nav-cta:hover { background: var(--navy-light); }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 88px 0;
}
.hero .wrap { max-width: var(--max-width); }
.hero h1 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 760px;
  margin-bottom: 20px;
}
.hero p.lead {
  font-size: 19px;
  color: #D9E4F0;
  max-width: 620px;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.15s ease;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-light); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); }

/* Sections */
section { padding: 72px 0; }
section.alt { background: var(--bg); }
.section-head { max-width: 640px; margin-bottom: 44px; }
.eyebrow {
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
h2 { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; color: var(--navy); margin-bottom: 14px; }
h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
p { color: var(--muted); }
p + p { margin-top: 12px; }

/* Grids */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--bg);
  color: var(--blue);
  font-weight: 800;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 15px;
}

/* Stats */
.stats { display: flex; gap: 48px; flex-wrap: wrap; padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat .figure { font-size: 36px; font-weight: 800; color: var(--navy); }
.stat .label { color: var(--muted); font-size: 14px; margin-top: 4px; }

/* Sector chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* Timeline (Approach page) */
.timeline { border-left: 2px solid var(--border); padding-left: 28px; }
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue);
}
.timeline-item .tag { font-size: 12px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.05em; }

/* Quote / callout */
.callout {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
}
.callout p { color: #D9E4F0; }

/* Footer */
footer.site {
  background: var(--navy);
  color: #C7D5E5;
  padding: 48px 0 28px;
  margin-top: 40px;
}
footer.site .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
footer.site .foot-brand { font-weight: 700; color: var(--white); font-size: 17px; margin-bottom: 8px; }
footer.site a:hover { color: var(--white); }
footer.site .cols { display: flex; gap: 64px; flex-wrap: wrap; }
footer.site h4 { color: var(--white); font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
footer.site ul { list-style: none; }
footer.site li { margin-bottom: 10px; font-size: 14px; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 32px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  color: #93A7BD;
}

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; }
form.contact-form label { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
form.contact-form .field { margin-bottom: 20px; }
form.contact-form input,
form.contact-form select,
form.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
}
form.contact-form textarea { resize: vertical; min-height: 120px; }
form.contact-form input:focus,
form.contact-form select:focus,
form.contact-form textarea:focus { outline: 2px solid var(--blue); outline-offset: 1px; }

.info-block { display: flex; gap: 14px; margin-bottom: 24px; }
.info-block .icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--bg); display: flex; align-items: center; justify-content: center;
  color: var(--blue); flex-shrink: 0; font-weight: 700;
}

@media (max-width: 860px) {
  nav.main, .nav-cta { display: none; }
  .hero h1 { font-size: 32px; }
  .grid-4, .grid-3, .grid-2, .contact-grid { grid-template-columns: 1fr; }
  footer.site .wrap { flex-direction: column; }
}
