/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  /* CORE PALETTE */
  --black:        #080808;
  --surface-1:    #111111;
  --surface-2:    #181818;

  --white:        #f4f1ec;
  --white-dim:    rgba(244,241,236,0.65);
  --white-mute:   rgba(244,241,236,0.38);
  --white-ghost:  rgba(244,241,236,0.12);
  --white-line:   rgba(244,241,236,0.06);

  /* BRAND GREEN SYSTEM */
  --accent:        #6abf2e;
  --accent-dim:    rgba(25,30,21,0.18);
  --accent-soft:   rgba(106,191,46,0.08);
  --accent-line:   rgba(106,191,46,0.35);
  --accent-strong: rgba(106,191,46,0.75);

  /* Glow hierarchy */
  --accent-glow-sm: 0 0 8px  rgba(106,191,46,0.25);
  --accent-glow-md: 0 0 18px rgba(106,191,46,0.35);
  --accent-glow-lg: 0 0 40px rgba(106,191,46,0.45);

  /* UI LINES */
  --line:         rgba(255,255,255,0.06);
  --line-strong:  rgba(255,255,255,0.12);
  --line-accent:  rgba(106,191,46,0.25);

  /* WHATSAPP PALETTE */
  --green-text:   #7ecb94;
  --green-bg:     rgba(126,203,148,0.08);
  --green-border: rgba(126,203,148,0.22);

  /* SPACING */
  --sp-xs:  8px;
  --sp-sm:  16px;
  --sp-md:  32px;
  --sp-lg:  64px;
  --sp-xl:  112px;
  --sp-2xl: 160px;

  /* LAYOUT */
  --pad-x: 60px;
  --nav-h: 80px;

  /* TRANSITIONS */
  --ease:  cubic-bezier(0.22, 1, 0.36, 1);
  --dur-s: 0.22s;
  --dur-m: 0.45s;
  --dur-l: 0.65s;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.6;
}

img    { display: block; max-width: 100%; }
a      { color: inherit; }
button { font-family: inherit; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY SCALE
═══════════════════════════════════════════ */
.t-display {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
  line-height: 0.92;
}
.t-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.t-body-lg { font-size: 16px; font-weight: 300; line-height: 1.75; color: var(--white-dim); }
.t-body     { font-size: 14px; font-weight: 300; line-height: 1.7;  color: var(--white-mute); }
.t-caption  { font-size: 12px; font-weight: 400; line-height: 1.6;  color: var(--white-mute); }

/* ═══════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════ */
.accent-text {
  color: var(--accent);
  font-family: 'Pixelify Sans', 'Bebas Neue', sans-serif;
  font-weight: 700;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  flex-shrink: 0;
  width: 32px;
  height: 0.5px;
  background: var(--accent);
}

.section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 4.8vw, 70px);
  letter-spacing: 0.02em;
  line-height: 0.93;
}

/* DIVIDERS */
.border-top    { border-top:    0.5px solid var(--white-line); }
.border-bottom { border-bottom: 0.5px solid var(--white-line); }

/* ═══════════════════════════════════════════
   BUTTON SYSTEM
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  transition:
    background    var(--dur-s) var(--ease),
    color         var(--dur-s) var(--ease),
    border-color  var(--dur-s) var(--ease),
    transform     var(--dur-s) var(--ease),
    box-shadow    var(--dur-s) var(--ease);
  position: relative;
  overflow: hidden;
}

/* Shine sweep */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.55s var(--ease);
  pointer-events: none;
}
.btn:hover::after { transform: translateX(100%); }

/* Primary */
.btn-primary { padding: 15px 38px; background: var(--white); color: var(--black); }
.btn-primary:hover { background: var(--accent); color: var(--black); }
.btn-primary:active { transform: scale(0.98); }

/* Ghost */
.btn-ghost { padding: 15px 38px; background: transparent; color: var(--white); border: 0.5px solid rgba(244,241,236,0.28); }
.btn-ghost:hover { border-color: var(--white-dim); background: rgba(244,241,236,0.05); }
.btn-ghost:active { transform: scale(0.98); }

/* Accent */
.btn-accent {
  padding: 0 0 2px;
  background: transparent;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.1em;
  border-bottom: 0.5px solid var(--accent-line);
  transition: gap var(--dur-s) var(--ease), opacity var(--dur-s);
}
.btn-accent:hover { opacity: 0.75; gap: 14px; }
.btn-accent::after { display: none; }

/* WhatsApp */
.btn-whatsapp {
  padding: 14px 26px;
  background: var(--green-bg);
  color: var(--green-text);
  border: 0.5px solid var(--green-border);
  margin-top: var(--sp-lg);
}
.btn-whatsapp:hover { background: rgba(126,203,148,0.15); transform: translateY(-2px); }

/* Submit */
.btn-submit { width: 100%; padding: 17px; background: var(--white); color: var(--black); margin-top: var(--sp-md); }
.btn-submit:hover  { background: var(--accent); }
.btn-submit:active { transform: scale(0.99); }

/* ═══════════════════════════════════════════
   PAGE SYSTEM
═══════════════════════════════════════════ */
.page        { display: none; position: relative; z-index: 10; }
.page.active { display: block; }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: var(--nav-h);
  padding: 0 var(--pad-x);

  display: grid; /* 🔥 CHANGE */
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  background: linear-gradient(to bottom, rgba(8,8,8,0.94) 0%, transparent 100%);
  transition: background var(--dur-m), border-color var(--dur-m);
}
#main-nav.scrolled {
  background: rgba(8,8,8,0.97);
  border-bottom: 0.5px solid var(--white-line);
}

/* Logo */
.nav-logo { display: flex; align-items: center; opacity: 0.9; transition: opacity var(--dur-s); justify-self: start;}
.nav-logo:hover { opacity: 1; }
.nav-logo img { height: 120px; }

/* Center links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: visible;
  justify-self: center;
}
.nav-item { position: relative; display: flex; align-items: center; }

.nav-links a {
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--white-mute);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 0.5px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-links a:hover        { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.nav-active   { color: var(--white); }
.nav-links a.nav-active::after { width: 100%; }

/* Right */
.nav-right { display: flex; align-items: center; gap: 16px; justify-self: end;}

/* Language switcher */
.lang-switcher { display: flex; border: 0.5px solid var(--white-line); }
.lang-btn { padding: 6px 10px; font-size: 11px; background: transparent; color: var(--white-mute); cursor: pointer; border: none; }
.lang-btn.active { background: var(--white); color: var(--black); }

/* CTA button */
.nav-cta {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 0.5px solid rgba(244,241,236,0.28);
  color: var(--white);
  background: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav-cta:hover { background: var(--white); color: var(--black); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: rgba(10,10,10,0.95);
  border: 0.5px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  min-width: 200px;
  width: max-content;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
  z-index: 99999;
}
.dropdown-menu a {
  padding: 12px 18px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.2s ease;
}
.dropdown-menu a:hover { color: #6abf2e; background: rgba(106,191,46,0.08); }
.nav-item:hover .dropdown-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 300;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: all var(--dur-m);
}

/* ═══════════════════════════════════════════
   SECTION WRAPPERS
═══════════════════════════════════════════ */
.section    { padding: 72px var(--pad-x); }
.section-sm { padding: var(--sp-lg) var(--pad-x); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--pad-x) 80px;
  overflow: hidden;
  background: var(--black);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.70;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,8,8,0.55), rgba(8,8,8,0.92)),
    radial-gradient(ellipse 70% 50% at 75% 35%, rgba(106,191,46,0.12), transparent 60%),
    radial-gradient(ellipse 40% 30% at 10% 90%, rgba(106,191,46,0.06), transparent 70%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 0.5px; background: var(--accent); flex-shrink: 0; }

