/* ============================================================
   Zenda Logistics — design system
   Primary   #FF7513 (orange)
   Secondary #0468E3 (blue)
   Ink       #0A1633 (logo navy)
   ============================================================ */

:root {
  --orange: #FF7513;
  --orange-bright: #FF8A3D;
  --orange-dark: #DB5F04;
  --orange-soft: rgba(255, 117, 19, 0.13);
  --blue: #0468E3;
  --blue-bright: #3E8DF0;
  --blue-dark: #0353B8;
  --blue-soft: rgba(4, 104, 227, 0.12);
  --ink: #0A1633;
  --ink-deep: #060F26;
  --ink-mid: #10214A;
  --muted: #556182;
  --line: #E4E9F5;
  --bg: #F6F9FE;
  --white: #ffffff;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 18px 45px rgba(10, 22, 51, 0.10);
  --shadow-sm: 0 8px 22px rgba(10, 22, 51, 0.08);
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --header-h: 78px;
  --spring: cubic-bezier(.22, 1.2, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.zl-container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

/* ---------- scroll progress ---------- */
.zl-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  transform-origin: left;
  transform: scaleX(0);
  z-index: 200;
  pointer-events: none;
}

/* ---------- buttons ---------- */
.zl-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  border: 2px solid transparent;
  overflow: hidden;
  transition: transform .3s var(--spring), box-shadow .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
  white-space: nowrap;
}
.zl-btn::before {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-22deg);
  transition: left .55s ease;
}
.zl-btn:hover::before { left: 130%; }
.zl-btn:hover { transform: translateY(-3px) scale(1.02); }
.zl-btn:active { transform: translateY(0) scale(.99); }

.zl-btn-accent {
  background: linear-gradient(135deg, var(--orange-bright), var(--orange) 55%, #F26100);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(255, 117, 19, 0.40);
}
.zl-btn-accent:hover { box-shadow: 0 16px 34px rgba(255, 117, 19, 0.50); }

.zl-btn-navy {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue) 60%);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(4, 104, 227, 0.30);
}
.zl-btn-navy:hover { box-shadow: 0 16px 34px rgba(4, 104, 227, 0.42); }

.zl-btn-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.zl-btn-ghost:hover { border-color: var(--orange); color: var(--orange-bright); }

.zl-btn-outline {
  border-color: var(--blue);
  color: var(--blue);
}
.zl-btn-outline:hover { background: var(--blue); color: var(--white); }

/* ---------- header ---------- */
.zl-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(10, 22, 51, 0.06);
  transition: box-shadow .35s ease, background .35s ease;
}
.zl-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(10, 22, 51, 0.10);
}

.zl-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1240px, 94vw);
}

.zl-brand { display: inline-flex; align-items: center; }
.zl-brand-logo {
  height: 46px;
  width: auto;
  transition: transform .35s var(--spring);
}
.zl-brand:hover .zl-brand-logo { transform: scale(1.05); }

.zl-nav { display: flex; align-items: center; gap: 26px; }
.zl-nav-link {
  color: var(--ink-mid);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 6px 0;
  transition: color .25s ease;
}
.zl-nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2.5px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--spring);
}
.zl-nav-link:hover { color: var(--orange); }
.zl-nav-link:hover::after, .zl-nav-link.is-active::after { transform: scaleX(1); }
.zl-nav-link.is-active { color: var(--orange); }
.zl-nav-cta { padding: 11px 22px; font-size: 14.5px; }

.zl-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
}
.zl-burger span {
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.zl-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.zl-burger.is-open span:nth-child(2) { opacity: 0; }
.zl-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero (home, full-bleed live map) ---------- */
.zl-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 50px) 0 130px;
  background: #EFF2F6;
  overflow: hidden;
}

.zl-hero-map {
  position: absolute;
  inset: -24px;
  will-change: transform;
  transition: transform .4s ease-out;
}
.zl-hero-map svg { width: 100%; height: 100%; }
.zl-hero-map .zl-route-path {
  stroke-dasharray: 14 11;
  animation: zl-dash 1.2s linear infinite;
}

