/* =========================================================
   MAAS Infra & Logistics Ltd. — Corporate Design System
   Premium industrial web design: navy / white / grey / blue
   ========================================================= */

/* ---------- 1. Design tokens ---------- */
:root {
  --navy-950: #060F1F;
  --navy-900: #0B1C36;
  --navy-800: #10294E;
  --navy-700: #16345F;
  --navy-600: #1D4174;

  --ink: #0F1B2D;
  --slate: #516070;
  --slate-light: #7A8798;

  --grey-50: #F5F7FA;
  --grey-100: #EEF1F6;
  --grey-200: #E4E9F0;
  --line: #E2E7EE;

  --blue-700: #16499E;
  --blue-600: #1D5FDB;
  --blue-500: #2F6FE4;
  --blue-100: #E4EDFD;

  --amber-500: #F59E0B;

  --white: #FFFFFF;
  --success: #16A34A;
  --error: #DC2626;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(11,28,54,.06), 0 1px 3px rgba(11,28,54,.08);
  --shadow-md: 0 6px 20px -6px rgba(11,28,54,.14);
  --shadow-lg: 0 24px 48px -16px rgba(11,28,54,.22);

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 32px);
  --header-h: 84px;
  --radius-btn: 10px;
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--blue-700); }
ul { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Accessible focus */
:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 2px;
  border-radius: 4px;
}
a:focus-visible, button:focus-visible { outline-offset: 3px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--navy-900);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

.btn-header { padding: 11px 18px; font-size: 14px; }