.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(54px, 7vw, 82px);
  line-height: 0.91;
  letter-spacing: 0.02em;
  max-width: 860px;
}
.hero-h1 .line-accent { color: var(--accent); }

.hero-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 40px;
  gap: 24px;
}
.hero-desc    { max-width: 400px; font-size: 15px; font-weight: 300; line-height: 1.75; color: var(--white-dim); }
.hero-actions { display: flex; gap: 14px; flex-shrink: 0; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px; right: var(--pad-x);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-mute);
}
.hero-scroll-indicator::after {
  content: '';
  display: block;
  width: 0.5px; height: 52px;
  background: linear-gradient(to bottom, var(--white-mute), transparent);
}

/* ═══════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════ */
.stats-bar-wrapper { position: relative; overflow: hidden; }
.stats-bg {
  position: absolute; inset: 0;
  background: url('pages/brandimage/stats-bg.png') center/cover no-repeat;
  z-index: 0;
}
.stats-bar-wrapper::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}
.stats-bar {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 0.5px solid var(--white-line);
  border-bottom: 0.5px solid var(--white-line);
  min-height: 160px;
}
.stat-item {
  position: relative;
  padding: 32px 40px;
  border-right: 0.5px solid var(--white-line);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(2px);
}
.stat-item:first-child { padding-left: var(--pad-x); }
.stat-item:last-child  { border-right: none; padding-right: var(--pad-x); }
.stat-item:hover       { background: rgba(0,0,0,0.35); }

.stat-content { position: relative; z-index: 3; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 50px;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--white);
  text-shadow: 0 0 20px rgba(106,191,46,0.4);
}
.stat-num sup { color: var(--accent); font-size: 0.55em; vertical-align: top; margin-top: 8px; }
.stat-label   { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white-mute); margin-top: 6px; }

/* ═══════════════════════════════════════════
   SERVICES GRID (homepage)
═══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--white-line);
  border: 0.5px solid var(--white-line);
  margin-top: var(--sp-lg);
}
.service-card {
  background: var(--black);
  padding: 44px 32px 36px;
  cursor: pointer;
  transition: background var(--dur-m) var(--ease), transform var(--dur-m) var(--ease);
}
.service-card:hover { background: var(--surface-1); transform: translateY(-3px); }

.service-num   { font-family: 'Bebas Neue', sans-serif; font-size: 56px; color: rgba(106,191,46,0.35); line-height: 1; margin-bottom: -12px; }
.service-title { font-size: 17px; font-weight: 500; color: var(--white); margin-bottom: 14px; }
.service-desc  { font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--white-mute); }
.service-arrow { display: inline-block; margin-top: 28px; font-size: 18px; color: var(--accent); transition: transform var(--dur-s) var(--ease); }
.service-card:hover .service-arrow { transform: translateX(7px); }

/* Services intro / cinematic */
.services-intro {
  display: flex;
  gap: 60px;
  margin-bottom: 60px;
  align-items: flex-end;
  width: 100%;
}
.services-text { flex: 1; font-size: 16px; line-height: 1.8; opacity: 0.85; max-width: 600px; }
.services-visual { flex: 1; position: relative; height: 380px; border-radius: 4px; }
.services-visual img,
.services-visual video { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }

.services-cinematic {
  position: relative;
  width: 100%; height: 380px;
  overflow: hidden;
  border: 0.5px solid var(--white-line);
  cursor: pointer;
  background: var(--surface-1);
}
.services-cin-video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: opacity var(--dur-m) var(--ease), transform var(--dur-m) var(--ease);
}
.services-cinematic:hover .services-cin-video { opacity: 1; transform: scale(1.04); }
.services-cin-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.45) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
}
.services-cin-label {
  position: absolute; bottom: 12px; left: 14px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--accent);
  background: rgba(8,8,8,0.65);
  padding: 4px 10px;
  border-left: 2px solid var(--accent);
  z-index: 10;
  backdrop-filter: blur(4px);
}
.services-cin-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: opacity var(--dur-m) var(--ease);
}
.services-cin-play i {
  font-size: 20px;
  color: rgba(244,241,236,0.3);
  border: 0.5px solid rgba(244,241,236,0.15);
  border-radius: 50%;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  padding-left: 4px;
  backdrop-filter: blur(6px);
}
.services-cinematic:hover .services-cin-play { opacity: 0; }

/* Visual wrap */
.visual-wrap {
  flex: 1;
  overflow: hidden;
  border-radius: 10px;
}
.visual-wrap img {
  width: 100%; height: 200px;
  object-fit: cover; display: block;
  transition: transform var(--dur-l) var(--ease);
}
.visual-wrap:hover img { transform: scale(1.06); }

/* ═══════════════════════════════════════════
   WHY US
═══════════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; margin-top: var(--sp-lg); }
.why-item { padding-top: 28px; border-top: 0.5px solid var(--white-ghost); transition: border-color var(--dur-m); }
.why-item:hover { border-top-color: var(--accent-line); }
.why-num   { font-family: 'Bebas Neue', sans-serif; font-size: 12px; letter-spacing: 0.2em; color: var(--accent); margin-bottom: 18px; }
.why-title { font-size: 17px; font-weight: 500; color: var(--white); margin-bottom: 12px; }
.why-desc  { font-size: 13px; font-weight: 300; line-height: 1.72; color: var(--white-mute); }

/* ═══════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════ */
.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  margin-top: var(--sp-lg);
}

/* Service-page specific process tracks */
#full-production .process-track,
#unit-production .process-track,
#rentals .process-track,
#catering .process-track {
  margin-top: 36px;
  text-align: left;
  margin-left: -30px;
}
#full-production .process-track::before,
#unit-production .process-track::before,
#rentals .process-track::before,
#catering .process-track::before {
  content: '';
  position: absolute;
  top: 19px; left: 0%; right: 0%;
  height: 0.5px;
  background: var(--white-ghost);
}
#full-production .process-step,
#unit-production .process-step,
#rentals .process-step,
#catering .process-step { padding: 0 10px; text-align: center; }

#full-production .process-step:first-child,
#unit-production .process-step:first-child,
#rentals .process-step:first-child,
#catering .process-step:first-child { padding-left: 0; }

#full-production .process-step:last-child,
#unit-production .process-step:last-child,
#rentals .process-step:last-child,
#catering .process-step:last-child { padding-right: 0; }

.process-step { position: relative; padding: 0 20px; text-align: center; }
.process-node {
  width: 38px; height: 38px;
  border: 0.5px solid var(--white-ghost);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px; color: var(--accent);
  background: var(--black);
  position: relative; z-index: 1;
  transition: border-color var(--dur-m), background var(--dur-m);
}
.process-step:hover .process-node { border-color: var(--accent-line); background: var(--accent-dim); }
.process-title { font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 8px; }
.process-desc  { font-size: 12px; font-weight: 300; color: var(--white-mute); line-height: 1.6; }

