:root {
  --primary: #22c55e;
  --primary-dark: #16a34a;
  --secondary: #f59e0b;
  --navy: #0f172a;
  --navy-soft: #334155;
  --bg: #f3f4f6;
  --bg-soft: #e8f9ef;
  --soft-green: #e8f9ef;
  --soft-green-deep: #d1f5de;
  --white: #ffffff;
  --text: #0f172a;
  --text-muted: #6b7280;
  --line: #e5e7eb;
  --footer-bg: #0f172a;
  --shadow-soft: 0 10px 40px rgba(15, 23, 42, 0.08);
  --shadow-phone: 0 28px 60px rgba(15, 23, 42, 0.18);
  --radius: 16px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --container: 1180px;
  --font: "Roboto", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 88px;
}

.logo img {
  width: auto;
  height: 64px;
}

.logo-footer img {
  height: 68px;
  filter: brightness(0) invert(1);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-desktop > a,
.nav-dropdown-trigger {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-desktop > a:hover,
.nav-desktop > a.active,
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.active {
  color: var(--primary);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  translate: -50% 0;
  min-width: 180px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s var(--ease);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.nav-dropdown-menu a:hover {
  background: var(--bg);
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

.btn-header:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 18, 20, 0.45);
  z-index: 110;
  opacity: 0;
  transition: opacity 0.25s;
}

.nav-overlay.open {
  opacity: 1;
}

.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100vh;
  padding: 88px 24px 24px;
  background: var(--white);
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.08);
}

.nav-mobile.open {
  transform: translateX(0);
}

.nav-mobile a {
  padding: 12px 8px;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
}

.nav-mobile a:hover {
  background: var(--bg);
  color: var(--primary);
}

.nav-mobile-cta {
  margin-top: 12px;
  text-align: center;
  background: var(--primary) !important;
  color: var(--white) !important;
  border-radius: 999px !important;
}

/* Hero */
.hero {
  padding: 72px 0 88px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--white) 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-copy .accent {
  color: var(--primary);
}

.hero-copy p {
  max-width: 520px;
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 28px;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-badge img {
  height: 48px;
  width: auto;
}

.hero-visual {
  width: 100%;
  min-width: 0;
}

.hero-copy {
  min-width: 0;
}

.hero-stage {
  position: relative;
  width: 100%;
  max-width: 460px;
  min-height: 440px;
  margin-inline: auto;
}

.hero-stage .device {
  aspect-ratio: 9 / 19;
}

.hero-stage .device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-stage .device-back {
  position: absolute;
  right: 4%;
  top: 6%;
  width: 42%;
  max-width: 175px;
  rotate: 7deg;
  z-index: 1;
  animation: bob 5s ease-in-out infinite;
}

.hero-stage .device-front {
  position: absolute;
  left: 4%;
  top: 12%;
  width: 48%;
  max-width: 200px;
  rotate: -4deg;
  z-index: 2;
  animation: bob-slow 6s ease-in-out infinite;
}

.hero-stage .float-card {
  position: absolute;
  z-index: 4;
  width: auto;
  max-width: 190px;
}

.hero-stage .float-card-success {
  top: 10%;
  left: 0;
  margin-top: 0;
}

.hero-stage .float-card-alert {
  top: 36%;
  right: 0;
  margin-top: 0;
}

.device {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-phone);
  background: #111;
}

.device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.device-back {
  position: absolute;
  right: 8%;
  top: 8%;
  width: 42%;
  rotate: 8deg;
  animation: bob 5s ease-in-out infinite;
}

.device-front {
  position: absolute;
  left: 6%;
  top: 14%;
  width: 52%;
  z-index: 2;
  animation: bob-slow 6s ease-in-out infinite;
}

.hero-plate {
  position: absolute;
  right: 0;
  bottom: 8%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-soft);
  z-index: 3;
}

.hero-avatar {
  position: absolute;
  left: 42%;
  bottom: 18%;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-soft);
  z-index: 4;
}

.hero-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.float-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}

.float-card-success {
  background: var(--primary);
  color: var(--white);
}

.float-card-alert {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--line);
}

.float-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.float-card-alert .float-icon {
  background: var(--bg);
}