::selection { background: var(--blue-600); color: #fff; }

/* ---------- 3. Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(64px, 8vw, 108px); }
.section-sm { padding-block: clamp(48px, 6vw, 72px); }
.section-dark { background: var(--navy-900); color: #D7DFEB; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-grey { background: var(--grey-50); }

/* ---------- 4. Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--blue-600);
  border-radius: 2px;
}
.eyebrow-center { justify-content: center; }
.eyebrow-center::before { display: none; }
.eyebrow-center::after { content: ""; width: 28px; height: 2px; background: var(--blue-600); border-radius: 2px; }
.eyebrow-light { color: #8FB4F5; }
.eyebrow-light::before, .eyebrow-light::after { background: #8FB4F5; }

.h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.05; }
.h2 { font-size: clamp(2rem, 4.2vw, 3.15rem); line-height: 1.12; }
.h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); line-height: 1.2; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.1875rem); color: var(--slate); line-height: 1.7; }
.text-white { color: #fff !important; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

.section-head { margin-bottom: clamp(36px, 5vw, 60px); }
.section-head p { max-width: 640px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center p { margin-inline: auto; }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-btn);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
  text-align: center;
}
.btn .arr { transition: transform .18s ease; }
.btn:hover .arr { transform: translateX(4px); }

.btn-primary { background: var(--blue-600); color: #fff; }
.btn-primary:hover { background: var(--blue-700); color: #fff; box-shadow: 0 12px 24px -8px rgba(29,95,219,.5); transform: translateY(-1px); }

.btn-navy { background: var(--navy-900); color: #fff; }
.btn-navy:hover { background: var(--navy-700); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline { border-color: var(--line); color: var(--ink); background: #fff; }
.btn-outline:hover { border-color: var(--navy-900); color: var(--navy-900); background: var(--grey-50); transform: translateY(-1px); }

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

.btn-white { background: #fff; color: var(--navy-900); }
.btn-white:hover { background: var(--grey-100); color: var(--navy-900); box-shadow: var(--shadow-md); transform: translateY(-1px); }

.btn-block { width: 100%; }
.btn-lg { padding: 17px 34px; font-size: 16px; }

/* ---------- 6. Header / Navigation ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background-color .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(11,28,54,.08);
  border-color: var(--line);
}
.site-header .header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
}
.header-brand img { transition: filter .3s ease; }
.header-brand .brand-light { display: block; }
.header-brand .brand-dark { display: none; }
.site-header.scrolled .brand-light { display: none; }
.site-header.scrolled .brand-dark { display: block; }
.site-header.scrolled .nav-link, .site-header.scrolled .has-sub > .nav-link { color: var(--ink); }
.site-header.scrolled .nav-link:hover { color: var(--blue-600); }

.header-nav { display: flex; align-items: center; justify-content: center; min-width: 0; }
.nav-list { display: flex; align-items: center; justify-content: space-between; gap: 4px; width: 100%; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 11px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  border-radius: 8px;
  transition: color .2s ease, background-color .2s ease;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-link .chev { font-size: 11px; transition: transform .2s ease; }
.nav-item.active > .nav-link { color: #fff; }
.nav-item.active > .nav-link::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 2px;
  background: var(--blue-500); border-radius: 2px;
}
.site-header.scrolled .nav-item.active > .nav-link { color: var(--navy-900); }
.site-header.scrolled .nav-item.active > .nav-link::after { background: var(--blue-600); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 50;
}
.dropdown-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 8px;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: background-color .15s ease, color .15s ease, padding-left .15s ease;
}
.dropdown-menu a:hover { background: var(--blue-100); color: var(--blue-700); padding-left: 18px; }
.nav-item:hover .dropdown-menu, .nav-item:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}

.header-cta { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: none;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  z-index: 120;
}
.nav-toggle .bar {
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, top .3s ease, background-color .3s;
}
.nav-toggle .bar:nth-child(1) { top: 16px; }
.nav-toggle .bar:nth-child(2) { top: 23px; }
.nav-toggle .bar:nth-child(3) { top: 30px; }
.site-header.scrolled .nav-toggle .bar { background: var(--ink); }
.nav-toggle.open .bar:nth-child(1) { top: 23px; transform: rotate(45deg); background: #fff; }
.nav-toggle.open .bar:nth-child(2) { opacity: 0; }
.nav-toggle.open .bar:nth-child(3) { top: 23px; transform: rotate(-45deg); background: #fff; }
.site-header.menu-open { background: var(--navy-900); border-color: transparent; box-shadow: none; }
.site-header.menu-open .brand-light { display: block; }
.site-header.menu-open .brand-dark { display: none; }

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy-900);
  z-index: 110;
  padding: calc(var(--header-h) + 16px) var(--gutter) 40px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .28s ease, transform .28s ease, visibility .28s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu .m-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 6px;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-menu .m-link:hover { color: #9FBCF5; }
.mobile-menu .m-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mobile-menu .m-row .m-link { flex: 1; min-width: 0; }
.mobile-menu .m-sub { display: none; padding: 4px 0 16px 14px; }
.mobile-menu .m-sub.open { display: block; }
.mobile-menu .m-sub a {
  display: block;
  padding: 10px 6px;
  color: #C6D3E6;
  font-size: 16px;
  font-weight: 500;
}
.mobile-menu .m-sub a:hover { color: #fff; }
.mobile-menu .m-toggle { background: none; border: none; color: #9FBCF5; font-size: 18px; padding: 6px; cursor: pointer; }
.mobile-menu .m-cta { margin-top: 24px; }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  color: #fff;
  overflow: hidden;
  background: var(--navy-950);
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s ease, visibility .9s;
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 1; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide.active .hero-media img { animation: heroZoom 8s ease-out forwards; }
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(6,15,31,.88) 0%, rgba(6,15,31,.62) 46%, rgba(6,15,31,.28) 100%),
    linear-gradient(0deg, rgba(6,15,31,.55) 0%, rgba(6,15,31,.05) 40%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-block: calc(var(--header-h) + 56px) 84px; max-width: 780px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: #9FBCF5; margin-bottom: 22px;
}
.hero-eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--blue-500); border-radius: 2px; }
.hero h1, .hero h2.h1 { color: #fff; margin-bottom: 22px; }
.hero-sub { font-size: clamp(1.05rem, 1.7vw, 1.25rem); color: #D5DEEA; max-width: 620px; margin-bottom: 34px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }
.hero-ui { position: absolute; left: var(--gutter); bottom: 30px; z-index: 5; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.hero-chip { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; color: #E4EAF2; }
.hero-chip .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(245,158,11,.18);
}
.hero-dots { display: flex; align-items: center; gap: 10px; }
.hero-dot {
  width: 36px; height: 3px; border-radius: 3px;
  background: rgba(255,255,255,.35);
  border: 0; padding: 0; cursor: pointer;
  transition: background-color .25s ease;
}
.hero-dot.active { background: var(--blue-500); }
.hero-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.08);
  color: #fff; font-size: 26px; line-height: 1;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease;
}
.hero-nav:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.55); }
.hero-prev { left: var(--gutter); }
.hero-next { right: var(--gutter); }
.hero-scroll { position: absolute; right: var(--gutter); bottom: 34px; z-index: 5; color: rgba(255,255,255,.7); font-size: 13px; letter-spacing: .12em; writing-mode: vertical-rl; text-transform: uppercase; }
.hero-scroll::after { content: ""; width: 1px; height: 52px; background: rgba(255,255,255,.4); margin: 10px auto 0; display: block; }

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
  .hero-slide.active .hero-media img { animation: none; }
}

/* ---------- 8. Stats strip ---------- */
.stats {
  position: relative;
  background: var(--navy-900);
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin: -46px auto 0;
  padding: 30px 28px;
  background: var(--navy-900);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 5;
}
.stat { text-align: center; padding: 8px 4px; }
.stat-value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.stat-value .u { color: var(--amber-500); }
.stat-label { margin-top: 6px; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #9FB0C8; }

/* ---------- 9. Cards & grids ---------- */
.grid { display: grid; gap: clamp(20px, 3vw, 32px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Service card */
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card .sc-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.service-card .sc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover .sc-img img { transform: scale(1.03); }
.service-card .sc-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,15,31,.28), rgba(6,15,31,0) 55%); }
.service-card .sc-num {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 999px;
}
.service-card .sc-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.service-card .sc-title { font-size: 21px; margin-bottom: 10px; }
.service-card .sc-desc { color: var(--slate); font-size: 15.5px; line-height: 1.65; margin-bottom: 16px; flex: 1; }
.service-card .sc-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--blue-700);
  background: var(--blue-100);
  padding: 6px 12px; border-radius: 999px;
  margin-bottom: 18px; align-self: flex-start;
}
.service-card .sc-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 15px;
  color: var(--navy-900);
}
.service-card .sc-link .arr { transition: transform .2s ease; }
.service-card:hover .sc-link .arr { transform: translateX(5px); }
.service-card .sc-link:hover { color: var(--blue-600); }