/* Tooltip */
.process-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  background: rgba(10,10,10,0.95);
  border: 0.5px solid rgba(106,191,46,0.35);
  color: var(--white-dim);
  font-size: 12px; font-weight: 300; line-height: 1.6;
  padding: 12px 16px;
  width: 180px; text-align: center;
  pointer-events: none; opacity: 0;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 99;
  backdrop-filter: blur(8px);
}
.process-tooltip::after {
  content: '';
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(106,191,46,0.35);
}
.process-step:hover .process-tooltip { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ═══════════════════════════════════════════
   CLIENTS
═══════════════════════════════════════════ */
.clients-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white-mute); text-align: center; margin-bottom: 44px; }
.clients-row   { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.client-chip {
  min-width: 140px; height: 38px;
  background: rgba(244,241,236,0.03);
  border: 0.5px solid var(--white-line);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; letter-spacing: 0.1em;
  color: rgba(244,241,236,0.18); text-transform: uppercase;
  transition: border-color var(--dur-s), color var(--dur-s);
}
.client-chip:hover { border-color: var(--white-ghost); color: var(--white-mute); }

/* ═══════════════════════════════════════════
   WHO WE WORK WITH
═══════════════════════════════════════════ */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--white-line); border: 0.5px solid var(--white-line); margin-top: var(--sp-lg); }
.audience-card { background: var(--black); padding: 40px 28px; transition: background var(--dur-m); }
.audience-card:hover { background: var(--surface-1); }
.audience-title { font-size: 16px; font-weight: 500; color: var(--white); margin-bottom: 12px; }
.audience-desc  { font-size: 13px; font-weight: 300; line-height: 1.65; color: var(--white-mute); }

/* ═══════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════ */
.final-cta { text-align: center; padding: 110px var(--pad-x); position: relative; overflow: hidden; }
.final-cta-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 38% at 50% 50%, rgba(58,88,58,0.11), transparent 65%);
  pointer-events: none;
}
.final-cta-h   { font-family: 'Bebas Neue', sans-serif; font-size: clamp(44px, 6.5vw, 88px); line-height: 0.93; letter-spacing: 0.02em; position: relative; }
.final-cta-sub { font-size: 15px; font-weight: 300; color: var(--white-mute); margin-top: 12px; position: relative; }
.final-cta-actions { display: flex; justify-content: center; gap: 14px; margin-top: 24px; position: relative; }

/* ═══════════════════════════════════════════
   LOGO MARQUEE
═══════════════════════════════════════════ */
.logo-marquee {
  width: 100%; overflow: hidden;
  display: flex; flex-direction: column;
  gap: 40px; margin-top: 60px;
  position: relative;
}
.logo-track { display: flex; gap: 40px; width: max-content; }
.logo-track a { display: flex; align-items: center; justify-content: center; width: 160px; height: 120px; flex-shrink: 0; }
.logo-track img { max-width: 150%; max-height: 150%; object-fit: contain; opacity: 0.8; transition: all 0.3s ease; }
.logo-track img:hover { opacity: 1; transform: scale(1.08); }
.logo-track .logo-lg { transform: scale(1.4); }

.track-left  { animation: scrollLeft  45s linear infinite; }
.track-right { animation: scrollRight 45s linear infinite; }
.logo-track:hover { animation-play-state: paused; }

.logo-marquee::before,
.logo-marquee::after {
  content: ""; position: absolute; top: 0;
  width: 80px; height: 100%;
  z-index: 2; pointer-events: none;
}
.logo-marquee::before { left:  0; background: linear-gradient(to right, var(--black), transparent); }
.logo-marquee::after  { right: 0; background: linear-gradient(to left,  var(--black), transparent); }

@keyframes scrollLeft  { 0% { transform: translateX(0);    } 100% { transform: translateX(-50%); } }
@keyframes scrollRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0);    } }

/* ═══════════════════════════════════════════
   PAGE HEROES (inner pages)
═══════════════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 80px) var(--pad-x) 72px;
  border-bottom: 0.5px solid var(--white-line);
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7.5vw, 112px);
  line-height: 0.91; letter-spacing: 0.02em;
}
.page-hero p {
  max-width: 540px; font-size: 15px; font-weight: 300; line-height: 1.75;
  color: var(--white-dim); margin-top: 26px;
}

/* ═══════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════ */
.service-block {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  padding: 0;
  margin-bottom: 16px;
  border-bottom: 0.5px solid var(--white-line);
  align-items: start;
}
.service-block:last-child { border-bottom: none; }

.service-block-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: rgba(244,241,236,0.03);
  line-height: 0.9; letter-spacing: 0.02em;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.service-block-num .phase-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 400; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 8px;
}
.service-block-content h3 { font-size: 26px; font-weight: 500; color: var(--white); margin-bottom: 18px; }
.service-block-content > p {
  font-size: 15px; font-weight: 300; line-height: 1.8;
  color: var(--white); margin-bottom: 36px; max-width: 600px;
}

.service-items { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.service-item {
  padding: 22px 24px;
  border: 0.5px solid var(--white-line);
  background: var(--surface-1);
  transition: border-color var(--dur-m), background var(--dur-m);
}
.service-item:hover { border-color: var(--white-ghost); background: var(--surface-2); }
.service-item-title { font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 7px; }
.service-item-desc  { font-size: 12px; font-weight: 300; line-height: 1.65; color: var(--white-mute); }

/* Service blocks layout override */
#full-production,
#unit-production,
#rentals,
#catering {
  align-items: start;
  padding-left: 20px;
  padding-top: 0; padding-bottom: 0;
  min-height: 350px;
}
#full-production .service-block-num,
#unit-production .service-block-num,
#rentals .service-block-num,
#catering .service-block-num {
  position: relative; z-index: 2;
  color: rgb(244,241,236);
  font-size: 72px; line-height: 0.9; letter-spacing: 0.02em;
  align-self: start;
  padding-top: 0; margin-top: -80px;
}
#full-production .service-block-content,
#unit-production .service-block-content,
#rentals .service-block-content,
#catering .service-block-content {
  position: relative; z-index: 2;
  padding-top: 100px; padding-bottom: 50px; padding-left: 60px;
}
#full-production .service-block-content > p,
#unit-production .service-block-content > p,
#rentals .service-block-content > p,
#catering .service-block-content > p { max-width: 95%; }

/* ═══════════════════════════════════════════
   FLEET PAGE — HERO
═══════════════════════════════════════════ */
.fleet-page-hero {
  padding: calc(var(--nav-h) + 80px) var(--pad-x) 72px;
  border-bottom: 0.5px solid var(--white-line);
}
.fleet-page-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.fleet-page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7.5vw, 112px);
  line-height: 0.91; letter-spacing: 0.02em;
}
.fleet-page-intro { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--white-dim); }

/* ═══════════════════════════════════════════
   FLEET SECTIONS
═══════════════════════════════════════════ */
.fleet-section { padding: 90px var(--pad-x); border-bottom: 0.5px solid var(--white-line); }
.fleet-section:last-of-type { border-bottom: none; }

.fleet-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }
.fleet-layout.reverse { grid-template-columns: 1.1fr 1fr; }
.fleet-layout.reverse .fleet-text-col  { order: 2; }
.fleet-layout.reverse .fleet-media-col { order: 1; }

