/* ==========================================================================
   Dzanic Komerc — Design Tokens
   ========================================================================== */
:root {
  --navy-950: #0c1626;
  --navy-900: #11203a;
  --navy-800: #16284a;
  --navy-700: #1d3460;
  --navy-600: #28467e;
  --gold-700: #7a5f22;
  --gold-600: #93752a;
  --gold-500: #a6862e;
  --gold-400: #c4a13c;
  --gold-300: #ddc06a;
  --cream: #f7f5f0;
  --white: #ffffff;
  --ink: #15213a;
  --ink-soft: #54607a;
  --line: #e4e1d8;
  --line-dark: rgba(255, 255, 255, 0.12);

  --container: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-soft: 0 20px 50px -20px rgba(12, 22, 38, 0.25);
  --shadow-card: 0 1px 2px rgba(12, 22, 38, 0.06), 0 12px 28px -16px rgba(12, 22, 38, 0.12);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul[class], ol[class] { list-style: none; margin: 0; padding: 0; }
img, picture, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, textarea, select, button { font-family: inherit; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ==========================================================================
   Typography helpers
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--gold-400);
  display: inline-block;
}

h1, h2, h3 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: 20px; }

.section-head {
  max-width: 680px;
  margin: 0 0 48px;
}
.section-head p { margin-top: 14px; color: var(--ink-soft); font-size: 17px; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); color: var(--navy-950); }
.btn-gold:hover { box-shadow: 0 14px 30px -10px rgba(166, 134, 46, 0.55); }
.btn-outline { border-color: rgba(255,255,255,0.35); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.08); }
.btn-outline-dark { border-color: rgba(21,33,58,0.25); color: var(--ink); }
.btn-outline-dark:hover { background: rgba(21,33,58,0.05); }
.btn-block { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  --hdr-navy: #17284d;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: #ffffff;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 22px -16px rgba(0,0,0,0.25);
  transition: background .4s var(--ease), padding 0.35s var(--ease), box-shadow .4s var(--ease);
}
.site-header.hdr-dark {
  background: var(--hdr-navy);
  box-shadow: 0 6px 24px -12px rgba(0,0,0,0.4);
}
/* header contents: dark text on the white header, white text on the blue header */
.site-header .main-nav a,
.site-header .lang-switch button,
.site-header .header-actions .btn-outline {
  color: var(--hdr-navy);
  transition: color .4s var(--ease), border-color .4s var(--ease);
}
.site-header.hdr-dark .main-nav a,
.site-header.hdr-dark .lang-switch button,
.site-header.hdr-dark .header-actions .btn-outline { color: #fff; }

.site-header .lang-switch button,
.site-header .header-actions .btn-outline,
.site-header .nav-toggle {
  border-color: rgba(23,40,77,0.28);
  transition: border-color .4s var(--ease);
}
.site-header.hdr-dark .lang-switch button,
.site-header.hdr-dark .header-actions .btn-outline,
.site-header.hdr-dark .nav-toggle { border-color: rgba(255,255,255,0.35); }

.site-header .nav-toggle span,
.site-header .nav-toggle span::before,
.site-header .nav-toggle span::after {
  background: var(--hdr-navy);
  transition: background .4s var(--ease);
}
.site-header.hdr-dark .nav-toggle span,
.site-header.hdr-dark .nav-toggle span::before,
.site-header.hdr-dark .nav-toggle span::after { background: #fff; }

/* language switcher: light chip with BLUE text in both states (text stays blue on scroll) */
.site-header .lang-switch button,
.site-header.hdr-dark .lang-switch button {
  background: #ffffff;
  color: var(--hdr-navy);
  border-color: rgba(23,40,77,0.12);
}

.site-header .main-nav.open a { color: #fff; }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header.is-scrolled { padding: 12px 0; }

.brand { display: flex; align-items: center; gap: 10px; position: relative; }
/* logo crossfade: color logo on white header, white logo on blue header */
.brand-logos { position: relative; display: block; height: 56px; }
.brand-logos img { height: 56px; width: auto; display: block; }
.brand-logos img { transition: opacity .4s var(--ease); }
.brand-logos .logo-white { position: absolute; top: 0; left: 0; opacity: 0; }
.brand-logos .logo-color { opacity: 1; }
.site-header.hdr-dark .brand-logos .logo-white { opacity: 1; }
.site-header.hdr-dark .brand-logos .logo-color { opacity: 0; }
.brand img { height: 56px; width: auto; display: block; }
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: var(--white);
}
.brand-name strong { font-size: 16px; font-weight: 800; letter-spacing: 0.01em; }
.brand-name span { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-300); }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s var(--ease);
  position: relative;
}
.main-nav a:hover { color: var(--white); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.lang-switch { position: relative; }
.lang-switch button {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.lang-switch .chevron { font-size: 10px; transition: transform .2s var(--ease); }
.lang-switch.open .chevron { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  padding: 6px;
  min-width: 140px;
  display: none;
  flex-direction: column;
  z-index: 50;
}
.lang-switch.open .lang-menu { display: flex; }
.lang-menu button {
  background: none; border: none; text-align: left;
  padding: 9px 12px; border-radius: 6px; font-size: 14px; color: var(--ink); font-weight: 500;
  display: flex; justify-content: space-between; align-items: center;
}
.lang-menu button:hover { background: var(--cream); }
.lang-menu button.active { color: var(--gold-600); font-weight: 700; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 10px; right: 10px; height: 2px; background: var(--white);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav-toggle span { top: 19px; }
.nav-toggle span::before { content: ""; top: -6px; }
.nav-toggle span::after { content: ""; top: 6px; }
.nav-toggle.open span { opacity: 0; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after { top: 0; transform: rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background:
    radial-gradient(circle at 85% 0%, rgba(166,134,46,0.18), transparent 45%),
    linear-gradient(160deg, #223a6b, #1b2f57 62%, #15254a);
  color: var(--white);
  padding: 168px 0 96px;
  overflow: hidden;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(36px, 5.4vw, 64px);
  margin-top: 18px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-300);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lead {
  margin-top: 22px;
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
}
.hero-ctas { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
  border-top: 1px solid var(--line-dark);
  padding-top: 28px;
}
.hero-stats .num { font-size: 28px; font-weight: 800; color: var(--white); }
.hero-stats .label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid var(--line-dark);
  overflow: hidden;
}
.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,14,26,0.88), rgba(8,14,26,0.05) 45%);
}
.hero-badge {
  position: absolute;
  z-index: 2;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(12,22,38,0.72);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 0 4px rgba(196,161,60,0.25); flex-shrink: 0; }
.hero-badge strong { font-size: 14px; display: block; }
.hero-badge span { font-size: 12.5px; color: rgba(255,255,255,0.65); }

/* ==========================================================================
   Route / Truck banner
   ========================================================================== */
.route-banner { padding: 100px 0 110px; background: var(--white); }
.route-banner .section-head { margin-bottom: 64px; }

.ribbon-stage {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
}
.ribbon-shape {
  position: absolute;
  inset: 0;
  clip-path: polygon(2.5% 50%, 7% 0%, 93% 0%, 97.5% 50%, 93% 100%, 7% 100%);
  background: linear-gradient(115deg, var(--gold-600), var(--gold-400) 45%, var(--gold-500) 100%);
  box-shadow: var(--shadow-soft);
}
.ribbon-shape::after {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, rgba(12,22,38,0.06) 0 2px, transparent 2px 64px);
  mix-blend-mode: multiply;
}
.route-points {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 9%;
  z-index: 2;
}
.route-point { text-align: center; color: var(--navy-950); position: relative; }
.route-point .pin {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--navy-950);
  margin: 0 auto 10px;
  box-shadow: 0 0 0 6px rgba(12,22,38,0.12);
}
.route-point strong { display: block; font-size: 15px; font-weight: 800; letter-spacing: 0.02em; }
.route-point span { font-size: 12.5px; color: rgba(12,22,38,0.6); }
/* destination pin pulses once the truck arrives */
.ribbon-stage.in-view .route-point.is-dest .pin {
  animation: destPulse 1.4s var(--ease) 2.5s infinite;
}
@keyframes destPulse {
  0%   { box-shadow: 0 0 0 6px rgba(12,22,38,0.12); }
  50%  { box-shadow: 0 0 0 14px rgba(12,22,38,0); }
  100% { box-shadow: 0 0 0 6px rgba(12,22,38,0); }
}

