@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Syne:wght@600;700;800&display=swap');

:root {
  --ink: #050912;
  --ink-soft: #091221;
  --panel: rgba(12, 24, 43, 0.72);
  --panel-solid: #0d192b;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f7f9ff;
  --muted: #9facbf;
  --gold: #f6bd42;
  --gold-2: #ffe08a;
  --cyan: #52e5ff;
  --blue: #587bff;
  --violet: #9d6dff;
  --success: #61f0a8;
  --danger: #ff6b7a;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--gold) var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at var(--mx, 78%) var(--my, 8%), rgba(82, 229, 255, .1), transparent 24rem),
    radial-gradient(circle at 8% 30%, rgba(157, 109, 255, .08), transparent 26rem),
    var(--ink);
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  opacity: 0;
  animation: page-in .55s ease forwards;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: .025;
  background-image: repeating-radial-gradient(circle at 0 0, rgba(255,255,255,.9) 0 1px, transparent 1px 4px);
  background-size: 5px 5px;
}

@keyframes page-in { to { opacity: 1; } }

::selection { color: var(--ink); background: var(--gold); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

:focus-visible {
  outline: 3px solid rgba(82, 229, 255, .82);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: var(--container); margin-inline: auto; }
.section { position: relative; padding: 112px 0; }
.section-tight { padding: 72px 0; }
.surface { background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.008)); border-block: 1px solid var(--line); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--gold-2);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; box-shadow: 0 0 12px currentColor; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { font-family: 'Syne', 'Manrope', sans-serif; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(3.25rem, 7.8vw, 7.25rem); }
h2 { font-size: clamp(2.35rem, 4.4vw, 4.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); }
p { color: var(--muted); }

.gradient-text {
  color: transparent;
  background: linear-gradient(105deg, var(--gold-2), var(--gold) 42%, #fff1b5 60%, var(--gold));
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  animation: gold-flow 6s linear infinite;
}
@keyframes gold-flow { to { background-position: 200% center; } }

.section-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: 40px; align-items: end; margin-bottom: 54px; }
.section-heading h2 { margin-bottom: 0; max-width: 850px; }
.section-heading p { margin: 0; max-width: 560px; justify-self: end; }
.center-heading { max-width: 760px; margin: 0 auto 54px; text-align: center; }
.center-heading .eyebrow::after { content: ''; width: 28px; height: 1px; background: currentColor; box-shadow: 0 0 12px currentColor; }
.center-heading h2 { margin-bottom: 20px; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 16px 0;
  transition: padding .3s ease, background .3s ease, border .3s ease;
}
.site-header.scrolled {
  padding: 8px 0;
  background: rgba(5, 9, 18, .82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px) saturate(150%);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 62px; height: 50px; object-fit: contain; filter: drop-shadow(0 0 15px rgba(246,189,66,.22)); }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: 'Syne', sans-serif; font-size: .94rem; letter-spacing: .08em; }
.brand-copy small { margin-top: 5px; color: var(--gold); font-size: .61rem; letter-spacing: .28em; }

