/* ═══════════════════════════════════════════════════════════════════
   website.css — Restozay public marketing site design system
   ───────────────────────────────────────────────────────────────────
   Shared by every page under app/templates/website/.
   Previously this lived inline in each template (~680 duplicated lines
   per page). Keep page-specific rules in the page's own <style> block.

   Sections:
     1. Tokens & reset      6. Merchant directory
     2. Layout utilities    7. Pricing
     3. Nav (+ mobile)      8. CTA band & footer
     4. Hero                9. City / location pages
     5. Sections & cards   10. Responsive
   ═══════════════════════════════════════════════════════════════════ */

/* ─── 1. TOKENS & RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:     #1D9E75;
  --teal-lt:  #5DCAA5;
  --teal-bg:  #E8F8F2;
  --teal-dk:  #0F6E56;
  --teal-xdk: #085041;
  --amber:    #EF9F27;
  --amber-lt: #FAC775;
  --amber-bg: #FEF5E4;
  --amber-dk: #9E6314;   /* 4.6:1 on --amber-bg; was 3.4:1 */
  --coral:    #D85A30;
  --coral-bg: #FAECE7;
  --coral-dk: #993C1D;
  --bg:       #FAFAF8;
  --bg-white: #FFFFFF;
  --bg-dark:  #0D1F1A;
  --bg-dark2: #132820;
  --border:   #E8E6DF;
  --border2:  #D1CEC4;
  --text-1:   #1A1A17;
  --text-2:   #5A584F;
  --text-3:   #74726C;   /* muted label ink — 4.8:1 on white, 4.6:1 on cream.
                            Was #9B9890 (2.9:1), which failed AA everywhere. */
  --font-body:    'Instrument Sans', sans-serif;
  --font-display: 'Fraunces', serif;
  --max-w:    1140px;
  --r:        10px;
  --rl:       16px;

  /* ── Premium theme layer ──────────────────────────────────────────
     Light base with dark showcase sections. Dark surfaces get their own
     ink/rule tokens so a section can flip to dark by adding one class
     instead of restating every colour. */
  --ink-0:    #06120E;   /* deepest — page-edge dark */
  --ink-1:    #0A1D17;   /* dark section base */
  --ink-2:    #0F2A21;   /* raised surface on dark */
  --ink-3:    #16382C;   /* hairline / border on dark */
  --on-dark:      rgba(255,255,255,0.94);
  --on-dark-2:    rgba(255,255,255,0.68);
  --on-dark-3:    rgba(255,255,255,0.46);
  --rule-dark:    rgba(255,255,255,0.10);
  --rule-light:   rgba(26,26,23,0.07);

  /* Elevation — soft, layered, never a single hard drop shadow. */
  --e1: 0 1px 2px rgba(13,31,26,.05), 0 2px 8px rgba(13,31,26,.04);
  --e2: 0 2px 4px rgba(13,31,26,.05), 0 8px 24px rgba(13,31,26,.07);
  --e3: 0 4px 8px rgba(13,31,26,.06), 0 18px 48px rgba(13,31,26,.10);
  --e4: 0 8px 16px rgba(13,31,26,.08), 0 32px 80px rgba(13,31,26,.16);

  --rs:  8px;
  --rxl: 22px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: 16px;          /* was 15px — 16 is the comfortable reading base */
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Headings break on sense rather than leaving a single orphaned word.
   Ignored by browsers that do not support it. */
h1, h2, h3, .section-h, .cta-h, .fx-text h3 { text-wrap: balance; }
p, li { text-wrap: pretty; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-body); }
img { display: block; }

/* Respect users who ask for less motion (ticker, blink, hovers). */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  /* Reveal must not leave content invisible when its transition is killed. */
  .js .reveal { opacity: 1 !important; transform: none !important; }
}

/* Keyboard focus stays visible everywhere on the marketing site. */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ─── 2. LAYOUT UTILITIES ─── */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
@media(max-width:768px){ .wrap { padding: 0 20px; } }

.stripe { height: 4px; background: linear-gradient(90deg, var(--teal) 50%, var(--amber) 75%, var(--coral) 100%); }

/* ─── DARK SHOWCASE SECTIONS ──────────────────────────────────────
   Add .dark-panel to a full-bleed band. Everything inside inverts via
   the --on-dark tokens; the aurora glow is a pseudo-element so it never
   affects layout and can be disabled for reduced motion. */
.dark-panel {
  position: relative;
  isolation: isolate;
  background: var(--ink-1);
  color: var(--on-dark);
  overflow: hidden;
}
.dark-panel::before {
  content: '';
  position: absolute; inset: -40% -20% auto -20%;
  height: 130%;
  z-index: -1;
  background:
    radial-gradient(48% 55% at 18% 12%, rgba(29,158,117,.36), transparent 62%),
    radial-gradient(42% 50% at 82% 8%,  rgba(93,202,165,.20), transparent 60%),
    radial-gradient(50% 60% at 60% 96%, rgba(239,159,39,.11), transparent 64%);
  pointer-events: none;
}
/* Fine grid, kept very low contrast — reads as texture, not decoration. */
.dark-panel::after {
  content: '';
  position: absolute; inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(75% 70% at 50% 30%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(75% 70% at 50% 30%, #000 25%, transparent 78%);
  pointer-events: none;
}
.dark-panel h1, .dark-panel h2, .dark-panel h3 { color: var(--on-dark); }
.dark-panel .section-h { color: var(--on-dark); }
.dark-panel .section-h em { color: var(--teal-lt); }
.dark-panel .section-sub { color: var(--on-dark-2); }
.dark-panel .section-eyebrow { color: var(--teal-lt); }
.dark-panel .section-eyebrow::before { background: var(--teal-lt); }

/* Glass card for use on dark panels. */
.glass {
  background: rgba(255,255,255,.055);
  border: 1px solid var(--rule-dark);
  border-radius: var(--rl);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

/* Hairline divider that works on either ground. */
.hr-fade {
  height: 1px; border: 0; margin: 0;
  background: linear-gradient(90deg, transparent, var(--rule-light) 18%, var(--rule-light) 82%, transparent);
}
.dark-panel .hr-fade {
  background: linear-gradient(90deg, transparent, var(--rule-dark) 18%, var(--rule-dark) 82%, transparent);
}

/* ─── SCROLL REVEAL ───────────────────────────────────────────────
   Opt-in via .reveal. JS adds .in when the element enters the viewport.
   Elements stay visible if JS never runs, and motion is dropped entirely
   under prefers-reduced-motion (see the media query in section 1). */
/* Gated on .js (set by an inline script in <head>) so that without
   JavaScript — or if the script fails — nothing is ever hidden. */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .62s cubic-bezier(.22,.61,.36,1),
              transform .62s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal-d1 { transition-delay: .07s; }
.js .reveal-d2 { transition-delay: .14s; }
.js .reveal-d3 { transition-delay: .21s; }

/* ─── ICONS ───────────────────────────────────────────────────────
   Lucide sprite (app/templates/website/_partials/icons.html). Icons size
   to the container's font-size and inherit its colour, so a tile only has
   to set font-size + color rather than restyling the SVG. */
.ic {
  width: 1em; height: 1em;
  display: block;
  flex-shrink: 0;
  stroke-width: 2;
}
.ic-thin { stroke-width: 1.75; }

/* Visually hidden but readable by screen readers + crawlers. */
.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;
}

/* Skip link — first tab stop on every page. */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--teal); color: #fff;
  padding: 10px 18px; border-radius: 0 0 var(--r) 0;
  font-size: 13px; font-weight: 500;
}
.skip-link:focus { left: 0; }

