:root {
  --electric: #1296db;
  --electric-light: #60b8f0;
  --navy: #0b2c4d;
  --charcoal: #1f2933;
  --light: #f5f7fa;
  --silver: #e2e8f0;
  --white: #fff;
  --muted: #64748b;
  --shadow: 0 24px 70px rgba(11, 44, 77, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Poppins, Inter, system-ui, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  color: var(--white);
  animation: navIn 0.7s cubic-bezier(.22,1,.36,1);
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.nav.scrolled {
  background: rgba(11, 44, 77, .95);
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
  backdrop-filter: blur(18px);
  padding-block: 12px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Poppins, Montserrat, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}
.brand-logo {
  display: block;
  width: clamp(48px, 4.8vw, 58px);
  height: clamp(48px, 4.8vw, 58px);
  object-fit: contain;
  padding: 6px;
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 16px 34px rgba(0,0,0,.14);
}
.brand-wordmark {
  display: grid;
  gap: 2px;
  max-width: 156px;
  color: white;
  font: 400 clamp(10px, .82vw, 13px) Poppins, Montserrat, sans-serif;
  line-height: 1.05;
  text-transform: uppercase;
}
.brand-wordmark strong {
  font-weight: 900;
}
.brand-wordmark span {
  font-weight: 400;
}
.footer-logo {
  width: 76px;
  height: 76px;
  padding: 8px;
}
.footer-brand {
  align-items: center;
  margin-bottom: 16px;
}
.desktop-nav { display: flex; align-items: center; gap: 6px; }
.desktop-nav a, .support-link {
  color: rgba(255,255,255,.72);
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: .25s ease;
}
.desktop-nav a:hover, .support-link:hover { color: white; background: rgba(255,255,255,.1); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.language-switcher select {
  width: auto;
  min-width: 78px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255,255,255,.1);
  color: white;
  font: 800 12px Poppins, Inter, sans-serif;
  outline: none;
}
.language-switcher option { color: var(--charcoal); }
.mobile-language {
  justify-content: center;
  margin-bottom: 10px;
}
.menu-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; }
.menu-toggle span { display: block; height: 2px; background: white; margin: 6px; transition: .25s ease; }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: grid;
  place-content: center;
  gap: 20px;
  background: rgba(11, 44, 77, .98);
  color: white;
  font: 800 28px Poppins, Montserrat, sans-serif;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: .3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-family: Poppins, Montserrat, sans-serif;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px) scale(1.03); }
