:root {
  color-scheme: light dark;
  --bg: #f6faf9;
  --surface: #ffffff;
  --surface-soft: #eef6f4;
  --surface-deep: #e3f1ee;
  --text: #10201e;
  --muted: #627572;
  --muted-2: #869793;
  --line: #d8e6e2;
  --teal: #0f9f90;
  --teal-dark: #08766c;
  --teal-deeper: #075a53;
  --teal-soft: #e5f7f3;
  --green: #2bb66e;
  --ink: #0b2e2a;
  --shadow-sm: 0 10px 28px rgba(17, 64, 58, .08);
  --shadow: 0 28px 80px rgba(15, 75, 67, .14);
  --shadow-deep: 0 38px 100px rgba(5, 56, 49, .22);
  --radius-sm: 16px;
  --radius: 24px;
  --radius-lg: 34px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0d1514;
    --surface: #121d1b;
    --surface-soft: #172421;
    --surface-deep: #1d302c;
    --text: #f2f8f6;
    --muted: #a4b5b1;
    --muted-2: #81948f;
    --line: #27403a;
    --teal: #1ab9a6;
    --teal-dark: #72ddcf;
    --teal-deeper: #b2f4eb;
    --teal-soft: #173a34;
    --ink: #061b18;
    --shadow-sm: 0 10px 28px rgba(0,0,0,.22);
    --shadow: 0 28px 80px rgba(0,0,0,.34);
    --shadow-deep: 0 38px 100px rgba(0,0,0,.42);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
svg { display: block; }

.business-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 11px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(22px) saturate(1.15);
}
.business-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.035em;
  white-space: nowrap;
}
.brand-icon {
  width: 34px;
  height: 38px;
  display: grid;
  place-items: center;
}
.brand-icon svg { width: 32px; height: 36px; }
.brand-icon svg > path:first-child,
.stage-pin svg > path:first-child,
.contact-mark svg > path:first-child { fill: var(--teal); }
.brand-icon .bolt,
.stage-pin .bolt,
.contact-mark .bolt { fill: #fff; }
.brand-icon.small { width: 29px; height: 32px; }
.brand-icon.small svg { width: 27px; height: 31px; }
.business-nav { display: flex; align-items: center; gap: 5px; }
.business-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 12px;
  border-radius: 11px;
}
.business-nav a:hover { color: var(--text); background: var(--surface-soft); }
.business-header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.header-home-link:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--teal) 34%, var(--line));
  background: var(--surface-soft);
}
.header-cta {
  text-decoration: none;
  color: #fff;
  background: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 13px;
  padding: 11px 16px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(15,159,144,.18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(15,159,144,.24); }

.business-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(66px, 8vw, 112px) clamp(20px, 5vw, 76px) clamp(70px, 8vw, 106px);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  background:
    radial-gradient(circle at 12% 10%, color-mix(in srgb, var(--teal) 13%, transparent), transparent 34%),
    radial-gradient(circle at 84% 76%, color-mix(in srgb, #4fd7aa 12%, transparent), transparent 30%),
    linear-gradient(180deg, color-mix(in srgb, var(--teal-soft) 58%, var(--bg)), var(--bg) 70%);
}
.business-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  pointer-events: none;
  background-image:
    linear-gradient(color-mix(in srgb, var(--line) 55%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--line) 55%, transparent) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.6), transparent 76%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .28; pointer-events: none; }
.orb-one { width: 380px; height: 380px; background: #50d8c6; left: -190px; bottom: -170px; }
.orb-two { width: 430px; height: 430px; background: #b5efcf; right: -180px; top: 10px; }
.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(480px, 1.06fr);
  gap: clamp(46px, 6vw, 90px);
  align-items: center;
}
.hero-copy-block { max-width: 650px; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: .15em;
  font-weight: 800;
}
.hero-copy-block h1 {
  margin: 0;
  font-size: clamp(45px, 5.5vw, 76px);
  line-height: .98;
  letter-spacing: -.068em;
  font-weight: 800;
}
.hero-copy-block h1 span { color: var(--teal); }
.hero-lede {
  max-width: 615px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.72;
  font-weight: 550;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 30px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--teal); border: 1px solid var(--teal); box-shadow: 0 12px 28px rgba(15,159,144,.2); }