/* ─── 3. NAV ───────────────────────────────────────────────────────
   A full-width bar at rest that condenses into a floating glass pill once
   you scroll. The wrapper stays transparent and paints its own backdrop in
   ::before, so the pill can fade in independently without a second element.

   Scoped to .site-nav, never the bare `nav` element — breadcrumbs are <nav>
   too, and a bare selector made them sticky at top:0 over the real bar. */
:root { --nav-h: 68px; --nav-h-sm: 58px; }

.site-nav {
  position: sticky; top: 0; z-index: 200;
  padding: 0 20px;
  transition: padding .42s cubic-bezier(.22,.61,.36,1);
}
/* Full-bleed backdrop, used only at rest. */
.site-nav::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid var(--border);
  opacity: 1;
  transition: opacity .32s ease;
  pointer-events: none;
}
.site-nav.scrolled { padding: 12px 20px 0; }
.site-nav.scrolled::before { opacity: 0; }   /* hand off to the pill */

.nav-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  transition: height .42s cubic-bezier(.22,.61,.36,1),
              max-width .42s cubic-bezier(.22,.61,.36,1),
              padding .42s cubic-bezier(.22,.61,.36,1),
              border-radius .42s cubic-bezier(.22,.61,.36,1),
              background .32s ease, border-color .32s ease, box-shadow .32s ease;
}
/* The pill. */
.site-nav.scrolled .nav-inner {
  height: var(--nav-h-sm);
  max-width: calc(var(--max-w) - 60px);
  padding: 0 10px 0 20px;
  border-radius: 999px;
  /* Deliberately translucent so whatever scrolls under it reads as blurred
     glass. The fill alone is too light for 13.5px body-grey text over the
     dark showcase bands, so scrolled links switch to --text-1 below. */
  background: rgba(255,255,255,0.66);
  border-color: rgba(26,26,23,.10);
  box-shadow: 0 1px 0 rgba(255,255,255,.75) inset, var(--e3);
  -webkit-backdrop-filter: blur(26px) saturate(190%);
  backdrop-filter: blur(26px) saturate(190%);
}
/* Darker ink once the bar is glass — keeps it legible whatever passes under. */
.site-nav.scrolled .nav-links a { color: var(--text-1); }
.site-nav.scrolled .nav-links a:hover { background: rgba(26,26,23,.07); }
.site-nav.scrolled .logo-name { color: var(--text-1); }

/* Logo lockup */
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark {
  width: 32px; height: 32px;
  border-radius: 9px;
  object-fit: contain;
  transition: transform .42s cubic-bezier(.22,.61,.36,1);
}
.site-nav.scrolled .logo-mark { transform: scale(.92); }
.logo-name { font-size: 17.5px; font-weight: 600; color: var(--text-1); letter-spacing: -0.03em; transition: color .3s; }
.logo-name em { font-style: normal; color: var(--teal); transition: color .3s; }

/* Links — hover fills a soft pill rather than only recolouring the text. */
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  position: relative;
  font-size: 13.5px; font-weight: 500;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text-1); background: rgba(26,26,23,.05); }

.nav-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.btn-primary {
  font-size: 13.5px; font-weight: 600; color: #fff;
  background: linear-gradient(180deg, var(--teal) 0%, #178A66 100%);
  border: none; border-radius: 999px; padding: 10px 20px;
  display: flex; align-items: center; gap: 7px;
  box-shadow: 0 1px 0 rgba(255,255,255,.28) inset, 0 4px 14px rgba(29,158,117,.30);
  transition: transform .18s cubic-bezier(.22,.61,.36,1), box-shadow .2s, filter .2s;
}
.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 1px 0 rgba(255,255,255,.28) inset, 0 8px 22px rgba(29,158,117,.40);
}
@media(max-width:900px){ .nav-links { display:none; } }

/* ── Over a dark hero ────────────────────────────────────────────────
   body.dark-top pages start with no bar at all; the pill takes over on
   scroll and everything reverts to the light treatment. */
/* Pull the bar over the hero so the hero background — glow included —
   shows through it, instead of a strip of page background above the hero. */
.dark-top .site-nav {
  margin-bottom: calc(-1 * var(--nav-h));
}
.dark-top .site-nav::before { opacity: 0; }
.dark-top .hero-inner { padding-top: calc(66px + var(--nav-h)); }
.dark-top .site-nav .logo-name { color: var(--on-dark); }
.dark-top .site-nav .logo-name em { color: var(--teal-lt); }
.dark-top .site-nav .nav-links a { color: var(--on-dark-2); }
.dark-top .site-nav .nav-links a:hover { color: #fff; background: rgba(255,255,255,.10); }
.dark-top .site-nav .nav-hamburger { border-color: var(--rule-dark); }
.dark-top .site-nav .nav-hamburger .hb { background: var(--on-dark); }

.dark-top .site-nav.scrolled .logo-name { color: var(--text-1); }
.dark-top .site-nav.scrolled .logo-name em { color: var(--teal); }
.dark-top .site-nav.scrolled .nav-links a { color: var(--text-2); }
.dark-top .site-nav.scrolled .nav-links a:hover { color: var(--text-1); background: rgba(26,26,23,.05); }
.dark-top .site-nav.scrolled .nav-hamburger { border-color: var(--border2); }
.dark-top .site-nav.scrolled .nav-hamburger .hb { background: var(--text-1); }

@media(max-width:540px){
  .site-nav { padding: 0 14px; }
  .site-nav.scrolled { padding: 8px 14px 0; }
  .nav-inner { padding: 0 14px; }
  .site-nav.scrolled .nav-inner { padding: 0 8px 0 14px; }
}

/* HAMBURGER BUTTON */
.nav-hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border2);
  border-radius: 999px;
  width: 38px; height: 38px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  transition: border-color .2s;
}
.nav-hamburger:hover { border-color: var(--teal); }
.nav-hamburger .hb { width: 18px; height: 2px; background: var(--text-1); border-radius: 2px; transition: all .25s ease; }
.nav-hamburger.open .hb:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open .hb:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open .hb:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media(max-width:900px) {
  .nav-hamburger { display: flex; }
}

/* MOBILE NAV DRAWER */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  transition: top .42s cubic-bezier(.22,.61,.36,1);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 8px 20px 20px;
  z-index: 190;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
/* Adjacent sibling of the bar, so it can track the condensed pill. */
.site-nav.scrolled + .mobile-nav { top: calc(var(--nav-h-sm) + 12px); }
.mobile-nav.open { display: flex; animation: mnSlide .2s ease; }
@keyframes mnSlide { from { opacity:0; transform: translateY(-6px); } to { opacity:1; transform: translateY(0); } }
.mn-link {
  display: block;
  padding: 14px 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  transition: color .18s;
}
.mn-link:hover { color: var(--teal); }
.mn-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.mn-actions .btn-primary { flex: 1; justify-content: center; padding: 12px 20px; }

/* ─── 4. HERO — dark showcase ─────────────────────────────────────
   The hero is the page's one big statement: deep ink ground, aurora
   glow, oversized display type, glass proof cards. Everything below the
   ticker returns to the warm light base. */