/* Capability card (dark) */
.cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cap-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background-color .2s ease, transform .2s ease, border-color .2s ease;
}
.cap-card:hover { background: rgba(255,255,255,.08); border-color: rgba(159,188,245,.4); transform: translateY(-3px); }
.cap-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(47,111,228,.16); color: #8FB4F5; }
.cap-card h3 { font-size: 16.5px; color: #fff; }
.cap-card p { font-size: 14px; color: #A9B7CB; line-height: 1.6; }

/* Why card */
.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.why-card .w-num {
  position: absolute; top: 18px; right: 22px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 44px; font-weight: 800; line-height: 1;
  color: var(--grey-200);
  transition: color .25s ease;
}
.why-card:hover .w-num { color: var(--blue-100); }
.why-card .w-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--blue-100); color: var(--blue-700);
  margin-bottom: 18px;
}
.why-card h3 { font-size: 19px; margin-bottom: 10px; }
.why-card p { color: var(--slate); font-size: 15px; line-height: 1.65; }

/* Feature/check list */
.check-list { display: grid; gap: 10px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink); font-size: 15.5px; }
.check-list .tick {
  flex: 0 0 20px; width: 20px; height: 20px; margin-top: 2px;
  border-radius: 50%; background: var(--blue-100); color: var(--blue-700);
  display: grid; place-items: center; font-size: 11px; font-weight: 700;
}
.check-list-light li { color: #D7DFEB; }
.check-list-light .tick { background: rgba(47,111,228,.25); color: #8FB4F5; }

/* Icon badge */
.icon-badge {
  width: 58px; height: 58px; border-radius: 16px;
  display: grid; place-items: center;
  background: var(--grey-100); color: var(--navy-900);
}

/* ---------- 10. Split / about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.split-media { position: relative; }
.split-media .main-img {
  width: 100%; aspect-ratio: 4/4.4; object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.split-media .float-img {
  position: absolute; bottom: -30px; left: -26px; width: 44%;
  aspect-ratio: 1/1; object-fit: cover;
  border-radius: var(--radius-lg);
  border: 6px solid #fff;
  box-shadow: var(--shadow-md);
}
.exp-badge {
  position: absolute; top: 22px; right: -14px;
  background: var(--blue-600); color: #fff;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.exp-badge .n { font-family: "Plus Jakarta Sans", sans-serif; font-size: 26px; font-weight: 800; line-height: 1; }
.exp-badge .l { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; margin-top: 4px; opacity: .9; }

/* ---------- 11. Trust band ---------- */
.trust-band {
  position: relative;
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
}
.trust-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(6,15,31,.95) 30%, rgba(6,15,31,.72) 60%, rgba(6,15,31,.55)),
    url("../images/opt/trust-bg.webp") center/cover no-repeat;
}
.trust-band .tb-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px,6vw,90px); align-items: center; }
.trust-band h2 { color: #fff; margin-bottom: 20px; }
.trust-band .tb-sub { color: #B9C6DA; margin-bottom: 28px; max-width: 560px; }
.trust-band .tb-cta { margin-top: 12px; }

/* ---------- 12. Capacity ---------- */
.capacity { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px,5vw,80px); align-items: center; }
.capacity-media { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.capacity-media img { width: 100%; aspect-ratio: 4/3.2; object-fit: cover; }
.capacity-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,15,31,.35), transparent 45%); }
.cap-stats { display: grid; gap: 16px; }
.cap-stat {
  display: flex; align-items: center; gap: 22px;
  background: var(--grey-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.cap-stat:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.cap-stat .v {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 800; letter-spacing: -0.02em;
  color: var(--navy-900); line-height: 1; white-space: nowrap;
}
.cap-stat .v small { color: var(--blue-600); }
.cap-stat .l { color: var(--slate); font-size: 14px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }

/* ---------- 13. Locations ---------- */
.loc-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px,4vw,56px); align-items: stretch; }
.loc-map {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 460px; box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.loc-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.loc-list { display: grid; gap: 18px; align-content: start; }
.loc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: grid; gap: 8px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.loc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #C9D6EC; }
.loc-card .lc-tag {
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue-700);
  display: inline-flex; align-items: center; gap: 8px;
}
.loc-card h3 { font-size: 19px; }
.loc-card p { color: var(--slate); font-size: 15px; }
.loc-card .lc-links { display: flex; gap: 18px; margin-top: 6px; }
.loc-card .lc-links a { font-size: 14.5px; font-weight: 600; font-family: "Plus Jakarta Sans", sans-serif; }
.dist-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.dist-chip {
  background: var(--blue-100); color: var(--blue-700);
  font-size: 14px; font-weight: 700; font-family: "Plus Jakarta Sans", sans-serif;
  padding: 8px 16px; border-radius: 999px;
}
.dist-chip b { color: var(--navy-900); }

