/* =========================================================
   SERŠEN TRANSPORT — design system
   Palette: deep navy + signal yellow + paper white
   Type: Space Grotesk (display) + Inter (text)
   ========================================================= */

:root {
  /* Color — Seršen brand: classic navy */
  /* Brand reference: #163B66 */
  --navy-950: #081628;  /* deepest — hero scrim bottom, footer floor */
  --navy-900: #0F2849;  /* deep — contact section, primary ink */
  --navy-800: #122F56;
  --navy-700: #163B66;  /* THE BRAND — primary accent, links, dark CTA */
  --navy-600: #2C5485;
  --navy-500: #4471A3;
  --navy-100: #DDE6F0;
  --navy-50:  #F0F4F8;

  --ink:      #0F2849;
  --ink-soft: #122F56;
  --muted:    #586478;
  --muted-2:  #8E9BAE;
  --line:     #E1E6EE;
  --line-strong: #C7CFDB;

  --paper:    #fafafa;
  --bg:       #ffffff;
  --bg-tint:  #F4F7FB;

  --yellow:   #F5C518;
  --yellow-strong: #e2b30b;
  --yellow-soft:   #fff5cf;

  --shadow-sm: 0 1px 2px rgba(15, 40, 73, .06), 0 1px 3px rgba(15, 40, 73, .04);
  --shadow-md: 0 4px 10px rgba(15, 40, 73, .06), 0 10px 30px rgba(15, 40, 73, .08);
  --shadow-lg: 0 20px 60px rgba(15, 40, 73, .15);

  /* Type */
  --f-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --f-text:    "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --maxw: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  /* Motion */
  --ease-out: cubic-bezier(.2, .8, .2, 1);
  --ease-in-out: cubic-bezier(.65, .05, .35, 1);
}

/* =========================================================
   Reset + base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--f-text);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, video, svg { display: block; max-width: 100%; }
img { height: auto; }

/* HTML [hidden] attribute must always win over component display rules.
   Critical for conditionally toggling form/success blocks via JS. */
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  width: 100%;
}

/* =========================================================
   Typography primitives
   ========================================================= */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.kicker::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--ink);
  opacity: .5;
}
.kicker--light { color: rgba(255,255,255,.7); }
.kicker--light::before { background: rgba(255,255,255,.6); opacity: 1; }

.section-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 14px 0 18px;
  color: var(--ink);
}
.section-title--sm { font-size: clamp(30px, 4vw, 48px); }
.section-lede {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.6;
  margin: 0;
}
.section-head { max-width: 760px; margin: 0 0 56px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .kicker { justify-content: center; }
.section-head--center .section-lede { margin-left: auto; margin-right: auto; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: transform .35s var(--ease-out), background .25s, color .25s, border-color .25s, box-shadow .25s;
  white-space: nowrap;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--yellow);
  color: var(--navy-900);
  box-shadow: 0 8px 20px rgba(245, 197, 24, .25), 0 1px 0 rgba(0,0,0,.04) inset;
}
.btn--primary:hover {
  background: var(--yellow-strong);
  box-shadow: 0 12px 28px rgba(245, 197, 24, .35), 0 1px 0 rgba(0,0,0,.04) inset;
}

.btn--ghost {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .4);
}

.btn--lg {
  padding: 16px 28px;
  font-size: 15.5px;
}
.btn--lg svg { width: 18px; height: 18px; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding .35s var(--ease-out), background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom-color: var(--line);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: opacity .25s;
}
.nav__logo-img {
  display: block;
  transition: opacity .3s var(--ease-out), transform .35s var(--ease-out);
}
.nav__logo:hover .nav__logo-img { transform: scale(1.03); }

/* Both logos use explicit aspect-ratio so width derives correctly from height,
   preventing the browser from squashing the dark variant to match the lighter one. */