.hero {
  position: relative;
  isolation: isolate;
  background: var(--ink-1);
  color: var(--on-dark);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: -30% -15% auto -15%;
  height: 150%;
  z-index: -1;
  background:
    radial-gradient(46% 58% at 14% 6%,  rgba(29,158,117,.42), transparent 62%),
    radial-gradient(40% 52% at 88% 2%,  rgba(93,202,165,.24), transparent 58%),
    radial-gradient(55% 55% at 72% 92%, rgba(239,159,39,.13), transparent 62%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  z-index: -1;
  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: 64px 64px;
  mask-image: radial-gradient(80% 75% at 50% 28%, #000 22%, transparent 76%);
  -webkit-mask-image: radial-gradient(80% 75% at 50% 28%, #000 22%, transparent 76%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 96px 40px 88px;
  display: grid; grid-template-columns: 1fr 430px; gap: 60px; align-items: center;
}
/* Base = light ground (city pages, /locations). */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--teal-bg); color: var(--teal-xdk);
  border: 1px solid rgba(29,158,117,.25);
  border-radius: 20px; padding: 6px 15px;
  font-size: 12px; font-weight: 500; margin-bottom: 26px;
}
.hero-eyebrow span { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; animation: blink 2s infinite; }
/* Dark ground override. */
.hero .hero-eyebrow, .dark-panel .hero-eyebrow {
  background: rgba(255,255,255,.07);
  color: var(--teal-lt);
  border-color: rgba(93,202,165,.28);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.hero .hero-eyebrow span, .dark-panel .hero-eyebrow span {
  background: var(--teal-lt); box-shadow: 0 0 0 3px rgba(93,202,165,.18);
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.4vw, 62px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--on-dark);
  margin-bottom: 20px;
}
/* Accent phrase picks up the brand gradient rather than a flat tint. */
.hero h1 em {
  font-style: italic; font-weight: 300;
  background: linear-gradient(96deg, var(--teal-lt) 12%, #9BE3C6 52%, var(--amber-lt) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero-desc { font-size: 16.5px; color: var(--on-dark-2); line-height: 1.72; max-width: 470px; margin-bottom: 34px; }
.hero-btns { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 42px; }
/* Base = light ground: teal fill + bordered ghost. */
.btn-hero {
  font-size: 14.5px; font-weight: 600; color: #fff;
  background: var(--teal); border: none; border-radius: 12px; padding: 14px 28px;
  display: flex; align-items: center; gap: 9px;
  box-shadow: var(--e2);
  transition: transform .18s cubic-bezier(.22,.61,.36,1), box-shadow .18s, background .2s;
}
.btn-hero:hover { background: var(--teal-dk); transform: translateY(-2px); box-shadow: var(--e3); }
.btn-hero-outline {
  font-size: 14.5px; font-weight: 500; color: var(--text-1);
  background: var(--bg-white);
  border: 1px solid var(--border2); border-radius: 12px; padding: 13px 24px;
  display: flex; align-items: center; gap: 9px;
  transition: border-color .2s, background .2s, transform .18s, color .2s;
}
.btn-hero-outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }

/* Dark ground override: light button reads as primary against ink. */
.hero .btn-hero, .dark-panel .btn-hero {
  color: var(--ink-0);
  background: linear-gradient(180deg, #fff 0%, #EAF6F1 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 10px 30px rgba(0,0,0,.28);
}
.hero .btn-hero:hover, .dark-panel .btn-hero:hover {
  background: linear-gradient(180deg, #fff 0%, #DCF0E8 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 16px 40px rgba(0,0,0,.34);
}
.hero .btn-hero-outline, .dark-panel .btn-hero-outline {
  color: var(--on-dark);
  background: rgba(255,255,255,.06);
  border-color: var(--rule-dark);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.hero .btn-hero-outline:hover, .dark-panel .btn-hero-outline:hover {
  border-color: rgba(93,202,165,.55); background: rgba(93,202,165,.10); color: #fff;
}
.hero-trust { display: flex; align-items: center; gap: 18px; }
.trust-avatars { display: flex; }
.trust-avatars .av {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--ink-1);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: #fff;
  margin-left: -9px;
}
.trust-avatars .av:first-child { margin-left: 0; }
.trust-text { font-size: 13px; color: var(--on-dark-3); line-height: 1.5; }
.trust-text strong { color: var(--on-dark); font-weight: 600; }

/* HERO VISUAL SLOT — deliberately empty.
   Holds the right-hand grid column open at full height so the animation can
   be dropped into #heroVisual without the hero resizing or the copy jumping.
   Hidden below 900px, where the hero is single-column anyway. */
.hero-visual {
  min-height: 440px;
  align-self: stretch;
}
@media(max-width:900px){ .hero-visual { display: none; } }

/* LIVE ORDER CARD — glass panel. Lived in the hero originally; now sits in
   the dashboard showcase, which is also a dark panel, so the same treatment
   still applies. */
.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--rule-dark);
  border-radius: var(--rxl);
  overflow: hidden;
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255,255,255,.09) inset, 0 30px 70px rgba(0,0,0,.42);
}
.hc-bar { background: rgba(255,255,255,.05); border-bottom: 1px solid var(--rule-dark); padding: 11px 16px; display: flex; align-items: center; gap: 8px; }
.hc-bar-dots { display: flex; gap: 5px; }
.hc-bar-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.24); }
.hc-bar-title { font-size: 11.5px; color: var(--on-dark-2); font-weight: 500; margin-left: 4px; }
.hc-body { padding: 16px; }
.hc-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.hc-stat { background: rgba(255,255,255,.05); border: 1px solid var(--rule-dark); border-radius: 11px; padding: 11px 12px; }
.hc-stat .n { font-size: 18px; font-weight: 700; color: var(--on-dark); line-height: 1.1; margin-bottom: 3px; letter-spacing: -.02em; }
.hc-stat .l { font-size: 10.5px; color: var(--on-dark-3); }
.hc-stat.green .n { color: var(--teal-lt); }
.hc-stat.amber .n { color: var(--amber-lt); }
.hc-orders { background: rgba(255,255,255,.04); border: 1px solid var(--rule-dark); border-radius: 11px; }
.hc-orders-hd { padding: 10px 12px; border-bottom: 1px solid var(--rule-dark); font-size: 11px; font-weight: 500; color: var(--on-dark-2); display: flex; justify-content: space-between; }
.hc-orders-hd span { color: var(--teal-lt); font-size: 10.5px; }
.hc-order-row { padding: 9px 12px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--rule-dark); }
.hc-order-row:last-child { border-bottom: none; }
.hc-order-info { display: flex; align-items: center; gap: 9px; }
.hc-order-av { width: 25px; height: 25px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 600; color: #fff; }
.hc-order-name { font-size: 12px; font-weight: 500; color: var(--on-dark); }
.hc-order-item { font-size: 10.5px; color: var(--on-dark-3); }
.hc-order-price { font-size: 12px; font-weight: 600; color: var(--teal-lt); }
.hc-badge { font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 5px; }
.badge-live { background: rgba(93,202,165,.16); color: var(--teal-lt); }
.badge-done { background: rgba(255,255,255,.08); color: var(--on-dark-3); }
.badge-new { background: rgba(250,199,117,.16); color: var(--amber-lt); }

/* ─── TICKER ─── */
.ticker { background: var(--ink-0); border-top: 1px solid var(--rule-dark); border-bottom: 1px solid var(--rule-dark); padding: 13px 0; overflow: hidden; }
.ticker-inner { display: inline-block; white-space: nowrap; animation: ticker 28s linear infinite; }
.ticker-inner span { margin: 0 30px; font-size: 11.5px; color: var(--on-dark-2); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }
.ticker-inner span::before { content: '✦'; margin-right: 12px; color: var(--teal-lt); font-size: 9px; opacity: .8; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ─── 5. SECTION BASE ─── */
.section { padding: 104px 0; border-bottom: 1px solid var(--rule-light); }
.section.alt { background: var(--bg-white); }
/* Dark sections use .dark-panel (see the showcase block above), which brings
   the glow and grid with it. `.section.dark` is gone — nothing referenced it
   after the partners band moved over. */
.section.dark-panel { border-bottom: none; }
/* --teal-dk, not --teal: at 11px uppercase the brighter teal is 3.2:1. */
.section-eyebrow { font-size: 11.5px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--teal-dk); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.section-eyebrow::before { content:''; width:20px; height:2px; background:var(--teal); border-radius:2px; }
.section-h { font-family: var(--font-display); font-size: clamp(30px, 4.3vw, 46px); font-weight: 500; line-height: 1.12; letter-spacing: -0.032em; color: var(--text-1); margin-bottom: 14px; }
.section-h em { font-style: italic; color: var(--teal); font-weight: 300; }
.section-h.light { color: #E8F8F2; }
.section-sub { font-size: 16px; color: var(--text-2); line-height: 1.78; max-width: 62ch; margin-bottom: 52px; }
.section-sub.light { color: rgba(232,248,242,0.65); }

/* FEATURES */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feat { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--rxl); padding: 28px; box-shadow: var(--e1); transition: border-color .25s, transform .25s cubic-bezier(.22,.61,.36,1), box-shadow .25s; }
.feat:hover { border-color: rgba(29,158,117,.42); transform: translateY(-4px); box-shadow: var(--e3); }
.feat.accent { background: var(--teal-bg); border-color: rgba(29,158,117,0.3); }
.feat-ico { width: 44px; height: 44px; border-radius: 11px; background: var(--teal-bg); border: 1px solid rgba(29,158,117,.18); color: var(--teal-dk); display: flex; align-items: center; justify-content: center; font-size: 21px; margin-bottom: 16px; }
.feat.accent .feat-ico { background: #fff; border-color: rgba(29,158,117,0.28); color: var(--teal); }
.feat-title { font-size: 15px; font-weight: 500; color: var(--text-1); margin-bottom: 7px; }
.feat.accent .feat-title { color: var(--teal-xdk); }
.feat-desc { font-size: 14px; color: var(--text-2); line-height: 1.6; }
.feat.accent .feat-desc { color: var(--teal-dk); }
@media(max-width:768px){ .feat-grid { grid-template-columns: 1fr; } }

/* PRODUCT SCREENSHOT — real POS screen, replaces the old CSS mockup.
   Aspect ratio is reserved up front so the section never jumps as it loads. */
.shot {
  position: relative;
  margin-top: 52px;
  border-radius: var(--rxl);
  overflow: hidden;
  border: 1px solid var(--rule-dark);
  box-shadow: 0 1px 0 rgba(255,255,255,.10) inset, 0 40px 90px rgba(0,0,0,.45);
  background: var(--ink-2);
  aspect-ratio: 1711 / 919;
}
.shot picture { display: block; width: 100%; height: 100%; }
.shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.shot-cap { font-size: 13.5px; color: var(--text-3); line-height: 1.6; margin-top: 14px; max-width: 720px; }
.shot-cap.on-dark { color: var(--on-dark-3); }

/* Live proof under the screenshot: the four figures beside the order feed. */
.dash-live {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 20px;
  align-items: start;
  margin-top: 32px;
}
.dash-live .shot-stats { grid-template-columns: 1fr 1fr; margin-top: 0; }
@media(max-width:900px){
  .dash-live { grid-template-columns: 1fr; }
}

/* Live figures under the screenshot. Glass tiles when the section is dark. */
.shot-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 94px; margin-top: 32px; }
.shot-stat { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--rxl); padding: 20px 22px; box-shadow: var(--e1); }
.shot-stat .n { font-family: var(--font-display); font-size: 26px; font-weight: 500; color: var(--teal); line-height: 1.1; margin-bottom: 5px; letter-spacing: -.02em; }
.shot-stat .l { font-size: 12px; color: var(--text-3); line-height: 1.4; }
.dark-panel .shot-stat {
  background: rgba(255,255,255,.055);
  border-color: var(--rule-dark);
  box-shadow: 0 1px 0 rgba(255,255,255,.07) inset;
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
.dark-panel .shot-stat .n { color: var(--teal-lt); }
.dark-panel .shot-stat .l { color: var(--on-dark-3); }
@media(max-width:768px){ .shot-stats { grid-template-columns: 1fr 1fr; } }
@media(max-width:540px){ .shot { margin-top: 30px; border-radius: 12px; } }

/* HOW IT WORKS */
.hiw-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.hiw-grid::before {
  content: '';
  position: absolute;
  top: 22px; left: 11%; right: 11%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--teal) 0, var(--teal) 8px, transparent 8px, transparent 18px);
}
.hiw-step { text-align: center; padding: 0 16px; position: relative; }
.hiw-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-white); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 500; color: var(--text-2);
  margin: 0 auto 16px;
  position: relative; z-index: 1;
}
.hiw-step.active .hiw-num { background: var(--teal); border-color: var(--teal); color: #fff; }
.hiw-title { font-size: 13px; font-weight: 500; color: var(--text-1); margin-bottom: 6px; }
.hiw-desc { font-size: 13px; color: var(--text-3); line-height: 1.6; }
/* PARTNERS */
.partners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }
.partner-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--rl); padding: 24px;
  transition: border-color .2s, background .2s;
}
.partner-card:hover { border-color: rgba(29,158,117,0.4); background: rgba(29,158,117,0.05); }
.partner-logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.partner-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.partner-name { font-size: 15px; font-weight: 500; color: rgba(232,248,242,0.9); }
.partner-type { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 1px; }
.partner-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 16px; }
.partner-tag { display: inline-block; background: rgba(29,158,117,0.15); color: var(--teal-lt); font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: 5px; border: 1px solid rgba(29,158,117,0.25); }
@media(max-width:768px){ .partners-grid { grid-template-columns: 1fr; } }

