﻿/* ============================================================
   AMTEX ENTERPRISES â€” MAIN STYLESHEET
   Colors locked to logo: Navy #0D3270 Â· Royal #1969B0 Â· Sky #5BC4E8
   Design language: Randstad editorial meets Korn Ferry premium
   ============================================================ */

/* 1 Â· TOKENS
============================================================ */
:root {
  --navy:      #0D3270;
  --royal:     #1969B0;
  --sky:       #5BC4E8;
  --off-white: #F5F8FF;
  --white:     #FFFFFF;
  --dark:      #111827;
  --gray:      #56687A;
  --light:     #DAE9F8;
  --border:    #E0ECF8;
  --footer-bg: #EFF9FD;          /* ~92% white + sky #5BC4E8 */
  --footer-surface: #F7FCFE;
  --footer-divider: rgba(91, 196, 232, 0.28);
  --footer-border: rgba(91, 196, 232, 0.4);

  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --section-py: 96px;
  --container:  1240px;
  --gutter:     28px;

  --radius:     4px;
  --radius-md:  10px;
  --radius-lg:  18px;
  --shadow-sm:  0 2px 8px rgba(13,50,112,.05);
  --shadow:     0 8px 32px rgba(13,50,112,.10);
  --shadow-lg:  0 24px 64px rgba(13,50,112,.16);
  --ease:       cubic-bezier(.4,0,.2,1);
}

/* 2 Â· RESET
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; font-size: 16px; }
body { font-family: var(--font-body); color: var(--dark); background: #fff; overflow-x: hidden; line-height: 1.6; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
em, i { font-style: normal; }

/* 3 Â· TYPOGRAPHY SCALE
============================================================ */
/* Inter â€” weight 800 + tight tracking creates strong visual hierarchy */
.display-1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 800;
}
.display-2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.display-3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  font-weight: 700;
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--royal);
}