.btn-primary { background: var(--electric); color: white; box-shadow: 0 18px 40px rgba(18,150,219,.3); }
.btn-primary:hover { box-shadow: 0 22px 56px rgba(18,150,219,.44); }
.btn-secondary { color: white; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22); backdrop-filter: blur(16px); }
.btn-small { min-height: 42px; padding-inline: 18px; font-size: 14px; }

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
}
.hero > img, .cta-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,44,77,.92), rgba(11,44,77,.68), rgba(11,44,77,.9)),
    linear-gradient(180deg, rgba(11,44,77,.72), rgba(11,44,77,.3), rgba(11,44,77,.86));
}
.blueprint {
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: linear-gradient(var(--electric) 1px, transparent 1px), linear-gradient(90deg, var(--electric) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: 80px;
}
.glass {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(20px);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  color: rgba(255,255,255,.86);
  font-weight: 800;
  font-size: 14px;
}
.badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--electric);
  box-shadow: 0 0 0 8px rgba(18,150,219,.18);
  flex: 0 0 auto;
}
h1, h2, h3 {
  font-family: Poppins, Montserrat, sans-serif;
  line-height: 1.02;
  letter-spacing: 0;
  margin: 0;
}
h1 {
  max-width: 890px;
  font-size: clamp(40px, 5.7vw, 74px);
  font-weight: 900;
  margin-top: 22px;
}
.gradient-text {
  background: linear-gradient(90deg, var(--electric), var(--electric-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-content > p {
  max-width: 700px;
  color: rgba(255,255,255,.68);
  font-size: clamp(17px, 1.65vw, 20px);
  margin: 22px 0 32px;
}
.cta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 720px;
  margin-top: 40px;
}
.stat-card {
  border-radius: 22px;
  padding: 20px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(18,150,219,.16); }
.stat-card strong { display: block; font: 900 34px Poppins, Montserrat, sans-serif; color: var(--electric-light); }
.stat-card span { color: rgba(255,255,255,.66); font-size: 14px; }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 2;
  font-size: 36px;
  color: rgba(255,255,255,.7);
  animation: bounce 1.6s infinite;
}

.section {
  position: relative;
  padding: clamp(76px, 10vw, 128px) clamp(18px, 4vw, 56px);
  overflow: hidden;
}
.section-head {
  width: min(820px, 100%);
  margin: 0 auto 54px;
  text-align: center;
}
.eyebrow {
  color: var(--electric);
  font: 800 13px Poppins, Montserrat, sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.section h2 {
  margin-top: 12px;
  font-size: clamp(34px, 5vw, 56px);
  color: var(--charcoal);
}
.section-head p { color: var(--muted); font-size: 18px; margin: 18px auto 0; }
.partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 18px;
  border-block: 1px solid var(--silver);
  background: white;
}
.partners > span { font: 800 12px Poppins, Montserrat, sans-serif; color: var(--electric); text-transform: uppercase; letter-spacing: .14em; }
.partner-list { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.partner-list b {
  border: 1px solid var(--silver);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--muted);
  font-size: 13px;
  transition: .2s ease;
}
.partner-list b:hover { color: var(--electric); border-color: rgba(18,150,219,.35); }

.about:before, .fleet:before, .testimonials:before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(18,150,219,.12);
  filter: blur(80px);
  right: -120px;
  top: 80px;
}
.about-grid, .dashboard-grid, .contact-grid {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}
.image-card { position: relative; }
.image-card img {
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.satisfaction {
  position: absolute;
  right: -8px;
  bottom: -22px;
  padding: 20px 24px;
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow);
}
.satisfaction strong { display: block; font: 900 36px Poppins, Montserrat, sans-serif; color: var(--electric); }
.satisfaction span { color: var(--muted); font-size: 13px; font-weight: 700; }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.feature, .service-card, .why-card, .step, .contact-form, .contact-info > *, .testimonial-card, .tracking-ui, .quote-calc {
  border: 1px solid var(--silver);
  background: white;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 8px 28px rgba(11,44,77,.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature:hover, .service-card:hover, .contact-info > *:hover, .step:hover, .quote-calc:hover, .tracking-ui:hover {
  transform: translateY(-5px);
  border-color: rgba(18,150,219,.35);
  box-shadow: var(--shadow);
}
.feature span, .icon, .why-card b, .step b {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(18,150,219,.1);
  color: var(--electric);
  font-weight: 900;
}
.feature h3, .service-card h3, .why-card h3, .step h3 {
  margin: 18px 0 10px;
  font-size: clamp(21px, 1.45vw, 26px);
  font-weight: 800;
  line-height: 1.18;
}
.feature p, .service-card p, .why-card p, .step p { color: var(--muted); margin: 0; }
.metrics {
  width: min(1180px, 100%);
  margin: 74px auto 0;
  border-top: 1px solid var(--silver);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.metrics div { padding: 30px 16px 0; text-align: center; }
.metrics strong { display: block; color: var(--electric); font: 900 42px Poppins, Montserrat, sans-serif; }
.metrics span { color: var(--muted); font-weight: 700; }

.services, .process, .contact, .dashboard { background: var(--light); }
.service-grid, .why-grid, .timeline {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}
.service-grid { grid-template-columns: repeat(3, 1fr); }
.service-card { position: relative; overflow: hidden; }
.service-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18,150,219,.12), transparent 45%);
  opacity: 0;
  transition: .25s ease;
}
.service-card:hover:before { opacity: 1; }
.service-card > * { position: relative; }
.service-card ul { list-style: none; padding: 0; margin: 22px 0; color: var(--charcoal); }
.service-card li { margin: 10px 0; }
.service-card li:before { content: "✓"; color: var(--electric); font-weight: 900; margin-right: 10px; }
.service-card a { color: var(--electric); font-weight: 900; }

.why {
  background: var(--navy);
  color: white;
}
.why .section-head h2 { color: white; }
.why .section-head p { color: rgba(255,255,255,.55); }
.why-grid { grid-template-columns: repeat(4, 1fr); position: relative; z-index: 1; }
.why-card {
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.1);
  color: white;
}
.why-card:hover { background: rgba(255,255,255,.1); border-color: rgba(18,150,219,.35); transform: translateY(-5px); }
.why-card p { color: rgba(255,255,255,.54); }

.fleet-card {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  overflow: hidden;
  border: 1px solid var(--silver);
  border-radius: 32px;
  background: white;
  box-shadow: var(--shadow);
}
.fleet-image {
  position: relative;
  background: var(--light);
  min-height: 440px;
}
.fleet-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.fleet-image span {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(11,44,77,.82);
  color: white;
  font-weight: 900;
}
.fleet-specs { padding: clamp(28px, 5vw, 56px); }
.fleet-specs h3 { font-size: clamp(28px, 4vw, 38px); }
.fleet-specs p { color: var(--muted); }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0; }
.spec-grid div {
  border-radius: 16px;
  background: var(--light);
  padding: 18px;
}
.spec-grid span { display: block; color: var(--muted); font-size: 13px; }
.spec-grid strong { font: 900 22px Poppins, Montserrat, sans-serif; }
.fleet-controls { display: flex; gap: 10px; margin-bottom: 22px; }
.fleet-controls button, .testimonial-controls button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--silver);
  background: white;
  color: var(--charcoal);
  cursor: pointer;
}
.fleet-controls button:last-child { background: var(--electric); color: white; border-color: var(--electric); }
.availability {
  width: min(1280px, 100%);
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 22px;
  border-radius: 22px;
  background: var(--light);
  border: 1px solid var(--silver);
}
.availability i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  margin-right: 8px;
  box-shadow: 0 0 0 6px rgba(34,197,94,.12);
}

