/* ==========================================================================
   Synerje Global Solutions — main stylesheet
   Palette drawn from brand logo: deep navy, brushed gold, clear blue accent.
   ========================================================================== */

:root {
  --navy-950: #0a1526;
  --navy-900: #0e1c31;
  --navy-800: #142440;
  --navy-700: #1c3054;
  --navy-600: #27406e;
  --gold-500: #b3923c;
  --gold-400: #c7a552;
  --gold-300: #d9bc74;
  --gold-700: #8a6f28; /* AA-contrast gold for text on light backgrounds */
  --blue-500: #2a6da6;
  --blue-400: #4d9bd8;
  --ink-900: #17233a;
  --ink-700: #33415c;
  --ink-500: #52617d;
  --line-200: #dde3ec;
  --paper-0: #ffffff;
  --paper-50: #f6f8fb;
  --paper-100: #eef1f6;

  --font-sans: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto,
    "Helvetica Neue", Arial, sans-serif;

  --max-w: 1180px;
  --radius: 6px;
  --shadow-1: 0 1px 3px rgba(14, 28, 49, 0.08), 0 4px 14px rgba(14, 28, 49, 0.06);
  --shadow-2: 0 6px 24px rgba(14, 28, 49, 0.13);
  --header-h: 76px;
}

/* --------------------------------------------------------------------------
   Reset / base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-900);
  background: var(--paper-0);
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--navy-900);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.15rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.28rem; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; }

a {
  color: var(--blue-500);
  text-decoration: none;
}

a:hover { text-decoration: underline; }

ul { padding-left: 1.2em; }

strong { color: var(--navy-900); }

/* Keyboard focus — high-visibility ring on everything */
:focus-visible {
  outline: 3px solid var(--blue-400);
  outline-offset: 2px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--navy-900);
  color: #fff;
  padding: 0.7rem 1.2rem;
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
}

/* --------------------------------------------------------------------------
   Layout helpers
   -------------------------------------------------------------------------- */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: clamp(3.2rem, 7vw, 5.5rem) 0;
}

.section--tint { background: var(--paper-50); }
.section--navy {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: #d9e1ee;
}
.section--navy h2,
.section--navy h3 { color: #fff; }

/* Kicker label above headings */
.kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 0.9rem;
}

.section--navy .kicker { color: var(--gold-300); }

.section-head {
  max-width: 720px;
  margin-bottom: 2.6rem;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lead {
  font-size: 1.16rem;
  color: var(--ink-700);
}

.section--navy .lead { color: #b9c6da; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.82rem 1.7rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn:hover { text-decoration: none; }

.btn--primary {
  background: var(--gold-500);
  color: var(--navy-950);
  border-color: var(--gold-500);
}

.btn--primary:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
}

.btn--navy {
  background: var(--navy-800);
  color: #fff;
  border-color: var(--navy-800);
}

.btn--navy:hover {
  background: var(--navy-700);
  border-color: var(--navy-700);
}

.btn--ghost {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--navy-800);
}

.btn--ghost:hover {
  background: var(--navy-800);
  color: #fff;
}

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}

.btn--ghost-light:hover {
  background: #fff;
  color: var(--navy-900);
  border-color: #fff;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line-200);
  backdrop-filter: blur(6px);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand img {
  height: 46px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--navy-800);
  border-radius: var(--radius);
  padding: 0.45rem 0.7rem;
  cursor: pointer;
  color: var(--navy-800);
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a,
.site-nav .nav-drop-btn {
  display: block;
  padding: 0.6rem 0.85rem;
  color: var(--ink-900);
  font-weight: 600;
  font-size: 0.99rem;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav .nav-drop-btn:hover {
  text-decoration: none;
  color: var(--blue-500);
}

.site-nav a[aria-current="page"] {
  color: var(--blue-500);
  box-shadow: inset 0 -3px 0 var(--gold-500);
  border-radius: 0;
}

.nav-cta {
  margin-left: 0.6rem;
}

.site-nav .nav-cta a {
  background: var(--navy-800);
  color: #fff;
  padding: 0.6rem 1.2rem;
}

.site-nav .nav-cta a:hover {
  background: var(--navy-700);
  color: #fff;
}

/* Dropdown */
.nav-drop { position: relative; }

.nav-drop-btn::after {
  content: "";
  display: inline-block;
  margin-left: 0.45em;
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.15s ease;
}

.nav-drop-btn[aria-expanded="true"]::after {
  transform: rotate(225deg) translateY(-2px);
}

.site-nav ul.nav-drop-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 250px;
  background: #fff;
  border: 1px solid var(--line-200);
  border-top: 3px solid var(--gold-500);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-2);
  padding: 0.45rem 0;
  display: none;
  flex-direction: column;
  align-items: stretch;
}