.zl-hero-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(246,249,254,.97) 0%, rgba(246,249,254,.92) 30%, rgba(246,249,254,.55) 52%, rgba(246,249,254,0) 74%),
    linear-gradient(180deg, rgba(246,249,254,.5) 0%, transparent 20%, transparent 80%, rgba(246,249,254,.6) 100%);
}

.zl-hero-inner { position: relative; z-index: 2; }
.zl-hero-copy { max-width: 660px; }

.zl-hero h1 {
  color: var(--ink);
  font-size: clamp(38px, 4.6vw, 62px);
  font-weight: 800;
  margin: 18px 0 22px;
}
.zl-hero h1 .zl-accent {
  position: relative;
  white-space: nowrap;
  background: linear-gradient(90deg, var(--orange-bright), var(--orange), #FFB37A, var(--orange));
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: zl-shimmer 5s linear infinite;
}
.zl-hero h1 .zl-accent svg {
  position: absolute;
  left: 0; bottom: -10px;
  width: 100%;
}
.zl-hero h1 .zl-accent svg path {
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: zl-draw 1.2s ease-out .8s forwards;
}

.zl-hero-sub {
  color: var(--muted);
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 34px;
}

.zl-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.zl-hero-badges { display: flex; gap: 14px; flex-wrap: wrap; }

.zl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-dark);
  background: var(--orange-soft);
  border: 1px solid rgba(255, 117, 19, 0.35);
  padding: 8px 16px;
  border-radius: 999px;
}
.zl-eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: zl-blink 2.2s ease-in-out infinite;
}
.zl-eyebrow-light { color: var(--orange-bright); background: rgba(255, 117, 19, 0.14); }

/* map pins & pulse rings */
.zl-map-pin {
  animation: zl-bounce 2.6s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center bottom;
}
.zl-map-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: zl-ring 2.4s ease-out infinite;
}

.zl-chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--ink);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  font-size: 13.5px;
  font-weight: 600;
  animation: zl-float 6s ease-in-out infinite;
}
.zl-chip i {
  font-style: normal;
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-size: 16px;
}
.zl-chip small { display: block; color: var(--muted); font-weight: 500; }
.zl-hero .zl-chip-1 { top: 22%; right: 14%; animation-delay: -2s; }
.zl-hero .zl-chip-2 { top: 52%; right: 5%; animation-delay: -4s; }
.zl-hero .zl-chip-3 { bottom: 15%; right: 27%; animation-delay: -1s; }

/* scrolling marquee strip */
.zl-marquee {
  background: linear-gradient(90deg, var(--orange), #F26100 40%, var(--blue-dark) 85%, var(--blue));
  padding: 15px 0;
  overflow: hidden;
  position: relative;
  transform: rotate(-1.2deg) scale(1.02);
  margin-top: -32px;
  z-index: 5;
  box-shadow: 0 14px 34px rgba(10, 22, 51, 0.22);
}
.zl-marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: zl-marquee 26s linear infinite;
}
.zl-marquee:hover .zl-marquee-track { animation-play-state: paused; }
.zl-marquee span {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
}
.zl-marquee span::after { content: "◆"; font-size: 10px; opacity: .7; }

/* ---------- sections ---------- */
.zl-section { padding: 110px 0; }
.zl-section-tint { background: var(--bg); }
.zl-section-navy { background: linear-gradient(160deg, var(--ink-deep), #0A1B45); color: var(--white); }
.zl-section-navy h2, .zl-section-navy h3 { color: var(--white); }

.zl-section-head { max-width: 640px; margin-bottom: 58px; }
.zl-section-head.zl-center { margin-inline: auto; text-align: center; }
.zl-section-head h2 { font-size: clamp(28px, 3.2vw, 42px); font-weight: 800; margin: 16px 0 14px; }
.zl-section-head p { color: var(--muted); font-size: 17px; }
.zl-section-navy .zl-section-head p { color: rgba(255,255,255,.72); }

/* ---------- stats ---------- */
.zl-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.zl-stat {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .4s var(--spring), box-shadow .35s ease, border-color .35s ease;
}
.zl-stat:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow); border-color: rgba(255,117,19,.35); }
.zl-stat b {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 800;
  color: var(--ink);
  display: block;
}
.zl-stat b em { font-style: normal; color: var(--orange); }
.zl-stat span { color: var(--muted); font-size: 14.5px; font-weight: 500; }