.fleet-vehicle-tag {
  display: flex; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.fleet-vehicle-tag::before { content: ''; width: 22px; height: 0.5px; background: var(--accent); }

.fleet-vehicle-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 3.8vw, 58px);
  line-height: 0.92; letter-spacing: 0.02em;
  color: var(--white); margin-bottom: 22px;
}
.fleet-vehicle-name span { display: block; }

.fleet-vehicle-desc { font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--white-dim); margin-bottom: 28px; }

.fleet-features     { display: flex; flex-direction: column; margin-bottom: 28px; }
.fleet-feature {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px; font-weight: 300; color: var(--white-dim);
  padding: 9px 0;
  border-bottom: 0.5px solid rgba(244,241,236,0.04);
  transition: color var(--dur-s);
}
.fleet-feature:first-child { border-top: 0.5px solid rgba(244,241,236,0.04); }
.fleet-feature:hover { color: var(--white); }
.fleet-feature i { font-size: 11px; color: var(--accent); flex-shrink: 0; margin-top: 2px; width: 14px; text-align: center; }

.fleet-use-case       { padding: 18px 22px; border-left: 2px solid var(--accent); background: var(--accent-dim); }
.fleet-use-case-label { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 7px; }
.fleet-use-case p     { font-size: 12px; font-weight: 300; line-height: 1.65; color: var(--white-mute); }

.fleet-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.fleet-tag  {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white-mute);
  border: 0.5px solid var(--white-line);
  padding: 6px 14px;
  transition: border-color var(--dur-s), color var(--dur-s); cursor: pointer;
}
.fleet-tag:hover { border-color: var(--accent-line); color: var(--accent); }

/* Media grid */
.fleet-media-grid   { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 10px; height: 520px; }
.fleet-left-stack   { display: flex; flex-direction: column; gap: 10px; }
.fleet-img-hero     { flex: 1; position: relative; overflow: hidden; background: var(--surface-1); border: 0.5px solid var(--white-line); }
.fleet-img-hero img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-l) var(--ease), filter var(--dur-l);
  filter: grayscale(15%) contrast(1.05) brightness(0.92); cursor: pointer;
}
.fleet-img-hero:hover img { transform: scale(1.06); filter: grayscale(0%) contrast(1.1) brightness(1); }
.fleet-img-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.7) 0%, transparent 45%);
  pointer-events: none;
}
.fleet-thumb-label {
  position: absolute; bottom: 12px; left: 14px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px; letter-spacing: 0.18em; color: var(--accent);
  background: rgba(8,8,8,0.65); padding: 4px 10px; z-index: 1;
  backdrop-filter: blur(4px);
}
.fleet-thumbs-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; height: 130px; flex-shrink: 0; }
.fleet-thumb { position: relative; overflow: hidden; background: var(--surface-1); border: 0.5px solid var(--white-line); cursor: pointer; }
.fleet-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.72; transition: opacity var(--dur-m), transform var(--dur-m) var(--ease); }
.fleet-thumb:hover img { opacity: 1; transform: scale(1.07); }

.fleet-video-col { position: relative; overflow: hidden; background: var(--surface-1); border: 0.5px solid var(--white-line); cursor: pointer; }
.fleet-video-col video { width: 100%; height: 100%; object-fit: cover; opacity: 0.88; transition: opacity var(--dur-m), transform var(--dur-m) var(--ease); }
.fleet-video-col:hover video { opacity: 1; transform: scale(1.04); }
.fleet-video-col::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,8,0.45) 0%, transparent 40%); pointer-events: none; }

.fleet-img-simple { position: relative; height: 420px; overflow: hidden; background: var(--surface-1); border: 0.5px solid var(--white-line); }
.fleet-img-simple img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(15%); transition: transform var(--dur-l) var(--ease), filter var(--dur-l); cursor: pointer; }
.fleet-img-simple:hover img { transform: scale(1.05); filter: grayscale(0%); }
.fleet-img-simple::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,8,0.65) 0%, transparent 50%); pointer-events: none; }

.fleet-placeholder { height: 420px; background: var(--surface-1); border: 0.5px solid var(--white-line); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; }
.fleet-placeholder-icon  { font-size: 48px; opacity: 0.1; }
.fleet-placeholder-svg   { font-size: 42px; color: rgba(244,241,236,0.08); margin-bottom: 4px; }
.fleet-placeholder-label { font-family: 'Bebas Neue', sans-serif; font-size: 12px; letter-spacing: 0.22em; color: rgba(244,241,236,0.1); }

/* Fleet cutout / hero visual */
.fleet-preview-grid { display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; gap: 40px; position: relative; overflow: visible; }
.fleet-visual-box.cutout { position: relative; display: flex; justify-content: center; align-items: center; min-height: 520px; overflow: visible; right: -20px; }
.fleet-visual-box.cutout img { width: 110%; height: auto; max-height: 680px; position: relative; z-index: 3; transform: translateY(30px) rotate(-1deg); transition: transform 0.5s ease; pointer-events: none; box-shadow: none; }
.fleet-visual-box.cutout:hover img { transform: translateY(30px) rotate(-1deg) scale(1.03); }
.fleet-visual-box.cutout::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 70% 40%, rgba(106,191,46,0.25), transparent 65%),
    radial-gradient(ellipse 50% 40% at 40% 80%, rgba(106,191,46,0.15), transparent 70%);
  z-index: 1; filter: blur(20px);
}
.fleet-visual-box.cutout::after { display: none; }
.fleet-visual-label { position: absolute; bottom: 30px; left: 40px; z-index: 4; font-size: 12px; letter-spacing: 1.5px; background: rgba(0,0,0,0.6); color: #6abf2e; padding: 10px 16px; border-left: 2px solid #6abf2e; backdrop-filter: blur(6px); }

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; padding-bottom: var(--sp-lg); border-bottom: 0.5px solid var(--white-line); }
.about-story-grid { display: grid; grid-template-columns: 160px 1fr; gap: 80px; padding: 38px 0 0; }
.about-story-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); padding-top: 6px; }
.about-story-text blockquote { font-family: 'DM Serif Display', serif; font-size: 26px; font-weight: 400; font-style: italic; line-height: 1.4; color: var(--white); margin-bottom: 26px; }
.about-story-text p { font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--white-dim); }

.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--white-line); border: 0.5px solid var(--white-line); }
.pillar-card  { background: var(--black); padding: 44px 36px; transition: background var(--dur-m); }
.pillar-card:hover { background: var(--surface-1); }
.pillar-icon  { font-size: 22px; margin-bottom: 22px; color: var(--accent); opacity: 1; }
.pillar-title { font-size: 17px; font-weight: 500; color: var(--white); margin-bottom: 14px; }
.pillar-desc  { font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--white-mute); }

.about-portrait-gallery { display: flex; gap: 8px; margin-top: 48px; width: 100%; }
.about-portrait-item    { flex: 1; aspect-ratio: 9 / 16; overflow: hidden; border: 0.5px solid var(--white-line); }
.about-portrait-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(100%) brightness(0.80) contrast(1.05);
  transition: filter var(--dur-l) var(--ease), transform var(--dur-l) var(--ease);
}
.about-portrait-item:hover img { filter: brightness(1) contrast(1.08); transform: scale(1.04); }

/* Pillars video section */
.pillars-video-section   { position: relative; overflow: hidden; padding: 60px var(--pad-x); }
.pillars-bg-video        { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.6; z-index: 0; }
.pillars-video-overlay   { position: absolute; inset: 0; background: rgba(8,8,8,0.45); z-index: 1; }
.pillars-video-section .pillars-grid { position: relative; z-index: 2; }

