/* LOCAL SEO SERVICE PAGE — Additional styles
   Scoped to .is-local-seo-page body class.
   Design tokens live in main.css — not redefined here except utility classes.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Section / layout utilities (intentionally self-contained) ────────────── */
.section     { padding: clamp(72px,8vw,112px) 0; }
.section-alt { background: var(--mist); }
.section-dark{ background: var(--ink); }
.wrap        { width: var(--w); margin: 0 auto; }

/* ── Button variants ──────────────────────────────────────────────────────── */
.btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.04); color: rgba(255,255,255,.8);
  font-family: var(--ff-body); font-size: .95rem; font-weight: 500;
  padding: 13px 26px; border-radius: var(--r2);
  border: 1px solid rgba(255,255,255,.15);
  transition: all .25s var(--ease);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.35); color: #fff; transform: translateY(-2px); }

.btn-out {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink);
  font-family: var(--ff-body); font-size: .88rem; font-weight: 600;
  padding: 11px 22px; border-radius: var(--r2);
  border: 1.5px solid var(--line2);
  transition: all .25s var(--ease);
}
.btn-out:hover { border-color: var(--fire); color: var(--fire); }

/* ── h2 white variant ─────────────────────────────────────────────────────── */
.h2-white { color: #fff; }

/* ── h1 span variants ─────────────────────────────────────────────────────── */
.h1-dim   { display: block; font-style: italic; font-weight: 300; color: rgba(255,255,255,.5); margin-bottom: 2px; }
.h1-white { color: #fff; font-weight: 700; }
.h1-fire  { color: var(--fire); font-weight: 700; }
.h1-underline {
  display: block; color: #fff; font-weight: 700;
  position: relative; padding-bottom: 6px;
}
.h1-underline::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--fire), transparent);
  border-radius: 2px;
  transition: width 1.4s .7s var(--ease);
}
.h1-underline.drawn::after { width: 100%; }

/* ── Pill dot ─────────────────────────────────────────────────────────────── */
.pill-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--fire); flex-shrink: 0;
  animation: pulse 2s infinite;
}

/* ── Reveal utility ───────────────────────────────────────────────────────── */
.is-local-seo-page .reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.is-local-seo-page .reveal.revealed { opacity: 1; transform: none; }
.is-local-seo-page .reveal-d1.revealed { transition-delay: .12s; }
.is-local-seo-page .reveal-d2.revealed { transition-delay: .24s; }
.is-local-seo-page .reveal-d3.revealed { transition-delay: .36s; }
.is-local-seo-page .reveal-d4.revealed { transition-delay: .48s; }

/* ══════════════════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════════════════ */
.is-local-seo-page #hero {
  background: var(--ink);
  min-height: 90svh;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}

/* Glow orbs */
.is-local-seo-page .hero-glow {
  position: absolute; top: -80px; right: -60px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,98,12,.13) 0%, transparent 68%);
  pointer-events: none; z-index: 1;
}
.is-local-seo-page .hero-glow2 {
  position: absolute; bottom: -60px; left: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(22,43,71,.7) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
}

/* Hero body */
.is-local-seo-page .hero-body {
  display: grid;
  grid-template-columns: 58fr 42fr;
  align-items: center;
  gap: 56px;
  padding: 80px 0 72px;
  position: relative; z-index: 2;
  flex: 1;
}
.admin-bar.is-local-seo-page .hero-body { padding-top: 112px; }
@media screen and (max-width: 782px) {
  .admin-bar.is-local-seo-page .hero-body { padding-top: 126px; }
}
@media (max-width: 960px) {
  .is-local-seo-page .hero-body {
    grid-template-columns: 1fr;
    padding-top: 72px;
  }
  .is-local-seo-page .hero-right-col { display: none !important; }
}

/* Hero entry animations */
.is-local-seo-page .hero-pill    { opacity: 0; animation: fadeUp .6s .10s var(--ease) forwards; }
.is-local-seo-page .hero-h1      { opacity: 0; animation: fadeUp .7s .25s var(--ease) forwards; }
.is-local-seo-page .hero-sub     { opacity: 0; animation: fadeUp .7s .40s var(--ease) forwards; }
.is-local-seo-page .hero-actions { opacity: 0; animation: fadeUp .7s .55s var(--ease) forwards; }

