/* ============================================================
   CAMPEASE — World-Class Civic Platform
   RCCG Redemption City · Green · Clean · Trustworthy
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,600;9..144,700&family=DM+Mono:wght@400;500&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --g900: #062715;
  --g800: #0d3d20;
  --g700: #155228;
  --g600: #1e6b31;
  --g500: #27873d;   /* primary */
  --g400: #33a34c;
  --g300: #5ec278;
  --g200: #a8ddb7;
  --g100: #d6f0de;
  --g50:  #edf7f0;
  --g25:  #f5fbf7;

  --n900: #0c1412;
  --n800: #1a2320;
  --n700: #2d3b37;
  --n600: #4a5e57;
  --n500: #637870;
  --n400: #8fa39b;
  --n300: #b8cac4;
  --n200: #d8e4e0;
  --n100: #ecf2f0;
  --n50:  #f6faf8;
  --white: #ffffff;

  --red:     #c0392b;
  --red50:   #fdf2f1;
  --amber:   #b45309;
  --amber50: #fef9ee;
  --blue:    #1a4fa8;
  --blue50:  #eff4fe;

  --nav-h: 62px;
  --r-s: 4px;
  --r-m: 8px;
  --r-l: 14px;
  --r-xl: 20px;

  --sh-s: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --sh-m: 0 4px 16px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
  --sh-l: 0 12px 40px rgba(0,0,0,.10), 0 3px 8px rgba(0,0,0,.05);
  --sh-xl: 0 24px 64px rgba(0,0,0,.12), 0 6px 16px rgba(0,0,0,.06);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;
  --font-mono: 'DM Mono', 'Consolas', monospace;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--n900);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input { font-family: var(--font); cursor: pointer; }
img, video { display: block; max-width: 100%; }
canvas { display: block; }
::selection { background: var(--g200); color: var(--g900); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--n100); }
::-webkit-scrollbar-thumb { background: var(--g300); border-radius: 3px; }

