/* ============================================================
   NAVIOR LOGISTICS — stylesheet
   Brand palette pulled from logo + brochure
   ============================================================ */

:root {
  --navy-900: #081328;
  --navy-800: #0c1f47;
  --navy-700: #112a5c;
  --navy-600: #173a7a;
  --blue-600: #1c4f9c;
  --blue-500: #2563b8;
  --blue-400: #3a8dde;
  --cyan-400: #36a7e6;

  --gray-50: #f5f8fc;
  --gray-100: #eef2f8;
  --gray-200: #dde5f0;
  --gray-400: #9aa6bd;
  --gray-500: #5b6680;
  --ink: #14213a;
  --white: #ffffff;

  --grad-arrow: linear-gradient(135deg, #173a7a 0%, #2563b8 45%, #36a7e6 100%);
  --grad-hero: linear-gradient(135deg, #081328 0%, #0c1f47 45%, #173a7a 100%);

  --shadow-sm: 0 2px 10px rgba(8, 19, 40, 0.06);
  --shadow-md: 0 12px 34px rgba(8, 19, 40, 0.12);
  --shadow-lg: 0 24px 60px rgba(8, 19, 40, 0.22);

  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1180px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ---------- Headings / shared ---------- */
.section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: var(--navy-800);
}
.section-title--light { color: var(--white); }

.accent-text {
  background: var(--grad-arrow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kicker {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 14px;
}
.kicker--light { color: var(--cyan-400); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.section-sub {
  margin-top: 14px;
  color: var(--gray-500);
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
  padding: 13px 26px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn--accent {
  background: var(--grad-arrow);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(37, 99, 184, 0.35);
}
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(37, 99, 184, 0.45); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }
.btn--lg { padding: 16px 34px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-900);
  color: #c5d2e8;
  font-size: 0.85rem;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  gap: 16px;
}
.topbar__left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; color: #c5d2e8; }
.topbar__item:hover { color: #fff; }
.topbar__item svg { color: var(--cyan-400); }
.topbar__badge { color: #c5d2e8; white-space: nowrap; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 72px;
}
.brand__logo { height: 46px; width: auto; }
.nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
}
.nav a {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-800);
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--grad-arrow);
  transition: width 0.2s ease;
}
.nav a:hover::after { width: 100%; }
.header__cta { margin-left: 8px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg,
      rgba(8, 19, 40, 0.95) 0%,
      rgba(8, 19, 40, 0.82) 38%,
      rgba(8, 19, 40, 0.45) 70%,
      rgba(8, 19, 40, 0.25) 100%),
    linear-gradient(0deg, rgba(8, 19, 40, 0.55), rgba(8, 19, 40, 0.05)),
    url("../images/banner.png");
  background-size: cover, cover, cover;
  background-position: center, center, left center;
  background-repeat: no-repeat;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding: 54px 24px 56px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero__eyebrow,
.hero__title,
.hero__lead,
.hero__actions,
.hero__stats { max-width: 540px; }
.hero__eyebrow {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: #cfe1f5;
  margin-bottom: 16px;
}
.hero__eyebrow span { color: var(--cyan-400); }
.hero__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.hero__title .accent-text {
  background: linear-gradient(135deg, #5bb8ef, #9fd4f7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: 1.02rem;
  color: #d2deef;
  margin-bottom: 28px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.stat__num {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1;
  color: #fff;
}
.stat__num .plus { color: var(--cyan-400); }
.stat__label {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: #aebfd8;
  text-transform: uppercase;
}

/* ---------- Trust ---------- */
.trust { background: var(--white); margin-top: -1px; }
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  padding: 64px 24px;
}
.trust__item { text-align: center; }
.trust__icon {
  width: 62px; height: 62px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--gray-100);
  color: var(--blue-500);
}
.trust__item h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.08rem;
  color: var(--navy-800);
  margin-bottom: 8px;
}
.trust__item p { color: var(--gray-500); font-size: 0.95rem; }

/* ---------- Intro ---------- */
.intro { background: var(--gray-50); padding: 78px 0; }
.intro__inner { text-align: center; max-width: 820px; margin: 0 auto; }
.intro__text {
  margin-top: 22px;
  font-size: 1.18rem;
  color: var(--gray-500);
}
.intro__text strong { color: var(--navy-800); }

/* ---------- Services ---------- */
.services { padding: 86px 0; background: var(--white); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--grad-arrow);
  color: #fff;
  margin-bottom: 22px;
}
.service-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  color: var(--navy-800);
  margin-bottom: 10px;
}
.service-card p { color: var(--gray-500); }