/* Hero stats */
.is-local-seo-page .hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--line);
  border-top: 1px solid var(--line); margin-top: 48px;
  opacity: 0; animation: fadeUp .7s .75s var(--ease) forwards;
}
.is-local-seo-page .hero-stats .hstat { background: var(--ink); }

/* Hero right column */
.is-local-seo-page .hero-right-col {
  position: relative;
  opacity: 0; animation: fadeIn .9s .45s var(--ease) forwards;
}

/* Ticker */
.is-local-seo-page .hero-ticker {
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 0;
}
.is-local-seo-page .ticker-l,
.is-local-seo-page .ticker-r {
  position: absolute; top: 0; width: 100px; height: 100%;
  z-index: 2; pointer-events: none;
}
.is-local-seo-page .ticker-l { left: 0;  background: linear-gradient(90deg, var(--ink), transparent); }
.is-local-seo-page .ticker-r { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.is-local-seo-page .ticker-track {
  display: flex; align-items: center; white-space: nowrap;
  animation: tickerRun 42s linear infinite;
  font-family: var(--ff-head); font-size: 2.6rem; font-weight: 900;
  line-height: 1; letter-spacing: -.03em;
  color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.18);
  user-select: none;
}
.is-local-seo-page .ticker-track span { padding: 0 18px; }
.is-local-seo-page .ticker-track .sp  { color: var(--fire); -webkit-text-stroke: 0; font-size: .85rem; padding: 0 6px; }

/* ══════════════════════════════════════════════════════════════════════════
   MAPS PANEL (hero right column)
══════════════════════════════════════════════════════════════════════════ */
@keyframes riseIn    { to { opacity: 1; transform: translateY(0); } }
@keyframes pinPulse  { 0%,100% { box-shadow: 0 0 6px rgba(240,98,12,.6); } 50% { box-shadow: 0 0 20px rgba(240,98,12,1); } }
@keyframes pinFloat  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

.maps-panel {
  background: #111827;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 32px 70px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04);
}

