:root {
  --navy: #00193c;
  --navy-2: #002d62;
  --orange: #ff6b00;
  --yellow: #ffd700;
  --green: #10b981;
  --ink: #111827;
  --muted: #5f6b7a;
  --line: #d6dbe3;
  --soft: #f3f4f6;
  --soft-2: #e7e8ea;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 45, 98, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3 { margin: 0 0 1rem; color: var(--navy); line-height: 1.12; letter-spacing: 0; }
h1 { font-size: 3.5rem; font-weight: 800; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }
ul { margin: 0; padding: 0; }
li { list-style: none; }

.container { width: min(1280px, calc(100% - 48px)); margin-inline: auto; }
.skip-link {
  position: absolute;
  top: 12px;
  left: -999px;
  z-index: 50;
  padding: .75rem 1rem;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
}
.skip-link:focus { left: 12px; }
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-logo {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 800;
  white-space: nowrap;
}
.primary-nav { margin-left: auto; }
.primary-menu { display: flex; align-items: center; gap: 1.5rem; }
.primary-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 72px;
  color: #1f2937;
  font-size: .95rem;
  font-weight: 500;
}
.primary-menu li.is-active a,
.primary-menu a:hover { color: var(--navy); }
.primary-menu li.is-active a::after,
.primary-menu a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 3px;
  background: var(--orange);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}
.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover,
button:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.button--primary { color: var(--white); background: var(--navy); }
.button--cta,
.tracking-card button,
.subscribe-box button,
.footer-newsletter button { color: var(--white); background: var(--orange); }
.button--ghost-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, .45);
  background: transparent;
}
.text-link {
  color: var(--navy);
  font-weight: 700;
  border-bottom: 2px solid var(--orange);
}

.eyebrow,
.content-label,
.section-kicker {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--orange);
  font-size: .75rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.pill-label {
  display: inline-flex;
  padding: .35rem .75rem;
  margin: 0 0 1rem;
  color: #7a3000;
  background: #ffdbcc;
  border-radius: 8px;
  font-weight: 600;
}

.home-hero,
.about-hero {
  min-height: 620px;
  display: flex;
  align-items: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
}
.home-hero h1,
.home-hero p,
.about-hero h1,
.about-hero p,
.solutions-hero h1,
.solutions-hero p,
.page-hero--navy h1,
.page-hero--navy p { color: var(--white); }
.home-hero__copy,
.about-hero .container,
.solutions-hero .container { max-width: 700px; }
.home-hero__copy p,
.about-hero p,
.solutions-hero p { font-size: 1.05rem; color: rgba(255, 255, 255, .82); }

.tracking-card {
  display: flex;
  gap: .75rem;
  width: min(620px, 100%);
  padding: .75rem;
  margin: 2rem 0 1rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  padding: .75rem .9rem;
  color: var(--ink);
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: var(--white);
  font: inherit;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 2px rgba(0, 45, 98, .12);
}
.tracking-card input { border: 0; }
.tracking-card button { flex: 0 0 auto; }
.trusted-row { font-size: .82rem; font-weight: 700; color: rgba(255, 255, 255, .78); text-transform: uppercase; }

.stats-band { margin-top: -52px; position: relative; z-index: 3; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.stats-grid div { padding: 2rem; border-right: 1px solid var(--line); }
.stats-grid div:last-child { border-right: 0; }
.stats-grid strong { display: block; color: var(--navy); font-size: 2.4rem; line-height: 1; }
.stats-grid span { display: block; margin-top: .35rem; color: var(--muted); font-size: .8rem; font-weight: 700; text-transform: uppercase; }
.stats-grid p { margin: .5rem 0 0; font-size: .9rem; }

.section { padding: 5rem 0; }
.section--soft { background: var(--soft-2); }
.section--navy { color: var(--white); background: var(--navy-2); }
.section--navy h2,
.section--navy h3,
.section--navy p { color: var(--white); }
.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.section-title-row p,
.section-head p { max-width: 700px; }
.section-head { margin-bottom: 2rem; }
.section-head--center { text-align: center; }
.section-head--center p { margin-inline: auto; }

.service-grid {
  display: grid;
  gap: 1.5rem;
}
.service-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card,
.post-card,
.leader-card,
.solution-card,
.sidebar-box,
.testimonial-card,
.featured-article,
.cta-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 0 0 rgba(0, 45, 98, 0);
}
.service-card {
  min-height: 100%;
  padding: 1.5rem;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover,
.post-card:hover,
.solution-card:hover,
.leader-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 45, 98, .22);
  box-shadow: var(--shadow);
}
.service-card--large { padding: 2rem; }
.service-card h2 { font-size: 1.45rem; }
.service-card ul { display: grid; gap: .4rem; margin: 1rem 0 1.25rem; }
.service-card li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--muted);
}
.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--orange);
}
.service-card a,
.post-card a,
.solution-feature a { color: var(--orange); font-weight: 700; }
.icon-chip {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.1rem;
  color: var(--navy);
  background: #e8edf4;
  border-radius: 8px;
  font-size: .75rem;
  font-weight: 800;
}
.icon-chip--orange { color: var(--white); background: var(--orange); }