/* ---------- Why / Fleet ---------- */
.why {
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}
.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(54,167,230,0.22), transparent 40%);
}
.why__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 54px;
  align-items: center;
}
.why__list { list-style: none; margin: 26px 0 32px; }
.why__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: #d6e2f2;
  font-size: 1.08rem;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--grad-arrow);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 2px;
}
.why__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  backdrop-filter: blur(6px);
}
.why__card-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 26px;
}
.fleet-stats { display: flex; gap: 30px; margin-bottom: 22px; }
.fleet-stat__num {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  color: #fff;
}
.fleet-stat__num .plus { color: var(--cyan-400); }
.fleet-stat__label {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #aebfd8;
}
.why__card-text { color: #c6d4e8; }

/* ---------- Solutions ---------- */
.solutions { padding: 86px 0; background: var(--gray-50); }
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.solution-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 44px 32px 36px;
  overflow: hidden;
}
.solution-card--featured {
  background: var(--grad-hero);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.solution-card.solution-card--featured h3 { color: #ffffff; }
.solution-card.solution-card--featured p { color: #ffffff; }
.solution-card__tag {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 14px;
}
.solution-card--featured .solution-card__tag { color: rgba(255,255,255,0.25); }
.solution-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
  color: var(--navy-800);
  margin-bottom: 12px;
}
.solution-card p { color: var(--gray-500); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--grad-arrow);
  padding: 56px 0;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: #fff;
}
.cta-band__text { color: rgba(255, 255, 255, 0.9); margin-top: 6px; }
.cta-band .btn--accent {
  background: #fff;
  color: var(--navy-800);
  box-shadow: 0 10px 26px rgba(8, 19, 40, 0.25);
}

/* ---------- Contact / Quote ---------- */
.contact { padding: 86px 0; background: var(--white); }
.contact__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact__lead { color: var(--gray-500); margin: 18px 0 30px; font-size: 1.08rem; }
.contact__details { list-style: none; display: grid; gap: 20px; }
.contact__details li { display: flex; gap: 16px; align-items: flex-start; }
.contact__ico {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--gray-100);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}
.contact__details strong { color: var(--navy-800); font-family: "Montserrat", sans-serif; }
.contact__details a:hover { color: var(--blue-500); }

.quote-form {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  box-shadow: var(--shadow-sm);
}
.quote-form__title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  color: var(--navy-800);
  margin-bottom: 22px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 0.97rem;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(58, 141, 222, 0.18);
}
.field textarea { resize: vertical; }
.quote-form__note {
  text-align: center;
  color: var(--gray-400);
  font-size: 0.85rem;
  margin-top: 14px;
}

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: #b9c6dd; }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding: 64px 24px 48px;
}
.footer__logo {
  height: 50px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  margin-bottom: 18px;
}
.footer__tag { font-size: 0.95rem; max-width: 320px; }
.footer__col h4 {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer__col a, .footer__plain {
  display: block;
  color: #b9c6dd;
  font-size: 0.93rem;
  padding: 5px 0;
}
.footer__col a:hover { color: var(--cyan-400); }
.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  font-size: 0.85rem;
}
.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__priority {
  font-family: "Montserrat", sans-serif;
  color: var(--cyan-400);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.footer__dev { color: #8493ad; }
.footer__dev a { color: var(--cyan-400); font-weight: 600; }
.footer__dev a:hover { color: #fff; }

/* ---------- How it works ---------- */
.how { padding: 86px 0; background: var(--white); }
.how__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.how-step {
  position: relative;
  text-align: center;
  padding: 0 12px;
}
.how-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 28px;
  left: 60%;
  width: 80%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gray-200) 0 8px, transparent 8px 16px);
}
.how-step__num {
  position: relative;
  z-index: 1;
  width: 58px; height: 58px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--grad-arrow);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(37, 99, 184, 0.3);
}
.how-step h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.12rem;
  color: var(--navy-800);
  margin-bottom: 8px;
}
.how-step p { color: var(--gray-500); font-size: 0.95rem; }