@keyframes bob {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

@keyframes bob-slow {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

/* Sections */
.section {
  padding: 88px 0;
}

.section-heading.center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-heading p {
  color: var(--text-muted);
}

/* How orbit */
.how-orbit {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  grid-template-rows: auto 340px auto;
  gap: 32px 24px;
  align-items: center;
}

.orbit-step {
  max-width: 260px;
}

.orbit-top-left {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  text-align: right;
}

.orbit-top-right {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
}

.orbit-bottom-left {
  grid-column: 1;
  grid-row: 3;
  justify-self: end;
  text-align: right;
}

.orbit-bottom-right {
  grid-column: 3;
  grid-row: 3;
  justify-self: start;
}

.orbit-phone {
  grid-column: 2;
  grid-row: 1 / 4;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.orbit-step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.orbit-step p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.device-orbit {
  width: 260px;
  max-width: 100%;
  aspect-ratio: 707 / 1382;
}

.device-orbit img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #111;
}

.device-orbit-dashboard {
  box-shadow: var(--shadow-phone);
  border-radius: 28px;
  overflow: hidden;
}

/* App flow toggle */
.section-app-flow {
  background: var(--bg-soft);
}

.role-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  width: fit-content;
  margin: 0 auto 48px;
  padding: 5px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.role-tab {
  border: 0;
  background: transparent;
  padding: 12px 28px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: 0.2s;
}

.role-tab.active {
  background: var(--primary);
  color: var(--white);
}

.app-flow-grid {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.app-flow-visual {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: clamp(320px, 36vw, 440px);
  margin-inline: auto;
  overflow: hidden;
  isolation: isolate;
}

.flow-circle {
  position: absolute;
  inset: 8% 0 0 0;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.18) 0%, rgba(34, 197, 94, 0.04) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.device-flow-back,
.device-flow-front {
  position: absolute;
  max-width: 46%;
}

.device-flow-back {
  left: 2%;
  top: 10%;
  width: 42%;
  rotate: -10deg;
  z-index: 1;
}

.device-flow-front {
  right: 2%;
  top: 16%;
  width: 48%;
  rotate: 5deg;
  z-index: 2;
}

.device-flow-back img,
.device-flow-front img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.app-flow-steps {
  position: relative;
  z-index: 3;
  min-width: 0;
}

.flow-step {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.flow-step:last-child {
  border-bottom: 0;
}

.flow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary);
  color: var(--white);
  flex-shrink: 0;
}

.flow-icon svg {
  width: 24px;
  height: 24px;
}

.flow-step h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.flow-step p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.flow-panel[hidden] {
  display: none;
}

/* CTA banner */
.cta-banner {
  padding: 72px 0 0;
  background: var(--white);
}

.cta-banner-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 32px;
  padding: 56px 56px 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--primary) 0%, var(--navy) 100%);
  color: var(--white);
  overflow: hidden;
}

.cta-banner-copy {
  padding-bottom: 56px;
}

.cta-banner-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}

.cta-banner-copy p {
  max-width: 480px;
  opacity: 0.92;
  margin-bottom: 28px;
}

.btn-cta-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--text);
  color: var(--white);
  font-weight: 600;
  transition: transform 0.2s, opacity 0.2s;
}

.btn-cta-dark:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.cta-banner-phones {
  position: relative;
  width: 100%;
  min-height: 360px;
}

.device-cta-left,
.device-cta-right {
  position: absolute;
  bottom: 0;
  width: 46%;
  max-width: 210px;
  aspect-ratio: 9 / 19;
}

.device-cta-left img,
.device-cta-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.device-cta-left {
  left: 6%;
  rotate: -8deg;
  z-index: 1;
}

.device-cta-right {
  right: 6%;
  rotate: 6deg;
  z-index: 2;
}

/* Footer */
.site-footer {
  margin-top: 88px;
  padding: 64px 0 28px;
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 40px;
}

.footer-brand p {
  margin-top: 16px;
  max-width: 320px;
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-contact li {
  padding: 6px 0;
  font-size: 0.92rem;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  text-align: center;
}

/* Floating WhatsApp support */
.wa-float {
  position: fixed;
  left: max(16px, env(safe-area-inset-left));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  pointer-events: none;
}

.wa-float-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--white);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.16);
  border: 1px solid rgba(15, 23, 42, 0.06);
  pointer-events: none;
  white-space: nowrap;
}

.wa-float-badge::after {
  content: "";
  position: absolute;
  left: 22px;
  bottom: -5px;
  width: 10px;
  height: 10px;
  background: var(--white);
  border-right: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transform: rotate(45deg);
}

