@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0f2547;
  --navy-light: #1a3a6b;
  --blue: #1d4ed8;
  --blue-hover: #1e40af;
  --blue-light: #dbeafe;
  --white: #ffffff;
  --surface: #f8fafc;
  --border: #e2e8f0;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.08), 0 2px 4px -1px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -2px rgba(0,0,0,.04);
  --max: 1080px;
  --nav-h: 152px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

section { padding: 80px 0; }
section.alt { background: var(--surface); }

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
  height: var(--nav-h);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  width: min(420px, 42vw);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  transition: color .15s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue);
  color: var(--white) !important;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: var(--radius);
  transition: background .15s;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--blue-hover) !important; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: background .15s, color .15s, box-shadow .15s;
  text-decoration: none;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-hover); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: var(--surface); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 60%, #1e3799 100%);
  color: var(--white);
  padding: 100px 0 90px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.5px;
  max-width: 680px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  line-height: 1.7;
  color: #bfdbfe;
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0 56px;
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -.3px;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 17px;
  color: #bfdbfe;
  max-width: 520px;
}

/* ── Section headers ── */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -.3px;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}

.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ── Trust / Intro ── */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.trust-text p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.trust-text p:last-child { margin-bottom: 0; }

.trust-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.stat-card .stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.5px;
  margin-bottom: 6px;
}

.stat-card .stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg { width: 24px; height: 24px; color: var(--blue); }

.service-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── About preview ── */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text h2 { margin-bottom: 16px; }

.about-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text p:last-of-type { margin-bottom: 28px; }

.about-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  color: var(--white);
}

.about-visual h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pillar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #93c5fd;
  margin-top: 6px;
  flex-shrink: 0;
}

.pillar p {
  font-size: 14px;
  color: #bfdbfe;
  line-height: 1.6;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3799 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}

.cta-banner h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -.3px;
  margin-bottom: 14px;
}

.cta-banner p {
  font-size: 17px;
  color: #bfdbfe;
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── About page ── */
.bio-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.bio-sidebar {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  color: var(--white);
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.bio-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--navy-light);
  border: 3px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
  color: #93c5fd;
}

.bio-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  border-radius: var(--radius);
  border: 3px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow-md);
  margin-bottom: 22px;
}

.bio-sidebar h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.bio-sidebar .title {
  font-size: 13px;
  color: #93c5fd;
  font-weight: 500;
  margin-bottom: 24px;
}

.bio-sidebar .divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.15);
  margin-bottom: 20px;
}

.bio-sidebar ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bio-sidebar ul li {
  font-size: 13px;
  color: #bfdbfe;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.bio-sidebar ul li::before {
  content: '→';
  color: #93c5fd;
  flex-shrink: 0;
  margin-top: 1px;
}

.bio-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.3px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.bio-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}

.career-highlights {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 26px;
  margin: 28px 0;
}

.career-highlights h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.career-highlights ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.career-highlights li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.career-highlights strong {
  color: var(--navy);
  font-weight: 700;
}

.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 8px 0 4px;
}

.resource-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1.5px solid var(--navy);
  border-radius: var(--radius);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  transition: background .15s, color .15s, border-color .15s;
}

.resource-links a:hover {
  background: var(--navy);
  color: var(--white);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}

.approach-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
}

.approach-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.approach-item p {
  font-size: 13px;
  margin-bottom: 0;
}

/* ── Services page ── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child { border-bottom: none; }

.service-detail-icon {
  background: var(--blue-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.service-detail-icon svg {
  width: 40px;
  height: 40px;
  color: var(--blue);
}

.service-detail-icon span {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.service-detail-body h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.2px;
  margin-bottom: 12px;
}

.service-detail-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-detail-body ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.service-detail-body ul li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.service-detail-body ul li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Contact page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-wrap h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .1px;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29,78,216,.1);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.form-note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: -12px;
  margin-bottom: 20px;
}

.contact-sidebar > * + * { margin-top: 24px; }

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.contact-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.contact-item:last-child { margin-bottom: 0; }

.contact-item-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg { width: 16px; height: 16px; color: var(--blue); }

.contact-item-text .label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--text-light);
  margin-bottom: 2px;
}

.contact-item-text .value {
  font-size: 14px;
  color: var(--text);
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 48px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: #cbd5e1;
  transition: color .15s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: #64748b;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  :root { --nav-h: 118px; }
  .nav-inner { gap: 20px; }
  .nav-logo img { width: min(320px, 46vw); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-preview { grid-template-columns: 1fr; }
  .bio-section { grid-template-columns: 1fr; }
  .bio-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail-body ul { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  :root { --nav-h: 92px; }
  section { padding: 56px 0; }
  .nav-inner { gap: 14px; padding: 0 18px; }
  .nav-logo img { width: min(230px, 52vw); }
  .nav-cta { font-size: 13px; padding: 8px 14px; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
}