.site-nav ul.nav-drop-menu.is-open { display: flex; }

/* Invisible hover bridge across the 6px gap between button and menu,
   so the pointer never "leaves" the dropdown while crossing it. */
.site-nav ul.nav-drop-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-drop-menu li { width: 100%; }

.nav-drop-menu a {
  padding: 0.62rem 1.2rem;
  font-weight: 500;
  border-radius: 0;
}

.nav-drop-menu a:hover {
  background: var(--paper-50);
  color: var(--blue-500);
}

/* --------------------------------------------------------------------------
   Hero (homepage, video)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--navy-950);
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Rotating hero clips: both videos stacked, crossfaded via opacity */
.hero-media .hero-vid {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-media .hero-vid.is-active { opacity: 1; }

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
      rgba(10, 21, 38, 0.93) 0%,
      rgba(10, 21, 38, 0.82) 45%,
      rgba(10, 21, 38, 0.55) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 9vw, 7.5rem) 0;
  max-width: 780px;
}

.hero h1 {
  color: #fff;
  margin-bottom: 0.5em;
}

.hero .kicker { color: var(--gold-300); }

.hero-sub {
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  color: #ccd7e6;
  max-width: 640px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  margin-top: 2rem;
  padding: 0;
  list-style: none;
  font-size: 0.98rem;
  color: #b9c6da;
}

.hero-facts li strong {
  color: var(--gold-300);
  font-size: 1.15rem;
  margin-right: 0.35rem;
}

/* Page hero (interior pages, image band) */
.page-hero {
  position: relative;
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
}

.page-hero-media {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
      rgba(10, 21, 38, 0.92) 0%,
      rgba(10, 21, 38, 0.72) 55%,
      rgba(10, 21, 38, 0.45) 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: clamp(3.2rem, 7vw, 5.2rem) 0;
  max-width: 760px;
}

.page-hero h1 { color: #fff; }

.page-hero p {
  color: #ccd7e6;
  font-size: 1.14rem;
  margin-bottom: 0;
}

.page-hero .kicker { color: var(--gold-300); }

/* Breadcrumb */
.crumbs {
  position: relative;
  z-index: 1;
  font-size: 0.88rem;
  margin-bottom: 1.4rem;
}

.crumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
}

.crumbs li + li::before {
  content: "/";
  margin-right: 0.4rem;
  color: #7f92ad;
}

.crumbs a { color: #b9c6da; }
.crumbs [aria-current="page"] { color: var(--gold-300); }

/* --------------------------------------------------------------------------
   Cards & grids
   -------------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: 1.4rem;
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line-200);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow-1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  border-radius: var(--radius) var(--radius) 0 0;
  transition: background-color 0.18s ease;
}

.card:hover::before,
.card:focus-within::before { background: var(--gold-500); }

.card h3 { margin-bottom: 0.45em; }

.card p {
  color: var(--ink-700);
  font-size: 0.99rem;
  margin-bottom: 0;
}

.card .card-link {
  margin-top: auto;
  padding-top: 1.1rem;
  font-weight: 600;
  font-size: 0.96rem;
}

.card .card-link a::after { content: " \2192"; }

/* Stretch a single link over the whole card */
.card--clickable .stretch::before {
  content: "";
  position: absolute;
  inset: 0;
}

.card--clickable:hover {
  box-shadow: var(--shadow-2);
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--paper-100);
  color: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

/* Image cards (solutions overview) */
.card--img {
  padding: 0;
  overflow: hidden;
}

.card--img img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.card--img .card-body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* --------------------------------------------------------------------------
   Differentiator boxes (homepage strip under hero)
   -------------------------------------------------------------------------- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.diff-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-200);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem 1.35rem;
  text-align: center;
  font-size: 0.99rem;
  color: var(--ink-700);
  box-shadow: var(--shadow-1);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.diff-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.diff-card:hover,