.wa-float-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.42);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.48);
}

.wa-float-btn svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 720px) {
  .wa-float {
    left: max(12px, env(safe-area-inset-left));
    bottom: max(16px, env(safe-area-inset-bottom));
  }

  .wa-float-btn {
    width: 52px;
    height: 52px;
  }

  .wa-float-btn svg {
    width: 26px;
    height: 26px;
  }

  .wa-float-badge {
    font-size: 0.72rem;
    padding: 5px 10px;
  }
}

/* Inner pages */
.page-hero {
  padding: 72px 0 48px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--white) 100%);
}

.page-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.page-lead {
  max-width: 640px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.page-content {
  padding: 48px 0 88px;
}

.page-prose {
  max-width: 760px;
}

.page-prose h2 {
  margin: 32px 0 12px;
  font-size: 1.35rem;
}

.page-prose p,
.page-prose li {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.page-prose ul {
  list-style: disc;
  padding-left: 22px;
}

.contact-card {
  margin-top: 32px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
}

.contact-card a {
  color: var(--primary);
  font-weight: 600;
}

.faq-list {
  max-width: 760px;
}

.faq-layout {
  max-width: 860px;
}

.faq-section {
  margin-bottom: 40px;
}

.faq-section > h2 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 18px;
  margin-bottom: 10px;
  background: var(--white);
}

.faq-item summary {
  cursor: pointer;
  padding: 16px 0;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-answer {
  padding-bottom: 16px;
}

.faq-links a {
  color: var(--primary);
  font-weight: 600;
  margin-right: 12px;
}

.page-callout {
  margin-top: 48px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(15, 23, 42, 0.06) 100%);
  border: 1px solid var(--line);
}

.page-callout h3 {
  margin-bottom: 8px;
}

.page-callout p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

.btn-download:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* Local SEO pages */
.local-seo-points,
.local-seo-steps {
  margin: 0 0 20px;
  padding-left: 22px;
  color: var(--text-muted);
}

.local-seo-points {
  list-style: disc;
}

.local-seo-steps {
  list-style: decimal;
}

.local-seo-points li,
.local-seo-steps li {
  margin-bottom: 10px;
}

.page-prose a {
  color: var(--primary);
  font-weight: 600;
}

.page-prose a:hover {
  text-decoration: underline;
}

/* Legal / help footer pages */
.legal-page {
  background: #f3f4f6;
}

.legal-eyebrow {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f3c6a8;
}

.legal-shell {
  padding: 28px 0 64px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 96px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.legal-toc h2 {
  margin: 0 0 12px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7280;
}

.legal-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.legal-toc a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  color: #6b7280;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
}

.legal-toc a:hover {
  background: #f3f4f6;
  color: #0f172a;
}

.legal-article {
  padding: 28px 32px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}

.legal-article.page-prose {
  max-width: none;
}

.legal-article > .legal-intro {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.6;
}

.legal-article h2 {
  margin: 28px 0 10px;
  padding-top: 8px;
  scroll-margin-top: 100px;
  font-size: 1.28rem;
  color: #0f172a;
}

.legal-article h2:first-of-type {
  margin-top: 18px;
}

.legal-article p,
.legal-article li {
  color: #6b7280;
  line-height: 1.65;
}

.legal-article ul,
.legal-article ol.steps-list {
  margin: 0 0 16px;
  padding-left: 1.2rem;
}

.legal-article ol.steps-list {
  list-style: decimal;
}

.legal-article .steps-list li {
  margin-bottom: 10px;
}

.legal-contact-box {
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e8f9ef, #e8f9ef);
  border: 1px solid #d1f5de;
}

.legal-contact-box strong {
  display: block;
  margin-bottom: 6px;
  color: #0f172a;
}

.legal-contact-box p {
  margin: 0 0 10px;
}

.legal-contact-box a {
  font-weight: 700;
}

.legal-related {
  padding: 8px 0 72px;
}

.legal-related-inner {
  display: grid;
  gap: 18px;
}

.legal-related-eyebrow {
  margin: 0 0 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f59e0b;
}

.legal-related h2 {
  margin: 0;
  font-size: 1.35rem;
  color: #0f172a;
}

.legal-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.legal-related-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.legal-related-card:hover {
  border-color: #e5e7eb;
  transform: translateY(-1px);
}

.legal-related-card strong {
  font-size: 0.95rem;
  color: #0f172a;
}

.legal-related-card span {
  color: #f59e0b;
  font-weight: 700;
  font-size: 0.84rem;
  white-space: nowrap;
}

.faq-page-layout {
  display: grid;
  gap: 18px;
}

.faq-page-layout .faq-section {
  margin: 0;
  padding: 22px 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.faq-page-layout .faq-section > h2 {
  margin: 0 0 14px;
  font-size: 1.15rem;
  color: #0f172a;
}

.faq-page-layout .faq-list {
  max-width: none;
}

.faq-page-layout .page-callout {
  margin-top: 8px;
  padding: 24px;
  border-radius: 18px;
  background: #0f172a;
  color: #fff;
  border: 0;
}

.faq-page-layout .page-callout h3 {
  margin: 0 0 8px;
  color: #fff;
}

.faq-page-layout .page-callout p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
}

.faq-page-layout .page-callout .btn-download {
  background: #fff;
  color: #0f172a;
}

@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

  .legal-toc ol {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .legal-related-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .legal-article {
    padding: 20px 16px;
  }

  .legal-related-grid {
    grid-template-columns: 1fr;
  }
}

.local-seo-cta .store-badges {
  margin-top: 8px;
}

.local-seo-related {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.local-seo-related h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.local-seo-related > p {
  margin-bottom: 20px;
  color: var(--text-muted);
}

.local-seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.local-seo-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.local-seo-card:hover {
  border-color: rgba(34, 197, 94, 0.35);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}

.local-seo-card strong {
  color: var(--navy);
  font-size: 0.98rem;
}

.local-seo-card span {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 400;
}

.page-hero .store-badges {
  margin-top: 24px;
}

.local-discover {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-soft) 100%);
}

