/* ── Variables ──────────────────────────────────────────────────────────────── */
:root {
  --navy:          #1B3A5C;
  --teal:          #2A7F6F;
  --assurance:     #2E86AB;
  --alignment:     #2E7D6A;
  --accountability:#C17B55;
  --advisory:      #6B4C9A;
  --mist:          #EEF2F6;
  --white:         #FFFFFF;
  --text:          #2D2D2D;
  --text-light:    #666666;
  --border:        #DEE4EC;
  --shadow:        0 2px 16px rgba(27,58,92,0.10);
  --shadow-md:     0 4px 32px rgba(27,58,92,0.14);
  --radius:        10px;
  --nav-h:         72px;
  --max-w:         1100px;
  --section-pad:   80px;
}

/* ── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', Arial, sans-serif; font-size: 16px; color: var(--text); background: #fff; line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ─────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Montserrat', Arial, sans-serif; font-weight: 800; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1rem; font-weight: 700; }
p  { margin-bottom: 1rem; color: var(--text-light); }
p:last-child { margin-bottom: 0; }
strong { color: var(--text); }

.eyebrow {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
  display: block;
}

/* ── Layout ─────────────────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section    { padding: var(--section-pad) 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }

.text-center  { text-align: center; }
.text-white   { color: #fff !important; }
.text-teal    { color: var(--teal) !important; }
.text-navy    { color: var(--navy) !important; }
.bg-mist      { background: var(--mist); }
.bg-navy      { background: var(--navy); }
.bg-white     { background: #fff; }

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

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; }

/* ── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif; font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.5px; transition: all 0.2s ease; white-space: nowrap;
}
.btn-primary   { background: var(--teal); color: #fff; }
.btn-primary:hover { background: #1f6055; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-navy      { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #122944; transform: translateY(-1px); }
.btn-outline   { border: 2px solid #fff; color: #fff; background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-outline-navy { border: 2px solid var(--navy); color: var(--navy); background: transparent; }
.btn-outline-navy:hover { background: var(--mist); }
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Navigation ─────────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 1000;
  background: #fff; border-bottom: 1px solid var(--border);
  height: var(--nav-h); box-shadow: 0 1px 8px rgba(27,58,92,0.07);
}
.nav-container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 10px; font-family: 'Montserrat', Arial, sans-serif; font-weight: 800; font-size: 1rem; color: var(--navy); }
.nav-brand span { letter-spacing: 0.3px; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block; padding: 10px 14px; border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif; font-size: 0.88rem; font-weight: 600;
  color: var(--navy); transition: background 0.15s;
}
.nav-menu > li > a:hover { background: var(--mist); }
.nav-menu > li.active > a { color: var(--teal); }
.nav-cta { background: var(--navy) !important; color: #fff !important; border-radius: 6px !important; }
.nav-cta:hover { background: #122944 !important; }
.chevron { font-size: 0.7rem; margin-left: 2px; }

/* Dropdown */
.has-dropdown .dropdown {
  display: none; position: absolute; top: calc(100% + 4px); left: 0;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  min-width: 200px; box-shadow: var(--shadow-md); overflow: hidden;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }
.dropdown li a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; font-size: 0.88rem; color: var(--text);
  font-family: 'Montserrat', Arial, sans-serif; font-weight: 600;
  transition: background 0.15s;
}
.dropdown li a:hover { background: var(--mist); }
.dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.dot-assurance     { background: var(--assurance); }
.dot-alignment     { background: var(--alignment); }
.dot-accountability{ background: var(--accountability); }
.dot-advisory      { background: var(--advisory); }

/* Mobile toggle */
.nav-toggle { display: none; font-size: 1.4rem; color: var(--navy); padding: 6px; }