/* ---------- cards ---------- */
.zl-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.zl-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.zl-card, .zl-step, .zl-stat { --mx: 50%; --my: 50%; }

.zl-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform .4s var(--spring), box-shadow .35s ease, border-color .35s ease;
  overflow: hidden;
}
.zl-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--spring);
}
.zl-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(280px circle at var(--mx) var(--my), rgba(255, 117, 19, 0.09), transparent 65%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.zl-card:hover { transform: translateY(-9px); box-shadow: var(--shadow); border-color: transparent; }
.zl-card:hover::before { transform: scaleX(1); }
.zl-card:hover::after { opacity: 1; }

.zl-card-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange-soft), var(--blue-soft));
  color: var(--orange-dark);
  margin-bottom: 22px;
  transition: transform .45s var(--spring), background .35s ease, color .35s ease, box-shadow .35s ease;
}
.zl-card-icon svg { width: 28px; height: 28px; }
.zl-card:hover .zl-card-icon {
  transform: rotate(-8deg) scale(1.12);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: 0 10px 22px rgba(255, 117, 19, 0.35);
}
.zl-card h3 { font-size: 20px; margin-bottom: 10px; }
.zl-card p { color: var(--muted); font-size: 15px; }

.zl-card-navy {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.12);
}
.zl-card-navy p { color: rgba(255,255,255,.7); }

/* ---------- steps ---------- */
.zl-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  counter-reset: step;
}
.zl-step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 30px 34px;
  overflow: hidden;
  transition: transform .4s var(--spring), box-shadow .35s ease;
}
.zl-step::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(280px circle at var(--mx) var(--my), rgba(4, 104, 227, 0.08), transparent 65%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.zl-step:hover { transform: translateY(-9px); box-shadow: var(--shadow); }
.zl-step:hover::after { opacity: 1; }
.zl-step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 52px;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 117, 19, 0.65);
  position: absolute;
  top: 18px; right: 24px;
  line-height: 1;
  transition: -webkit-text-stroke-color .35s ease;
}
.zl-step:hover::before { -webkit-text-stroke-color: var(--orange); }
.zl-step h3 { font-size: 19px; margin: 18px 0 10px; }
.zl-step p { color: var(--muted); font-size: 15px; }
.zl-step .zl-card-icon { margin-bottom: 0; }

/* ---------- split rows ---------- */
.zl-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.zl-split h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 800; margin: 16px 0 16px; }
.zl-split p { color: var(--muted); margin-bottom: 14px; }
.zl-split-list { list-style: none; margin: 22px 0 30px; display: grid; gap: 14px; }
.zl-split-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 500;
  color: var(--ink);
  transition: transform .3s ease;
}
.zl-split-list li:hover { transform: translateX(5px); }
.zl-split-list li::before {
  content: "";
  flex: none;
  width: 22px; height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm-1.2 14.5-4.3-4.3 1.7-1.7 2.6 2.6 5.8-5.8 1.7 1.7-7.5 7.5z"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm-1.2 14.5-4.3-4.3 1.7-1.7 2.6 2.6 5.8-5.8 1.7 1.7-7.5 7.5z"/></svg>') center/contain no-repeat;
}