.nav__logo-img--light {
  height: 76px;
  width: auto;
  aspect-ratio: 800 / 241;  /* light logo natural ratio */
}
.nav__logo-img--dark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 64px;
  width: auto;
  aspect-ratio: 700 / 174;  /* dark logo natural ratio (slightly more horizontal) */
  opacity: 0;
}
.nav__logo:hover .nav__logo-img--dark { transform: translateY(-50%) scale(1.03); }
.nav.is-scrolled .nav__logo-img--light { opacity: 0; }
.nav.is-scrolled .nav__logo-img--dark { opacity: 1; }

/* Nav becomes compact on scroll — slightly smaller logos too */
.nav.is-scrolled .nav__logo-img--light { height: 64px; }
.nav.is-scrolled .nav__logo-img--dark { height: 52px; }

/* Footer logo: white variant on dark bg */
.nav__logo--footer .nav__logo-img {
  height: 70px;
  position: static;
  opacity: 1;
}

.nav__menu {
  display: flex;
  gap: 4px;
  margin: 0 auto;
}
.nav__menu a {
  position: relative;
  font-size: 14.5px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .85);
  transition: color .25s, background .25s;
}
.nav__menu a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav.is-scrolled .nav__menu a { color: var(--muted); }
.nav.is-scrolled .nav__menu a:hover { color: var(--ink); background: var(--bg-tint); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
  transition: color .25s;
}
.nav__phone:hover { color: #fff; }
.nav.is-scrolled .nav__phone { color: var(--ink-soft); }
.nav.is-scrolled .nav__phone:hover { color: var(--navy-700); }

.nav__cta { padding: 11px 20px; }

/* ===== Language switcher ===== */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.lang-switch__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 6px;
  line-height: 0;
  opacity: 0.5;
  transition: opacity .2s, transform .2s, box-shadow .2s, background .2s;
  cursor: pointer;
}
.lang-switch__item:hover { opacity: 0.92; transform: translateY(-1px); }
.lang-switch__item.is-active {
  opacity: 1;
  box-shadow: 0 0 0 2px var(--yellow);
}
.lang-switch__item.is-disabled {
  opacity: 0.28;
  cursor: not-allowed;
  pointer-events: none;
}
.lang-switch .flag {
  width: 22px;
  height: 15px;
  border-radius: 3px;
  overflow: hidden;
  display: block;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .12);
}
/* On the white scrolled nav, give inactive flags slightly more presence */
.nav.is-scrolled .lang-switch__item { opacity: 0.55; }
.nav.is-scrolled .lang-switch__item:hover { opacity: 1; }
.nav.is-scrolled .lang-switch__item.is-active { opacity: 1; }

/* Desktop switcher hidden on small screens; mobile menu carries its own */
.lang-switch--desktop { margin-right: 2px; }
.lang-switch--mobile {
  display: none;
  margin: 8px 0 4px;
  gap: 10px;
}
.lang-switch--mobile .flag { width: 30px; height: 20px; }
.lang-switch--mobile .lang-switch__item { padding: 6px; }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  position: relative;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .25);
}
.nav.is-scrolled .nav__burger {
  background: var(--bg-tint);
  border-color: var(--line);
}
.nav__burger span {
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s, top .3s, opacity .2s;
}
.nav__burger span:nth-child(1) { top: 13px; }
.nav__burger span:nth-child(2) { top: 19px; }
.nav__burger span:nth-child(3) { top: 25px; }
.nav__burger.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