.main-nav { display: flex; align-items: center; gap: 5px; }
.main-nav > a {
  position: relative;
  padding: 10px 13px;
  color: #c5cfde;
  font-size: .84rem;
  font-weight: 700;
  border-radius: 11px;
  transition: color .2s ease, background .2s ease;
}
.main-nav > a:hover, .main-nav > a[aria-current='page'] { color: #fff; background: rgba(255,255,255,.06); }
.main-nav > a[aria-current='page']::after {
  content: '';
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 4px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  box-shadow: 0 0 10px rgba(82,229,255,.55);
}

.header-actions { display: flex; align-items: center; gap: 10px; }
.call-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border: 1px solid rgba(246,189,66,.25);
  background: rgba(246,189,66,.07);
  border-radius: 999px;
  color: var(--gold-2);
  font-size: .78rem;
  font-weight: 800;
}
.call-chip i { font-size: 1rem; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: 13px;
  cursor: pointer;
}
.nav-toggle i { font-size: 1.35rem; }

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 23px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 800;
  font-size: .91rem;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 25%, rgba(255,255,255,.38), transparent 70%);
  transform: translateX(-120%);
  transition: transform .6s ease;
}
.button:hover::before { transform: translateX(120%); }
.button:hover { transform: translateY(-3px); }
.button-primary { color: #1b1302; background: linear-gradient(135deg, var(--gold-2), var(--gold)); box-shadow: 0 14px 40px rgba(246,189,66,.2); }
.button-primary:hover { box-shadow: 0 20px 55px rgba(246,189,66,.32); }
.button-secondary { color: #fff; background: rgba(255,255,255,.055); border-color: var(--line); backdrop-filter: blur(10px); }
.button-secondary:hover { border-color: rgba(82,229,255,.42); box-shadow: 0 16px 40px rgba(82,229,255,.1); }
.button-small { min-height: 45px; padding-inline: 18px; border-radius: 13px; font-size: .82rem; }

.hero {
  position: relative;
  min-height: 850px;
  display: grid;
  align-items: center;
  padding: 150px 0 76px;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5,9,18,.98) 2%, rgba(5,9,18,.84) 46%, rgba(5,9,18,.18) 78%),
    radial-gradient(circle at 76% 44%, rgba(52,108,255,.26), transparent 30%),
    linear-gradient(180deg, transparent 64%, var(--ink));
}
.hero::after {
  content: '';
  position: absolute;
  right: -16vw;
  bottom: 1%;
  width: 74vw;
  height: 46vw;
  z-index: -1;
  background: radial-gradient(ellipse, rgba(82,229,255,.16), transparent 62%);
  filter: blur(18px);
}
.hero-layout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(430px, .92fr); align-items: center; gap: 0; }
.hero-copy { position: relative; z-index: 5; }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px 13px;
  color: #cdd6e5;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}
.pulse { width: 8px; height: 8px; background: var(--success); border-radius: 50%; box-shadow: 0 0 0 0 rgba(97,240,168,.65); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(97,240,168,0); } }
.hero h1 { max-width: 830px; margin-bottom: 25px; font-size: clamp(3.5rem, 7.6vw, 7.1rem); }
.hero h1 span { display: block; }
.hero-copy > p { max-width: 650px; color: #b7c2d2; font-size: clamp(1rem, 1.5vw, 1.17rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 35px; }
.mini-proof { display: flex; align-items: center; flex-wrap: wrap; gap: 19px; margin-top: 35px; color: #c6cfdb; font-size: .78rem; font-weight: 700; }
.mini-proof span { display: inline-flex; align-items: center; gap: 8px; }
.mini-proof i { color: var(--cyan); }

.truck-stage { position: relative; min-height: 520px; perspective: 1400px; overflow: visible; }
.truck-orbit {
  position: absolute;
  inset: 4% -16% 4% -12%;
  border: 1px solid rgba(82,229,255,.17);
  border-radius: 50%;
  transform: rotateX(69deg) rotateZ(-10deg);
  box-shadow: inset 0 0 60px rgba(82,229,255,.08), 0 0 50px rgba(82,229,255,.05);
}
.truck-orbit::before, .truck-orbit::after { content: ''; position: absolute; inset: 10%; border: 1px dashed rgba(246,189,66,.24); border-radius: inherit; }
.truck-orbit::after { inset: 25%; border-style: solid; border-color: rgba(157,109,255,.16); }
.hero-truck {
  position: absolute;
  z-index: 3;
  width: 171.5%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  max-width: 1130px;
  right: -40%;
  bottom: 14%;
  filter: drop-shadow(0 35px 40px rgba(0,0,0,.55)) drop-shadow(0 0 24px rgba(82,229,255,.13));
  transform: translate3d(var(--truck-x, 0), var(--truck-y, 0), 0) rotateY(-3deg);
  transition: transform .16s ease-out;
  animation: truck-float 5.5s ease-in-out infinite;
}
@keyframes truck-float { 50% { margin-bottom: 12px; } }
.metric-float {
  position: absolute;
  z-index: 5;
  left: -3%;
  bottom: 10%;
  padding: 13px 18px;
  color: #dfe7f2;
  background: rgba(8,17,31,.72);
  border: 1px solid rgba(246,189,66,.22);
  border-radius: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  font-size: .74rem;
}
.metric-float strong { display: block; color: var(--gold-2); font-family: 'Syne'; font-size: 1.5rem; }

.trust-strip { position: relative; z-index: 8; margin-top: -16px; }
.trust-panel {
  display: grid;
  grid-template-columns: .9fr 3.1fr;
  align-items: center;
  min-height: 106px;
  padding: 18px 24px;
  background: rgba(8,17,31,.76);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.trust-label { padding-right: 24px; color: var(--muted); font-size: .73rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; border-right: 1px solid var(--line); }
.logo-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent); }
.logo-track { display: flex; width: max-content; align-items: center; gap: 54px; padding-left: 36px; animation: marquee 25s linear infinite; }
.logo-track img { width: 104px; height: 52px; object-fit: contain; filter: grayscale(1) brightness(1.8); opacity: .72; transition: filter .28s ease, opacity .28s ease, transform .28s ease; }
.logo-track img.reference-wide { width: 150px; }
.logo-track img:hover { filter: none; opacity: 1; transform: scale(1.06); }
@keyframes marquee { to { transform: translateX(-50%); } }

.grid-4, .grid-3, .grid-2 { display: grid; gap: 20px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.glass-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.018));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 55px rgba(0,0,0,.17);
  backdrop-filter: blur(14px);
}
.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(320px circle at var(--card-x, 50%) var(--card-y, 50%), rgba(82,229,255,.1), transparent 55%);
  opacity: 0;
  transition: opacity .25s ease;
}
.glass-card:hover::before { opacity: 1; }
.tilt { transform-style: preserve-3d; transition: transform .18s ease, border-color .3s ease, box-shadow .3s ease; }
.tilt:hover { border-color: rgba(82,229,255,.25); box-shadow: 0 28px 70px rgba(0,0,0,.32); }
.tilt > * { transform: translateZ(18px); }