/* ── UTILITIES ──────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--g600); background: var(--g50); border: 1px solid var(--g100);
  border-radius: 100px; padding: 4px 12px;
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes blink   { 0%,100%{opacity:1} 50%{opacity:.25} }
@keyframes fadeUp  { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:none} }
@keyframes fadeIn  { from{opacity:0} to{opacity:1} }
@keyframes slide-r { from{opacity:0;transform:translateX(-16px)} to{opacity:1;transform:none} }
@keyframes spin    { to{transform:rotate(360deg)} }
@keyframes bar-grow{ from{transform:scaleX(0)} to{transform:scaleX(1)} }
@keyframes count-up{ from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:none} }
@keyframes hero-words {
  0%   { opacity:0; transform:translateY(30px); }
  10%  { opacity:1; transform:translateY(0); }
  80%  { opacity:1; transform:translateY(0); }
  100% { opacity:0; transform:translateY(-20px); }
}
@keyframes drift {
  0%,100% { transform: translate(0,0) }
  33%  { transform: translate(6px,-8px) }
  66%  { transform: translate(-5px,5px) }
}
@keyframes scaleIn {
  from { opacity:0; transform:scale(.95) }
  to   { opacity:1; transform:scale(1) }
}
@keyframes slide-up-stagger {
  from { opacity:0; transform:translateY(28px) }
  to   { opacity:1; transform:translateY(0) }
}
@keyframes line-draw {
  from { stroke-dashoffset: 600 }
  to   { stroke-dashoffset: 0 }
}
@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity:.7 }
  100% { transform: scale(2.2); opacity:0  }
}
@keyframes video-ken-burns {
  0%   { transform: scale(1.0) }
  100% { transform: scale(1.06) }
}

/* scroll reveal */
.reveal { opacity:0; transform:translateY(24px); transition:opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.reveal.in  { opacity:1; transform:none; }
.reveal-l { opacity:0; transform:translateX(-24px); transition:opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.reveal-l.in { opacity:1; transform:none; }
.reveal-r { opacity:0; transform:translateX(24px); transition:opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.reveal-r.in { opacity:1; transform:none; }
.d1{transition-delay:.07s} .d2{transition-delay:.14s} .d3{transition-delay:.21s}
.d4{transition-delay:.28s} .d5{transition-delay:.35s} .d6{transition-delay:.42s}

/* ── NAV ─────────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.site-nav.solid {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--n200);
  box-shadow: var(--sh-s);
}
.site-nav.hero-nav { background: transparent; border-bottom-color: transparent; }

.nav-inner {
  height: var(--nav-h);
  display: flex; align-items: center; gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.05rem; color: var(--white);
  transition: color .2s;
}
.site-nav.solid .nav-logo { color: var(--n900); }
.nav-logo-mark {
  width: 32px; height: 32px; background: var(--g500); border-radius: var(--r-s);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: .8rem; flex-shrink: 0;
}
.nav-links {
  display: flex; align-items: center; gap: 2px; margin-left: auto;
}
.nav-links a {
  padding: 6px 13px; border-radius: var(--r-s); font-size: .84rem; font-weight: 500;
  color: rgba(255,255,255,.8); transition: background .15s, color .15s;
}
.site-nav.solid .nav-links a { color: var(--n600); }
.nav-links a:hover { background: rgba(255,255,255,.12); color: var(--white); }
.site-nav.solid .nav-links a:hover { background: var(--n100); color: var(--n900); }
.nav-links a.active { color: var(--white); }
.site-nav.solid .nav-links a.active { color: var(--g600); background: var(--g50); }

.nav-links.mobile-open {
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--n900); flex-direction: column; gap: 0;
  padding: 20px; align-items: stretch; justify-content: center;
}
.nav-links.mobile-open a {
  padding: 16px 20px; font-size: 1.1rem; color: rgba(255,255,255,.8);
  text-align: center; border-radius: var(--r-m);
}
.nav-links.mobile-open a:hover { background: rgba(255,255,255,.08); color: white; }

.nav-actions { display: flex; gap: 8px; align-items: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  border: none; border-radius: var(--r-m); font-weight: 600; font-size: .84rem;
  padding: 9px 20px; transition: all .2s var(--ease-out); white-space: nowrap; cursor: pointer;
}
.btn-primary { background: var(--g500); color: white; box-shadow: 0 1px 4px rgba(39,135,61,.25); }
.btn-primary:hover { background: var(--g600); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(39,135,61,.35); }
.btn-white { background: white; color: var(--g700); }
.btn-white:hover { background: var(--g50); transform: translateY(-1px); }
.btn-ghost-white { background: rgba(255,255,255,.12); color: white; border: 1px solid rgba(255,255,255,.2); }
.btn-ghost-white:hover { background: rgba(255,255,255,.22); }
.btn-danger { background: var(--red); color: white; }
.btn-danger:hover { background: #a93226; transform: translateY(-1px); }
.btn-whatsapp { background: #25D366; color: white; box-shadow: 0 1px 4px rgba(37,211,102,.3); }
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(37,211,102,.4); }
.btn-lg { padding: 12px 28px; font-size: .95rem; border-radius: var(--r-l); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.hamburger span { width: 22px; height: 2px; border-radius: 1px; background: white; transition: .2s; display: block; }
.site-nav.solid .hamburger span { background: var(--n700); }

/* ── HERO ────────────────────────────────────────────────── */
#hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; flex-direction: column;
  overflow: hidden;
  margin-top: 0;
}

/* Video background */
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
  background: var(--g900);
}
.hero-video-wrap video {
  width: 100%; height: 100%; object-fit: cover;
  animation: video-ken-burns 18s ease-in-out infinite alternate;
  transition: filter .6s ease, opacity .6s ease;
}
#hero:hover .hero-video-wrap video {
  filter: brightness(.45);
  opacity: .85;
}
/* Dark gradient overlays — bottom heavy so text pops */
.hero-video-wrap::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(6,39,21,.15) 0%,
      rgba(6,39,21,.1)  35%,
      rgba(6,39,21,.55) 70%,
      rgba(6,39,21,.88) 100%);
}
/* subtle green tint vignette */
.hero-video-wrap::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at 50% 0%, rgba(39,135,61,.18) 0%, transparent 65%);
}

/* Floating grid overlay — gives a "control room" feel */
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.4) 30%, rgba(0,0,0,.4) 70%, transparent 100%);
}

/* Scanning line */
.hero-scan {
  position: absolute; left: 0; right: 0; z-index: 3;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(94,194,120,.5) 50%, transparent 100%);
  animation: scan-move 8s linear infinite;
  pointer-events: none;
}
@keyframes scan-move {
  0%   { top: -1px; opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.hero-content {
  position: relative; z-index: 20;
  flex: 1; display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding-top: 0;
  text-align: center;
}
.hero-content .container { width: 100%; position: relative; z-index: 21; padding-top: 80px; display: flex; flex-direction: column; align-items: center; }

/* Live badge */
.hero-badge {
  position: relative; z-index: 22;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border-radius: 100px; padding: 6px 16px;
  font-size: .72rem; font-weight: 600; letter-spacing: .08em;
  color: rgba(255,255,255,.85); text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeIn .8s var(--ease-out) both;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--g300);
  animation: blink 1.8s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(94,194,120,0);
}

/* Hero headline — large serif for gravitas */
.hero-headline {
  position: relative; z-index: 23;
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 22px;
  letter-spacing: -.02em;
  animation: fadeUp .9s .15s var(--ease-out) both;
}
.hero-headline .accent {
  color: var(--g300);
  font-style: italic;
}
.hero-sub {
  position: relative; z-index: 23;
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 28px;
  text-align: center;
  animation: fadeUp .9s .22s var(--ease-out) both;
}

/* Cycling sub-phrases */
.hero-phrase-wrap {
  position: relative; z-index: 24;
  height: 2.4em; overflow: hidden; margin-bottom: 36px;
  animation: fadeUp .9s .25s var(--ease-out) both;
}
.hero-phrase {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.7);
  line-height: 1.5;
  display: block;
  animation: hero-words 4s ease-in-out forwards;
}