.diff-card:focus-within {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2);
}

.diff-card:hover::before,
.diff-card:focus-within::before {
  transform: scaleX(1);
}

.diff-card strong {
  display: block;
  font-size: 1.06rem;
  color: var(--navy-800);
  margin-bottom: 0.25rem;
}

@media (max-width: 820px) {
  .diff-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Stat band
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  text-align: center;
}

.stat b {
  display: block;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 700;
  color: var(--gold-300);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.stat span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.94rem;
  color: #b9c6da;
}

/* On light backgrounds */
.section--tint .stat b,
.section:not(.section--navy) .stat b { color: var(--navy-800); }
.section--navy .stat b { color: var(--gold-300); }
.section:not(.section--navy) .stat span { color: var(--ink-500); }
.section--navy .stat span { color: #b9c6da; }

/* --------------------------------------------------------------------------
   Footprint / regions
   -------------------------------------------------------------------------- */
.regions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.region {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid var(--gold-500);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
}

.region h3 {
  font-size: 1.06rem;
  color: #fff;
  margin-bottom: 0.35em;
}

.region .aor {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.region p {
  color: #b9c6da;
  font-size: 0.96rem;
  margin: 0.45em 0 0;
}

/* Office table */
.office-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.6rem;
}

.office-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 0.85rem;
}

.office-list b {
  color: #fff;
  display: block;
}

.office-list span {
  color: #b9c6da;
  font-size: 0.93rem;
}

/* --------------------------------------------------------------------------
   Split layouts (text + image)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split--rev { grid-template-columns: 0.95fr 1.05fr; }

.split-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
  width: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   Checklist / feature lists
   -------------------------------------------------------------------------- */
.checklist {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

.checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.85rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 0.95em;
  height: 0.5em;
  border-left: 3px solid var(--gold-500);
  border-bottom: 3px solid var(--gold-500);
  transform: rotate(-45deg);
}

.section--navy .checklist li { color: #d9e1ee; }

/* Identifier / registration table */
.id-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.99rem;
}

.id-table th,
.id-table td {
  text-align: left;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--line-200);
  vertical-align: top;
}

.id-table th {
  white-space: nowrap;
  color: var(--navy-800);
  font-weight: 700;
  width: 34%;
}

.id-table td { color: var(--ink-700); }

/* --------------------------------------------------------------------------
   Partner band
   -------------------------------------------------------------------------- */
.partner-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.4rem;
}

.partner-col {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
}

.partner-col h3 {
  color: var(--gold-300);
  font-size: 1.08rem;
}

.partner-col p {
  color: #c5d1e2;
  font-size: 0.98rem;
  margin: 0;
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(2.2rem, 5vw, 3.4rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}

.cta-band h2 {
  color: #fff;
  margin: 0 0 0.3em;
}

.cta-band p {
  color: #b9c6da;
  margin: 0;
  max-width: 560px;
}

/* --------------------------------------------------------------------------
   Forms (contact)
   -------------------------------------------------------------------------- */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem 1.3rem;
}

.form-field { display: flex; flex-direction: column; }

.form-field--full { grid-column: 1 / -1; }

.form-field label {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: var(--navy-800);
}

.form-field .req { color: #b3261e; }

.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.72rem 0.85rem;
  border: 1.5px solid #b6c0d0;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink-900);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid var(--blue-400);
  outline-offset: 1px;
  border-color: var(--blue-500);
}

.form-note {
  font-size: 0.9rem;
  color: var(--ink-500);
}

/* Contact routing cards */
.route-card {
  border-left: 4px solid var(--gold-500);
}

.route-card .route-meta {
  margin-top: 0.9rem;
  font-size: 0.98rem;
}

