:root {
  --bg: #080b10;
  --surface: rgba(17, 21, 29, 0.78);
  --surface-solid: #11151d;
  --surface-2: #171c25;
  --surface-3: #202734;
  --text: #f7f8fa;
  --muted: #9da7b5;
  --soft: #6d7887;
  --line: rgba(255,255,255,.09);
  --line-strong: rgba(255,255,255,.15);
  --accent: #0fa968;
  --accent-2: #7ce0ae;
  --accent-deep: #066a42;
  --success: #4ad18b;
  --nav-bg: rgba(15,18,24,.82);
  --shadow: 0 24px 70px rgba(0,0,0,.32);
  --shadow-soft: 0 14px 40px rgba(0,0,0,.2);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --content-max: 760px;
  color-scheme: dark;
}

html[data-theme="light"] {
  --bg: #f4f1e9;
  --surface: rgba(255,255,255,.72);
  --surface-solid: #ffffff;
  --surface-2: #f0ede6;
  --surface-3: #e9e3d7;
  --text: #121419;
  --muted: #636b75;
  --soft: #89909a;
  --line: rgba(18,20,25,.08);
  --line-strong: rgba(18,20,25,.14);
  --accent: #078a53;
  --accent-2: #046c42;
  --accent-deep: #035438;
  --success: #238d5c;
  --nav-bg: rgba(255,255,255,.82);
  --shadow: 0 24px 70px rgba(4,96,61,.12);
  --shadow-soft: 0 14px 40px rgba(4,96,61,.08);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -10%, rgba(15,169,104,.12), transparent 33%),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  transition: background .35s ease, color .35s ease;
  overflow-x: hidden;
}

html[lang="ar"] body {
  font-family: "Noto Kufi Arabic", Tahoma, sans-serif;
}

