/* ── Tokens ────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@300;400;500;600;700;800&family=DM+Mono:wght@400;500&display=swap');

:root {
  --lp-ink:      #070D1A;
  --lp-navy:     #0C1A2E;
  --lp-blue:     #1B5BD8;
  --lp-blue-d:   #1448B8;
  --lp-accent:   #FF6000;
  --lp-accent-d: #E05500;
  --lp-cyan:     #06B6D4;
  --lp-gold:     #F59E0B;
  --lp-white:    #ffffff;
  --lp-warm:     #FAFAF8;
  --lp-slate:    #475569;
  --lp-border:   #E2E8F0;
  --lp-font:     'Outfit', 'Segoe UI', sans-serif;
  --lp-font-d:   'DM Serif Display', Georgia, serif;
  --lp-font-m:   'DM Mono', 'Courier New', monospace;
  --lp-radius:   14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--lp-font); background: #fff; color: var(--lp-ink); }
a { text-decoration: none; }
em { font-style: italic; font-family: var(--lp-font-d); }

/* ── Nav ───────────────────────────────────────────────── */
.lp-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,13,26,.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.lp-nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 28px;
  height: 62px; display: flex; align-items: center; justify-content: space-between;
}
.lp-logo {
  display: flex; align-items: center; gap: 9px;
  color: #fff; font-size: 17px; font-weight: 700; letter-spacing: -.2px;
}
.lp-logo-img { height: 40px; width: 40px; border-radius: 22%; object-fit: cover; display: block; }
.lp-nav-links { display: flex; align-items: center; gap: 4px; }
.lp-nav-link {
  color: #94a3b8; font-size: 14px; padding: 6px 12px;
  border-radius: 8px; transition: color .15s, background .15s;
}
.lp-nav-link:hover { color: #fff; background: rgba(255,255,255,.07); }
.lp-nav-user { color: #94a3b8; font-size: 13px; padding: 0 10px; }
.lp-nav-btn {
  font-size: 13px; font-weight: 600; padding: 7px 16px;
  border-radius: 8px; background: var(--lp-accent); color: #fff;
  border: none; cursor: pointer; transition: background .15s;
}
.lp-nav-btn:hover { background: var(--lp-accent-d); }
.lp-nav-btn--ghost { background: transparent; border: 1px solid rgba(255,255,255,.18); }
.lp-nav-btn--ghost:hover { background: rgba(255,255,255,.07); }

/* ── Hero ──────────────────────────────────────────────── */
.lp-hero {
  background: var(--lp-ink);
  padding: 80px 28px 90px;
  min-height: calc(100vh - 62px);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}

/* Dot grid background */
.lp-hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(99,152,255,.12) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Atmospheric glows */
.lp-hero-glow {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px); opacity: .4;
}
.lp-hero-glow--1 {
  width: 600px; height: 500px; top: -100px; right: 10%;
  background: radial-gradient(ellipse, rgba(27,91,216,.35) 0%, transparent 70%);
}
.lp-hero-glow--2 {
  width: 400px; height: 400px; bottom: -50px; left: 5%;
  background: radial-gradient(ellipse, rgba(6,182,212,.2) 0%, transparent 70%);
}

.lp-hero-inner {
  max-width: 1140px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 460px;
  gap: 64px; align-items: center; position: relative; z-index: 1;
}

.lp-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(27,91,216,.2);
  border: 1px solid rgba(99,152,255,.3);
  color: #93c5fd; font-size: 12px; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 24px;
}
.lp-badge-pulse {
  width: 6px; height: 6px; border-radius: 50%; background: #4ade80; flex-shrink: 0;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.8); }
}

.lp-hero-h1 {
  font-family: var(--lp-font-d);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 400;
  color: #EDF3FF;
  line-height: 1.1;
  letter-spacing: -.5px;
  margin-bottom: 22px;
}
.lp-hero-h1 em {
  color: var(--lp-accent);
  font-style: italic;
}