/* ── Hero — Home ────────────────────────────────────────────────────────────── */
.hero-home {
  background: linear-gradient(140deg, #0a1e30 0%, var(--navy) 55%, #1e4a6b 100%);
  padding: 110px 0 100px; position: relative; overflow: hidden;
}
.hero-home::before {
  content: ''; position: absolute; top: -100px; right: -80px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,134,171,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-home::after {
  content: ''; position: absolute; bottom: -80px; left: -60px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(107,76,154,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-home .container { position: relative; }
.hero-home h1 { color: #fff; margin-bottom: 1.2rem; max-width: 700px; }
.hero-home .hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.75); max-width: 560px; margin-bottom: 2.2rem; line-height: 1.7; }
.hero-eyebrow { font-family: 'Montserrat', Arial, sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 1rem; display: block; }

/* ── Hero — Generic (interior pages) ──────────────────────────────────────── */
.hero-page {
  padding: 72px 0 64px;
  background: linear-gradient(140deg, #0a1e30 0%, var(--navy) 60%);
}
.hero-page h1 { color: #fff; margin-bottom: 0.75rem; }
.hero-page .hero-sub { color: rgba(255,255,255,0.72); font-size: 1.1rem; max-width: 620px; }

/* ── Hero — Pathway (colored) ───────────────────────────────────────────────── */
.hero-pathway {
  padding: 80px 0 72px; position: relative; overflow: hidden;
}
.hero-pathway h1, .hero-pathway .hero-sub, .hero-pathway .eyebrow { color: #fff; }
.hero-pathway .eyebrow { color: rgba(255,255,255,0.7); }
.hero-pathway .hero-sub { color: rgba(255,255,255,0.8); max-width: 600px; font-size: 1.1rem; }
.hero-pathway-assurance     { background: linear-gradient(140deg, #1a5f7a 0%, var(--assurance) 100%); }
.hero-pathway-alignment     { background: linear-gradient(140deg, #1a5a46 0%, var(--alignment) 100%); }
.hero-pathway-accountability{ background: linear-gradient(140deg, #7a3e20 0%, var(--accountability) 100%); }
.hero-pathway-advisory      { background: linear-gradient(140deg, #3a1f6b 0%, var(--advisory) 100%); }

/* ── Pathway Color Accents ──────────────────────────────────────────────────── */
.pathway-bar { display: flex; height: 5px; }
.pathway-bar .seg { flex: 1; }
.seg-assurance     { background: var(--assurance); }
.seg-alignment     { background: var(--alignment); }
.seg-accountability{ background: var(--accountability); }
.seg-advisory      { background: var(--advisory); }

.border-assurance      { border-top: 4px solid var(--assurance); }
.border-alignment      { border-top: 4px solid var(--alignment); }
.border-accountability { border-top: 4px solid var(--accountability); }
.border-advisory       { border-top: 4px solid var(--advisory); }

.tag {
  display: inline-block; padding: 4px 12px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 700; font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 1rem;
}
.tag-assurance      { background: rgba(46,134,171,0.12); color: var(--assurance); }
.tag-alignment      { background: rgba(46,125,106,0.12); color: var(--alignment); }
.tag-accountability { background: rgba(193,123,85,0.12); color: var(--accountability); }
.tag-advisory       { background: rgba(107,76,154,0.12); color: var(--advisory); }

/* ── Cards ──────────────────────────────────────────────────────────────────── */
.card {
  background: #fff; border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card h3 { color: var(--navy); margin-bottom: 0.6rem; }
.card p  { font-size: 0.95rem; }

.pathway-card { border-top: 4px solid; }
.pathway-card.assurance      { border-top-color: var(--assurance); }
.pathway-card.alignment      { border-top-color: var(--alignment); }
.pathway-card.accountability { border-top-color: var(--accountability); }
.pathway-card.advisory       { border-top-color: var(--advisory); }
.pathway-card .card-icon { display: block; margin-bottom: 16px; line-height: 0; }
.pathway-card .card-link {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 16px;
  font-size: 0.85rem; font-weight: 700; font-family: 'Montserrat', Arial, sans-serif;
  color: var(--navy); text-decoration: none; transition: gap 0.2s;
}
.pathway-card .card-link:hover { gap: 9px; }

/* ── Section Heading ────────────────────────────────────────────────────────── */
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header h2 { margin-bottom: 0.7rem; }
.section-header p  { font-size: 1.05rem; max-width: 580px; }
.section-header.center p { margin: 0 auto; }
.divider { width: 48px; height: 4px; background: var(--teal); border-radius: 2px; margin: 16px 0; }
.section-header.center .divider { margin: 16px auto; }

/* ── Feature list ────────────────────────────────────────────────────────────── */
.feature-list { list-style: none; padding: 0; }
.feature-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 0.97rem; color: var(--text);
}
.feature-list li:last-child { border-bottom: none; }
.check { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: #fff; margin-top: 1px;
}
.check-teal { background: var(--teal); }

/* ── Two-col split ──────────────────────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-3-2 { display: grid; grid-template-columns: 3fr 2fr; gap: 64px; align-items: center; }

/* ── Quote / pull-out ───────────────────────────────────────────────────────── */
.pull-quote {
  border-left: 4px solid var(--teal); padding: 16px 24px;
  background: var(--mist); border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.1rem; font-style: italic; color: var(--navy); font-weight: 400;
  margin: 32px 0;
}

/* ── CTA Banner ─────────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--navy); padding: 72px 0; text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-banner p  { color: rgba(255,255,255,0.72); font-size: 1.05rem; margin-bottom: 2rem; }

/* ── Who We Serve ────────────────────────────────────────────────────────────── */
.serve-card {
  text-align: center; padding: 28px 20px;
  background: #fff; border-radius: var(--radius); border: 1px solid var(--border);
}
.serve-icon { display: flex; justify-content: center; margin-bottom: 14px; line-height: 0; }
.serve-card h4 { color: var(--navy); margin-bottom: 6px; }
.serve-card p  { font-size: 0.9rem; margin: 0; }

/* ── Contact Form ────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
label { display: block; font-size: 0.88rem; font-weight: 700; font-family: 'Montserrat', Arial, sans-serif; color: var(--navy); margin-bottom: 6px; }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border);
  border-radius: 6px; font-family: 'Lato', Arial, sans-serif; font-size: 0.95rem;
  color: var(--text); background: #fff; transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,127,111,0.12);
}
textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note { font-size: 0.82rem; color: var(--text-light); margin-top: 8px; }
.form-success { background: rgba(42,127,111,0.1); border: 1px solid var(--teal); border-radius: var(--radius); padding: 16px 20px; color: var(--teal); font-weight: 600; display: none; }

/* ── About card ──────────────────────────────────────────────────────────────── */
.about-intro-box {
  background: var(--mist); border-radius: var(--radius);
  padding: 48px; border-left: 5px solid var(--teal);
}
.value-item { display: flex; gap: 14px; margin-bottom: 24px; }
.value-item:last-child { margin-bottom: 0; }
.value-num { font-family: 'Montserrat', Arial, sans-serif; font-size: 1.6rem; font-weight: 900; color: var(--teal); line-height: 1; flex-shrink: 0; width: 36px; }
.value-item h4 { margin-bottom: 4px; }

/* ── Footer ──────────────────────────────────────────────────────────────────── */
.site-footer { background: #0d1e2e; color: rgba(255,255,255,0.75); }
.footer-main { padding: 64px 0 48px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand-col { display: flex; flex-direction: column; gap: 14px; }
.footer-brand-name { font-family: 'Montserrat', Arial, sans-serif; font-weight: 800; color: #fff; font-size: 1rem; margin-top: 8px; }
.footer-tagline { font-style: italic; font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.footer-col h5 { font-family: 'Montserrat', Arial, sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 14px; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,0.7); font-size: 0.92rem; padding: 4px 0; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom-inner { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copyright { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ── Stat strip ──────────────────────────────────────────────────────────────── */
.stat-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border-radius: var(--radius); overflow: hidden; margin: 48px 0; }
.stat-item { background: #fff; padding: 28px 24px; text-align: center; }
.stat-num { font-family: 'Montserrat', Arial, sans-serif; font-size: 2.4rem; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.88rem; color: var(--text-light); }

/* ── Journey steps ───────────────────────────────────────────────────────────── */
.journey { counter-reset: step; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.journey-step { text-align: center; padding: 24px 16px; position: relative; }
.journey-step::after { content: '→'; position: absolute; right: -14px; top: 28px; font-size: 1.2rem; color: var(--border); }
.journey-step:last-child::after { display: none; }
.step-badge { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-family: 'Montserrat', Arial, sans-serif; font-size: 1.1rem; font-weight: 900; color: #fff; }
.step-assurance      { background: var(--assurance); }
.step-alignment      { background: var(--alignment); }
.step-accountability { background: var(--accountability); }
.step-advisory       { background: var(--advisory); }
.journey-step h4 { color: var(--navy); margin-bottom: 6px; font-size: 0.95rem; }
.journey-step p  { font-size: 0.85rem; }

/* ── Responsive ──────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --section-pad: 56px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .split, .split-3-2 { grid-template-columns: 1fr; gap: 40px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .journey { grid-template-columns: repeat(2,1fr); }
  .journey-step::after { display: none; }
  .stat-strip { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --section-pad: 44px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .journey { grid-template-columns: 1fr; }

  /* Mobile nav */
  .nav-toggle { display: block; }
  .nav-menu { display: none; flex-direction: column; gap: 0; position: absolute; top: var(--nav-h); left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 12px 0; box-shadow: var(--shadow); z-index: 999; }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { padding: 12px 24px; border-radius: 0; }
  .has-dropdown .dropdown { display: none !important; }
  .has-dropdown.open .dropdown { display: block !important; position: static; box-shadow: none; border: none; background: var(--mist); border-radius: 0; }
  .nav-cta { margin: 8px 24px 4px; border-radius: 6px !important; }
}