/* About images */
.about-image { margin-top: 36px; position: relative; overflow: hidden; height: 260px; border: 0.5px solid var(--white-line); }
.about-image img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(100%) brightness(0.72) contrast(1.08); transition: filter var(--dur-l) var(--ease), transform var(--dur-l) var(--ease); }
.about-image:hover img { filter: grayscale(80%) brightness(0.82) contrast(1.05); transform: scale(1.03); }

.about-divider-image { width: 100%; height: 480px; position: relative; overflow: hidden; border-top: 0.5px solid var(--white-line); border-bottom: 0.5px solid var(--white-line); }
.about-divider-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; display: block; filter: grayscale(100%) brightness(0.55) contrast(1.1); transition: filter var(--dur-l) var(--ease), transform var(--dur-l) var(--ease); }
.about-divider-image:hover img { filter: grayscale(85%) brightness(0.65) contrast(1.08); transform: scale(1.02); }

/* ═══════════════════════════════════════════
   PROJECTS PAGE
═══════════════════════════════════════════ */
.projects-list { border-top: 0.5px solid var(--white-line); }
.project-row {
  position: relative;
  height: calc(100vw / 3);
  isolation: isolate;
  overflow: hidden;
  border-bottom: 0.5px solid var(--white-line);
  cursor: pointer;
  display: flex; align-items: center;
  padding: 0 80px; gap: 40px;
}
.project-row-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  filter: grayscale(30%) brightness(0.45);
  transition: filter var(--dur-l) var(--ease), transform var(--dur-l) var(--ease);
  z-index: 0;
}
.project-row:hover .project-row-bg { filter: grayscale(0%) brightness(0.6); transform: scale(1.03); }
.project-row-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,8,8,0.75) 0%, rgba(8,8,8,0.25) 60%, rgba(8,8,8,0.55) 100%);
  z-index: 1;
}
.project-row-info   { position: relative; z-index: 2; flex: 1; }
.project-row-cat    { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.project-row-title  { font-family: 'Bebas Neue', sans-serif; font-size: clamp(22px, 2.8vw, 38px); letter-spacing: 0.02em; line-height: 1; color: var(--white); margin-bottom: 8px; }
.project-row-meta   { font-size: 12px; color: var(--white-mute); letter-spacing: 0.06em; margin-bottom: 8px; }
.project-row-desc   { font-size: 13px; font-weight: 300; line-height: 1.6; color: var(--white-dim); max-width: 560px; }
.project-row-arrow  { position: relative; z-index: 2; font-size: 20px; color: var(--white-ghost); flex-shrink: 0; transition: color var(--dur-m), transform var(--dur-m); }
.project-row:hover .project-row-arrow { color: var(--accent); transform: translateX(6px); }

/* BTS Carousel */
.bts-section { padding-bottom: var(--sp-xl); overflow: hidden; }
.bts-track-wrapper { overflow: hidden; padding: 0 var(--pad-x); scrollbar-width: none; -ms-overflow-style: none; cursor: grab; transform: translateZ(0); -webkit-transform: translateZ(0); }
.bts-track-wrapper.dragging { cursor: grabbing; }
.bts-track { display: flex; gap: 16px; width: max-content; padding-bottom: 8px; animation: btScrollLeft 40s linear infinite; will-change: transform; backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.bts-track:hover { animation-play-state: paused; }
@keyframes btScrollLeft { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-50%, 0, 0); } }

.bts-card  { flex-shrink: 0; width: 220px; }
.bts-thumb { position: relative; width: 220px; height: 390px; overflow: hidden; background: var(--surface-1); border: 0.5px solid var(--white-line); }
.bts-video { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: opacity var(--dur-m), transform var(--dur-l) var(--ease); }
.bts-card:hover .bts-video { opacity: 1; transform: scale(1.04); }
.bts-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,8,0.75) 0%, transparent 50%); pointer-events: none; }
.bts-label { position: absolute; bottom: 90px; left: 12px; font-family: 'Bebas Neue', sans-serif; font-size: 11px; letter-spacing: 0.18em; color: var(--accent); background: rgba(8,8,8,0.65); padding: 4px 10px; border-left: 2px solid var(--accent); backdrop-filter: blur(4px); z-index: 1; }
.bts-info    { padding: 12px 4px 0; }
.bts-client  { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.bts-name    { font-size: 13px; font-weight: 500; color: var(--white); line-height: 1.4; text-transform: uppercase; }

/* Transport & Caravan grids */
.transport-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; height: 100%; }
.transport-photo      { border-radius: 4px; overflow: hidden; aspect-ratio: 4/3; }
.transport-photo img  { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.transport-photo:hover img { transform: scale(1.04); }

.caravan-grid  { display: flex; flex-direction: column; gap: 16px; height: 100%; }
.caravan-unit  { display: flex; flex-direction: column; gap: 8px; }
.caravan-label { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.caravan-pair  { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.caravan-cell  { position: relative; overflow: hidden; border-radius: 4px; background: var(--surface-1); border: 0.5px solid var(--white-line); cursor: pointer; aspect-ratio: 16/14; }
.caravan-cell img   { width: 100%; height: 100%; object-fit: cover; filter: grayscale(15%) contrast(1.05) brightness(0.92); transition: transform var(--dur-l) var(--ease), filter var(--dur-l); }
.caravan-cell:hover img { transform: scale(1.06); filter: grayscale(0%) contrast(1.1) brightness(1); }
.caravan-cell video { width: 100%; height: 100%; object-fit: cover; opacity: 0.88; transition: opacity var(--dur-m), transform var(--dur-m) var(--ease); }
.caravan-cell:hover video { opacity: 1; transform: scale(1.04); }
.caravan-cell::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,8,0.45) 0%, transparent 40%); pointer-events: none; }

/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }

.contact-left {
  position: relative; overflow: hidden;
  background: var(--surface-1);
  padding: calc(var(--nav-h) + 60px) var(--pad-x) var(--sp-lg);
  display: flex; flex-direction: column; justify-content: flex-start;
  gap: 48px;
  border-right: 0.5px solid var(--white-line);
}
.contact-left h1   { font-family: 'Bebas Neue', sans-serif; font-size: clamp(46px, 5.5vw, 80px); line-height: 0.91; letter-spacing: 0.02em; }
.contact-left > p  { font-size: 14px; font-weight: 300; line-height: 1.75; color: var(--white-mute); margin-top: 22px; max-width: 360px; }

.contact-detail-item  { padding: 20px 0; border-bottom: 0.5px solid var(--white-line); }
.contact-detail-label { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 7px; }
.contact-detail-value { font-size: 14px; color: var(--white); line-height: 1.6; }
.contact-detail-value a { color: var(--white); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: color var(--dur-s); }
.contact-detail-value a:hover { color: var(--accent); }
.contact-detail-value i { font-size: 13px; opacity: 0.65; transition: opacity var(--dur-s); }
.contact-detail-value a:hover i { opacity: 1; }

.contact-right { background: var(--black); padding: calc(var(--nav-h) + 60px) var(--pad-x) var(--sp-lg); }

.contact-form-title { margin-bottom: 36px; }
.contact-form-title h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px, 3vw, 44px); line-height: 0.92; letter-spacing: 0.02em; margin-top: 10px; }
.contact-form-heading { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 40px; }