.zl-visual-panel {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--ink-deep), #0C2258);
  padding: 44px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.zl-visual-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 44px 44px;
  animation: zl-grid-pan 26s linear infinite;
}
.zl-visual-panel::after {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,117,19,.18), transparent 70%);
  top: -80px; right: -80px;
  animation: zl-float 9s ease-in-out infinite;
}
.zl-visual-panel svg { position: relative; width: 100%; max-width: 420px; height: auto; z-index: 1; }
.zl-visual-panel .zl-route-path { stroke-dasharray: 12 10; animation: zl-dash 1.4s linear infinite; }
.zl-visual-panel .zl-pin { animation: zl-bounce 2.4s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.zl-visual-panel .zl-pin-b { animation-delay: -1.2s; }

/* ---------- CTA band ---------- */
.zl-cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(255,117,19,.28), transparent 60%),
    radial-gradient(500px 300px at 10% 100%, rgba(4,104,227,.35), transparent 60%),
    linear-gradient(140deg, var(--ink-deep), #0A1B45);
  color: var(--white);
  padding: 70px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
}
.zl-cta-band h2 { color: var(--white); font-size: clamp(26px, 3vw, 38px); margin-bottom: 12px; }
.zl-cta-band p { color: rgba(255,255,255,.72); max-width: 480px; }
.zl-cta-band-actions { display: flex; gap: 16px; flex-wrap: wrap; flex: none; }

/* floating orbs used in dark cards */
.zl-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: zl-morph 12s ease-in-out infinite;
}
.zl-orb-1 { width: 220px; height: 220px; background: radial-gradient(circle, rgba(255,117,19,.28), transparent 70%); top: -60px; right: 12%; }
.zl-orb-2 { width: 260px; height: 260px; background: radial-gradient(circle, rgba(4,104,227,.4), transparent 70%); bottom: -90px; left: -40px; animation-delay: -6s; }

/* ---------- play badges ---------- */
.zl-badge-row { display: flex; gap: 16px; flex-wrap: wrap; }