/* Unified section headings: eyebrow + display-2 + optional lead */
.section-head { margin-bottom: 48px; }
.section-head--compact { margin-bottom: 0; }
.section-head--center { text-align: center; }
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head .display-2,
.section-head h2 {
  color: var(--navy);
  margin-bottom: 0;
}
.section-head h2 em,
.section-head .display-2 em {
  font-style: normal;
  color: var(--royal);
}
.section-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray);
  margin-top: 20px;
  max-width: 560px;
}
.section-head--center .section-lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head--light .eyebrow { color: var(--sky); }
.section-head--light .display-2,
.section-head--light h2 { color: #fff; }
.section-head--light h2 em,
.section-head--light .display-2 em { color: var(--sky); }
.section-head--light .section-lead { color: rgba(255,255,255,.78); }
.cta-section .section-head--light .eyebrow { color: rgba(255,255,255,.7); }

/* 4 Â· LAYOUT
============================================================ */
.container  { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section-py { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.section-anchor {
  display: block;
  position: relative;
  top: -96px;
  height: 0;
  pointer-events: none;
  visibility: hidden;
}
[id] { scroll-margin-top: 96px; }

/* 5 Â· SCROLL REVEAL
============================================================ */
.reveal        { opacity: 0; transform: translateY(36px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal-left   { opacity: 0; transform: translateX(-48px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal-right  { opacity: 0; transform: translateX(48px);  transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .45s; }
.d5 { transition-delay: .6s; }

/* 6 Â· BUTTONS
============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  font-size: .9375rem; font-weight: 600;
  border-radius: var(--radius);
  transition: all .3s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn svg { transition: transform .3s var(--ease); flex-shrink: 0; }
.btn:hover svg { transform: translateX(4px); }

.btn--sky {
  background: var(--sky); color: var(--navy);
}
.btn--sky:hover {
  background: #fff; color: var(--navy);
  box-shadow: 0 8px 28px rgba(91,196,232,.4);
  transform: translateY(-2px);
}
.btn--outline-white {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.45);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.8);
}
.btn--white {
  background: #fff;
  color: var(--navy);
}
.btn--white:hover {
  background: var(--sky);
  color: var(--navy);
  box-shadow: 0 8px 28px rgba(255,255,255,.28);
  transform: translateY(-2px);
}
.btn--navy {
  background: var(--navy); color: #fff;
}
.btn--navy:hover {
  background: var(--royal);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn--royal {
  background: var(--royal); color: #fff;
}
.btn--royal:hover {
  background: var(--navy);
  transform: translateY(-2px);
}
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .9375rem; font-weight: 600;
  color: var(--royal);
  transition: all .3s var(--ease);
}
.link-arrow svg { transition: transform .3s var(--ease); }
.link-arrow:hover { color: var(--navy); }
.link-arrow:hover svg { transform: translateX(5px); }

/* 7 Â· NAVIGATION
============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: padding .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.scrolled {
  background: #fff;
  padding: 14px 0;
  box-shadow: 0 4px 24px rgba(13,50,112,.08);
  border-bottom: 1px solid var(--border);
}
.site-header.scrolled .nav-links .nav-parent {
  color: var(--gray);
}
.site-header.scrolled .nav-links .nav-parent:hover,
.site-header.scrolled .nav-links .nav-parent.active {
  color: var(--navy);
}
.site-header.scrolled .nav-toggle span {
  background: var(--navy);
}
.site-header.scrolled .btn--white {
  background: var(--royal);
  color: #fff;
}
.site-header.scrolled .btn--white:hover {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
}
.nav-inner {
  display: flex; align-items: center;
  gap: 12px;
}
.nav-logo {
  margin-right: auto;
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px; width: auto;
  display: block;
}
/* Dark hero: invert logo so text reads on navy background */
.site-header:not(.scrolled) .nav-logo img {
  filter: brightness(0) invert(1);
}
.site-header.scrolled .nav-logo img {
  filter: none;
}
.nav-links {
  display: flex; align-items: center; gap: 2px;
  flex-shrink: 0;
}
.nav-has-dropdown { position: relative; }
.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: .875rem; font-weight: 500;
  color: rgba(255,255,255,.82);
  border-radius: var(--radius);
  transition: color .25s var(--ease);
  position: relative;
}
.nav-chevron {
  flex-shrink: 0;
  opacity: .75;
  transition: transform .25s var(--ease);
}
.nav-has-dropdown:hover .nav-chevron,
.nav-has-dropdown:focus-within .nav-chevron { transform: rotate(180deg); }
.nav-parent::after {
  content: '';
  position: absolute; bottom: 5px; left: 12px; right: 12px;
  height: 1px; background: var(--sky);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-parent:hover { color: #fff; }
.nav-parent:hover::after,
.nav-parent.active::after { transform: scaleX(1); }
.nav-parent.active { color: #fff; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  z-index: 100;
  list-style: none;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: .84rem;
  font-weight: 500;
  color: var(--gray);
  white-space: nowrap;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-dropdown a:hover {
  color: var(--navy);
  background: var(--footer-bg);
}
.site-header.scrolled .nav-dropdown a { color: var(--gray); }
.site-header.scrolled .nav-dropdown a:hover { color: var(--navy); }
.nav-cta { flex-shrink: 0; margin-left: 4px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; background: none; border: none;
  position: relative;
  z-index: 2;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease), background .3s var(--ease);
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 1100;
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition:
    transform .38s var(--ease),
    opacity .38s var(--ease),
    visibility .38s var(--ease);
  pointer-events: none;
  overflow: hidden;
}
.mobile-nav.open {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-shrink: 0;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav__logo img {
  display: block;
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}
.mobile-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  line-height: 1;
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.mobile-close:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}
.mobile-nav__body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 20px 28px;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav-group {
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav-group-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  text-align: left;
  cursor: pointer;
}
.mobile-nav-group-toggle svg {
  flex-shrink: 0;
  transition: transform .25s var(--ease);
  opacity: .7;
}
.mobile-nav-group.is-open .mobile-nav-group-toggle svg { transform: rotate(180deg); }
.mobile-nav-group-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .32s var(--ease);
}
.mobile-nav-group.is-open .mobile-nav-group-panel {
  grid-template-rows: 1fr;
}
.mobile-nav-group-panel__inner {
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
  transition: padding-bottom .32s var(--ease);
}
.mobile-nav-group.is-open .mobile-nav-group-panel__inner {
  padding-bottom: 12px;
}
.mobile-nav-group-panel a {
  font-size: .95rem;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  padding: 10px 0 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .25s;
}
.mobile-nav-group-panel a:last-child { border-bottom: none; }
.mobile-nav-group-panel a:hover { color: var(--sky); }
.mobile-nav__direct {
  margin-top: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-nav-cta {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--sky);
  padding: 14px 0;
}
.mobile-nav-cta--primary {
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}
.mobile-nav-cta:hover { color: #fff; }

/* 8 Â· HERO
============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(-45deg, #060E1D, #0B2A5C, #071828, #0D3A7A, #071828);
  background-size: 500% 500%;
  animation: hero-gradient 16s ease infinite;
  display: flex; align-items: center;
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}
@keyframes hero-gradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Particle canvas */
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1; pointer-events: none;
}

/* Grain noise overlay — subtle premium texture */
.hero-noise {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Soft radial glow behind content */
.hero-glow {
  position: absolute; top: -10%; left: 15%;
  width: 75%; height: 85%;
  background: radial-gradient(ellipse, rgba(25,105,176,.3) 0%, transparent 65%);
  z-index: 2; pointer-events: none;
  animation: glow-pulse 9s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: .7; transform: scale(1); }
  50%       { opacity: 1;  transform: scale(1.12); }
}

.hero-arcs {
  position: absolute; right: -4%; top: -5%;
  width: 55%; height: 110%;
  pointer-events: none; z-index: 3; opacity: .45;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
  position: relative; z-index: 5;
}
.hero-label { margin-bottom: 22px; color: var(--sky); }
.hero-heading { color: #fff; margin-bottom: 26px; }
.hero-heading em { font-style: normal; color: var(--sky); }
.hero-heading span { display: block; line-height: 1.1; }
.hero-body {
  color: rgba(255,255,255,.72);
  font-size: 1.1rem; line-height: 1.82;
  max-width: 520px; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero right side - neural network visual */
.hero-visual {
  position: relative;
  height: 480px;
  display: flex; align-items: center; justify-content: center;
}
.neural-svg { width:100%; height:100%; overflow:visible; }
.neural-node {
  transform-box: fill-box; transform-origin: center;
  animation: n-pulse 2.8s ease-in-out infinite;
}
.neural-glow {
  transform-box: fill-box; transform-origin: center;
  animation: n-glow 2.8s ease-in-out infinite;
}
@keyframes n-pulse {
  0%,100% { opacity:.55; transform:scale(1); }
  50%      { opacity:1;   transform:scale(1.3); }
}
@keyframes n-glow {
  0%,100% { opacity:.07; transform:scale(1); }
  50%      { opacity:.22; transform:scale(1.8); }
}
/* legacy hero-card styles kept for reference but not rendered */
.hero-card .small {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  margin-top: 5px;
}

/* 8b · HERO ALT — video background
============================================================ */
.hero-alt {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  overflow: hidden;
}
.hero-alt-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-alt-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (prefers-reduced-motion: reduce) {
  .hero-alt-video { display: none; }
  .hero-alt-media {
    background: var(--navy) url('../assets/world-map.png') center / cover no-repeat;
  }
}
.hero-alt-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,14,29,.55) 0%, rgba(6,14,29,.72) 45%, rgba(6,14,29,.88) 100%),
    linear-gradient(90deg, rgba(13,50,112,.75) 0%, rgba(13,50,112,.25) 55%, transparent 100%);
  z-index: 1;
}
.hero-alt-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .35;
  background-image:
    linear-gradient(rgba(91,196,232,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,196,232,.12) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, #000 20%, transparent 85%);
}
.hero-alt .container {
  position: relative;
  z-index: 3;
  width: 100%;
}
.hero-alt-inner {
  max-width: 720px;
  text-align: left;
}
.hero-alt-eyebrow {
  display: block;
  margin-bottom: 20px;
  color: var(--sky);
}
.hero-alt-title {
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.06;
}
.hero-alt-title span {
  color: var(--sky);
}
.hero-alt-lead {
  color: rgba(255,255,255,.78);
  font-size: 1.12rem;
  line-height: 1.82;
  max-width: 600px;
  margin-bottom: 36px;
}
.hero-alt-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-alt-metrics {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero-alt-metric strong {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero-alt-metric span {
  display: block;
  margin-top: 6px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

@media (max-width: 768px) {
  .hero-alt { padding: 120px 0 64px; min-height: 92vh; }
  .hero-alt-metrics { gap: 20px; }
  .hero-alt-actions { flex-direction: column; align-items: flex-start; }
}

/* 9 · STATS BANNER (Collabera split layout)
============================================================ */
.stats-banner {
  width: 100%;
  overflow: hidden;
}
.stats-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}
/* Left — dark quote panel */
.stats-quote {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 56px;
  text-align: center;
}
.stats-quote-line {
  font-size: clamp(1.85rem, 3.2vw, 2.85rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.stats-quote-line em {
  font-style: italic;
  font-weight: 400;
}
.stats-quote-line + .stats-quote-line { margin-top: 6px; }
/* Right — light sky 2×2 grid (matches footer) */
.stats-grid-panel {
  background: var(--footer-bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.stats-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 32px;
  color: var(--navy);
  border: 1px solid var(--footer-divider);
}
.stats-cell--label { padding: 28px 24px; }
.stats-condensed {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.45;
  color: var(--navy);
}
.stats-cell--num {
  gap: clamp(12px, 2vw, 22px);
}
.stats-big {
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.stats-meta {
  font-size: clamp(.82rem, 1.2vw, .95rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--navy);
}
.stats-cell--award {
  gap: clamp(14px, 2.5vw, 24px);
}
.stats-award-icon {
  width: clamp(44px, 5vw, 58px);
  height: clamp(44px, 5vw, 58px);
  flex-shrink: 0;
  color: var(--navy);
}


/* 11 Â· ABOUT TEASER
============================================================ */
.about-teaser { background: var(--off-white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
/* Left panel - photo frame */
.about-panel-wrap { position: relative; }
.about-photo-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 28px 64px rgba(0,0,0,0.18);
}
.about-photo-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .6s var(--ease);
}
.about-photo-frame:hover .about-photo-img { transform: scale(1.03); }
.about-photo-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 36px;
  background: linear-gradient(0deg, rgba(6,14,29,.95) 0%, rgba(6,14,29,.5) 60%, transparent 100%);
}
.about-photo-overlay h3 {
  font-size: 1.35rem; font-weight: 700;
  color: #fff; margin-bottom: 8px;
}
.about-photo-overlay p {
  font-size: .875rem; color: rgba(255,255,255,.72); line-height: 1.7;
}
.about-badge {
  position: absolute;
  top: -18px; right: -18px;
  background: var(--sky);
  color: var(--navy);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  font-weight: 700;
  z-index: 2;
}
.about-badge--alt {
  top: -18px; right: auto;
  bottom: auto; left: -18px;
  background: var(--navy);
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
}
.about-badge--alt .big { color: var(--sky); }
.about-badge .big { font-size: 2rem; font-weight: 800; display: block; line-height: 1; }
.about-badge .big sup { font-size: 1rem; vertical-align: super; }
.about-badge .small { font-size: .68rem; margin-top: 4px; opacity: .85; letter-spacing: .04em; }
/* Right content */
.about-text .section-lead { margin-bottom: 32px; }
.about-bullets { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.about-bullet { display: flex; gap: 14px; align-items: flex-start; }
.bullet-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--royal);
}
.bullet-text h4 { font-size: .9375rem; font-weight: 600; margin-bottom: 3px; }
.bullet-text p  { font-size: .85rem; color: var(--gray); line-height: 1.65; }

/* Innovation Across Industries (Collabera-style split)
============================================================ */
.industries-section { background: var(--off-white); }
.industries-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.industries-left .section-lead { margin-bottom: 36px; }
.industries-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 24px 56px rgba(6,14,29,.14);
}
.industries-visual img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: opacity .45s var(--ease), transform .6s var(--ease);
}
.industries-visual.is-changing img { opacity: 0; transform: scale(1.04); }
.industries-visual-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 22px 28px;
  background: linear-gradient(0deg, rgba(6,14,29,.92) 0%, transparent 100%);
}
.ind-caption-label {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--sky);
}
/* Accordion */
.industries-right {
  border-top: 1px solid var(--border);
}
.ind-acc-item {
  border-bottom: 1px solid var(--border);
}
.ind-acc-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  background: none; border: none;
  font-family: var(--font-body);
  font-size: 1.05rem; font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: color .25s var(--ease);
}
.ind-acc-trigger:hover { color: var(--royal); }
.ind-acc-item.is-open .ind-acc-trigger { color: var(--royal); }
.ind-acc-icon {
  flex-shrink: 0;
  color: var(--gray);
  transition: transform .35s var(--ease), color .25s var(--ease);
}
.ind-acc-item.is-open .ind-acc-icon {
  transform: rotate(180deg);
  color: var(--royal);
}
.ind-acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.4,0,.2,1), padding .35s var(--ease);
  padding: 0 4px;
}
.ind-acc-item.is-open .ind-acc-panel {
  max-height: 280px;
  padding: 0 4px 22px;
}
.ind-acc-panel p {
  font-size: .9rem; color: var(--gray);
  line-height: 1.75; margin-bottom: 14px;
}
.ind-acc-panel ul {
  display: flex; flex-direction: column; gap: 8px;
  padding-left: 0; list-style: none;
}
.ind-acc-panel li {
  font-size: .84rem; color: var(--navy);
  padding-left: 18px; position: relative;
  line-height: 1.5;
}
.ind-acc-panel li::before {
  content: '';
  position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sky);
}

/* 12 · EXPERTISE SLIDER (Korn Ferry style)
============================================================ */
.expertise-section {
  background: #05101F;
  padding: 88px 0 80px;
  overflow: hidden;
}
.expertise-section--light {
  background: var(--footer-bg);
}
.expertise-section--light .exp-arrow {
  border-color: rgba(13, 50, 112, .18);
  color: rgba(13, 50, 112, .65);
}
.expertise-section--light .exp-arrow:hover {
  border-color: var(--royal);
  color: var(--royal);
  background: rgba(25, 105, 176, .08);
}
.expertise-section--light .expertise-footer .see-all {
  color: var(--navy);
  border-color: rgba(13, 50, 112, .24);
  background: rgba(255, 255, 255, .6);
}
.expertise-section--light .expertise-footer .see-all:hover {
  color: var(--royal);
  border-color: rgba(25, 105, 176, .4);
  background: #fff;
}
.expertise-section--light .exp-dot {
  background: rgba(13, 50, 112, .22);
}
.expertise-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--gutter);
}
.expertise-header-left .section-head { margin-bottom: 0; }
.expertise-header-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.exp-arrow {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.22);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  cursor: pointer;
  transition: all .3s var(--ease);
  flex-shrink: 0;
}
.exp-arrow:hover {
  border-color: var(--sky);
  color: var(--sky);
  background: rgba(91,196,232,.1);
}
.exp-arrow:disabled { opacity: .3; cursor: not-allowed; }