.contact-social { display: flex; gap: 20px; margin-top: 28px; padding-top: 24px; border-top: 0.5px solid var(--white-line); }
.contact-social a { font-size: 16px; color: var(--white-mute); text-decoration: none; transition: color var(--dur-s), transform var(--dur-s); }
.contact-social a:hover { color: var(--accent); transform: translateY(-2px); }

.contact-next-steps { margin-top: 48px; padding-top: 32px; border-top: 0.5px solid var(--white-line); }
.contact-next-label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.contact-next-track { display: flex; flex-direction: column; gap: 16px; }
.contact-next-step  { display: flex; align-items: flex-start; gap: 16px; }
.contact-next-num   { font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: 0.14em; color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.contact-next-text  { font-size: 12px; font-weight: 300; line-height: 1.6; color: var(--white-mute); }

/* Form */
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.form-group label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white-mute); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface-1);
  border: 0.5px solid var(--white-line);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 300;
  padding: 13px 16px;
  outline: none;
  transition: border-color var(--dur-s);
  -webkit-appearance: none; appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-line);
  box-shadow: 0 0 0 2px rgba(106,191,46,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white-mute); }
.form-group select option { background: var(--surface-1); }
.form-group textarea { resize: vertical; min-height: 116px; }

#form-success,
#form-error { transition: opacity 0.3s ease; }

/* ═══════════════════════════════════════════
   EMAIL MODAL
═══════════════════════════════════════════ */
.email-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); display: none; align-items: center; justify-content: center; z-index: 999; }
.email-modal-content { background: #111; padding: 30px; border-radius: 10px; width: 320px; text-align: center; }
.email-modal-content h3 { margin-bottom: 10px; }
.email-modal-content p  { font-size: 14px; opacity: 0.7; }
.email-modal input      { width: 100%; padding: 12px; margin: 15px 0; border: none; outline: none; border-radius: 5px; }
.modal-actions          { display: flex; gap: 10px; }
.modal-actions button   { flex: 1; padding: 10px; cursor: pointer; }
.cancel { background: #333; color: #fff; }

/* ═══════════════════════════════════════════
   GALLERY MODAL
═══════════════════════════════════════════ */
.gallery-modal {
  position: fixed; inset: 0;
  background: rgba(4,4,4,0.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-m) var(--ease);
  z-index: 9999; backdrop-filter: blur(8px);
}
.gallery-modal.active { opacity: 1; pointer-events: all; }

.gallery-modal-img,
.gallery-modal-video {
  max-width: 88%; max-height: 84%;
  opacity: 0; filter: blur(12px); transform: scale(0.97);
  transition: opacity var(--dur-m) var(--ease), transform var(--dur-l) var(--ease), filter var(--dur-l) var(--ease);
  display: none;
}
.gallery-modal.active .gallery-modal-img,
.gallery-modal.active .gallery-modal-video { opacity: 1; filter: blur(0); transform: scale(1); }

.gallery-close { position: absolute; top: 24px; right: 32px; font-size: 36px; color: var(--white-mute); cursor: pointer; transition: color var(--dur-s); line-height: 1; opacity: 0; pointer-events: none; background: transparent; border: none; }
.gallery-modal.active .gallery-close { opacity: 1; pointer-events: all; }
.gallery-close:hover { color: var(--white); }

.gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 32px; color: rgba(244,241,236,0.4); cursor: pointer; padding: 20px 24px; user-select: none; transition: color var(--dur-s), transform var(--dur-s); opacity: 0; pointer-events: none; background: transparent; border: none; }
.gallery-modal.active .gallery-nav { opacity: 1; pointer-events: all; }
.gallery-nav:hover        { color: var(--white); }
.gallery-nav.left         { left:  16px; }
.gallery-nav.right        { right: 16px; }
.gallery-nav.left:hover   { transform: translateY(-50%) translateX(-3px); }
.gallery-nav.right:hover  { transform: translateY(-50%) translateX(3px); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 32px var(--pad-x); border-top: 1px solid #222; background: #0b0b0b; }
.footer-left img  { height: 80px; }
.footer-center    { text-align: center; }
.footer-nav       { display: flex; gap: 25px; justify-content: center; margin-bottom: 10px; }
.footer-nav a     { cursor: pointer; opacity: 0.7; transition: 0.3s; }
.footer-nav a:hover { opacity: 1; }
.footer-copy      { font-size: 14px; opacity: 0.7; }
.footer-right     { display: flex; gap: 20px; justify-content: flex-end; justify-self: end; }
.footer-right i   { cursor: pointer; opacity: 0.7; transition: 0.3s; font-size: 25px; }
.footer-right i:hover { opacity: 1; transform: translateY(-2px); }

/* ═══════════════════════════════════════════
   LOADER
═══════════════════════════════════════════ */
#loader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hidden    { opacity: 0; visibility: hidden; pointer-events: none; }
#loader-video     { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
#loader-overlay   { position: absolute; inset: 0; background: rgba(8,8,8,0.3); z-index: 1; }

#loader-mobile {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--black);
  display: none;
  align-items: center; justify-content: center;
  overflow: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader-mobile video { width: 100%; height: 100%; object-fit: contain; position: absolute; inset: 0; }

body.loading { overflow: hidden; }

/* ═══════════════════════════════════════════
   MOBILE NAV OVERLAY
═══════════════════════════════════════════ */
.mobile-nav-overlay {
  position: fixed; inset: 0;
  background: rgba(8,8,8,0.98);
  z-index: 99999;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-m) var(--ease);
  backdrop-filter: blur(12px);
}
.mobile-nav-overlay.active { opacity: 1; pointer-events: all; }

.mobile-nav-close {
  position: absolute; top: 28px; right: 24px;
  background: transparent; border: none;
  color: var(--white); font-size: 28px; cursor: pointer;
  transition: color var(--dur-s);
  z-index: 99999; pointer-events: none;
}
.mobile-nav-overlay.active .mobile-nav-close { pointer-events: all; cursor: pointer; z-index: 999999; }
.mobile-nav-close:hover { color: var(--white); }

.mobile-nav-links { display: flex; flex-direction: column; align-items: center; gap: 8px; width: 100%; }
.mobile-nav-links a { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 8vw, 56px); letter-spacing: 0.04em; color: var(--white-mute); text-decoration: none; transition: color var(--dur-s); line-height: 1.2; }
.mobile-nav-links a:hover { color: var(--white); }
.mobile-nav-links .mobile-nav-cta { font-family: 'DM Sans', sans-serif; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--black); background: var(--accent); padding: 14px 36px; margin-top: 16px; }
.mobile-nav-links .mobile-nav-cta:hover { background: var(--white); color: var(--black); }

.mobile-nav-footer { display: none; }
.mobile-nav-footer a { font-size: 18px; color: var(--white-mute); transition: color var(--dur-s); }
.mobile-nav-footer a:hover { color: var(--accent); }