.nav__mobile {
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--navy-900);
  color: #fff;
  display: none;
  flex-direction: column;
  padding: 40px var(--gutter) 40px;
  gap: 4px;
  z-index: 99;
}
.nav__mobile.is-open {
  display: flex;
  animation: slideDown .35s var(--ease-out);
}
.nav__mobile a {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.nav__mobile-phone {
  color: var(--yellow) !important;
  margin-top: 12px;
}
.nav__mobile .btn { margin-top: 20px; justify-content: center; }

@keyframes slideDown {
  from { transform: translateY(-10px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  padding: 120px 0 80px;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__poster {
  position: absolute;
  inset: 0;
  display: block;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transform-origin: center center;
  will-change: transform;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  transform-origin: center center;
  will-change: transform;
}
.hero__video.is-playing { opacity: 1; }

/* Reduced motion: never play video — poster only */
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none !important; }
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    /* Left scrim: darken behind text so it stays readable, fade by 60% across */
    linear-gradient(90deg, rgba(8, 22, 40, .82) 0%, rgba(8, 22, 40, .55) 35%, rgba(8, 22, 40, .15) 65%, transparent 90%),
    /* Subtle bottom for footer/meta separation */
    linear-gradient(180deg, transparent 0%, transparent 55%, rgba(8, 22, 40, .35) 100%);
}
.hero__vignette {
  position: absolute;
  inset: 0;
  /* Light vignette only — keep trucks visible */
  background: radial-gradient(ellipse at 70% 55%, transparent 45%, rgba(0, 0, 0, .25) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  width: 100%;
}

/* Hero entrance — pure CSS, robust */
.hero__eyebrow,
.hero__sub,
.hero__cta,
.hero__meta {
  opacity: 0;
  transform: translateY(18px);
  animation: heroIn 0.9s var(--ease-out) forwards;
}
.hero__eyebrow { animation-delay: 0.15s; }
.hero__sub    { animation-delay: 0.95s; }
.hero__cta    { animation-delay: 1.10s; }
.hero__meta   { animation-delay: 1.25s; }

.hero__line {
  display: block;
  overflow: hidden;
  padding: 0.08em 6px 0.18em 0;
  margin-bottom: -0.08em;
}
.hero__line .line-inner {
  display: inline-block;
  transform: translateY(110%);
  animation: heroLineIn 1.1s var(--ease-out) forwards;
}
.hero__line[data-line="1"] .line-inner { animation-delay: 0.30s; }
.hero__line[data-line="2"] .line-inner { animation-delay: 0.42s; }
.hero__line[data-line="3"] .line-inner { animation-delay: 0.54s; }

.hero__poster .hero__img,
.hero__video {
  animation: heroZoom 2.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform: scale(1.08);
}

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroLineIn {
  to { transform: translateY(0); }
}
@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: rgba(255, 255, 255, .92);
  margin-bottom: 28px;
}
.hero__eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(245, 197, 24, .25);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(245, 197, 24, .25); }
  50%      { box-shadow: 0 0 0 7px rgba(245, 197, 24, .12); }
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(40px, 6.5vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 22px;
  max-width: 14ch;
}
.hero__line--accent {
  color: var(--yellow);
  font-style: italic;
  font-weight: 500;
  font-family: "Space Grotesk", serif;
}

.hero__sub {
  max-width: 52ch;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: rgba(255, 255, 255, .85);
  margin: 0 0 36px;
  font-weight: 400;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  max-width: 640px;
}
.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__meta-num {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero__meta-label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .65);
  letter-spacing: .04em;
}
.hero__meta-sep {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, .2);
}

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 24px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  animation: floatY 3s var(--ease-in-out) infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* =========================================================
   STATS
   ========================================================= */
.stats {
  padding: 80px 0;
  background: var(--bg);
  position: relative;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 4vw, 60px);
}
.stat { padding: 8px 0; }
.stat__num {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--navy-900);
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.stat__num em {
  font-style: normal;
  color: var(--yellow-strong);
  font-size: .65em;
  margin-left: 2px;
}
.stat__num--text { color: var(--navy-900); }
.stat__label {
  margin-top: 12px;
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.stat__desc {
  margin-top: 6px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  padding: 120px 0;
  background: var(--bg-tint);
  position: relative;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out), border-color .3s;
  position: relative;
}
@media (hover: hover) {
  .service:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
  }
}
.service__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--navy-900);
}
.service__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.service:hover .service__media img { transform: scale(1.06); }
.service__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 40, 73, .4) 100%);
}