/* ─── 6. RESTAURANT FINDER ─────────────────────────────────────────
   Location-aware directory. Distance is computed client-side, so these
   styles only have to cover: the locator bar, grouped results and the
   distance chip. */
.merchant-section { background: var(--bg); border-bottom: 1px solid var(--rule-light); padding: 104px 0; }

/* Locator bar */
.mfind {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--rxl);
  padding: 10px 12px;
  box-shadow: var(--e1);
  margin-bottom: 16px;
}
.mfind-sep { width: 1px; align-self: stretch; margin: 4px 0; background: var(--border); flex-shrink: 0; }
.mfind-loc {
  display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0;
  font-size: 13.5px; font-weight: 600; color: var(--teal-dk);
  background: var(--teal-bg);
  border: 1px solid rgba(29,158,117,.22);
  border-radius: 999px; padding: 10px 18px;
  transition: background .2s, border-color .2s, color .2s, transform .18s;
}
.mfind-loc:hover { background: #DCF3EA; border-color: rgba(29,158,117,.4); transform: translateY(-1px); }
.mfind-loc:disabled { opacity: .6; cursor: progress; transform: none; }
.mfind-loc.on { background: var(--teal); border-color: var(--teal); color: #fff; }
.mfind-loc .ic { font-size: 16px; }

.mfind-search { display: flex; align-items: center; gap: 9px; flex: 1; min-width: 0; }
.mfind-search .mfind-ico { color: var(--text-3); font-size: 17px; flex-shrink: 0; }
.mfind-input {
  flex: 1; min-width: 0; border: none; outline: none;
  font-size: 14.5px; font-family: var(--font-body); color: var(--text-1);
  background: transparent;
}
.mfind-input::placeholder { color: var(--text-3); }
.mfind-select {
  border: none; outline: none; flex-shrink: 0;
  font-size: 13.5px; font-family: var(--font-body); color: var(--text-2);
  background: transparent; cursor: pointer; padding: 6px 2px;
}

/* Status line + quick chips */
.mfind-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 10px;
}
.mfind-status { font-size: 13.5px; color: var(--text-2); }
.mfind-status strong { color: var(--text-1); font-weight: 600; }
.mfind-chips { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.mf-tag {
  font-size: 12.5px; font-weight: 500;
  padding: 7px 15px; border-radius: 999px;
  border: 1px solid var(--border2);
  background: var(--bg-white);
  color: var(--text-2); cursor: pointer;
  display: inline-flex; align-items: center; gap: 7px;
  transition: all .18s; white-space: nowrap;
}
.mf-tag:hover { border-color: var(--teal); color: var(--teal-dk); }
.mf-tag.active { background: var(--teal); border-color: var(--teal); color: #fff; }
.mf-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.mf-tag.active .mf-dot { background: #fff; }

/* Inline star used in rating figures (mock KPIs, review tiles). */
.rate-star { display: inline-flex; vertical-align: -0.1em; color: var(--amber); }
.rate-star .ic { fill: currentColor; stroke-width: 1.5; }

.mfind-note { font-size: 12.5px; color: var(--text-3); margin-bottom: 18px; }
.mfind-empty {
  padding: 40px 24px; text-align: center;
  font-size: 14.5px; color: var(--text-2);
  background: var(--bg-white); border: 1px dashed var(--border2);
  border-radius: var(--rxl);
}
.mfind-empty a { color: var(--teal-dk); text-decoration: underline; }

/* Result groups, inside a bounded scroller.
   Without a cap, 25 restaurants push pricing and the FAQ far down the page. */
.mscroll {
  max-height: 620px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 4px 14px 8px 4px;
  margin-top: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--border2) transparent;
}
.mscroll:focus-visible { outline: 2px solid var(--teal); outline-offset: 4px; border-radius: var(--r); }
/* Fade the last row so it reads as "more below" rather than a hard cut.
   Applied only when the list actually overflows — otherwise it would clip
   the bottom of a short list. The class is toggled by the finder script. */
.mscroll.is-scrollable {
  mask-image: linear-gradient(to bottom, #000 calc(100% - 44px), transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 calc(100% - 44px), transparent 100%);
}
.mscroll::-webkit-scrollbar { width: 8px; }
.mscroll::-webkit-scrollbar-track { background: transparent; }
.mscroll::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 999px; }
.mscroll::-webkit-scrollbar-thumb:hover { background: var(--text-3); }

.mgroup { margin-bottom: 6px; }
.mgroup-head {
  position: sticky; top: 0; z-index: 2;
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-3);
  padding: 10px 0 12px;
  background: var(--bg);
}
.mgroup-head::after { content: ''; flex: 1; height: 1px; background: var(--rule-light); }
#mNearGroup .mgroup-head { color: var(--teal-dk); }

.mgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media(max-width:900px){ .mgrid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:480px){ .mgrid { grid-template-columns: 1fr; } }

/* ── Card ───────────────────────────────────────────────────────────── */
.mc {
  position: relative;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--rxl);
  overflow: hidden;
  box-shadow: var(--e1);
  display: flex; flex-direction: column;
  transition: transform .28s cubic-bezier(.22,.61,.36,1), border-color .28s, box-shadow .28s;
}
.mc:hover { transform: translateY(-5px); border-color: rgba(29,158,117,.45); box-shadow: var(--e3); }
.mc[hidden] { display: none; }

/* Cover: soft tint wash, logo lifted onto a white chip so transparent
   logos stay legible on any tint. */
.mc-cover {
  position: relative;
  height: 112px;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(120% 100% at 50% 0%, #fff 0%, transparent 62%),
    var(--mc-tint, var(--teal-bg));
  border-bottom: 1px solid var(--rule-light);
}
.mc-chip {
  width: 66px; height: 66px; border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(26,26,23,.06);
  box-shadow: 0 2px 6px rgba(13,31,26,.08), 0 10px 24px rgba(13,31,26,.07);
  display: flex; align-items: center; justify-content: center;
  transition: transform .28s cubic-bezier(.22,.61,.36,1);
}
.mc:hover .mc-chip { transform: scale(1.05) rotate(-1.5deg); }
.mc-chip img { width: 44px; height: 44px; object-fit: contain; }
.mc-initials { font-size: 21px; font-weight: 700; color: var(--text-2); letter-spacing: -.03em; }

.mc-badge {
  position: absolute; top: 10px; right: 10px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(26,26,23,.06);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.mc-badge i { width: 6px; height: 6px; border-radius: 50%; }
.mc-badge.open { color: var(--teal-dk); }
.mc-badge.open i { background: var(--teal); box-shadow: 0 0 0 3px rgba(29,158,117,.18); }
.mc-badge.closed { color: var(--text-3); }
.mc-badge.closed i { background: var(--text-3); }

.mc-body { padding: 15px 16px 14px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.mc-name {
  font-size: 15px; font-weight: 600; color: var(--text-1); line-height: 1.32;
  letter-spacing: -.015em;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.mc-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.mc-tag {
  font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 7px;
  background: var(--teal-bg); color: var(--teal-dk);
}
.mc-city {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11.5px; color: var(--text-3);
}
.mc-city .ic { font-size: 12px; }

.mc-footer {
  display: flex; align-items: center; gap: 8px;
  margin-top: auto; padding-top: 11px;
  border-top: 1px solid var(--rule-light);
  min-height: 34px;
}
.mc-dist {
  display: inline-flex; align-items: center;
  font-size: 11.5px; font-weight: 700; color: var(--teal-dk);
  background: var(--teal-bg); border-radius: 999px; padding: 3px 10px;
}
.mc-dist[hidden] { display: none; }
.mc-orders { font-size: 11.5px; color: var(--text-3); margin-left: auto; transition: opacity .22s; }

/* Swaps in for the order count on hover — a clear affordance that the
   whole card opens the menu. */
.mc-go {
  position: absolute; right: 16px; bottom: 15px;
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11.5px; font-weight: 600; color: var(--teal-dk);
  opacity: 0; transform: translateX(-4px);
  transition: opacity .22s, transform .22s;
  pointer-events: none;
}
.mc-go .ic { font-size: 14px; }
.mc:hover .mc-orders { opacity: 0; }
.mc:hover .mc-go { opacity: 1; transform: none; }

@media(max-width:900px){ .mscroll { max-height: 560px; } }
@media(max-width:540px){ .mscroll { max-height: 480px; padding-right: 8px; } }
@media (hover: none) {
  /* No hover on touch — keep the order count visible instead. */
  .mc-go { display: none; }
  .mc:hover .mc-orders { opacity: 1; }
}

@media(max-width:768px){
  .mfind { flex-wrap: wrap; gap: 8px; padding: 10px; }
  .mfind-sep { display: none; }
  .mfind-loc { order: -1; width: 100%; justify-content: center; }
  .mfind-search { flex: 1 1 100%; }
  .mfind-select { flex: 1 1 40%; }
}

/* ─── 7. PRICING ─── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.p-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--rxl); padding: 32px; box-shadow: var(--e1); }
.p-card.feat { border: 1.5px solid var(--teal); position: relative; box-shadow: var(--e3); }
.p-card.feat:hover { transform: none; }
.p-pop { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--teal); color: #fff; font-size: 11px; font-weight: 500; padding: 4px 16px; border-radius: 0 0 8px 8px; letter-spacing: 0.05em; white-space: nowrap; }
.p-plan { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); margin-bottom: 8px; }
.p-price { font-size: 32px; font-weight: 600; color: var(--text-1); line-height: 1; margin-bottom: 4px; }
.p-price sub { font-size: 14px; font-weight: 400; color: var(--text-3); vertical-align: baseline; }
.p-desc { font-size: 13.5px; color: var(--text-3); margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.p-feats { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.p-feats li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--text-2); }
.p-feats li .ck { color: var(--teal); font-size: 15px; margin-top: 1px; flex-shrink: 0; display: flex; }
.p-feats li .xx { color: var(--border2); font-size: 14px; margin-top: 1px; flex-shrink: 0; }
.p-feats li.off { color: var(--text-3); }
.p-feats li .ai-feat { color: #a855f7; }
.p-btn { width: 100%; padding: 11px; border-radius: var(--r); font-size: 13px; font-weight: 500; border: 1px solid var(--border2); background: var(--bg); color: var(--text-1); cursor: pointer; transition: all .2s; }
.p-btn:hover { border-color: var(--teal); color: var(--teal); }
.p-card.feat .p-btn { background: var(--teal); color: #fff; border: none; }
.p-card.feat .p-btn:hover { background: var(--teal-dk); }
@media(max-width:768px){ .pricing-grid { grid-template-columns: 1fr; } }

/* ─── 8. CTA BAND ─── */
.cta-band {
  position: relative; isolation: isolate;
  background: var(--ink-1);
  padding: 96px 0;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: -60% -20%; z-index: -1;
  background:
    radial-gradient(40% 60% at 50% 8%, rgba(29,158,117,.44), transparent 62%),
    radial-gradient(38% 52% at 16% 96%, rgba(93,202,165,.18), transparent 60%),
    radial-gradient(38% 52% at 86% 92%, rgba(239,159,39,.13), transparent 60%);
  pointer-events: none;
}
.cta-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; text-align: center; }
.cta-h { font-family: var(--font-display); font-size: clamp(30px, 4.4vw, 50px); font-weight: 500; color: var(--on-dark); margin-bottom: 14px; letter-spacing: -0.032em; line-height: 1.1; }
.cta-p { font-size: 16px; color: var(--on-dark-2); margin-bottom: 32px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: linear-gradient(180deg, #fff 0%, #EAF6F1 100%); color: var(--ink-0); font-size: 14.5px; font-weight: 600; border: none; border-radius: 12px; padding: 14px 30px; display: flex; align-items: center; gap: 9px; box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 10px 30px rgba(0,0,0,.3); transition: transform .18s cubic-bezier(.22,.61,.36,1), box-shadow .18s; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 16px 42px rgba(0,0,0,.36); }
.btn-white-ghost { background: rgba(255,255,255,.06); color: var(--on-dark); font-size: 14.5px; border: 1px solid var(--rule-dark); border-radius: 12px; padding: 13px 24px; display: flex; align-items: center; gap: 9px; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); transition: border-color .2s, background .2s, transform .18s; }
.btn-white-ghost:hover { border-color: rgba(93,202,165,.55); background: rgba(93,202,165,.10); transform: translateY(-2px); }

/* FOOTER */
/* Deep brand teal rather than near-black: the CTA band directly above is
   bright teal, so this keeps the page in one colour family and turns a harsh
   jump into a step down. Text opacities below are higher than they would be on
   black — #085041 is a mid-dark ground, so the old 0.25–0.45 whites washed out.
   Values chosen to clear WCAG AA (4.5:1) at these small sizes.
   Scoped for the same reason as .site-nav — a bare `footer` selector would
   paint any nested <footer> (e.g. inside a card). */
.site-footer {
  background: var(--teal-xdk);
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 48px 0 32px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand-logo .mark { width: 30px; height: 30px; border-radius: 8px; object-fit: contain; }
.footer-brand-logo .nm { font-size: 16px; font-weight: 600; color: rgba(255,255,255,0.95); }
.footer-brand-logo .nm em { font-style: normal; color: var(--teal-lt); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.62); line-height: 1.6; max-width: 240px; }
.footer-col-title { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.62); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.72); margin-bottom: 9px; text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--teal-lt); }
.footer-bottom { max-width: var(--max-w); margin: 0 auto; padding: 20px 40px 0; border-top: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.62); }
.footer-badge { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.62); }
.footer-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-lt); }
@media(max-width:768px){ .footer-inner { grid-template-columns: 1fr 1fr; } }