.mobile-nav-bottom { position: absolute; bottom: 28px; left: 24px; right: 24px; display: flex; justify-content: center; align-items: center; }
.mobile-nav-bottom img { height: 52px !important; width: auto !important; opacity: 0.6; display: block; object-fit: contain; margin-bottom: 0 !important; }
.mobile-nav-bottom .mobile-nav-footer { position: static; display: flex; align-items: center; gap: 20px; height: 100%; }
.mobile-nav-bottom .mobile-nav-footer a { font-size: 28px; color: var(--white-mute) !important; display: flex; align-items: center; text-decoration: none !important; }
.mobile-nav-bottom .mobile-nav-footer a i { color: var(--white-mute) !important; line-height: 1; }
.mobile-nav-bottom .mobile-nav-footer a:hover,
.mobile-nav-bottom .mobile-nav-footer a:hover i { color: var(--accent) !important; }

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.anim    { animation: fadeInUp 0.7s var(--ease) both; }
.anim-d1 { animation-delay: 0.1s; }
.anim-d2 { animation-delay: 0.22s; }
.anim-d3 { animation-delay: 0.36s; }

@keyframes spin { to { transform: rotate(360deg); } }
.btn-spinner {
  display: inline-block; width: 13px; height: 13px;
  border: 1.5px solid rgba(0,0,0,0.25); border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
  vertical-align: middle; margin-right: 6px;
}

/* Scroll-reveal */
.reveal { opacity: 1; transform: translateY(0); transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1), transform 0.55s cubic-bezier(0.22,1,0.36,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.why-grid      .reveal:nth-child(2) { transition-delay: 0.07s; }
.why-grid      .reveal:nth-child(3) { transition-delay: 0.14s; }
.why-grid      .reveal:nth-child(4) { transition-delay: 0.07s; }
.why-grid      .reveal:nth-child(5) { transition-delay: 0.14s; }
.why-grid      .reveal:nth-child(6) { transition-delay: 0.21s; }
.services-grid .reveal:nth-child(2) { transition-delay: 0.07s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.14s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.21s; }
.pillars-grid  .reveal:nth-child(2) { transition-delay: 0.09s; }
.pillars-grid  .reveal:nth-child(3) { transition-delay: 0.18s; }

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1280px)
═══════════════════════════════════════════ */
@media (max-width: 1400px) {
  .nav-links    { display: none !important; }
  .dropdown-menu { display: none !important; }
  .nav-hamburger { display: flex !important; }
  #main-nav { display: flex; align-items: center; justify-content: space-between; padding: 0 20px; }
  .nav-right { display: flex; align-items: center; gap: 12px; margin-left: auto; }
}