.hero-btns {
  position: relative; z-index: 25;
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp .9s .35s var(--ease-out) both;
  margin-bottom: 80px;
}

/* Bottom info strip */
.hero-strip {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 30;
  background: rgba(6,39,21,.7); backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 0;
  animation: fadeIn 1s .5s var(--ease-out) both;
}
.hero-strip-inner {
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
}
.hs-item {
  display: flex; flex-direction: column; gap: 1px;
}
.hs-val {
  font-family: var(--font-mono); font-size: 1.1rem; font-weight: 500;
  color: var(--white); line-height: 1;
}
.hs-label { font-size: .68rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .08em; }
.hs-sep { width: 1px; height: 32px; background: rgba(255,255,255,.1); flex-shrink: 0; }
.hs-scroll {
  margin-left: auto; display: flex; align-items: center; gap: 8px;
  font-size: .72rem; color: rgba(255,255,255,.4); letter-spacing: .06em; text-transform: uppercase;
}
.hs-scroll-arrow {
  width: 20px; height: 30px; border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px; display: flex; align-items: flex-start;
  justify-content: center; padding-top: 4px;
}
.hs-scroll-dot {
  width: 3px; height: 6px; background: rgba(255,255,255,.5);
  border-radius: 2px; animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%,100% { transform: translateY(0); opacity:1 }
  60%      { transform: translateY(8px); opacity:0 }
}

/* ── SERVICE SELECTION ──────────────────────────────────── */
#service-selection {
  padding: 88px 0 72px;
  background: var(--white);
  border-bottom: 1px solid var(--n200);
}
.sel-header { text-align: center; margin-bottom: 48px; }
.sel-header .tag { margin-bottom: 14px; }
.sel-header h2 {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600; color: var(--n900); margin-bottom: 10px;
  letter-spacing: -.02em;
}
.sel-header p { font-size: .95rem; color: var(--n500); max-width: 520px; margin: 0 auto; line-height: 1.75; }

.sel-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 960px; margin: 0 auto 28px;
}
.sel-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--n200);
  border-radius: var(--r-xl);
  padding: 36px 28px 28px;
  text-decoration: none; color: inherit;
  transition: border-color .2s, box-shadow .2s, transform .25s var(--ease-out);
  position: relative; overflow: hidden;
  box-shadow: var(--sh-s);
}
/* accent stripe at top */
.sel-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--card-accent, var(--g500));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.sel-card:hover { border-color: var(--card-accent, var(--g500)); box-shadow: var(--sh-l); transform: translateY(-4px); }
.sel-card:hover::before { transform: scaleX(1); }

.sel-card.parking  { --card-accent: var(--g500); }
.sel-card.emergency{ --card-accent: var(--red);  }
.sel-card.lost     { --card-accent: var(--blue); }

.sel-icon {
  width: 56px; height: 56px; border-radius: var(--r-l);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 20px;
  transition: transform .25s var(--ease-spring);
}
.sel-card:hover .sel-icon { transform: scale(1.1); }
.parking  .sel-icon { background: var(--g50);   color: var(--g600); }
.emergency .sel-icon { background: var(--red50); color: var(--red); }
.lost     .sel-icon { background: var(--blue50); color: var(--blue); }

.sel-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--n900); }
.sel-card p  { font-size: .83rem; color: var(--n500); line-height: 1.65; flex: 1; margin-bottom: 20px; }
.sel-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8rem; font-weight: 600; color: var(--card-accent, var(--g500));
  transition: gap .2s;
}
.sel-card:hover .sel-arrow { gap: 10px; }

.sel-note {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  max-width: 600px; margin: 0 auto;
  background: var(--g25); border: 1px solid var(--g100);
  border-radius: var(--r-m); padding: 13px 20px;
  font-size: .82rem; color: var(--n600);
}
.sel-note i { color: var(--g500); font-size: .9rem; flex-shrink: 0; }

