/* =============================================================
   TAGline — Design System
   Pattern: Enterprise Gateway | Style: Trust & Authority
   Type:  Lexend (heading) + Source Sans 3 (body)
   ============================================================= */

/* =============================================================
   0. PRELOADER / BRAND INTRO SPLASH
   Full-viewport overlay with 3D logo flip, sequential text reveal,
   progress bar and a faint truck driving across.
   - Default mode: ~2.7s brand intro (first homepage visit)
   - .is-quick   : ~0.8s simple loader (every other page load)
   - .is-hidden  : fades out and removes itself
   ============================================================= */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background:
    radial-gradient(circle at 70% 30%, rgba(245,158,11,.12) 0%, transparent 55%),
    radial-gradient(circle at 25% 80%, rgba(3,105,161,.18) 0%, transparent 55%),
    linear-gradient(135deg, #0F172A 0%, #1E293B 60%, #0F172A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  transition: opacity .7s ease, visibility .7s ease;
  overflow: hidden;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-content {
  position: relative;
  z-index: 2;
  text-align: center;
  transform-style: preserve-3d;
  padding: 1rem;
}

/* 3D rotating logo mark */
.preloader-mark {
  width: 110px;
  height: 110px;
  margin: 0 auto 1.75rem;
  transform-style: preserve-3d;
  animation: pl-mark-3d 1.6s cubic-bezier(.5,.05,.2,1) forwards;
  filter: drop-shadow(0 12px 32px rgba(3,105,161,.35));
}
.preloader-mark svg { width: 100%; height: 100%; display: block; }
@keyframes pl-mark-3d {
  0%   { opacity: 0; transform: rotateY(-180deg) rotateX(20deg) scale(.3); }
  55%  { opacity: 1; transform: rotateY(0deg) rotateX(0deg) scale(1.12); }
  100% { opacity: 1; transform: rotateY(0deg) rotateX(0deg) scale(1); }
}

/* Pulsing rings around logo */
.preloader-rings {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, calc(-50% - 4rem));
  width: 110px; height: 110px;
  pointer-events: none;
}
.preloader-rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(245,158,11,.45);
  opacity: 0;
  animation: pl-ring 1.8s ease-out infinite;
}
.preloader-rings span:nth-child(2) { animation-delay: .6s; }
.preloader-rings span:nth-child(3) { animation-delay: 1.2s; }
@keyframes pl-ring {
  0%   { opacity: 0; transform: scale(.6); }
  30%  { opacity: .8; }
  100% { opacity: 0; transform: scale(2.4); }
}

/* Brand name reveal */
.preloader-name {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
  opacity: 0;
  transform: translateY(20px);
  animation: pl-up .55s 1.1s cubic-bezier(.2,.65,.3,1) forwards;
}
.preloader-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-amber);
  font-weight: 600;
  margin-top: 8px;
  opacity: 0;
  transform: translateY(20px);
  animation: pl-up .55s 1.45s cubic-bezier(.2,.65,.3,1) forwards;
}
@keyframes pl-up {
  to { opacity: 1; transform: translateY(0); }
}

/* Progress bar */
.preloader-bar {
  margin: 2rem auto 0;
  width: 220px;
  height: 3px;
  background: rgba(255,255,255,.10);
  border-radius: 999px;
  overflow: hidden;
}
.preloader-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--c-blue) 0%, var(--c-amber) 100%);
  border-radius: 999px;
  animation: pl-fill 2.4s .3s cubic-bezier(.4,.05,.3,1) forwards;
}
@keyframes pl-fill {
  to { width: 100%; }
}

/* Animated truck driving across the bottom */
.preloader-truck {
  position: absolute;
  bottom: 14%;
  left: -120px;
  width: 80px; height: 50px;
  color: rgba(255,255,255,.18);
  animation: pl-drive 2.7s cubic-bezier(.4,0,.6,1) forwards;
}
.preloader-truck svg { width: 100%; height: 100%; }
@keyframes pl-drive {
  0%   { left: -120px; }
  100% { left: calc(100% + 120px); }
}

/* Footer mini-text */
.preloader-foot {
  position: absolute;
  bottom: 24px;
  left: 0; right: 0;
  text-align: center;
  z-index: 3;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  opacity: 0;
  animation: pl-fade .5s 1.8s ease-out forwards;
}
@keyframes pl-fade {
  to { opacity: 1; }
}