/* Footer city strip — internal links to every published location page. */
.footer-cities {
  max-width: var(--max-w); margin: 0 auto 28px;
  padding: 22px 40px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-cities .fc-title { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.62); margin-bottom: 12px; }
.footer-cities .fc-links { display: flex; flex-wrap: wrap; gap: 8px 10px; }
.footer-cities .fc-links a {
  font-size: 12px; color: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 20px; padding: 4px 12px;
  transition: color .2s, border-color .2s, background .2s;
}
.footer-cities .fc-links a:hover {
  color: #fff;
  border-color: var(--teal-lt);
  background: rgba(93,202,165,0.14);
}
@media(max-width:768px){ .footer-cities { padding: 22px 20px 0; } }

/* ─── 9. CITY / LOCATION PAGES ─── */

/* Breadcrumb */
.city-crumb {
  max-width: var(--max-w); margin: 0 auto;
  padding: 16px 40px 0;
  font-size: 12px; color: var(--text-3);
  display: flex; align-items: center; gap: 7px; flex-wrap: wrap;
}
.city-crumb a { color: var(--text-2); transition: color .2s; }
.city-crumb a:hover { color: var(--teal); }
.city-crumb .sep { color: var(--border2); }
@media(max-width:768px){ .city-crumb { padding: 14px 20px 0; } }

