/* ═══════════════════════════════════════════════════════════════
   Straxil – Enterprise Consulting – Redesigned Stylesheet
   Inspired by PwC / BCG visual language, preserving Straxil brand
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  /* Brand palette (preserved) */
  --brand-primary: #005ebb;
  --brand-primary-strong: #004285;
  --brand-navy: #001b36;
  --brand-navy-soft: #143158;
  --accent-glow: #4dabff;

  /* Backgrounds */
  --bg-page: #f5f8fc;
  --bg-surface: #ffffff;
  --bg-muted: #eef3f9;
  --bg-deep: #0b1f3c;

  /* Text */
  --text-strong: #0e2342;
  --text-body: #25364f;
  --text-muted: #5d6d84;
  --text-inverse: #f8fbff;

  /* Borders */
  --border-subtle: #d8e2ef;
  --border-strong: #c0d0e4;

  /* Focus */
  --focus-ring: #0f7de3;

  /* Typography */
  --font-body: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Space Grotesk', 'Avenir Next', sans-serif;

  --text-xs: .8125rem;
  --text-sm: .9375rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.375rem;
  --text-xl: clamp(1.8rem, 1.6vw + 1.3rem, 2.6rem);
  --text-2xl: clamp(2.4rem, 3vw + 1rem, 4rem);

  /* Spacing */
  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --space-9: 6rem;

  /* Radius */
  --radius-sm: .5rem;
  --radius-md: .9rem;
  --radius-lg: 1.4rem;

  /* Shadows */
  --shadow-soft: 0 16px 40px rgba(8,28,57,.1);
  --shadow-lift: 0 24px 56px rgba(8,28,57,.16);
  --shadow-card: 0 4px 20px rgba(12,34,62,.06);

  /* Layout */
  --container-max: 1240px;
  --container-wide: 1360px;

  /* Animation */
  --ease-base: 220ms ease;
  --ease-slow: 700ms cubic-bezier(.2,0,0,1);
}

/* ─── Base ────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
html, body { min-height: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-body);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
p { margin: 0 0 var(--space-5); }

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--space-4);
  color: var(--text-strong);
  line-height: 1.15;
}
h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: -.025em;
}
h1 { font-size: var(--text-2xl); font-weight: 700; }
h2 { font-size: var(--text-xl); font-weight: 650; }
h3 { font-size: clamp(1.15rem,.8vw+.95rem,1.4rem); font-weight: 600; }

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  border: 0; white-space: nowrap;
}

.skip-link {
  position: absolute; top: -120px; left: 16px; z-index: 1200;
  padding: .7rem 1rem; border-radius: var(--radius-sm);
  font-size: var(--text-sm); color: #fff;
  background: var(--brand-navy); text-decoration: none;
  transition: top var(--ease-base);
}
.skip-link:focus { top: 16px; }

/* ─── Layout ──────────────────────────────────────────────── */
.container {
  width: min(var(--container-max), calc(100% - 3rem));
  margin-inline: auto;
}
.container--narrow {
  width: min(980px, calc(100% - 3rem));
}
.container--wide {
  width: min(var(--container-wide), calc(100% - 3rem));
  margin-inline: auto;
}

/* ─── Header & Navigation ─────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(245,248,252,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background var(--ease-base), border-color var(--ease-base), box-shadow var(--ease-base);
}
.site-header.scrolled {
  background: rgba(255,255,255,.96);
  border-bottom-color: var(--border-subtle);
  box-shadow: 0 4px 24px rgba(7,22,44,.07);
}

.navbar {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: var(--space-5); min-height: 80px;
}
.site-logo { text-decoration: none; }
.site-logo .logo { display: inline-flex; align-items: center; }

.logo-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 1.4vw + 1rem, 2.6rem);
  letter-spacing: -.03em;
  color: var(--brand-primary);
  line-height: 1;
}
.logo-word .i { position: relative; display: inline-block; }
.logo-word .i::after {
  content: ''; position: absolute; top: 2px; left: 50%;
  width: .3rem; height: .3rem; border-radius: 999px;
  transform: translateX(-50%); background: var(--text-strong);
}

nav.primary { margin-left: auto; }

#primaryNav {
  display: flex; align-items: center; gap: 1.3rem;
  margin: 0; padding: 0; list-style: none;
}
nav.primary a {
  position: relative; display: inline-flex; align-items: center;
  padding: .35rem 0; font-size: var(--text-sm); font-weight: 560;
  color: var(--text-body); text-decoration: none;
  transition: color var(--ease-base);
}
nav.primary a::after {
  content: ''; position: absolute; left: 0; bottom: -.3rem;
  width: 100%; height: 2.5px; border-radius: 2px;
  transform-origin: left center; transform: scaleX(0);
  background: var(--brand-primary);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
}
nav.primary a:hover,
nav.primary a[aria-current='page'] { color: var(--brand-primary); }
nav.primary a:hover::after,
nav.primary a[aria-current='page']::after { transform: scaleX(1); }

.search {
  display: flex; align-items: center; gap: var(--space-2);
}
.search input {
  width: 180px; padding: .55rem .75rem;
  border: 1px solid var(--border-subtle); border-radius: var(--radius-sm);
  background: #fff; font: inherit; font-size: var(--text-sm);
  color: var(--text-body); transition: border-color var(--ease-base);
}
.search input:focus { border-color: var(--brand-primary); }
.search input::placeholder { color: #7e8ba0; }

.hamburger {
  display: none; align-items: center; justify-content: center;
  gap: .27rem; flex-direction: column;
  width: 2.6rem; height: 2.6rem;
  border: 1px solid var(--border-subtle); border-radius: var(--radius-sm);
  background: #fff; cursor: pointer;
  transition: background var(--ease-base);
}
.hamburger:hover { background: var(--bg-muted); }
.hamburger span {
  width: 1.05rem; height: 2px;
  background: var(--text-strong); border-radius: 10px;
}

/* ─── Button System ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--space-2); padding: .78rem 1.5rem;
  border-radius: 999px; border: 1px solid transparent;
  text-decoration: none; font-size: var(--text-sm);
  font-weight: 620; line-height: 1; cursor: pointer;
  transition: transform var(--ease-base), box-shadow var(--ease-base),
    background var(--ease-base), color var(--ease-base), border-color var(--ease-base);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary,
.search .btn,
.btn[type='submit'] {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #0075e9 100%);
  box-shadow: 0 8px 20px rgba(0,94,187,.22);
}
.btn--primary:hover,
.search .btn:hover,
.btn[type='submit']:hover {
  box-shadow: 0 12px 28px rgba(0,94,187,.32);
}

.btn--ghost {
  color: #fff; border-color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.7);
}

.btn--light {
  color: var(--text-strong); border-color: var(--border-subtle);
  background: #fff;
}
.btn--light:hover { border-color: var(--brand-primary); color: var(--brand-primary); }

.btn--dark {
  color: #fff; background: var(--brand-navy);
}
.btn--dark:hover { background: #082751; }

/* Arrow link style */
.arrow-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: var(--text-sm); font-weight: 600;
  color: var(--brand-primary); text-decoration: none;
  transition: gap var(--ease-base);
}
.arrow-link:hover { gap: .65rem; }
.arrow-link::after { content: '→'; }