.local-seo-grid-home {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1000px;
  margin-inline: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.contact-card h2 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.contact-card a {
  color: var(--primary);
  font-weight: 600;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: var(--primary);
  color: var(--white);
}

.contact-extra {
  max-width: 760px;
}

.steps-list {
  padding-left: 22px;
  color: var(--text-muted);
}

.steps-list li {
  margin-bottom: 10px;
}

/* Animations */
.hero-animate {
  opacity: 0;
  translate: 0 28px;
  transition: opacity 0.7s var(--ease), translate 0.7s var(--ease);
}

.hero-animate.is-visible {
  opacity: 1;
  translate: 0 0;
}

/* Responsive */
@media (max-width: 980px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .app-flow-grid,
  .cta-banner-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .hero-copy {
    order: 1;
    width: 100%;
    max-width: 560px;
    text-align: center;
  }

  .hero-copy h1 {
    font-size: clamp(1.85rem, 5.5vw, 2.6rem);
  }

  .hero-copy p {
    max-width: none;
    margin-inline: auto;
    margin-bottom: 24px;
  }

  .store-badges {
    justify-content: center;
  }

  .hero-visual {
    order: 2;
    width: 100%;
    max-width: min(100%, 420px);
    overflow: visible;
  }

  .hero-stage {
    max-width: 400px;
    min-height: 380px;
  }

  .hero-stage .device-back {
    width: 40%;
    max-width: 160px;
    right: 2%;
  }

  .hero-stage .device-front {
    width: 46%;
    max-width: 185px;
    left: 2%;
  }

  .hero-stage .float-card {
    font-size: 0.72rem;
    padding: 8px 10px;
    max-width: 150px;
  }

  .app-flow-grid {
    gap: 40px;
  }

  .app-flow-steps {
    order: 2;
  }

  .app-flow-visual {
    order: 1;
    height: clamp(300px, 72vw, 380px);
    max-width: min(100%, 360px);
    min-height: 0;
  }

  .how-orbit {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .orbit-top-left,
  .orbit-top-right,
  .orbit-bottom-left,
  .orbit-bottom-right {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
    text-align: center;
    max-width: 420px;
  }

  .orbit-phone {
    grid-column: 1;
    grid-row: auto;
    order: -1;
    margin-bottom: 12px;
  }

  .device-orbit {
    width: min(260px, 72vw);
  }

  .cta-banner-copy {
    padding-bottom: 0;
  }

  .cta-banner-grid {
    padding: 40px 28px 0;
  }

  .cta-banner-phones {
    min-height: 300px;
    max-width: 340px;
    margin: 8px auto 0;
  }

  .device-cta-left,
  .device-cta-right {
    width: 44%;
    max-width: 165px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .local-seo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .local-seo-grid-home {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-visual {
    max-width: min(100%, 340px);
  }

  .hero-stage {
    max-width: 320px;
    min-height: 340px;
  }

  .hero-stage .device-back {
    width: 38%;
    max-width: 130px;
    right: 0;
    top: 8%;
    rotate: 5deg;
  }

  .hero-stage .device-front {
    width: 44%;
    max-width: 150px;
    left: 0;
    top: 14%;
    rotate: -2deg;
  }

  .hero-stage .float-card-success {
    top: 6%;
    left: -4%;
  }

  .hero-stage .float-card-alert {
    top: 32%;
    right: -4%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .hero {
    padding: 28px 0 44px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(1.65rem, 7.5vw, 2rem);
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .hero-copy p {
    font-size: 0.94rem;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .store-badges {
    gap: 10px;
  }

  .store-badge img {
    height: 42px;
  }

  .hero-stage {
    max-width: 290px;
    min-height: 300px;
  }

  .hero-stage .device-back {
    max-width: 118px;
  }

  .hero-stage .device-front {
    max-width: 138px;
  }

  .hero-stage .float-card {
    display: none;
  }

  .footer-grid,
  .contact-grid,
  .local-seo-grid {
    grid-template-columns: 1fr;
  }

  .btn-header {
    display: none;
  }
}

/* Blog */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.blog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  max-width: 560px;
}

.blog-search {
  flex: 1;
  min-width: 200px;
}

.blog-search input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  background: var(--white);
}

.blog-search-btn {
  border: 0;
  cursor: pointer;
}

.blog-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.blog-cat {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.blog-cat:hover,
.blog-cat.is-active {
  border-color: rgba(34, 197, 94, 0.4);
  color: var(--primary);
  background: rgba(34, 197, 94, 0.06);
}

.blog-results-note {
  margin-bottom: 24px;
  color: var(--text-muted);
}

.blog-results-note a {
  color: var(--primary);
  font-weight: 600;
}

.blog-empty {
  text-align: center;
  padding: 48px 20px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
}

.blog-empty h2 {
  margin-bottom: 8px;
}

.blog-empty p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-grid-related {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.blog-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg);
}

.blog-card-media img,
.blog-card-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card-placeholder {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(15, 23, 42, 0.1));
}

.blog-card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.blog-card-cat {
  color: var(--primary);
  font-weight: 600;
}

.blog-card h2,
.blog-card h3 {
  font-size: 1.1rem;
  line-height: 1.35;
  margin: 0;
}

.blog-card h2 a,
.blog-card h3 a {
  color: var(--navy);
}

.blog-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.blog-card-link {
  margin-top: auto;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
  color: var(--text-muted);
}

.blog-pagination a {
  color: var(--primary);
  font-weight: 600;
}

.blog-preview-banner {
  background: #0f172a;
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 600;
}

.blog-single {
  padding: 40px 0 0;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--white) 180px);
}

.blog-single-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: start;
  padding-bottom: 24px;
}

.blog-single-header {
  margin-bottom: 24px;
}

.blog-single-header h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 14px;
}