/* ===== Quick mode (returning visitor / non-home pages) ===== */
.preloader.is-quick .preloader-mark      { animation-duration: .5s; }
.preloader.is-quick .preloader-rings span{ animation-duration: 1s; }
.preloader.is-quick .preloader-name      { animation-delay: .25s; animation-duration: .3s; }
.preloader.is-quick .preloader-tag       { animation-delay: .35s; animation-duration: .3s; }
.preloader.is-quick .preloader-bar::after{ animation-duration: .7s; animation-delay: .1s; }
.preloader.is-quick .preloader-truck     { display: none; }
.preloader.is-quick .preloader-foot      { display: none; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .preloader-mark,
  .preloader-name,
  .preloader-tag,
  .preloader-bar::after,
  .preloader-truck,
  .preloader-foot,
  .preloader-rings span { animation-duration: .3s !important; animation-delay: 0s !important; }
  .preloader-mark { transform: none; opacity: 1; }
}

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Brand */
  --c-navy:      #0F172A;
  --c-navy-700:  #1E293B;
  --c-navy-600:  #334155;
  --c-slate-500: #475569;
  --c-slate-400: #64748B;
  --c-slate-300: #94A3B8;
  --c-slate-200: #CBD5E1;
  --c-slate-100: #E2E8F0;
  --c-slate-50:  #F1F5F9;

  /* CTA / Accent */
  --c-blue:      #0369A1;
  --c-blue-700:  #075985;
  --c-blue-600:  #0284C7;
  --c-blue-100:  #DBEAFE;

  --c-amber:     #F59E0B;
  --c-amber-700: #B45309;
  --c-amber-600: #D97706;
  --c-amber-100: #FEF3C7;

  /* Surfaces — warm neutral palette */
  --c-bg:        #F4F1E8;   /* warm linen — main bg */
  --c-bg-alt:    #FFFFFF;   /* white — emphasized sections */
  --c-bg-muted:  #EAE5D7;   /* warm beige — alternating muted sections */
  --c-text:      #020617;
  --c-text-muted:#475569;
  --c-border:    #D9D3C4;   /* warm beige border, harmonizes with bg */

  /* State */
  --c-success:   #10B981;
  --c-danger:    #EF4444;
  --c-warning:   #F59E0B;
  --c-info:      #0EA5E9;

  /* Typography */
  --font-heading: 'Lexend', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body:    'Source Sans 3', system-ui, -apple-system, Segoe UI, sans-serif;
  --fs-xs:   0.75rem;   /* 12 */
  --fs-sm:   0.875rem;  /* 14 */
  --fs-base: 1rem;      /* 16 */
  --fs-md:   1.125rem;  /* 18 */
  --fs-lg:   1.25rem;   /* 20 */
  --fs-xl:   1.5rem;    /* 24 */
  --fs-2xl:  1.875rem;  /* 30 */
  --fs-3xl:  2.25rem;   /* 36 */
  --fs-4xl:  3rem;      /* 48 */
  --fs-5xl:  3.75rem;   /* 60 */
  --fs-6xl:  4.5rem;    /* 72 */

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.5rem;
  --sp-6:  2rem;
  --sp-7:  3rem;
  --sp-8:  4rem;
  --sp-9:  5rem;
  --sp-10: 6rem;
  --sp-12: 8rem;

  /* Radii */
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  12px;
  --r-xl:  16px;
  --r-2xl: 24px;
  --r-pill: 999px;

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(2,6,23,.06);
  --sh-sm: 0 2px 4px rgba(2,6,23,.06), 0 1px 2px rgba(2,6,23,.04);
  --sh-md: 0 4px 12px rgba(2,6,23,.08), 0 2px 4px rgba(2,6,23,.04);
  --sh-lg: 0 12px 28px rgba(2,6,23,.10), 0 4px 10px rgba(2,6,23,.06);
  --sh-xl: 0 24px 56px rgba(2,6,23,.14), 0 8px 16px rgba(2,6,23,.06);
  --sh-glow:  0 0 0 4px rgba(3,105,161,.18);

  /* Motion */
  --t-fast:  150ms ease;
  --t-base:  250ms ease;
  --t-slow:  400ms cubic-bezier(.2,.65,.3,1);

  /* Layout */
  --container: 1240px;
  --container-sm: 960px;
  --header-h: 96px;

  /* Z-index scale */
  --z-base: 1;
  --z-overlay: 10;
  --z-sticky: 20;
  --z-dropdown: 30;
  --z-header: 40;
  --z-modal: 50;
  --z-toast: 60;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { height: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--c-navy);
}
h1 { font-size: clamp(1.625rem, 1.6vw + .9rem, 2.5rem); font-weight: 700; }
h2 { font-size: clamp(1.375rem, 1vw + .9rem, 1.875rem); font-weight: 700; }
h3 { font-size: clamp(1.125rem, .5vw + .9rem, 1.375rem); }
h4 { font-size: clamp(1rem, .3vw + .9rem, 1.125rem); }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: .08em; }
p { color: var(--c-text-muted); }
strong { font-weight: 600; color: var(--c-text); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus states */
:focus-visible {
  outline: 3px solid var(--c-blue);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* Skip-to-content link (keyboard accessibility — visible only when focused) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 999999;
  padding: 12px 20px;
  background: var(--c-amber);
  color: var(--c-navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: var(--r-md);
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; outline: 3px solid #fff; outline-offset: 2px; }

/* Selection */
::selection { background: var(--c-blue); color: #fff; }

/* ---------- 3. Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
}
.container--sm { max-width: var(--container-sm); }

.section { padding-block: clamp(2.25rem, 4vw, 4rem); }
.section--tight { padding-block: clamp(1.75rem, 2.8vw, 2.75rem); }
.section--dark  { background: var(--c-navy); color: #E2E8F0; }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: #fff; }
.section--dark p { color: #94A3B8; }
.section--alt   { background: var(--c-bg-alt); }
.section--muted { background: var(--c-bg-muted); }

.grid { display: grid; gap: var(--sp-6); }
.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)); }
.grid--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-2 { gap: var(--sp-2); }
.gap-3 { gap: var(--sp-3); }
.gap-4 { gap: var(--sp-4); }
.gap-5 { gap: var(--sp-5); }
.gap-6 { gap: var(--sp-6); }

/* Section header (eyebrow + title + lede) */
.s-head { max-width: 720px; margin-bottom: var(--sp-5); }
.s-head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--fs-xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-blue);
  padding: 5px 12px;
  background: var(--c-blue-100);
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-3);
}
.section--dark .eyebrow { background: rgba(3,105,161,.18); color: #7DD3FC; }
.s-head .lede {
  font-size: var(--fs-base);
  max-width: 60ch;
  color: var(--c-text-muted);
  margin-top: var(--sp-3);
}
.s-head--center .lede { margin-inline: auto; }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 14px 26px;
  border-radius: var(--r-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-base);
  line-height: 1;
  cursor: pointer;
  transition: background-color var(--t-base), color var(--t-base),
              box-shadow var(--t-base), border-color var(--t-base);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--c-blue);
  color: #fff;
  box-shadow: var(--sh-sm);
}
.btn-primary:hover { background: var(--c-blue-700); box-shadow: var(--sh-md); }
.btn-amber {
  background: var(--c-amber);
  color: var(--c-navy);
  box-shadow: var(--sh-sm);
}
.btn-amber:hover { background: var(--c-amber-600); color: #fff; }
.btn-dark { background: var(--c-navy); color: #fff; }
.btn-dark:hover { background: var(--c-navy-700); }
.btn-outline {
  background: transparent;
  border-color: var(--c-slate-200);
  color: var(--c-navy);
}
.btn-outline:hover {
  border-color: var(--c-navy);
  background: var(--c-navy);
  color: #fff;
}
.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,.3);
  color: #fff;
}
.btn-outline-light:hover { background: #fff; color: var(--c-navy); border-color: #fff; }
.btn-ghost { color: var(--c-blue); padding: 10px 4px; }
.btn-ghost:hover { color: var(--c-blue-700); gap: var(--sp-3); }
.btn-lg { padding: 18px 32px; font-size: var(--fs-md); }
.btn-sm { padding: 10px 18px; font-size: var(--fs-sm); }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* Icon-only round */
.btn-icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--c-slate-100);
  color: var(--c-navy);
  transition: var(--t-base);
}
.btn-icon:hover { background: var(--c-navy); color: #fff; }

/* ---------- 5. Header / Navigation ---------- */
.topbar {
  background: var(--c-navy);
  color: #CBD5E1;
  font-size: var(--fs-sm);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  gap: var(--sp-5);
}
.topbar a { color: inherit; transition: var(--t-fast); }
.topbar a:hover { color: var(--c-amber); }
.topbar .tb-info { display: flex; gap: var(--sp-6); align-items: center; }
.topbar .tb-info span { display: inline-flex; align-items: center; gap: var(--sp-2); }
.topbar .tb-info svg { width: 14px; height: 14px; color: var(--c-amber); }
.topbar .tb-actions { display: flex; gap: var(--sp-4); align-items: center; }
.lang-switch { display: inline-flex; gap: var(--sp-2); }
.lang-switch a { padding: 4px 10px; border-radius: var(--r-sm); }
.lang-switch a.is-active { background: var(--c-amber); color: var(--c-navy); font-weight: 600; }

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  transition: box-shadow var(--t-base);
}
.site-header.is-scrolled { box-shadow: var(--sh-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  min-height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: var(--sp-3); }
.brand-mark {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-blue) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: var(--sh-sm);
}
.brand-mark svg { width: 28px; height: 28px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-md);              /* 18px — tightened for the longer legal name */
  color: var(--c-navy);
  letter-spacing: -.01em;
  white-space: nowrap;
}
.brand-tag {
  font-size: 0.6875rem;                 /* 11px */
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--c-amber-600);
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .brand-name { font-size: 0.9375rem; }       /* shrink further on small screens */
  .brand-tag  { font-size: 0.625rem; letter-spacing: .14em; }
  .brand-mark { width: 42px; height: 42px; }
}