.icon-box {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  margin-bottom: 42px;
  color: var(--gold);
  background: linear-gradient(145deg, rgba(246,189,66,.16), rgba(82,229,255,.07));
  border: 1px solid rgba(246,189,66,.25);
  border-radius: 16px;
  box-shadow: inset 0 1px rgba(255,255,255,.13), 0 14px 34px rgba(246,189,66,.08);
  font-size: 1.35rem;
}
.service-card { min-height: 320px; display: flex; flex-direction: column; }
.service-card h3 { margin-bottom: 16px; }
.service-card p { font-size: .91rem; }
.service-card .text-link { margin-top: auto; }
.card-index { position: absolute; top: 28px; right: 28px; color: rgba(255,255,255,.15); font-family: 'Syne'; font-size: .8rem; font-weight: 800; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-size: .83rem; font-weight: 800; }
.text-link i { color: var(--cyan); transition: transform .2s ease; }
.text-link:hover i { transform: translateX(5px); }

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 5px;
  background: linear-gradient(115deg, rgba(246,189,66,.14), rgba(82,229,255,.09), rgba(157,109,255,.1));
  border: 1px solid var(--line);
  border-radius: 26px;
}
.stat { padding: 28px 24px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; color: var(--gold-2); font-family: 'Syne'; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1; }
.stat span { color: var(--muted); font-size: .75rem; font-weight: 700; }