.zl-play-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #05070E;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px;
  padding: 10px 20px 10px 14px;
  transition: transform .3s var(--spring), box-shadow .3s ease, border-color .3s ease;
}
.zl-play-badge:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: var(--orange);
  box-shadow: 0 16px 32px rgba(5, 7, 14, .4);
}
.zl-play-icon { width: 30px; height: 30px; flex: none; }
.zl-play-text { display: flex; flex-direction: column; line-height: 1.25; text-align: left; }
.zl-play-text small { font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; opacity: .8; }
.zl-play-text strong { font-family: var(--font-display); font-size: 17px; font-weight: 700; }
.zl-play-badge-driver .zl-play-text small { color: var(--orange-bright); opacity: 1; }
.zl-play-badge-client .zl-play-text small { color: #6FB4FF; opacity: 1; }

/* ---------- download section ---------- */
.zl-download { padding: 110px 0; background: var(--bg); }
.zl-download-card {
  position: relative;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(700px 400px at 100% 100%, rgba(255,117,19,.2), transparent 60%),
    linear-gradient(140deg, var(--ink-deep) 0%, #0A1B45 70%);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  padding: 70px 64px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.zl-download-copy { position: relative; z-index: 1; }
.zl-download-copy h2 { color: var(--white); font-size: clamp(26px, 3vw, 40px); margin: 16px 0 16px; }
.zl-download-copy p { color: rgba(255,255,255,.72); margin-bottom: 30px; max-width: 460px; }

.zl-download-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 320px;
  z-index: 1;
}

.zl-phone {
  position: relative;
  width: 168px;
  animation: zl-float 7s ease-in-out infinite;
}
.zl-phone-driver { animation-delay: -3.5s; margin-top: 54px; }
.zl-phone-screen {
  position: relative;
  background: linear-gradient(170deg, #0E2470, #071231);
  border: 4px solid rgba(255,255,255,.18);
  border-radius: 26px;
  height: 300px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,.45);
  overflow: hidden;
}
.zl-phone-screen::after {
  content: "";
  position: absolute;
  top: -60%; left: -60%;
  width: 60%; height: 220%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.10), transparent);
  transform: rotate(20deg);
  animation: zl-screen-sheen 5.5s ease-in-out infinite;
}
.zl-phone-topbar { height: 8px; width: 46%; margin-inline: auto; background: rgba(255,255,255,.22); border-radius: 8px; }
.zl-phone-map {
  flex: 1;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  position: relative;
  overflow: hidden;
}
.zl-phone-route {
  position: absolute;
  left: 18%; top: 20%;
  width: 64%; height: 60%;
  border-left: 2.5px dashed var(--orange);
  border-bottom: 2.5px dashed var(--orange);
  border-bottom-left-radius: 26px;
  opacity: .9;
}
.zl-phone-pin {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255,117,19,.25);
  animation: zl-pulse 2s ease-out infinite;
}
.zl-phone-pin-a { left: 14%; top: 15%; }
.zl-phone-pin-b { right: 14%; bottom: 15%; background: var(--blue-bright); box-shadow: 0 0 0 5px rgba(4,104,227,.25); animation-delay: -1s; }
.zl-phone-list { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.zl-phone-list span { height: 34px; border-radius: 10px; background: rgba(255,255,255,.10); }
.zl-phone-list span:nth-child(2) { background: rgba(255,255,255,.16); }
.zl-phone-card {
  background: var(--white);
  color: var(--ink);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 11.5px;
  line-height: 1.4;
  animation: zl-pop 6s ease-in-out infinite;
}
.zl-phone-card b { display: block; font-size: 12px; }
.zl-phone-card i { font-style: normal; color: var(--muted); }
.zl-phone-card-accent { background: linear-gradient(135deg, var(--orange-bright), var(--orange)); color: var(--white); animation-delay: -3s; }
.zl-phone-card-accent i { color: rgba(255,255,255,.85); }
.zl-phone-label {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  z-index: 2;
}
.zl-phone-client .zl-phone-label { background: linear-gradient(135deg, var(--blue-bright), var(--blue)); }

/* ---------- footer ---------- */
.zl-footer {
  background: var(--ink-deep);
  color: rgba(255,255,255,.72);
  padding: 70px 0 30px;
}
.zl-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.zl-footer-logo {
  display: inline-block;
  background: var(--white);
  border-radius: 14px;
  padding: 10px 16px;
  transition: transform .35s var(--spring);
}
.zl-footer-logo:hover { transform: scale(1.04); }
.zl-footer-logo img { height: 40px; width: auto; }
.zl-footer-brand p { margin-top: 18px; font-size: 14.5px; max-width: 300px; }
.zl-footer h4 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 18px;
  letter-spacing: .04em;
}
.zl-footer-grid a, .zl-footer-plain {
  display: block;
  font-size: 14.5px;
  margin-bottom: 12px;
  transition: color .25s ease, transform .25s ease;
}
.zl-footer-grid a:hover { color: var(--orange-bright); transform: translateX(3px); }
.zl-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 26px;
  font-size: 13.5px;
  color: rgba(255,255,255,.45);
}

/* ---------- interior page hero ---------- */
.zl-page-hero {
  position: relative;
  padding: calc(var(--header-h) + 90px) 0 90px;
  background: linear-gradient(155deg, var(--ink-deep), #0A1B45 70%);
  color: var(--white);
  overflow: hidden;
}
.zl-page-hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(30% 35% at 80% 25%, rgba(255,117,19,.20), transparent 70%),
    radial-gradient(28% 30% at 15% 80%, rgba(4,104,227,.32), transparent 70%);
  animation: zl-aurora 18s ease-in-out infinite alternate;
}
.zl-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse at 30% 20%, black 20%, transparent 75%);
  animation: zl-grid-pan 26s linear infinite;
}
.zl-page-hero .zl-container { position: relative; z-index: 1; }
.zl-page-hero h1 {
  color: var(--white);
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 800;
  margin: 18px 0 16px;
  max-width: 720px;
  animation: zl-rise .8s var(--spring) both .1s;
}
.zl-page-hero p {
  color: rgba(255,255,255,.75);
  font-size: 17.5px;
  max-width: 560px;
  animation: zl-rise .8s var(--spring) both .25s;
}
.zl-page-hero .zl-eyebrow { animation: zl-rise .8s var(--spring) both; }
.zl-page-hero .zl-hero-actions { margin: 34px 0 0; animation: zl-rise .8s var(--spring) both .4s; }