.tracking-ui, .quote-calc { min-height: 390px; }
.tracking-top { display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.tracking-top span {
  color: #16a34a;
  background: rgba(34,197,94,.12);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
}
.route-map {
  position: relative;
  height: 190px;
  margin: 28px 0;
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 76%, rgba(18,150,219,.18), transparent 22%),
    radial-gradient(circle at 82% 30%, rgba(11,44,77,.12), transparent 26%),
    linear-gradient(135deg, rgba(18,150,219,.16), rgba(11,44,77,.1));
  overflow: hidden;
}
.haiti-map-img {
  position: absolute;
  inset: 16px 18px;
  width: calc(100% - 36px);
  height: calc(100% - 32px);
  object-fit: contain;
  opacity: .86;
  filter: drop-shadow(0 16px 24px rgba(11,44,77,.12));
}
.route-layer {
  position: absolute;
  inset: 16px 18px;
  width: calc(100% - 36px);
  height: calc(100% - 32px);
}
.route-line {
  fill: none;
  stroke: var(--electric);
  stroke-linecap: round;
  stroke-width: 6;
  stroke-dasharray: 10 12;
  filter: drop-shadow(0 8px 12px rgba(18,150,219,.28));
}
.route-pin {
  fill: var(--electric);
  stroke: white;
  stroke-width: 4;
}
.route-pin.middle { fill: var(--navy); }
.map-truck {
  position: absolute;
  left: 56%;
  top: 40%;
  width: 42px;
  height: 24px;
  color: white;
  transform: rotate(-18deg);
}
.map-truck svg {
  width: 42px;
  height: 24px;
  filter: drop-shadow(0 10px 14px rgba(11,44,77,.3));
}
.map-truck path { fill: var(--navy); stroke: white; stroke-width: 1.5; }
.map-truck circle { fill: var(--electric); stroke: white; stroke-width: 1.5; }
.range-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.range-head b {
  color: var(--electric);
  font-weight: 900;
}
.tracking-row { display: flex; justify-content: space-between; border-top: 1px solid var(--silver); padding: 13px 0; }
.tracking-row b { color: var(--electric); }
.quote-calc label { display: grid; gap: 8px; margin: 18px 0; font-weight: 800; }
.quote-calc input, .quote-calc select, .contact-form input, .contact-form select, .contact-form textarea, .newsletter input {
  width: 100%;
  border: 1px solid var(--silver);
  border-radius: 16px;
  padding: 14px 16px;
  background: white;
  color: var(--charcoal);
  outline: none;
}
.estimate {
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  background: var(--navy);
  color: white;
}
.estimate span { display: block; color: rgba(255,255,255,.62); }
.estimate strong { font: 900 30px Poppins, Montserrat, sans-serif; color: var(--electric-light); }

.timeline { grid-template-columns: repeat(4, 1fr); position: relative; }
.timeline:before {
  content: "";
  position: absolute;
  top: 68px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(18,150,219,.35), transparent);
}
.step { position: relative; text-align: center; }
.step span {
  display: inline-flex;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--electric);
  color: white;
  font: 900 12px Poppins, Montserrat, sans-serif;
  margin-bottom: 16px;
}
.step b { margin: 0 auto; border: 1px solid rgba(18,150,219,.25); background: white; }

.testimonial-card {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 52px);
  position: relative;
}
.testimonial-card:after {
  content: "“";
  position: absolute;
  right: 36px;
  top: -10px;
  font: 900 150px Georgia, serif;
  color: rgba(18,150,219,.08);
}
.stars { color: #f59e0b; font-size: 22px; }
.testimonial-card p { font-size: clamp(20px, 3vw, 28px); color: var(--charcoal); }
.client { display: flex; align-items: center; gap: 14px; }
.client > span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(18,150,219,.1);
  color: var(--electric);
  font-weight: 900;
}
.client small { display: block; color: var(--muted); }
.testimonial-controls { display: flex; justify-content: center; align-items: center; gap: 14px; margin-top: 26px; }
#dots { display: flex; gap: 8px; }
#dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: var(--silver);
  cursor: pointer;
  transition: .2s ease;
}
#dots button.active { width: 32px; background: var(--electric); }