.service__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service__num {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--yellow-strong);
  letter-spacing: .2em;
  margin-bottom: 14px;
}
.service__title {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.service__desc {
  color: var(--muted);
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.55;
}
.service__list {
  margin-bottom: 24px;
  font-size: 14.5px;
}
.service__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: var(--ink-soft);
}
.service__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .58em;
  width: 12px; height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}
.service__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy-700);
  letter-spacing: -0.005em;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 12px;
  width: fit-content;
  transition: gap .25s, color .25s, border-color .25s;
}
.service__cta:hover { gap: 12px; color: var(--navy-900); border-color: var(--navy-900); }
.service__cta svg { transition: transform .25s; }
.service__cta:hover svg { transform: translateX(2px); }

/* =========================================================
   BAND (video)
   ========================================================= */
.band {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.band__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.band__video, .band__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.band__poster { z-index: 0; }
.band__video  { z-index: 1; }
.band__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    /* Stronger scrim behind text on left, fading to almost-clear on right */
    linear-gradient(90deg, rgba(8, 22, 40, .75) 0%, rgba(8, 22, 40, .55) 30%, rgba(8, 22, 40, .25) 65%, rgba(8, 22, 40, .15) 100%),
    /* Subtle vertical to keep top + bottom anchored */
    linear-gradient(180deg, rgba(8, 22, 40, .3) 0%, transparent 30%, transparent 70%, rgba(8, 22, 40, .35) 100%);
}

.band__content {
  position: relative;
  text-align: left;
  max-width: 760px;
}
.band__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 18px 0 18px;
}
.band__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--yellow);
}
.band__sub {
  font-size: clamp(16px, 1.5vw, 20px);
  color: rgba(255, 255, 255, .8);
  margin: 0 0 32px;
  max-width: 52ch;
  line-height: 1.6;
}

/* Reduced motion: hide band video, show only poster */
@media (prefers-reduced-motion: reduce) {
  .band__video { display: none; }
}

/* =========================================================
   FLEET
   ========================================================= */
.fleet {
  padding: 120px 0;
  background: var(--bg);
}
.fleet__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px;
  background: var(--bg-tint);
  border-radius: 14px;
  margin-bottom: 40px;
  width: fit-content;
  max-width: 100%;
  border: 1px solid var(--line);
}
.fleet__tab {
  padding: 11px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: background .3s, color .3s, box-shadow .3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.fleet__tab:hover { color: var(--ink); }
.fleet__tab.is-active {
  background: var(--navy-900);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

/* Mobile: horizontal scroll instead of wrap — keeps alignment clean */
@media (max-width: 880px) {
  .fleet__tabs {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    /* Mask fade on right edge to hint scrollability */
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 24px), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 24px), transparent 100%);
  }
  .fleet__tabs::-webkit-scrollbar { display: none; }
}