/* ---------- timeline (about) ---------- */
.zl-timeline { position: relative; display: grid; gap: 34px; max-width: 720px; margin-inline: auto; }
.zl-timeline::before {
  content: "";
  position: absolute;
  left: 19px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--orange), var(--blue));
}
.zl-timeline-item { position: relative; padding-left: 66px; }
.zl-timeline-item::before {
  content: "";
  position: absolute;
  left: 10px; top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--orange);
  border: 5px solid var(--white);
  box-shadow: 0 0 0 2px var(--orange);
  animation: zl-pulse 3s ease-out infinite;
}
.zl-section-tint .zl-timeline-item::before { border-color: var(--bg); }
.zl-timeline-item b {
  font-family: var(--font-display);
  color: var(--blue);
  font-size: 14px;
  letter-spacing: .1em;
}
.zl-timeline-item h3 { font-size: 19px; margin: 6px 0 8px; }
.zl-timeline-item p { color: var(--muted); font-size: 15px; }

/* ---------- values ---------- */
.zl-value-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--spring), border-color .3s ease, box-shadow .3s ease;
}
.zl-value-chip:hover {
  transform: translateY(-5px) rotate(-1.5deg) scale(1.04);
  border-color: var(--orange);
  box-shadow: 0 14px 30px rgba(255,117,19,.18);
}
.zl-value-chip i { font-style: normal; }
.zl-values-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ---------- contact ---------- */
.zl-contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  align-items: start;
}
.zl-contact-info { display: grid; gap: 20px; }
.zl-contact-item {
  display: flex;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .35s var(--spring), box-shadow .3s ease, border-color .3s ease;
}
.zl-contact-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: rgba(4,104,227,.35); }
.zl-contact-item .zl-card-icon { width: 48px; height: 48px; margin: 0; flex: none; }
.zl-contact-item .zl-card-icon svg { width: 22px; height: 22px; }
.zl-contact-item h3 { font-size: 16px; margin-bottom: 4px; }
.zl-contact-item p, .zl-contact-item a { color: var(--muted); font-size: 14.5px; }
.zl-contact-item a:hover { color: var(--orange-dark); }

.zl-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 42px;
  box-shadow: var(--shadow-sm);
}
.zl-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.zl-field { margin-bottom: 18px; }
.zl-field label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--ink);
}
.zl-field input, .zl-field select, .zl-field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.zl-field input:focus, .zl-field select:focus, .zl-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--blue-soft);
}
.zl-field textarea { min-height: 130px; resize: vertical; }

.zl-form-success {
  display: none;
  margin-top: 18px;
  background: #E9F9F0;
  border: 1px solid #9BE3BC;
  color: #147A44;
  border-radius: 12px;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 14.5px;
}
.zl-form-success.is-visible { display: block; animation: zl-rise .5s var(--spring) both; }

/* ---------- FAQ accordion ---------- */
.zl-faq { max-width: 760px; margin-inline: auto; display: grid; gap: 14px; }
.zl-faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.zl-faq-item.is-open { box-shadow: var(--shadow-sm); border-color: rgba(255,117,19,.4); }
.zl-faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: none;
  border: 0;
  text-align: left;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16.5px;
  color: var(--ink);
}
.zl-faq-q::after {
  content: "+";
  font-size: 24px;
  color: var(--orange);
  transition: transform .35s var(--spring);
  flex: none;
}
.zl-faq-item.is-open .zl-faq-q::after { transform: rotate(135deg); }
.zl-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.zl-faq-a p { padding: 0 26px 24px; color: var(--muted); font-size: 15px; }