.route-card .route-meta a { font-weight: 600; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-950);
  color: #b9c6da;
  padding: 3.6rem 0 0;
  font-size: 0.97rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.4rem;
  padding-bottom: 2.6rem;
}

.site-footer h4 {
  color: #fff;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li { margin-bottom: 0.55rem; }

.site-footer a { color: #b9c6da; }

.site-footer a:hover { color: #fff; }

.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 1.1rem;
  background: #fff;
  padding: 6px 10px;
  border-radius: var(--radius);
}

.footer-brand p {
  max-width: 300px;
  font-size: 0.94rem;
}

.footer-ids {
  font-size: 0.9rem;
  line-height: 1.9;
}

.footer-ids b { color: #fff; font-weight: 600; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.3rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: #8fa0b8;
}

/* --------------------------------------------------------------------------
   Service detail template
   -------------------------------------------------------------------------- */
.svc-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(2rem, 5vw, 3.6rem);
  align-items: start;
}

.svc-aside {
  position: sticky;
  top: calc(var(--header-h) + 1.2rem);
  display: grid;
  gap: 1.3rem;
}

.aside-box {
  background: var(--paper-50);
  border: 1px solid var(--line-200);
  border-top: 3px solid var(--gold-500);
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.5rem;
}

.aside-box h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.aside-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aside-box li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line-200);
  font-size: 0.96rem;
}

.aside-box li:last-child { border-bottom: 0; }

.aside-box--navy {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: #d9e1ee;
}

.aside-box--navy h3 { color: #fff; }

.aside-box--navy .stat-mini b {
  color: var(--gold-300);
  font-size: 1.5rem;
  display: block;
  line-height: 1.15;
}

.aside-box--navy .stat-mini span {
  font-size: 0.9rem;
  color: #b9c6da;
}

.aside-box--navy .stat-mini {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.aside-box--navy .stat-mini:last-child { border-bottom: 0; }

/* Offering list on service pages */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 1.6rem;
}

.offer {
  background: #fff;
  border: 1px solid var(--line-200);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem;
}

.offer h3 {
  font-size: 1.03rem;
  margin-bottom: 0.35em;
}

.offer p {
  font-size: 0.95rem;
  color: var(--ink-700);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Values / numbered feature rows
   -------------------------------------------------------------------------- */
.value-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.3rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line-200);
}

.value-row:last-child { border-bottom: 0; }

.value-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-700);
  line-height: 1;
  padding-top: 0.2rem;
}

.value-row h3 { margin-bottom: 0.3em; }

.value-row p {
  color: var(--ink-700);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1020px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .svc-layout { grid-template-columns: 1fr; }
  .svc-aside { position: static; grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 2rem; }
  .partner-cols { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .split,
  .split--rev { grid-template-columns: 1fr; }
  .split-img { order: -1; }
  .regions { grid-template-columns: 1fr; }
  .office-list { grid-template-columns: 1fr; }

  /* Mobile nav */
  .nav-toggle { display: inline-block; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line-200);
    box-shadow: var(--shadow-2);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .site-nav.is-open { display: block; }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 0.6rem 0;
    gap: 0;
  }

  .site-nav a,
  .site-nav .nav-drop-btn {
    padding: 0.85rem 1.4rem;
    width: 100%;
    text-align: left;
  }

  .site-nav ul.nav-drop-menu {
    position: static;
    border: 0;
    border-left: 3px solid var(--gold-500);
    box-shadow: none;
    margin: 0 0 0.4rem 1.4rem;
    padding: 0;
    min-width: 0;
  }

  .nav-cta { margin: 0.4rem 1.4rem 0.6rem; }
  .site-nav .nav-cta a { text-align: center; }
}

@media (max-width: 560px) {
  .grid--4,
  .grid--3,
  .grid--2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .svc-aside { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: 1fr; }
  .brand img { height: 38px; }
}

/* --------------------------------------------------------------------------
   Print — keep it readable
   -------------------------------------------------------------------------- */
@media print {
  .site-header,
  .site-footer,
  .nav-toggle,
  .btn { display: none !important; }
  .hero,
  .page-hero,
  .section--navy {
    background: #fff !important;
    color: #000 !important;
  }
}