.lp-hero-sub {
  font-size: 17px; color: #7F93AD; line-height: 1.72;
  margin-bottom: 36px; max-width: 500px;
}

.lp-hero-input-row { display: flex; gap: 10px; margin-bottom: 12px; }
.lp-hero-input {
  flex: 1; min-width: 0; padding: 14px 18px;
  border-radius: 10px; border: 1.5px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.07); color: #EDF3FF;
  font-size: 15px; font-family: var(--lp-font);
  outline: none; transition: border-color .15s, background .15s;
}
.lp-hero-input::placeholder { color: rgba(255,255,255,.28); }
.lp-hero-input:focus { border-color: rgba(99,152,255,.6); background: rgba(255,255,255,.1); }
.lp-hero-cta {
  padding: 14px 26px; background: var(--lp-accent); color: #fff;
  font-size: 15px; font-weight: 700; border-radius: 10px; white-space: nowrap;
  transition: background .15s, transform .12s, box-shadow .15s;
  box-shadow: 0 4px 18px rgba(255,96,0,.3);
}
.lp-hero-cta:hover { background: var(--lp-accent-d); transform: translateY(-1px); box-shadow: 0 6px 22px rgba(255,96,0,.4); }
.lp-hero-disclaimer { font-size: 12px; color: #4A5A70; margin-bottom: 40px; }

/* Stats strip */
.lp-stats-strip { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.lp-stat { display: flex; flex-direction: column; }
.lp-stat-num {
  font-family: var(--lp-font-m); font-size: 24px; font-weight: 500;
  color: #EDF3FF; line-height: 1; letter-spacing: -.5px;
}
.lp-stat-label { font-size: 11px; color: #3D5068; margin-top: 3px; text-transform: uppercase; letter-spacing: .05em; }
.lp-stat-div { width: 1px; height: 36px; background: rgba(255,255,255,.08); }

/* ── Data terminal panel ───────────────────────────────── */
.lp-terminal {
  background: #0D1829;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(27,91,216,.2);
}
.lp-terminal-header {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(0,0,0,.25);
}
.lp-terminal-dots { display: flex; gap: 6px; }
.lp-terminal-dots span { width: 10px; height: 10px; border-radius: 50%; }
.lp-terminal-title {
  margin-left: 6px; flex: 1;
  font-family: var(--lp-font-m); font-size: 11px; color: #4A6080;
  display: flex; align-items: center; gap: 6px;
}
.lp-terminal-pulse {
  width: 6px; height: 6px; border-radius: 50%; background: #22c55e;
  animation: badgePulse 2s ease-in-out infinite;
}
.lp-terminal-city {
  font-family: var(--lp-font-m); font-size: 10px; color: #3D5068;
  text-transform: uppercase; letter-spacing: .06em;
}

.lp-terminal-query {
  padding: 14px 18px 10px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-family: var(--lp-font-m); font-size: 13px; color: #93c5fd;
  display: flex; align-items: center; gap: 8px;
  opacity: 0; animation: trFadeIn .4s ease .4s forwards;
}
.lp-tq-prompt { color: #3D5068; }

.lp-terminal-body { padding: 14px 18px 18px; }
.lp-terminal-meta {
  font-family: var(--lp-font-m); font-size: 10px; color: #2E4060;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px;
  opacity: 0; animation: trFadeIn .3s ease 1.0s forwards;
}

/* Animated terminal rows */
.lp-terminal-row {
  display: grid; grid-template-columns: 28px 1fr auto;
  gap: 10px; align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  opacity: 0; transform: translateY(6px);
}
.lp-tr-1 { animation: trRowIn .35s ease 1.4s forwards; }
.lp-tr-2 { animation: trRowIn .35s ease 1.75s forwards; }
.lp-tr-3 { animation: trRowIn .35s ease 2.1s forwards; }

.lp-tr-rank {
  font-family: var(--lp-font-m); font-size: 12px; color: #2E4060;
  font-weight: 500; line-height: 1;
}
.lp-tr-content { min-width: 0; }
.lp-tr-top { display: flex; align-items: center; gap: 6px; margin-bottom: 5px; }
.lp-tr-area { font-size: 14px; font-weight: 600; color: #E2EEF9; }
.lp-tr-badge {
  font-family: var(--lp-font-m); font-size: 9px; font-weight: 500;
  padding: 2px 7px; border-radius: 10px;
  background: rgba(34,197,94,.12); color: #4ade80;
  border: 1px solid rgba(74,222,128,.2);
}
.lp-tr-badge--gold {
  background: rgba(245,158,11,.12); color: #fbbf24;
  border-color: rgba(251,191,36,.2);
}
.lp-tr-bar-wrap { height: 4px; background: rgba(255,255,255,.06); border-radius: 2px; overflow: hidden; }
.lp-tr-bar {
  height: 100%; background: var(--lp-blue); border-radius: 2px;
  width: 0; transition: none;
}
.lp-tr-bar--gold { background: var(--lp-gold); }
.lp-tr-1 .lp-tr-bar { animation: trBarGrow .5s ease 1.8s forwards; }
.lp-tr-2 .lp-tr-bar { animation: trBarGrow .5s ease 2.15s forwards; }
.lp-tr-3 .lp-tr-bar { animation: trBarGrow .5s ease 2.5s forwards; }

.lp-tr-data { text-align: right; flex-shrink: 0; }
.lp-tr-rent {
  font-family: var(--lp-font-m); font-size: 14px; font-weight: 500;
  color: #E2EEF9; line-height: 1; margin-bottom: 3px;
}
.lp-tr-commute { font-family: var(--lp-font-m); font-size: 10px; color: #3D5068; }

.lp-terminal-footer {
  margin-top: 14px; padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.05);
  font-family: var(--lp-font-m); font-size: 10px; color: #2A3D54;
  text-align: center;
  opacity: 0; animation: trFadeIn .3s ease 2.6s forwards;
}

@keyframes trFadeIn  { to { opacity: 1; } }
@keyframes trRowIn   { to { opacity: 1; transform: translateY(0); } }
@keyframes trBarGrow { to { width: var(--bar-w); } }

/* ── Shared section styles ─────────────────────────────── */
.lp-section-inner { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.lp-section-label {
  font-family: var(--lp-font-m); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .1em; color: var(--lp-blue);
  margin-bottom: 14px; display: block;
}
.lp-section-label--light { color: rgba(99,152,255,.7); }
.lp-section-h2 {
  font-family: var(--lp-font-d);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 400; color: var(--lp-ink);
  line-height: 1.15; letter-spacing: -.3px;
  margin-bottom: 52px;
}
.lp-section-h2 em { color: var(--lp-accent); }
.lp-section-h2--light { color: #EDF3FF; }
.lp-section-h2--light em { color: #FF8C42; }

/* ── How it works ──────────────────────────────────────── */
.lp-how { padding: 96px 28px; background: var(--lp-warm); }
.lp-steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0; align-items: start; }
.lp-step { padding: 0 12px; }
.lp-step-num {
  font-family: var(--lp-font-d); font-size: 56px; font-weight: 400;
  color: rgba(27,91,216,.12); line-height: 1;
  margin-bottom: 14px; letter-spacing: -2px;
}
.lp-step-body h3 { font-size: 17px; font-weight: 700; color: var(--lp-ink); margin-bottom: 10px; }
.lp-step-body p  { font-size: 14.5px; color: var(--lp-slate); line-height: 1.68; }
.lp-step-connector {
  width: 1px; align-self: stretch;
  background: linear-gradient(to bottom, transparent, var(--lp-border) 30%, var(--lp-border) 70%, transparent);
  margin: 0 8px;
}

/* ── Why section ───────────────────────────────────────── */
.lp-why { padding: 96px 28px; background: #fff; }
.lp-why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.lp-why-card {
  background: var(--lp-warm);
  border: 1.5px solid var(--lp-border);
  border-radius: var(--lp-radius); padding: 32px 28px;
  position: relative; transition: box-shadow .2s, transform .15s, border-color .2s;
}
.lp-why-card:hover {
  box-shadow: 0 12px 32px rgba(27,91,216,.1);
  transform: translateY(-2px);
  border-color: rgba(27,91,216,.2);
}
.lp-why-num {
  font-family: var(--lp-font-m); font-size: 11px; font-weight: 500;
  color: rgba(27,91,216,.4); letter-spacing: .06em;
  position: absolute; top: 20px; right: 20px;
}
.lp-why-icon { font-size: 28px; margin-bottom: 16px; display: block; }
.lp-why-card h3 { font-size: 17px; font-weight: 700; color: var(--lp-ink); margin-bottom: 10px; }
.lp-why-card p  { font-size: 14.5px; color: var(--lp-slate); line-height: 1.68; }

/* ── City section ──────────────────────────────────────── */
.lp-cities {
  padding: 96px 28px;
  background: var(--lp-ink);
  position: relative; overflow: hidden;
}
.lp-city-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lp-city-card {
  border-radius: 18px; padding: 36px 28px 32px;
  color: #fff; display: flex; flex-direction: column; gap: 10px;
  min-height: 210px; position: relative; overflow: hidden;
  transition: transform .18s, box-shadow .2s;
  border: 1px solid rgba(255,255,255,.08);
}
.lp-city-card::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(160deg, rgba(255,255,255,.06) 0%, transparent 50%);
  pointer-events: none;
}
.lp-city-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.5); }
.lp-city-blr { background: linear-gradient(140deg, #1A3FA8 0%, #1B5BD8 55%, #1E6EEF 100%); }
.lp-city-hyd { background: linear-gradient(140deg, #5B21B6 0%, #7C3AED 55%, #8B5CF6 100%); }
.lp-city-pun { background: linear-gradient(140deg, #065975 0%, #0891B2 55%, #06B6D4 100%); }
.lp-city-tag {
  font-family: var(--lp-font-m); font-size: 10px; font-weight: 500;
  opacity: .55; letter-spacing: .07em; text-transform: uppercase;
}
.lp-city-name {
  font-family: var(--lp-font-d); font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 400; line-height: 1; letter-spacing: -.3px;
}
.lp-city-stats {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--lp-font-m); font-size: 12px; opacity: .65; margin-top: 2px;
}
.lp-city-dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: .5; }
.lp-city-cta {
  margin-top: auto; font-size: 14px; font-weight: 700;
  opacity: .85; transition: opacity .15s;
}
.lp-city-card:hover .lp-city-cta { opacity: 1; }

/* ── Pricing ───────────────────────────────────────────── */
.lp-pricing { padding: 96px 28px; background: var(--lp-warm); }
.lp-pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; max-width: 820px; margin: 0 auto;
}
.lp-price-card {
  background: #fff; border: 1.5px solid var(--lp-border);
  border-radius: var(--lp-radius); padding: 36px 32px;
  position: relative; display: flex; flex-direction: column;
}
.lp-price-card--pro {
  border-color: var(--lp-blue);
  box-shadow: 0 0 0 4px rgba(27,91,216,.08), 0 8px 32px rgba(27,91,216,.12);
}
.lp-price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--lp-blue); color: #fff;
  font-family: var(--lp-font-m); font-size: 10px; font-weight: 500;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 4px 16px; border-radius: 20px; white-space: nowrap;
}
.lp-price-header { margin-bottom: 24px; }
.lp-price-label {
  font-family: var(--lp-font-m); font-size: 11px; font-weight: 500;
  color: var(--lp-slate); text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 8px;
}
.lp-price-amount {
  font-family: var(--lp-font-d); font-size: 44px; font-weight: 400;
  color: var(--lp-ink); line-height: 1;
}
.lp-price-amount span { font-family: var(--lp-font); font-size: 16px; color: var(--lp-slate); font-weight: 500; }
.lp-price-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.lp-price-list li { font-size: 14px; color: var(--lp-slate); display: flex; align-items: flex-start; gap: 9px; }
.lp-price-list li::before { content: ''; flex-shrink: 0; margin-top: 4px; width: 14px; height: 14px; border-radius: 50%; }
.lp-price-yes::before { background: #dcfce7 url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%2316a34a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat; }
.lp-price-no::before  { background: #f1f5f9; }
.lp-price-no { opacity: .45; }
.lp-price-btn {
  display: block; width: 100%; text-align: center; padding: 14px;
  border-radius: 10px; font-size: 14px; font-weight: 700;
  cursor: pointer; border: none; transition: background .15s, transform .12s;
  font-family: var(--lp-font);
}
.lp-price-btn--free { background: var(--lp-warm); color: var(--lp-ink); border: 1.5px solid var(--lp-border); }
.lp-price-btn--free:hover { background: #EDECE8; }
.lp-price-btn--pro  { background: var(--lp-blue); color: #fff; }
.lp-price-btn--pro:hover { background: var(--lp-blue-d); transform: translateY(-1px); }

/* ── Signup section ────────────────────────────────────── */
.lp-signup {
  padding: 96px 28px;
  background: var(--lp-ink);
  position: relative; overflow: hidden;
}
.lp-signup-grid { opacity: .4; }
.lp-signup-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 64px; align-items: center;
}
.lp-signup-h2 {
  font-family: var(--lp-font-d);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 400; color: #EDF3FF;
  line-height: 1.15; margin-bottom: 16px;
}
.lp-signup-h2 em { color: #FF8C42; }
.lp-signup-sub { font-size: 16px; color: #5A7A9A; line-height: 1.65; margin-bottom: 24px; }
.lp-signup-perks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.lp-signup-perks li {
  font-size: 14px; color: #4A6080;
  display: flex; align-items: center; gap: 10px;
}
.lp-signup-perks li::before {
  content: ''; flex-shrink: 0; width: 16px; height: 16px; border-radius: 50%;
  background: rgba(74,222,128,.15) url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%234ade80' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat;
}

.lp-auth-card {
  background: #fff; border-radius: var(--lp-radius); padding: 36px 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
}
.lp-auth-title {
  font-size: 18px; font-weight: 700; color: var(--lp-ink);
  margin-bottom: 20px; letter-spacing: -.2px;
}
.lp-auth-input {
  display: block; width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--lp-border); border-radius: 8px;
  font-size: 14px; font-family: var(--lp-font); color: var(--lp-ink);
  background: #fff; margin-bottom: 12px; outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.lp-auth-input:focus { border-color: var(--lp-blue); box-shadow: 0 0 0 3px rgba(27,91,216,.1); }
.lp-auth-submit {
  display: block; width: 100%; padding: 14px;
  background: var(--lp-accent); color: #fff; border: none;
  border-radius: 8px; font-size: 15px; font-weight: 700;
  cursor: pointer; font-family: var(--lp-font);
  transition: background .15s, transform .12s; margin-top: 4px; text-align: center;
}
.lp-auth-submit:hover { background: var(--lp-accent-d); transform: translateY(-1px); }
.lp-auth-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.lp-auth-err { color: #dc2626; font-size: 13px; margin-top: 8px; min-height: 20px; }
.lp-auth-terms { font-size: 12px; color: #94a3b8; margin-top: 14px; text-align: center; }
.lp-auth-terms a { color: var(--lp-blue); }

.lp-otp-prompt { font-size: 14px; color: var(--lp-slate); margin-bottom: 18px; line-height: 1.5; }
.lp-otp-row { display: flex; gap: 8px; justify-content: center; margin-bottom: 18px; }
.lp-otp-digit {
  width: 46px; height: 54px; border: 1.5px solid var(--lp-border);
  border-radius: 8px; font-size: 22px; font-family: var(--lp-font-m);
  font-weight: 500; text-align: center; color: var(--lp-ink);
  outline: none; transition: border-color .15s, box-shadow .15s;
}
.lp-otp-digit:focus { border-color: var(--lp-blue); box-shadow: 0 0 0 3px rgba(27,91,216,.1); }

.lp-success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: #dcfce7; color: #16a34a;
  font-size: 24px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}

.lp-signup-done {
  background: #fff; border-radius: var(--lp-radius); padding: 52px 40px;
  max-width: 440px; margin: 0 auto; text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
}
.lp-signup-done-icon { font-size: 44px; color: #16a34a; margin-bottom: 16px; }
.lp-signup-done h2 { font-size: 24px; font-weight: 800; color: var(--lp-ink); margin-bottom: 10px; }
.lp-signup-done p { color: var(--lp-slate); font-size: 15px; }

/* ── Footer ────────────────────────────────────────────── */
.lp-footer { background: #040912; padding: 64px 28px 28px; }
.lp-footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.lp-footer-brand { }
.lp-footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 700; color: #fff;
  margin-bottom: 14px;
}
.lp-footer-brand p { font-size: 13px; color: #2E4060; line-height: 1.7; }
.lp-footer-brand a { color: #2E4060; transition: color .15s; }
.lp-footer-brand a:hover { color: #4A6080; }
.lp-footer-col { display: flex; flex-direction: column; gap: 11px; }
.lp-footer-col h4 { font-size: 10px; font-weight: 600; color: #2E4060; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; font-family: var(--lp-font-m); }
.lp-footer-col a { font-size: 13px; color: #2E4060; transition: color .15s; }
.lp-footer-col a:hover { color: #7F93AD; }
.lp-footer-bottom {
  max-width: 1140px; margin: 28px auto 0;
  font-size: 12px; color: #1E2E42;
  font-family: var(--lp-font-m);
}
.lp-footer-bottom a { color: #1E2E42; transition: color .15s; }
.lp-footer-bottom a:hover { color: #2E4060; }

/* ── Mobile ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .lp-hero { padding: 56px 20px 64px; min-height: auto; }
  .lp-hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .lp-hero-right { order: -1; }
  .lp-hero-input-row { flex-direction: column; }
  .lp-hero-cta { text-align: center; }
  .lp-stats-strip { gap: 14px; }
  .lp-stat-num { font-size: 20px; }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-step-connector { display: none; }
  .lp-why-grid { grid-template-columns: 1fr; }
  .lp-city-grid { grid-template-columns: 1fr; }
  .lp-pricing-grid { grid-template-columns: 1fr; }
  .lp-pricing-grid .lp-price-card--pro { margin-top: 24px; }
  .lp-signup-inner { grid-template-columns: 1fr; gap: 40px; }
  .lp-footer-inner { grid-template-columns: 1fr 1fr; }
  .lp-footer-brand { grid-column: 1 / -1; }
  .lp-how, .lp-why, .lp-cities, .lp-pricing, .lp-signup { padding: 64px 20px; }
}
@media (max-width: 640px) {
  .lp-hero-h1 { font-size: 34px; }
  .lp-section-h2 { font-size: 28px; margin-bottom: 36px; }
  .lp-signup-h2 { font-size: 28px; }
  .lp-footer-inner { grid-template-columns: 1fr; }
  .lp-nav-links .lp-nav-link { display: none; }
  .lp-auth-card { padding: 28px 20px; }
  .lp-otp-digit { width: 40px; height: 48px; font-size: 18px; }
  .lp-signup-inner { grid-template-columns: 1fr; }
}