/* Track */
.expertise-track-outer {
  overflow: hidden;
  max-width: calc(var(--container) + var(--gutter) * 2 + 160px);
  margin: 0 auto;
}
.expertise-track {
  display: flex;
  gap: 18px;
  padding: 0 var(--gutter);
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* Cards */
.exp-card {
  flex: 0 0 340px;
  height: 440px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  outline: none;
}
.exp-card-bg {
  position: absolute; inset: 0;
  transition: transform .6s var(--ease);
  background-size: cover; background-position: center;
}
.exp-card:hover .exp-card-bg { transform: scale(1.05); }

/* gradient overlays â€” dark bottom, keep colour visible at top */
.exp-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(5,16,31,1)   0%,
    rgba(5,16,31,.75) 40%,
    rgba(5,16,31,.35) 70%,
    rgba(5,16,31,.15) 100%
  );
  transition: background .4s var(--ease);
}
.exp-card:hover .exp-card-overlay {
  background: linear-gradient(
    to top,
    rgba(5,16,31,1)   0%,
    rgba(5,16,31,.8)  40%,
    rgba(5,16,31,.4)  70%,
    rgba(5,16,31,.2)  100%
  );
}

/* large decorative icon in background */
.exp-card-deco {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255,255,255,.06);
  pointer-events: none;
  transition: opacity .4s var(--ease), transform .6s var(--ease);
}
.exp-card:hover .exp-card-deco {
  opacity: .5;
  transform: translate(-50%, -52%) scale(1.08);
}