.blog-post-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.blog-byline-author {
  font-weight: 600;
  color: var(--navy);
}

.blog-post-cover {
  margin: 0 0 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
}

.blog-post-cover img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.blog-single-deck {
  margin: 0 0 28px;
  padding: 16px 18px;
  border-left: 3px solid var(--primary);
  background: var(--bg-soft);
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.blog-post-body {
  max-width: none;
}

.blog-post-body h2 {
  margin: 32px 0 12px;
  font-size: 1.35rem;
  color: var(--navy);
}

.blog-post-body h3 {
  margin: 24px 0 10px;
  font-size: 1.15rem;
  color: var(--navy);
}

.blog-post-body p,
.blog-post-body li {
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.75;
}

.blog-post-body ul,
.blog-post-body ol {
  padding-left: 22px;
  margin: 0 0 16px;
}

.blog-post-body img {
  max-width: 100%;
  border-radius: var(--radius);
  margin: 16px 0;
}

.blog-post-body blockquote {
  margin: 20px 0;
  padding: 12px 18px;
  border-left: 3px solid var(--primary);
  background: var(--bg-soft);
  color: var(--text-muted);
}

.blog-post-body a {
  color: var(--primary);
  font-weight: 600;
}

.blog-single-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin: 36px 0 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.blog-single-share-label {
  font-weight: 700;
  color: var(--navy);
}

.blog-share-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-share-row-inline {
  flex-direction: row;
  flex-wrap: wrap;
}

.blog-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
}