.fleet__panels {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
}
.fleet__panel {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(8px) scale(0.995);
  transition:
    opacity .5s var(--ease-out),
    transform .5s var(--ease-out),
    visibility 0s linear .5s;
}
.fleet__panel.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition:
    opacity .55s var(--ease-out) .05s,
    transform .6s var(--ease-out),
    visibility 0s linear 0s;
}
.fleet__panel .fleet__visual img {
  transition: transform .8s var(--ease-out);
}
.fleet__panel.is-active .fleet__visual img {
  transform: scale(1.0);
}
.fleet__panel:not(.is-active) .fleet__visual img {
  transform: scale(1.04);
}
.fleet__visual {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--navy-900);
}
.fleet__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fleet__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--yellow);
  color: var(--navy-900);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.fleet__type {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.fleet__name {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 10px 0 14px;
}
.fleet__desc {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 44ch;
  line-height: 1.55;
}
.fleet__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
  margin: 0;
}
.fleet__specs > div {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.fleet__specs dt {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.fleet__specs dd {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink);
}

/* =========================================================
   WHY US + PROCESS
   ========================================================= */
.why {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-tint) 100%);
}
.why__reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 100px;
}
.reason {
  background: #fff;
  padding: 36px 32px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform .5s var(--ease-out), border-color .3s, box-shadow .5s var(--ease-out);
}
@media (hover: hover) {
  .reason:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: var(--shadow-md);
  }
}
.reason__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--navy-50);
  display: grid; place-items: center;
  color: var(--navy-700);
  margin-bottom: 22px;
  transition: background .3s, color .3s;
}
.reason:hover .reason__icon {
  background: var(--yellow);
  color: var(--navy-900);
}
.reason__icon svg { width: 28px; height: 28px; }
.reason h3 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
}
.reason p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.process {
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.process__head { margin-bottom: 40px; }
.process__head h3 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 14px 0 0;
  max-width: 18ch;
}
.process__head em {
  font-style: italic;
  font-weight: 500;
  color: var(--navy-700);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process__steps::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 4%;
  right: 4%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 4px, transparent 4px 8px);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  padding-top: 0;
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-700);
  margin-bottom: 18px;
  position: relative;
}
.step:nth-child(1) .step__num { background: var(--yellow); border-color: var(--yellow); color: var(--navy-900); }
.step h4 {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
}
.step p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}

/* =========================================================
   REFERENCES
   ========================================================= */
.refs {
  padding: 120px 0;
  background: var(--bg);
}
.refs__logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 14px;
}
.ref-logo {
  background: #fff;
  padding: 36px 24px;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--muted-2);
  letter-spacing: -0.01em;
  transition: color .3s, transform .3s, background .3s;
  text-align: center;
}
.ref-logo:hover {
  color: var(--ink);
  background: var(--bg-tint);
}

/* Neutral placeholder slot — clearly fake, sober gray */
.ref-logo--placeholder {
  background: var(--bg-tint);
  padding: 32px 20px;
  gap: 12px;
  color: var(--muted-2);
  font-family: var(--f-text);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ref-logo--placeholder svg {
  width: 36px;
  height: 36px;
  opacity: .35;
}
.ref-logo--placeholder:hover {
  background: var(--bg);
  color: var(--muted);
}

.refs__note {
  font-size: 12.5px;
  color: var(--muted-2);
  margin: 0 0 60px;
  text-align: center;
  letter-spacing: .02em;
}
.refs__note--small { margin: 24px 0 0; font-size: 12px; }

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.testimonial {
  background: var(--bg-tint);
  padding: 32px 28px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial__mark {
  width: 28px; height: 28px;
  color: var(--yellow);
  margin-bottom: 16px;
}
.testimonial p {
  font-family: var(--f-display);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 24px;
  flex: 1;
}
.testimonial footer {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-size: 13px;
}
.testimonial strong {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}
.testimonial span { color: var(--muted); }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  padding: 120px 0;
  background: var(--bg-tint);
}
.faq__layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.faq__head { position: sticky; top: 100px; }
.faq__head .section-title { margin-top: 14px; }
.faq__head a {
  color: var(--navy-700);
  border-bottom: 1px solid var(--navy-700);
}
.faq__head a:hover { color: var(--ink); border-color: var(--ink); }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.faq__item[open] {
  border-color: var(--navy-100);
  box-shadow: var(--shadow-sm);
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--f-display);
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color .25s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--navy-700); }
.faq__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  position: relative;
  flex-shrink: 0;
  transition: background .25s, border-color .25s, transform .35s;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .3s, background .25s;
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__icon {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: rotate(180deg);
}
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); opacity: 0; }