/* content */
.exp-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 26px 30px;
}
.exp-card-tag {
  display: block;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 10px;
}
.exp-card-title {
  font-family: var(--font-display);
  font-size: 1.375rem; font-weight: 700;
  color: #fff; line-height: 1.3;
  margin-bottom: 20px;
}
.exp-card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8125rem; font-weight: 600;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.22);
  padding: 9px 18px;
  border-radius: var(--radius);
  transition: all .3s var(--ease);
}
.exp-card:hover .exp-card-cta {
  background: var(--sky);
  color: var(--navy);
  border-color: var(--sky);
}

/* footer row */
.expertise-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container);
  margin: 44px auto 0;
  padding: 0 var(--gutter);
}
.expertise-footer .see-all {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .9375rem; font-weight: 600;
  color: rgba(255,255,255,.7);
  border: 1.5px solid rgba(255,255,255,.25);
  padding: 11px 22px;
  border-radius: var(--radius);
  transition: all .3s var(--ease);
}
.expertise-footer .see-all:hover {
  color: #fff;
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.06);
}
.expertise-footer .see-all svg { transition: transform .3s var(--ease); }
.expertise-footer .see-all:hover svg { transform: translateX(4px); }
.exp-dots {
  display: flex; gap: 6px; align-items: center;
}
.exp-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.22);
  transition: all .3s var(--ease);
  cursor: pointer;
}
.exp-dot.active {
  background: var(--sky);
  width: 20px; border-radius: 3px;
}

@media (max-width: 768px) {
  .exp-card { flex: 0 0 280px; height: 380px; }
  .expertise-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* 13 Â· VALUES
============================================================ */
.values-section {
  background: var(--navy);
  position: relative; overflow: hidden;
}
.values-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 75% 50%, rgba(25,105,176,.45) 0%, transparent 65%);
  pointer-events: none;
}
.values-section .section-head {
  position: relative;
  z-index: 1;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative; z-index: 1;
}
.val-card {
  padding: 36px 26px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.04);
  transition: all .35s var(--ease);
}
.val-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(91,196,232,.38);
  transform: translateY(-5px);
}
.val-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(91,196,232,.13);
  display: flex; align-items: center; justify-content: center;
  color: var(--sky);
  margin-bottom: 22px;
}
.val-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700; color: #fff;
  margin-bottom: 10px;
}
.val-card p { font-size: .85rem; color: rgba(255,255,255,.62); line-height: 1.72; }

/* 14 · GLOBAL MAP
============================================================ */
.global-map-section {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.global-map-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 55% at 75% 45%, rgba(91,196,232,.07) 0%, transparent 65%);
  pointer-events: none;
}
.global-map-section .section-head {
  position: relative;
  z-index: 1;
}
.global-map-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: stretch;
  position: relative; z-index: 1;
}
/* Location list */
.office-loc-list { display: flex; flex-direction: column; gap: 8px; }
.office-loc-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: var(--footer-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  transition: all .3s var(--ease);
}
.office-loc-item:hover,
.office-loc-item.is-active {
  background: rgba(91,196,232,.12);
  border-color: rgba(91,196,232,.45);
}
.office-loc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--sky);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(91,196,232,.2);
}
.office-loc-dot--hq {
  background: var(--navy);
  box-shadow: 0 0 0 4px rgba(13,50,112,.12);
}
.office-loc-info strong {
  display: block;
  font-size: .9375rem; font-weight: 600;
  margin-bottom: 2px;
  color: var(--navy);
}
.office-loc-info span {
  font-size: .78rem;
  color: var(--gray);
}
.office-loc-detail {
  margin-top: 20px;
  padding: 22px;
  background: var(--footer-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--sky);
}
.office-detail-tag {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--royal);
  margin-bottom: 8px;
}
.office-loc-detail h3 {
  font-size: 1.1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.office-loc-detail p {
  font-size: .84rem; line-height: 1.7;
  color: var(--gray);
  margin-bottom: 10px;
}
.office-loc-detail a {
  font-size: .875rem; font-weight: 600;
  color: var(--royal);
}
/* Map stage */
.global-map-stage {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.world-map-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 5165 / 2904;
}
.world-map-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  opacity: 0.92;
  animation: map-breathe 5s ease-in-out infinite;
}
@keyframes map-breathe {
  0%,100% { opacity: .88; filter: brightness(1); }
  50%      { opacity: 1;   filter: brightness(1.12); }
}
#world-map-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
  z-index: 2;
  pointer-events: none;
}
.world-map-markers {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 3;
  pointer-events: none;
}
.map-marker-pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: map-pulse 2.4s ease-in-out infinite;
}
@keyframes map-pulse {
  0%,100% { opacity: .35; transform: scale(1); }
  50%      { opacity: .9;  transform: scale(1.6); }
}
.map-marker-core {
  filter: drop-shadow(0 0 6px rgba(91,196,232,.8));
}