/* ── LIVE METRICS ──────────────────────────────────────── */
#metrics {
  background: var(--n50);
  border-top: 1px solid var(--n200); border-bottom: 1px solid var(--n200);
  padding: 0;
}
.metrics-bar {
  display: grid; grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid var(--n200);
}
.mbar-card {
  padding: 24px 20px;
  border-right: 1px solid var(--n200);
  transition: background .15s;
  cursor: default;
}
.mbar-card:last-child { border-right: none; }
.mbar-card:hover { background: var(--white); }
.mc-icon {
  width: 34px; height: 34px; border-radius: var(--r-m);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; margin-bottom: 10px; flex-shrink: 0;
}
.mc-icon.g   { background: var(--g100);  color: var(--g700); }
.mc-icon.a   { background: var(--amber50); color: var(--amber); }
.mc-icon.r   { background: var(--red50); color: var(--red); }
.mc-icon.b   { background: var(--blue50); color: var(--blue); }
.mc-label { font-size: .67rem; text-transform: uppercase; letter-spacing: .07em; color: var(--n500); font-weight: 600; margin-bottom: 3px; }
.mc-value { font-size: 1.5rem; font-weight: 700; color: var(--n900); line-height: 1; margin-bottom: 3px; }
.mc-sub   { font-size: .7rem; color: var(--n400); margin-bottom: 8px; }
.mc-bar   { height: 3px; background: var(--n200); border-radius: 2px; overflow: hidden; margin-bottom: 6px; }
.mc-bar-fill { height: 100%; border-radius: 2px; transform-origin: left; transform: scaleX(0); transition: transform 1.4s var(--ease-out); }
.mc-bar-fill.g { background: var(--g500); }
.mc-bar-fill.a { background: var(--amber); }
.mc-bar-fill.r { background: var(--red); }
.mc-bar-fill.b { background: var(--blue); }
.mc-status {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
}
.mc-status::before { content:''; width:5px;height:5px;border-radius:50%;background:currentColor;animation:blink 1.8s infinite; }
.mc-status.ok  { color: var(--g500); }
.mc-status.hi  { color: var(--amber); }
.mc_status.crit{ color: var(--red); }

/* ── FEATURES ──────────────────────────────────────────── */
#features {
  padding: 96px 0;
  background: var(--white);
}
.feat-header { margin-bottom: 52px; }
.feat-header .tag { margin-bottom: 12px; }
.feat-header h2 {
  font-family: var(--font-serif); font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 600; color: var(--n900); margin-bottom: 10px; letter-spacing: -.02em;
}
.feat-header p { font-size: .95rem; color: var(--n500); max-width: 520px; line-height: 1.75; }

/* Bento-style feature grid */
.feat-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.feat-cell {
  background: var(--white); border: 1px solid var(--n200);
  border-radius: var(--r-xl); padding: 32px 28px;
  transition: border-color .2s, box-shadow .22s, transform .22s var(--ease-out);
  position: relative; overflow: hidden;
}
.feat-cell:hover { border-color: var(--g300); box-shadow: var(--sh-m); transform: translateY(-3px); }
.feat-cell::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--g500); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.feat-cell:hover::after { transform: scaleX(1); }
.fc-1 { grid-column: span 4; }
.fc-2 { grid-column: span 4; }
.fc-3 { grid-column: span 4; }
.fc-4 { grid-column: span 6; }
.fc-5 { grid-column: span 6; }
.fc-6 { grid-column: span 12; display: flex; align-items: center; gap: 40px; }

.feat-cell .fc-icon {
  width: 48px; height: 48px; border-radius: var(--r-l);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 20px; flex-shrink: 0;
}
.fc-6 .fc-icon { margin-bottom: 0; }
.fc-icon.g   { background: var(--g100);  color: var(--g700); }
.fc-icon.a   { background: var(--amber50); color: var(--amber); }
.fc-icon.r   { background: var(--red50); color: var(--red); }
.fc-icon.b   { background: var(--blue50); color: var(--blue); }
.feat-cell h3 { font-size: .95rem; font-weight: 700; color: var(--n900); margin-bottom: 8px; }
.feat-cell p  { font-size: .83rem; color: var(--n500); line-height: 1.7; }
.fc-6 .fc-body { flex: 1; }
.fc-6 h3 { font-size: 1.05rem; margin-bottom: 6px; }
.feat-num { position: absolute; bottom: 16px; right: 20px; font-family: var(--font-mono); font-size: .65rem; color: var(--n300); }

/* ── CITY MAP ─────────────────────────────────────────── */
#city-map {
  padding: 88px 0;
  background: var(--n50);
  border-top: 1px solid var(--n200);
}
.map-section-header { margin-bottom: 36px; }
.map-section-header .tag { margin-bottom: 12px; }
.map-section-header h2 {
  font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600; color: var(--n900); letter-spacing: -.02em;
}
.map-section-header p { font-size: .9rem; color: var(--n500); margin-top: 8px; max-width: 540px; line-height: 1.7; }

.map-layout { display: grid; grid-template-columns: 1fr 300px; gap: 20px; align-items: flex-start; }