.faq__answer {
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
  animation: fadeIn .35s var(--ease-out);
}
.faq__answer a {
  color: var(--navy-700);
  border-bottom: 1px solid currentColor;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  padding: 120px 0;
  background: var(--navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245, 197, 24, .15), transparent 60%);
  pointer-events: none;
}
.contact .kicker { color: rgba(255, 255, 255, .65); }
.contact .kicker::before { background: rgba(255, 255, 255, .5); opacity: 1; }
.contact .section-title { color: #fff; }
.contact .section-lede { color: rgba(255, 255, 255, .7); }

.contact__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact__form {
  background: #fff;
  color: var(--ink);
  padding: 36px 36px 32px;
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
  box-shadow: var(--shadow-lg);
}
.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  font-size: 15px;
  background: #fff;
  transition: border-color .25s, box-shadow .25s;
  font-family: inherit;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 4px rgba(22, 59, 102, .16);
}
.field textarea { resize: vertical; min-height: 96px; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%235b6885' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 10px 10px;
  padding-right: 38px;
}
.field--submit {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.field__note {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  flex: 1;
  min-width: 200px;
  line-height: 1.45;
}

.form-status {
  grid-column: 1 / -1;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  display: none;
}
.form-status.is-success {
  display: block;
  background: #ecfdf3;
  color: #136e3d;
  border: 1px solid #b6e9c8;
}
.form-status.is-error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Submit button loading state — swap arrow for spinner */
#form-submit .form-btn-spinner { display: none; }
#form-submit.is-loading {
  opacity: .85;
  cursor: wait;
}
#form-submit.is-loading .form-btn-arrow { display: none; }
#form-submit.is-loading .form-btn-spinner {
  display: inline-block;
  animation: spin 0.8s linear infinite;
}
#form-submit:disabled {
  cursor: not-allowed;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success block — replaces form after successful submit */
.contact__success {
  background: #fff;
  color: var(--ink);
  padding: 56px 36px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.contact__success-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--navy-700);
  background: var(--navy-50);
  border-radius: 50%;
  margin-bottom: 4px;
}
.contact__success-icon svg {
  width: 40px;
  height: 40px;
}
.contact__success-title {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.2;
}
.contact__success-text {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 12px;
  line-height: 1.55;
}
.btn--ghost-dark {
  padding: 12px 22px;
  background: var(--bg-tint);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 500;
  font-size: 14.5px;
  border-radius: 999px;
  transition: background .25s, border-color .25s, transform .25s;
}
.btn--ghost-dark:hover {
  background: #fff;
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.contact__info { display: flex; flex-direction: column; gap: 20px; }
.contact__card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.contact__card h3 {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 22px;
}
.contact__list { display: flex; flex-direction: column; gap: 18px; }
.contact__list li { display: flex; flex-direction: column; gap: 4px; }
.contact__label {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  font-weight: 600;
}
.contact__list a {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #fff;
  transition: color .25s;
}
.contact__list a:hover { color: var(--yellow); }
.contact__list span:not(.contact__label) { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,.85); }

.contact__map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, .1);
  position: relative;
}
.contact__map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
  filter: grayscale(.3) contrast(1.05);
}
.contact__map-link {
  display: block;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
  background: rgba(255, 255, 255, .04);
  border-top: 1px solid rgba(255, 255, 255, .08);
  transition: color .25s, background .25s;
}
.contact__map-link:hover { color: var(--yellow); background: rgba(255, 255, 255, .07); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, .75);
  padding: 80px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.footer__brand p {
  margin: 24px 0;
  font-size: 14.5px;
  max-width: 38ch;
  line-height: 1.55;
}
.nav__logo--footer { color: #fff; }

.footer__social { display: flex; gap: 10px; margin-top: 8px; }
.footer__social-link {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  transition: background .25s, border-color .25s, transform .3s;
  color: #fff;
}
.footer__social-link:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--navy-900);
  transform: translateY(-2px);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__cols h4 {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
}
.footer__cols ul { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.footer__cols a { transition: color .2s; }
.footer__cols a:hover { color: var(--yellow); }

/* EU funding — must be on light background per visual guidelines for funding badges */
.footer__eu {
  margin: 32px 0 0;
  padding: 28px 32px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer__eu-title {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin: 0;
}
.footer__eu-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 48px;
  width: 100%;
}
.eu-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  transition: transform .25s var(--ease-out), opacity .25s;
}
.eu-logo img {
  max-height: 100%;
  width: auto;
  display: block;
}
.eu-logo:hover {
  transform: translateY(-2px);
  opacity: .85;
}
.footer__eu-text {
  max-width: 60ch;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.footer__eu-text a {
  color: var(--muted);
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.footer__eu-text a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink-soft);
}