.route-line {
  position: absolute;
  left: 13%; right: 13%; top: 50%;
  height: 2px;
  border-top: 2px dashed rgba(12,22,38,0.35);
  transform: translateY(-1px);
  z-index: 1;
}
/* gold line that "draws" itself along the route as the truck drives */
.route-progress {
  position: absolute;
  left: 13%; top: 50%;
  width: 0;
  height: 4px;
  transform: translateY(-2px);
  border-radius: 4px;
  background: linear-gradient(90deg, var(--navy-950), var(--navy-800));
  box-shadow: 0 0 0 0 rgba(12,22,38,0.2);
  z-index: 1;
  transition: width 2.6s var(--ease);
}
.ribbon-stage.in-view .route-progress { width: 72%; }

.truck-wrap {
  position: absolute;
  top: 54%;
  left: -32%;
  width: 26%;
  transform: translate(0, -68%);
  transition: left 2.6s var(--ease);
  z-index: 3;
  filter: drop-shadow(0 14px 18px rgba(12,22,38,0.28));
}
.ribbon-stage.in-view .truck-wrap { left: 56%; }

.truck-wrap svg { width: 100%; }

/* speed lines streaking behind the truck while it drives */
.speed-lines {
  position: absolute;
  right: 94%;
  top: 50%;
  width: 70px;
  height: 34px;
  transform: translateY(-90%);
  opacity: 0;
  background:
    linear-gradient(90deg, transparent, rgba(12,22,38,0.55)) no-repeat 0 30% / 100% 3px,
    linear-gradient(90deg, transparent, rgba(12,22,38,0.4))  no-repeat 0 55% / 70% 3px,
    linear-gradient(90deg, transparent, rgba(12,22,38,0.5))  no-repeat 0 80% / 85% 3px;
}
.ribbon-stage.in-view .speed-lines {
  animation: streak .45s linear infinite, streakFade 2.6s var(--ease) forwards;
}
@keyframes streak {
  0%   { transform: translateY(-90%) translateX(8px); }
  100% { transform: translateY(-90%) translateX(-8px); }
}
@keyframes streakFade {
  0%, 80% { opacity: 0.9; }
  100%    { opacity: 0; }
}