button, a, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
svg { display: block; }
::selection { background: var(--accent); color: #101114; }

.page-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: .14;
  z-index: 0;
}
.page-glow--one { top: 18vh; left: -210px; background: var(--accent); }
.page-glow--two { top: 62vh; right: -250px; background: #6b82ff; opacity: .07; }

.app-shell {
  position: relative;
  z-index: 1;
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding: 0 18px 120px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding:
    calc(10px + env(safe-area-inset-top))
    0 10px;
  background: linear-gradient(to bottom, var(--bg) 55%, transparent);
  backdrop-filter: blur(14px);
}

.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 0; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #16130c;
  background: linear-gradient(145deg, var(--accent-2), var(--accent));
  box-shadow: 0 10px 26px rgba(15,169,104,.2);
}
.brand-mark svg { width: 28px; height: 28px; }
.brand-mark path { stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.brand-copy { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.brand-copy strong { font-size: 13px; letter-spacing: .16em; white-space: nowrap; }
.brand-copy small { color: var(--muted); font-size: 10px; white-space: nowrap; }

.topbar-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 41px;
  height: 41px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px rgba(255,255,255,.05);
}
.icon-btn:active { transform: scale(.96); }
#langLabel { font-size: 12px; font-weight: 800; letter-spacing: .05em; }
.theme-icon { width: 19px; height: 19px; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.theme-icon--sun { display: none; }
html[data-theme="light"] .theme-icon--sun { display: block; }
html[data-theme="light"] .theme-icon--moon { display: none; }

.hero { padding: 38px 0 24px; }
.hero-badge {
  width: max-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  backdrop-filter: blur(16px);
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--success) 13%, transparent);
}
.hero-copy { padding: 25px 0 6px; }
.eyebrow, .section-kicker {
  margin: 0 0 9px;
  color: var(--accent);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  display: flex;
  flex-direction: column;
  font-size: clamp(42px, 12vw, 74px);
  line-height: .96;
  letter-spacing: -.055em;
  font-weight: 800;
}
html[lang="ar"] .hero h1 {
  font-size: clamp(38px, 11vw, 66px);
  line-height: 1.2;
  letter-spacing: -.03em;
}
.gradient-text {
  padding-bottom: .08em;
  color: transparent;
  background: linear-gradient(110deg, var(--text) 10%, var(--accent-2) 70%, var(--accent) 100%);
  background-clip: text;
  -webkit-background-clip: text;
}
.hero-text {
  max-width: 600px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
html[lang="ar"] .hero-text { line-height: 2; }

.hero-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.primary-btn, .secondary-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 18px;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.primary-btn {
  color: #14110b;
  background: linear-gradient(145deg, var(--accent-2), var(--accent));
  box-shadow: 0 16px 34px rgba(15,169,104,.18), inset 0 1px rgba(255,255,255,.42);
}
.secondary-btn {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--text);
  backdrop-filter: blur(18px);
}
.primary-btn:active, .secondary-btn:active { transform: translateY(1px) scale(.985); }
.primary-btn svg, .secondary-btn svg { width: 19px; height: 19px; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.hero-visual { margin-top: 26px; }
.visual-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--surface-solid) 84%, transparent), color-mix(in srgb, var(--surface-2) 88%, transparent));
  box-shadow: var(--shadow);
  isolation: isolate;
}
.visual-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(15,169,104,.17), transparent 70%);
  filter: blur(2px);
  z-index: -1;
}
.visual-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 22px 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
}
.live-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px color-mix(in srgb, var(--success) 65%, transparent);
}
.truck-stage {
  position: relative;
  min-height: 216px;
  display: grid;
  place-items: center;
  padding: 14px 10px 0;
}
.road-line {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}
.tow-illustration { width: 100%; max-width: 520px; transform: translateY(2px); }
.tow-illustration svg { width: 100%; height: auto; }
.svg-primary { stroke: color-mix(in srgb, var(--text) 88%, transparent); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.svg-soft { stroke: var(--line-strong); stroke-width: 2; stroke-linecap: round; }
.svg-fill { fill: color-mix(in srgb, var(--surface-3) 88%, transparent); }
.svg-fill-2 { fill: color-mix(in srgb, var(--surface-2) 92%, transparent); }
.svg-accent { fill: color-mix(in srgb, var(--accent) 55%, transparent); stroke: var(--accent-2); stroke-width: 2; }
.svg-wheel { fill: var(--surface-solid); stroke: color-mix(in srgb, var(--text) 82%, transparent); stroke-width: 3; }
.svg-rim { fill: color-mix(in srgb, var(--accent) 38%, var(--surface-solid)); stroke: var(--accent-2); stroke-width: 2; }

.dispatch-card {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 15px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: color-mix(in srgb, var(--nav-bg) 91%, transparent);
  backdrop-filter: blur(22px);
  box-shadow: 0 14px 34px rgba(0,0,0,.2);
}
.dispatch-icon {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #15120c;
  background: linear-gradient(145deg, var(--accent-2), var(--accent));
}
.dispatch-icon svg { width: 21px; height: 21px; stroke: currentColor; stroke-width: 1.8; }
.dispatch-card small { display: block; color: var(--muted); font-size: 10px; margin-bottom: 4px; }
.dispatch-card strong { font-size: 14px; }
.signal-bars { height: 26px; display: flex; gap: 3px; align-items: end; padding-inline: 6px; }
.signal-bars i { width: 3px; border-radius: 3px; background: var(--success); opacity: .92; }
.signal-bars i:nth-child(1) { height: 7px; }
.signal-bars i:nth-child(2) { height: 12px; }
.signal-bars i:nth-child(3) { height: 17px; }
.signal-bars i:nth-child(4) { height: 22px; }

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 13px;
}
.trust-row > div {
  min-width: 0;
  padding: 15px 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  text-align: center;
  backdrop-filter: blur(16px);
}
.trust-row strong { display: block; font-size: 12px; margin-bottom: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.trust-row span { display: block; color: var(--muted); font-size: 9px; line-height: 1.4; }

.section { padding: 72px 0 0; scroll-margin-top: 90px; }
.section-heading { margin-bottom: 23px; }
.section-heading h2, .final-cta h2 {
  margin: 0;
  font-size: clamp(30px, 8vw, 48px);
  letter-spacing: -.04em;
  line-height: 1.08;
}
html[lang="ar"] .section-heading h2, html[lang="ar"] .final-cta h2 { line-height: 1.45; }
.section-heading p, .final-cta p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.service-card {
  min-height: 186px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(155deg, var(--surface), color-mix(in srgb, var(--surface-solid) 74%, transparent));
  box-shadow: inset 0 1px rgba(255,255,255,.035);
}
.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  color: var(--accent-2);
  background: color-mix(in srgb, var(--accent) 11%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 17%, var(--line));
}
.service-icon svg { width: 21px; height: 21px; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 0 0 7px; font-size: 14px; }
.service-card p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; }