@media (max-width: 1280px) {
  :root { --pad-x: 40px; }
  .nav-logo img   { height: 88px; }
  #main-nav       { height: 70px; }
  .nav-right      { flex-direction: row-reverse; }
  .hero-h1        { font-size: clamp(44px, 6vw, 72px); }
  .services-grid  { grid-template-columns: 1fr 1fr; }
  .why-grid       { grid-template-columns: 1fr 1fr; }
  .fleet-page-header { grid-template-columns: 1fr; gap: 32px; }
  .fleet-layout   { gap: 48px; }
  .fleet-media-grid { height: 420px; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr 1fr; }
  .pillars-grid   { grid-template-columns: 1fr 1fr; }
  .process-track  { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .process-track::before { display: none; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --pad-x: 20px; --sp-xl: 60px; --sp-2xl: 80px; }

  /* Loader */
  #loader        { display: none !important; }
  #loader-mobile { display: flex !important; }

  /* Nav */
  #main-nav    { height: 64px; padding: 0 20px; }
  .nav-logo img { height: 130px; }
  .nav-cta     { display: none !important; }
  .lang-switcher { display: flex !important; }

  /* Hero */
  .hero        { padding: 0 20px 36px; min-height: 92vh; }
  .hero-h1     { font-size: clamp(38px, 9vw, 56px); }
  .hero-foot   { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-desc   { font-size: 14px; }
  .hero-actions .btn { padding: 14px; font-size: 10px; letter-spacing: 0.12em; }

  /* Stats */
  .stats-bar { grid-template-columns: 1fr 1fr; min-height: auto; }
  .stat-item { padding: 18px 12px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:first-child,
  .stat-item:last-child { padding-left: 20px; padding-right: 20px; }
  .stat-num   { font-size: 30px; }
  .stat-label { font-size: 9px; letter-spacing: 0.08em; }

  /* Sections */
  .section    { padding: 48px 20px; }
  .section-sm { padding: 40px 20px; }
  .section-heading { font-size: clamp(26px, 7.5vw, 42px); line-height: 0.95; }

  /* Typography */
  body       { font-size: 14px; line-height: 1.65; }
  .t-body-lg { font-size: 14px; }
  .t-body    { font-size: 13px; }
  .t-caption { font-size: 11px; }
  .eyebrow   { font-size: 9px; letter-spacing: 0.18em; margin-bottom: 16px; }
  .eyebrow::before { width: 24px; }

  /* Services */
  .services-intro  { flex-direction: column; gap: 32px; }
  .services-visual { height: 260px; width: 100%; }
  .services-cinematic { height: 260px !important; width: 100%; position: relative !important; }
  .services-cinematic video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .services-text  { font-size: 13px; line-height: 1.7; }
  .services-grid  { grid-template-columns: 1fr; }
  .service-card   { padding: 28px 20px 24px; }
  .service-num    { font-size: 40px; }
  .service-title  { font-size: 15px; margin-bottom: 10px; }
  .service-desc   { font-size: 12px; line-height: 1.65; }
  .service-arrow  { margin-top: 20px; font-size: 16px; }

  /* Service blocks */
  #full-production,
  #unit-production,
  #rentals,
  #catering { padding-left: 0 !important; min-height: unset !important; display: flex !important; flex-direction: column !important; }

  #full-production .service-block-num,
  #unit-production .service-block-num,
  #rentals .service-block-num,
  #catering .service-block-num { position: static !important; margin-top: 0 !important; font-size: 42px !important; padding: 20px 20px 0 !important; }

  #full-production .service-block-content,
  #unit-production .service-block-content,
  #rentals .service-block-content,
  #catering .service-block-content { padding: 20px 20px 32px !important; position: static !important; }

  #page-services .section { padding-left: 20px !important; padding-right: 20px !important; }

  .service-block { grid-template-columns: 1fr; gap: 24px; }
  .service-block-content { padding-top: 0 !important; padding-left: 0 !important; padding-bottom: 32px !important; }
  .service-block-num     { margin-top: 0 !important; font-size: 48px !important; }

  /* Why */
  .why-grid  { grid-template-columns: 1fr; gap: 24px; }
  .why-item  { padding-top: 20px; }
  .why-num   { font-size: 10px; margin-bottom: 12px; }
  .why-title { font-size: 14px; margin-bottom: 8px; }
  .why-desc  { font-size: 12px; line-height: 1.65; }

  /* Process */
  .process-track { grid-template-columns: 1fr 1fr; gap: 20px; }
  .process-track::before { display: none; }

  #full-production .process-track,
  #unit-production .process-track,
  #rentals .process-track,
  #catering .process-track { grid-template-columns: 1fr 1fr !important; margin-left: 0 !important; gap: 24px !important; }

  #full-production .process-node,
  #unit-production .process-node,
  #rentals .process-node,
  #catering .process-node { margin-bottom: 12px !important; }

  

  #full-production .process-track .process-step:nth-child(odd):last-child,
#unit-production .process-track .process-step:nth-child(odd):last-child,
#rentals .process-track .process-step:nth-child(odd):last-child,
#catering .process-track .process-step:nth-child(odd):last-child {
  grid-column: 1 / -1 !important;
  max-width: 50% !important;
  margin: 0 auto !important;
}




  /* Audience */
  .audience-grid { grid-template-columns: 1fr; }

  /* Fleet */
  .fleet-page-hero   { padding: calc(var(--nav-h) + 40px) 20px 48px; }
  .fleet-page-header { grid-template-columns: 1fr; gap: 24px; }
  .fleet-page-hero h1 { font-size: clamp(42px, 10vw, 72px); }
  .fleet-section     { padding: 56px 20px; }
  .fleet-layout,
  .fleet-layout.reverse { display: flex !important; flex-direction: column !important; }
  .fleet-layout .fleet-text-col,
  .fleet-layout.reverse .fleet-text-col  { order: 2 !important; display: flex !important; flex-direction: column !important; }
  .fleet-layout .fleet-media-col,
  .fleet-layout.reverse .fleet-media-col { order: 1 !important; }
  .fleet-text-col > div[style*="display: flex"] { order: 10 !important; }
  .fleet-text-col .btn-ghost { width: 100%; justify-content: center; }
  .fleet-text-col div[style*="display: flex"] { flex-direction: column !important; gap: 10px !important; }
  .fleet-media-grid  { height: auto; grid-template-columns: 1fr; }
  .fleet-left-stack  { gap: 8px; }
  .fleet-img-hero    { height: 240px; }
  .fleet-thumbs-row  { height: 100px; }
  .fleet-video-col   { height: 200px; }
  .fleet-vehicle-name { font-size: clamp(22px, 6vw, 34px); margin-bottom: 16px; }
  .fleet-vehicle-tag  { font-size: 9px; }
  .fleet-vehicle-desc { font-size: 12px; line-height: 1.7; margin-bottom: 20px; }
  .fleet-feature      { font-size: 12px; padding: 7px 0; gap: 10px; }
  .fleet-use-case p   { font-size: 11px; }
  .fleet-use-case-label { font-size: 9px; }
  .fleet-tags         { gap: 6px; margin-top: 14px; }
  .fleet-tag          { font-size: 9px; padding: 5px 10px; }
  .transport-photo-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .caravan-grid       { gap: 12px; }

  /* About */
  .page-hero  { padding: calc(var(--nav-h) + 40px) 20px 48px; }
  .page-hero h1 { font-size: clamp(42px, 10vw, 72px); }
  .about-intro-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .about-portrait-gallery { gap: 4px; margin-top: 24px; }
  .about-portrait-item    { aspect-ratio: 9 / 14; }
  .about-story-grid { grid-template-columns: 1fr; gap: 16px; padding-top: 32px; }
  .about-story-grid h2 { font-size: clamp(48px, 12vw, 72px) !important; line-height: 0.9 !important; }
  .about-story-text blockquote { font-size: 18px; line-height: 1.45; }
  .about-story-text p { font-size: 12px; line-height: 1.75; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillars-video-section { padding: 56px 20px; }
  .pillar-card  { padding: 32px 24px; }
  .pillar-title { font-size: 14px; margin-bottom: 10px; }
  .pillar-desc  { font-size: 12px; line-height: 1.65; }
  .pillar-icon  { font-size: 18px; margin-bottom: 16px; }
  .about-image         { height: 200px; }
  .about-divider-image { height: 280px; }

  /* Projects */
  .project-row { height: 140px; padding: 0 20px !important; }
  .project-row .project-row-bg { object-fit: contain; object-position: center center; background: #080808; }
  .projects-list { display: flex; flex-direction: column; gap: 0; }
  .project-row-cat   { font-size: 9px; }
  .project-row-title { font-size: 16px; }
  .project-row-meta  { font-size: 10px; }
  .project-row-desc  { display: none; }
  .project-row-arrow { display: none; }
  .bts-track-wrapper { padding: 0 20px; }
  .bts-card  { width: 180px; }
  .bts-thumb { width: 180px; height: 320px; }
  .bts-client { font-size: 9px; }
  .bts-name   { font-size: 12px; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; }
  .contact-left   { padding: calc(var(--nav-h) + 40px) 20px 40px; min-height: auto; gap: 32px; }
  .contact-right  { padding: 40px 20px; }
  .contact-left h1 { font-size: clamp(38px, 9vw, 60px); }
  .contact-form-title h2 { font-size: clamp(24px, 7vw, 34px); }
  .contact-next-label { font-size: 9px; }
  .contact-next-num   { font-size: 11px; }
  .contact-next-text  { font-size: 11px; line-height: 1.55; }
  .contact-detail-label { font-size: 9px; }
  .contact-detail-value { font-size: 13px; }
  .contact-next-track   { gap: 12px; }
  .form-row { grid-template-columns: 1fr; }

  /* Final CTA */
  .final-cta         { padding: 48px 20px; }
  .final-cta-h       { font-size: clamp(30px, 9vw, 46px); line-height: 0.93; }
  .final-cta-sub     { font-size: 12px; margin-top: 14px; }
  .final-cta-actions { flex-direction: column; align-items: center; gap: 12px; }
  .final-cta-actions .btn { width: 100%; justify-content: center; }

  /* Buttons */
  .btn-primary, .btn-ghost { padding: 13px 28px; font-size: 10px; }
  .btn-submit    { padding: 15px; font-size: 10px; }
  .btn-whatsapp  { padding: 11px 18px; font-size: 10px; }

  /* Footer */
  .site-footer   { display: flex !important; flex-direction: column !important; align-items: center !important; gap: 12px !important; padding: 24px 20px !important; }
  .footer-left   { display: none !important; }
  .footer-center .footer-nav { display: none !important; }
  .footer-right  { order: 2 !important; justify-content: center !important; gap: 14px; }
  .footer-right i { font-size: 22px; }
  .footer-copy   { font-size: 10px; }

  /* Mobile nav */
  .mobile-nav-links a { font-size: clamp(30px, 8.5vw, 46px); line-height: 1.15; }
  .mobile-nav-links   { gap: 4px; }
  .mobile-nav-links .mobile-nav-cta { padding: 12px 28px; font-size: 11px; margin-top: 12px; }
  .mobile-nav-footer a { font-size: 16px; }

  /* Logo marquee */
  .logo-track a {
  width: 110px;
  height: 70px;
}

.logo-track img {
  max-width: 170%;
  max-height: 170%;
}

.logo-track .logo-lg {
  transform: scale(1.5);
}
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 20px 16px; }
  .stat-item:first-child,
  .stat-item:last-child { padding-left: 16px; padding-right: 16px; }
}

@media (max-width: 400px) {
  .hero-h1          { font-size: clamp(28px, 11vw, 38px); }
  .section-heading  { font-size: clamp(24px, 9.5vw, 34px); }
  .final-cta-h      { font-size: clamp(26px, 10vw, 36px); }
  .stat-num         { font-size: 26px; }
  .stat-label       { font-size: 8px; }
  .process-track    { grid-template-columns: 1fr; gap: 14px; }
  .fleet-media-grid { grid-template-columns: 1fr; }
  .fleet-video-col  { height: 160px; }
  .service-card     { padding: 24px 16px 20px; }
  .audience-card    { padding: 28px 16px; }
  .pillar-card      { padding: 28px 16px; }
  .mobile-nav-links a { font-size: clamp(26px, 9vw, 38px); }
}

@media (min-width: 769px) {
  #loader-mobile { display: none !important; }
}