.map-panel {
  background: var(--white); border: 1px solid var(--n200);
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-m);
}
.map-toolbar {
  padding: 12px 18px; border-bottom: 1px solid var(--n200);
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  background: var(--white);
}
.map-toolbar-title { font-size: .78rem; font-weight: 700; color: var(--n800); margin-right: auto; display: flex; align-items: center; gap: 8px; }
.map-toolbar-title i { color: var(--g500); }
.leg-item { display: flex; align-items: center; gap: 5px; font-size: .71rem; color: var(--n600); }
.leg-dot  { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.live-badge { display: inline-flex; align-items: center; gap: 5px; font-size: .67rem; font-weight: 600; color: var(--g600); background: var(--g50); border: 1px solid var(--g100); border-radius: 100px; padding: 2px 8px; }

#mainMap { width: 100%; height: 460px; }

/* map sidebar */
.map-sidebar { display: flex; flex-direction: column; gap: 14px; }
.map-widget {
  background: var(--white); border: 1px solid var(--n200);
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-s);
}
.mw-head {
  padding: 12px 16px; border-bottom: 1px solid var(--n100);
  font-size: .75rem; font-weight: 700; color: var(--n700);
  display: flex; align-items: center; justify-content: space-between;
}
.mw-body { padding: 8px 14px 14px; }
.mw-row {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0; border-bottom: 1px solid var(--n100); font-size: .78rem;
}
.mw-row:last-child { border-bottom: none; }
.mw-color { width: 8px; height: 8px; border-radius: 2px; flex-shrink: 0; }
.mw-name { flex: 1; color: var(--n700); font-weight: 500; }
.mw-pct  { font-family: var(--font-mono); font-size: .72rem; color: var(--n500); }
.mw-bar  { width: 52px; height: 3px; background: var(--n100); border-radius: 2px; overflow: hidden; flex-shrink: 0; }
.mw-bar-fill { height: 100%; border-radius: 2px; }

.inc-item { display: flex; align-items: flex-start; gap: 9px; padding: 8px 0; border-bottom: 1px solid var(--n100); }
.inc-item:last-child { border-bottom: none; }
.inc-dot { width: 7px; height: 7px; border-radius: 50%; margin-top: 4px; flex-shrink: 0; }
.inc-text { font-size: .76rem; color: var(--n700); line-height: 1.5; flex: 1; }
.inc-time { font-size: .67rem; color: var(--n400); font-family: var(--font-mono); white-space: nowrap; }

/* ── HOW IT WORKS ─────────────────────────────────────── */
#how-it-works {
  padding: 96px 0;
  background: var(--white);
  border-top: 1px solid var(--n200);
}
.hiw-header { text-align: center; margin-bottom: 64px; }
.hiw-header .tag { margin-bottom: 12px; }
.hiw_header h2 {
  font-family: var(--font-serif); font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 600; color: var(--n900); margin-bottom: 10px; letter-spacing: -.02em;
}
.hiw_header p { font-size: .95rem; color: var(--n500); max-width: 500px; margin: 0 auto; line-height: 1.75; }

.steps-wrap { position: relative; max-width: 900px; margin: 0 auto; }
/* connector line via SVG */
.steps-svg { position: absolute; left: 50%; top: 28px; bottom: 28px; transform: translateX(-50%); pointer-events: none; z-index: 0; }

.steps-list { display: flex; flex-direction: column; gap: 0; position: relative; z-index: 1; }
.step-row {
  display: grid; grid-template-columns: 1fr 80px 1fr;
  align-items: flex-start; gap: 0;
}
.step-row.flip .step-card { grid-column: 3; grid-row: 1; }
.step-row.flip .step-node { grid-column: 2; grid-row: 1; }
.step-row.flip .step-empty { grid-column: 1; grid-row: 1; }

.step-card {
  background: var(--white); border: 1px solid var(--n200);
  border-radius: var(--r-xl); padding: 24px 24px 20px;
  box-shadow: var(--sh-s); margin-bottom: 32px;
  transition: box-shadow .2s, border-color .2s;
}
.step-card:hover { border-color: var(--g200); box-shadow: var(--sh-m); }
.step-card-icon { width: 38px; height: 38px; border-radius: var(--r-m); display: flex; align-items: center; justify-content: center; font-size: .9rem; margin-bottom: 12px; }
.sc-g { background: var(--g50);  color: var(--g600); }
.sc-a { background: var(--amber50); color: var(--amber); }
.sc-r { background: var(--red50); color: var(--red); }
.sc-b { background: var(--blue50); color: var(--blue); }
.step-card h4 { font-size: .88rem; font-weight: 700; color: var(--n900); margin-bottom: 6px; }
.step-card p  { font-size: .8rem; color: var(--n500); line-height: 1.65; }

.step-node {
  display: flex; flex-direction: column; align-items: center; padding-top: 6px;
}
.step-circle {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--g300);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: .78rem; font-weight: 600; color: var(--g600);
  flex-shrink: 0; z-index: 2; transition: all .2s;
}
.step-row:hover .step-circle { background: var(--g500); border-color: var(--g500); color: white; }

/* ── COMMAND CENTER ─────────────────────────────────────── */
#command-center {
  padding: 96px 0;
  background: var(--n50);
  border-top: 1px solid var(--n200);
}
.cc-header { margin-bottom: 40px; }
.cc-header .tag { margin-bottom: 12px; }
.cc_header h2 {
  font-family: var(--font-serif); font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 600; color: var(--n900); margin-bottom: 8px; letter-spacing: -.02em;
}
.cc_header p { font-size: .9rem; color: var(--n500); max-width: 500px; line-height: 1.75; }