.wheel { transform-box: fill-box; transform-origin: 50% 50%; animation: spin 0.65s linear infinite paused; }
.ribbon-stage.in-view .wheel { animation-play-state: running; }
@keyframes spin { to { transform: rotate(-360deg); } }

@media (prefers-reduced-motion: reduce) {
  .truck-wrap, .route-progress { transition: none; }
  .ribbon-stage.in-view .truck-wrap { left: 56%; }
  .ribbon-stage.in-view .route-progress { width: 72%; }
  .ribbon-stage.in-view .wheel,
  .ribbon-stage.in-view .speed-lines,
  .ribbon-stage.in-view .route-point.is-dest .pin { animation: none; }
}

.route-caption {
  text-align: center;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 14.5px;
}
.route-caption strong { color: var(--ink); }

/* ==========================================================================
   Trust / stats strip
   ========================================================================== */
.trust-strip { background: var(--cream); padding: 56px 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.trust-card { text-align: center; }
.trust-card .icon {
  width: 52px; height: 52px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400);
  font-size: 24px;
}
.trust-card .icon svg { width: 26px; height: 26px; display: block; }
.trust-card strong { display: block; font-size: 22px; font-weight: 800; }
.trust-card p { margin-top: 4px; font-size: 13.5px; color: var(--ink-soft); }

/* ==========================================================================
   Services
   ========================================================================== */
.services { padding: 120px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.service-card:hover { transform: translateY(-6px); }
.service-card .index {
  font-size: 13px; font-weight: 800; color: var(--gold-600);
  letter-spacing: 0.08em;
}
.service-card h3 { margin-top: 18px; }
.service-card p { margin-top: 12px; color: var(--ink-soft); font-size: 15px; }
.service-card .icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-800);
  margin-bottom: 22px;
}

/* ==========================================================================
   Fleet
   ========================================================================== */
.fleet { padding: 0 0 120px; }
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.fleet-card {
  background: var(--navy-950);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--white);
  position: relative;
  padding: 34px 34px 32px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.fleet-card .fleet-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.fleet-card:hover .fleet-photo { transform: scale(1.06); }