.blog-share-btn:hover {
  border-color: rgba(34, 197, 94, 0.35);
  color: var(--primary);
}

.blog-post-cta {
  margin: 8px 0 16px;
}

.blog-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.blog-sidebar-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.blog-sidebar-card h2 {
  margin: 0 0 16px;
  font-size: 1.05rem;
  color: var(--navy);
}

.blog-sidebar-empty {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

.blog-latest-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blog-latest-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.blog-latest-thumb {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg);
}

.blog-latest-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-latest-thumb.is-empty {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(15, 23, 42, 0.1));
}

.blog-latest-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.blog-latest-copy strong {
  color: var(--navy);
  font-size: 0.92rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-latest-copy em {
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.blog-latest-item:hover strong {
  color: var(--primary);
}

.blog-sidebar-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.blog-sidebar-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-sidebar-cta p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0 0 14px;
}

.blog-related {
  padding: 48px 0 88px;
  border-top: 1px solid var(--line);
  margin-top: 24px;
}

.blog-related-head {
  margin-bottom: 24px;
}

.blog-related-head h2 {
  margin: 0 0 6px;
  font-size: 1.45rem;
  color: var(--navy);
}

.blog-related-head p {
  margin: 0;
  color: var(--text-muted);
}

@media (max-width: 980px) {
  .blog-grid,
  .blog-grid-related {
    grid-template-columns: 1fr 1fr;
  }

  .blog-single-grid {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .blog-sidebar-cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .blog-grid,
  .blog-grid-related {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    grid-template-columns: 1fr;
  }

  .blog-single {
    padding-top: 24px;
  }
}

/* Google Places (sitewide) */
.pac-container {
  z-index: 1300 !important;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
  font-family: inherit;
  margin-top: 4px;
}

.pac-item {
  padding: 10px 12px;
  font-size: 0.9rem;
  line-height: 1.35;
  cursor: pointer;
}

.pac-item:hover,
.pac-item-selected {
  background: #e8f9ef;
}

button.location-pill {
  font: inherit;
  cursor: pointer;
}

.places-modal {
  position: fixed;
  inset: 0;
  z-index: 1250;
  display: grid;
  place-items: center;
  padding: 18px;
}

.places-modal[hidden] {
  display: none !important;
}

.places-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(26, 10, 14, 0.5);
  cursor: pointer;
}

.places-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  background: linear-gradient(180deg, #f3f4f6 0%, #fff 100%);
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.24);
  padding: 20px;
}

.places-modal-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.places-modal-eyebrow {
  margin: 0 0 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #22c55e;
}

.places-modal-header h2 {
  margin: 0;
  font-size: 1.25rem;
  color: #0f172a;
}

.places-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #0f172a;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.places-modal-field {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}

.places-modal-field span {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0f172a;
}

.places-modal-field input {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}

.places-modal-hint {
  margin: 0 0 14px;
  font-size: 0.82rem;
  color: #6b7280;
}

.places-modal-cta {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 12px 16px;
  background: #0f172a;
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

body.places-modal-open {
  overflow: hidden;
}

.places-mount {
  flex: 1;
  min-width: 0;
}

.places-mount-field {
  width: 100%;
}

.risely-place-autocomplete,
gmp-place-autocomplete {
  width: 100%;
  display: block;
}

.market-find-hint.is-error,
.places-modal-hint.is-error {
  color: #16a34a;
  font-weight: 600;
}

.places-widget { position: relative; width: 100%; }
.places-search-input {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}
.places-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 1400;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
  max-height: 260px;
  overflow: auto;
}
.places-suggest li { padding: 10px 12px; border-radius: 10px; cursor: pointer; }
.places-suggest li:hover { background: #e8f9ef; }
.places-suggest strong { display: block; color: #0f172a; font-size: 0.9rem; }
.places-suggest span { display: block; margin-top: 2px; color: #6b7280; font-size: 0.78rem; }