.primary-nav { display: flex; gap: 4px; }
.primary-nav > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 16px;
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--c-navy);
  border-radius: var(--r-md);
  transition: var(--t-fast);
  position: relative;
}
.primary-nav > li > a:hover { color: var(--c-blue); background: var(--c-slate-50); }
.primary-nav > li > a.is-active { color: var(--c-blue); }
.primary-nav > li > a.is-active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 3px; border-radius: 2px;
  background: var(--c-blue);
}
.primary-nav .has-sub { position: relative; }
.primary-nav .has-sub > a::after {
  content: '';
  width: 6px; height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 4px;
}
.submenu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: var(--sp-3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: var(--t-base);
  z-index: var(--z-dropdown);
}
.primary-nav .has-sub:hover .submenu,
.primary-nav .has-sub:focus-within .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.submenu a {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  padding: 12px 14px;
  border-radius: var(--r-md);
  transition: var(--t-fast);
}
.submenu a:hover { background: var(--c-slate-50); }
.submenu .sm-ico {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-blue-100);
  color: var(--c-blue);
  border-radius: var(--r-sm);
  flex-shrink: 0;
}
.submenu .sm-ico svg { width: 18px; height: 18px; }
.submenu .sm-title { font-weight: 600; color: var(--c-navy); line-height: 1.2; }
.submenu .sm-desc  { font-size: var(--fs-xs); color: var(--c-text-muted); margin-top: 2px; }

.header-actions { display: flex; align-items: center; gap: var(--sp-3); }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--c-slate-50);
  color: var(--c-navy);
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }

/* Mobile menu overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.6);
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: var(--t-base);
}
.mobile-nav.is-open { opacity: 1; visibility: visible; }
.mobile-nav-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 86vw);
  background: #fff;
  padding: var(--sp-5);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--t-slow);
  display: flex; flex-direction: column; gap: var(--sp-5);
}
.mobile-nav.is-open .mobile-nav-panel { transform: translateX(0); }
.mn-close {
  align-self: flex-end;
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--c-slate-50);
  color: var(--c-navy);
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav ul a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 12px;
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--c-navy);
  border-radius: var(--r-md);
}
.mobile-nav ul a:hover { background: var(--c-slate-50); color: var(--c-blue); }
.mobile-nav .mn-sub { padding-left: var(--sp-5); font-size: var(--fs-sm); }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(440px, 58vh, 580px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-navy);
  color: #fff;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(15,23,42,.92) 0%, rgba(15,23,42,.75) 45%, rgba(15,23,42,.35) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: var(--sp-8);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: rgba(245,158,11,.15);
  border: 1px solid rgba(245,158,11,.4);
  color: var(--c-amber);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--fs-sm);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
}
.hero h1 {
  color: #fff;
  font-size: clamp(1.75rem, 2.2vw + 1rem, 2.875rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -.02em;
}
.hero h1 span { color: var(--c-amber); }
.hero-lede {
  font-size: var(--fs-base);
  color: #CBD5E1;
  max-width: 56ch;
  margin-top: var(--sp-4);
}
.hero-actions { display: flex; gap: var(--sp-3); margin-top: var(--sp-6); flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: var(--sp-6); margin-top: var(--sp-7); padding-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,.12);
  flex-wrap: wrap;
}
.hero-trust .ht-item .ht-num {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1;
}
.hero-trust .ht-item .ht-label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--c-amber);
  margin-top: 6px;
}

/* Hero floating card (right side) */
.hero-card {
  background: #fff;
  color: var(--c-text);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  box-shadow: var(--sh-xl);
  border: 1px solid var(--c-border);
}
.hero-card h3 { color: var(--c-navy); margin-bottom: var(--sp-2); }
.hc-list { display: flex; flex-direction: column; gap: var(--sp-3); margin-top: var(--sp-4); }
.hc-list li {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  padding: 12px;
  background: var(--c-slate-50);
  border-radius: var(--r-md);
}
.hc-list .hc-ico {
  width: 40px; height: 40px;
  background: var(--c-blue);
  color: #fff;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hc-list .hc-ico svg { width: 20px; height: 20px; }
.hc-list .hc-text strong { display: block; color: var(--c-navy); font-weight: 600; }
.hc-list .hc-text small { color: var(--c-text-muted); }

/* Hero slider variant (multiple slides) */
.hero--slider {
  padding: 0;
  min-height: clamp(480px, 65vh, 640px);
  display: block;
}
.hero-swiper {
  width: 100%;
  height: clamp(480px, 65vh, 640px);
  position: relative;
}
.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--c-navy);
  color: #fff;
}
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.06);
  transition: transform 8s cubic-bezier(.16,.7,.3,1);
  will-change: transform;
}
/* Ken-Burns: slowly zoom active slide */
.hero-swiper .swiper-slide-active .hero-slide-bg {
  transform: scale(1.18);
}
.hero-slide-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 0% 50%, rgba(15,23,42,.55), transparent 70%),
    linear-gradient(100deg, rgba(15,23,42,.92) 0%, rgba(15,23,42,.65) 50%, rgba(15,23,42,.25) 100%);
}
.hero-slide-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 820px;
  padding-block: clamp(3rem, 6vw, 5rem);
}