.coverage-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.map-orbit {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 34px 34px;
}
.map-orbit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 48%, transparent 0, color-mix(in srgb, var(--surface-solid) 12%, transparent) 42%, color-mix(in srgb, var(--surface-solid) 70%, transparent) 100%);
}
.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--accent) 32%, transparent);
  transform: translate(-50%, -50%);
  z-index: 1;
}
.orbit--1 { width: 150px; height: 150px; }
.orbit--2 { width: 265px; height: 265px; opacity: .5; }
.pin {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 19px;
  color: #14110b;
  background: linear-gradient(145deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 0 10px color-mix(in srgb, var(--accent) 8%, transparent), 0 15px 30px rgba(0,0,0,.2);
}
.pin svg { width: 25px; height: 25px; stroke: currentColor; stroke-width: 1.8; }
.zone {
  position: absolute;
  z-index: 4;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--nav-bg);
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  backdrop-filter: blur(14px);
}
.zone--one { left: 10%; top: 24%; }
.zone--two { right: 10%; top: 19%; }
.zone--three { left: 13%; bottom: 18%; }
.zone--four { right: 8%; bottom: 22%; }
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px;
  border-top: 1px solid var(--line);
}
.area-chips span {
  padding: 9px 11px;
  border-radius: 12px;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--line);
  font-size: 10px;
  font-weight: 600;
}

.why-list { display: grid; gap: 10px; }
.why-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: var(--surface);
}
.why-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 9%, transparent);
  font-size: 11px;
  font-weight: 800;
}
.why-item h3 { margin: 1px 0 6px; font-size: 14px; }
.why-item p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; }

.testimonial-section { padding-top: 56px; }
.quote-card {
  position: relative;
  overflow: hidden;
  padding: 27px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 0%, rgba(15,169,104,.18), transparent 38%),
    linear-gradient(145deg, var(--surface-2), var(--surface-solid));
  border: 1px solid var(--line);
}
.quote-stars { color: var(--accent); font-size: 13px; letter-spacing: .22em; }
.quote-card blockquote {
  margin: 18px 0 24px;
  font-size: 21px;
  line-height: 1.5;
  letter-spacing: -.02em;
  font-weight: 600;
}
.quote-user { display: flex; align-items: center; gap: 11px; }
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--surface-3);
  border: 1px solid var(--line);
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 800;
}
.quote-user strong { display: block; font-size: 12px; margin-bottom: 4px; }
.quote-user small { color: var(--muted); font-size: 10px; }

.faq-list { display: grid; gap: 9px; }
.faq-item {
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}
.faq-item summary {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  list-style: none;
  font-size: 12px;
  font-weight: 700;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  margin: -4px 0 17px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}
.faq-plus { color: var(--accent); font-size: 21px; transition: transform .2s ease; }
.faq-item[open] .faq-plus { transform: rotate(45deg); }

.final-cta {
  margin-top: 72px;
  padding: 30px;
  border-radius: 32px;
  color: #07140f;
  background:
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.42), transparent 34%),
    linear-gradient(145deg, #70deb0, #0a9a61);
  box-shadow: 0 25px 65px rgba(7,138,83,.22);
}
.final-cta .section-kicker { color: rgba(4,28,18,.66); }
.final-cta p { color: rgba(4,28,18,.70); }
.primary-btn--wide {
  margin-top: 22px;
  width: 100%;
  justify-content: space-between;
  padding: 0 18px;
  color: white;
  background: #141516;
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
}
.primary-btn--wide svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
html[dir="rtl"] .primary-btn--wide svg { transform: rotate(180deg); }

.footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 2px 10px;
  color: var(--muted);
  font-size: 9px;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-brand strong { color: var(--text); font-size: 10px; letter-spacing: .08em; }
.footer p { margin: 0; text-align: end; }

.bottom-nav {
  position: fixed;
  z-index: 60;
  left: 50%;
  bottom: max(12px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  width: min(calc(100% - 24px), 590px);
  min-height: 70px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  padding: 7px 9px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: var(--nav-bg);
  backdrop-filter: blur(26px) saturate(1.2);
  box-shadow: 0 18px 50px rgba(0,0,0,.25), inset 0 1px rgba(255,255,255,.06);
}
.nav-item {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--soft);
  font-size: 8px;
  font-weight: 700;
}
.nav-item svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.nav-item.active, .nav-item:hover { color: var(--text); }
.nav-call {
  justify-self: center;
  align-self: center;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #14110b;
  background: linear-gradient(145deg, var(--accent-2), var(--accent));
  box-shadow: 0 12px 28px rgba(15,169,104,.2);
}
.nav-call svg { width: 23px; height: 23px; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .65s cubic-bezier(.2,.8,.2,1), transform .65s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

html[dir="rtl"] .brand-copy { text-align: right; }
html[dir="rtl"] .hero-actions { direction: rtl; }
html[dir="rtl"] .dispatch-card { direction: rtl; }
html[dir="rtl"] .quote-user { direction: rtl; }

@media (min-width: 600px) {
  .app-shell { padding-inline: 28px; }
  .hero { padding-top: 52px; }
  .hero-actions { max-width: 460px; }
  .service-card { min-height: 205px; padding: 22px; }
  .service-card h3 { font-size: 16px; }
  .service-card p, .why-item p, .faq-item p { font-size: 12px; }
  .why-item h3 { font-size: 16px; }
}

@media (max-width: 370px) {
  .brand-copy small { display: none; }
  .hero-actions { grid-template-columns: 1fr; }
  .trust-row strong { font-size: 10px; }
  .service-grid { grid-template-columns: 1fr; }
  .nav-item span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Premium adaptive scrollbar:
   - completely hidden on touch/mobile
   - desktop thumb appears only when the pointer approaches a viewport edge */
html {
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

html::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: transparent;
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 999px;
  transition: background-color .18s ease;
}

html.scrollbar-near {
  scrollbar-color: color-mix(in srgb, var(--accent) 72%, transparent) transparent;
}

html.scrollbar-near::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--accent) 72%, transparent);
  border: 2px solid transparent;
  background-clip: padding-box;
}

