/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Aptos', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: #2C3E50;
  font-size: 16px;
  line-height: 1.7;
}

/* ── COLORS ── */
:root {
  --navy: #1A2A5E;
  --navy-dark: #0F1B3D;
  --green: #5CB85C;
  --green-light: #7DC540;
  --gray-light: #F4F6F9;
  --gray-mid: #6B7A8D;
  --white: #ffffff;
  --border: #DDE3ED;
  --radius: 6px;
}

/* ── NAV ── */
nav {
  background: var(--navy);
  padding: 0 4%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.nav-logo-text {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
  text-decoration: none;
}
.nav-logo-text span { color: var(--green-light); }
.nav-links { display: flex; gap: 28px; align-items: center; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active { border-bottom: 2px solid var(--green); padding-bottom: 2px; }
.nav-cta {
  background: var(--green) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--green-light) !important; }

/* ── PAGE HEADER BANNER ── */
.page-header {
  background: var(--navy);
  padding: 56px 4% 48px;
  border-bottom: 4px solid var(--green);
}
.page-header .eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 14px;
}
.page-header h1 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 12px;
  line-height: 1.15;
}
.page-header p {
  font-size: 17px;
  color: rgba(255,255,255,.65);
  max-width: 520px;
}

/* ── SECTIONS ── */
.section { padding: 72px 4%; background: #fff; }
.section-alt { padding: 72px 4%; background: var(--gray-light); }
.section-navy { padding: 72px 4%; background: var(--navy); }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.accent-bar {
  width: 36px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin-bottom: 16px;
}
h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.section-navy h2 { color: #fff; }
.section-lead {
  font-size: 17px;
  color: var(--gray-mid);
  max-width: 540px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--green);
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary:hover { background: var(--green-light); transform: translateY(-1px); }
.btn-outline {
  border: 2px solid rgba(255,255,255,.4);
  color: rgba(255,255,255,.9);
  padding: 12px 26px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: #fff; color: #fff; }
.btn-navy {
  background: var(--navy);
  color: #fff;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: background .2s;
}
.btn-navy:hover { background: var(--navy-dark); }

/* ── HERO ── */
.hero {
  background: var(--navy-dark);
  padding: 88px 4% 80px;
  display: flex;
  gap: 6%;
  align-items: center;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,42,94,.96) 0%, rgba(15,27,61,.88) 100%);
  z-index: 0;
}
.hero-content { flex: 1; position: relative; z-index: 1; max-width: 560px; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(92,184,92,.15);
  border: 1px solid rgba(92,184,92,.35);
  color: var(--green-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 22px;
}
.hero h1 span { color: var(--green-light); }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 38px;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-media {
  flex: 0 0 36%;
  height: 300px;
  border: 2px dashed rgba(255,255,255,.2);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.3);
  font-size: 13px;
  text-align: center;
  line-height: 1.6;
}
.hero-media-icon { font-size: 42px; color: rgba(255,255,255,.15); }

/* ── PILLARS ── */
.pillars {
  background: var(--navy);
  padding: 0 4%;
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.pillar {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.pillar:last-child { border-right: none; }
.pillar-dot {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  margin: 0 auto 10px;
}
.pillar-word {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.pillar-desc { font-size: 12px; color: rgba(255,255,255,.5); }

/* ── GRIDS ── */
.grid4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.grid3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* ── CARDS ── */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: 0 8px 28px rgba(26,42,94,.1); transform: translateY(-2px); }
.card-icon {
  width: 52px;
  height: 52px;
  background: #EBF5EB;
  border-radius: 10px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-icon svg { width: 26px; height: 26px; stroke: var(--navy); fill: none; stroke-width: 1.8; }
.card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.card p { font-size: 13px; color: var(--gray-mid); line-height: 1.6; }

/* ── WHY ROW ── */
.why-row { display: flex; gap: 6%; align-items: center; }
.why-row.flip { flex-direction: row-reverse; }
.why-img {
  flex: 0 0 42%;
  height: 320px;
  background: var(--gray-light);
  border: 2px dashed var(--border);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gray-mid);
  font-size: 13px;
  text-align: center;
  line-height: 1.6;
}
.why-content { flex: 1; }
.why-content p {
  color: var(--gray-mid);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
}
.value-list { list-style: none; margin-bottom: 32px; }
.value-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #2C3E50;
}
.value-check {
  width: 20px;
  height: 20px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-check svg { width: 10px; height: 10px; stroke: #fff; fill: none; stroke-width: 2.5; }
.value-list strong { color: var(--navy); }

/* ── PARTNER STRIP ── */
.partner-strip {
  background: #EEF1F7;
  padding: 36px 4%;
  text-align: center;
}
.partner-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 24px;
}
.partner-logos { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.partner-logo {
  width: 130px;
  height: 44px;
  background: #D8DDE8;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #8899aa;
}

/* ── CONNECT BAR ── */
.connect-bar {
  background: var(--navy);
  padding: 44px 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.connect-bar h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.connect-bar p { font-size: 15px; color: rgba(255,255,255,.6); }

/* ── LEADER CARDS ── */
.leader-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  gap: 22px;
}
.leader-photo {
  width: 90px;
  height: 110px;
  background: var(--gray-light);
  border: 2px dashed var(--border);
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--gray-mid);
  text-align: center;
  line-height: 1.4;
}
.leader-info { flex: 1; }
.leader-info h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.leader-title { font-size: 13px; color: var(--green); font-weight: 600; margin-bottom: 12px; }
.leader-bio { font-size: 13px; color: var(--gray-mid); line-height: 1.6; margin-bottom: 10px; }
.leader-email { font-size: 12px; color: var(--navy); text-decoration: none; font-weight: 500; }
.leader-email:hover { color: var(--green); }

/* ── ALTERNATING SERVICE ROWS ── */
.svc-row {
  display: flex;
  align-items: stretch;
  min-height: 360px;
  border-bottom: 1px solid var(--border);
}
.svc-row.flip { flex-direction: row-reverse; }
.svc-row-img {
  flex: 0 0 48%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--gray-mid);
  text-align: center;
  border: none;
  position: relative;
}
.svc-row.flip .svc-row-img { background: #EEF1F7; }
.svc-row-content {
  flex: 1;
  padding: 56px 5%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc-row.flip .svc-row-content { background: var(--gray-light); }
.svc-row-content .eyebrow { margin-bottom: 10px; }
.svc-row-content h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}
.svc-row-content p {
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ── NEWS CARDS ── */
.news-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.news-card:hover { box-shadow: 0 8px 28px rgba(26,42,94,.1); }
.news-thumb {
  height: 160px;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--gray-mid);
  border-bottom: 1px solid var(--border);
}
.news-body { padding: 22px; }
.news-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.news-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}
.news-date { font-size: 12px; color: var(--gray-mid); }

/* ── CONTACT FORM ── */
.contact-row { display: grid; grid-template-columns: 3fr 2fr; gap: 48px; }
.form-note { font-size: 13px; color: var(--gray-mid); margin-bottom: 24px; padding: 12px 16px; background: var(--gray-light); border-left: 3px solid var(--green); border-radius: 0 var(--radius) var(--radius) 0; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
input, select, textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  color: #2C3E50;
  background: #fff;
  transition: border-color .2s;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--navy); }
textarea { min-height: 100px; resize: vertical; }
.contact-info-card {
  background: var(--gray-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 16px;
}
.contact-info-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.contact-info-card p { font-size: 14px; color: var(--gray-mid); line-height: 1.6; }
.contact-info-card a { color: var(--navy); font-weight: 600; text-decoration: none; }
.contact-info-card a:hover { color: var(--green); }
.map-placeholder {
  background: var(--gray-light);
  border: 2px dashed var(--border);
  border-radius: 10px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--gray-mid);
}

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  padding: 56px 4% 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 28px;
}
.footer-brand h4 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.footer-brand h4 span { color: var(--green-light); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 20px; max-width: 220px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.social-btn:hover { border-color: var(--green); background: rgba(92,184,92,.1); }
.social-btn svg { width: 15px; height: 15px; stroke: rgba(255,255,255,.6); fill: none; stroke-width: 2; }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,.55); text-decoration: none; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.3); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,.6); }

