/* ==========================================================================
   SmartWash — Design tokens
   Display: DM Sans · Body: Inter (closest open-license match to Calibri)
   ========================================================================== */

:root{
  --navy: #0d1e3a;
  --navy-2: #142a4f;
  --blue: #0084c8;
  --blue-bright: #2fb2ec;
  --black: #000000;
  --ice: #eaf4fb;
  --mist: #f6f9fc;
  --slate: #5c6b82;
  --slate-light: #91a0b4;
  --white: #ffffff;
  --line: #dde7f0;

  --font-display: "DM Sans", "Segoe UI", sans-serif;
  --font-body: "Montserrat", "Segoe UI", sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-soft: 0 20px 50px -25px rgba(13, 30, 58, 0.35);
  --shadow-tight: 0 8px 20px -12px rgba(13, 30, 58, 0.3);

  --max-w: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4{
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

p{ margin: 0 0 1em; color: var(--slate); }
a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; }

.container{
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.eyebrow::before{
  content: "";
  width: 20px;
  height: 2px;
  background: var(--blue);
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:focus-visible{ outline: 3px solid var(--blue-bright); outline-offset: 3px; }
.btn-primary{
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-tight);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(0,122,186,0.55); }
.btn-ghost{
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-ghost:hover{ border-color: var(--navy); transform: translateY(-2px); }
.btn-on-dark{
  background: var(--white);
  color: var(--navy);
}
.btn-on-dark:hover{ transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(0,0,0,0.4); }
.btn-ghost-on-dark{
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost-on-dark:hover{ border-color: var(--white); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled{
  border-color: var(--line);
  box-shadow: 0 10px 30px -25px rgba(13,30,58,0.4);
}
.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand{ display: flex; align-items: center; gap: 10px; }
.brand-logo-img{ height: 34px; width: auto; display: block; }
.footer-brand .brand-logo-img{ height: 32px; }

.main-nav{ display: flex; align-items: center; gap: 36px; }
.main-nav a{
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after{ transform: scaleX(1); }
.main-nav a[aria-current="page"]{ color: var(--blue); }

.header-actions{ display: flex; align-items: center; gap: 14px; }

.nav-toggle{
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span{
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: transform .25s ease, opacity .25s ease;
}

/* ---------- Footer ---------- */
.site-footer{
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 28px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .brand-word .w-smart{ color: var(--white); }
.footer-brand p{ color: rgba(255,255,255,0.6); margin-top: 14px; max-width: 280px; }
.footer-col h4{
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul li{ margin-bottom: 12px; }
.footer-col a{ color: rgba(255,255,255,0.7); font-size: 14.5px; transition: color .2s ease; }
.footer-col a:hover{ color: var(--blue-bright); }
.social-row{ display: flex; gap: 12px; margin-top: 20px; }
.social-row a{
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease, opacity .2s ease;
}
.social-row a:hover{ transform: translateY(-2px); opacity: 0.85; }
.social-row img{ width: 38px; height: 38px; border-radius: 50%; display: block; }
.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  overflow: hidden;
  padding: 90px 0 80px;
  background:
    radial-gradient(900px 480px at 82% -10%, rgba(0,132,200,0.13), transparent 60%),
    var(--white);
}
.hero .container{
  display: block;
}
.hero-copy{
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.hero-copy .eyebrow{ justify-content: center; }
.hero-sub{ margin-left: auto; margin-right: auto; }
.hero h1{
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
}
.hero h1 .accent{ color: var(--blue); }
.hero-sub{ font-size: 18px; max-width: 480px; margin-bottom: 32px; }
.hero-cta{ display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.trust-line{ justify-content: center; }

/* ---------- Hero media (image now, video-ready later) ---------- */
.hero-media{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--navy);
}
.hero-media img,
.hero-media video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-media .droplet-badge{
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 16px 20px;
  font-family: var(--font-display);
}
.hero-media .badge-stat{ top: 6%; left: 4%; }
.hero-media .badge-stat .num{ font-size: 24px; font-weight: 800; color: var(--blue); }
.hero-media .badge-stat .label{ font-size: 11.5px; color: var(--slate); text-transform: uppercase; letter-spacing: .06em; }
.hero-media .badge-qr{ bottom: 6%; right: 4%; display: flex; align-items: center; gap: 10px; }
.hero-media .badge-qr svg{ width: 34px; height: 34px; }
.hero-media .badge-qr .label{ font-size: 12.5px; font-weight: 700; color: var(--navy); line-height: 1.3; }

@media (max-width: 640px){
  .hero-media .droplet-badge{ padding: 10px 14px; }
  .hero-media .badge-stat .num{ font-size: 18px; }
  .hero-media .badge-qr .label{ font-size: 11px; }
}

/* ---------- Stat bar ---------- */
.stat-bar{
  background: var(--navy);
  color: var(--white);
}
.stat-bar .container{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 44px 32px;
}
.stat-item{
  text-align: center;
  padding: 0 20px;
  border-left: 1px solid rgba(255,255,255,0.14);
}
.stat-item:first-child{ border-left: none; }
.stat-item .num{
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 800;
  color: var(--blue-bright);
}
.stat-item .label{ font-size: 13.5px; color: rgba(255,255,255,0.7); margin-top: 6px; }

/* ---------- Section shell ---------- */
.section{ padding: 110px 0; }
.section-alt{ background: var(--ice); }
.section-head{ max-width: 640px; margin-bottom: 64px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2{ font-size: clamp(28px, 3.4vw, 40px); }

/* ---------- Bay Strip (signature element: the real customer journey) ---------- */
.bay-strip{ position: relative; }
.bay-strip-track{
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.bay-strip-line{
  position: absolute;
  top: 44px;
  left: 40px;
  right: 40px;
  height: 0;
  border-top: 2.5px dotted var(--blue-bright);
  z-index: 0;
}
.bay-step{
  position: relative;
  z-index: 1;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.bay-step.in-view{ opacity: 1; transform: translateY(0); }
.bay-step .node{
  width: 88px; height: 88px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--blue-bright);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-tight);
}
.bay-step .node svg{ width: 36px; height: 36px; stroke: var(--white); }
.bay-step .time{
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  color: var(--blue); text-transform: uppercase; margin-bottom: 6px;
}
.bay-step h3{ font-size: 18px; margin-bottom: 8px; }
.bay-step p{ font-size: 14.5px; margin: 0; }

/* ---------- Cards ---------- */
.card-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: transparent; }
.card .icon-badge{
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ice);
  border: 1.5px solid var(--blue-bright);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.card .icon-badge svg{ width: 26px; height: 26px; stroke: var(--blue); }
.card h3{ font-size: 19px; margin-bottom: 10px; }
.card p{ font-size: 14.5px; margin-bottom: 0; }

/* Comparison cards: full-width illustration instead of a small icon badge */
.card.card-with-image{ padding: 0 0 32px; overflow: hidden; }
.card.card-with-image img{ width: 100%; height: auto; display: block; margin-bottom: 24px; }
.card.card-with-image h3{ padding: 0 28px 0; margin-bottom: 10px; }
.card.card-with-image p{ padding: 0 28px; }
.card .card-link{
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-family: var(--font-display); font-weight: 700; font-size: 14px;
  color: var(--blue);
}

/* ---------- Split section (image/text) ---------- */
.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-visual{
  aspect-ratio: 4/3.1;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-2) 55%, var(--blue) 140%);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.split-visual svg{ width: 62%; }
.check-list li{
  display: flex; gap: 12px; margin-bottom: 16px; font-size: 15px; color: var(--navy);
}
.check-list svg{ width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; stroke: var(--blue); }

/* ---------- CTA band ---------- */
.cta-band{
  background: linear-gradient(120deg, var(--navy) 0%, #0a1830 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cta-band::after{
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(0,122,186,0.35), transparent 70%);
  top: -160px; right: -100px;
  pointer-events: none;
}
.cta-band h2{ color: var(--white); font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 8px; }
.cta-band p{ color: rgba(255,255,255,0.7); margin-bottom: 0; }
.cta-band .cta-actions{ display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero{
  padding: 64px 0 72px;
  background: var(--ice);
  text-align: left;
}
.page-hero h1{ font-size: clamp(32px, 4.4vw, 48px); }
.page-hero .hero-sub{ margin-bottom: 0; }
.breadcrumb{
  font-size: 13px; color: var(--slate); font-family: var(--font-display); font-weight: 600;
  margin-bottom: 18px;
}
.breadcrumb a{ color: var(--blue); }

/* ---------- Track cards (B2B page) ---------- */
.track-list{ display: flex; flex-direction: column; gap: 28px; }
.track{
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 30px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  transition: box-shadow .3s ease, transform .3s ease;
}
.track:hover{ box-shadow: var(--shadow-soft); transform: translateY(-4px); }
.track .track-icon{
  width: 76px; height: 76px;
  border-radius: 22px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.track .track-icon svg{ width: 34px; height: 34px; stroke: var(--blue-bright); }
.track h3{ font-size: 21px; margin-bottom: 6px; }
.track p{ margin-bottom: 0; font-size: 14.5px; max-width: 480px; }
.track .track-cta{ white-space: nowrap; }

/* ---------- Requirements list ---------- */
.req-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.req-item{
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
}
.req-item .req-num{ font-family: var(--font-display); font-weight: 800; color: var(--blue-bright); font-size: 13px; letter-spacing: .1em; margin-bottom: 12px; }
.req-item h4{ font-size: 16px; margin-bottom: 6px; }
.req-item p{ font-size: 13.5px; margin: 0; }

/* ---------- Timeline (About page) ---------- */
.timeline{ position: relative; padding-left: 40px; }
.timeline::before{
  content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--line);
}
.timeline-item{ position: relative; padding-bottom: 44px; }
.timeline-item:last-child{ padding-bottom: 0; }
.timeline-item::before{
  content: ""; position: absolute; left: -40px; top: 4px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--blue);
}
.timeline-item .date{ font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--blue); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.timeline-item h4{ font-size: 17px; margin-bottom: 6px; }
.timeline-item p{ margin-bottom: 0; font-size: 14.5px; }

/* ---------- Values grid ---------- */
.value-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-item h4{ font-size: 16.5px; margin-bottom: 8px; }
.value-item p{ font-size: 13.5px; margin: 0; }
.value-item .num{ font-family: var(--font-display); font-size: 13px; font-weight: 800; color: var(--blue-bright); margin-bottom: 10px; display: block; }

/* ---------- Contact page ---------- */
.contact-wrap{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-info-card{
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.contact-info-card h3{ color: var(--white); font-size: 20px; }
.contact-info-card p{ color: rgba(255,255,255,0.65); }
.contact-detail{ display: flex; gap: 14px; margin-top: 26px; align-items: flex-start; }
.contact-detail svg{ width: 20px; height: 20px; stroke: var(--blue-bright); flex-shrink: 0; margin-top: 3px; }
.contact-detail .label{ font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,0.5); margin-bottom: 3px; }
.contact-detail .value{ font-size: 15px; font-weight: 600; }

.form-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-soft);
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field{ margin-bottom: 20px; }
.field label{
  display: block; font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 8px;
}
.field input, .field select, .field textarea{
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--mist);
  color: var(--navy);
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none; border-color: var(--blue); background: var(--white);
}
.field textarea{ resize: vertical; min-height: 120px; }
.radio-group{ display: flex; gap: 10px; flex-wrap: wrap; }
.radio-pill{
  position: relative;
}
.radio-pill input{ position: absolute; opacity: 0; }
.radio-pill span{
  display: inline-flex; padding: 10px 18px; border-radius: 999px; border: 1.5px solid var(--line);
  font-size: 13.5px; font-weight: 600; cursor: pointer; transition: all .2s ease;
}
.radio-pill input:checked + span{ background: var(--navy); border-color: var(--navy); color: var(--white); }
.form-note{ font-size: 12.5px; color: var(--slate-light); margin-top: 14px; }
.form-success{
  display: none;
  background: var(--ice);
  border: 1.5px solid var(--blue-bright);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-size: 14.5px;
  color: var(--navy);
  margin-bottom: 20px;
}
.form-success.visible{ display: block; }

.map-embed{
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 28px;
}
.map-embed iframe{ width: 100%; height: 280px; border: 0; display: block; }

/* ---------- Language toggle ---------- */
.lang-switch{
  display: flex;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.lang-btn{
  border: none;
  background: transparent;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--slate);
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.lang-btn.is-active{ background: var(--navy); color: var(--white); }
.lang-switch-on-dark{ border-color: rgba(255,255,255,0.25); }
.lang-switch-on-dark .lang-btn{ color: rgba(255,255,255,0.6); }
.lang-switch-on-dark .lang-btn.is-active{ background: var(--blue); color: var(--white); }

/* ---------- Service / pricing cards ---------- */
.card .price{
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--navy);
  background: var(--ice);
  padding: 6px 14px;
  border-radius: 999px;
}

/* Pricing tiles on the homepage: centered text */
#services-grid .card{ text-align: center; }
#services-grid .card .icon-badge{ margin-left: auto; margin-right: auto; }

/* ---------- Testimonials ---------- */
.testimonial-grid{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.testimonial-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 34px 32px;
  position: relative;
}
.testimonial-card .quote-mark{
  font-family: var(--font-display);
  font-size: 46px;
  color: var(--blue-bright);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.testimonial-card p{ color: var(--navy); font-size: 15.5px; margin-bottom: 18px; }
.testimonial-card .name{ font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--slate); }

/* ---------- Track list without CTA (used for step-by-step process) ---------- */
.track-no-cta{ grid-template-columns: 90px 1fr; }

/* ---------- Trust strip (placeholder for real client logos) ---------- */
.trust-strip{ padding: 8px 0 4px; }
.trust-strip-label{
  text-align: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 20px;
}
.trust-strip-row{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-placeholder{
  width: 116px;
  height: 44px;
  border: 1.5px dashed var(--line);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-light);
}

/* ---------- Location pills (home teaser) ---------- */
.location-strip{ padding: 4px 0 8px; }
.location-strip-inner{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.location-strip-label{
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  margin-right: 4px;
}
.location-pill{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--ice);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.location-pill svg{ width: 14px; height: 14px; stroke: var(--blue); }

/* ---------- Map section ---------- */
.map-frame{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}
#site-map{ width: 100%; height: 460px; background: var(--ice); }
.pin-marker{ display: block; }
.leaflet-popup-content-wrapper{ border-radius: 12px; font-family: var(--font-body); }
.leaflet-popup-content{ margin: 12px 16px; font-size: 13.5px; font-weight: 600; color: var(--navy); }
.leaflet-tooltip{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
  background: var(--white);
  border: none;
  border-radius: 8px;
  padding: 6px 12px;
  box-shadow: var(--shadow-tight);
}
.leaflet-tooltip-top:before{ border-top-color: var(--white); }
.pin-marker{ cursor: pointer; }

/* ---------- Locations page: location cards ---------- */
.location-list{
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}
.location-card{
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  transition: border-color .4s ease, box-shadow .4s ease, background .4s ease;
  scroll-margin-top: 100px;
}
.location-card.is-highlighted{
  border-color: var(--blue-bright);
  box-shadow: var(--shadow-soft);
  background: var(--ice);
}
.location-card-icon{
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ice);
  border: 1.5px solid var(--blue-bright);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.location-card-icon svg{ width: 26px; height: 26px; }
.location-card-body{ flex: 1; min-width: 0; }
.location-card-body h3{ font-size: 18px; margin-bottom: 6px; }
.location-address{ font-size: 14px; color: var(--slate); margin-bottom: 8px; }
.location-hours{
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600; color: var(--navy);
}
.location-hours svg{ width: 16px; height: 16px; stroke: var(--blue); flex-shrink: 0; }
.location-directions{
  display: inline-flex; align-items: center; gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
}
.location-directions svg{ width: 16px; height: 16px; }

@media (max-width: 640px){
  .location-card{ flex-direction: column; align-items: flex-start; text-align: left; }
  .location-directions{ width: 100%; justify-content: center; }
}

/* ---------- Business page: host / fleet tracks ---------- */
.track-block{ margin-bottom: 0; }
.track-block + .track-block{ margin-top: 90px; }
.track-block-head{ max-width: 640px; margin-bottom: 40px; }

/* ---------- Segments grid ---------- */
.segment-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.segment-pill{
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
}
.segment-pill .dot{ width: 8px; height: 8px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }

/* ---------- Client / partner carousel ---------- */
.client-carousel{
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.client-track{
  display: flex;
  gap: 28px;
  width: max-content;
  animation: client-scroll 28s linear infinite;
}
.client-carousel:hover .client-track{ animation-play-state: paused; }
@keyframes client-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
.client-tile{
  flex: 0 0 auto;
  width: 170px;
  height: 84px;
  background: var(--white);
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  text-align: center;
}
.client-tile img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter .2s ease, opacity .2s ease;
}
.client-tile:hover img{ filter: none; opacity: 1; }
.client-tile.is-placeholder{
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-light);
}

@media (prefers-reduced-motion: reduce){
  .client-track{ animation: none; }
}

/* ---------- Business form (compact variant of contact form) ---------- */
.biz-form-wrap{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

/* ---------- Trust line (under hero CTAs) ---------- */
.trust-line{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 13.5px;
  color: var(--slate);
}
.trust-line svg{ width: 18px; height: 18px; stroke: var(--blue); flex-shrink: 0; }

/* ---------- Pricing "popular" tier ---------- */
.card.is-popular{
  border-color: var(--blue);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.card.is-popular::before{
  content: attr(data-popular-label);
  position: absolute;
  top: -13px;
  left: 32px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border-radius: 999px;
}

/* ---------- Star rating (decorative trust signal) ---------- */
.stars{ display: flex; gap: 3px; margin-bottom: 14px; }
.stars svg{ width: 15px; height: 15px; fill: var(--blue-bright); stroke: none; }

/* ---------- Eco impact section ---------- */
.eco-section{
  background: linear-gradient(155deg, var(--navy) 0%, #0a1830 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}
.eco-section::after{
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(0,122,186,0.3), transparent 70%);
  bottom: -200px; left: -120px;
  pointer-events: none;
}
.eco-grid{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.eco-item{ text-align: left; }
.eco-item .eco-icon{
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.eco-item .eco-icon svg{ width: 24px; height: 24px; stroke: var(--blue-bright); }
.eco-item h3{ color: var(--white); font-size: 17px; margin-bottom: 8px; }
.eco-item p{ color: rgba(255,255,255,0.65); font-size: 14px; margin: 0; }
.eco-heading{ position: relative; z-index: 1; max-width: 560px; margin-bottom: 44px; }
.eco-heading .eyebrow{ color: var(--blue-bright); }
.eco-heading h2{ color: var(--white); }
.eco-heading p{ color: rgba(255,255,255,0.65); margin: 0; }

/* ---------- Service area (placeholder for future map) ---------- */
.area-card{
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--ice);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  flex-wrap: wrap;
}
.area-card .area-icon{
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.area-card .area-icon svg{ width: 30px; height: 30px; stroke: var(--blue-bright); }
.area-card h3{ font-size: 19px; margin-bottom: 6px; }
.area-card p{ margin: 0; font-size: 14.5px; max-width: 480px; }
.area-card-text{ flex: 1; min-width: 240px; }

/* ---------- FAQ accordion ---------- */
.faq-list{ max-width: 760px; margin: 0 auto; }
.faq-item{
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child{ border-top: 1px solid var(--line); }
.faq-q{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 4px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
.faq-q .plus{
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
}
.faq-q .plus::before, .faq-q .plus::after{
  content: "";
  position: absolute;
  background: var(--blue);
  transition: transform .25s ease;
}
.faq-q .plus::before{ top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.faq-q .plus::after{ left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.faq-item.is-open .faq-q .plus::after{ transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.is-open .faq-a{ max-height: 300px; }
.faq-a p{ padding: 0 4px 22px; margin: 0; font-size: 14.5px; }

/* ---------- Anchor scroll offset for header ---------- */
#pricing, #why-us, #faq{ scroll-margin-top: 100px; }

/* ---------- Thin-line icon utility (brand icon style) ---------- */
.icon-thin{
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Reveal on scroll (generic) ---------- */
.reveal{ opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view{ opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .split{ grid-template-columns: 1fr; }
  .card-grid{ grid-template-columns: 1fr 1fr; }
  .value-grid{ grid-template-columns: 1fr 1fr; }
  .req-grid{ grid-template-columns: 1fr 1fr; }
  .contact-wrap{ grid-template-columns: 1fr; }
  .stat-bar .container{ grid-template-columns: 1fr; gap: 24px; }
  .stat-item{ border-left: none; border-top: 1px solid rgba(255,255,255,0.14); padding-top: 24px; }
  .stat-item:first-child{ border-top: none; padding-top: 0; }
}

@media (max-width: 760px){
  .container{ padding: 0 20px; }
  .main-nav{
    position: fixed; inset: 84px 0 0 0; background: var(--white);
    flex-direction: column; align-items: flex-start; padding: 32px 28px; gap: 22px;
    transform: translateX(100%); transition: transform .3s ease; z-index: 90;
  }
  .main-nav.open{ transform: translateX(0); }
  .main-nav a{ font-size: 18px; }
  .nav-toggle{ display: block; }
  .header-actions .btn-ghost{ display: none; }
  .bay-strip-track{ grid-template-columns: 1fr; gap: 36px; }
  .bay-strip-line{ display: none; }
  .card-grid{ grid-template-columns: 1fr; }
  .value-grid{ grid-template-columns: 1fr; }
  .req-grid{ grid-template-columns: 1fr; }
  .segment-grid{ grid-template-columns: 1fr; }
  .track{ grid-template-columns: 1fr; text-align: left; }
  .track .track-cta{ width: 100%; }
  .track .track-cta .btn{ width: 100%; }
  .cta-band{ flex-direction: column; text-align: center; padding: 48px 28px; }
  .cta-band .cta-actions{ justify-content: center; }
  .form-row{ grid-template-columns: 1fr; }
  .section{ padding: 72px 0; }
  .footer-grid{ grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; }
  .testimonial-grid{ grid-template-columns: 1fr; }
  .eco-grid{ grid-template-columns: 1fr; gap: 28px; }
  .eco-section{ padding: 44px 24px; }
  .segment-grid{ grid-template-columns: 1fr 1fr; }
  .biz-form-wrap{ grid-template-columns: 1fr; }
  #site-map{ height: 340px; }
  .track-block + .track-block{ margin-top: 56px; }
}