/* 15 Â· CTA SECTION
============================================================ */
.cta-section {
  padding: 96px 0;
  position: relative; overflow: hidden;
  isolation: isolate;
}
.cta-section--team-bg {
  background-image: url('../assets/ready-to-build-your-dream-team.jpeg');
  background-size: cover;
  background-position: center;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.55) 50%, rgba(0,0,0,.72) 100%);
  pointer-events: none;
}
.cta-section > .container {
  position: relative;
  z-index: 1;
}
.cta-inner { text-align: center; }
.cta-inner .section-head { position: relative; z-index: 1; }
.cta-inner .section-head .section-lead { font-size: 1.1rem; margin-bottom: 40px; }
.cta-inner .reveal,
.cta-inner .reveal.d1,
.cta-inner .reveal.d2 {
  opacity: 1;
  transform: none;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* 16 · FOOTER — Collabera layout, Amtex sky palette
============================================================ */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--footer-bg);
  padding: 72px 0 0;
  border-top: 1px solid var(--footer-border);
}
.site-footer .container { position: relative; z-index: 1; }
.footer-watermark {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(8rem, 18vw, 14rem);
  font-weight: 800;
  color: rgba(91, 196, 232, 0.14);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px 32px;
  padding-bottom: 48px;
}
.footer-brand img { height: 45px; width: auto; margin-bottom: 2px; }
.footer-brand p {
  font-size: .9rem; color: var(--dark);
  line-height: 1.75; max-width: 300px; margin-bottom: 0;
}
.footer-badges { display: flex; gap: 12px; align-items: center; margin-top: 12px; }
.footer-badge-title {
  margin: 0;
  max-width: 260px;
  font-size: .78rem;
  line-height: 1.4;
  color: var(--dark);
  font-weight: 600;
}
.footer-badge {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1.5px solid var(--footer-border);
  background: var(--footer-surface);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
}
.footer-badge--image {
  width: 92px;
  height: 92px;
  border-radius: 12px;
  padding: 6px;
  overflow: hidden;
}
.footer-badge--image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.footer-badge-num {
  font-size: 1.1rem; font-weight: 800;
  color: var(--navy); line-height: 1;
}
.footer-badge-lbl {
  font-size: .58rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--gray); margin-top: 3px;
}
.footer-col-title {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.footer-col-title--spaced { margin-top: 32px; }
.footer-links { list-style: none; }
.footer-links li {
  border-bottom: 1px solid var(--footer-divider);
}
.footer-links li:last-child { border-bottom: none; }
.footer-links a {
  display: block;
  padding: 11px 0;
  font-size: .875rem;
  color: var(--dark);
  transition: color .2s var(--ease);
}
.footer-links a:hover { color: var(--royal); }
/* CTA button row */
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  padding: 28px 0 36px;
  border-top: 1px solid var(--footer-divider);
}
.footer-cta-right {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.footer-cta-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: .9rem; font-weight: 500;
  background: var(--royal);
  color: #fff;
  border: 1.5px solid var(--royal);
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.footer-cta-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.footer-cta-btn--outline {
  background: rgba(255, 255, 255, 0.55);
  color: var(--navy);
  border-color: var(--footer-border);
}
.footer-cta-btn--outline:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 28px;
  gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--footer-divider);
}
.footer-bottom p { font-size: .8rem; color: var(--gray); }
.footer-bottom-social { display: flex; gap: 18px; align-items: center; }
.footer-bottom-social a {
  color: var(--navy);
  transition: color .2s var(--ease);
  display: flex;
}
.footer-bottom-social a:hover { color: var(--royal); }

/* 17 Â· PAGE HERO (inner pages)
============================================================ */
.page-hero {
  background: var(--navy);
  padding: 154px 0 72px;
  position: relative; overflow: hidden;
}
.page-hero-arcs {
  position: absolute; right: -8%; top: -10%;
  width: 50%; height: 120%;
  opacity: .35; pointer-events: none;
}
.page-hero .eyebrow { display: block; margin-bottom: 14px; }
.page-hero h1 { color: #fff; max-width: 680px; }
.page-hero h1 em { font-style: normal; color: var(--sky); }
.page-hero .sub {
  color: rgba(255,255,255,.72);
  font-size: 1.1rem; line-height: 1.8;
  max-width: 580px; margin-top: 18px;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .8125rem; color: rgba(255,255,255,.45);
  margin-bottom: 22px;
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color .25s; }
.breadcrumb a:hover { color: rgba(255,255,255,.9); }
.breadcrumb span { color: rgba(255,255,255,.25); }

/* Inner page banner hero (image + overlay)
============================================================ */
.inner-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(360px, 48vh, 520px);
  padding: 148px 0 56px;
  overflow: hidden;
  background: var(--navy);
}
.inner-hero__media {
  position: absolute;
  inset: 0;
}
.inner-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.inner-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(6, 14, 29, .92) 0%,
    rgba(13, 50, 112, .78) 45%,
    rgba(13, 50, 112, .52) 100%
  );
}
.inner-hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.inner-hero__eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--sky);
}
.inner-hero__title {
  color: #fff;
  margin-bottom: 0;
}
.inner-hero__title em {
  font-style: normal;
  color: var(--sky);
}
.inner-hero__lead {
  margin-top: 18px;
  max-width: 560px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .78);
}
.inner-hero--left {
  align-items: center;
}
.inner-hero--left .inner-hero__content {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.inner-hero--left .inner-hero__overlay {
  background: linear-gradient(
    90deg,
    rgba(6, 14, 29, .92) 0%,
    rgba(6, 14, 29, .78) 42%,
    rgba(13, 50, 112, .45) 100%
  );
}
.inner-hero--left .inner-hero__title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1.12;
  font-weight: 800;
}
.inner-hero--large .inner-hero__title {
  font-size: clamp(3.25rem, 7vw, 5.5rem);
  line-height: 1.04;
}
.inner-hero--left .inner-hero__lead {
  margin-top: 14px;
  max-width: 480px;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.75;
}
.inner-hero__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}
.inner-hero--left .inner-hero__title,
.inner-hero--left .inner-hero__lead,
.inner-hero--left .inner-hero__eyebrow {
  text-align: left;
  width: 100%;
}
@media (max-width: 768px) {
  .inner-hero {
    min-height: 320px;
    padding: 128px 0 44px;
  }
  .inner-hero__lead { font-size: 1rem; }
}