.split-panel { display: grid; grid-template-columns: .92fr 1.08fr; gap: 58px; align-items: center; }
.media-stack { position: relative; min-height: 540px; }
.media-stack .main-image { width: 82%; height: 470px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.media-stack .accent-image { position: absolute; right: 0; bottom: 0; width: 49%; height: 255px; object-fit: cover; border: 8px solid var(--ink); border-radius: 28px; box-shadow: var(--shadow); }
.experience-chip { position: absolute; right: 4%; top: 8%; width: 150px; aspect-ratio: 1; display: grid; place-content: center; text-align: center; background: linear-gradient(145deg, var(--gold-2), var(--gold)); color: #1a1202; border-radius: 50%; box-shadow: 0 20px 50px rgba(246,189,66,.24); transform: rotate(8deg); }
.experience-chip strong { display: block; font-family: 'Syne'; font-size: 2.4rem; line-height: 1; }
.experience-chip span { font-size: .67rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.check-list { display: grid; gap: 14px; margin: 28px 0 34px; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; color: #dbe3ee; font-size: .9rem; }
.check-list i { color: var(--success); }

.process-line { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-line::before { content: ''; position: absolute; z-index: -1; top: 35px; left: 9%; right: 9%; height: 1px; background: linear-gradient(90deg, var(--gold), var(--cyan), var(--violet)); }
.process-step { padding: 0 12px; text-align: center; }
.step-number { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 25px; color: var(--ink); background: linear-gradient(145deg, #fff0b0, var(--gold)); border: 8px solid var(--ink); border-radius: 50%; box-shadow: 0 0 0 1px rgba(246,189,66,.28), 0 0 30px rgba(246,189,66,.14); font-family: 'Syne'; font-weight: 800; }
.process-step h3 { font-size: 1.06rem; }
.process-step p { font-size: .83rem; }

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  align-items: center;
  gap: 30px;
  min-height: 360px;
  padding: clamp(34px, 6vw, 74px);
  background:
    radial-gradient(circle at 90% 15%, rgba(82,229,255,.2), transparent 28%),
    radial-gradient(circle at 10% 100%, rgba(157,109,255,.17), transparent 30%),
    linear-gradient(125deg, #101f38, #09111e 60%);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 36px;
  box-shadow: var(--shadow);
}
.cta-panel::after { content: ''; position: absolute; right: -80px; bottom: -165px; width: 420px; height: 420px; border: 1px solid rgba(246,189,66,.2); border-radius: 50%; box-shadow: 0 0 0 45px rgba(246,189,66,.025), 0 0 0 90px rgba(82,229,255,.02); }
.cta-panel h2 { max-width: 750px; margin-bottom: 17px; }
.cta-panel p { max-width: 650px; margin-bottom: 0; }
.cta-actions { position: relative; z-index: 3; display: grid; gap: 12px; }

.page-hero { position: relative; min-height: 570px; display: flex; align-items: end; padding: 170px 0 82px; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero::before { content: ''; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(5,9,18,.97), rgba(5,9,18,.74) 58%, rgba(5,9,18,.35)), var(--page-bg, none) center/cover; }
.page-hero::after { content: ''; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 76% 36%, rgba(82,229,255,.18), transparent 26%), linear-gradient(180deg, transparent 50%, var(--ink)); }
.page-hero h1 { max-width: 980px; margin-bottom: 20px; font-size: clamp(3rem, 7vw, 6.4rem); }
.page-hero p { max-width: 700px; color: #bdc8d8; font-size: 1.08rem; }
.breadcrumb { display: flex; gap: 9px; align-items: center; margin-bottom: 24px; color: #9eabba; font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumb a { color: var(--gold); }

.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: start; }
.sticky-copy { position: sticky; top: 120px; }
.timeline { position: relative; display: grid; gap: 18px; }
.timeline::before { content: ''; position: absolute; left: 25px; top: 20px; bottom: 20px; width: 1px; background: linear-gradient(var(--gold), var(--cyan), var(--violet)); }
.timeline-item { position: relative; display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 25px; background: rgba(255,255,255,.03); border: 1px solid var(--line); border-radius: 20px; }
.timeline-item .dot { position: relative; z-index: 2; width: 14px; height: 14px; margin: 8px auto 0; background: var(--gold); border: 3px solid var(--ink); border-radius: 50%; box-shadow: 0 0 0 3px rgba(246,189,66,.25), 0 0 20px rgba(246,189,66,.4); }
.timeline-item time { display: block; margin-bottom: 8px; color: var(--cyan); font-size: .72rem; font-weight: 800; letter-spacing: .08em; }
.timeline-item h3 { margin-bottom: 10px; font-size: 1.15rem; }
.timeline-item p { margin: 0; font-size: .85rem; }

.values-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-auto-rows: minmax(240px, auto); gap: 18px; }
.value-card { display: flex; flex-direction: column; justify-content: flex-end; }
.value-card:first-child { grid-row: span 2; background: linear-gradient(150deg, rgba(246,189,66,.18), rgba(255,255,255,.025)); }
.value-card:first-child .icon-box { width: 74px; height: 74px; font-size: 1.8rem; }
.value-card p { margin-bottom: 0; font-size: .87rem; }

.service-detail { display: grid; grid-template-columns: .82fr 1.18fr; gap: 32px; align-items: stretch; }
.service-detail + .service-detail { margin-top: 26px; }
.service-detail:nth-child(even) { grid-template-columns: 1.18fr .82fr; }
.service-detail:nth-child(even) .service-visual { order: 2; }
.service-visual { min-height: 410px; overflow: hidden; border-radius: 28px; }
.service-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.service-detail:hover .service-visual img { transform: scale(1.05); }
.service-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px, 5vw, 62px); background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.015)); border: 1px solid var(--line); border-radius: 28px; }
.service-copy .number { display: inline-block; margin-bottom: 28px; color: var(--gold); font-family: 'Syne'; font-size: .82rem; font-weight: 800; }
.service-copy h2 { margin-bottom: 20px; font-size: clamp(2rem, 4vw, 3.45rem); }
.service-copy p { max-width: 650px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.service-tags span { padding: 7px 11px; color: #d5deeb; background: rgba(82,229,255,.07); border: 1px solid rgba(82,229,255,.14); border-radius: 999px; font-size: .7rem; font-weight: 700; }

.fleet-console { display: grid; grid-template-columns: 280px 1fr; min-height: 600px; overflow: hidden; background: rgba(8,17,31,.65); border: 1px solid var(--line); border-radius: 30px; box-shadow: var(--shadow); }
.fleet-tabs { display: flex; flex-direction: column; gap: 7px; padding: 24px; background: rgba(255,255,255,.025); border-right: 1px solid var(--line); }
.fleet-tabs small { margin-bottom: 18px; color: var(--muted); font-size: .65rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.fleet-tab { display: flex; align-items: center; gap: 12px; width: 100%; padding: 15px; color: #9fabbc; text-align: left; background: transparent; border: 1px solid transparent; border-radius: 14px; font-weight: 750; cursor: pointer; transition: .2s ease; }
.fleet-tab i { color: var(--gold); font-size: 1.08rem; }
.fleet-tab:hover, .fleet-tab.active { color: #fff; background: rgba(255,255,255,.05); border-color: var(--line); }
.fleet-view { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; min-height: 600px; padding: clamp(30px, 5vw, 65px); }
.fleet-view::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 74% 40%, rgba(82,229,255,.14), transparent 33%); }
.fleet-copy { position: relative; z-index: 3; }
.fleet-copy .capacity { display: inline-flex; margin-bottom: 22px; padding: 7px 11px; color: var(--success); background: rgba(97,240,168,.08); border: 1px solid rgba(97,240,168,.2); border-radius: 999px; font-size: .7rem; font-weight: 800; }
.fleet-copy h2 { font-size: clamp(2.5rem, 5vw, 4.8rem); }
.fleet-image { position: relative; z-index: 2; transform: scale(1.22) translateX(4%); filter: drop-shadow(0 30px 30px rgba(0,0,0,.5)); }
.specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 28px; }
.spec { padding: 13px; background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 13px; }
.spec strong { display: block; color: #fff; font-family: 'Syne'; font-size: .84rem; }
.spec span { color: var(--muted); font-size: .65rem; }

.gallery-controls { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.filter-button { padding: 10px 16px; color: #aab6c6; background: rgba(255,255,255,.035); border: 1px solid var(--line); border-radius: 999px; font-size: .77rem; font-weight: 800; cursor: pointer; transition: .2s ease; }
.filter-button:hover, .filter-button.active { color: #171003; background: var(--gold); border-color: var(--gold); }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 120px; gap: 16px; }
.gallery-item { position: relative; grid-column: span 4; grid-row: span 3; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; cursor: zoom-in; transition: opacity .3s ease, transform .3s ease; }
.gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 8; }
.gallery-item:nth-child(3), .gallery-item:nth-child(7) { grid-row: span 4; }
.gallery-item.hidden { display: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease, filter .4s ease; }
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1.12); }
.gallery-item--empty { cursor: default; background: linear-gradient(145deg, rgba(82,229,255,.055), rgba(246,189,66,.035)), #091321; }
.gallery-item--empty::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px); background-size: 28px 28px; mask-image: linear-gradient(to bottom, black, transparent 72%); }
.gallery-empty { position: absolute; inset: 0 0 68px; display: grid; place-content: center; gap: 5px; color: #8795a8; text-align: center; }
.gallery-empty i { margin-bottom: 5px; color: rgba(246,189,66,.55); font-size: 2rem; }
.gallery-empty span { color: #b9c4d2; font-family: 'Syne'; font-size: .82rem; font-weight: 700; }
.gallery-empty small { font-size: .68rem; }
.gallery-caption { position: absolute; inset: auto 0 0; display: flex; align-items: end; justify-content: space-between; gap: 20px; padding: 50px 20px 18px; background: linear-gradient(transparent, rgba(5,9,18,.9)); transform: translateY(18px); opacity: 0; transition: .3s ease; }
.gallery-item:hover .gallery-caption { transform: translateY(0); opacity: 1; }
.gallery-item--empty .gallery-caption { opacity: 1; transform: none; background: linear-gradient(transparent, rgba(5,9,18,.72)); }
.gallery-caption strong { font-family: 'Syne'; }
.gallery-caption small { display: block; color: var(--gold-2); }
.gallery-caption i { width: 42px; height: 42px; display: grid; place-items: center; flex-shrink: 0; background: rgba(255,255,255,.1); border-radius: 50%; }

.lightbox { position: fixed; inset: 0; z-index: 1200; display: none; place-items: center; padding: 32px; background: rgba(1,5,11,.9); backdrop-filter: blur(18px); }
.lightbox.open { display: grid; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 82vh; border-radius: 22px; box-shadow: var(--shadow); }
.lightbox-close { position: absolute; top: 24px; right: 24px; width: 50px; height: 50px; color: white; background: rgba(255,255,255,.08); border: 1px solid var(--line); border-radius: 50%; font-size: 1.25rem; cursor: pointer; }

.contact-layout { display: grid; grid-template-columns: .76fr 1.24fr; gap: 22px; align-items: start; }
.contact-stack { display: grid; gap: 14px; }
.contact-card { display: flex; gap: 18px; align-items: center; padding: 21px; background: rgba(255,255,255,.035); border: 1px solid var(--line); border-radius: 19px; transition: .25s ease; }
.contact-card:hover { transform: translateX(5px); border-color: rgba(246,189,66,.25); }
.contact-card i { width: 48px; height: 48px; display: grid; place-items: center; flex-shrink: 0; color: var(--gold); background: rgba(246,189,66,.1); border-radius: 14px; font-size: 1.15rem; }
.contact-card > span { display: block; color: inherit; font-size: inherit; font-weight: inherit; letter-spacing: 0; text-transform: none; }
.contact-card > span > span { display: block; color: var(--muted); font-size: .69rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-card strong { font-size: .87rem; }
.contact-form { padding: clamp(26px, 5vw, 52px); background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.018)); border: 1px solid var(--line); border-radius: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #dbe3ef; font-size: .76rem; font-weight: 800; }
.field input, .field textarea, .field select { width: 100%; color: white; background: rgba(3,8,16,.48); border: 1px solid rgba(255,255,255,.11); border-radius: 13px; padding: 14px 15px; outline: none; transition: border .2s ease, box-shadow .2s ease; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: rgba(82,229,255,.5); box-shadow: 0 0 0 4px rgba(82,229,255,.07); }
.field textarea { min-height: 140px; resize: vertical; }
.field select option { color: #101827; }
.form-note { margin: 16px 0 0; font-size: .7rem; }

.map-panel { position: relative; min-height: 400px; overflow: hidden; background: linear-gradient(135deg, #0f2039, #08111f); border: 1px solid var(--line); border-radius: 28px; }
.map-panel::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(82,229,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(82,229,255,.08) 1px, transparent 1px); background-size: 44px 44px; transform: perspective(500px) rotateX(56deg) scale(1.5); transform-origin: center bottom; }
.map-route { position: absolute; left: 14%; right: 14%; top: 50%; height: 3px; background: linear-gradient(90deg, var(--gold), var(--cyan)); box-shadow: 0 0 25px rgba(82,229,255,.5); transform: rotate(-8deg); }
.map-route::before, .map-route::after { content: ''; position: absolute; top: 50%; width: 18px; height: 18px; background: var(--gold); border: 5px solid var(--ink-soft); border-radius: 50%; transform: translateY(-50%); box-shadow: 0 0 0 4px rgba(246,189,66,.2); }
.map-route::after { right: 0; background: var(--cyan); box-shadow: 0 0 0 4px rgba(82,229,255,.2); }
.map-info { position: absolute; z-index: 3; left: 50%; bottom: 40px; width: min(420px, calc(100% - 40px)); padding: 20px; background: rgba(5,9,18,.75); border: 1px solid var(--line); border-radius: 18px; text-align: center; transform: translateX(-50%); backdrop-filter: blur(14px); }
.map-info h3 { margin-bottom: 7px; font-size: 1.1rem; }
.map-info p { margin-bottom: 0; font-size: .78rem; }

.faq-list { max-width: 900px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; padding: 25px 0; text-align: left; background: none; border: 0; font-family: 'Syne'; font-size: 1rem; font-weight: 700; cursor: pointer; }
.faq-question i { color: var(--gold); transition: transform .25s ease; }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer p { padding: 0 45px 25px 0; margin: 0; font-size: .9rem; }

.site-footer { position: relative; padding: 80px 0 28px; border-top: 1px solid var(--line); background: rgba(3,7,14,.55); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .65fr .65fr 1.1fr; gap: 45px; padding-bottom: 55px; }
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand p { max-width: 360px; font-size: .84rem; }
.footer-title { margin-bottom: 20px; color: white; font-family: 'Syne'; font-size: .88rem; }
.footer-links { display: grid; gap: 11px; }
.footer-links a { color: var(--muted); font-size: .81rem; transition: color .2s ease, transform .2s ease; }
.footer-links a:hover { color: var(--gold-2); transform: translateX(4px); }
.footer-contact { display: grid; gap: 13px; }
.footer-contact a, .footer-contact address { display: flex; gap: 10px; color: var(--muted); font-size: .8rem; font-style: normal; }
.footer-contact i { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; color: #6f7c8e; border-top: 1px solid var(--line); font-size: .72rem; }
.designer-credit a { color: var(--gold-2); font-weight: 800; transition: color .2s ease; }
.designer-credit a:hover { color: var(--cyan); }
.socials { display: flex; gap: 8px; margin-top: 20px; }
.socials a { width: 38px; height: 38px; display: grid; place-items: center; color: #cdd6e4; background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 11px; transition: .2s ease; }
.socials a:hover { color: var(--ink); background: var(--gold); transform: translateY(-3px); }

.floating-contact { position: fixed; right: 20px; bottom: 20px; z-index: 850; display: flex; align-items: center; gap: 10px; padding: 12px 17px; color: #062314; background: var(--success); border-radius: 999px; box-shadow: 0 18px 45px rgba(97,240,168,.22); font-size: .79rem; font-weight: 900; transition: .25s ease; }
.floating-contact:hover { transform: translateY(-4px) scale(1.02); }
.to-top { position: fixed; right: 24px; bottom: 82px; z-index: 840; width: 42px; height: 42px; display: grid; place-items: center; color: white; background: rgba(12,24,43,.85); border: 1px solid var(--line); border-radius: 13px; opacity: 0; pointer-events: none; transform: translateY(10px); transition: .25s ease; }
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .main-nav { position: fixed; top: 78px; left: 20px; right: 20px; display: none; padding: 14px; background: rgba(5,9,18,.96); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); backdrop-filter: blur(20px); }
  .main-nav.open { display: grid; }
  .main-nav > a { padding: 13px; }
  .nav-toggle { display: grid; place-items: center; }
  .call-chip { display: none; }
  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr); }
  .hero-copy { padding-top: 30px; }
  .truck-stage { min-height: 470px; }
  .hero-truck { width: 167.5%; max-width: 1021px; right: -37%; bottom: 15%; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr .7fr .7fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
  .fleet-view { grid-template-columns: 1fr; }
  .fleet-image { position: absolute; right: -7%; bottom: -3%; width: 62%; opacity: .38; }
  .fleet-copy { max-width: 630px; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 28px, 680px); }
  .section { padding: 82px 0; }
  .section-heading, .split-panel, .story-grid, .contact-layout, .cta-panel { grid-template-columns: 1fr; }
  .section-heading p { justify-self: start; }
  .hero { padding-top: 130px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 5.5rem); }
  .hero-layout { grid-template-columns: 1fr; }
  .truck-stage { min-height: 590px; overflow: hidden; }
  .hero-truck { width: 156.5%; max-width: 1021px; right: -28%; bottom: 8%; }
  .metric-float { left: 0; bottom: 2%; }
  .trust-panel { grid-template-columns: 1fr; }
  .trust-label { padding: 0 0 14px; border-right: 0; border-bottom: 1px solid var(--line); }
  .logo-track { padding-top: 18px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .process-line { grid-template-columns: 1fr 1fr; gap: 35px 14px; }
  .process-line::before { display: none; }
  .cta-actions { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .sticky-copy { position: static; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .value-card:first-child { grid-column: 1 / -1; grid-row: auto; }
  .service-detail, .service-detail:nth-child(even) { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-visual { order: 0; }
  .fleet-console { grid-template-columns: 1fr; }
  .fleet-tabs { flex-direction: row; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .fleet-tabs small { display: none; }
  .fleet-tab { width: auto; min-width: max-content; }
  .gallery-grid { grid-auto-rows: 105px; }
  .gallery-item, .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 6; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .brand-copy { display: none; }
  .brand img { width: 52px; height: 44px; }
  .header-actions .button { display: none; }
  .hero { min-height: auto; }
  .hero-actions .button { width: 100%; }
  .truck-stage { min-height: 330px; }
  .hero-truck { width: 167.5%; right: -34%; bottom: 8%; }
  .metric-float { display: none; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .media-stack { min-height: 430px; }
  .media-stack .main-image { width: 92%; height: 390px; }
  .media-stack .accent-image { height: 180px; }
  .experience-chip { width: 115px; }
  .experience-chip strong { font-size: 1.9rem; }
  .process-line { grid-template-columns: 1fr; }
  .cta-actions { grid-template-columns: 1fr; }
  .page-hero { min-height: 510px; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card:first-child { grid-column: auto; }
  .fleet-view { min-height: 660px; align-items: start; }
  .fleet-image { width: 100%; right: -18%; bottom: 4%; }
  .specs { grid-template-columns: 1fr; }
  .gallery-grid { display: grid; grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .gallery-item, .gallery-item:nth-child(1), .gallery-item:nth-child(3), .gallery-item:nth-child(6), .gallery-item:nth-child(7) { grid-column: auto; grid-row: auto; }
  .gallery-caption { opacity: 1; transform: none; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-grid > :last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .floating-contact span { display: none; }
  .floating-contact { width: 52px; height: 52px; justify-content: center; padding: 0; }
}

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