/* ==========================================================================
   E&J Junk Removal — "We Haul It All. You Relax."
   Static site stylesheet — clean, professional light theme
   Brand (from logo): medium green (#57a12e) + charcoal (#16181a) on white.
   Fonts: Anton / Archivo / Inter.
   ========================================================================== */

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

:root {
  /* Brand palette — matched to the logo (white + charcoal + medium green) */
  --lime: #57a12e;         /* logo green (accent / fills) */
  --lime-bright: #66b83a;  /* hover / highlight */
  --lime-deep: #3f7d1f;    /* darker green (text links, gradients) */
  --lime-glow: rgba(87, 161, 46, .28);

  --ink: #ffffff;          /* page background */
  --ink-2: #f4f7ef;        /* alternating section (soft green-tint) */
  --panel: #ffffff;        /* cards */
  --panel-hi: #f1f5ea;     /* elevated / hover */
  --line: #e4e8dd;         /* borders */

  --dark: #16181a;         /* charcoal (logo black) — topbar, footer, page hero */
  --dark-2: #202327;

  --text: #16181a;         /* headings / dark */
  --text-body: #4c554e;    /* body text */
  --muted: #78817b;        /* muted labels */

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 3px rgba(22,24,26,.08);
  --shadow: 0 18px 44px -22px rgba(22,24,26,.28);
  --shadow-lime: 0 16px 38px -16px var(--lime-glow);
  --maxw: 1200px;
  --header-h: 86px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: hidden; max-width: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text-body);
  background: var(--ink);
  font-size: 17px;
  line-height: 1.7;
}
h1, h2, h3, h4, h5 {
  font-family: 'Archivo', system-ui, sans-serif;
  color: var(--text);
  line-height: 1.1;
  margin: 0 0 .6em;
  font-weight: 800;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1rem; }
a { color: var(--lime-deep); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--lime-bright); }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; }
strong { color: var(--text); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 90px 0; position: relative; }
.section--alt { background: var(--ink-2); }
.center { text-align: center; }
.grid { display: grid; gap: 26px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 16px;
}
.eyebrow { color: var(--lime-deep); }
.eyebrow::before { content: ''; width: 26px; height: 3px; background: var(--lime); display: inline-block; }
.display { font-family: 'Anton', sans-serif; font-weight: 400; letter-spacing: .005em; text-transform: uppercase; line-height: .98; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Archivo', sans-serif; font-weight: 800;
  padding: 15px 28px; border-radius: var(--radius-sm);
  cursor: pointer; border: 2px solid transparent;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  font-size: .98rem; line-height: 1; text-align: center; letter-spacing: .02em;
  text-transform: uppercase;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--lime); color: #fff; }