/* Hero — single column, copy-led (no fake dashboard card) */
.city-hero { background: var(--bg-white); border-bottom: 1px solid var(--border); }
.city-hero-inner { max-width: var(--max-w); margin: 0 auto; padding: 40px 40px 64px; }
.city-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.6vw, 50px);
  font-weight: 500; line-height: 1.12; letter-spacing: -0.02em;
  color: var(--text-1); margin-bottom: 18px; max-width: 800px;
}
.city-hero h1 em { font-style: italic; color: var(--teal); font-weight: 300; }
.city-hero-desc { font-size: 16px; color: var(--text-2); line-height: 1.75; max-width: 640px; margin-bottom: 30px; }

/* Hero artwork — the Restozay POS running in a real room, with the city's own
   landmark behind it. Sits full content width so the POS screen stays legible;
   an overlay would bury the product detail that makes the shot worth having. */
.city-shot {
  position: relative;
  margin-top: 38px;
  border-radius: var(--rl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 18px 60px rgba(13,31,26,.16);
  background: var(--bg);
  /* Reserve the 16:9 box before the file lands so the page never jumps. */
  aspect-ratio: 1672 / 941;
}
/* <picture> is inline by default, so the img's height:100% would resolve
   against an auto-height box and never fill the reserved aspect-ratio frame. */
.city-shot picture { display: block; width: 100%; height: 100%; }
.city-shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.city-shot-badge {
  position: absolute; left: 14px; bottom: 14px;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(13,31,26,.72);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px; padding: 6px 14px;
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,.92);
}
.city-shot-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal-lt);
  animation: blink 2s infinite;
}
.city-shot-cap {
  font-size: 13.5px; color: var(--text-3);
  line-height: 1.6; margin-top: 12px; max-width: 720px;
}
@media(max-width:540px){
  .city-shot { margin-top: 26px; border-radius: 12px; }
  .city-shot-badge { left: 10px; bottom: 10px; padding: 5px 11px; font-size: 11px; }
}