.admin-shell {
  background: var(--white); border: 1px solid var(--n200);
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-xl);
}
.admin-chrome {
  height: 44px; background: var(--n900);
  display: flex; align-items: center; gap: 14px; padding: 0 18px;
}
.chrome-dots { display: flex; gap: 5px; }
.chrome-dots span { width: 10px; height: 10px; border-radius: 50%; }
.chrome-dots span:nth-child(1){background:#ff5f57}
.chrome-dots span:nth-child(2){background:#febc2e}
.chrome-dots span:nth-child(3){background:#28c840}
.chrome-url {
  flex: 1; background: rgba(255,255,255,.08); border-radius: 4px;
  padding: 4px 12px; font-family: var(--font-mono); font-size: .68rem;
  color: rgba(255,255,255,.45); text-align: center; max-width: 380px; margin: 0 auto;
}
.chrome-status { display: flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: .62rem; color: rgba(255,255,255,.35); }
.cs-dot { width: 6px; height: 6px; border-radius: 50%; background: #28c840; animation: blink 1.8s infinite; }

.admin-body { display: flex; min-height: 580px; }
.admin-sb {
  width: 192px; flex-shrink: 0;
  background: var(--n900); border-right: 1px solid rgba(255,255,255,.06);
  padding: 18px 10px;
}
.asb-brand { display: flex; align-items: center; gap: 8px; padding: 0 8px; margin-bottom: 22px; font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.8); }
.asb-brand-icon { width: 24px; height: 24px; background: var(--g500); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: .65rem; color: white; flex-shrink: 0; }
.asb-grp { margin-bottom: 18px; }
.asb-grp-label { font-size: .58rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.22); padding: 0 8px; margin-bottom: 4px; }
.asb-item {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 8px; border-radius: var(--r-s); font-size: .76rem;
  color: rgba(255,255,255,.45); transition: all .15s; margin-bottom: 1px;
}
.asb-item:hover { background: rgba(255,255,255,.06); color: rgba(255,255,255,.8); }
.asb-item.on { background: var(--g700); color: rgba(255,255,255,.9); }
.asb-item i { width: 14px; text-align: center; font-size: .78rem; }
.asb-badge { margin-left: auto; background: var(--red); color: white; border-radius: 3px; padding: 1px 5px; font-size: .56rem; font-weight: 700; }
.asb-badge.g { background: var(--g500); }

.admin-main { flex: 1; padding: 22px; background: var(--n50); overflow: hidden; }
.am-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.am-title { font-size: .88rem; font-weight: 700; color: var(--n900); }
.am-right { display: flex; align-items: center; gap: 10px; }
.am-live { display: inline-flex; align-items: center; gap: 6px; font-size: .68rem; font-weight: 600; color: var(--g600); background: var(--g50); border: 1px solid var(--g100); border-radius: 100px; padding: 4px 10px; }
.am-clock { font-family: var(--font-mono); font-size: .7rem; color: var(--n500); }

.kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 16px; }
.kpi-box { background: var(--white); border: 1px solid var(--n200); border-radius: var(--r-l); padding: 14px 16px; box-shadow: var(--sh-s); transition: border-color .15s; }
.kpi-box:hover { border-color: var(--g200); }
.kpi-label { font-size: .64rem; text-transform: uppercase; letter-spacing: .07em; color: var(--n500); font-weight: 600; margin-bottom: 4px; }
.kpi-val   { font-size: 1.4rem; font-weight: 700; color: var(--n900); line-height: 1; margin-bottom: 4px; }
.kpi-delta { font-size: .67rem; font-weight: 600; display: flex; align-items: center; gap: 3px; }
.kpi-delta.up  { color: var(--g500); }
.kpi-delta.dn  { color: var(--red); }
.kpi-delta.nu  { color: var(--n400); }

.charts-row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 12px; margin-bottom: 14px; }
.ch-box { background: var(--white); border: 1px solid var(--n200); border-radius: var(--r-l); padding: 14px 16px; box-shadow: var(--sh-s); }
.ch-label { font-size: .65rem; text-transform: uppercase; letter-spacing: .07em; color: var(--n500); font-weight: 600; margin-bottom: 10px; }
#chCrowd, #chParking { width: 100%; height: 82px; }

.feed-box { background: var(--white); border: 1px solid var(--n200); border-radius: var(--r-l); padding: 14px 16px; box-shadow: var(--sh-s); }
.feed-label { font-size: .65rem; text-transform: uppercase; letter-spacing: .07em; color: var(--n500); font-weight: 600; margin-bottom: 10px; }
.feed-item { display: flex; align-items: center; gap: 10px; padding: 7px 8px; border-radius: var(--r-s); font-size: .77rem; transition: background .15s; }
.feed-item:hover { background: var(--n50); }
.feed-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.feed-text { flex: 1; color: var(--n700); }
.feed-badge { font-size: .6rem; font-weight: 700; padding: 2px 7px; border-radius: 100px; text-transform: uppercase; white-space: nowrap; }
.fb-r  { background: var(--red50);   color: var(--red); }
.fb-a  { background: var(--amber50); color: var(--amber); }
.fb-g  { background: var(--g50);    color: var(--g600); }
.fb-b  { background: var(--blue50); color: var(--blue); }
.feed-time { font-family: var(--font-mono); font-size: .63rem; color: var(--n400); white-space: nowrap; }