.btn-primary:hover { background: var(--lime-bright); color: #fff; box-shadow: var(--shadow-lime); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--line); }
.btn-outline:hover { border-color: var(--lime); color: var(--lime); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #000; color: var(--lime-bright); box-shadow: var(--shadow); }
.btn-white { background: #fff; color: var(--dark); }
.btn-white:hover { background: var(--ink-2); color: var(--dark); box-shadow: var(--shadow); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }

/* ---------- Hexagon icon ---------- */
.hex {
  --hex-size: 58px;
  width: var(--hex-size); height: var(--hex-size); flex: none;
  display: grid; place-items: center;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  background: var(--lime); color: #fff;
}
.hex svg { width: 46%; height: 46%; }
.hex.hex-outline { background: var(--panel-hi); color: var(--lime); border: 0; position: relative; }

/* ---------- Top utility bar ---------- */
.topbar { background: var(--dark); color: #c6cdc4; font-size: .86rem; }
.topbar .container { display: flex; flex-wrap: wrap; gap: 6px 26px; align-items: center; justify-content: space-between; padding-top: 9px; padding-bottom: 9px; }
.topbar a { color: #c6cdc4; }
.topbar a:hover { color: var(--lime-bright); }
.topbar-group { display: flex; flex-wrap: wrap; gap: 6px 22px; align-items: center; }
.topbar .stat { display: inline-flex; align-items: center; gap: 8px; }
.topbar .badge { background: var(--lime); color: #fff; font-family: 'Archivo', sans-serif; font-weight: 800; padding: 2px 10px; border-radius: 6px; font-size: .74rem; letter-spacing: .05em; text-transform: uppercase; }
.topbar svg { width: 15px; height: 15px; flex: none; color: var(--lime); }

/* ---------- Header / nav ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand img { height: 54px; width: auto; display: block; }
/* Emblem logo (white-background emblem blends into the white header) */
.brand img.brand-logo { height: 78px; width: auto; display: block; }
.f-logo { height: 82px; }
/* Text wordmark fallback (until official logo image is added) */
.brand-wm { display: flex; flex-direction: column; line-height: .82; }
.brand-wm .ej { font-family: 'Anton', sans-serif; font-size: 2rem; color: var(--lime); letter-spacing: .01em; display: inline-flex; align-items: center; }
.brand-wm .ej .amp { color: var(--text); margin: 0 .02em; }
.brand-wm .ej svg { width: 16px; height: 16px; color: var(--lime); margin-left: 3px; transform: translateY(-6px); }
.brand-wm .jr { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: .74rem; letter-spacing: .34em; color: var(--text); text-transform: uppercase; padding-left: 2px; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a.nav-link {
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: .96rem;
  color: var(--text); padding: 10px 15px; border-radius: 8px; display: inline-flex; align-items: center; gap: 6px;
  text-transform: uppercase; letter-spacing: .03em;
}
.nav-links a.nav-link:hover { background: var(--panel-hi); color: var(--lime); }
.nav-links a.nav-link.active { color: var(--lime); }
.nav-actions { display: flex; align-items: center; gap: 12px; flex: none; }

/* Mobile toggle */
.nav-toggle { display: none; background: transparent; border: 0; cursor: pointer; padding: 8px; border-radius: 8px; color: var(--text); }
.nav-toggle:hover { background: var(--panel-hi); color: var(--lime); }
.nav-toggle svg { width: 30px; height: 30px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 480px at 84% -8%, rgba(87,161,46,.10), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, #f4f7ef 100%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(rgba(22,24,26,.045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(22,24,26,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(circle at 75% 20%, #000, transparent 72%);
  mask-image: radial-gradient(circle at 75% 20%, #000, transparent 72%);
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; padding: 76px 0 84px; }
.hero h1 { color: var(--text); margin-bottom: 18px; }
.hero h1 .hl { color: var(--lime); display: block; }
.hero-lead { font-size: 1.2rem; max-width: 540px; color: var(--text-body); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust { display: flex; flex-wrap: nowrap; justify-content: space-between; gap: 18px; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); }
.hero-trust .stat { flex: 1 1 0; min-width: 0; }
.hero-trust .stat b { font-family: 'Anton', sans-serif; font-size: 1.75rem; color: var(--lime-deep); display: block; line-height: 1; letter-spacing: .01em; white-space: nowrap; }
.hero-trust .stat span { font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }

/* Hero visual: bold framed panel with image slot */
.hero-visual { position: relative; }
.hero-panel {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); background: linear-gradient(160deg, #1a1d21, #0f1113);
  aspect-ratio: 5 / 4; box-shadow: var(--shadow);
}
.hero-panel img { width: 100%; height: 100%; object-fit: cover; }
/* logo showcase variant of the hero panel */
.hero-panel--logo { background: radial-gradient(circle at 50% 38%, #ffffff, #eef2e2); border-color: rgba(255,255,255,.12); display: grid; place-items: center; padding: 7%; }
.hero-panel--logo img { width: 100%; height: 100%; object-fit: contain; }
/* placeholder shown until a real photo is dropped in */
.img-slot { position: relative; display: grid; place-items: center; text-align: center; color: var(--muted); padding: 24px; }
.img-slot::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(400px 260px at 70% 20%, rgba(169,217,43,.12), transparent 65%),
              repeating-linear-gradient(135deg, rgba(255,255,255,.02) 0 12px, transparent 12px 24px);
}
.img-slot .is-in { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.img-slot .hex { --hex-size: 74px; }
.img-slot small { font-family: 'Archivo', sans-serif; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .74rem; }
.hero-float {
  position: absolute; left: -14px; bottom: 22px; z-index: 3;
  display: flex; align-items: center; gap: 12px; background: #0c0d0e; border: 1px solid var(--line);
  padding: 13px 17px; border-radius: 14px; box-shadow: var(--shadow);
}
.hero-float .hex { --hex-size: 44px; }
.hero-float b { font-family: 'Archivo', sans-serif; font-weight: 800; color: var(--text); display: block; line-height: 1.1; font-size: 1rem; }
.hero-float span { color: var(--muted); font-size: .8rem; }

/* diagonal lime tag on hero visual */
.hero-tag {
  position: absolute; top: 18px; right: -6px; z-index: 3;
  background: var(--lime); color: #0c0d0e; font-family: 'Archivo', sans-serif; font-weight: 900;
  padding: 8px 18px; letter-spacing: .05em; text-transform: uppercase; font-size: .82rem;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%); box-shadow: var(--shadow);
}

/* ---------- Value badges strip ---------- */
.badges { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.badges .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.badge-item { display: flex; align-items: center; gap: 16px; padding: 26px 22px; color: var(--text); }
.badge-item + .badge-item { border-left: 1px solid var(--line); }
.badge-item .hex { --hex-size: 52px; background: var(--lime); color: #fff; }
.badge-item b { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 1.12rem; text-transform: uppercase; letter-spacing: .02em; display: block; line-height: 1.05; color: var(--text); }
.badge-item span { font-size: .88rem; color: var(--muted); font-weight: 600; }

/* ---------- Section heading ---------- */
.section-head { max-width: 760px; margin: 0 auto 54px; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head p { color: var(--text-body); font-size: 1.08rem; }

/* ---------- Service cards ---------- */
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px 28px; position: relative; overflow: hidden;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.card::before { content: ''; position: absolute; left: 0; top: 0; height: 4px; width: 0; background: var(--lime); transition: width .35s ease; }
.card:hover { transform: translateY(-6px); border-color: rgba(87,161,46,.45); background: #fff; box-shadow: var(--shadow); }
.card:hover::before { width: 100%; }
.card .hex { --hex-size: 62px; margin-bottom: 20px; }
.card h3 { margin-bottom: 10px; text-transform: uppercase; letter-spacing: .01em; }
.card p { color: var(--text-body); margin-bottom: 0; font-size: .98rem; }
.card .card-link { margin-top: 18px; display: inline-flex; align-items: center; gap: 7px; font-family: 'Archivo', sans-serif; font-weight: 800; font-size: .86rem; text-transform: uppercase; letter-spacing: .04em; color: var(--lime-deep); }
.card .card-link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.card:hover .card-link svg { transform: translateX(4px); }

/* ---------- Feature grid ---------- */
.features { grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 16px; align-items: flex-start;
  padding: 30px 26px 28px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease, background .32s ease;
}
.feature::before {
  content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--lime-bright));
  transform: scaleX(0); transform-origin: left; transition: transform .38s ease;
}
.feature:hover { transform: translateY(-6px); background: var(--panel); box-shadow: var(--shadow); border-color: rgba(87,161,46,.42); }
.feature:hover::before { transform: scaleX(1); }
.feature .hex { --hex-size: 54px; transition: transform .3s ease; }
.feature:hover .hex { transform: rotate(-6deg) scale(1.06); }
.feature h3 { font-size: 1.06rem; margin-bottom: 7px; text-transform: uppercase; letter-spacing: .01em; }
.feature p { color: var(--text-body); font-size: .95rem; margin: 0; }
.feature p a { font-weight: 700; color: var(--lime-deep); }
.feature p a:hover { color: var(--lime-bright); }

/* ---------- Checklist / haul pills ---------- */
.pills { list-style: none; display: flex; flex-wrap: wrap; gap: 11px; }
.pills li {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--panel); border: 1px solid var(--line); color: var(--text);
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: .92rem;
  padding: 10px 18px; border-radius: 999px; transition: border-color .2s ease, transform .2s ease, color .2s ease;
}
.pills li:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-2px); }
.pills svg { width: 17px; height: 17px; color: var(--lime); flex: none; }

.checklist { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px 30px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist svg { width: 22px; height: 22px; color: var(--lime); flex: none; margin-top: 3px; }

/* ---------- Split section ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  min-height: 420px; background: #eef1ea; box-shadow: var(--shadow);
}
.media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.media .media-badge {
  position: absolute; left: 20px; bottom: 20px; z-index: 2; display: flex; gap: 13px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px 18px; box-shadow: var(--shadow);
}
.media .media-badge .hex { --hex-size: 46px; }
.media .media-badge b { font-family: 'Anton', sans-serif; font-size: 1.5rem; color: var(--lime-deep); display: block; line-height: 1; }
.media .media-badge span { font-size: .84rem; color: var(--muted); }

/* ---------- Service detail blocks ---------- */
.svc-block { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; padding: 16px 0; }
.svc-block:nth-child(even) .svc-text { order: 2; }
.svc-visual {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 380px; border: 1px solid var(--line);
  background: #eef1ea; box-shadow: var(--shadow);
}
.svc-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.svc-text .svc-tag { color: var(--lime-deep); font-family: 'Archivo', sans-serif; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .8rem; }
.svc-divider { height: 1px; background: var(--line); margin: 60px 0; border: 0; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--dark);
  padding: 74px 0 66px;
}
.page-hero h1 { color: #fff; }
.page-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 46px 46px; -webkit-mask-image: radial-gradient(circle at 78% 10%, #000, transparent 70%); mask-image: radial-gradient(circle at 78% 10%, #000, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .88rem; color: #9aa39c; margin-bottom: 16px; }
.breadcrumb a { color: #c6cdc4; }
.breadcrumb a:hover { color: var(--lime-bright); }
.breadcrumb svg { width: 15px; height: 15px; }
.page-hero p { color: #c6cdc4; max-width: 640px; margin: 0; font-size: 1.1rem; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--dark-2), var(--dark)); color: #fff; position: relative; overflow: hidden; }
.cta-band::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .6;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 40px 40px; -webkit-mask-image: radial-gradient(circle at 20% 50%, #000, transparent 70%); mask-image: radial-gradient(circle at 20% 50%, #000, transparent 70%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #c6cdc4; font-size: 1.14rem; max-width: 640px; }
.cta-phone { display: inline-flex; align-items: center; gap: 14px; margin: 6px 0 4px; }
.cta-phone .hex { --hex-size: 58px; background: var(--lime); color: #fff; }
.cta-phone b { font-family: 'Anton', sans-serif; font-size: clamp(2rem, 5vw, 3.1rem); color: #fff; line-height: 1; letter-spacing: .01em; }
.cta-band .hero-cta { margin-top: 24px; }

/* ---------- Contact ---------- */
.contact-intro { margin-bottom: 28px; }
.contact-intro p { margin-bottom: 0; max-width: 62ch; }
.contact-grid { grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.info-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; height: 100%; }
.info-row { display: flex; gap: 15px; align-items: flex-start; padding: 18px 0; border-top: 1px solid var(--line); }
.info-row:first-of-type { border-top: 0; padding-top: 0; }
.info-row .hex { --hex-size: 46px; }
.info-row h4 { margin: 0 0 3px; font-family: 'Archivo', sans-serif; font-size: 1.02rem; color: var(--text); text-transform: uppercase; letter-spacing: .02em; }
.info-row p { margin: 0; color: var(--text-body); font-size: .98rem; }
.info-row a { color: var(--text-body); }
.info-row a:hover { color: var(--lime); }

.contact-map {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.contact-map-head { padding: 28px 28px 18px; flex: none; }
.contact-map-head h3 { margin: 0 0 8px; text-transform: uppercase; letter-spacing: .02em; }
.contact-map-head p { margin: 0; color: var(--text-body); font-size: .98rem; }
.contact-map-frame {
  width: 100%;
  flex: 1;
  min-height: 280px;
  border: 0;
  display: block;
  background: var(--ink-2);
}
.contact-map-note {
  margin: 0;
  padding: 14px 28px 20px;
  font-size: .84rem;
  color: var(--muted);
  flex: none;
}
.contact-map-note a { color: var(--lime-deep); font-weight: 600; }
.contact-map-note a:hover { color: var(--lime); }

/* Form */
.form { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--text); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 15px; color: var(--text); font-family: inherit; font-size: 1rem; transition: border-color .2s ease, box-shadow .2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--lime); box-shadow: 0 0 0 3px rgba(87,161,46,.16); }
.field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .84rem; color: var(--muted); margin: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: #c6cdc4; padding: 62px 0 0; }
.footer a { color: #c6cdc4; }
.footer a:hover { color: var(--lime-bright); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 36px; padding-bottom: 44px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; font-family: 'Archivo', sans-serif; text-transform: uppercase; letter-spacing: .06em; }
.footer .f-brand { margin-bottom: 16px; }
.footer .brand-logo, .footer .f-logo { background: #fff; border-radius: 12px; padding: 10px 14px; box-shadow: 0 6px 18px rgba(0,0,0,.25); }
.footer p { color: #949d95; font-size: .95rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: .96rem; }
.footer .f-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer .f-contact svg { width: 18px; height: 18px; color: var(--lime); flex: none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; align-items: center; font-size: .88rem; color: #949d95; }
.footer-bottom .f-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom .f-badges span { display: inline-flex; align-items: center; gap: 7px; }
.footer-bottom .f-badges svg { width: 15px; height: 15px; color: var(--lime); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.22,.7,.25,1), transform .7s cubic-bezier(.22,.7,.25,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal-right { transform: translateY(30px); }
.reveal-scale { transform: scale(.96); }
.reveal-right.in, .reveal-scale.in { transform: none; }
.stagger > .reveal:nth-child(1) { transition-delay: .05s; }
.stagger > .reveal:nth-child(2) { transition-delay: .13s; }
.stagger > .reveal:nth-child(3) { transition-delay: .21s; }
.stagger > .reveal:nth-child(4) { transition-delay: .29s; }
.stagger > .reveal:nth-child(5) { transition-delay: .37s; }
.stagger > .reveal:nth-child(6) { transition-delay: .45s; }
.stagger > .reveal:nth-child(7) { transition-delay: .53s; }
.stagger > .reveal:nth-child(8) { transition-delay: .61s; }
.stagger > .reveal:nth-child(9) { transition-delay: .69s; }

/* ---------- Accessibility ---------- */
:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; border-radius: 4px; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--lime); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 100; font-weight: 700; }
.skip-link:focus { left: 8px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .hero-visual { max-width: 560px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--ink); border-bottom: 1px solid var(--line); padding: 14px 18px 22px; box-shadow: var(--shadow);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-links a.nav-link { padding: 14px 12px; }
  .nav-actions .btn-hide-sm { display: none; }
  .split, .svc-block, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .svc-block:nth-child(even) .svc-text { order: 0; }
  .cards-3, .cards-2 { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .badges .container { grid-template-columns: 1fr; }
  .badge-item + .badge-item { border-left: 0; border-top: 1px solid var(--line); }
  .section { padding: 64px 0; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-map-frame { min-height: 260px; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1 1 100%; }
  .topbar-group:first-child .stat.hide-xs { display: none; }
  /* keep the header from overflowing on phones */
  .nav { gap: 8px; }
  .nav-actions { gap: 8px; }
  .brand-wm .ej { font-size: 1.6rem; }
  .brand-wm .ej svg { width: 13px; height: 13px; transform: translateY(-5px); }
  .brand-wm .jr { font-size: .62rem; letter-spacing: .2em; }
  .nav-actions .btn { padding: 11px 15px; font-size: .82rem; }
  .cta-phone b { font-size: 2rem; }
  .brand img.brand-logo { height: 58px; border-radius: 10px; }
}

/* ==========================================================================
   PROFESSIONAL UPGRADES — layered hero, photo cards, entrance & float motion
   ========================================================================== */

/* ---- Hero: animated background decor + glow blobs ---- */
.hero::before {
  content: ''; position: absolute; top: -160px; right: -130px; width: 520px; height: 520px; z-index: 0;
  background: radial-gradient(circle at 30% 30%, rgba(87,161,46,.12), transparent 70%); border-radius: 50%;
  animation: heroBlob 17s ease-in-out infinite; pointer-events: none;
}
.hero-deco { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-deco .shape { position: absolute; border-radius: 50%; filter: blur(10px); will-change: transform; }
.hero-deco .shape-1 { width: 88px; height: 88px; left: 5%; top: 24%; background: radial-gradient(circle at 30% 30%, rgba(87,161,46,.20), transparent 72%); animation: heroFloat 9s ease-in-out infinite; }
.hero-deco .shape-2 { width: 52px; height: 52px; left: 15%; bottom: 16%; background: radial-gradient(circle at 30% 30%, rgba(87,161,46,.16), transparent 72%); animation: heroFloat 11s ease-in-out infinite 1s; }
.hero-deco .shape-3 { width: 120px; height: 120px; right: 7%; bottom: 12%; background: radial-gradient(circle at 30% 30%, rgba(87,161,46,.12), transparent 72%); animation: heroFloat 13s ease-in-out infinite .5s; }
.hero-deco .shape-4 { width: 38px; height: 38px; right: 24%; top: 16%; background: radial-gradient(circle at 30% 30%, rgba(87,161,46,.18), transparent 72%); animation: heroFloat 8s ease-in-out infinite 2s; }
.hero-deco .shape-5 { width: 66px; height: 66px; left: 40%; top: 8%; background: radial-gradient(circle at 30% 30%, rgba(87,161,46,.10), transparent 72%); animation: heroFloat 12s ease-in-out infinite 1.5s; }

/* rotating headline word */
.hero h1 .hero-rotate {
  display: inline-block; min-height: 1.02em; color: var(--lime-deep);
  transition: opacity .45s ease, transform .45s cubic-bezier(.22,.7,.25,1); will-change: opacity, transform;
}
.hero h1 .hero-rotate.is-out { opacity: 0; transform: translateY(14px); }

/* ---- Layered image hero stage (3D parallax) ---- */
.hero-visual { position: relative; padding: 8px 14px; perspective: 1100px; }
.hero-stage { position: relative; transform-style: preserve-3d; will-change: transform; transition: transform .35s cubic-bezier(.22,.7,.25,1); }
.hero-frame {
  position: relative; border-radius: 24px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow); aspect-ratio: 5 / 4.3; animation: heroFloatMain 10s ease-in-out infinite; background: #eef1ea;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s ease; }
.hero-frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,10,7,0) 40%, rgba(8,10,7,.55) 100%); }
.hero-visual:hover .hero-frame img { transform: scale(1.05); }
.hero-mini {
  position: absolute; left: -12px; bottom: 46px; width: 176px; border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow); border: 5px solid #fff; background: #fff; z-index: 3;
}
.hero-mini img { width: 100%; height: 122px; object-fit: cover; display: block; }
.float-badge {
  position: absolute; right: -8px; top: 26px; z-index: 3; background: #fff; color: var(--text);
  border: 1px solid var(--line); padding: 13px 17px; border-radius: 16px; box-shadow: var(--shadow);
  display: flex; gap: 12px; align-items: center;
}
.float-badge .fb-ico { display: grid; place-items: center; width: 44px; height: 44px; flex: none; background: var(--lime); color: #fff; clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%); }
.float-badge .fb-ico svg { width: 21px; height: 21px; }
.float-badge b { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 1.02rem; display: block; line-height: 1.1; color: var(--text); }
.float-badge small { color: var(--muted); font-size: .8rem; }
.float-chip {
  position: absolute; z-index: 4; display: flex; align-items: center; gap: 8px;
  padding: 8px 13px 8px 8px; border-radius: 13px; font-size: .82rem; font-weight: 800;
  font-family: 'Archivo', sans-serif; color: var(--text); white-space: nowrap;
  background: rgba(255,255,255,.94); backdrop-filter: blur(6px); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.float-chip .fc-ico { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; background: rgba(87,161,46,.14); color: var(--lime-deep); flex: none; }
.float-chip .fc-ico svg { width: 17px; height: 17px; }
.float-chip-tl { left: -24px; top: 40%; }
.float-chip-br { right: -18px; bottom: 66px; }
.float-1 { animation: heroFloatA 6.5s ease-in-out infinite; }
.float-2 { animation: heroFloatB 8s ease-in-out infinite; }

/* ---- Hero entrance stagger ---- */
.hero-a { animation: heroFadeUp .85s cubic-bezier(.22,.7,.25,1) both; }
.hero-a-1 { animation-delay: .06s; } .hero-a-2 { animation-delay: .16s; }
.hero-a-3 { animation-delay: .30s; } .hero-a-4 { animation-delay: .44s; }
.hero-a-5 { animation-delay: .56s; } .hero-a-6 { animation-delay: .64s; }
.hero-a-7 { animation-delay: .72s; } .hero-a-8 { animation-delay: .80s; }
.hero-a-visual { animation: heroScaleIn 1.05s cubic-bezier(.22,.7,.25,1) both; animation-delay: .22s; }

/* premium shimmering CTA */
.btn-cta { position: relative; overflow: hidden; }
.btn-cta::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: -130%; width: 55%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-22deg); transition: left .65s ease; pointer-events: none;
}
.btn-cta:hover::before { left: 150%; }
.btn-cta svg { transition: transform .25s ease; }
.btn-cta:hover svg { transform: translateX(4px); }

@keyframes heroFadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes heroScaleIn { from { opacity: 0; transform: scale(.92) translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes heroFloatMain { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes heroFloatA { 0%, 100% { transform: translate3d(0,0,26px); } 50% { transform: translate3d(0,-12px,26px); } }
@keyframes heroFloatB { 0%, 100% { transform: translate3d(0,0,16px); } 50% { transform: translate3d(0,11px,16px); } }
@keyframes heroFloat { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(0,-22px); } }
@keyframes heroBlob { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(26px,20px) scale(1.08); } }

/* ---- Photo service cards ---- */
.card--photo { padding: 0; }
.card--photo::before { z-index: 3; }
.card .card-media { position: relative; height: 200px; overflow: hidden; }
.card .card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card--photo:hover .card-media img { transform: scale(1.08); }
.card .card-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,10,7,0) 45%, rgba(8,10,7,.55)); }
.card .card-ico {
  position: absolute; left: 18px; bottom: 16px; z-index: 2; margin: 0;
  display: grid; place-items: center; width: 54px; height: 54px;
  background: var(--lime); color: #fff; box-shadow: var(--shadow);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
}
.card .card-ico svg { width: 26px; height: 26px; }
.card .card-body { padding: 26px; }
.card .card-body h3 { margin-bottom: 8px; }
.card .card-body p { color: var(--text-body); margin-bottom: 0; font-size: .98rem; }

/* ---- Split / svc media: hover zoom + overlay ---- */
.media img { transition: transform .9s ease; }
.media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(8,10,7,.05) 30%, rgba(8,10,7,.5)); z-index: 1; }
.media:hover img { transform: scale(1.05); }
.media .media-badge { z-index: 2; }
.svc-visual img { transition: transform .85s ease; }
.svc-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(8,10,7,0) 55%, rgba(8,10,7,.42)); z-index: 1; }
.svc-visual:hover img { transform: scale(1.05); }
.svc-visual .svc-vtag {
  position: absolute; left: 18px; bottom: 18px; z-index: 2; display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.94); backdrop-filter: blur(6px); border: 1px solid var(--line);
  color: var(--text); font-family: 'Archivo', sans-serif; font-weight: 800; font-size: .82rem;
  padding: 9px 14px; border-radius: 12px; text-transform: uppercase; letter-spacing: .03em;
}
.svc-visual .svc-vtag svg { width: 17px; height: 17px; color: var(--lime-deep); }

/* ---- Inner page hero background image ---- */
.page-hero .ph-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .16; z-index: 0; filter: grayscale(.2); }
.page-hero::before { content: ''; position: absolute; inset: 0; z-index: 0; background: linear-gradient(120deg, rgba(12,13,14,.88), rgba(12,13,14,.62)); }

/* ---- Hero motion on tablet/mobile: flatten 3D ---- */
@media (max-width: 1024px) {
  .hero-visual { max-width: 560px; margin: 0 auto; }
}
@media (max-width: 860px) {
  .hero-visual { perspective: none; padding: 0; }
  .hero-stage { transform: none !important; }
  .hero-mini { display: none; }
  .float-chip { display: none; }
  .float-badge { right: 10px; top: 10px; padding: 10px 13px; }
  .float-badge .fb-ico { width: 38px; height: 38px; }
  .float-1, .float-2 { animation: heroFloatMain 7s ease-in-out infinite; }
  .hero-deco .shape-2, .hero-deco .shape-4 { display: none; }
}

/* ==========================================================================
   Live GPS tracking dashboard (Uber-style) — dispatched & GPS-tracked crew
   ========================================================================== */
.tracker {
  display: grid; grid-template-columns: 1.55fr 1fr;
  background: var(--panel); border: 1px solid var(--line); border-radius: 24px;
  overflow: hidden; box-shadow: var(--shadow);
}
.tracker-map { position: relative; min-height: 440px; background: #eef1f2; overflow: hidden; }
.tracker-map .map-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
/* pulse uses transform:scale (cross-browser) instead of animating the SVG r attribute */
.dest-pulse2 { transform-box: fill-box; transform-origin: center; animation: tmPulse2 1.9s ease-out infinite; }
@keyframes tmPulse2 { 0% { transform: scale(.5); opacity: .55; } 100% { transform: scale(3); opacity: 0; } }

/* ETA badge (charcoal) */
.tm-eta2 {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  background: var(--dark); color: #fff; border-radius: 16px; padding: 12px 18px;
  box-shadow: var(--shadow); text-align: left;
}
.tm-eta2 small { display: block; font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: #9fe08a; }
.tm-eta2 b { display: block; font-family: 'Anton', sans-serif; font-size: 1.8rem; line-height: 1.02; margin: 2px 0 3px; letter-spacing: .01em; }
.tm-eta2 span { font-size: .78rem; color: #c6cdc4; }

/* crew card */
.tm-tech {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  display: flex; align-items: center; gap: 11px; max-width: 210px;
  background: rgba(255,255,255,.97); backdrop-filter: blur(6px);
  border-radius: 14px; padding: 9px 13px 9px 9px; box-shadow: var(--shadow-sm);
}
.tm-tech .tm-av { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; flex: none; overflow: hidden; background: linear-gradient(135deg, var(--lime), var(--lime-deep)); color: #fff; }
.tm-tech .tm-av svg { width: 30px; height: 30px; }
.tm-tech small { display: block; font-size: .66rem; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.tm-tech b { display: block; font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 1.02rem; color: var(--text); line-height: 1.15; }
.tm-tech .tm-status { display: inline-flex; align-items: center; gap: 5px; font-size: .76rem; font-weight: 800; color: var(--lime-deep); }
.tm-tech .tm-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgba(87,161,46,.5); animation: tmLive 1.7s ease-out infinite; }
@keyframes tmLive { 0% { box-shadow: 0 0 0 0 rgba(87,161,46,.55); } 100% { box-shadow: 0 0 0 9px rgba(87,161,46,0); } }

/* address card */
.tm-loc {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; align-items: center; gap: 12px; max-width: 300px;
  background: rgba(255,255,255,.98); backdrop-filter: blur(6px);
  border-radius: 14px; padding: 10px 16px; box-shadow: var(--shadow);
}
.tm-loc .tm-pin { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: #fde8e8; color: #e5484d; flex: none; }
.tm-loc .tm-pin svg { width: 20px; height: 20px; }
.tm-loc small { display: block; font-size: .66rem; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); }
.tm-loc b { display: block; font-family: 'Archivo', sans-serif; font-weight: 800; font-size: .92rem; color: var(--text); line-height: 1.3; }

/* side panel */
.tracker-side { padding: 20px; display: flex; flex-direction: column; gap: 16px; background: var(--ink-2); }
.trk-card { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 18px; box-shadow: var(--shadow-sm); }
.trk-card-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 15px; }
.trk-card-head h3 { margin: 0; font-size: 1.14rem; text-transform: uppercase; letter-spacing: .01em; }
.pill-live { display: inline-flex; align-items: center; gap: 6px; background: #e6f4dd; color: var(--lime-deep); font-family: 'Archivo', sans-serif; font-weight: 800; font-size: .74rem; padding: 4px 11px; border-radius: 999px; flex: none; text-transform: uppercase; letter-spacing: .04em; }
.pill-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); }
.trk-rows { display: grid; gap: 10px; }
.trk-rows .row { display: flex; gap: 8px; font-size: .96rem; line-height: 1.3; }
.trk-rows .row .k { color: var(--muted); min-width: 78px; flex: none; }
.trk-rows .row .v { color: var(--text); font-weight: 700; font-family: 'Archivo', sans-serif; }
.trk-rows .row .v.stat { color: var(--lime-deep); }

/* live updates timeline */
.upd { display: grid; grid-template-columns: 66px 24px 1fr; align-items: start; column-gap: 11px; position: relative; padding-bottom: 15px; }
.upd:last-child { padding-bottom: 0; }
.upd .u-time { font-size: .76rem; color: var(--muted); text-align: right; padding-top: 2px; font-variant-numeric: tabular-nums; }
.upd .u-node { position: relative; display: grid; place-items: center; width: 24px; height: 24px; }
.upd .u-node::after { content: ''; position: absolute; top: 23px; bottom: -15px; left: 50%; width: 2px; transform: translateX(-50%); background: var(--line); }
.upd:last-child .u-node::after { display: none; }
.u-done { width: 22px; height: 22px; border-radius: 50%; background: var(--lime); display: grid; place-items: center; }
.u-done svg { width: 13px; height: 13px; color: #fff; }
.u-active { width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: inset 0 0 0 3.5px var(--lime); position: relative; }
.u-active::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; box-shadow: 0 0 0 0 rgba(87,161,46,.5); animation: updPulse 1.7s ease-out infinite; }
@keyframes updPulse { 0% { box-shadow: 0 0 0 0 rgba(87,161,46,.5); } 100% { box-shadow: 0 0 0 10px rgba(87,161,46,0); } }
.u-pending { width: 18px; height: 18px; border-radius: 50%; background: #fff; border: 2px solid #cdd3c6; }
.upd .u-label { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: .93rem; color: var(--text); padding-top: 2px; }
.upd.is-pending .u-label { color: var(--muted); }

/* benefits row under dashboard */
.trk-benefits { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 30px; }
.trk-benefits li { display: flex; gap: 12px; align-items: flex-start; background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 15px; box-shadow: var(--shadow-sm); }
.trk-benefits .b-ico { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px; background: rgba(87,161,46,.12); color: var(--lime-deep); flex: none; }
.trk-benefits .b-ico svg { width: 21px; height: 21px; }
.trk-benefits b { display: block; font-family: 'Archivo', sans-serif; font-weight: 800; font-size: .96rem; color: var(--text); line-height: 1.2; margin-bottom: 3px; }
.trk-benefits span { font-size: .84rem; color: var(--muted); }

@media (max-width: 860px) {
  .tracker { grid-template-columns: 1fr; }
  .tracker-map { min-height: 360px; }
  .trk-benefits { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .trk-benefits { grid-template-columns: 1fr; }
  .tm-eta2 { padding: 10px 14px; } .tm-eta2 b { font-size: 1.45rem; }
  .tm-tech { max-width: 175px; padding: 7px 11px 7px 7px; }
  .tm-tech .tm-av { width: 36px; height: 36px; }
  .tm-tech b { font-size: .92rem; }
  .tm-loc { max-width: 230px; padding: 9px 13px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