/* Top bar */
.mp-topbar {
  padding: 11px 16px;
  background: rgba(255,255,255,.025);
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: space-between;
}
.mp-dots { display: flex; gap: 6px; }
.mp-dot  { width: 9px; height: 9px; border-radius: 50%; }
.mp-dot.r { background: #ff5f57; }
.mp-dot.y { background: #febc2e; }
.mp-dot.g { background: #28c840; }
.mp-label { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); font-weight: 500; }

/* Search bar */
.mp-search {
  margin: 12px 12px 8px; padding: 9px 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08); border-radius: 7px;
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: rgba(255,255,255,.65);
}
.mp-search svg { color: rgba(255,255,255,.35); flex-shrink: 0; }
.mp-query { font-weight: 500; }

/* Local pack listings */
.mp-pack { padding: 8px 12px 4px; }
.mp-pack-label { font-size: .6rem; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 7px; }
.mp-listing {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: 6px; margin-bottom: 5px;
  opacity: 0; transform: translateY(6px);
  animation: riseIn .4s var(--ease) forwards;
}
.mp-listing:nth-child(2) { animation-delay: .15s; }
.mp-listing:nth-child(3) { animation-delay: .30s; }
.mp-listing:nth-child(4) { animation-delay: .45s; }
.mp-top   { background: rgba(240,98,12,.1);  border: 1px solid rgba(240,98,12,.25); }
.mp-other { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); }
.mp-rank {
  min-width: 22px; height: 22px; border-radius: 4px;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mp-r1 { background: var(--fire); color: #fff; }
.mp-r2 { background: rgba(255,255,255,.1); color: rgba(255,255,255,.45); }
.mp-listing-info { flex: 1; min-width: 0; }
.mp-listing-name {
  font-size: .78rem; font-weight: 600; color: #fff; line-height: 1.2;
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.mp-listing-meta { font-size: .62rem; color: rgba(255,255,255,.4); margin-top: 2px; display: flex; align-items: center; gap: 4px; }
.mp-stars     { color: #FBBF24; letter-spacing: -1px; font-size: .72rem; }
.mp-badge-yours {
  font-size: .58rem; font-weight: 700; padding: 2px 6px; border-radius: 4px;
  background: rgba(240,98,12,.2); color: var(--fire);
  border: 1px solid rgba(240,98,12,.35); white-space: nowrap;
}

/* Map area */
.mp-map {
  margin: 8px 12px 12px; height: 100px; border-radius: var(--r1);
  background: linear-gradient(135deg, #0f2027 0%, #1a3a45 50%, #1e4a5c 100%);
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.mp-map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 22px 22px;
}
/* Stylised roads */
.mp-map-road {
  position: absolute; background: rgba(255,255,255,.07); border-radius: 2px;
}
.mp-road1 { top: 40%; left: 0; right: 0; height: 3px; }
.mp-road2 { top: 0; bottom: 0; left: 45%; width: 3px; }

/* Map pins */
.mp-map-pin {
  position: absolute;
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid #fff;
}
.mp-pin1 {
  top: 28%; left: 38%;
  width: 18px; height: 18px;
  background: var(--fire);
  box-shadow: 0 0 10px rgba(240,98,12,.9);
  animation: pinPulse 2s ease-in-out infinite, pinFloat 3s ease-in-out infinite;
}
.mp-pin-dot {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 6px; height: 6px; border-radius: 50%; background: #fff;
}
.mp-pin2 { top: 55%; left: 62%; background: rgba(240,98,12,.6); box-shadow: 0 0 6px rgba(240,98,12,.4); animation: pinPulse 2.8s ease-in-out 1s infinite; }
.mp-pin3 { top: 22%; left: 70%; background: rgba(255,255,255,.3); box-shadow: none; animation: none; }
.mp-map-label {
  position: absolute; bottom: 6px; right: 8px;
  font-size: .55rem; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .08em;
}

/* ══════════════════════════════════════════════════════════════════════════
   WHAT IS LOCAL SEO
══════════════════════════════════════════════════════════════════════════ */
.lseo-what-grid {
  display: grid; grid-template-columns: 38fr 62fr;
  gap: 64px; align-items: center;
}
@media (max-width: 860px) {
  .lseo-what-grid { grid-template-columns: 1fr; gap: 40px; }
}

.lseo-what-stats {
  display: flex; flex-direction: column; gap: 28px;
}
.lseo-mini-stat {
  padding: 24px 28px; background: #fff;
  border: 1px solid var(--line2); border-radius: var(--r2);
  border-left: 3px solid var(--fire);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.lseo-mini-stat:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.lseo-mini-n {
  font-family: var(--ff-head); font-size: 2.4rem; font-weight: 900;
  color: var(--fire); line-height: 1;
}
.lseo-mini-n sup { font-size: 1.1rem; vertical-align: super; }
.lseo-mini-l { font-size: .85rem; color: var(--text2); margin-top: 5px; line-height: 1.5; }

/* ══════════════════════════════════════════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════════════════════════════════════════ */
.lseo-srv-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 22px;
}
@media (max-width: 900px) { .lseo-srv-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .lseo-srv-grid { grid-template-columns: 1fr; } }

.lseo-srv-card {
  background: #fff; border: 1px solid var(--line2); border-radius: var(--r2);
  padding: 32px 28px; position: relative; overflow: hidden;
  transition: all .3s var(--ease);
}
.lseo-srv-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--fire); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.lseo-srv-card:hover::before { transform: scaleX(1); }
.lseo-srv-card:hover { border-color: transparent; box-shadow: 0 12px 40px rgba(8,17,31,.1); transform: translateY(-3px); }
.lseo-srv-icon {
  width: 48px; height: 48px; border-radius: var(--r1);
  background: rgba(240,98,12,.08); color: var(--fire);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.lseo-srv-card h3 {
  font-family: var(--ff-head); font-size: 1.02rem; font-weight: 800;
  color: var(--ink); margin-bottom: 10px; letter-spacing: -.01em;
}
.lseo-srv-card p { font-size: .87rem; color: var(--text2); line-height: 1.65; margin: 0; }

/* AdSense wrapper */
.lseo-adsense-wrap {
  padding: 16px 0 8px;
  background: var(--mist);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ══════════════════════════════════════════════════════════════════════════
   PROCESS STEPS — vertical mobile / 5-col desktop
══════════════════════════════════════════════════════════════════════════ */
.lseo-process-steps {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 20px; position: relative;
}
/* Connector line on desktop */
.lseo-process-steps::before {
  content: ''; position: absolute;
  top: 52px; left: calc(10% + 12px); right: calc(10% + 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--fire) 0%, rgba(240,98,12,.2) 100%);
  z-index: 0;
}
@media (max-width: 900px) {
  .lseo-process-steps { grid-template-columns: 1fr; }
  .lseo-process-steps::before { display: none; }
}

.lseo-step {
  position: relative; z-index: 1;
  background: #fff; border: 1px solid var(--line2); border-radius: var(--r2);
  padding: 28px 22px 24px;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.lseo-step:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.lseo-step-num {
  font-family: var(--ff-head); font-size: 5rem; font-weight: 900;
  color: var(--fire); opacity: .1; line-height: 1;
  position: absolute; top: 8px; right: 14px;
  pointer-events: none; user-select: none;
}
.lseo-step-body h3 {
  font-family: var(--ff-head); font-size: 1rem; font-weight: 800;
  color: var(--ink); margin-bottom: 8px; letter-spacing: -.01em;
  position: relative;
}
/* Step number circle visible */
.lseo-step-body h3::before {
  content: attr(data-step);
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--fire); color: #fff;
  font-size: .72rem; font-weight: 800;
  margin-right: 10px; flex-shrink: 0; vertical-align: middle;
}
.lseo-step-body p { font-size: .85rem; color: var(--text2); line-height: 1.65; margin: 0; }

/* number-circles via CSS counters */
.lseo-process-steps { counter-reset: step-ctr; }
.lseo-step { counter-increment: step-ctr; }
.lseo-step-body h3::before { content: counter(step-ctr); }

/* ══════════════════════════════════════════════════════════════════════════
   WHO IT'S FOR — business type grid
══════════════════════════════════════════════════════════════════════════ */
.lseo-biz-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
@media (max-width: 860px) { .lseo-biz-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .lseo-biz-grid { grid-template-columns: repeat(2,1fr); } }

.lseo-biz-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 28px 16px 24px;
  background: #fff; border: 1px solid var(--line2); border-radius: var(--r2);
  text-align: center; font-family: var(--ff-head); font-size: .9rem;
  font-weight: 700; color: var(--ink);
  transition: all .3s var(--ease); cursor: default;
}
.lseo-biz-card:hover {
  border-color: rgba(240,98,12,.35); color: var(--fire);
  box-shadow: 0 8px 28px rgba(0,0,0,.09); transform: translateY(-4px);
}
.lseo-biz-icon {
  width: 52px; height: 52px; border-radius: var(--r1);
  background: rgba(240,98,12,.08); color: var(--fire);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s var(--ease);
}
.lseo-biz-card:hover .lseo-biz-icon { background: rgba(240,98,12,.14); }

.lseo-biz-sub {
  text-align: center; margin-top: 40px; font-size: 1rem;
  color: var(--text2); line-height: 1.6; max-width: 520px; margin-left: auto; margin-right: auto;
}

/* ══════════════════════════════════════════════════════════════════════════
   RESULTS TO EXPECT — dark section
══════════════════════════════════════════════════════════════════════════ */
.lseo-results-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
@media (max-width: 860px) { .lseo-results-grid { grid-template-columns: 1fr; } }

.lseo-result-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r2); padding: 36px 28px;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.lseo-result-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(240,98,12,.3);
}
.lseo-result-step {
  font-family: var(--ff-head); font-size: 4.5rem; font-weight: 900;
  color: var(--fire); opacity: .15; line-height: 1;
  margin-bottom: 4px;
}
.lseo-result-period {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--fire); margin-bottom: 12px;
}
.lseo-result-card h3 {
  font-family: var(--ff-head); font-size: 1.15rem; font-weight: 800;
  color: #fff; margin-bottom: 10px;
}
.lseo-result-card p { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.65; margin: 0 0 24px; }
.lseo-result-bar {
  height: 4px; background: rgba(255,255,255,.1); border-radius: 4px;
  position: relative; overflow: hidden;
}
.lseo-result-bar::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: var(--bar-w, 50%);
  background: linear-gradient(90deg, var(--fire), var(--fire2));
  border-radius: 4px;
}