.split-block {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
  align-items: center;
  gap: 4rem;
}
.split-block--light h2,
.split-block--light h3 { color: var(--navy); }
.split-block--light p { color: var(--muted); }
.feature-list { display: grid; gap: 1.3rem; margin: 2rem 0; }
.feature-list > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
}
.feature-list span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
}
.feature-list p { margin-bottom: 0; }
.feature-list--light span { color: var(--navy); border-color: var(--navy); background: var(--white); }
.media-frame {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.image-stat { position: relative; }
.image-stat > div {
  position: absolute;
  left: 2rem;
  bottom: -1.75rem;
  padding: 1.3rem 1.5rem;
  color: var(--white);
  background: var(--navy-2);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.image-stat strong { display: block; font-size: 2rem; line-height: 1; }
.image-stat span { text-transform: uppercase; font-size: .85rem; font-weight: 700; }

.partner-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
  color: #8a93a1;
  text-align: center;
  text-transform: uppercase;
}
.partner-row span { width: 100%; font-size: .75rem; letter-spacing: .16em; }
.partner-row strong { color: #8a8f96; font-size: 1.05rem; }
.testimonial-card {
  max-width: 760px;
  margin-inline: auto;
  padding: 2rem;
}
.testimonial-card p { color: var(--navy); font-style: italic; }
.testimonial-card span { display: block; color: var(--muted); font-size: .85rem; }

.cta-section {
  color: var(--white);
  background: var(--navy-2);
  padding: 4rem 0;
}
.cta-inner { text-align: center; max-width: 760px; }
.cta-inner h2,
.cta-inner p { color: var(--white); }
.cta-actions,
.hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.page-hero {
  padding: 5rem 0;
  background: linear-gradient(120deg, var(--white), var(--soft));
  border-bottom: 1px solid var(--line);
}
.page-hero--navy { background: var(--navy); }
.page-hero__center { max-width: 820px; text-align: center; }
.content-narrow {
  max-width: 820px;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.content-narrow ul { padding-left: 1.2rem; margin-bottom: 1rem; }
.content-narrow li { list-style: disc; color: var(--muted); }

.solutions-hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--navy);
}
.solutions-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.5rem;
}
.solution-feature {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(0, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.solution-feature img { height: 100%; object-fit: cover; }
.solution-feature > div { padding: 2rem; }
.solution-feature ul { display: grid; gap: .35rem; margin: 1rem 0; color: var(--muted); }
.solution-card { padding: 2rem; }
.solution-card--navy { color: var(--white); background: var(--navy); border-color: var(--navy); }
.solution-card--navy h3,
.solution-card--navy p,
.solution-card--navy blockquote { color: var(--white); }
.solution-card blockquote {
  margin: 1.5rem 0 0;
  padding: 1rem;
  border-left: 3px solid var(--orange);
  background: rgba(255, 255, 255, .08);
  border-radius: 8px;
  font-weight: 700;
}
.solution-card img {
  width: calc(100% + 4rem);
  max-width: none;
  height: 180px;
  margin: -2rem -2rem 1.25rem;
  object-fit: cover;
}
.solution-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: var(--soft-2);
  border-radius: 8px;
}
.solution-wide img {
  width: 220px;
  height: 220px;
  border-radius: 999px;
  object-fit: cover;
  justify-self: center;
}
.mini-stats { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 1rem; }
.mini-stats span { color: var(--muted); font-size: .8rem; text-transform: uppercase; }
.mini-stats strong { display: block; color: var(--orange); font-size: 1.1rem; }
.metric-strip { color: var(--white); background: var(--navy-2); padding: 1.6rem 0; }
.metric-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.metric-strip strong { display: block; color: var(--orange); font-size: 1.05rem; }
.cta-panel {
  max-width: 1100px;
  margin-inline: auto;
  padding: 4rem 2rem;
  text-align: center;
}

.about-hero { min-height: 520px; }
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 5rem;
  max-width: 900px;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--line);
}
.timeline div { position: relative; padding: 1rem 0; }
.timeline div:nth-child(odd) { text-align: right; }
.timeline strong {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: .75rem;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
  font-size: .8rem;
}
.timeline div:nth-child(4) strong { background: var(--orange); }
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.leader-card { padding: 1.5rem; }
.leader-card > div {
  display: grid;
  place-items: center;
  height: 180px;
  margin-bottom: 1rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #23467c);
  border-radius: 8px;
  font-size: 2.8rem;
  font-weight: 800;
}
.leader-card span {
  display: block;
  margin-bottom: .75rem;
  color: var(--orange);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
}
.cert-strip {
  padding: 1.5rem 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cert-strip .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  color: var(--muted);
  font-weight: 600;
}