.fleet-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,14,26,0.92) 10%, rgba(8,14,26,0.25) 60%, rgba(8,14,26,0.1));
}
.fleet-card .fleet-body { position: relative; z-index: 2; }

.fleet-gallery {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fleet-gallery figure {
  position: relative;
  margin: 0;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.fleet-gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.fleet-gallery figure:hover img { transform: scale(1.08); }
.fleet-gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  font-size: 13px; font-weight: 600; color: var(--white);
  background: linear-gradient(to top, rgba(8,14,26,0.85), transparent);
}
.fleet-card .tag {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 10px;
}
.fleet-card h3 { font-size: 26px; color: var(--white); }
.fleet-card p { margin-top: 12px; color: rgba(255,255,255,0.72); font-size: 15px; max-width: 380px; }

/* ==========================================================================
   Transport types
   ========================================================================== */
.transport { padding: 40px 0 110px; }
.transport-showcase {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.transport-featured {
  position: relative;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 420px;
}
.transport-featured img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.transport-featured:hover img { transform: scale(1.05); }
.transport-featured figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 24px 22px;
  background: linear-gradient(to top, rgba(8,14,26,0.9), transparent);
  display: flex; flex-direction: column; gap: 8px;
}
.transport-featured figcaption .tag {
  align-self: flex-start;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-300);
}
.transport-featured figcaption strong { color: var(--white); font-size: 24px; line-height: 1.2; }

.transport-side { display: flex; flex-direction: column; gap: 18px; }
.transport-types {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.transport-types li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: var(--cream);
  border: 1px solid rgba(23,40,77,0.06);
}
.transport-types svg { width: 30px; height: 30px; flex: 0 0 30px; color: var(--gold-400); margin-top: 2px; }
.transport-types strong { display: block; font-size: 16px; color: var(--ink); }
.transport-types span { display: block; margin-top: 3px; font-size: 14px; color: var(--ink-soft); line-height: 1.5; }

.transport-mini {
  position: relative; margin: 0;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.transport-mini img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.transport-mini:hover img { transform: scale(1.07); }
.transport-mini figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 12px 16px;
  font-size: 13px; font-weight: 600; color: var(--white);
  background: linear-gradient(to top, rgba(8,14,26,0.85), transparent);
}

@media (max-width: 820px) {
  .transport-showcase { grid-template-columns: 1fr; }
  .transport-featured { min-height: 300px; aspect-ratio: 4/3; }
}

/* ==========================================================================
   Coverage
   ========================================================================== */
.coverage { padding: 0 0 120px; }
.coverage-inner {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.country-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.country-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 600;
}
.country-chip.highlight {
  background: var(--navy-950);
  color: var(--white);
  border-color: var(--navy-950);
}
.coverage ul.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 16px;
  font-size: 15px;
  color: var(--ink-soft);
}
.coverage ul.checklist li::before {
  content: "";
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--gold-400);
}

/* ==========================================================================
   Reviews (Google)
   ========================================================================== */