/* ─── Home Hero ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  overflow: hidden; isolation: isolate;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(100deg,
    rgba(4,16,36,.86) 0%,
    rgba(6,20,42,.72) 35%,
    rgba(8,24,47,.38) 60%,
    rgba(8,24,47,.12) 100%);
}
.hero::after {
  content: ''; position: absolute; inset: auto 0 0 0; z-index: 3;
  height: 180px;
  background: linear-gradient(180deg, rgba(5,16,34,0) 0%, rgba(5,16,34,.6) 100%);
}

.slider, .slider__track, .slider__item {
  position: absolute; inset: 0;
  margin: 0; padding: 0; list-style: none;
}
.slider__item {
  opacity: 0; visibility: hidden;
  transition: opacity var(--ease-slow), visibility var(--ease-slow);
}
.slider__item.is-active,
.slider__item.is-prev { visibility: visible; }
.slider__item.is-active { opacity: 1; z-index: 1; }
.slider__item.is-prev { opacity: 1; z-index: 0; }

.slider__item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.06);
  transition: transform 10s linear;
}
.slider__item.is-active img { transform: scale(1); }

.hero__overlay {
  position: relative; z-index: 5;
  display: grid; align-items: center;
  min-height: min(92vh, 820px);
}
.hero__overlay-box {
  width: min(780px, 100%);
  padding: clamp(1.8rem, 2vw + 1rem, 3rem);
  border: 1px solid rgba(180,210,245,.2);
  border-radius: var(--radius-lg);
  background: rgba(6,20,40,.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero__eyebrow {
  margin-bottom: var(--space-4);
  font-size: var(--text-xs); letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent-glow);
  font-weight: 600;
}
.hero__title { margin-bottom: var(--space-4); color: #fff; }
.hero__subtitle {
  max-width: 58ch; margin-bottom: var(--space-6);
  color: #dfe9f7; font-size: var(--text-md); line-height: 1.65;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ─── Stats Band ──────────────────────────────────────────── */