.cta-banner {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
}
.cta-banner > div:first-of-type {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,44,77,.96), rgba(11,44,77,.9), rgba(11,44,77,.78));
}
.cta-content {
  position: relative;
  width: min(850px, calc(100% - 36px));
}
.cta-content h2 { font-size: clamp(36px, 6vw, 64px); }
.cta-content p { color: rgba(255,255,255,.68); font-size: 18px; }
.cta-content .cta-row { justify-content: center; }

.contact-grid { grid-template-columns: 3fr 2fr; align-items: start; }
.contact-form { padding: clamp(24px, 4vw, 42px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.contact-form textarea { min-height: 140px; resize: vertical; margin-bottom: 14px; }
.contact-form .btn { width: 100%; border: 0; }
.contact-info { display: grid; gap: 12px; }
.contact-info > * { display: block; padding: 20px; color: var(--charcoal); }
.contact-info b { display: block; font-family: Poppins, Montserrat, sans-serif; }
.contact-info span { color: var(--muted); }
.contact-info iframe {
  width: 100%;
  height: 210px;
  border: 0;
  border-radius: 18px;
}

.accordion {
  width: min(820px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.accordion button {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  border: 1px solid var(--silver);
  background: white;
  color: var(--charcoal);
  padding: 20px 22px;
  border-radius: 18px;
  cursor: pointer;
  font: 800 16px Poppins, Montserrat, sans-serif;
  text-align: left;
}
.accordion p {
  display: none;
  margin: -4px 0 6px;
  padding: 0 22px 18px;
  color: var(--muted);
}
.accordion button.open { border-color: rgba(18,150,219,.35); box-shadow: 0 18px 35px rgba(11,44,77,.08); }
.accordion button.open + p { display: block; }

.floating-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 0;
  background: var(--electric);
  color: white;
  font-size: 25px;
  box-shadow: 0 0 0 0 rgba(18,150,219,.55);
  animation: pulseGlow 2s infinite;
  cursor: pointer;
}
.floating-panel {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 59;
  display: grid;
  gap: 10px;
  width: 210px;
  padding: 14px;
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(.96);
  transition: .25s ease;
}
.floating-panel.open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.floating-panel a {
  padding: 12px 14px;
  border-radius: 999px;
  background: var(--electric);
  color: white;
  font-weight: 900;
  text-align: center;
}
.floating-panel .whatsapp { background: #16a34a; }
.floating-panel .navy { background: var(--navy); }
.chat-placeholder {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 30;
  display: grid;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--silver);
  box-shadow: 0 14px 38px rgba(11,44,77,.12);
  backdrop-filter: blur(16px);
  font-size: 13px;
}
.chat-placeholder span { color: var(--muted); }
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 70;
  transform: translate(-50%, 20px);
  opacity: 0;
  background: var(--navy);
  color: white;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: .25s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.footer {
  position: relative;
  overflow: hidden;
  padding: 72px clamp(18px, 4vw, 56px) 28px;
  background: var(--navy);
  color: white;
}
.footer-grid {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 36px;
}
.footer p, .footer a { color: rgba(255,255,255,.46); }
.footer a { display: block; margin: 10px 0; transition: .2s ease; }
.footer a:hover { color: var(--electric-light); }
.footer h3 { color: white; font-size: 14px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; }
.newsletter { display: flex; gap: 8px; }
.newsletter input { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.1); color: white; }
.newsletter button {
  min-width: 52px;
  border: 0;
  border-radius: 16px;
  background: var(--electric);
  color: white;
  font-weight: 900;
}
.footer-bottom {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  margin: 46px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.35);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes navIn { from { transform: translateY(-100%); } to { transform: translateY(0); } }
@keyframes bounce { 50% { transform: translateY(10px); } }
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(18,150,219,.45); }
  70% { box-shadow: 0 0 0 18px rgba(18,150,219,0); }
  100% { box-shadow: 0 0 0 0 rgba(18,150,219,0); }
}

@media (max-width: 1000px) {
  .desktop-nav, .nav-actions { display: none; }
  .menu-toggle { display: block; }
  .about-grid, .dashboard-grid, .contact-grid, .fleet-card { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .why-grid, .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline:before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .brand { gap: 8px; }
  .brand-logo {
    width: 52px;
    height: 52px;
  }
  .brand-wordmark {
    max-width: 118px;
    font-size: 10px;
  }
  .hero { min-height: 920px; }
  .hero-stats, .feature-grid, .metrics, .why-grid, .timeline, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .stat-card { padding: 18px; }
  .section { padding-inline: 18px; }
  .satisfaction { position: static; margin: -24px 18px 0; }
  .fleet-image { min-height: 300px; }
  .chat-placeholder { display: none; }
  .floating-button { right: 18px; bottom: 18px; }
  .floating-panel { right: 18px; bottom: 86px; }
  .footer-bottom { display: grid; }
}