.blog-hero {
  padding: 6rem 0 8rem;
  color: var(--white);
  background: var(--navy-2);
}
.blog-hero__inner {
  max-width: 820px;
  text-align: center;
}
.blog-hero h1,
.blog-hero p { color: var(--white); }
.blog-metrics {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.blog-metrics span {
  min-width: 180px;
  padding: 1rem;
  color: rgba(255, 255, 255, .86);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}
.blog-metrics strong { display: block; color: var(--white); }
.blog-section { margin-top: -5rem; }
.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2rem;
  align-items: start;
}
.featured-article {
  display: grid;
  grid-template-columns: 1.2fr .85fr;
  overflow: hidden;
  margin-bottom: 2rem;
}
.featured-article img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.featured-article > div { padding: 3rem; align-self: center; }
.filter-row {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.filter-pill {
  min-width: 140px;
  padding: .45rem .9rem;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  font-size: .85rem;
}
.filter-pill.is-active { color: var(--white); background: var(--navy); border-color: var(--navy); }
.post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.post-card { overflow: hidden; }
.post-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.post-card div { padding: 1.25rem; }
.post-card span { display: block; margin-bottom: .5rem; color: var(--muted); font-size: .8rem; }
.blog-sidebar { display: grid; gap: 1.5rem; }
.sidebar-box { padding: 1.5rem; }
.subscribe-box { color: var(--white); background: var(--navy); border-color: var(--navy); }
.subscribe-box h2,
.subscribe-box p { color: var(--white); }
.subscribe-box form,
.footer-newsletter div { display: grid; gap: .75rem; }
.topic-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.topic-tags span {
  padding: .35rem .55rem;
  color: var(--muted);
  background: var(--soft);
  border-radius: 8px;
  font-size: .8rem;
}
.pagination { margin-top: 2rem; }

.site-footer {
  color: var(--white);
  background: var(--navy);
  padding-top: 3.5rem;
}
.site-footer p,
.site-footer a,
.site-footer li { color: rgba(255, 255, 255, .76); }
.site-footer a:hover { color: var(--white); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.footer-logo {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
}
.site-footer h2 {
  color: var(--yellow);
  font-size: .85rem;
  text-transform: uppercase;
}
.site-footer li { margin-bottom: .5rem; }
.footer-newsletter { margin-top: 1rem; }
.footer-newsletter label { display: block; margin-bottom: .5rem; color: var(--white); font-weight: 700; }
.footer-newsletter div {
  grid-template-columns: 1fr 58px;
  gap: 0;
}
.footer-newsletter input {
  border-radius: 8px 0 0 8px;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .28);
  color: var(--white);
}
.footer-newsletter button { border-radius: 0 8px 8px 0; }
.footer-bottom {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .9rem;
}
.footer-bottom p { margin: 0 auto 0 0; }

@media (max-width: 1020px) {
  h1 { font-size: 2.7rem; }
  h2 { font-size: 1.75rem; }
  .service-grid--four,
  .service-grid--three,
  .leadership-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split-block,
  .blog-layout,
  .solutions-grid { grid-template-columns: 1fr; }
  .solution-feature,
  .featured-article { grid-template-columns: 1fr; }
  .featured-article img { min-height: 260px; }
  .solution-wide { grid-template-columns: 1fr; }
  .metric-strip .container { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 32px, 1280px); }
  .nav-shell { min-height: 64px; }
  .menu-toggle { display: block; }
  .primary-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 16px;
    right: 16px;
    padding: .75rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open { display: block; }
  .primary-menu { display: grid; gap: .25rem; }
  .primary-menu a {
    min-height: 44px;
    padding: 0 .5rem;
  }
  .primary-menu li.is-active a::after,
  .primary-menu a:hover::after { bottom: 4px; }
  .home-hero,
  .about-hero,
  .solutions-hero { min-height: 520px; }
  .tracking-card { display: grid; }
  .tracking-card button { width: 100%; }
  .stats-band { margin-top: 0; }
  .stats-grid,
  .service-grid--four,
  .service-grid--three,
  .leadership-grid,
  .post-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid div { border-right: 0; border-bottom: 1px solid var(--line); }
  .stats-grid div:last-child { border-bottom: 0; }
  .section-title-row { display: grid; }
  .timeline { grid-template-columns: 1fr; gap: 1rem; }
  .timeline::before { display: none; }
  .timeline div,
  .timeline div:nth-child(odd) { text-align: left; }
  .metric-strip .container { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
  .footer-bottom p { margin: 0; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.55rem; }
  .home-hero__copy p,
  .about-hero p,
  .solutions-hero p { font-size: 1rem; }
  .section { padding: 3.5rem 0; }
  .featured-article > div,
  .service-card--large,
  .solution-feature > div,
  .solution-card { padding: 1.25rem; }
  .solution-card img { width: calc(100% + 2.5rem); margin: -1.25rem -1.25rem 1rem; }
}