/* 18 Â· CONTACT PAGE
============================================================ */
.contact-modern { background: #fff; }
.contact-modern__intro {
  max-width: 760px;
  margin-bottom: 40px;
}
.contact-modern__intro .section-lead {
  margin-bottom: 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
}
.contact-form-wrap {
  background: #fff;
  border: 1px solid rgba(13, 50, 112, .12);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 18px 40px rgba(8, 23, 51, .07);
}
.contact-form-wrap__eyebrow { display: block; margin-bottom: 10px; }
.contact-form-wrap__title {
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(1.8rem, 2.8vw, 2.2rem);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: .8125rem; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .9375rem; color: var(--dark);
  background: #fff;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(91,196,232,.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-consent { font-size: .78rem; color: var(--gray); line-height: 1.6; }
.form-consent a { color: var(--royal); }
.contact-form__actions { display: flex; flex-direction: column; gap: 12px; }
.contact-submit { width: 100%; justify-content: center; }

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-panel {
  border: 1px solid rgba(13, 50, 112, .12);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 24px;
}
.contact-panel h4 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.contact-panel--dark {
  background: linear-gradient(140deg, rgba(8, 23, 51, .97) 0%, rgba(13, 50, 112, .94) 100%);
  color: #fff;
  border: none;
}
.contact-panel__kicker {
  display: inline-block;
  margin-bottom: 10px;
  background: var(--sky);
  color: var(--navy);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-panel--dark h3 {
  color: #fff;
  margin-bottom: 8px;
}
.contact-panel--dark p {
  color: rgba(255, 255, 255, .72);
  margin-bottom: 12px;
}
.contact-panel--dark a {
  color: var(--sky);
  font-weight: 600;
}
.contact-office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-office-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
}
.contact-office-card h4 {
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 1rem;
}
.contact-office-card p {
  font-size: .8rem;
  color: var(--gray);
  line-height: 1.65;
}
.contact-office-card--full { grid-column: 1 / -1; }
.contact-contact-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-contact-row + .contact-contact-row { margin-top: 12px; }
.contact-contact-row span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gray);
}
.contact-contact-row a { color: var(--royal); font-weight: 600; }

.contact-assurance {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.contact-assurance__item {
  background: var(--footer-bg);
  border: 1px solid var(--footer-border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-assurance__item strong {
  font-size: .84rem;
  color: var(--navy);
}
.contact-assurance__item span {
  font-size: .84rem;
  color: var(--gray);
}

/* 19 Â· ABOUT PAGE
============================================================ */
.about-page-intro { background: #fff; }
.about-section-eyebrow {
  display: block;
  margin-bottom: 14px;
}
.about-section-eyebrow--light { color: var(--sky); }
.about-prose {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.85;
}
.about-offerings { background: #fff; }
.about-offerings-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 48px;
}
.about-offerings-intro__text .section-lead {
  margin-bottom: 0;
  max-width: 520px;
}
.about-offerings-intro__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 24px 56px rgba(13, 50, 112, .14);
}
.about-offerings-intro__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-offerings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.about-offering-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
}
.about-offering-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.about-offering-card p {
  font-size: .9375rem;
  color: var(--gray);
  line-height: 1.8;
}
.about-offering-card p + p { margin-top: 16px; }
.about-approach {
  position: relative;
  overflow: hidden;
  min-height: clamp(400px, 50vh, 560px);
  display: flex;
  align-items: center;
}
.about-approach__media {
  position: absolute;
  inset: 0;
}
.about-approach__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  display: block;
}
.about-approach__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    102deg,
    rgba(6, 14, 29, .94) 0%,
    rgba(6, 14, 29, .86) 40%,
    rgba(6, 14, 29, .58) 68%,
    rgba(6, 14, 29, .42) 100%
  );
}
.about-approach__content {
  position: relative;
  z-index: 1;
  width: 100%;
}
.about-approach-inner {
  max-width: 620px;
  text-align: left;
}
.about-approach__eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--sky);
}
.about-approach-quote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 500;
  color: rgba(255, 255, 255, .92);
  line-height: 1.65;
  border-left: 3px solid var(--sky);
  padding-left: 28px;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .3);
}
.about-why { background: var(--off-white); }
.about-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.about-why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.about-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13, 50, 112, .08);
}
.about-why-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--sky);
  line-height: 1;
  margin-bottom: 16px;
}
.about-why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.about-why-card p {
  font-size: .875rem;
  color: var(--gray);
  line-height: 1.72;
}
.about-president { background: #fff; }
.about-president-inner { max-width: 780px; margin: 0 auto; }
.about-president-card {
  position: relative;
  background: var(--off-white);
  border-left: 4px solid var(--sky);
  border-radius: var(--radius-md);
  padding: 44px 48px;
}
.about-president-quote-icon {
  position: absolute;
  top: 28px;
  right: 36px;
  color: var(--light);
}
.about-president-card p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--gray);
  margin-bottom: 24px;
}
.about-president-card p:last-of-type { margin-bottom: 28px; }
.about-president-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-president-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy), var(--royal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.about-president-name {
  font-weight: 600;
  color: var(--navy);
  font-size: .9375rem;
}
.about-president-role {
  font-size: .8125rem;
  color: var(--gray);
}
.mission-section {
  position: relative;
  overflow: hidden;
  min-height: clamp(520px, 62vh, 680px);
  display: flex;
  align-items: center;
}
.mission-section__media {
  position: absolute;
  inset: 0;
}
.mission-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  display: block;
}
.mission-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    102deg,
    rgba(6, 14, 29, .94) 0%,
    rgba(6, 14, 29, .88) 38%,
    rgba(6, 14, 29, .62) 62%,
    rgba(6, 14, 29, .38) 100%
  );
}
.mission-section__content {
  position: relative;
  z-index: 1;
  width: 100%;
}
.mission-panel {
  max-width: 620px;
  padding: 12px 0;
}
.mission-panel__eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--sky);
}
.mission-panel__quote {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.8vw, 2.5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  letter-spacing: -.02em;
  margin: 0 0 22px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .35);
}
.mission-panel__body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, .88);
  margin: 0 0 32px;
  max-width: 540px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .3);
}
.mission-panel__highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.mission-highlight {
  padding: 16px 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(6px);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.mission-highlight:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(91, 196, 232, .45);
}
.mission-highlight strong {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 6px;
}
.mission-highlight span {
  display: block;
  font-size: .8125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .85);
}
.services-detail-section { background: #fff; }
.services-detail { display: flex; flex-direction: column; gap: 80px; }
.service-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
}
.service-detail-row:last-child { border-bottom: none; padding-bottom: 0; }
.service-detail-row.reverse { direction: rtl; }
.service-detail-row.reverse > * { direction: ltr; }
.service-visual {
  background: linear-gradient(145deg, var(--navy) 0%, var(--royal) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.service-visual-num {
  font-family: var(--font-display);
  font-size: 9rem; font-weight: 700;
  color: rgba(255,255,255,.07);
  user-select: none;
}
.service-visual-icon {
  position: absolute;
  color: rgba(91,196,232,.6);
}
.service-detail-content .eyebrow { display: block; margin-bottom: 12px; }
.service-detail-content h2 { color: var(--navy); margin-bottom: 18px; }
.service-detail-content p { color: var(--gray); line-height: 1.8; font-size: 1rem; margin-bottom: 20px; }
.service-bullets { display: flex; flex-direction: column; gap: 10px; }
.service-bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: var(--dark);
}
.service-visual-photo {
  background-size: cover;
  background-position: center;
}
.service-visual-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(145deg, rgba(13,50,112,.75) 0%, rgba(25,105,176,.55) 100%);
}
.service-subsection { margin-top: 24px; }
.service-subsection h3 {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 600;
  color: var(--navy); margin-bottom: 12px;
}
.service-subsection p:last-child { margin-bottom: 0; }
.service-detail-content .btn { margin-top: 28px; }