/* Live local proof strip */
.city-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px; margin-top: 40px;
}
.city-stat {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 18px 20px;
}
.city-stat .n { font-family: var(--font-display); font-size: 26px; font-weight: 500; color: var(--teal); line-height: 1.1; margin-bottom: 4px; }
.city-stat .l { font-size: 12px; color: var(--text-3); line-height: 1.4; }
@media(max-width:768px){ .city-stats { grid-template-columns: 1fr 1fr; } }

/* Prose blocks — the actual indexable body copy */
.city-prose { max-width: 720px; }
.city-prose h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 500; line-height: 1.2; letter-spacing: -0.02em;
  color: var(--text-1); margin-bottom: 14px;
}
.city-prose h3 { font-size: 16px; font-weight: 600; color: var(--text-1); margin: 28px 0 8px; }
.city-prose p { font-size: 15.5px; color: var(--text-2); line-height: 1.85; margin-bottom: 18px; max-width: 68ch; }
.city-prose ul { list-style: none; margin: 0 0 20px; display: flex; flex-direction: column; gap: 10px; }
.city-prose li { font-size: 15.5px; color: var(--text-2); line-height: 1.7; display: flex; gap: 10px; align-items: flex-start; }
.city-prose li::before { content: '✓'; color: var(--teal); font-weight: 600; flex-shrink: 0; margin-top: 1px; }
.city-prose strong { color: var(--text-1); font-weight: 600; }
.city-prose a { color: var(--teal-dk); text-decoration: underline; text-underline-offset: 2px; }
.city-prose a:hover { color: var(--teal); }

/* Two-column body: prose + sticky sidebar */
.city-body-grid { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
@media(max-width:900px){ .city-body-grid { grid-template-columns: 1fr; gap: 40px; } }

.city-aside {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 24px;
  position: sticky; top: 88px;
}
.city-aside-title { font-size: 14px; font-weight: 600; color: var(--text-1); margin-bottom: 6px; }
.city-aside-desc { font-size: 13px; color: var(--text-2); line-height: 1.6; margin-bottom: 18px; }
.city-aside .btn-hero { justify-content: center; width: 100%; margin-bottom: 10px; }
.city-aside .btn-hero-outline { justify-content: center; width: 100%; }
.city-aside-meta { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); font-size: 12px; color: var(--text-3); line-height: 1.7; }
@media(max-width:900px){ .city-aside { position: static; } }

/* Areas served — keyword-rich internal chips */
.city-areas { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.city-area-chip {
  font-size: 12px; font-weight: 500;
  background: var(--teal-bg); color: var(--teal-dk);
  border: 1px solid rgba(29,158,117,0.2);
  border-radius: 20px; padding: 5px 13px;
}

/* FAQ — accordion, also the source for FAQPage schema */
.city-faq { max-width: 760px; }
.city-faq-item {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--rl); margin-bottom: 10px; overflow: hidden;
  transition: border-color .2s;
}
.city-faq-item[open] { border-color: rgba(29,158,117,0.35); }
.city-faq-item summary {
  list-style: none; cursor: pointer;
  padding: 18px 22px;
  font-size: 15px; font-weight: 500; color: var(--text-1);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.city-faq-item summary::-webkit-details-marker { display: none; }
.city-faq-item summary::after {
  content: '+'; flex-shrink: 0;
  font-size: 20px; font-weight: 400; color: var(--teal);
  transition: transform .2s;
}
.city-faq-item[open] summary::after { content: '−'; }
.city-faq-item .a { padding: 0 22px 22px; font-size: 15px; color: var(--text-2); line-height: 1.75; }

/* Nearby cities cross-links */
.city-nearby { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.city-nearby a {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 18px 20px;
  transition: border-color .2s, transform .2s;
}
.city-nearby a:hover { border-color: var(--teal); transform: translateY(-2px); }
.city-nearby .cn-name { font-size: 15px; font-weight: 600; color: var(--text-1); margin-bottom: 3px; }
.city-nearby .cn-sub { font-size: 12px; color: var(--text-3); }
@media(max-width:768px){ .city-nearby { grid-template-columns: 1fr; } }

/* Locations hub grid */
.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.loc-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--rl); overflow: hidden;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.loc-card:hover { border-color: var(--teal); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(29,158,117,0.1); }
.loc-thumb {
  aspect-ratio: 1672 / 941;
  overflow: hidden; background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.loc-thumb picture { display: block; width: 100%; height: 100%; }
.loc-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.loc-card:hover .loc-thumb img { transform: scale(1.04); }
.loc-body { padding: 20px 22px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.loc-card .lc-region { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); }
.loc-card .lc-name { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--text-1); line-height: 1.2; }
.loc-card .lc-desc { font-size: 13.5px; color: var(--text-2); line-height: 1.6; }
.loc-card .lc-more { font-size: 13px; font-weight: 500; color: var(--teal-dk); margin-top: auto; padding-top: 10px; }
@media(max-width:768px){ .loc-grid { grid-template-columns: 1fr; } }

/* Cities strip on the homepage */
.home-cities { display: flex; flex-wrap: wrap; gap: 10px; }
.home-city-link {
  font-size: 13px; font-weight: 500;
  background: var(--bg-white); border: 1px solid var(--border2);
  border-radius: 20px; padding: 8px 18px; color: var(--text-2);
  transition: all .18s;
}
.home-city-link:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-1px); }
.home-city-link.all { background: var(--teal); border-color: var(--teal); color: #fff; }
.home-city-link.all:hover { background: var(--teal-dk); color: #fff; }

/* ─── 9b. FEATURE EXPLAINERS ───────────────────────────────────────
   Alternating text/visual rows used to actually explain a module rather
   than name it. `.fx-row:nth-child(even)` flips the visual to the left. */
.fx-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.fx-row:last-child { border-bottom: none; }
.fx-row:nth-child(even) .fx-text { order: 2; }
.fx-row:nth-child(even) .fx-visual { order: 1; }

.fx-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal-dk); background: var(--teal-bg);
  border: 1px solid rgba(29,158,117,.22);
  border-radius: 20px; padding: 5px 13px; margin-bottom: 16px;
}
.fx-text h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px); font-weight: 500;
  line-height: 1.18; letter-spacing: -.02em;
  color: var(--text-1); margin-bottom: 14px;
}
.fx-text h3 em { font-style: italic; color: var(--teal); font-weight: 300; }
.fx-text > p { font-size: 15.5px; color: var(--text-2); line-height: 1.82; margin-bottom: 20px; max-width: 62ch; }
.fx-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 22px; }
.fx-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--text-2); line-height: 1.6; }
.fx-list li::before {
  content: '✓'; flex-shrink: 0;
  width: 19px; height: 19px; margin-top: 1px;
  border-radius: 50%; background: var(--teal-bg); color: var(--teal-dk);
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.fx-list li strong { color: var(--text-1); font-weight: 600; }
.fx-note {
  font-size: 13px; color: var(--text-3); line-height: 1.65;
  border-left: 2px solid var(--amber); padding-left: 14px;
}

/* Shared mock-window chrome for the feature visuals */
.mock {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.07);
}
.mock-bar {
  background: var(--teal); padding: 9px 14px;
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; color: rgba(255,255,255,.9);
}
.mock-bar.dark { background: var(--bg-dark2); color: rgba(255,255,255,.7); }
.mock-bar .dots { display: flex; gap: 4px; }
.mock-bar .dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.4); }
.mock-bar .tag { margin-left: auto; font-size: 11px; color: rgba(255,255,255,.6); }
.mock-body { padding: 14px; background: var(--bg); }