.reviews { padding: 0 0 120px; }
.reviews-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
.reviews-head h2 { font-size: 28px; margin-top: 14px; }
.reviews-head p { margin-top: 14px; color: var(--ink-soft); font-size: 16px; max-width: 520px; }
.reviews-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.google-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: 0 10px 24px -14px rgba(12,22,38,0.25);
}
.google-badge .g-logo svg { width: 34px; height: 34px; display: block; }
.google-badge .g-text { display: flex; flex-direction: column; gap: 2px; }
.google-badge .g-stars { color: #fbbc05; font-size: 17px; letter-spacing: 2px; }
.google-badge .g-name { font-size: 13px; font-weight: 700; color: var(--ink); letter-spacing: 0.02em; }

/* ==========================================================================
   Marketplace (OLX)
   ========================================================================== */
.marketplace { padding: 0 0 120px; }
.marketplace-card {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.marketplace-text h2 { color: var(--white); font-size: 28px; margin-top: 14px; }
.marketplace-text p { margin-top: 14px; color: rgba(255,255,255,0.72); font-size: 16px; max-width: 560px; }
.marketplace-text .btn { margin-top: 24px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { padding: 0 0 120px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item button {
  width: 100%;
  background: none; border: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 24px 4px;
  text-align: left;
  font-size: 17px; font-weight: 600; color: var(--ink);
}
.faq-item .plus {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  position: relative;
}
.faq-item .plus::before, .faq-item .plus::after {
  content: ""; position: absolute; background: var(--ink); top: 50%; left: 50%;
}
.faq-item .plus::before { width: 12px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-item .plus::after { width: 1.5px; height: 12px; transform: translate(-50%,-50%); transition: transform .25s var(--ease); }
.faq-item.open .plus::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq-answer p { padding: 0 4px 24px; color: var(--ink-soft); font-size: 15.5px; max-width: 640px; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact { padding: 0 0 120px; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  background: var(--navy-950);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.contact-info {
  padding: 52px 44px;
  color: var(--white);
  position: relative;
}
.contact-info::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 10% 100%, rgba(196,161,60,0.18), transparent 55%);
}
.contact-info > * { position: relative; z-index: 1; }
.contact-info p.lead { margin-top: 14px; color: rgba(255,255,255,0.72); font-size: 15.5px; }
.contact-list { margin-top: 36px; display: flex; flex-direction: column; gap: 22px; }
.contact-list .row { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-300); flex-shrink: 0;
}
.contact-list strong { display: block; font-size: 13px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.contact-list a, .contact-list span.value { font-size: 15.5px; font-weight: 600; }
.contact-list a:hover { color: var(--gold-300); }

.contact-map { margin-top: 30px; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line-dark); }
.contact-map iframe { width: 100%; height: 180px; border: 0; display: block; filter: grayscale(0.2) contrast(1.05); }

.contact-form { background: var(--cream); padding: 52px 44px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; color: var(--ink-soft); }
.field input, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold-500); }
.field textarea { resize: vertical; min-height: 110px; }
.form-note { margin-top: 14px; font-size: 13px; color: var(--ink-soft); }
.form-success { display: none; margin-top: 14px; font-size: 14px; font-weight: 600; color: #2f7a4f; }
.form-success.show { display: block; }
.form-error { display: none; margin-top: 14px; font-size: 14px; font-weight: 600; color: #c0392b; }
.form-error.show { display: block; }
.contact-form button.is-loading { opacity: 0.65; cursor: progress; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.7); padding: 64px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { font-size: 14.5px; max-width: 280px; color: rgba(255,255,255,0.55); }
.footer-col strong { display: block; color: var(--white); font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 12px; font-size: 14.5px; }
.footer-col ul li a:hover { color: var(--gold-300); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 13.5px; flex-wrap: wrap; gap: 12px;
}

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Floating contact button (FAB)
   ========================================================================== */
.fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.fab-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s var(--ease);
}
.fab.open .fab-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.fab-action {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.fab-label {
  background: var(--navy-950);
  color: var(--white);
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 20px -8px rgba(0,0,0,0.45);
}
.fab-ico {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  background: var(--navy-800);
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.5);
  transition: transform .2s var(--ease);
}
.fab-action:hover .fab-ico { transform: scale(1.08); }
.fab-ico svg { width: 26px; height: 26px; }
.fab-action.wa .fab-ico { background: #25d366; }
.fab-action.vb .fab-ico { background: #7360f2; }
.fab-action.call-ba .fab-ico,
.fab-action.call-ch .fab-ico { background: var(--white); }
.fab-action.mail .fab-ico { background: var(--gold-500); color: var(--navy-950); }
.fab-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(166, 134, 46, 0.7);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.fab-toggle:hover { transform: translateY(-2px); }
.fab-toggle svg { width: 28px; height: 28px; transition: opacity .2s var(--ease), transform .25s var(--ease); }
.fab-toggle .fab-icon-close { position: absolute; opacity: 0; transform: rotate(-90deg); }
.fab.open .fab-toggle .fab-icon-open { opacity: 0; transform: rotate(90deg); }
.fab.open .fab-toggle .fab-icon-close { opacity: 1; transform: rotate(0); }

/* ==========================================================================
   Footer legal links
   ========================================================================== */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: center;
}
.footer-legal button {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  font-size: 13.5px;
  padding: 0;
}
.footer-legal button:hover { color: var(--gold-300); }

/* ==========================================================================
   Cookie consent bar
   ========================================================================== */
.cookie-bar {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 260;
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px -18px rgba(12,22,38,0.5);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: cookieIn .4s var(--ease);
}
.cookie-bar[hidden] { display: none; }
@keyframes cookieIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.cookie-text { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
.cookie-link {
  background: none; border: none; padding: 0; cursor: pointer;
  color: var(--gold-600); font-weight: 700; text-decoration: underline;
  font-size: inherit;
}
.cookie-actions { display: flex; gap: 12px; justify-content: flex-end; }
.cookie-actions .btn { padding: 12px 22px; }

/* ==========================================================================
   Legal modals
   ========================================================================== */
.modal { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(8,14,26,0.6); backdrop-filter: blur(2px); animation: fadeIn .25s var(--ease); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-dialog {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 84vh;
  overflow-y: auto;
  padding: 44px 44px 40px;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.6);
  animation: modalIn .3s var(--ease);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(18px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--white);
  cursor: pointer; font-size: 15px; color: var(--ink-soft);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.modal-close:hover { background: var(--cream); color: var(--ink); }
.modal-dialog h2 { font-size: 26px; margin-bottom: 6px; padding-right: 40px; }
.modal-body { color: var(--ink-soft); font-size: 15px; line-height: 1.65; }
.modal-body h3 { color: var(--ink); font-size: 16px; margin: 22px 0 8px; }
.modal-body p { margin-bottom: 12px; }
.modal-body ul { margin: 8px 0 12px; padding-left: 20px; }
.modal-body li { margin-bottom: 6px; list-style: disc; }
.modal-body a { color: var(--gold-600); font-weight: 600; }
.modal-body .legal-updated { font-size: 13px; color: var(--ink-soft); margin-top: 24px; font-style: italic; }
body.modal-open { overflow: hidden; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin: 0 auto; aspect-ratio: 1/1; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-gallery { grid-template-columns: repeat(2, 1fr); }
  .coverage-inner { grid-template-columns: 1fr; padding: 40px; }
  .reviews-card { grid-template-columns: 1fr; padding: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .main-nav, .header-actions .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy-950);
    flex-direction: column;
    padding: 18px 24px 28px;
    gap: 18px;
    box-shadow: 0 16px 30px -10px rgba(0,0,0,0.4);
  }
  .hero { padding: 140px 0 72px; }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; }
  .ribbon-stage { height: 220px; }
  .route-point span { display: none; }
  .fleet-gallery { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info, .contact-form { padding: 36px 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .fab { right: 16px; bottom: 16px; }
  .fab-toggle { width: 54px; height: 54px; }
  .cookie-bar { left: 12px; right: 12px; bottom: 12px; padding: 18px; }
  body.cookie-visible .fab { bottom: 190px; }
  .cookie-actions .btn { flex: 1; }
  .modal-dialog { padding: 40px 24px 32px; max-height: 88vh; }
  .modal-dialog h2 { font-size: 22px; }
}

/* ==========================================================================
   Phone: cleaner route banner (bigger centered truck, labels at top corners)
   ========================================================================== */
@media (max-width: 600px) {
  .route-banner { padding: 70px 0 78px; }
  .route-banner .section-head { margin-bottom: 34px; }
  .ribbon-stage { height: 210px; }
  .ribbon-shape { clip-path: polygon(3% 50%, 8% 0%, 92% 0%, 97% 50%, 92% 100%, 8% 100%); }

  /* no travelling line / streaks on phone */
  .route-line, .route-progress, .speed-lines { display: none; }

  /* country labels pinned to the top corners so they never overlap the truck */
  .route-points { align-items: flex-start; padding: 20px 8% 0; }
  .route-point strong { font-size: 11.5px; letter-spacing: 0.01em; }
  .route-point .pin {
    width: 11px; height: 11px; margin-bottom: 6px;
    box-shadow: 0 0 0 5px rgba(12,22,38,0.12);
  }

  /* big, centered, static truck */
  .truck-wrap,
  .ribbon-stage.in-view .truck-wrap {
    left: 50%;
    top: 60%;
    width: 54%;
    transform: translate(-50%, -50%);
    transition: none;
  }
  .ribbon-stage.in-view .wheel { animation-play-state: paused; }
}