/* ── PAGE DIVIDER ── */
.page-divider { height: 4px; background: linear-gradient(90deg, var(--navy) 70%, var(--green) 100%); }

/* ── SHARED CAROUSEL ── */
.carousel-wrap { position: relative; overflow: hidden; }
.carousel-track { display: flex; transition: transform .5s ease; }
.carousel-slide { flex: 0 0 100%; }
.c-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15,27,61,.5);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.c-btn:hover { background: rgba(15,27,61,.85); }
.c-btn.prev { left: 16px; }
.c-btn.next { right: 16px; }
.c-dots { display: flex; gap: 8px; justify-content: center; padding: 14px 0; }
.c-dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(26,42,94,.2); cursor: pointer; transition: background .2s; }
.c-dot.active { background: var(--navy); }

/* ── SERVICES CAROUSEL ── */
.svc-carousel { background: #ffffff; }
.svc-carousel .carousel-track { height: 360px; }
.svc-carousel .carousel-slide {
  height: 360px;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.svc-slide-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}
.svc-slide-img.s1 { background: #dce0e8; }
.svc-slide-img.s2 { background: #d4d9e3; }
.svc-slide-img.s3 { background: #d8dde6; }
.svc-slide-img.s4 { background: #d0d6e1; }
.svc-slide-img.s5 { background: #d6dbe4; }
.svc-slide-bar {
  position: relative;
  z-index: 2;
  width: 100%;
  background: linear-gradient(0deg, rgba(26,42,94,.85) 0%, rgba(26,42,94,0) 100%);
  padding: 32px 4% 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.svc-slide-title { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.svc-slide-sub { font-size: 13px; color: rgba(255,255,255,.65); }
.svc-slide-btn {
  background: var(--green);
  color: #fff;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.svc-slide-btn:hover { background: var(--green-light); }
.svc-carousel .c-dots { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); z-index: 10; background: transparent; }
.svc-carousel .c-dot { background: rgba(26,42,94,.25); }
.svc-carousel .c-dot.active { background: var(--navy); }
.svc-carousel .c-btn { top: 45%; }

/* ── VALUES CAROUSEL ── */
.val-carousel { background: var(--gray-light); position: relative; }
.val-carousel .carousel-slide {
  padding: 56px 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 280px;
  justify-content: center;
}
.val-icon {
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid var(--border);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.val-icon svg { width: 28px; height: 28px; stroke: var(--navy); fill: none; stroke-width: 1.8; }
.val-carousel h3 { font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.val-carousel p { font-size: 15px; color: var(--gray-mid); max-width: 480px; line-height: 1.7; }
.val-carousel .c-dot { background: rgba(26,42,94,.2); }
.val-carousel .c-dot.active { background: var(--navy); }
.val-carousel .c-btn { background: rgba(26,42,94,.15); color: var(--navy); border-color: rgba(26,42,94,.2); top: 50%; transform: translateY(-50%); }
.val-carousel .c-btn:hover { background: rgba(26,42,94,.3); }

/* ── TESTIMONIAL CAROUSEL ── */
.testi-carousel { background: var(--navy); }
.testi-carousel .carousel-slide {
  padding: 56px 12%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 300px;
  justify-content: center;
}
.testi-avatar {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  margin: 0 auto 16px;
  border: 2px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: rgba(255,255,255,.5);
  text-align: center;
  line-height: 1.4;
}
.testi-stars { display: flex; gap: 4px; justify-content: center; margin-bottom: 18px; }
.testi-star { color: var(--green-light); font-size: 18px; }
.testi-quote {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 24px;
}
.testi-name { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.testi-org { font-size: 13px; color: rgba(255,255,255,.5); }
.testi-carousel .c-dot { background: rgba(255,255,255,.25); }
.testi-carousel .c-dot.active { background: var(--green); }
.testi-carousel .c-btn { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); top: 50%; transform: translateY(-50%); }
.testi-carousel .c-btn:hover { background: rgba(255,255,255,.2); }

/* ── COMING SOON ── */
.coming-soon {
  text-align: center;
  padding: 80px 4%;
  background: #fff;
}
.coming-soon h2 { margin: 0 auto 14px; }
.coming-soon p { font-size: 17px; color: var(--gray-mid); max-width: 500px; margin: 0 auto 32px; }

/* ── PILLARS WHITE VARIANT ── */
.pillars.white {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pillars.white .pillar { border-right-color: var(--border); }
.pillars.white .pillar-word { color: var(--navy); }
.pillars.white .pillar-desc { color: var(--gray-mid); }

.val-icon i { width: 28px; height: 28px; stroke: var(--navy); stroke-width: 1.8; }

/* ══════════════════════════════════════════
   MOBILE RESPONSIVE — max-width: 768px
   Desktop styles untouched above this point
   ══════════════════════════════════════════ */

/* ── HAMBURGER MENU ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {

  /* NAV */
  nav { padding: 0 5%; height: 56px; }
  .nav-logo-text { font-size: 15px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    gap: 0;
    padding: 16px 0 24px;
    z-index: 150;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 5%;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-links a.active { border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-cta {
    margin: 12px 5% 0;
    text-align: center;
    border-radius: var(--radius);
    padding: 12px 5% !important;
  }

  /* PAGE HEADER */
  .page-header { padding: 40px 5% 32px; }
  .page-header h1 { font-size: 28px; }
  .page-header p { font-size: 15px; }

  /* HERO */
  .hero {
    flex-direction: column;
    padding: 48px 5% 40px;
    min-height: auto;
    gap: 32px;
  }
  .hero h1 { font-size: 34px; }
  .hero-sub { font-size: 15px; }
  .hero-media {
    flex: none;
    width: 100%;
    height: 200px;
  }
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn-primary, .btn-outline { text-align: center; }

  /* PILLARS */
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .pillar:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }
  .pillar:nth-last-child(-n+2) { border-bottom: none; }

  /* SECTIONS */
  .section { padding: 48px 5%; }
  .section-alt { padding: 48px 5%; }
  .section-navy { padding: 48px 5%; }
  h2 { font-size: 26px; }
  .section-lead { font-size: 15px; margin-bottom: 32px; }

  /* GRIDS */
  .grid4 { grid-template-columns: 1fr 1fr; gap: 12px; }
  .grid3 { grid-template-columns: 1fr; gap: 14px; }
  .grid2 { grid-template-columns: 1fr; gap: 16px; }

  /* WHY ROW */
  .why-row { flex-direction: column; gap: 32px; }
  .why-row.flip { flex-direction: column; }
  .why-img { flex: none; width: 100%; height: 220px; }

  /* SERVICES ALTERNATING ROWS */
  .svc-row { flex-direction: column; min-height: auto; }
  .svc-row.flip { flex-direction: column; }
  .svc-row-img { flex: none; height: 220px; width: 100%; }
  .svc-row-content { padding: 32px 5%; }
  .svc-row-content h3 { font-size: 20px; }

  /* CAROUSELS */
  .svc-carousel .carousel-track { height: 280px; }
  .svc-carousel .carousel-slide { height: 280px; }
  .svc-slide-title { font-size: 18px; }
  .svc-slide-bar { flex-direction: column; gap: 12px; align-items: flex-start; padding: 20px 5% 16px; }

  .val-carousel .carousel-slide { padding: 40px 8%; height: auto; min-height: 260px; }
  .val-carousel h3 { font-size: 20px; }
  .val-carousel p { font-size: 14px; }

  .testi-carousel .carousel-slide { padding: 40px 8%; min-height: 280px; }
  .testi-quote { font-size: 15px; }

  /* LEADER CARDS */
  .leader-card { flex-direction: column; }
  .leader-photo { width: 100%; height: 160px; }

  /* NEWS GRID */
  .news-card .news-thumb { height: 120px; }

  /* CONTACT */
  .contact-row { grid-template-columns: 1fr; gap: 32px; }
  .form-row2 { grid-template-columns: 1fr; }

  /* PARTNER STRIP */
  .partner-strip { padding: 28px 5%; }
  .partner-logos { flex-wrap: wrap; justify-content: center; gap: 10px; }
  .partner-logo { width: 100px; }

  /* CONNECT BAR */
  .connect-bar { flex-direction: column; padding: 36px 5%; text-align: center; gap: 20px; }
  .connect-bar h3 { font-size: 20px; }

  /* FOOTER */
  footer { padding: 40px 5% 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-brand p { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  .grid4 { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
}