.button-primary:hover { box-shadow: 0 16px 34px rgba(15,159,144,.28); }
.button-secondary { color: var(--text); background: color-mix(in srgb, var(--surface) 88%, transparent); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.hero-proof { margin-top: 27px; display: flex; flex-wrap: wrap; gap: 15px 21px; color: var(--muted); font-size: 11px; font-weight: 750; }
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero-proof i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px color-mix(in srgb, var(--green) 13%, transparent); }

.product-stage {
  position: relative;
  min-height: 520px;
  border: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--teal) 8%, transparent), transparent 50%),
    color-mix(in srgb, var(--surface) 86%, var(--surface-soft));
  box-shadow: var(--shadow-deep);
  transform: perspective(1200px) rotateY(-2.5deg) rotateX(1deg);
}
.stage-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(color-mix(in srgb, var(--line) 58%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--line) 58%, transparent) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .5;
}
.map-road { position: absolute; border-radius: 999px; background: color-mix(in srgb, var(--surface) 88%, var(--line)); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--line) 60%, transparent); }
.road-one { width: 720px; height: 30px; left: -190px; top: 190px; transform: rotate(-24deg); }
.road-two { width: 600px; height: 24px; right: -210px; top: 310px; transform: rotate(31deg); }
.road-three { width: 510px; height: 21px; left: 65px; top: 70px; transform: rotate(69deg); }
.stage-pin { position: absolute; z-index: 3; width: 48px; height: 54px; filter: drop-shadow(0 10px 15px rgba(10,98,87,.24)); }
.stage-pin svg { width: 100%; height: 100%; }
.pin-main { left: 58%; top: 28%; }
.stage-dot { position: absolute; z-index: 2; width: 13px; height: 13px; border: 3px solid var(--surface); border-radius: 50%; background: var(--green); box-shadow: 0 5px 15px rgba(18,65,59,.2); }
.dot-one { left: 24%; top: 31%; }
.dot-two { right: 19%; top: 50%; background: #d89a17; }
.dot-three { left: 38%; bottom: 22%; background: #8b9996; }
.product-card {
  position: absolute;
  z-index: 5;
  border: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  backdrop-filter: blur(18px);
  border-radius: 20px;
  box-shadow: 0 20px 55px rgba(19,72,65,.15);
}
.charger-card { left: 32px; top: 42px; width: min(360px, calc(100% - 64px)); padding: 20px; }
.card-topline { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.verified-pill { display: inline-flex; align-items: center; gap: 5px; color: var(--teal-dark); background: var(--teal-soft); border: 1px solid color-mix(in srgb, var(--teal) 16%, var(--line)); border-radius: 999px; padding: 6px 9px; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.verified-pill svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2.2; }
.distance { color: var(--muted-2); font-size: 10px; font-weight: 800; }
.charger-card h2 { margin: 14px 0 4px; font-size: 19px; letter-spacing: -.03em; }
.charger-card > p { margin: 0; color: var(--muted); font-size: 11px; font-weight: 650; }
.status-row { margin-top: 15px; display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 9px; }
.status-row strong { color: var(--text); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px color-mix(in srgb, var(--green) 13%, transparent); }
.nearby-card { right: 28px; bottom: 38px; width: min(350px, calc(100% - 58px)); padding: 20px; display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; }
.sponsored-label { position: absolute; right: 13px; top: 12px; color: var(--muted-2); font-size: 8px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.nearby-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; color: var(--teal-dark); background: var(--teal-soft); border: 1px solid color-mix(in srgb, var(--teal) 16%, var(--line)); }
.nearby-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.nearby-card small { color: var(--teal); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.nearby-card h3 { margin: 4px 0 3px; font-size: 14px; letter-spacing: -.02em; }
.nearby-card p { margin: 0; color: var(--muted); font-size: 10px; }
.intent-chip { position: absolute; z-index: 4; padding: 8px 11px; border: 1px solid color-mix(in srgb, var(--line) 80%, transparent); border-radius: 999px; background: color-mix(in srgb, var(--surface) 92%, transparent); color: var(--muted); box-shadow: var(--shadow-sm); font-size: 9px; font-weight: 800; }
.chip-one { left: 37px; bottom: 115px; }
.chip-two { right: 44px; top: 196px; }
.chip-three { left: 48%; bottom: 128px; }
.chip-four { left: 43%; top: 219px; }

.intent-strip {
  max-width: 1220px;
  margin: -30px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.intent-strip > p { margin: 0; color: var(--teal); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; white-space: nowrap; }
.intent-items { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.intent-items span { padding: 4px 18px; border-left: 1px solid var(--line); color: var(--text); font-size: 11px; font-weight: 800; text-align: center; }

.section { max-width: 1280px; margin: 0 auto; padding: clamp(86px, 9vw, 128px) clamp(20px, 4vw, 46px); }
.section-heading h2,
.operator-copy h2,
.contact-content h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.04;
  letter-spacing: -.055em;
  font-weight: 800;
}
.section-heading > p:last-child { color: var(--muted); font-size: 15px; line-height: 1.72; }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; margin-bottom: 40px; }
.split-heading > p { margin: 0 0 4px; max-width: 500px; }
.operator-section { padding: clamp(76px, 8vw, 104px) clamp(20px, 4vw, 56px) 0; }
.operator-shell {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
  padding: clamp(42px, 6vw, 72px);
  border: 1px solid color-mix(in srgb, var(--teal) 14%, var(--line));
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 14%, color-mix(in srgb, var(--teal) 10%, transparent), transparent 38%),
    var(--surface-soft);
}
.operator-copy > p:not(.eyebrow) { margin: 18px 0 0; max-width: 600px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.check-list { display: grid; gap: 16px; margin-top: 30px; }
.check-list > div { display: grid; grid-template-columns: 28px 1fr; gap: 11px; align-items: start; }
.check-list > div > span { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; color: var(--teal-dark); background: var(--teal-soft); font-size: 12px; font-weight: 900; }
.check-list p { margin: 0; }
.check-list strong { display: block; font-size: 12px; }
.check-list small { display: block; margin-top: 3px; color: var(--muted); font-size: 11px; line-height: 1.55; }
.operator-panel { padding: 28px; border: 1px solid var(--line); border-radius: 26px; background: var(--surface); box-shadow: var(--shadow); }
.panel-label { color: var(--muted-2); font-size: 9px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.operator-station { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; margin-top: 23px; padding-bottom: 23px; border-bottom: 1px solid var(--line); }
.operator-badge { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 17px; color: #fff; background: var(--teal); box-shadow: 0 12px 25px rgba(15,159,144,.2); }
.operator-badge svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.operator-station small { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.operator-station h3 { margin: 4px 0 3px; font-size: 20px; letter-spacing: -.03em; }
.operator-station p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.operator-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 18px 0; }
.operator-stats div { padding: 12px; border-radius: 13px; background: var(--surface-soft); }
.operator-stats span { display: block; color: var(--muted-2); font-size: 8px; text-transform: uppercase; letter-spacing: .07em; font-weight: 800; }
.operator-stats strong { display: block; margin-top: 4px; color: var(--teal-dark); font-size: 11px; }
.full-button { width: 100%; }
.operator-shell-compact { grid-template-columns: minmax(0, 1.1fr) minmax(300px, .72fr); gap: clamp(36px, 6vw, 76px); }
.operator-panel-compact h3 { margin: 10px 0 8px; font-size: 24px; line-height: 1.15; letter-spacing: -.035em; }
.operator-panel-compact p { margin: 0 0 22px; color: var(--muted); font-size: 12px; line-height: 1.65; }

.centered-heading { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.centered-heading > p:last-child { margin: 16px auto 0; }
.placement-layout { display: grid; grid-template-columns: 1.08fr .92fr; gap: 34px; align-items: center; }
.placement-preview { overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: var(--surface); box-shadow: var(--shadow); }
.preview-browser-bar { height: 48px; display: flex; align-items: center; gap: 6px; padding: 0 16px; border-bottom: 1px solid var(--line); background: var(--surface-soft); }
.preview-browser-bar i { width: 7px; height: 7px; border-radius: 50%; background: var(--line); }
.preview-browser-bar span { margin-left: 8px; color: var(--muted); font-size: 9px; font-weight: 800; }
.preview-content { display: grid; grid-template-columns: .95fr 1.05fr; min-height: 340px; }
.preview-copy { position: relative; padding: 42px 30px; }
.preview-copy .sponsored-label { position: static; display: inline-block; margin-bottom: 28px; padding: 5px 8px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface-soft); }
.preview-copy small { display: block; color: var(--teal); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.preview-copy h3 { margin: 8px 0 9px; font-size: 27px; line-height: 1.08; letter-spacing: -.045em; }
.preview-copy p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; }
.preview-link { display: block; margin-top: 23px; color: var(--teal-dark); font-size: 10px; font-weight: 800; }
.preview-art { position: relative; overflow: hidden; background: linear-gradient(160deg, #d8f3eb 0%, #b9e5d9 43%, #7dcdb9 100%); }
.preview-art::after { content: ""; position: absolute; left: -10%; right: -10%; bottom: -42px; height: 130px; border-radius: 50% 50% 0 0; background: #477a69; opacity: .7; }
.art-sun { position: absolute; width: 75px; height: 75px; right: 28px; top: 32px; border-radius: 50%; background: rgba(255,255,255,.72); }
.art-building { position: absolute; z-index: 2; width: 130px; height: 150px; left: 50%; top: 50%; transform: translate(-50%,-35%); border-radius: 16px 16px 3px 3px; background: rgba(255,255,255,.86); box-shadow: 0 20px 40px rgba(34,93,76,.18); }
.art-building::before { content: ""; position: absolute; width: 88px; height: 18px; left: 21px; top: 28px; border-radius: 4px; background: #1f7768; box-shadow: 0 33px 0 #c7e7df, 0 66px 0 #c7e7df; }
.art-tree { position: absolute; z-index: 3; width: 44px; height: 85px; bottom: 28px; }
.art-tree::before { content: ""; position: absolute; left: 18px; bottom: 0; width: 8px; height: 38px; background: #5f725f; border-radius: 4px; }
.art-tree::after { content: ""; position: absolute; left: 0; top: 0; width: 44px; height: 53px; border-radius: 50%; background: #318872; }
.tree-one { left: 22px; }
.tree-two { right: 18px; transform: scale(.8); }
.placement-benefits { display: grid; gap: 12px; }
.placement-benefits article { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 21px; border: 1px solid var(--line); border-radius: 19px; background: var(--surface); }
.placement-benefits article > span { color: var(--teal); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.placement-benefits h3 { margin: 0 0 5px; font-size: 15px; letter-spacing: -.025em; }
.placement-benefits p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.6; }

.contact-section { padding: clamp(76px, 8vw, 112px) clamp(20px, 5vw, 76px); }
.contact-card {
  position: relative;
  max-width: 1180px;
  min-height: 390px;
  margin: 0 auto;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  padding: clamp(42px, 6vw, 72px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 15%, rgba(103,227,193,.26), transparent 30%),
    linear-gradient(135deg, #083b35 0%, #075d53 58%, #0f8f82 100%);
  box-shadow: 0 35px 90px rgba(7,75,66,.25);
  color: #fff;
}
.contact-card::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px); background-size: 44px 44px; }
.contact-glow { position: absolute; width: 300px; height: 300px; right: -80px; bottom: -120px; border-radius: 50%; background: #6de4c2; filter: blur(70px); opacity: .28; }
.contact-content { position: relative; z-index: 2; max-width: 760px; }
.light-eyebrow { color: #87e8dc; }
.contact-content h2 { font-size: clamp(40px, 5vw, 62px); }
.contact-content > p:not(.eyebrow):not(.contact-note) { max-width: 680px; margin: 17px 0 0; color: rgba(255,255,255,.76); font-size: 14px; line-height: 1.7; }
.contact-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 28px; }
.contact-button { color: #074b43; background: #fff; border: 1px solid #fff; }
.contact-email { color: #fff; text-decoration: none; font-size: 12px; font-weight: 800; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 2px; }
.contact-note { margin: 15px 0 0; color: rgba(255,255,255,.54); font-size: 9px; }
.contact-mark { position: relative; z-index: 2; width: 150px; height: 170px; opacity: .17; transform: rotate(7deg); }
.contact-mark svg { width: 100%; height: 100%; }
.contact-mark svg > path:first-child { fill: #fff; }
.contact-mark .bolt { fill: #083b35; }

footer { flex: 0 0 auto; width: 100%; margin-top: auto; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 25px clamp(18px, 4vw, 50px) 30px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.footer-brand { display: flex; align-items: center; gap: 8px; color: var(--text); }
.footer-brand img { width: 27px; height: 27px; }
.footer-brand-copy { display: grid; gap: 2px; }
.footer-brand-copy strong { line-height: 1.2; }
.copyright { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.35; }
.footer-links { display: flex; flex-wrap: wrap; gap: 13px; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--text); }

@media (max-width: 1050px) {
  .business-header { grid-template-columns: 1fr auto; }
  .business-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy-block { max-width: 820px; }
  .product-stage { max-width: 760px; width: 100%; margin: 0 auto; min-height: 510px; transform: none; }
  .intent-strip { margin-left: 20px; margin-right: 20px; }
  .split-heading { grid-template-columns: 1fr; gap: 18px; }
  .operator-shell { grid-template-columns: 1fr; }
  .placement-layout { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .business-header { min-height: 64px; padding: 10px 15px; }
  .business-brand { gap: 7px; font-size: 13px; }
  .brand-icon { width: 29px; height: 33px; }
  .brand-icon svg { width: 28px; height: 32px; }
  .business-header-actions { gap: 6px; }
  .header-home-link { min-height: 36px; padding: 0 10px; font-size: 9px; }
  .header-cta { padding: 9px 10px; font-size: 9px; }
  .business-hero { padding: 56px 18px 72px; }
  .hero-copy-block h1 { font-size: clamp(42px, 13vw, 60px); }
  .hero-lede { font-size: 15px; line-height: 1.65; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero-proof { display: grid; gap: 11px; }
  .product-stage { min-height: 455px; border-radius: 27px; }
  .charger-card { left: 16px; top: 22px; width: calc(100% - 32px); }
  .nearby-card { left: 16px; right: auto; bottom: 20px; width: calc(100% - 32px); }
  .pin-main { left: 67%; top: 46%; }
  .chip-one { left: 18px; bottom: 132px; }
  .chip-two { right: 18px; top: 187px; }
  .chip-three, .chip-four { display: none; }
  .intent-strip { margin-top: -22px; grid-template-columns: 1fr; gap: 13px; padding: 18px; }
  .intent-strip > p { white-space: normal; text-align: center; }
  .intent-items { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .intent-items span { padding: 8px; border: 0; border-radius: 10px; background: var(--surface-soft); }
  .section { padding: 78px 18px; }
  .section-heading h2, .operator-copy h2 { font-size: 36px; }
  .operator-section { padding: 70px 18px 0; }
  .operator-shell { padding: 30px 22px; border-radius: 27px; }
  .operator-shell-compact { grid-template-columns: 1fr; }
  .operator-panel { padding: 20px; }
  .operator-stats { grid-template-columns: 1fr; }
  .preview-content { grid-template-columns: 1fr; }
  .preview-art { min-height: 240px; }
  .contact-section { padding: 78px 18px; }
  .contact-card { min-height: 0; grid-template-columns: 1fr; padding: 38px 24px; border-radius: 28px; }
  .contact-content h2 { font-size: 40px; }
  .contact-actions { align-items: flex-start; }
  .contact-mark { position: absolute; right: -20px; bottom: -35px; width: 120px; height: 140px; }
}

@media (max-width: 640px) {
  footer { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* Charger-details placement preview — mirrors the live sponsor experience. */
.business-brand-logo {
  width: 32px;
  height: 36px;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
}
.business-brand-logo.small { width: 27px; height: 31px; }

.details-stage {
  position: relative;
  min-height: 560px;
  padding: 34px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
  border-radius: 36px;
  background:
    radial-gradient(circle at 78% 14%, color-mix(in srgb, var(--teal) 13%, transparent), transparent 34%),
    radial-gradient(circle at 14% 86%, color-mix(in srgb, var(--green) 8%, transparent), transparent 35%),
    color-mix(in srgb, var(--surface-soft) 68%, var(--surface));
  box-shadow: var(--shadow-deep);
}
.details-stage-glow { position: absolute; border-radius: 50%; filter: blur(12px); pointer-events: none; }
.details-stage-glow.glow-one { width: 210px; height: 210px; right: -58px; top: -76px; background: color-mix(in srgb, var(--teal) 15%, transparent); }
.details-stage-glow.glow-two { width: 180px; height: 180px; left: -70px; bottom: -70px; background: color-mix(in srgb, var(--green) 10%, transparent); }
.mock-sheet {
  position: relative;
  z-index: 2;
  width: min(465px, 100%);
  padding: 22px;
  border: 1px solid color-mix(in srgb, var(--line) 86%, transparent);
  border-radius: 25px;
  background: var(--surface);
  box-shadow: 0 28px 70px rgba(11,62,55,.18);
}
.mock-sheet-topbar { display: flex; align-items: center; justify-content: space-between; color: var(--muted-2); font-size: 9px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.mock-close { width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); font-size: 16px; line-height: 1; }
.mock-station-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-top: 15px; }
.mock-station-header h2 { margin: 0; font-size: 19px; letter-spacing: -.035em; }
.mock-station-header p { margin: 4px 0 0; color: var(--muted); font-size: 10px; }
.mock-status { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 6px; padding: 6px 9px; border: 1px solid color-mix(in srgb, var(--green) 26%, var(--line)); border-radius: 999px; background: color-mix(in srgb, var(--green) 10%, var(--surface)); color: var(--text); font-size: 9px; font-weight: 800; }
.mock-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px color-mix(in srgb, var(--green) 12%, transparent); }
.mock-info-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; margin-top: 17px; }
.mock-info-grid > div { min-width: 0; padding: 10px 11px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-soft); }
.mock-info-grid span { display: block; color: var(--muted-2); font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.mock-info-grid strong { display: block; margin-top: 3px; color: var(--text); font-size: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-detail-section { margin-top: 17px; padding-top: 17px; border-top: 1px solid var(--line); }
.mock-section-heading h3 { margin: 0; font-size: 14px; letter-spacing: -.025em; }
.mock-section-heading p { margin: 4px 0 0; color: var(--muted); font-size: 9px; }
.mock-sponsored-card, .preview-sponsored-card {
  margin-top: 12px;
  padding: 13px;
  border: 1px solid color-mix(in srgb, var(--teal) 26%, var(--line));
  border-radius: 15px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--teal-soft) 60%, var(--surface)), var(--surface));
  box-shadow: 0 10px 28px rgba(15,100,90,.08);
}
.mock-sponsored-topline { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.mock-sponsored-badge { display: inline-flex; align-items: center; padding: 4px 7px; border-radius: 999px; background: var(--teal); color: #fff; font-size: 7px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.mock-sponsored-distance { color: var(--muted); font-size: 8px; font-weight: 800; }
.mock-sponsored-body { display: grid; grid-template-columns: 35px 1fr; gap: 10px; align-items: start; margin-top: 10px; }
.mock-sponsored-icon { width: 35px; height: 35px; display: grid; place-items: center; border: 1px solid color-mix(in srgb, var(--teal) 16%, var(--line)); border-radius: 11px; background: var(--surface); color: var(--teal); font-size: 15px; font-weight: 900; }
.mock-sponsored-category { display: block; color: var(--teal-dark); font-size: 7px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.mock-sponsored-body strong { display: block; margin-top: 2px; color: var(--text); font-size: 11px; line-height: 1.35; }
.mock-sponsored-body p { margin: 3px 0 0; color: var(--muted); font-size: 8.5px; line-height: 1.45; }
.mock-sponsored-body small { display: block; margin-top: 3px; color: var(--muted-2); font-size: 7.5px; line-height: 1.35; }
.mock-sponsored-cta { min-height: 31px; margin-top: 10px; padding: 0 10px; display: flex; align-items: center; justify-content: space-between; border-radius: 9px; background: var(--teal); color: #fff; font-size: 8px; font-weight: 850; }
.mock-sponsored-cta b { font-size: 12px; }
.mock-amenity-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.mock-amenity-row span { padding: 5px 7px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface-soft); color: var(--muted); font-size: 7.5px; font-weight: 750; }
.details-stage-note { position: absolute; z-index: 3; left: 50%; bottom: 14px; transform: translateX(-50%); width: max-content; max-width: calc(100% - 28px); margin: 0; padding: 7px 10px; border: 1px solid color-mix(in srgb, var(--teal) 18%, var(--line)); border-radius: 999px; background: color-mix(in srgb, var(--surface) 92%, transparent); color: var(--muted); box-shadow: var(--shadow-sm); font-size: 8px; font-weight: 800; text-align: center; }
.details-stage-note span { color: var(--green); }

.placement-details-preview { padding: 22px; background: var(--surface-soft); }
.preview-search-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.preview-search-copy { min-width: 0; }
.preview-search-copy small { display: block; color: var(--muted-2); font-size: 7px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.preview-search-copy strong { display: block; margin-top: 3px; color: var(--text); font-size: 11px; line-height: 1.3; }
.preview-search-copy span { display: block; margin-top: 3px; color: var(--muted); font-size: 8px; }
.preview-search-action { flex: 0 0 auto; display: grid; justify-items: center; gap: 5px; }
.preview-details-button { min-width: 92px; padding: 8px 13px; border: 1px solid var(--line); border-radius: 10px; background: transparent; color: var(--text); font-size: 8px; font-weight: 850; text-align: center; }
.preview-featured-nearby { display: inline-flex; align-items: center; justify-content: center; gap: 3px; color: #8a6938; font-size: 7px; line-height: 1.2; white-space: nowrap; }
.preview-featured-nearby b { font-size: 9px; line-height: 1; }
.preview-featured-nearby strong { font-weight: 850; }
.preview-featured-nearby em { color: var(--muted-2); font-style: normal; font-weight: 700; }
.preview-flow-label { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 9px 0; color: var(--muted-2); font-size: 7px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.preview-flow-label b { color: var(--teal); font-size: 11px; }

.preview-detail-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.preview-detail-header small { display: block; color: var(--teal); font-size: 8px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.preview-detail-header strong { display: block; margin-top: 3px; color: var(--text); font-size: 14px; letter-spacing: -.02em; }
.preview-detail-header > span { padding: 5px 7px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--muted); font-size: 7px; font-weight: 800; white-space: nowrap; }
.preview-sponsored-card { background: var(--surface); }
.preview-placement-rule { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 13px; color: var(--muted); font-size: 8px; font-weight: 800; }
.preview-placement-rule span { padding: 6px 8px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); }
.preview-placement-rule strong { color: var(--teal); font-size: 7px; text-transform: uppercase; letter-spacing: .08em; }

@media (max-width: 920px) {
  .details-stage { max-width: 760px; width: 100%; min-height: 560px; margin: 0 auto; padding: 30px; }
}

@media (max-width: 620px) {
  .details-stage { min-height: 520px; padding: 18px 14px 50px; border-radius: 27px; }
  .mock-sheet { padding: 16px; border-radius: 20px; }
  .mock-station-header { display: block; }
  .mock-status { margin-top: 9px; }
  .mock-info-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .details-stage-note { bottom: 10px; }
  .preview-search-result { align-items: flex-start; }
  .preview-search-action { justify-items: end; }
  .preview-details-button { min-width: 78px; }
  .preview-featured-nearby { font-size: 6.5px; }
  .preview-detail-header { display: block; }
  .preview-detail-header > span { display: inline-flex; margin-top: 8px; }
}