/* Stagger slide content reveal — Swiper toggles is-active when active */
.hero-swiper .swiper-slide .hero-slide-inner > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.16,.7,.3,1);
}
.hero-swiper .swiper-slide-active .hero-slide-inner > * { opacity: 1; transform: none; }
.hero-swiper .swiper-slide-active .hero-slide-inner > *:nth-child(1) { transition-delay: .15s; }
.hero-swiper .swiper-slide-active .hero-slide-inner > *:nth-child(2) { transition-delay: .30s; }
.hero-swiper .swiper-slide-active .hero-slide-inner > *:nth-child(3) { transition-delay: .45s; }
.hero-swiper .swiper-slide-active .hero-slide-inner > *:nth-child(4) { transition-delay: .60s; }

/* Pagination bullets */
.hero-swiper .swiper-pagination {
  bottom: 120px !important;
  text-align: left !important;
  padding-left: max(2rem, calc((100vw - var(--container)) / 2 + 1rem)) !important;
  z-index: 6;
}
.hero-swiper .swiper-pagination-bullet {
  width: 36px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.3);
  opacity: 1; transition: var(--t-base); margin: 0 6px !important;
}
.hero-swiper .swiper-pagination-bullet-active { background: var(--c-amber); width: 64px; }

/* Slide counter "01 / 04" + scroll indicator */
.hero-slide-meta {
  position: absolute;
  bottom: clamp(120px, 16vh, 160px);
  right: clamp(2rem, 4vw, 4rem);
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
  z-index: 5;
  font-family: var(--font-heading);
  color: #fff;
  pointer-events: none;
}
.hero-slide-meta .hsm-count {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1;
  padding: 12px 18px;
  background: rgba(15, 23, 42, .35);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-md);
}
.hero-slide-meta .hsm-current {
  font-size: 1.875rem;
  color: #fff;
  letter-spacing: -.02em;
}
.hero-slide-meta .hsm-sep {
  font-size: 1.125rem;
  color: rgba(255,255,255,.30);
  font-weight: 400;
  transform: translateY(-2px);
}
.hero-slide-meta .hsm-total {
  font-size: 1.125rem;
  color: var(--c-amber);
  letter-spacing: .04em;
}

.hero-scroll {
  position: absolute;
  left: 50%; bottom: 22px;
  transform: translateX(-50%);
  z-index: 5;
  display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.7);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-scroll svg {
  width: 22px; height: 22px;
  animation: bounce-down 1.6s infinite cubic-bezier(.4,0,.2,1);
}
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

/* Stat strip directly under hero */
.hero-stats {
  position: relative;
  margin-top: -56px;
  z-index: 5;
}
.hero-stats-inner {
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  border: 1px solid var(--c-border);
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.hero-stats-inner .hs-item {
  text-align: center;
  padding: 0 var(--sp-4);
  border-right: 1px solid var(--c-border);
}
.hero-stats-inner .hs-item:last-child { border-right: 0; }
.hero-stats-inner .hs-num {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 2.4vw + 1rem, 2.75rem);
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1;
  display: block;
}
.hero-stats-inner .hs-suf { color: var(--c-amber); }
.hero-stats-inner .hs-label {
  display: block;
  margin-top: 8px;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--c-text-muted);
  font-weight: 500;
}

@media (max-width: 900px) {
  .hero-stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-stats-inner .hs-item:nth-child(2) { border-right: 0; }
  .hero-swiper .swiper-pagination { bottom: 90px !important; }
  .hero-slide-meta { display: none; }
}
@media (max-width: 560px) {
  .hero-stats-inner { grid-template-columns: 1fr; }
  .hero-stats-inner .hs-item { border-right: 0; border-bottom: 1px solid var(--c-border); padding-block: var(--sp-4); }
  .hero-stats-inner .hs-item:last-child { border-bottom: 0; }
  .hero { min-height: 560px; }
  .hero-swiper { height: 560px; }
}

/* Tilt-on-hover utility (slight 3D feel for cards) */
.tilt-on-hover { transition: transform var(--t-base), box-shadow var(--t-base); transform-style: preserve-3d; }
.tilt-on-hover:hover { transform: perspective(1000px) rotateY(-2deg) rotateX(1.5deg) translateY(-4px); }