/* Service detail page (modern) */
.service-page { background: #fff; }
.service-page__layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.service-page__side {
  position: sticky;
  top: 110px;
}
.service-side-card {
  border: 1px solid rgba(13, 50, 112, .12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 34px rgba(7, 23, 51, .08);
}
.service-side-card__image {
  aspect-ratio: 16 / 11;
  background-size: cover;
  background-position: center;
}
.service-side-card__body { padding: 20px; }
.service-side-card__body .eyebrow { display: block; margin-bottom: 8px; }
.service-side-card__body h2 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.3;
}
.service-side-card__body p {
  margin-bottom: 16px;
  color: var(--gray);
  line-height: 1.7;
  font-size: .92rem;
}
.service-side-card__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-side-card__actions .btn {
  width: 100%;
  justify-content: center;
}
.service-page__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-content-card {
  background: #fff;
  border: 1px solid rgba(13, 50, 112, .1);
  border-radius: var(--radius-md);
  padding: 22px 24px;
}
.service-content-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.12rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-content-card h3 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--footer-bg);
  color: var(--royal);
  font-size: .73rem;
  letter-spacing: .04em;
  font-weight: 700;
}
.service-content-card p {
  margin-bottom: 0;
  color: var(--gray);
  line-height: 1.82;
}
.service-content-card--lead {
  border-color: rgba(25, 105, 176, .2);
  background: linear-gradient(180deg, rgba(239, 249, 253, .7) 0%, rgba(255, 255, 255, 1) 100%);
}
.service-content-card--lead h3 {
  font-size: 1.22rem;
}
.service-content-card--lead h3 span { display: none; }
.service-content-card .service-bullets { margin-top: 12px; }
.service-content-card .service-bullets li {
  font-size: .93rem;
  color: var(--dark);
  line-height: 1.65;
}
.service-page__footer-actions {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* 20 Â· CAREERS
============================================================ */
.jobs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.job-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  background: #fff;
  transition: all .3s var(--ease);
  display: flex; flex-direction: column; gap: 12px;
}
.job-card:hover { border-color: var(--sky); box-shadow: var(--shadow); transform: translateY(-2px); }
.job-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
  background: var(--light); color: var(--royal);
  width: fit-content;
}
.job-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--navy); }
.job-meta { font-size: .85rem; color: var(--gray); display: flex; gap: 16px; flex-wrap: wrap; }
.job-meta span { display: flex; align-items: center; gap: 5px; }

/* 21 Â· SUPPLIER DIVERSITY
============================================================ */
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cert-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  background: #fff;
  text-align: center;
  transition: all .3s var(--ease);
}
.cert-card:hover { border-color: var(--sky); box-shadow: var(--shadow); transform: translateY(-3px); }
.cert-icon { font-size: 2.5rem; margin-bottom: 16px; }
.cert-card h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); margin-bottom: 10px; }
.cert-card p { font-size: .875rem; color: var(--gray); line-height: 1.7; }

/* 22 · INSIGHTS
============================================================ */
.insights-section { background: #fff; }
.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}
.insight-card {
  background: #fff;
  border: 1px solid rgba(13, 50, 112, .12);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 14px 34px rgba(7, 23, 51, .06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.insight-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--royal);
  font-weight: 700;
}
.insight-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.35;
}
.insight-card p {
  margin: 0;
  color: var(--gray);
  line-height: 1.8;
}
.insight-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(13, 50, 112, .08);
  padding-top: 14px;
  font-size: .86rem;
  color: var(--gray);
}
.insight-card__footer a {
  color: var(--royal);
  font-weight: 700;
}
.insight-card__footer a:hover { color: var(--navy); }
.insight-detail { background: #fff; }
.insight-article {
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(13, 50, 112, .12);
  border-radius: var(--radius-lg);
  padding: 34px clamp(22px, 4vw, 44px);
  box-shadow: 0 16px 36px rgba(7, 23, 51, .06);
}
.insight-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--royal);
  font-weight: 700;
}
.insight-article__intro {
  margin: 16px 0 0;
  font-size: 1.04rem;
  line-height: 1.85;
  color: var(--gray);
}
.insight-article__sections {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.insight-article__section h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
  color: var(--navy);
}
.insight-article__section p {
  margin: 0;
  color: var(--dark);
  line-height: 1.75;
}
.insight-article__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Industries pages */
.industries-page { background: #fff; }
.industries-page__intro {
  max-width: 780px;
  margin-bottom: 34px;
}
.industries-page__intro .section-lead { margin-bottom: 0; }
.industries-page__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.industry-tile {
  border: 1px solid rgba(13, 50, 112, .12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 34px rgba(7, 23, 51, .06);
}
.industry-tile__media {
  height: 210px;
  background-size: cover;
  background-position: center;
}
.industry-tile__body { padding: 20px 22px 22px; }
.industry-tile__body h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.2rem;
}
.industry-tile__body p {
  margin-bottom: 14px;
  color: var(--gray);
  line-height: 1.74;
}

.industry-detail { background: #fff; }
.industry-detail__layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
}
.industry-detail__highlight {
  border: 1px solid rgba(13, 50, 112, .12);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 34px);
  background: linear-gradient(165deg, rgba(239, 249, 253, .78) 0%, #fff 100%);
}
.industry-detail__highlight h2 {
  margin-bottom: 12px;
  color: var(--navy);
}
.industry-detail__highlight p {
  margin-bottom: 20px;
  color: var(--gray);
  line-height: 1.82;
}
.industry-detail__capabilities {
  display: grid;
  gap: 12px;
}
.industry-capability {
  border: 1px solid rgba(13, 50, 112, .1);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: start;
}
.industry-capability span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--footer-bg);
  color: var(--royal);
  font-size: .74rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.industry-capability p {
  margin: 0;
  color: var(--dark);
  line-height: 1.7;
}
.industry-detail__footer-actions {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Current opportunities */
.jobs-page { background: #fff; }
.jobs-toolbar {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 14px;
  margin-bottom: 16px;
  align-items: end;
}
.jobs-filter-btn {
  min-width: 150px;
  justify-content: center;
  margin-bottom: 10px;
}
.jobs-field { display: flex; flex-direction: column; gap: 7px; }
.jobs-field label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.jobs-field input {
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: .92rem;
}
.jobs-field input:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(91,196,232,.15);
}
.jobs-remote-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.jobs-types {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}
.jobs-type-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: var(--dark);
}
.jobs-type-check input {
  width: 15px;
  height: 15px;
  accent-color: var(--royal);
}
.jobs-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.jobs-empty {
  margin-top: 12px;
  color: var(--gray);
}
.jobs-toolbar-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.jobs-result-count {
  margin: 0;
  color: var(--gray);
  font-size: .9rem;
}
.jobs-pagination {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.jobs-pagination--top {
  margin-top: 0;
}
.jobs-page-btn {
  min-width: 110px;
  justify-content: center;
}
.jobs-page-numbers {
  display: flex;
  gap: 8px;
  align-items: center;
}
.jobs-page-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--navy);
  font-weight: 600;
  cursor: pointer;
}
.jobs-page-number.is-active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.jobs-page-btn.is-disabled {
  opacity: .45;
  pointer-events: none;
}