/* ---------- reveal-on-scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(44px);
  filter: blur(6px);
  transition:
    opacity .9s cubic-bezier(.2,.65,.3,1),
    transform .9s var(--spring),
    filter .9s ease;
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform, filter;
}
[data-reveal="left"] { transform: translateX(-56px); }
[data-reveal="right"] { transform: translateX(56px); }
[data-reveal="zoom"] { transform: scale(.88); }
[data-reveal].is-revealed { opacity: 1; transform: none; filter: blur(0); }

/* ---------- keyframes ---------- */
@keyframes zl-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes zl-rise {
  from { opacity: 0; transform: translateY(34px); filter: blur(5px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes zl-dash {
  to { stroke-dashoffset: -44; }
}
@keyframes zl-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes zl-truck-drive {
  0%   { transform: translateX(-6%); }
  50%  { transform: translateX(6%); }
  100% { transform: translateX(-6%); }
}
@keyframes zl-spin {
  to { transform: rotate(360deg); }
}
@keyframes zl-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes zl-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,117,19,.45); }
  100% { box-shadow: 0 0 0 14px rgba(255,117,19,0); }
}
@keyframes zl-ring {
  0% { transform: scale(.25); opacity: .9; }
  70% { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}
@keyframes zl-marquee {
  to { transform: translateX(-50%); }
}
@keyframes zl-shimmer {
  to { background-position: 250% 0; }
}
@keyframes zl-aurora {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
  50%  { transform: translate(4%, -3%) rotate(8deg) scale(1.08); }
  100% { transform: translate(-4%, 3%) rotate(-6deg) scale(1.04); }
}
@keyframes zl-morph {
  0%, 100% { border-radius: 60% 40% 55% 45% / 55% 45% 60% 40%; transform: rotate(0deg) scale(1); }
  33% { border-radius: 45% 55% 40% 60% / 60% 40% 55% 45%; transform: rotate(30deg) scale(1.08); }
  66% { border-radius: 55% 45% 60% 40% / 45% 60% 40% 55%; transform: rotate(-20deg) scale(.94); }
}
@keyframes zl-grid-pan {
  to { background-position: 56px 56px; }
}
@keyframes zl-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .35; transform: scale(.7); }
}
@keyframes zl-screen-sheen {
  0%, 55%, 100% { left: -60%; }
  25% { left: 130%; }
}
@keyframes zl-pop {
  0%, 12%, 88%, 100% { transform: translateY(0) scale(1); }
  4%, 8% { transform: translateY(-4px) scale(1.04); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .zl-hero { min-height: 0; }
  .zl-hero .zl-chip { display: none; }
  .zl-hero-fade {
    background:
      linear-gradient(90deg, rgba(246,249,254,.94) 0%, rgba(246,249,254,.86) 55%, rgba(246,249,254,.6) 100%);
  }
  .zl-split { grid-template-columns: 1fr; gap: 46px; }
  .zl-stats { grid-template-columns: repeat(2, 1fr); }
  .zl-grid-3, .zl-steps { grid-template-columns: 1fr 1fr; }
  .zl-download-card { grid-template-columns: 1fr; padding: 54px 40px; }
  .zl-footer-grid { grid-template-columns: 1fr 1fr; }
  .zl-contact-grid { grid-template-columns: 1fr; }
  .zl-cta-band { flex-direction: column; align-items: flex-start; padding: 54px 40px; }
}

@media (max-width: 720px) {
  .zl-section, .zl-download { padding: 76px 0; }
  .zl-grid-3, .zl-grid-2, .zl-steps { grid-template-columns: 1fr; }
  .zl-stats { grid-template-columns: 1fr 1fr; gap: 14px; }
  .zl-form { padding: 28px 22px; }
  .zl-form-row { grid-template-columns: 1fr; }
  .zl-chip-1 { left: -8px; }
  .zl-chip-2 { right: -8px; }
  .zl-brand-logo { height: 38px; }

  .zl-burger { display: flex; }
  .zl-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(255, 255, 255, 0.98);
    padding: 18px 5vw 28px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease;
    box-shadow: 0 30px 50px rgba(10,22,51,.18);
  }
  .zl-nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .zl-nav-link { padding: 13px 4px; font-size: 16px; border-bottom: 1px solid var(--line); }
  .zl-nav-cta { margin-top: 16px; justify-content: center; }
}