/* ---------- 7. Page Header (inner pages) ---------- */
.page-header {
  position: relative;
  background: var(--c-navy);
  color: #fff;
  padding-block: clamp(2.5rem, 4.5vw, 4rem);
  overflow: hidden;
}
.page-header-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .35;
}
.page-header-bg::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(15,23,42,.6), rgba(15,23,42,.92));
}
.page-header-inner { position: relative; z-index: 1; max-width: 800px; }
.page-header h1 { color: #fff; }
.crumbs {
  display: flex; gap: 10px; align-items: center;
  font-size: var(--fs-sm); color: var(--c-slate-300);
  margin-bottom: var(--sp-4);
}
.crumbs a:hover { color: var(--c-amber); }
.crumbs .sep { color: var(--c-slate-400); }

/* ---------- 8. Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  display: flex; flex-direction: column;
  height: 100%;
}
.card:hover {
  border-color: transparent;
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}
.card-icon {
  width: 64px; height: 64px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--c-blue-100) 0%, #fff 100%);
  color: var(--c-blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-5);
  transition: var(--t-base);
}
.card-icon svg { width: 32px; height: 32px; }
.card:hover .card-icon { background: var(--c-blue); color: #fff; }
.card h3 { margin-bottom: var(--sp-3); font-size: var(--fs-xl); }
.card p { margin-bottom: var(--sp-5); flex-grow: 1; }
.card-link {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  color: var(--c-blue);
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  transition: gap var(--t-base);
}
.card-link svg { width: 16px; height: 16px; transition: transform var(--t-base); }
.card:hover .card-link { gap: var(--sp-3); }
.card:hover .card-link svg { transform: translateX(4px); }

/* Service card with image */
.svc-card {
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--c-border);
  display: flex; flex-direction: column;
  height: 100%;
  transition: var(--t-base);
}
.svc-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }
.svc-card-media {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  background: var(--c-slate-100);
}
.svc-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow);
}
.svc-card:hover .svc-card-media img { transform: scale(1.06); }
.svc-card-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--c-amber);
  color: var(--c-navy);
  padding: 6px 12px;
  font-size: var(--fs-xs);
  font-weight: 700;
  border-radius: var(--r-sm);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.svc-card-body {
  padding: var(--sp-6);
  display: flex; flex-direction: column;
  flex-grow: 1;
}
.svc-card-body h3 { margin-bottom: var(--sp-3); font-size: var(--fs-xl); }
.svc-card-body p { flex-grow: 1; margin-bottom: var(--sp-4); }
.svc-features {
  display: flex; flex-direction: column; gap: 8px;
  margin: 0 0 var(--sp-5);
}
.svc-features li {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--fs-sm); color: var(--c-text);
}
.svc-features li::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--c-blue-100) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230369A1'><path fill-rule='evenodd' d='M16.7 5.3a1 1 0 010 1.4l-7.5 7.5a1 1 0 01-1.4 0L3.3 9.7a1 1 0 011.4-1.4l3.8 3.8 6.8-6.8a1 1 0 011.4 0z' clip-rule='evenodd'/></svg>") center/12px no-repeat;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Industry pill */
.industries {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;     /* fill the row visually — no empty space on one side */
  max-width: 980px;
  margin-inline: auto;
}
.industry-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--fs-sm);
  color: var(--c-navy);
  transition: var(--t-base);
}
.industry-pill:hover {
  background: var(--c-navy);
  color: #fff;
  border-color: var(--c-navy);
  transform: translateY(-2px);
}
.industry-pill svg { width: 18px; height: 18px; color: var(--c-blue); transition: var(--t-base); }
.industry-pill:hover svg { color: var(--c-amber); }

/* ---------- 9. Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.stat-item {
  text-align: center;
  padding: var(--sp-6);
  background: #fff;
  border-radius: var(--r-xl);
  border: 1px solid var(--c-border);
  transition: var(--t-base);
}
.stat-item:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.stat-item .stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 3vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1;
  display: block;
}
.stat-item .stat-suffix { color: var(--c-amber); }
.stat-item .stat-label {
  display: block;
  margin-top: var(--sp-3);
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--c-text-muted);
  font-weight: 500;
}

/* Stat strip (alt look on dark background) */
.stats--strip { background: var(--c-navy); padding: var(--sp-7) 0; }
.stats--strip .stat-item {
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stats--strip .stat-item:last-child { border-right: 0; }
.stats--strip .stat-num { color: #fff; }
.stats--strip .stat-label { color: var(--c-amber); }
.stats--strip .stat-item:hover { transform: none; box-shadow: none; }

/* ---------- 10. About / Image-text split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: var(--c-slate-100);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: #fff;
  padding: var(--sp-5);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  display: flex; align-items: center; gap: var(--sp-4);
  max-width: 280px;
}
.split-media-badge .sm-num {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--c-blue);
  line-height: 1;
}
.split-media-badge .sm-text {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: 1.3;
}
.split-body h2 { margin-bottom: var(--sp-4); }
.split-body p { margin-bottom: var(--sp-4); font-size: var(--fs-md); }
.split-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3);
  margin: var(--sp-5) 0;
}
.split-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-weight: 500;
  color: var(--c-navy);
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
}
.split-list li svg { width: 22px; height: 22px; color: var(--c-blue); flex-shrink: 0; }

/* ---------- 11. Process / Steps ---------- */
.process { position: relative; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  position: relative;
}
.process-step {
  text-align: center;
  position: relative;
}
.process-step .ps-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--c-border);
  color: var(--c-blue);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-5);
  position: relative;
  z-index: 2;
  transition: var(--t-base);
}
.process-step:hover .ps-num {
  background: var(--c-blue);
  color: #fff;
  border-color: var(--c-blue);
  box-shadow: var(--sh-md);
}
.process-step h4 { margin-bottom: var(--sp-2); }
.process-step p { font-size: var(--fs-sm); }
.process-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--c-slate-200) 0 8px, transparent 8px 16px);
  z-index: 1;
}