.stats-band {
  background: var(--brand-navy);
  border-top: 1px solid rgba(77,171,255,.15);
}
.stats-band__inner {
  display: grid; grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.stats-band__item {
  padding: var(--space-6) var(--space-4);
  border-right: 1px solid rgba(255,255,255,.08);
}
.stats-band__item:last-child { border-right: none; }
.stats-band__number {
  display: block; font-family: var(--font-display);
  font-size: clamp(2rem, 2vw + 1rem, 3rem);
  font-weight: 700; color: var(--accent-glow);
  letter-spacing: -.02em;
}
.stats-band__label {
  margin-top: var(--space-2);
  font-size: var(--text-sm); color: #a8c4e0;
  text-transform: uppercase; letter-spacing: .06em;
}

/* ─── Section System ──────────────────────────────────────── */
.section { padding: var(--space-9) 0; }
.section--muted { background: var(--bg-muted); }
.section--dark {
  background: linear-gradient(135deg, var(--brand-navy) 0%, #0e2d54 100%);
  color: #e8f0fa;
}

.section-head {
  display: flex; align-items: end;
  justify-content: space-between;
  gap: var(--space-4); margin-bottom: var(--space-7);
}

.section-label {
  margin-bottom: var(--space-3);
  font-size: var(--text-xs); font-weight: 640;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-primary);
}

.section-title { margin-bottom: var(--space-3); }

.section-intro {
  max-width: 68ch; margin: 0;
  color: var(--text-muted); font-size: var(--text-md);
  line-height: 1.65;
}

/* ─── Grid System ─────────────────────────────────────────── */
.grid { display: grid; gap: clamp(1rem, 2vw, 1.6rem); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ─── Cards ───────────────────────────────────────────────── */
.card {
  position: relative; height: 100%;
  padding: clamp(1.2rem, 1.2vw + 1rem, 1.8rem);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  box-shadow: var(--shadow-card);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.card::before {
  content: ''; position: absolute; left: 0; top: 1.2rem; bottom: 1.2rem;
  width: 3px; border-radius: 0 3px 3px 0;
  background: var(--brand-primary); opacity: 0;
  transition: opacity .28s ease;
}
.card:hover::before { opacity: 1; }

.card--link {
  text-decoration: none; cursor: pointer;
}
.card--link:hover {
  transform: translateY(-5px);
  border-color: #b8d0ea;
  box-shadow: var(--shadow-soft);
}

.card h3 { margin-bottom: var(--space-3); }
.card p { margin-bottom: 0; color: var(--text-muted); line-height: 1.65; }

.card__kicker {
  display: inline-flex; margin-bottom: var(--space-3);
  padding: .2rem .6rem; border-radius: 999px;
  font-size: .72rem; font-weight: 640;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand-primary); background: #e8f1fc;
}

.card__meta {
  display: flex; align-items: center; gap: var(--space-2);
  margin-bottom: var(--space-3);
  font-size: var(--text-xs); color: #77869b;
  text-transform: uppercase; letter-spacing: .08em;
}

.card__summary { margin: 0; color: var(--text-muted); }

.card__favicon { width: 18px; height: 18px; border-radius: 999px; }

.card__media {
  margin: -.4rem -.4rem var(--space-5);
  overflow: hidden;
  border-radius: calc(var(--radius-md) - .15rem);
  border: 1px solid var(--border-subtle);
  background: #e9f0f8; aspect-ratio: 16 / 9;
}
.card__media img { width: 100%; height: 100%; object-fit: cover; }

/* ─── Value Props ─────────────────────────────────────────── */
.value-props { background: transparent; }

/* Icon cards */
.card__icon {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; margin-bottom: var(--space-4);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #e8f2fd 0%, #d5e6f8 100%);
}
.card__icon svg {
  width: 26px; height: 26px;
  stroke: var(--brand-primary); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

/* ─── Quote Section ───────────────────────────────────────── */
.quote {
  padding: var(--space-9) 0;
  background: linear-gradient(135deg, #071e3e 0%, #0d2f58 55%, #184172 100%);
}
.quote__box {
  margin: 0; padding: clamp(1.6rem, 2vw, 3rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(140,190,240,.2);
  color: #eff6ff;
  background: rgba(6,22,44,.3);
  max-width: 900px;
}
.quote__text {
  margin: 0 0 var(--space-5);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.4vw + 1rem, 2.2rem);
  line-height: 1.35; font-weight: 500;
}
.quote__cite {
  font-size: var(--text-sm); letter-spacing: .07em;
  text-transform: uppercase; color: #a3c4e6;
}

/* ─── CTA Band ────────────────────────────────────────────── */
.cta-band {
  padding: var(--space-8) 0;
  background: linear-gradient(125deg, #003b78 0%, var(--brand-primary) 100%);
  color: #f8fbff;
}
.cta__inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: var(--space-6);
}
.cta__title { margin-bottom: var(--space-3); color: #fff; }
.cta__sub { max-width: 60ch; margin: 0; color: #c5dcf5; }

/* ─── Interior Page Hero ──────────────────────────────────── */
.page-main {
  padding-top: var(--space-7);
  padding-bottom: var(--space-9);
}

.breadcrumb {
  display: inline-flex; align-items: center; gap: var(--space-2);
  margin-bottom: var(--space-5);
  font-size: var(--text-sm); color: #7586a0;
}
.breadcrumb a { color: inherit; text-decoration: none; }
.breadcrumb a:hover { color: var(--brand-primary); }
.breadcrumb__sep { color: #9aacbf; }

.page-hero {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(1rem, 2vw, 2rem);
  align-items: stretch; margin-bottom: var(--space-7);
}
.page-hero__content {
  padding: clamp(1.4rem, 1.2vw + 1rem, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: #fff;
  box-shadow: 0 8px 28px rgba(10,31,59,.05);
}
.page-hero__lead {
  margin-bottom: var(--space-5);
  font-size: var(--text-md); color: var(--text-muted);
  line-height: 1.65;
}
.page-hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }

.page-hero__media {
  overflow: hidden; border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle); min-height: 320px;
}
.page-hero__media img,
.interior-hero-img {
  width: 100%; height: 100%; min-height: 320px; object-fit: cover;
}

.page-hero__visual {
  position: relative; min-height: 320px;
  padding: clamp(1.2rem, 1vw + 1rem, 1.8rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  background: linear-gradient(145deg, #072244 0%, #005ebb 100%);
  color: #e8f3ff;
  display: flex; align-items: flex-end; isolation: isolate;
}
.page-hero__visual::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(157,205,255,.25) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(209,228,249,.2) 0%, transparent 45%);
  z-index: -2;
}
.page-hero__visual::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255,255,255,.08) 35%, transparent 80%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.07) 0 2px, transparent 2px 30px);
  z-index: -1;
}
.page-hero__visual-title {
  margin: 0; max-width: 20ch; color: #eff7ff;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, .95vw + 1rem, 1.8rem);
  line-height: 1.3;
}
.page-hero__visual--partners { background: linear-gradient(145deg, #082042 0%, #0e3466 100%); }
.page-hero__visual--insights { background: linear-gradient(145deg, #14345f 0%, #0068c8 100%); }
.page-hero__visual--privacy { background: linear-gradient(145deg, #08213f 0%, #1b4d86 100%); }
.page-hero__visual--terms { background: linear-gradient(145deg, #0b274d 0%, #174271 100%); }
.page-hero__visual--news { background: linear-gradient(145deg, #0d2e57 0%, #0d5dac 100%); }

/* ─── Content Blocks ──────────────────────────────────────── */
.lead { color: var(--text-muted); font-size: var(--text-md); }

.info-box {
  padding: var(--space-6);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: #fff; color: var(--text-body);
}
.info-box h2 { margin-top: var(--space-6); }
.info-box h2:first-child { margin-top: 0; }

.stack { display: grid; gap: var(--space-4); }
.cluster { display: flex; align-items: center; gap: var(--space-3); }
.checklist { margin: 0; padding-left: 1.2rem; }
.checklist li { margin-bottom: var(--space-2); }

/* Numbered steps */
.steps { display: grid; gap: var(--space-5); counter-reset: step; }
.step {
  display: grid; grid-template-columns: auto 1fr;
  gap: var(--space-4); align-items: start;
  counter-increment: step;
}
.step__number {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #0075e9 100%);
  color: #fff; font-family: var(--font-display);
  font-weight: 700; font-size: 1.1rem;
}
.step__content h3 { margin-bottom: var(--space-2); }
.step__content p { margin: 0; color: var(--text-muted); }

/* ─── Forms ───────────────────────────────────────────────── */
.form {
  display: grid; gap: var(--space-4);
  padding: clamp(1.2rem, 1.4vw + 1rem, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: #fff;
  box-shadow: 0 8px 24px rgba(10,30,57,.05);
}
.form-grid {
  display: grid; gap: var(--space-4);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.form-grid .full-span { grid-column: 1 / -1; }

.form label {
  display: inline-block; margin-bottom: var(--space-2);
  font-size: var(--text-sm); font-weight: 600;
  color: var(--text-strong);
}
.form input,
.form textarea,
.form select {
  width: 100%; border: 1px solid var(--border-strong);
  border-radius: .7rem; background: #fff;
  padding: .78rem .9rem; font: inherit; color: var(--text-body);
  transition: border-color var(--ease-base), box-shadow var(--ease-base);
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(0,94,187,.1);
  outline: none;
}
.form textarea { resize: vertical; min-height: 140px; }
.form .agreement {
  display: flex; align-items: flex-start;
  gap: var(--space-2); color: var(--text-muted);
  font-size: var(--text-sm);
}
.form .agreement input { width: auto; margin-top: .22rem; }

.contact-layout {
  display: grid; gap: var(--space-5);
  grid-template-columns: 1.12fr .88fr;
}
.contact-card {
  padding: clamp(1rem, 1vw + .9rem, 1.4rem);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: #fff;
}
.contact-card h3 { margin-bottom: var(--space-2); }
.contact-card p:last-child { margin-bottom: 0; }

.hint {
  padding: var(--space-3); border-radius: var(--radius-sm);
  background: #f4f8fc; border: 1px solid #dde7f2;
  font-size: var(--text-sm); color: #586b84;
}

/* ─── Insights & News Cards ───────────────────────────────── */
.insights .grid { align-items: stretch; }
.insights .card h3 { margin-bottom: var(--space-2); }
.insights .card__summary { margin-top: auto; }

.news-meta {
  display: flex; flex-wrap: wrap; gap: .35rem;
  align-items: center; margin-bottom: var(--space-3);
}
.news-source {
  display: inline-flex; align-items: center;
  padding: .2rem .5rem; border-radius: 999px;
  font-size: var(--text-xs); letter-spacing: .05em;
  text-transform: uppercase; color: #1f4e86; background: #e6f1fd;
}
.news-date { font-size: var(--text-xs); color: #71819a; }

.insights__fallback {
  margin: 0; padding: var(--space-5);
  border-radius: var(--radius-md);
  border: 1px dashed #bad0e9;
  color: var(--text-muted); background: #f8fbff;
}

/* ─── Footer ──────────────────────────────────────────────── */
.site-footer {
  padding: var(--space-9) 0 var(--space-8);
  color: #b8cde5;
  background: linear-gradient(140deg, #04111f 0%, #091d38 50%, #0e2a4d 100%);
}
.footgrid {
  display: grid; gap: var(--space-6);
  grid-template-columns: 1.8fr repeat(3, minmax(0, 1fr));
}
.footer-brand {
  margin-bottom: var(--space-3); color: #fff;
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
}
.footer-tagline {
  max-width: 32ch; margin: 0 0 var(--space-5);
  font-size: var(--text-sm); color: #8da7c5; line-height: 1.6;
}
.site-footer strong {
  display: block; margin-bottom: var(--space-3);
  color: #fff; font-size: var(--text-sm);
  letter-spacing: .06em; text-transform: uppercase;
}
.site-footer a {
  display: inline-block; margin-bottom: var(--space-2);
  color: #c0d4ec; text-decoration: none;
  transition: color var(--ease-base);
}
.site-footer a:hover { color: #fff; }
.site-footer p { margin: 0; }

.footer-bottom {
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center;
  justify-content: space-between; gap: var(--space-4);
  font-size: var(--text-sm); color: #7a95b3;
}
.footer-social {
  display: flex; gap: var(--space-4);
}
.footer-social a {
  color: #8da7c5; margin: 0;
  transition: color var(--ease-base);
}
.footer-social a:hover { color: var(--accent-glow); }

/* ─── Cookie Modal ────────────────────────────────────────── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 1200;
  display: none; place-items: center;
  padding: 1.2rem;
  background: rgba(3,17,35,.6);
  backdrop-filter: blur(4px);
}
.modal-backdrop.show { display: grid; }
.modal {
  width: min(560px, 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: #fff; padding: var(--space-5);
  box-shadow: var(--shadow-lift);
}
.cookie-row {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: .7rem .8rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  background: #f8fbff;
}
.cookie-actions {
  display: flex; justify-content: flex-end;
}

/* ─── Back to Top ─────────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  z-index: 900;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); background: #fff; }
.back-to-top svg {
  width: 20px; height: 20px;
  stroke: var(--brand-primary); fill: none;
  stroke-width: 2.5;
}

/* ─── Scroll Reveal Animation ─────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.2,0,.2,1), transform .7s cubic-bezier(.2,0,.2,1);
}
.reveal.is-visible {
  opacity: 1; transform: translateY(0);
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1120px) {
  .footgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .search { display: none; }
  .page-hero { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .stats-band__inner { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
  .navbar { min-height: 68px; }
  nav.primary { margin-left: 0; }
  .hamburger { display: inline-flex; }

  #primaryNav {
    position: absolute; right: 1rem; top: calc(100% + .55rem);
    z-index: 1002; display: none;
    width: min(320px, calc(100vw - 2rem));
    padding: .75rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    background: #fff; box-shadow: var(--shadow-soft);
    flex-direction: column; align-items: stretch; gap: .2rem;
  }
  #primaryNav.open { display: flex; }
  nav.primary a {
    padding: .68rem .72rem; border-radius: .5rem;
  }
  nav.primary a::after { display: none; }
  nav.primary a:hover,
  nav.primary a[aria-current='page'] { background: #f0f6fd; }

  .hero, .hero__overlay { min-height: 620px; }
  .hero__overlay-box { width: min(640px, 100%); }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-band__inner { grid-template-columns: 1fr; }
  .stats-band__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); padding: var(--space-4); }
  .stats-band__item:last-child { border-bottom: none; }
}

@media (max-width: 760px) {
  .container, .container--narrow, .container--wide {
    width: calc(100% - 1.6rem);
  }
  .logo-word { font-size: clamp(1.7rem, 6.5vw, 2.1rem); }
  .section { padding: var(--space-8) 0; }
  .grid--2, .grid--3, .grid--4, .form-grid { grid-template-columns: 1fr; }

  .hero, .hero__overlay { min-height: 540px; }
  .hero__subtitle { font-size: var(--text-base); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }

  .cta__inner { flex-direction: column; align-items: flex-start; }
  .cta__inner .btn { width: 100%; }

  .footgrid { grid-template-columns: 1fr; gap: var(--space-5); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ──────────────────────────────────────────────────────────
   2026 Executive Refresh Overrides
   ────────────────────────────────────────────────────────── */

:root {
  --bg-page: #eef3f9;
  --bg-muted: #e7eef7;
  --bg-elevated: #f8fbff;
  --text-strong: #071d38;
  --text-body: #1f3350;
  --text-muted: #5a6b83;
  --border-subtle: #d2deec;
  --border-strong: #bcd0e5;
  --shadow-soft: 0 18px 42px rgba(6, 24, 49, 0.08);
  --shadow-lift: 0 30px 70px rgba(6, 24, 49, 0.15);
}

body {
  background:
    radial-gradient(circle at top right, rgba(0, 94, 187, 0.08), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #eef3f9 46%, #f7f9fc 100%);
}

.container--narrow {
  width: min(1180px, calc(100% - 3rem));
}

.site-header {
  background: rgba(249, 252, 255, 0.92);
  border-bottom-color: rgba(210, 222, 236, 0.5);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 34px rgba(7, 22, 44, 0.08);
}

.navbar {
  min-height: 94px;
  gap: var(--space-4);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-logo__img {
  width: clamp(132px, 11vw, 182px);
  height: auto;
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-left: 1rem;
}

.search {
  gap: 0.55rem;
  padding: 0.35rem;
  border: 1px solid rgba(210, 222, 236, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.search input {
  width: 168px;
  border: 0;
  background: transparent;
  padding-inline: 0.8rem 0.45rem;
}

.search input:focus {
  outline: none;
}

.search:focus-within {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 0.2rem rgba(0, 94, 187, 0.12);
}

.search .btn {
  padding-inline: 1rem;
  box-shadow: none;
}

.btn--header {
  color: #fff;
  background: var(--brand-navy);
  border-color: rgba(7, 29, 56, 0.1);
  box-shadow: none;
}

.btn--header:hover {
  background: #0a2a52;
}

nav.primary a {
  font-weight: 580;
}

.hero {
  min-height: min(94vh, 860px);
}

.hero::before {
  background:
    linear-gradient(102deg, rgba(3, 14, 29, 0.9) 0%, rgba(3, 14, 29, 0.76) 36%, rgba(3, 14, 29, 0.28) 74%, rgba(3, 14, 29, 0.08) 100%),
    linear-gradient(180deg, rgba(4, 15, 30, 0.38), rgba(4, 15, 30, 0.1));
}

.hero::after {
  height: 220px;
}

.slider__item img {
  transform: scale(1.05);
}

.hero__overlay {
  display: flex;
  align-items: flex-end;
  min-height: min(94vh, 860px);
  padding-block: clamp(5rem, 8vw, 8rem) clamp(3.2rem, 5vw, 5rem);
}

.hero__content-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
  gap: clamp(1.25rem, 2vw, 2.1rem);
  width: min(1120px, 100%);
}

.hero__overlay-box {
  width: 100%;
  padding: clamp(1.8rem, 2vw + 0.9rem, 3rem);
  border-radius: 1.6rem;
  border: 1px solid rgba(181, 210, 241, 0.28);
  background: linear-gradient(145deg, rgba(4, 18, 36, 0.8), rgba(8, 32, 64, 0.62));
  backdrop-filter: blur(10px);
}

.hero__eyebrow {
  color: #d7e8fd;
}

.hero__title {
  max-width: 10ch;
  margin-bottom: 1rem;
  font-size: clamp(2.9rem, 4.2vw, 5.35rem);
  line-height: 0.98;
}

.hero__subtitle {
  max-width: 54ch;
  margin-bottom: 1rem;
  color: #e4eef9;
  font-size: clamp(1.05rem, 1vw + 0.8rem, 1.35rem);
}

.hero__summary {
  max-width: 50ch;
  margin: 0 0 1.75rem;
  color: rgba(226, 238, 249, 0.88);
  font-size: var(--text-sm);
}

.hero__actions {
  gap: 0.85rem;
}

.hero__signal-card {
  display: grid;
  align-content: end;
  gap: 1rem;
  padding: clamp(1.35rem, 1vw + 1rem, 1.8rem);
  border-radius: 1.4rem;
  border: 1px solid rgba(181, 210, 241, 0.24);
  background: linear-gradient(160deg, rgba(8, 27, 53, 0.88), rgba(9, 42, 82, 0.76));
  box-shadow: var(--shadow-soft);
}

.hero__signal-label {
  margin: 0;
  font-size: var(--text-xs);
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c6dbf5;
}

.hero__signals {
  display: grid;
  gap: 0.95rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__signals li {
  position: relative;
  padding-left: 1.1rem;
  color: #f3f8ff;
  font-size: var(--text-sm);
  line-height: 1.55;
}

.hero__signals li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #7ac0ff;
  box-shadow: 0 0 0 0.25rem rgba(122, 192, 255, 0.14);
}

.hero__caption {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(181, 210, 241, 0.16);
  color: #c7d9ef;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats-band {
  margin-top: -2.2rem;
  position: relative;
  z-index: 6;
  background: transparent;
}

.stats-band__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border-radius: 1.35rem;
  border: 1px solid rgba(197, 214, 233, 0.8);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 44px rgba(9, 29, 58, 0.08);
}

.stats-band__item {
  padding: 1.35rem 1.5rem;
  border-right: 1px solid rgba(210, 222, 236, 0.8);
}

.stats-band__number {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.4vw + 0.95rem, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-strong);
}

.stats-band__label {
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.section {
  padding: clamp(4.8rem, 8vw, 7rem) 0;
}

.section-head {
  align-items: end;
  gap: 1.5rem;
}

.section-intro {
  max-width: 62ch;
}

.section--muted {
  background:
    radial-gradient(circle at top right, rgba(0, 94, 187, 0.06), transparent 32%),
    linear-gradient(180deg, #eef4fb 0%, #edf3fa 100%);
}

.card {
  padding: clamp(1.3rem, 1vw + 1rem, 1.8rem);
  border-radius: 1.2rem;
  border-color: rgba(210, 222, 236, 0.95);
  box-shadow: var(--shadow-card);
}

.card--link:hover {
  transform: translateY(-6px);
}

.card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(0, 94, 187, 0.12), rgba(0, 94, 187, 0.04));
}

.card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke: var(--brand-primary);
}

.card__media {
  margin: -0.45rem -0.45rem 1.15rem;
  border-color: rgba(210, 222, 236, 0.85);
  border-radius: 1rem;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: clamp(1.25rem, 2vw, 2.25rem);
  align-items: stretch;
}

.feature-split__content {
  display: grid;
  gap: 1rem;
}

.feature-split__list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-split__list li {
  position: relative;
  padding-left: 1rem;
  color: var(--text-body);
}

.feature-split__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: var(--brand-primary);
}

.feature-split__grid {
  display: grid;
  gap: 1rem;
}

.feature-panel {
  padding: 1.25rem 1.35rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(210, 222, 236, 0.9);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
}

.feature-panel__kicker {
  margin: 0 0 0.35rem;
  color: var(--brand-primary);
  font-size: var(--text-xs);
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-panel p:last-child {
  margin-bottom: 0;
}

.page-main {
  padding-top: clamp(2.5rem, 4vw, 4rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.page-hero {
  gap: clamp(1.35rem, 2vw, 2.4rem);
  margin-bottom: clamp(2.2rem, 3vw, 3rem);
}

.page-hero__content {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  padding: clamp(1.5rem, 2vw, 2.4rem);
  border-radius: 1.4rem;
  border: 1px solid rgba(210, 222, 236, 0.94);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98));
  box-shadow: var(--shadow-soft);
}

.page-hero__lead {
  margin-bottom: 0;
  max-width: 58ch;
}

.page-hero__actions {
  margin-top: 0.35rem;
}

.page-hero__detail-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-hero__detail-list li {
  position: relative;
  padding-left: 1.05rem;
  color: var(--text-body);
  font-size: var(--text-sm);
}

.page-hero__detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--brand-primary);
}

.page-hero__media {
  min-height: clamp(360px, 42vw, 520px);
  border-radius: 1.4rem;
  box-shadow: var(--shadow-soft);
}

.page-hero__media img,
.interior-hero-img {
  min-height: clamp(360px, 42vw, 520px);
}

.page-hero__visual {
  min-height: clamp(360px, 42vw, 520px);
  padding: clamp(1.5rem, 1.6vw + 1rem, 2.2rem);
  border-radius: 1.4rem;
  border: 1px solid rgba(151, 188, 223, 0.28);
  box-shadow: var(--shadow-soft);
  background-blend-mode: screen, normal;
}

.page-hero__visual-stack {
  display: grid;
  gap: 1rem;
  align-content: end;
}

.page-hero__visual-kicker {
  margin: 0;
  color: rgba(225, 238, 250, 0.92);
  font-size: var(--text-xs);
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-hero__visual-title {
  max-width: 20ch;
  margin: 0;
}

.page-hero__badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-hero__badge-list li {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 228, 245, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: #f4f8ff;
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
}

.info-box {
  border-radius: 1.2rem;
  box-shadow: var(--shadow-card);
}

.contact-layout {
  gap: clamp(1.1rem, 2vw, 2rem);
}

.contact-card,
.form {
  border-radius: 1.2rem;
}

.form input,
.form textarea,
.form select {
  transition: border-color var(--ease-base), box-shadow var(--ease-base);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 0.2rem rgba(0, 94, 187, 0.12);
  outline: none;
}

.hint {
  border-radius: 0.9rem;
}

.site-footer {
  padding-top: clamp(3.5rem, 5vw, 5rem);
}

.footgrid {
  grid-template-columns: minmax(0, 1.8fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.4rem, 2vw, 2.8rem);
}

.footer-brand-block {
  display: grid;
  gap: 0.9rem;
}

.footer-brand {
  display: inline-flex;
  margin: 0;
}

.footer-brand__img {
  width: 160px;
  height: auto;
}

.footer-tagline {
  max-width: 30ch;
}

.footer-note {
  max-width: 34ch;
  color: #afc2d9;
  font-size: var(--text-sm);
}

.footer-bottom {
  align-items: center;
}

.footer-contact-link {
  color: #f2f7ff;
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 600;
}

.footer-contact-link:hover {
  color: var(--accent-glow);
}

.back-to-top {
  box-shadow: 0 16px 34px rgba(9, 31, 59, 0.18);
}

@media (max-width: 1120px) {
  .container--narrow {
    width: calc(100% - 2.4rem);
  }

  .search {
    display: none;
  }

  .hero__content-shell,
  .feature-split,
  .page-hero,
  .contact-layout,
  .footgrid {
    grid-template-columns: 1fr;
  }

  .hero__signal-card {
    max-width: 520px;
  }
}

@media (max-width: 980px) {
  .navbar {
    min-height: 80px;
  }

  .nav-tools {
    display: none;
  }

  .btn--header {
    display: none;
  }

  .hero,
  .hero__overlay {
    min-height: 720px;
  }

  .hero__overlay {
    align-items: end;
  }

  .hero__title {
    max-width: none;
    font-size: clamp(2.5rem, 9vw, 4rem);
  }

  .stats-band {
    margin-top: -1.4rem;
  }
}

@media (max-width: 760px) {
  .container--narrow {
    width: calc(100% - 1.4rem);
  }

  .site-logo__img {
    width: 136px;
  }

  .hero,
  .hero__overlay {
    min-height: 660px;
  }

  .hero__overlay {
    padding-top: 5rem;
  }

  .hero__overlay-box,
  .hero__signal-card,
  .page-hero__content,
  .page-hero__visual,
  .page-hero__media,
  .card,
  .form,
  .contact-card,
  .feature-panel,
  .info-box {
    border-radius: 1rem;
  }

  .hero__actions,
  .page-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn,
  .page-hero__actions .btn {
    width: 100%;
  }

  .stats-band__inner {
    grid-template-columns: 1fr;
  }

  .stats-band__item {
    border-right: 0;
    border-bottom: 1px solid rgba(210, 222, 236, 0.8);
  }

  .stats-band__item:last-child {
    border-bottom: 0;
  }

  .page-hero__badge-list {
    gap: 0.45rem;
  }

  .page-hero__badge-list li {
    width: 100%;
  }
}

/* ──────────────────────────────────────────────────────────
   2026 Q1 Enterprise Delivery Refresh
   ────────────────────────────────────────────────────────── */

picture,
.responsive-media {
  display: block;
}

.responsive-media--fill,
.responsive-media--fill img {
  width: 100%;
  height: 100%;
}

.responsive-media--fill img {
  object-fit: cover;
  object-position: center;
}

.slider__item .hero__media-frame {
  position: absolute;
  inset: 0;
}

.slider__item img {
  transform: none !important;
  transition: opacity var(--ease-base);
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0 0 1.75rem;
}

.metric-chip {
  display: grid;
  gap: 0.35rem;
  padding: 0.85rem 0.95rem;
  border-radius: 1rem;
  border: 1px solid rgba(183, 214, 247, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.metric-chip span {
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c1daf6;
}

.metric-chip strong {
  color: #f7fbff;
  font-size: var(--text-sm);
  line-height: 1.45;
}

.executive-strip {
  padding-top: clamp(3.4rem, 5vw, 4.5rem);
  background:
    radial-gradient(circle at top right, rgba(0, 94, 187, 0.09), transparent 30%),
    linear-gradient(180deg, #f6f9fd 0%, #eef4fb 100%);
}

.executive-strip__grid {
  gap: clamp(1rem, 1.6vw, 1.4rem);
}

.executive-tile {
  position: relative;
  display: grid;
  gap: 0.65rem;
  min-height: 100%;
  padding: 1.35rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(18, 52, 95, 0.08);
  background: linear-gradient(180deg, #0a2141 0%, #10355f 100%);
  box-shadow: 0 22px 50px rgba(7, 24, 46, 0.1);
}

.executive-tile::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 1.2rem 0 0 1.2rem;
  background: linear-gradient(180deg, #62bbff 0%, #005ebb 100%);
}

.executive-tile h3 {
  color: #f6fbff;
  margin-bottom: 0;
}

.executive-tile p {
  margin: 0;
  color: #c7d8ec;
}

.executive-tile__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9fd7ff;
}

.leadership-grid,
.engagement-strip,
.contact-journey,
.partner-support {
  padding-top: 0;
}

.topic-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 0 clamp(2rem, 2.5vw, 2.75rem);
  padding: 1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(210, 222, 236, 0.94);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
}

.topic-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 94, 187, 0.12);
  background: rgba(0, 94, 187, 0.06);
  color: var(--brand-primary);
  font-size: var(--text-xs);
  font-weight: 650;
  letter-spacing: 0.04em;
}

.page-hero__media {
  overflow: hidden;
}

.page-hero__content::before {
  content: '';
  display: block;
  width: 3.4rem;
  height: 0.28rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-primary) 0%, #77c4ff 100%);
}

.page-hero__content > .section-label {
  margin-top: 0.2rem;
}

.card__media .responsive-media {
  height: 100%;
}

.card__media .responsive-media img {
  height: 100%;
}

.news-page .card__media img {
  object-fit: contain;
  background: linear-gradient(180deg, #f7fbff 0%, #eff5fb 100%);
}

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

@media (max-width: 760px) {
  .topic-pillars {
    padding: 0.85rem;
  }

  .topic-pill {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ──────────────────────────────────────────────────────────
   2026-03-03 Integrated Hero Pass
   ────────────────────────────────────────────────────────── */

.site-logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.site-logo__img {
  display: block;
  width: clamp(156px, 12vw, 198px);
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.footer-brand__img {
  width: 164px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.home .hero--feature {
  position: relative;
  min-height: clamp(400px, 50vw, 580px);
  padding: 0;
  background: #0c213e;
  overflow: hidden;
}

.home .hero--feature::before {
  content: '';
  position: absolute;
  inset: 0;
  display: block;
  z-index: 2;
  background: linear-gradient(105deg, rgba(5, 18, 35, 0.84) 0%, rgba(5, 18, 35, 0.62) 38%, rgba(5, 18, 35, 0.22) 72%, rgba(5, 18, 35, 0.08) 100%);
}

.home .hero--feature::after {
  display: none;
  content: none;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__backdrop-media,
.hero__backdrop-media img {
  width: 100%;
  height: 100%;
}

.hero__backdrop-media img {
  object-fit: cover;
  object-position: center;
}

.home .hero--feature .hero__overlay {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  min-height: clamp(400px, 50vw, 580px);
  padding: clamp(1.2rem, 3vw, 2.2rem) 0;
}

.hero__content-shell--single {
  display: block;
  width: min(100%, 1120px);
}

.hero__overlay-box--feature {
  width: min(620px, 100%);
  padding: clamp(1.2rem, 2vw, 1.75rem);
  border-radius: 1.25rem;
  border: 1px solid rgba(188, 216, 245, 0.22);
  background: rgba(7, 24, 46, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.home .hero__overlay-box--feature .hero__eyebrow {
  color: #d7e8fd;
}

.home .hero__overlay-box--feature .hero__title {
  max-width: 10ch;
  margin-bottom: 0.85rem;
  color: #fff;
  font-size: clamp(2.5rem, 4.8vw, 4.75rem);
  line-height: 0.98;
}

.home .hero__overlay-box--feature .hero__subtitle {
  margin-bottom: 0.85rem;
  color: #e7f0fb;
  font-size: clamp(1rem, 1vw + 0.78rem, 1.2rem);
}

.hero__lede-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__lede-list li {
  position: relative;
  padding-left: 1rem;
  color: #dce8f7;
  font-size: var(--text-sm);
  line-height: 1.55;
}

.hero__lede-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: #7bc2ff;
}

.home .hero--feature .hero__metrics,
.home .hero--feature .hero__signal-card {
  display: none !important;
}

.about-page .page-hero,
.services-page .page-hero,
.contact-page .page-hero,
.partners-page .page-hero {
  display: grid;
  position: relative;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  min-height: clamp(360px, 48vw, 500px);
  padding: clamp(0.8rem, 1.6vw, 1rem);
  border-radius: 1.4rem;
  background: linear-gradient(180deg, #e8f0fa 0%, #edf4fb 100%);
  box-shadow: var(--shadow-card);
}

.about-page .page-hero__media,
.services-page .page-hero__media,
.contact-page .page-hero__media,
.partners-page .page-hero__media {
  grid-area: 1 / 1;
  min-height: inherit;
  border-radius: 1.25rem;
  box-shadow: none;
}

.about-page .page-hero__content,
.services-page .page-hero__content,
.contact-page .page-hero__content,
.partners-page .page-hero__content {
  grid-area: 1 / 1;
  align-self: end;
  position: relative;
  z-index: 2;
  width: min(640px, calc(100% - 1.4rem));
  margin: 0 0 1rem 1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(214, 225, 238, 0.9);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 38px rgba(7, 24, 46, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.about-page .page-hero__content::before,
.services-page .page-hero__content::before,
.contact-page .page-hero__content::before,
.partners-page .page-hero__content::before {
  width: 3rem;
}

.insights-page .page-hero__visual,
.news-page .page-hero__visual {
  min-height: clamp(260px, 34vw, 420px);
}

@media (max-width: 900px) {
  .about-page .page-hero,
  .services-page .page-hero,
  .contact-page .page-hero,
  .partners-page .page-hero {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .about-page .page-hero__media,
  .services-page .page-hero__media,
  .contact-page .page-hero__media,
  .partners-page .page-hero__media {
    display: block !important;
    order: 1;
    grid-area: auto;
    min-height: 190px;
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
  }

  .about-page .page-hero__content,
  .services-page .page-hero__content,
  .contact-page .page-hero__content,
  .partners-page .page-hero__content {
    display: grid;
    order: 2;
    grid-area: auto;
    width: calc(100% - 1rem);
    margin: -2.4rem auto 0;
    box-shadow: var(--shadow-soft);
  }
}

@media (max-width: 760px) {
  .navbar {
    min-height: 70px;
    gap: 0.75rem;
  }

  .site-logo__img {
    width: 148px;
  }

  .footer-brand__img {
    width: 150px;
  }

  .hamburger {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.8rem;
  }

  .page-main {
    padding-top: 1.1rem;
  }

  .breadcrumb {
    display: none;
  }

  .section {
    padding: 2.4rem 0;
  }

  .home .hero--feature {
    min-height: 320px;
  }

  .home .hero--feature::before {
    background: linear-gradient(180deg, rgba(5, 18, 35, 0.32) 0%, rgba(5, 18, 35, 0.82) 72%, rgba(5, 18, 35, 0.92) 100%);
  }

  .home .hero--feature .hero__overlay {
    min-height: 320px;
    padding: 0.75rem 0;
  }

  .hero__overlay-box--feature {
    width: 100%;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(7, 24, 46, 0.78);
  }

  .home .hero__overlay-box--feature .hero__title {
    max-width: none;
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .home .hero__overlay-box--feature .hero__subtitle {
    font-size: 1rem;
  }

  .hero__lede-list {
    gap: 0.45rem;
  }

  .hero__lede-list li {
    font-size: 0.92rem;
  }

  .about-page .page-hero__media,
  .services-page .page-hero__media,
  .contact-page .page-hero__media,
  .partners-page .page-hero__media {
    min-height: 176px;
  }

  .about-page .page-hero__content,
  .services-page .page-hero__content,
  .contact-page .page-hero__content,
  .partners-page .page-hero__content {
    width: calc(100% - 0.7rem);
    margin-top: -2rem;
    padding: 1rem;
    border-radius: 1rem;
  }

  .insights-page .page-hero__visual,
  .news-page .page-hero__visual {
    min-height: 190px;
  }

  .back-to-top {
    right: 0.85rem;
    bottom: 0.85rem;
    width: 42px;
    height: 42px;
  }
}

/* ──────────────────────────────────────────────────────────
   2026-03-03 Home Spacing + Footer Reset
   ────────────────────────────────────────────────────────── */

.home .stats-band {
  margin-top: clamp(0.75rem, 2vw, 1.35rem);
}

.site-footer {
  color: var(--text-muted);
  background: #fff;
  border-top: 1px solid rgba(210, 222, 236, 0.9);
}

.site-footer strong,
.footer-brand {
  color: var(--text-strong);
}

.footer-tagline,
.footer-note,
.site-footer p {
  color: var(--text-muted);
}

.site-footer a {
  color: #60728f;
}

.site-footer a:hover {
  color: var(--brand-primary);
}

.footer-brand__img {
  display: block;
  mix-blend-mode: normal;
}

.footer-bottom {
  border-top: 1px solid rgba(210, 222, 236, 0.9);
  color: #7586a0;
}

.footer-contact-link {
  color: var(--brand-primary);
}

.footer-contact-link:hover {
  color: var(--brand-navy);
}

@media (max-width: 760px) {
  .home .stats-band {
    margin-top: 0.7rem;
  }

  .site-footer {
    padding-top: 2.5rem;
  }
}