/* ── IMPACT ───────────────────────────────────────────── */
#impact {
  padding: 88px 0;
  background: var(--g800);
  border-top: 1px solid var(--g900);
}
.impact-header { text-align: center; margin-bottom: 52px; }
.impact-header .tag { background: rgba(255,255,255,.08); color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.12); margin-bottom: 12px; }
.impact_header h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; color: var(--white); letter-spacing: -.02em; margin-bottom: 10px; }
.impact_header p { font-size: .95rem; color: rgba(255,255,255,.5); max-width: 480px; margin: 0 auto; line-height: 1.75; }

.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.impact-card {
  background: var(--g700); padding: 44px 28px; text-align: center;
  transition: background .2s;
}
.impact-card:first-child { border-radius: var(--r-xl) 0 0 var(--r-xl); }
.impact-card:last-child  { border-radius: 0 var(--r-xl) var(--r-xl) 0; }
.impact-card:hover { background: var(--g600); }
.impact-num {
  font-family: var(--font-serif); font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 600; color: var(--white); line-height: 1; margin-bottom: 10px;
}
.impact-label { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.65; }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--n900); color: rgba(255,255,255,.5);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 60px 0 32px;
}
.foot-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.foot-brand .nav-logo { color: white; margin-bottom: 14px; display: inline-flex; }
.foot-brand .nav-logo-mark { background: var(--g600); }
.foot-brand p { font-size: .82rem; line-height: 1.75; max-width: 260px; }
.foot-social { display: flex; gap: 8px; margin-top: 18px; }
.foot-social a {
  width: 32px; height: 32px; border-radius: var(--r-m);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); font-size: .8rem; transition: all .15s;
}
.foot-social a:hover { background: rgba(255,255,255,.12); color: white; }
.foot-col h4 { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 14px; }
.foot-col li { margin-bottom: 8px; }
.foot-col a  { font-size: .82rem; color: rgba(255,255,255,.4); transition: color .15s; }
.foot-col a:hover { color: white; }
.foot-bottom {
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
}
.foot-bottom p { font-size: .76rem; }
.foot-bottom .built { font-family: var(--font-mono); font-size: .68rem; color: rgba(255,255,255,.25); }
.foot-bottom .built span { color: var(--g300); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1060px) {
  .metrics-bar { grid-template-columns: repeat(3,1fr); }
  .mbar-card:nth-child(3) { border-right: none; }
  .mbar-card { border-bottom: 1px solid var(--n200); }
  .feat-bento { grid-template-columns: repeat(6,1fr); }
  .fc-1,.fc-2,.fc-3 { grid-column: span 3; }
  .fc-4,.fc-5 { grid-column: span 3; }
  .fc-6 { grid-column: span 6; }
  .map-layout { grid-template-columns: 1fr; }
  .map-sidebar { display: grid; grid-template-columns: 1fr 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .impact-card:nth-child(2) { border-radius: 0 var(--r-xl) 0 0; }
  .impact-card:nth-child(3) { border-radius: 0 0 0 var(--r-xl); }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions .btn-ghost-white { display: none; }
  .hamburger { display: flex; }
  .nav-actions { margin-left: auto; }
  .sel-cards { grid-template-columns: 1fr; max-width: 440px; }
  .step-row { grid-template-columns: 1fr; }
  .step-row .step-node { display: none; }
  .steps-svg { display: none; }
  .feat-bento { grid-template-columns: 1fr; }
  .fc-1,.fc-2,.fc-3,.fc-4,.fc-5,.fc-6 { grid-column: span 1; }
  .fc-6 { flex-direction: column; align-items: flex-start; gap: 16px; }
  .kpi-row { grid-template-columns: 1fr 1fr; }
  .charts-row { grid-template-columns: 1fr; }
  .admin-sb { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .hero-strip-inner { gap: 20px; }
  .hs-sep { display: none; }
}
@media (max-width: 480px) {
  .foot-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-card:first-child { border-radius: var(--r-xl) var(--r-xl) 0 0; }
  .impact-card:last-child  { border-radius: 0 0 var(--r-xl) var(--r-xl); }
  .impact-card:nth-child(2),.impact-card:nth-child(3) { border-radius: 0; }
  .kpi-row { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.2rem; }
}

/* ══════════════════════════════════════════════════════
   SERVICE MODAL
══════════════════════════════════════════════════════ */
.svc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 20, 10, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: svcFadeIn .2s ease;
}
.svc-overlay[hidden] { display: none; }

@keyframes svcFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.svc-modal {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px 28px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,.22), 0 4px 16px rgba(0,0,0,.12);
  animation: svcSlideUp .25s cubic-bezier(.16,1,.3,1);
}