/* ---------- 12. Fleet showcase ---------- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.fleet-card {
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--c-border);
  position: relative;
  transition: var(--t-base);
}
.fleet-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }
.fleet-card-media {
  aspect-ratio: 4/3;
  background: var(--c-slate-100);
  overflow: hidden;
}
.fleet-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow);
}
.fleet-card:hover .fleet-card-media img { transform: scale(1.06); }
.fleet-card-body { padding: var(--sp-5); }
.fleet-card-cat {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--c-blue);
  font-weight: 600;
  font-family: var(--font-heading);
}
.fleet-card-title { font-size: var(--fs-lg); margin: 6px 0 var(--sp-3); }
.fleet-spec {
  display: flex; gap: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--c-border);
}
.fleet-spec div { display: flex; flex-direction: column; }
.fleet-spec .fs-label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-text-muted);
}
.fleet-spec .fs-val {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--c-navy);
}

/* ---------- 13. Testimonials ---------- */
.testi-swiper { padding-bottom: var(--sp-7) !important; }
.testi-swiper .swiper-pagination { bottom: 0 !important; }
.testi-swiper .swiper-pagination-bullet {
  width: 10px; height: 10px; background: var(--c-slate-300); opacity: 1;
}
.testi-swiper .swiper-pagination-bullet-active { background: var(--c-blue); }
.testi-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-7);
  position: relative;
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 12px; right: 28px;
  font-family: Georgia, serif;
  font-size: 96px;
  line-height: 1;
  color: var(--c-blue-100);
}
.testi-card .testi-text {
  font-size: var(--fs-md);
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}
.testi-meta { display: flex; align-items: center; gap: var(--sp-4); }
.testi-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-blue), var(--c-navy));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-lg);
}
.testi-meta strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--c-navy);
}
.testi-meta small { color: var(--c-text-muted); font-size: var(--fs-sm); }
.testi-stars {
  display: inline-flex; gap: 2px;
  margin-bottom: var(--sp-3);
  color: var(--c-amber);
}
.testi-stars svg { width: 18px; height: 18px; fill: currentColor; }

/* ---------- 14. Client logo strip ---------- */
.clients {
  padding-block: var(--sp-7);
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.clients-label {
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
}
.clients-label::before,
.clients-label::after {
  content: '';
  height: 1px;
  flex: 1;
  max-width: 80px;
  background: var(--c-border);
}
.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);   /* 2 × 4 grid for 8 logos */
  gap: var(--sp-3);
  align-items: center;
}
@media (max-width: 900px) {
  .client-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) {
  .client-grid { grid-template-columns: repeat(2, 1fr); }
}
.client-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: var(--r-md);
  background: transparent;
  filter: grayscale(1);
  opacity: .55;
  transition: var(--t-base);
  cursor: default;
}
.client-item:hover {
  filter: grayscale(0);
  opacity: 1;
  background: var(--c-bg);
  border-color: var(--c-border);
  transform: translateY(-2px);
}
.client-item svg { max-height: 44px; max-width: 100%; }

/* ---------- 15. CTA Banner ---------- */
.cta-banner {
  position: relative;
  background: linear-gradient(120deg, var(--c-navy) 0%, var(--c-blue-700) 100%);
  border-radius: var(--r-2xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: var(--sp-7);
  overflow: hidden;
}
.cta-banner::before {
  content:'';
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  background: var(--c-amber);
  opacity: .15;
  border-radius: 50%;
  filter: blur(20px);
}
.cta-banner h2 { color: #fff; margin-bottom: var(--sp-3); }
.cta-banner p { color: #CBD5E1; max-width: 56ch; }
.cta-banner-actions { display: flex; gap: var(--sp-3); justify-content: flex-end; flex-wrap: wrap; }
.cta-banner .phone-block {
  text-align: right;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  padding: var(--sp-4) var(--sp-5);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  backdrop-filter: blur(4px);
  transition: var(--t-base);
}
.cta-banner .phone-block:hover {
  background: rgba(245,158,11,.10);
  border-color: rgba(245,158,11,.40);
  transform: translateY(-2px);
}
.cta-banner .phone-block small {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--c-amber);
  font-family: var(--font-heading);
  font-weight: 600;
}
.cta-banner .phone-block small::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-success);
  box-shadow: 0 0 0 4px rgba(16,185,129,.25);
  animation: pulse-dot 1.8s infinite ease-out;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(16,185,129,.25); }
  50%      { box-shadow: 0 0 0 9px rgba(16,185,129,.05); }
}
.cta-banner .phone-block .phone {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.25rem, 1.5vw + .5rem, 1.75rem);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color var(--t-fast);
}
.cta-banner .phone-block:hover .phone { color: var(--c-amber); }
.cta-banner .phone-block .phone::before {
  content: '';
  width: 22px; height: 22px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.86.31 1.7.57 2.5a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.58-1.13a2 2 0 0 1 2.11-.45c.8.26 1.64.45 2.5.57A2 2 0 0 1 22 16.92z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.86.31 1.7.57 2.5a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.58-1.13a2 2 0 0 1 2.11-.45c.8.26 1.64.45 2.5.57A2 2 0 0 1 22 16.92z'/></svg>") center/contain no-repeat;
}

/* Powered by — small footer credit */
.powered-by {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: var(--fs-xs);
  color: #64748B;
  font-family: var(--font-body);
}
.powered-by a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #CBD5E1;
  font-family: var(--font-heading);
  font-weight: 600;
  transition: color var(--t-fast), transform var(--t-fast);
}
.powered-by a:hover { color: var(--c-amber); transform: translateY(-1px); }
.powered-by .bs-mark { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- 16. Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.form-grid > .form-row--full { grid-column: 1 / -1; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--fs-sm);
  color: var(--c-navy);
}
.form-row label .req { color: var(--c-danger); }
.form-control {
  width: 100%;
  padding: 13px 16px;
  background: #fff;
  border: 1.5px solid var(--c-slate-200);
  border-radius: var(--r-md);
  font-size: var(--fs-base);
  color: var(--c-text);
  transition: var(--t-fast);
}
.form-control:hover { border-color: var(--c-slate-300); }
.form-control:focus {
  outline: 0;
  border-color: var(--c-blue);
  box-shadow: var(--sh-glow);
}
textarea.form-control { resize: vertical; min-height: 140px; }
.form-help { font-size: var(--fs-xs); color: var(--c-text-muted); }