/* Careers page */
.careers-page { background: #fff; }
.careers-hero-card {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  margin-bottom: 24px;
}
.careers-hero-card__content {
  border: 1px solid rgba(13, 50, 112, .12);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
}
.careers-hero-card__content h2 {
  color: var(--navy);
  margin-bottom: 14px;
}
.careers-hero-card__content p {
  margin: 0;
  color: var(--gray);
  line-height: 1.82;
}
.careers-hero-card__content p + p { margin-top: 12px; }
.careers-hero-card__stats {
  display: grid;
  gap: 10px;
}
.careers-stat {
  border: 1px solid rgba(13, 50, 112, .12);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  background: linear-gradient(165deg, rgba(239, 249, 253, .75) 0%, #fff 100%);
}
.careers-stat strong {
  display: block;
  color: var(--navy);
  font-size: .94rem;
  margin-bottom: 5px;
}
.careers-stat span {
  color: var(--gray);
  font-size: .86rem;
  line-height: 1.6;
}
.careers-page__layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
}
.careers-benefits {
  border: 1px solid rgba(13, 50, 112, .12);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
  background: #fff;
}
.careers-benefits h2 {
  color: var(--navy);
  margin-bottom: 18px;
}
.careers-benefits__grid {
  margin: 0;
  display: grid;
  gap: 10px;
}
.careers-benefit {
  border: 1px solid rgba(13, 50, 112, .1);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--dark);
  font-size: .92rem;
  line-height: 1.55;
  background: #fff;
}
.careers-cta-card {
  border: 1px solid rgba(13, 50, 112, .12);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 30px);
  background: linear-gradient(165deg, rgba(239, 249, 253, .8) 0%, #fff 100%);
}
.careers-cta-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
}
.careers-cta-card p {
  margin-bottom: 16px;
  color: var(--gray);
  line-height: 1.75;
}
.careers-cta-card__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.careers-cta-card__actions .btn {
  width: 100%;
  justify-content: center;
}
.careers-cta-card__foot {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: .84rem;
  color: var(--gray);
}

/* 22 Â· RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .values-grid    { grid-template-columns: repeat(2, 1fr); }
  .stats-banner-inner { grid-template-columns: 1fr; min-height: auto; }
  .stats-quote        { padding: 56px 32px; }
  .stats-grid-panel   { min-height: 360px; }
  .global-map-layout { grid-template-columns: 1fr; }
  .global-map-stage  { min-height: auto; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 36px; }
  .insights-grid  { grid-template-columns: 1fr; }
  .industries-page__grid { grid-template-columns: 1fr; }
  .industry-detail__layout { grid-template-columns: 1fr; }
  .jobs-toolbar { grid-template-columns: 1fr 1fr; }
  .careers-hero-card { grid-template-columns: 1fr; }
  .careers-page__layout { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  :root { --section-py: 72px; }
  .hero-grid      { grid-template-columns: 1fr; }
  .hero-arcs      { opacity: .2; width: 90%; right: -30%; }
  .hero-visual    { display: none; }
  .about-inner    { grid-template-columns: 1fr; gap: 48px; }
  .about-panel-wrap { order: -1; }
  .contact-layout { grid-template-columns: 1fr; }
  .mission-panel__highlights { grid-template-columns: 1fr; }
  .mission-section { min-height: auto; }
  .mission-section__media img { object-position: 65% center; }
  .about-offerings-grid { grid-template-columns: 1fr; }
  .about-offerings-intro { grid-template-columns: 1fr; gap: 32px; }
  .about-offerings-intro__visual { order: -1; }
  .contact-assurance { grid-template-columns: 1fr; }
  .about-why-grid { grid-template-columns: 1fr 1fr; }
  .about-president-card { padding: 32px 28px; }
  .service-detail-row { grid-template-columns: 1fr; gap: 36px; }
  .service-detail-row.reverse { direction: ltr; }
  .service-page__layout { grid-template-columns: 1fr; }
  .service-page__side { position: static; top: auto; }
  .jobs-toolbar { grid-template-columns: 1fr; }
  .jobs-toolbar-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .jobs-grid      { grid-template-columns: 1fr; }
  .cert-grid      { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle         { display: flex; }
  .services-grid      { grid-template-columns: 1fr; }
  .values-grid        { grid-template-columns: 1fr; }
  .stats-cell { padding: 22px 18px; }
  .footer-grid        { grid-template-columns: 1fr; }
  .footer-cta         { flex-direction: column; align-items: stretch; }
  .footer-cta-right   { flex-direction: column; }
  .footer-cta-btn     { text-align: center; }
  .footer-bottom      { flex-direction: column; text-align: center; }
  .form-row           { grid-template-columns: 1fr; }
  .contact-office-grid { grid-template-columns: 1fr; }
  .cert-grid          { grid-template-columns: 1fr; }
  .industries-split   { grid-template-columns: 1fr; gap: 48px; align-items: start; }
  .industries-visual  { aspect-ratio: 16 / 10; }
  .about-badge--alt   { left: -8px; top: -12px; }
}
@media (max-width: 1024px) {
  .industries-split { grid-template-columns: 1fr; gap: 48px; }
  .about-why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  :root { --section-py: 56px; }
  .hero-actions  { flex-direction: column; align-items: flex-start; }
  .cta-btns      { flex-direction: column; align-items: center; }
  .about-badge   { top: -12px; right: -8px; }
  .about-badge--alt { left: -8px; top: -12px; }
  .about-why-grid { grid-template-columns: 1fr; }
  .about-president-quote-icon { display: none; }
}

/* Back to top
============================================================ */
.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(13, 50, 112, .28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition:
    opacity .3s var(--ease),
    transform .3s var(--ease),
    visibility .3s var(--ease),
    background .25s var(--ease);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--royal);
}
.back-to-top:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 3px;
}
@media (max-width: 480px) {
  .back-to-top {
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
  }
}