.mock-row {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: 9px; padding: 10px 12px; margin-bottom: 7px;
}
.mock-row:last-child { margin-bottom: 0; }
.mock-row .ico {
  width: 28px; height: 28px; border-radius: 7px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 15px;
  background: var(--teal-bg); color: var(--teal-dk);
}
.mock-row .t { font-size: 12px; font-weight: 600; color: var(--text-1); line-height: 1.3; }
.mock-row .s { font-size: 11.5px; color: var(--text-3); line-height: 1.4; }
.mock-row .r { margin-left: auto; text-align: right; flex-shrink: 0; }
.mock-row .amt { font-size: 12px; font-weight: 600; color: var(--teal-dk); }
.mock-pill {
  font-size: 10.5px; font-weight: 600; padding: 2px 9px; border-radius: 5px;
  background: var(--teal-bg); color: var(--teal-dk); display: inline-block;
}
.mock-pill.amber { background: var(--amber-bg); color: var(--amber-dk); }
.mock-pill.coral { background: var(--coral-bg); color: var(--coral-dk); }
.mock-pill.grey  { background: #ECECEC; color: var(--text-3); }
.mock-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-bottom: 10px; }
.mock-kpi { background: var(--bg-white); border: 1px solid var(--border); border-radius: 9px; padding: 10px 11px; }
.mock-kpi .n { font-size: 16px; font-weight: 700; color: var(--text-1); line-height: 1.1; }
.mock-kpi .n.teal { color: var(--teal); }
.mock-kpi .n.amber { color: var(--amber-dk); }
.mock-kpi .l { font-size: 10.5px; color: var(--text-3); margin-top: 2px; }
.mock-chat {
  display: flex; flex-direction: column; gap: 7px;
  background: #ECE5DD; padding: 12px; border-radius: 9px;
}
.mock-msg {
  max-width: 82%; font-size: 12.5px; line-height: 1.5;
  padding: 7px 10px; border-radius: 9px; background: #fff; color: var(--text-1);
  box-shadow: 0 1px 1px rgba(0,0,0,.06);
}
.mock-msg.out { align-self: flex-end; background: #DCF8C6; }
.mock-bars { display: flex; align-items: flex-end; gap: 5px; height: 66px; margin-top: 4px; }
.mock-bars i { flex: 1; background: rgba(29,158,117,.28); border-radius: 3px 3px 0 0; display: block; }
.mock-bars i.hi { background: var(--teal); }
@media(max-width:900px){
  .fx-row { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; }
  .fx-row:nth-child(even) .fx-text,
  .fx-row:nth-child(even) .fx-visual { order: initial; }
}

/* ─── 9c. FEATURE INDEX ─── */
.fidx { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fidx-col {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--rxl); padding: 24px 26px; box-shadow: var(--e1);
  transition: border-color .25s, box-shadow .25s;
}
.fidx-col:hover { border-color: rgba(29,158,117,.35); box-shadow: var(--e2); }
.fidx-col h3 {
  font-size: 13px; font-weight: 600; color: var(--text-1);
  display: flex; align-items: center; gap: 9px;
  padding-bottom: 12px; margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.fidx-col h3 .ico {
  width: 28px; height: 28px; border-radius: 8px; background: var(--teal-bg);
  color: var(--teal-dk);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.fidx-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.fidx-col li { font-size: 13.5px; color: var(--text-2); line-height: 1.5; display: flex; gap: 8px; }
.fidx-col li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
@media(max-width:900px){ .fidx { grid-template-columns: 1fr 1fr; } }
@media(max-width:640px){ .fidx { grid-template-columns: 1fr; } }

/* ─── 9d. COMPARISON TABLE ─── */
.cmp-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cmp {
  width: 100%; min-width: 620px; border-collapse: separate; border-spacing: 0;
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--rl); overflow: hidden;
}
.cmp th, .cmp td { padding: 14px 18px; text-align: left; font-size: 13.5px; border-bottom: 1px solid var(--border); }
.cmp thead th { background: var(--bg); font-size: 12px; font-weight: 600; color: var(--text-2); white-space: nowrap; }
.cmp thead th.us { background: var(--teal); color: #fff; }
.cmp tbody th { font-weight: 500; color: var(--text-1); width: 34%; }
.cmp td { color: var(--text-2); }
.cmp td.us { background: rgba(29,158,117,.05); color: var(--text-1); font-weight: 500; }
.cmp tr:last-child th, .cmp tr:last-child td { border-bottom: none; }
/* Cells mix an icon with text, so the mark needs to sit inline. */
.cmp .yes, .cmp .no { display: inline-flex; vertical-align: -0.15em; font-size: 16px; }
.cmp .yes { color: var(--teal); }
.cmp .no  { color: var(--coral); opacity: .75; }

/* ─── 9e. BUSINESS TYPES ─── */
.biz-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.biz {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--rxl); padding: 24px; box-shadow: var(--e1);
  transition: border-color .25s, transform .25s cubic-bezier(.22,.61,.36,1), box-shadow .25s;
}
.biz:hover { border-color: rgba(29,158,117,.42); transform: translateY(-4px); box-shadow: var(--e3); }
.biz .e {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--teal-bg); border: 1px solid rgba(29,158,117,.18);
  color: var(--teal-dk); font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 13px;
}
.biz .t { font-size: 14px; font-weight: 600; color: var(--text-1); margin-bottom: 5px; }
.biz .d { font-size: 13.5px; color: var(--text-2); line-height: 1.55; }
@media(max-width:900px){ .biz-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:540px){ .biz-grid { grid-template-columns: 1fr; } }

/* ─── 10. RESPONSIVE ─── */
@media(max-width:900px){
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .hiw-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hiw-grid::before { display: none; }
}
@media(max-width:768px){
  /* .nav-inner padding lives with the nav rules in section 3 — it was
     duplicated here and overrode the small-screen pill padding. */
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .city-hero-inner { padding: 30px 20px 48px; }
}
@media(max-width:640px){
  .partners-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media(max-width:540px){
  .hero-inner { padding: 44px 20px 40px; }
  .dark-top .hero-inner { padding-top: calc(28px + var(--nav-h)); }
  .hero h1 { font-size: clamp(26px, 7vw, 38px); }
  .section-h { font-size: clamp(24px, 6.5vw, 36px); }
  .feat-grid { grid-template-columns: 1fr; }
  .hiw-grid { grid-template-columns: 1fr; }
  .hiw-step { padding: 0 4px; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn-white,
  .cta-btns .btn-white-ghost { justify-content: center; text-align: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .section { padding: 52px 0; }
  .cta-inner { padding: 0 20px; }
  .cta-band { padding: 52px 0; }
  .section-sub { font-size: 14px; margin-bottom: 36px; }
  .city-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .city-stat { padding: 14px 16px; }
  .city-stat .n { font-size: 22px; }
}
@media(max-width:400px){
  .footer-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 24px; }
  .p-card { padding: 20px; }
}