/* ---------- 17. Footer ---------- */
.site-footer {
  background: var(--c-navy);
  color: #CBD5E1;
  padding-top: var(--sp-9);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-7);
  padding-bottom: var(--sp-7);
}
.footer-col h4 {
  color: #fff;
  font-size: var(--fs-md);
  margin-bottom: var(--sp-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { transition: var(--t-fast); color: #94A3B8; font-size: var(--fs-sm); }
.footer-col a:hover { color: var(--c-amber); padding-left: 4px; }
.footer-brand-text {
  font-size: var(--fs-sm);
  margin-top: var(--sp-4);
  max-width: 38ch;
  color: #94A3B8;
}
.footer-contact { margin-top: var(--sp-5); display: flex; flex-direction: column; gap: 12px; }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: var(--fs-sm);
  color: #94A3B8;
}
.footer-contact svg { width: 18px; height: 18px; color: var(--c-amber); flex-shrink: 0; margin-top: 2px; }
.footer-contact a:hover { color: var(--c-amber); }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  color: #CBD5E1;
}
.socials a:hover { background: var(--c-amber); color: var(--c-navy); padding: 0; }
.socials svg { width: 16px; height: 16px; }
.newsletter-form { display: flex; gap: 8px; margin-top: var(--sp-3); }
.newsletter-form .form-control {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
  color: #fff;
}
.newsletter-form .form-control::placeholder { color: #64748B; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: var(--sp-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-sm);
  color: #64748B;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-5);
}
.footer-bottom > * { flex: 0 0 auto; }
.footer-bottom-links { display: flex; gap: var(--sp-5); flex-wrap: wrap; }
.footer-bottom-links a:hover { color: var(--c-amber); }
@media (max-width: 768px) {
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ---------- 18. Misc / Utilities ---------- */
.text-amber { color: var(--c-amber) !important; }
.text-blue  { color: var(--c-blue) !important; }
.text-navy  { color: var(--c-navy) !important; }
.text-muted { color: var(--c-text-muted) !important; }
.text-white { color: #fff !important; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-6 { margin-top: var(--sp-6); }
.mb-0 { margin-bottom: 0 !important; }
.mb-6 { margin-bottom: var(--sp-6); }
.divider { height: 1px; background: var(--c-border); margin-block: var(--sp-5); }

/* Floating WhatsApp / call button */
.floating-call {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--c-success);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-lg);
  z-index: var(--z-toast);
  transition: var(--t-base);
}
.floating-call:hover { transform: scale(1.08); }
.floating-call svg { width: 30px; height: 30px; }

/* Scroll-to-top */
.scroll-top {
  position: fixed;
  bottom: 22px;
  left: 22px;
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--c-navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-md);
  z-index: var(--z-toast);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--t-base);
}
.scroll-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--c-blue); }

/* AOS-like fade fallback (works without lib) */
[data-aos] { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* ---------- 19. Responsive ---------- */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats--strip .stat-item { border-right: 0; padding-block: var(--sp-4); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 480px; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .split-media { aspect-ratio: 16/10; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--5 { grid-template-columns: repeat(3, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .client-grid { grid-template-columns: repeat(4, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .cta-banner { grid-template-columns: 1fr; }
  .cta-banner-actions, .cta-banner .phone-block { text-align: left; justify-content: flex-start; }
}

@media (max-width: 900px) {
  .primary-nav, .topbar { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-inner { min-height: 76px; }
  :root { --header-h: 76px; }
  .grid--3 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .grid--4, .grid--5 { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .client-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .split-list { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .testi-card { padding: var(--sp-5); }
  .process-grid { grid-template-columns: 1fr; }
}

/* ---------- 20. RTL hooks (for AR later) ---------- */
[dir="rtl"] body { font-family: var(--font-body); }
[dir="rtl"] .btn-ghost:hover { gap: var(--sp-3); }
[dir="rtl"] .card:hover .card-link svg { transform: translateX(-4px) scaleX(-1); }
[dir="rtl"] .primary-nav .has-sub > a::after { transform: rotate(135deg) translateY(-2px); }
[dir="rtl"] .submenu { left: auto; right: 0; }

/* ==================================================================
   21. SVG IMAGE PLACEHOLDERS
   Replaces loremflickr/picsum random photos with intentional graphic
   blocks: navy gradient + diagonal accent + large centered SVG icon.
   Each placeholder reads as a deliberate design choice instead of a
   broken random image. Swap with a real <img> when photography lands.
   ================================================================== */
.adt-ph {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(15,23,42,1) 0%, rgba(30,41,59,1) 60%, rgba(51,65,85,1) 100%);
  overflow: hidden;
  border-radius: inherit;
  isolation: isolate;
}
.adt-ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(245,158,11,0.22) 0%, transparent 55%),
    radial-gradient(circle at 18% 82%, rgba(3,105,161,0.30) 0%, transparent 50%),
    radial-gradient(circle, rgba(255,255,255,0.035) 0.8px, transparent 1.3px);
  background-size: auto, auto, 22px 22px;
  background-position: center, center, 0 0;
  z-index: 0;
}
.adt-ph::after {
  /* diagonal accent stripe */
  content: "";
  position: absolute;
  left: -20%;
  bottom: -10%;
  width: 60%;
  height: 6px;
  background: linear-gradient(90deg, transparent, #F59E0B 50%, transparent);
  transform: rotate(-12deg);
  opacity: 0.5;
}
.adt-ph__icon {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.18);
}
.adt-ph__icon svg {
  width: 46%;
  max-width: 220px;
  height: auto;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
}
.adt-ph__label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  font-family: var(--font-head, "Lexend", sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 6px 12px;
  background: rgba(245,158,11,0.18);
  border: 1px solid rgba(245,158,11,0.30);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* Hero-slide placeholder — full-bleed, larger overlay accent */
.adt-ph--hero {
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.adt-ph--hero::before {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(245,158,11,0.28) 0%, transparent 50%),
    radial-gradient(ellipse at 25% 80%, rgba(3,105,161,0.40) 0%, transparent 50%),
    linear-gradient(135deg, rgba(15,23,42,0.4) 0%, rgba(30,41,59,0.20) 100%),
    radial-gradient(circle, rgba(255,255,255,0.035) 0.8px, transparent 1.3px);
  background-size: auto, auto, auto, 22px 22px;
}
.adt-ph--hero .adt-ph__icon { color: rgba(255,255,255,0.10); }
.adt-ph--hero .adt-ph__icon svg { max-width: 380px; width: 30%; }

/* Portrait variant (about teaser) */
.adt-ph--portrait { aspect-ratio: 9 / 11; }

/* Card variant (service / fleet cards) — slightly smaller icon */
.adt-ph--card .adt-ph__icon svg { width: 38%; max-width: 140px; }

/* Light variant — for sections on dark bg where we want a brighter block */
.adt-ph--light {
  background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 60%, #CBD5E1 100%);
}
.adt-ph--light::before {
  background:
    radial-gradient(circle at 78% 22%, rgba(245,158,11,0.18) 0%, transparent 55%),
    radial-gradient(circle at 18% 82%, rgba(3,105,161,0.18) 0%, transparent 50%);
}
.adt-ph--light .adt-ph__icon { color: rgba(15,23,42,0.18); }

/* When used as a background layer (hero-slide-bg) */
.hero-slide-bg.adt-ph {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
}

/* ==================================================================
   22. PROCESS TIMELINE — 4-step horizontal flow
   ================================================================== */
.process-section { background: var(--c-bg-alt); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--sp-6);
  margin-top: var(--sp-8);
  position: relative;
  list-style: none;
  padding: 0;
}
.process-steps::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 32px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--c-slate-200) 0 8px, transparent 8px 14px);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  background: var(--c-bg-alt);
  padding: var(--sp-5) var(--sp-4);
  text-align: center;
}
.ps-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-amber) 0%, var(--c-amber-600) 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-3);
  box-shadow: 0 6px 16px rgba(245,158,11,0.25);
}
.ps-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: var(--c-blue);
  margin-bottom: var(--sp-3);
}
.ps-icon svg { width: 28px; height: 28px; }
.ps-title {
  font-size: var(--fs-md);
  margin-bottom: var(--sp-2);
  color: var(--c-navy);
}
.ps-text {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 900px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}
@media (max-width: 540px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ==================================================================
   23. COVERAGE MAP — stylized SVG map + city list
   ================================================================== */
.coverage-section { background: var(--c-bg-muted); }
.coverage-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--sp-6);
  align-items: stretch;          /* equal-height columns */
  margin-top: var(--sp-5);
}
.coverage-map {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 60%, #334155 100%);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  box-shadow: var(--sh-lg);
  position: relative;
  overflow: hidden;
  display: flex;                 /* center SVG vertically inside the panel */
  align-items: center;
  justify-content: center;
  min-height: 100%;              /* fill the row */
}
.coverage-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 30%, rgba(245,158,11,0.10) 0%, transparent 55%);
  pointer-events: none;
}
.coverage-map svg {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}
.coverage-body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  justify-content: space-between;
  /* match the dark map card visually */
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  box-shadow: var(--sh-md);
  min-height: 100%;
}
.coverage-block h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  margin-bottom: var(--sp-2);
  color: var(--c-navy);
  display: flex;
  align-items: center;
  gap: 8px;
}
.coverage-block h3::before {
  content: '';
  width: 4px;
  height: 18px;
  background: var(--c-amber);
  border-radius: 2px;
}
.coverage-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.coverage-list li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--c-text);
  padding: 6px 0;
  border-bottom: 1px solid var(--c-border);
}
.coverage-list li:last-child { border-bottom: 0; }
.cv-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(3,105,161,0.15);
}
.cv-dot--amber { background: var(--c-amber); box-shadow: 0 0 0 3px rgba(245,158,11,0.18); }