/* ---------- 14. Industries ---------- */
.industry {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 16px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.industry:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #C9D6EC; }
.industry .i-icon {
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grey-100); color: var(--navy-800);
  transition: background-color .2s ease, color .2s ease;
}
.industry:hover .i-icon { background: var(--blue-600); color: #fff; }
.industry .i-name { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 15.5px; color: var(--ink); }

/* ---------- 15. Clients ---------- */
.client-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; align-items: center; }
.client-logo {
  display: grid; place-items: center;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  min-height: 92px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.client-logo:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.client-logo img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
  transition: transform .3s ease;
}
.client-logo:hover img { transform: scale(1.04); }

/* ---------- 16. Testimonials ---------- */
.tst-bg {
  position: relative; background: var(--navy-900); overflow: hidden;
}
.tst-bg::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(6,15,31,.9), rgba(6,15,31,.94)), url("../images/opt/tst-bg.webp") center/cover no-repeat;
}
.tst-wrap { position: relative; z-index: 2; max-width: 900px; margin-inline: auto; }
.tst-track { overflow: hidden; }
.tst-slide { display: none; text-align: center; padding: 10px 8px 26px; }
.tst-slide.active { display: block; animation: fadeUp .5s ease both; }
.tst-slide .qmark {
  width: 64px; height: 64px; margin: 0 auto 22px;
  border-radius: 50%;
  background: rgba(47,111,228,.18); color: #8FB4F5;
  display: grid; place-items: center;
  font-family: Georgia, serif; font-size: 34px; font-weight: 700;
}
.tst-slide blockquote {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
  font-weight: 600; line-height: 1.5; letter-spacing: -0.01em;
  color: #F2F5F9;
  margin-bottom: 26px;
}
.tst-slide .tst-meta { display: flex; flex-direction: column; gap: 2px; align-items: center; }
.tst-slide .tst-name { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 16px; color: #fff; }
.tst-slide .tst-co { font-size: 14px; color: #9FB0C8; }
.tst-dots { display: flex; justify-content: center; gap: 10px; margin-top: 6px; }
.tst-dots button {
  width: 10px; height: 10px; border-radius: 999px;
  border: none; cursor: pointer;
  background: rgba(255,255,255,.28);
  transition: background-color .2s ease, width .2s ease;
}
.tst-dots button.active { background: var(--blue-500); width: 28px; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- 17. CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(6,15,31,.94) 30%, rgba(6,15,31,.55)),
    url("../images/opt/cta-bg.webp") center/cover no-repeat;
}
.cta-band .cta-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: #C6D3E6; max-width: 560px; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-contact { margin-top: 18px; display: flex; gap: 28px; flex-wrap: wrap; }
.cta-contact a { display: inline-flex; align-items: center; gap: 10px; color: #C6D3E6; font-weight: 600; font-size: 15.5px; }
.cta-contact a:hover { color: #fff; }
.cta-contact .ico { color: var(--blue-500); }

/* ---------- 18. Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  background: var(--navy-950);
  color: #fff;
  padding: calc(var(--header-h) + 64px) 0 72px;
  overflow: hidden;
}
.page-hero .ph-media { position: absolute; inset: 0; }
.page-hero .ph-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .ph-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6,15,31,.9) 0%, rgba(6,15,31,.66) 60%, rgba(6,15,31,.4));
}
.page-hero .ph-inner { position: relative; z-index: 2; max-width: 780px; }
.page-hero .ph-eyebrow { color: #9FBCF5; font-size: 13px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 16px; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 16px; }
.page-hero p { color: #D5DEEA; max-width: 620px; font-size: clamp(1rem, 1.5vw, 1.15rem); }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 22px; font-size: 14px; font-weight: 500; }
.breadcrumb a { color: #9FBCF5; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: rgba(255,255,255,.4); }
.breadcrumb .current { color: #fff; }

/* ---------- 19. Forms ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(24px, 4vw, 40px);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 14px; font-weight: 600; color: var(--ink); font-family: "Plus Jakarta Sans", sans-serif; }
.form-label .req { color: var(--error); }
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  background: var(--grey-50);
  font-size: 15.5px;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--blue-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(47,111,228,.12);
}
.form-control::placeholder { color: var(--slate-light); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23516070' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
textarea.form-control { min-height: 130px; resize: vertical; }
.form-error { font-size: 13px; color: var(--error); display: none; }
.form-group.invalid .form-control { border-color: var(--error); }
.form-group.invalid .form-error { display: block; }
.form-note { font-size: 13.5px; color: var(--slate); margin-top: 12px; }
.form-status { display: none; margin-top: 16px; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 600; }
.form-status.ok { display: block; background: #EAF8F0; color: var(--success); border: 1px solid #BFE8CF; }
.form-status.err { display: block; background: #FEF0F0; color: var(--error); border: 1px solid #F5C6C6; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- 20. Footer ---------- */
.site-footer { background: var(--navy-950); color: #A9B7CB; }
.footer-top { padding-block: clamp(52px, 7vw, 84px) clamp(36px, 5vw, 56px); }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 60px); }
.site-footer h4 { color: #fff; font-size: 16px; letter-spacing: .04em; margin-bottom: 20px; }
.footer-about p { font-size: 15px; line-height: 1.7; margin-top: 18px; }
.footer-links { display: grid; gap: 11px; }
.footer-links a { color: #A9B7CB; font-size: 15px; transition: color .18s ease, padding-left .18s ease; }
.footer-links a:hover { color: #fff; padding-left: 5px; }
.footer-contact li { display: flex; gap: 12px; font-size: 15px; margin-bottom: 15px; line-height: 1.6; }
.footer-contact .fi { color: var(--blue-500); margin-top: 3px; flex: 0 0 auto; }
.footer-contact a { color: #C6D3E6; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-block: 22px; }
.footer-bottom .fb-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 14px; }
.footer-bottom a { color: #9FB0C8; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom nav { display: flex; gap: 22px; }

/* ---------- 21. FAQ accordion ---------- */
.faq-layout { display: grid; grid-template-columns: 280px 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.faq-nav { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 8px; }
.faq-nav a {
  display: block; padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600; font-size: 15px;
  color: var(--slate);
  border: 1px solid var(--line);
  transition: all .2s ease;
}
.faq-nav a:hover { color: var(--blue-700); border-color: #C9D6EC; }
.faq-nav a.active { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.faq-group { margin-bottom: 44px; scroll-margin-top: calc(var(--header-h) + 20px); }
.faq-group h3 { margin-bottom: 18px; font-size: 24px; }
.accordion { display: grid; gap: 14px; }
.accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.accordion-item.open { border-color: #C9D6EC; box-shadow: var(--shadow-sm); }
.accordion-item.open .acc-title { color: var(--blue-700); }
.acc-title {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 22px;
  background: none; border: none; cursor: pointer;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16.5px; font-weight: 700; text-align: left; color: var(--ink);
}
.acc-icon {
  flex: 0 0 30px; width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--grey-100); color: var(--navy-900);
  display: grid; place-items: center;
  transition: transform .25s ease, background-color .25s ease;
  font-size: 16px;
}
.accordion-item.open .acc-icon { transform: rotate(45deg); background: var(--blue-600); color: #fff; }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.acc-body-inner { padding: 0 22px 22px; color: var(--slate); font-size: 15.5px; line-height: 1.7; }
.acc-body-inner ul { list-style: disc; padding-left: 20px; display: grid; gap: 6px; margin-top: 8px; }

/* ---------- 22. Careers ---------- */
.role-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.role-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.role-card .r-tag { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--blue-700); }
.role-card h3 { font-size: 19px; }
.role-card p { font-size: 14.5px; color: var(--slate); }
.perk { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 22px; }
.perk .icon-badge { flex-shrink: 0; }
.perk h3 { font-size: 17px; }
.perk p { font-size: 14.5px; color: var(--slate); }

/* ---------- 23. Team ---------- */
.team-card {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card .tc-img { aspect-ratio: 1/1; overflow: hidden; }
.team-card .tc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.team-card:hover .tc-img img { transform: scale(1.05); }
.team-card .tc-body { padding: 22px 18px; }
.team-card .tc-name { font-size: 19px; }
.team-card .tc-role { font-size: 14px; font-weight: 600; color: var(--blue-700); letter-spacing: .04em; text-transform: uppercase; margin-top: 4px; }

/* ---------- 24. Service detail ---------- */
.sd-layout { display: grid; grid-template-columns: 1fr 320px; gap: clamp(32px, 4vw, 56px); align-items: start; }
.sd-main { display: grid; gap: 40px; }
.sd-block h2 { margin-bottom: 16px; }
.sd-block p { color: var(--slate); font-size: 16px; margin-bottom: 14px; }
.spec-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.spec-list li {
  display: flex; gap: 12px; align-items: center;
  background: var(--grey-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 15px; font-weight: 500;
}
.spec-list .tick { color: var(--blue-700); background: var(--blue-100); width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; flex: 0 0 auto; }
.sd-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sd-gallery figure { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); }
.sd-gallery img { aspect-ratio: 16/10; object-fit: cover; width: 100%; transition: transform .5s ease; }
.sd-gallery figure:hover img { transform: scale(1.04); }
.sd-aside { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 20px; }
.sd-box {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
}
.sd-box h3 { font-size: 17px; margin-bottom: 14px; }
.sd-box .svc-link {
  display: block; padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-family: "Plus Jakarta Sans", sans-serif; font-weight: 600; font-size: 15px;
  color: var(--ink); margin-bottom: 10px;
  transition: all .2s ease;
}
.sd-box .svc-link:hover, .sd-box .svc-link.active { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.sd-help {
  background: var(--navy-900); color: #fff; border-radius: var(--radius-md);
  padding: 26px;
}
.sd-help h3 { color: #fff; }
.sd-help p { color: #B9C6DA; font-size: 15px; margin-bottom: 18px; }
.sd-help .btn { width: 100%; }
.sd-contact-line { display: flex; gap: 12px; align-items: center; margin-top: 16px; font-size: 15px; color: #C6D3E6; }
.sd-contact-line a { color: #fff; font-weight: 600; }
.sd-contact-line .fi { color: var(--blue-500); }

/* ---------- 25. Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(28px,4vw,56px); align-items: start; }
.contact-card {
  display: flex; gap: 18px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 24px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-card .icon-badge { flex-shrink: 0; }
.contact-card h3 { font-size: 18px; margin-bottom: 8px; }
.contact-card p { color: var(--slate); font-size: 15px; line-height: 1.65; }
.contact-card a { font-weight: 600; }

/* ---------- 26. Quote mini / side card ---------- */
.quote-card { background: var(--navy-900); color: #fff; border-radius: var(--radius-lg); padding: 34px 30px; position: relative; overflow: hidden; }
.quote-card::before { content: ""; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: rgba(47,111,228,.18); }
.quote-card h3 { color: #fff; margin-bottom: 10px; }
.quote-card p { color: #C6D3E6; font-size: 15px; margin-bottom: 20px; }
.quote-card .qc-contact { border-top: 1px solid rgba(255,255,255,.1); margin-top: 22px; padding-top: 18px; display: grid; gap: 10px; font-size: 15px; }
.quote-card a { color: #9FBCF5; font-weight: 600; }
.quote-card a:hover { color: #fff; }

/* ---------- 27. Scroll top ---------- */
.to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--navy-900); color: #fff; border: none; cursor: pointer;
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .3s ease;
  box-shadow: var(--shadow-md);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--blue-600); }

/* ---------- 28. Reveal animations ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- 29. Responsive ---------- */
@media (max-width: 1180px) {
  .cap-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(5, 1fr); gap: 12px; padding: 24px 18px; }
  .header-inner { gap: 14px; }
  .nav-link { padding: 9px 8px; font-size: 14px; gap: 5px; }
  .btn-header { padding: 11px 15px; font-size: 13.5px; }
  .header-brand img { width: 128px; height: auto; }
}
@media (max-width: 1150px) {
  .header-inner { gap: 12px; }
  .header-brand img { width: 110px; height: auto; }
  .nav-link { padding: 8px 6px; font-size: 13px; gap: 4px; }
  .nav-list { gap: 2px; }
  .btn-header { padding: 10px 12px; font-size: 13px; }
}
@media (max-width: 1024px) {
  :root { --header-h: 74px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split, .capacity, .loc-wrap, .contact-grid { grid-template-columns: 1fr; }
  .trust-band .tb-inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .sd-layout { grid-template-columns: 1fr; }
  .sd-aside { position: static; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-nav { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .client-strip { grid-template-columns: repeat(3, 1fr); }
  .split-media { margin-bottom: 10px; }
  .split-media .float-img { left: 10px; }
  .loc-map { min-height: 380px; }
  .exp-badge { right: 10px; }
}
@media (max-width: 950px) {
  .header-inner { gap: 10px; }
  .header-brand img { width: 96px; height: auto; }
  .nav-link { padding: 7px 5px; font-size: 12.5px; gap: 3px; }
  .nav-list { gap: 2px; }
  .btn-header { padding: 9px 10px; font-size: 12.5px; }
}
@media (max-width: 900px) {
  .header-nav, .header-cta .btn-header { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); margin: -34px auto 0; }
  .hero-inner { padding-top: calc(var(--header-h) + 40px); }
  .hero-actions .btn { flex: 1; min-width: 200px; }
  .hero-nav { display: none; }
  .hero-chips { display: none; }
  .hero-ui { bottom: 22px; }
  .hero-dot { width: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .client-strip { grid-template-columns: repeat(2, 1fr); }
  .spec-list { grid-template-columns: 1fr; }
  .sd-gallery { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
  .cta-band .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-band .cta-actions .btn { flex: 1; }
  .breadcrumb { font-size: 13px; }
}
@media (max-width: 380px) {
  .stats-grid { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: 1fr; }
}