/* ══════════════════════════════════════════════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════════════════════════════════════════════ */
.lseo-faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.lseo-faq-item {
  background: #fff; border: 1px solid var(--line2); border-radius: var(--r2);
  overflow: hidden; transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.lseo-faq-item.is-open { border-color: rgba(240,98,12,.35); box-shadow: 0 4px 20px rgba(240,98,12,.08); }

.lseo-faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px; background: transparent; border: none; cursor: pointer;
  font-family: var(--ff-head); font-size: 1rem; font-weight: 700;
  color: var(--ink); text-align: left; transition: color .25s var(--ease);
}
.lseo-faq-q:hover { color: var(--fire); }
.lseo-faq-item.is-open .lseo-faq-q { color: var(--fire); }

.lseo-faq-icon {
  flex-shrink: 0; color: var(--fire); opacity: .6;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.lseo-faq-item.is-open .lseo-faq-icon { transform: rotate(180deg); opacity: 1; }

.lseo-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease);
}
.lseo-faq-a p {
  padding: 0 26px 24px; margin: 0;
  font-size: .92rem; color: var(--text2); line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════════════════
   FINAL CTA — fire background
══════════════════════════════════════════════════════════════════════════ */
.lseo-cta-fire {
  background: var(--fire);
  position: relative; overflow: hidden;
}
.lseo-cta-fire::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 15% 50%, rgba(255,255,255,.08), transparent),
    radial-gradient(ellipse 50% 60% at 85% 50%, rgba(0,0,0,.12), transparent);
  pointer-events: none;
}
/* Watermark text */
.lseo-cta-fire::after {
  content: 'LOCAL SEO'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--ff-head); font-size: 18vw; font-weight: 900;
  color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,.06);
  letter-spacing: -.06em; line-height: 1;
  pointer-events: none; user-select: none; white-space: nowrap;
}
.lseo-cta-fire .wrap { position: relative; z-index: 1; }
.lseo-cta-fire .h2-white { font-size: clamp(1.7rem,3.5vw,2.6rem); }

.lseo-cta-sub {
  color: rgba(255,255,255,.85); font-size: 1.05rem; line-height: 1.7;
  max-width: 540px; margin: 18px auto 36px;
}
.lseo-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--fire);
  font-family: var(--ff-head); font-size: 1rem; font-weight: 800;
  padding: 16px 36px; border-radius: var(--r2);
  border: 2px solid transparent;
  transition: all .25s var(--ease);
  text-decoration: none;
}
.lseo-cta-btn:hover {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

/* ══════════════════════════════════════════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .is-local-seo-page .hero-pill,
  .is-local-seo-page .hero-h1,
  .is-local-seo-page .hero-sub,
  .is-local-seo-page .hero-actions,
  .is-local-seo-page .hero-stats,
  .is-local-seo-page .hero-right-col { opacity: 1; animation: none; }
  .is-local-seo-page .reveal         { opacity: 1; transform: none; transition: none; }
  .pill-dot, .ticker-track            { animation: none; }
  .mp-listing  { opacity: 1; transform: none; animation: none; }
  .mp-pin1     { animation: none; }
  .h1-underline.drawn::after { transition: none; width: 100%; }
}
