@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #eef6ff;
  --text: #0f172a;
  --muted: #475569;
  --line: #dbe4ee;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --success: #047857;
  --warning: #b45309;
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}
a { color: var(--primary); }
.container { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.site-header .container, .site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-header .container { padding: 1rem 0; }
.logo { color: var(--text); font-weight: 800; text-decoration: none; font-size: 1.12rem; }
.logo span { color: var(--primary); }
.site-nav { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.site-nav a { color: var(--muted); text-decoration: none; font-weight: 600; font-size: .95rem; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--primary); }
.hero {
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 58%, #0f766e 100%);
  color: #fff;
}
.hero--light { background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%); color: var(--text); }
.hero h1 { margin: 0 0 1rem; font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.08; letter-spacing: 0; }
.hero p { max-width: 760px; margin: 0; font-size: 1.12rem; color: rgba(255,255,255,.92); }
.hero--light p { color: var(--muted); }
.hero .hero-disclaimer {
  margin-top: .85rem;
  max-width: 760px;
  font-size: .95rem;
  font-weight: 700;
  color: #334155;
}
.section, .content { padding: 3rem 0; }
.section h2, .content h1, .content h2 { letter-spacing: 0; }
.intro { max-width: 850px; color: var(--muted); }
.search-card, .panel, .profile-card, .pro-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.search-card { padding: 1.5rem; margin-top: -2.4rem; position: relative; z-index: 2; }
.filters { display: grid; grid-template-columns: 1.4fr .7fr 1fr; gap: 1rem; }
.filter-group label, .form-group label { display: block; margin-bottom: .45rem; font-weight: 700; color: #1e293b; }
input, select, textarea {
  width: 100%;
  min-height: 46px;
  padding: .75rem .85rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font: inherit;
  color: var(--text);
  background: #fff;
}
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(37,99,235,.16); border-color: var(--primary); }
.actions { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; margin-top: 1rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 44px;
  padding: .72rem 1rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { background: #fff; color: var(--text); border-color: #cbd5e1; }
.btn-secondary:hover { background: #f1f5f9; }
.btn-call { background: var(--success); color: #fff; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }
.note, .small-muted { color: var(--muted); font-size: .94rem; }
.notice {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  border-radius: 8px;
  color: #1e3a8a;
}
.results-meta { margin: 1.5rem 0 1rem; color: var(--muted); }
.results-grid { display: grid; gap: 1rem; }
.taxi-card { padding: 1.25rem; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.taxi-card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.taxi-card h3 { margin: 0 0 .35rem; font-size: 1.25rem; }
.taxi-card p { margin: .25rem 0; color: var(--muted); }
.badges { display: flex; gap: .4rem; flex-wrap: wrap; margin: .65rem 0; }
.badge { display: inline-flex; align-items: center; padding: .28rem .55rem; border-radius: 999px; background: #dcfce7; color: #166534; font-weight: 800; font-size: .78rem; }
.badge--blue { background: #dbeafe; color: #1e40af; }
.badge--amber { background: #fef3c7; color: #92400e; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.panel, .profile-card { padding: 1.5rem; }
.profile-layout { display: grid; grid-template-columns: 1.5fr .85fr; gap: 1rem; align-items: start; }
.profile-hero { background: var(--surface-soft); border: 1px solid #bfdbfe; border-radius: 8px; padding: 1.5rem; margin-bottom: 1rem; }
.profile-hero h1 { margin: 0 0 .7rem; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.list-clean { padding-left: 1.1rem; color: var(--muted); }
.content article { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 2rem; box-shadow: var(--shadow); }
.content article > h2:first-child { margin-top: 0; }
.faq-item { padding: 1.35rem 0; border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 0; }
.pro-form { padding: 1.5rem; max-width: 960px; margin: 0 auto; }
.prelaunch-summary {
  max-width: 960px;
  margin: 0 auto 1rem;
  padding: 1rem 1rem 1rem 1.1rem;
  border-left: 4px solid var(--primary);
  background: #eff6ff;
  color: #1e3a8a;
}
.prelaunch-summary h2 {
  margin: 0 0 .55rem;
  font-size: 1.08rem;
}
.prelaunch-summary ul {
  margin: 0;
  padding-left: 1.15rem;
}
.prelaunch-summary p {
  margin: .65rem 0 0;
  color: #1e3a8a;
}
.form-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0 1.25rem;
}
.form-section legend {
  padding: 0 .35rem;
  font-weight: 800;
  color: #0f172a;
}
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.field-note { margin: -.25rem 0 1rem; color: var(--muted); font-size: .95rem; }
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: .65rem 1rem;
  margin: .5rem 0 1rem;
}
.checkbox-grid label {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  color: var(--muted);
  font-weight: 600;
}
.checkbox-grid input { width: auto; min-height: auto; margin-top: .25rem; flex: 0 0 auto; }
.checkbox-group { display: flex; align-items: flex-start; gap: .7rem; margin: 1rem 0; color: var(--muted); }
.checkbox-group input { width: auto; min-height: auto; margin-top: .25rem; }
.site-footer { margin-top: 3rem; padding: 2.5rem 0; background: #0f172a; color: #cbd5e1; }
.site-footer a { color: #e2e8f0; }
.success-message, .thanks { text-align: center; padding: 4rem 1rem; }
.link-list { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1rem; }
.link-pill { display: inline-flex; border: 1px solid #cbd5e1; border-radius: 999px; padding: .45rem .75rem; text-decoration: none; background: #fff; font-weight: 700; }

@media (max-width: 860px) {
  .site-header .container, .site-footer .container { align-items: flex-start; flex-direction: column; }
  .filters, .grid-3, .grid-2, .profile-layout, .form-row, .checkbox-grid { grid-template-columns: 1fr; }
  .search-card { margin-top: -1.2rem; }
  .hero { padding: 3rem 0 2.5rem; }
}
@media (max-width: 520px) {
  .site-nav { gap: .8rem; }
  .actions, .btn { width: 100%; }
  .content article, .panel, .profile-card, .search-card, .pro-form { padding: 1.1rem; }
}


.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.hero .breadcrumbs {
  color: rgba(255, 255, 255, 0.86);
}

.breadcrumbs a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumb-separator {
  color: currentColor;
  opacity: 0.65;
}

/* Progressive autocomplete for the pre-launch professional form */
.autocomplete-enhanced {
  position: relative;
}

.autocomplete-native {
  display: none;
}

.token-control {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
  width: 100%;
  min-height: 46px;
  padding: .4rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
}

.token-control:focus-within {
  outline: 3px solid rgba(37,99,235,.16);
  border-color: var(--primary);
}

.token-control input {
  flex: 1 1 220px;
  min-width: 160px;
  min-height: 34px;
  padding: .35rem .45rem;
  border: 0;
  border-radius: 6px;
  outline: 0;
}

.token-control input:focus {
  outline: 0;
  border-color: transparent;
}

.token-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  max-width: 100%;
  padding: .32rem .45rem .32rem .6rem;
  border-radius: 999px;
  background: #e0f2fe;
  color: #075985;
  font-size: .9rem;
  font-weight: 700;
}

.token-chip button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 999px;
  color: #075985;
  background: rgba(14, 116, 144, .12);
  cursor: pointer;
  font: inherit;
  line-height: 1;
}

.autocomplete-menu {
  position: absolute;
  z-index: 30;
  left: 0;
  right: 0;
  top: calc(100% - .65rem);
  max-height: 280px;
  overflow: auto;
  margin: 0;
  padding: .35rem;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.autocomplete-option {
  display: block;
  width: 100%;
  padding: .62rem .7rem;
  border: 0;
  border-radius: 6px;
  color: var(--text);
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.autocomplete-option:hover,
.autocomplete-option[aria-selected="true"] {
  background: #eff6ff;
}

.autocomplete-option strong {
  display: block;
  font-weight: 800;
}

.autocomplete-option span {
  display: block;
  color: var(--muted);
  font-size: .9rem;
}

.autocomplete-empty {
  padding: .62rem .7rem;
  color: var(--muted);
  font-size: .92rem;
}