/* ---------- Timeline (About page — Our Journey) ---------- */
.timeline {
  list-style: none; padding: 0; margin: var(--sp-6) 0 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-3);
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 16px; left: 6%; right: 6%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--c-slate-200) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.timeline-item {
  position: relative;
  text-align: center;
  padding-top: 44px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--c-blue);
  border: 3px solid var(--c-bg);
  box-shadow: 0 0 0 3px var(--c-blue);
  z-index: 1;
  transition: var(--t-base);
}
.timeline-item:hover::before {
  background: var(--c-amber);
  box-shadow: 0 0 0 3px var(--c-amber);
  transform: translateX(-50%) scale(1.15);
}
.timeline-item .t-year {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--c-navy);
  line-height: 1;
  margin-bottom: 4px;
}
.timeline-item .t-title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--c-navy);
}
.timeline-item p {
  font-size: var(--fs-xs);
  line-height: 1.45;
  color: var(--c-text-muted);
}
@media (max-width: 900px) {
  .timeline { grid-template-columns: 1fr 1fr 1fr; gap: var(--sp-4); }
  .timeline::before { display: none; }
  .timeline-item { padding-top: 0; }
  .timeline-item::before { display: none; }
  .timeline-item .t-year {
    display: inline-block;
    background: var(--c-blue);
    color: #fff;
    padding: 4px 12px;
    border-radius: var(--r-pill);
    font-size: 0.875rem;
    margin-bottom: 8px;
  }
}
@media (max-width: 540px) {
  .timeline { grid-template-columns: 1fr 1fr; }
}
.cv-meta {
  margin-left: auto;
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  font-weight: 500;
}
@media (max-width: 900px) {
  .coverage-grid { grid-template-columns: 1fr; }
}

/* ==================================================================
   24. TESTIMONIALS CAROUSEL
   ================================================================== */
.testimonials-section { padding-block: clamp(2.5rem, 5vw, 5rem); }
.testi-swiper { padding-bottom: var(--sp-7); margin-top: var(--sp-7); }
.testimonial-card {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  height: 100%;
  position: relative;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.t-quote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  line-height: 0.7;
  color: var(--c-amber);
  opacity: 0.55;
}
.t-body {
  font-size: var(--fs-base);
  line-height: 1.65;
  font-style: italic;
  color: var(--c-text);
  margin: 0;
  flex: 1;
}
.t-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: auto;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--c-border);
}
.t-avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-blue-700) 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
}
.t-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--c-navy);
  font-size: var(--fs-sm);
}
.t-role {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
}
.testi-swiper .swiper-pagination {
  position: relative !important;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--sp-5);
}
.testi-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background: var(--c-slate-300);
  opacity: 1;
  transition: background var(--t-base);
}
.testi-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--c-amber);
  width: 36px;
}