@keyframes svcSlideUp {
  from { transform: translateY(24px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.svc-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--n100);
  color: var(--n500);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.svc-close:hover { background: var(--n200); color: var(--n700); }

/* Modal icon */
.svc-modal-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 0 18px;
}
.svc-modal-icon.parking { background: rgba(39,135,61,.12); color: var(--g600); }
.svc-modal-icon.r       { background: rgba(192,57,43,.1);  color: var(--red); }
.svc-modal-icon.lost    { background: rgba(26,79,168,.1);  color: var(--blue); }

.svc-modal-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--n900);
  margin: 0 0 8px;
  font-family: var(--font-serif);
}
.svc-modal-sub {
  font-size: .9rem;
  color: var(--n500);
  margin: 0 0 24px;
  line-height: 1.6;
}

/* Form elements */
.svc-form-group { margin-bottom: 18px; }

.svc-label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--n600);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 8px;
}

.svc-select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--n200);
  border-radius: 10px;
  font-size: .9rem;
  color: var(--n800);
  background: var(--n50);
  font-family: var(--font-sans);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
}
.svc-select:focus {
  outline: none;
  border-color: var(--g400);
  box-shadow: 0 0 0 3px rgba(39,135,61,.1);
}

/* Radio group */
.svc-radio-group { display: flex; flex-direction: column; gap: 10px; }
.svc-radio {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: var(--n700);
  cursor: pointer;
}
.svc-radio input { accent-color: var(--g500); width: 16px; height: 16px; }

/* Buttons */
.svc-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  padding: 13px 20px;
  background: var(--g500);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  text-decoration: none;
  margin-top: 20px;
  transition: background .15s, transform .1s;
}
.svc-btn:hover { background: var(--g600); transform: translateY(-1px); }
.svc-btn:active { transform: translateY(0); }
.svc-btn.svc-btn-danger { background: var(--red); }
.svc-btn.svc-btn-danger:hover { background: #a93226; }

.svc-link {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: .85rem;
  color: var(--g600);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  width: 100%;
  transition: color .15s;
}
.svc-link:hover { color: var(--g700); text-decoration: underline; }

/* Loading spinner */
.svc-loading {
  text-align: center;
  padding: 32px 0;
}
.svc-spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--n100);
  border-top-color: var(--g500);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  margin: 0 auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.svc-loading p { color: var(--n500); font-size: .9rem; }

/* Zone result card */
.svc-zone-card {
  border: 1.5px solid var(--n200);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 0 0 12px;
  background: var(--n50);
}
.svc-zone-card.best {
  border-color: var(--g300);
  background: rgba(39,135,61,.04);
}

.svc-zone-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.svc-zone-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--n900);
}
.svc-zone-badge {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 3px 9px;
  border-radius: 6px;
}

.svc-zone-stats {
  display: flex; gap: 20px;
}
.svc-zone-stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--n900);
  font-family: var(--font-mono);
}
.stat-label {
  display: block;
  font-size: .72rem;
  color: var(--n400);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: 2px;
}
.svc-zone-dist {
  margin-top: 10px;
  font-size: .8rem;
  color: var(--g600);
  display: flex; align-items: center; gap: 6px;
}

/* Alternatives */
.svc-alt-label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--n400);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 16px 0 8px;
}
.svc-alt-zones { display: flex; flex-direction: column; gap: 6px; }
.svc-alt-zone {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  border: 1.5px solid var(--n200);
  border-radius: 8px;
  text-decoration: none;
  font-size: .88rem;
  color: var(--n700);
  background: white;
  transition: border-color .15s, background .15s;
}
.svc-alt-zone:hover { border-color: var(--g300); background: rgba(39,135,61,.03); }
.svc-alt-avail {
  font-size: .8rem;
  font-weight: 600;
  color: var(--g600);
}

/* Choice grid (lost person) */
.svc-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 8px;
}
.svc-choice-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  padding: 20px 12px;
  border: 1.5px solid var(--n200);
  border-radius: 12px;
  background: white;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: .85rem;
  color: var(--n700);
  text-align: center;
  line-height: 1.4;
  transition: border-color .15s, background .15s, transform .1s;
}
.svc-choice-btn i { font-size: 1.6rem; color: var(--blue); }
.svc-choice-btn:hover {
  border-color: var(--blue);
  background: rgba(26,79,168,.04);
  transform: translateY(-2px);
}

.svc-modal-note {
  text-align: center;
  font-size: .82rem;
  color: var(--n500);
  margin-top: 14px;
  line-height: 1.5;
}
.svc-modal-note strong { color: var(--n700); }

/* Service card cursor */
.sel-card[data-service] { cursor: pointer; }

@media (max-width: 480px) {
  .svc-modal { padding: 28px 20px 22px; }
  .svc-choice-grid { grid-template-columns: 1fr 1fr; }
  .svc-zone-stats { gap: 12px; }
}