/* Footer bottom credit link */
.footer__credit {
  color: rgba(255, 255, 255, .65);
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.footer__credit:hover {
  color: var(--yellow);
  border-bottom-color: currentColor;
}

@media (max-width: 640px) {
  .footer__eu { padding: 24px 20px; gap: 18px; }
  .footer__eu-logos { gap: 24px 32px; flex-direction: column; }
  .eu-logo { height: 44px; }
}

.footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
}
.footer__bottom a { transition: color .2s; }
.footer__bottom a:hover { color: var(--yellow); }

/* =========================================================
   Reveal animations (JS-toggled)
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .services__grid { grid-template-columns: 1fr; gap: 16px; }
  .service { display: grid; grid-template-columns: 1fr 1.4fr; }
  .service__media { aspect-ratio: auto; height: 100%; }
  .testimonials { grid-template-columns: 1fr; }
  .why__reasons { grid-template-columns: 1fr; gap: 14px; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .faq__layout { grid-template-columns: 1fr; }
  .faq__head { position: static; }
  .refs__logos { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 880px) {
  .nav__menu { display: none; }
  .nav__phone span { display: none; }
  .nav__phone { padding: 8px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); }
  .nav.is-scrolled .nav__phone { background: var(--bg-tint); border-color: var(--line); }
  .nav__cta { display: none; }
  .nav__burger { display: block; color: #fff; }
  .nav.is-scrolled .nav__burger { color: var(--ink); }

  /* Lang switcher: keep compact one in top bar, plus a larger one inside mobile menu */
  .lang-switch--desktop .flag { width: 20px; height: 13px; }
  .lang-switch--mobile { display: inline-flex; }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero__title { font-size: clamp(40px, 12vw, 64px); }
  .hero__scroll { display: none; }

  .stats { padding: 56px 0; }
  .services, .fleet, .why, .refs, .faq, .contact { padding: 80px 0; }

  .fleet__panel { grid-template-columns: 1fr; }
  .fleet__specs { grid-template-columns: 1fr 1fr; }

  .process__steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .process__steps::before { display: none; }

  .contact__grid { grid-template-columns: 1fr; }
  .contact__form { padding: 24px; grid-template-columns: 1fr; }
  .field--submit { flex-direction: column; align-items: stretch; }
  .field--submit .btn { width: 100%; justify-content: center; }

  .footer__cols { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .service { grid-template-columns: 1fr; }
  .service__media { aspect-ratio: 4/3; }

  .hero__meta { width: 100%; }
  .hero__meta-num { font-size: 20px; }

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

@media (max-width: 480px) {
  .nav__logo-img--light { height: 52px; }
  .nav__logo-img--dark { height: 44px; }
  .nav.is-scrolled .nav__logo-img--light { height: 44px; }
  .nav.is-scrolled .nav__logo-img--dark { height: 38px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
  .hero__meta-sep { display: none; }
  .hero__meta { gap: 24px; }
  .stats__grid { grid-template-columns: 1fr; gap: 32px; }
  .process__steps { grid-template-columns: 1fr; }
  .refs__logos { grid-template-columns: 1fr 1fr; }
}

/* iOS safari fix */
@supports (-webkit-touch-callout: none) {
  .hero { min-height: -webkit-fill-available; }
}