html.scrollbar-near::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
  border: 1px solid transparent;
  background-clip: padding-box;
}

/* Keep every service-card icon optically identical. */
.service-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
}

.service-icon svg {
  width: 21px;
  height: 21px;
  min-width: 21px;
  min-height: 21px;
  stroke-width: 1.8;
  vector-effect: non-scaling-stroke;
}

.service-icon svg * {
  vector-effect: non-scaling-stroke;
}

/* Touch devices should never show a visible scrollbar. */
@media (hover: none), (pointer: coarse), (max-width: 820px) {
  html {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  html::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }

  body {
    -ms-overflow-style: none;
  }
}


/* Minimal full-screen hero */
.hero--minimal {
  min-height: calc(100svh - 78px);
  padding: 0;
  display: flex;
  align-items: center;
}

.hero-copy--minimal {
  width: 100%;
  padding: 0 0 10vh;
}

.hero-copy--minimal h1 {
  max-width: 680px;
}

.hero-copy--minimal .hero-text {
  max-width: 560px;
  margin-top: 22px;
}

.post-hero {
  padding-top: 14px;
  scroll-margin-top: 90px;
}

.post-hero .hero-visual {
  margin-top: 0;
}

@media (max-width: 820px) {
  .hero--minimal {
    min-height: calc(100svh - 74px);
  }

  .hero-copy--minimal {
    padding-bottom: 14vh;
  }
}

@supports not (height: 100svh) {
  .hero--minimal {
    min-height: calc(100vh - 78px);
  }
}


/* Premium animated coverage map */
.pin {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  animation: premiumPinBreath 4.6s ease-in-out infinite;
}

.pin::before,
.pin::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.pin::before {
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  transform: scale(1.24);
  animation: premiumPinPulse 2.8s ease-out infinite;
}

.pin::after {
  border: 1px solid color-mix(in srgb, var(--accent) 34%, transparent);
  transform: scale(1.62);
  animation: premiumPinRing 2.8s ease-out infinite;
}

.pin svg {
  width: 26px;
  height: 26px;
}

.zone {
  animation: premiumZoneFloat 6.2s ease-in-out infinite;
  box-shadow: 0 8px 18px rgba(0,0,0,.04);
}

.zone--one { animation-delay: 0s; }
.zone--two { animation-delay: 1.2s; }
.zone--three { animation-delay: 2.1s; }
.zone--four { animation-delay: 3s; }

@keyframes premiumPinBreath {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow:
      0 0 0 10px color-mix(in srgb, var(--accent) 8%, transparent),
      0 15px 30px rgba(0,0,0,.16);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.04);
    box-shadow:
      0 0 0 14px color-mix(in srgb, var(--accent) 10%, transparent),
      0 18px 34px rgba(0,0,0,.18);
  }
}

@keyframes premiumPinPulse {
  0% {
    opacity: .65;
    transform: scale(1.1);
  }
  70% {
    opacity: 0;
    transform: scale(1.72);
  }
  100% {
    opacity: 0;
    transform: scale(1.78);
  }
}

@keyframes premiumPinRing {
  0% {
    opacity: .52;
    transform: scale(1.25);
  }
  80%, 100% {
    opacity: 0;
    transform: scale(1.95);
  }
}

@keyframes premiumZoneFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  25% { transform: translate3d(0, -3px, 0); }
  50% { transform: translate3d(2px, 1px, 0); }
  75% { transform: translate3d(-1px, 3px, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .pin,
  .pin::before,
  .pin::after,
  .zone {
    animation: none !important;
  }
}