/* ---------- Coverage map ---------- */
.coverage {
  background: var(--grad-hero);
  padding: 86px 0;
  position: relative;
  overflow: hidden;
}
.coverage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 80%, rgba(54,167,230,0.18), transparent 45%);
}
.coverage__inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: center;
}
.coverage__text .section-title { color: #fff; }
.coverage__lead { color: #c6d4e8; margin: 18px 0 28px; font-size: 1.08rem; }
.coverage__regions { display: grid; gap: 18px; }
.coverage__regions h4 {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 4px;
}
.coverage__regions p { color: #aebfd8; font-size: 0.95rem; }
.coverage__map {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.coverage__map svg { width: 100%; height: auto; display: block; }
.map-routes path {
  stroke-dasharray: 6 7;
  opacity: 0.5;
  animation: route-dash 16s linear infinite;
}
@keyframes route-dash { to { stroke-dashoffset: -260; } }
.map-dots circle { fill: #cfe1f5; }
.map-dots text {
  fill: #9fb4d4;
  font-size: 11px;
  font-family: "Inter", sans-serif;
  text-anchor: middle;
}
.map-hub__core { fill: var(--cyan-400); }
.map-hub__pulse {
  fill: var(--cyan-400);
  transform-box: fill-box;
  transform-origin: center;
  animation: hub-pulse 2.6s ease-out infinite;
}
@keyframes hub-pulse {
  0%   { transform: scale(0.5); opacity: 0.55; }
  100% { transform: scale(2.2); opacity: 0; }
}
.map-hub__label {
  fill: #fff;
  font-size: 12.5px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-anchor: middle;
}

/* ---------- Testimonials ---------- */
.testimonials { padding: 86px 0; background: var(--white); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testimonial {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonial__stars { color: #f5b301; letter-spacing: 2px; font-size: 1.05rem; }
.testimonial blockquote {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.6;
  font-style: italic;
}
.testimonial figcaption { margin-top: auto; }
.testimonial__name {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--navy-800);
}
.testimonial__co { display: block; color: var(--gray-500); font-size: 0.9rem; }
.testimonials__note {
  text-align: center;
  color: var(--gray-400);
  font-size: 0.82rem;
  margin-top: 26px;
}

/* ---------- FAQ ---------- */
.faq { padding: 86px 0; background: var(--gray-50); }
.faq__inner { max-width: 820px; margin: 0 auto; }
.faq__list { display: grid; gap: 14px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: var(--navy-800);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--blue-500);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item__body { padding: 0 24px 22px; }
.faq-item__body p { color: var(--gray-500); }

/* ---------- Floating call button ---------- */
.fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--grad-arrow);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(37, 99, 184, 0.45);
  animation: fab-pulse 2.4s ease-in-out infinite;
  transition: transform 0.15s ease;
}
.fab:hover { transform: scale(1.08); }
@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(37, 99, 184, 0.45); }
  50% { box-shadow: 0 10px 26px rgba(37, 99, 184, 0.45), 0 0 0 12px rgba(54, 167, 230, 0.12); }
}

/* ---------- Sticky mobile action bar ---------- */
.mobile-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: #fff;
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -6px 24px rgba(8, 19, 40, 0.12);
  padding: 10px 12px;
  gap: 10px;
}
.mobile-bar__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}
.mobile-bar__btn--call {
  background: var(--gray-100);
  color: var(--navy-800);
}
.mobile-bar__btn--quote {
  background: var(--grad-arrow);
  color: #fff;
}

/* ---------- Scroll reveal (CSS-only, progressive) ---------- */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .reveal {
      animation: reveal-fade linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 26%;
    }
    @keyframes reveal-fade {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .why__inner { grid-template-columns: 1fr; gap: 40px; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .coverage__inner { grid-template-columns: 1fr; gap: 36px; }
  .how__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .how-step:not(:last-child)::after { display: none; }
}

@media (max-width: 760px) {
  .nav { display: none; }
  .header__cta { margin-left: auto; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .services__grid { grid-template-columns: 1fr; }
  .solutions__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .cta-band__inner { text-align: center; justify-content: center; }
  .topbar__right { display: none; }

  /* mobile action bar takes over from the floating button */
  body { padding-bottom: 70px; }
  .fab { display: none; }
  .mobile-bar { display: flex; }
}

@media (max-width: 460px) {
  .footer__inner { grid-template-columns: 1fr; gap: 30px; }
  .topbar__left { gap: 14px; font-size: 0.8rem; }
  .hero__inner { padding: 60px 24px; }
  .how__grid { grid-template-columns: 1fr; }
}
