/* Taxi Platform page styles. */

:root {
  --bg: #0a0a0f;
  --bg-2: #111118;
  --bg-3: #16161f;
  --bg-card: #1a1a24;
  --bg-card-2: #1e1e2a;
  --border-yellow: rgba(250, 200, 0, 0.3);
  --yellow: #fac800;
  --yellow-dim: rgba(250, 200, 0, 0.12);
  --yellow-glow: rgba(250, 200, 0, 0.08);
  --blue: #3b82f6;
  --blue-dim: rgba(59, 130, 246, 0.12);
  --white: #ffffff;
  --white-70: rgba(255, 255, 255, 0.7);
  --white-40: rgba(255, 255, 255, 0.4);
  --white-15: rgba(255, 255, 255, 0.08);
  --text: #f0f0f5;
  --text-muted: rgba(240, 240, 245, 0.55);
  --background: #0b0d10;
  --foreground: #ffffff;
  --border: rgba(255, 255, 255, 0.08);
  --input: #0f1417;
  --primary: #ffcc00;
  --primary-foreground: #0b0d10;
  --secondary: #0f2636;
  --secondary-foreground: #e6f7ff;
  --muted: #1a1d20;
  --muted-foreground: rgba(255, 255, 255, 0.72);
  --success: #16a34a;
  --success-foreground: #ffffff;
  --accent: #0077ff;
  --accent-foreground: #ffffff;
  --destructive: #e02424;
  --destructive-foreground: #ffffff;
  --warning: #ffb020;
  --warning-foreground: #0b0d10;
  --card: #0f1215;
  --card-foreground: #e8eef2;
  --sidebar: #0b0f12;
  --sidebar-foreground: #dfe8ee;
  --sidebar-primary: #181b1e;
  --sidebar-primary-foreground: #ffeb99;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --font-family-body: Inter;
}

body.taxi-page {
  background: var(--background);
  color: var(--foreground);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  min-width: 320px;
  margin: 0;
}

body.taxi-page,
body.taxi-page * {
  box-sizing: border-box;
}

body.taxi-page a {
  color: inherit;
  text-decoration: none;
}

body.taxi-page img {
  display: block;
  max-width: 100%;
}

body.taxi-page .container {
  width: min(1320px, calc(100% - 120px));
  margin-inline: auto;
}

body.taxi-page .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

body.taxi-page .icon-box--14 { width: 14px; height: 14px; }
body.taxi-page .icon-box--15 { width: 15px; height: 15px; }
body.taxi-page .icon-box--16 { width: 16px; height: 16px; }
body.taxi-page .icon-box--18 { width: 18px; height: 18px; }
body.taxi-page .icon-box--20 { width: 20px; height: 20px; }
body.taxi-page .icon-box--22 { width: 22px; height: 22px; }
body.taxi-page .icon-box--24 { width: 24px; height: 24px; }
body.taxi-page .icon-box--28 { width: 28px; height: 28px; }

body.taxi-page .icon-glyph { display: block; line-height: 1; }
body.taxi-page .icon-glyph--14 { font-size: 14px; }
body.taxi-page .icon-glyph--15 { font-size: 15px; }
body.taxi-page .icon-glyph--16 { font-size: 16px; }
body.taxi-page .icon-glyph--18 { font-size: 18px; }
body.taxi-page .icon-glyph--20 { font-size: 20px; }
body.taxi-page .icon-glyph--22 { font-size: 22px; }
body.taxi-page .icon-glyph--26 { font-size: 26px; }

body.taxi-page .button-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  font-size: 15px;
  line-height: 1;
  transform: translateY(-1px);
}

body.taxi-page #nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 60px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
}

body.taxi-page #nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

body.taxi-page #nav-logo-mark {
  width: 34px;
  height: 34px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.taxi-page #footer-logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

body.taxi-page #nav-logo-mark span {
  font-size: 16px;
  font-weight: 800;
  color: #0a0a0f;
  letter-spacing: -0.5px;
}

body.taxi-page #footer-logo-mark span {
  font-size: 14px;
  font-weight: 800;
  color: #0a0a0f;
}

body.taxi-page #nav-logo-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
}

body.taxi-page #nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

body.taxi-page #nav-links li a,
body.taxi-page .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--white-70);
  white-space: nowrap;
  transition: color 0.2s;
}

body.taxi-page #nav-links li a:hover,
body.taxi-page #nav-links li a:focus-visible,
body.taxi-page .nav-link:hover,
body.taxi-page .nav-link:focus-visible {
  color: var(--primary);
}

body.taxi-page #nav-links li a.active,
body.taxi-page .nav-link.active {
  color: var(--primary);
}

body.taxi-page #nav-cta {
  background: var(--primary);
  color: #0a0a0f;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  white-space: nowrap;
  cursor: pointer;
}

body.taxi-page .taxi-cta-link,
body.taxi-page .btn-primary,
body.taxi-page .btn-secondary,
body.taxi-page .btn,
body.taxi-page .legal-link-card {
  transition:
    transform 0.2s,
    background-color 0.2s,
    border-color 0.2s,
    color 0.2s,
    opacity 0.2s;
}

body.taxi-page .btn-primary,
body.taxi-page .btn-secondary {
  background: var(--primary);
  color: #0a0a0f;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

body.taxi-page .btn-secondary {
  background: transparent;
  color: var(--white);
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

body.taxi-page .btn-primary:hover,
body.taxi-page .btn-secondary:hover,
body.taxi-page #nav-cta:hover,
body.taxi-page .legal-link-card:hover {
  transform: translateY(-1px);
}

body.taxi-page .btn-primary:focus-visible,
body.taxi-page .btn-secondary:focus-visible,
body.taxi-page .legal-link-card:focus-visible,
body.taxi-page #nav-cta:focus-visible,
body.taxi-page .nav-link:focus-visible {
  outline: 3px solid rgba(250, 200, 0, 0.35);
  outline-offset: 2px;
}

body.taxi-page #hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 60px 80px;
  background: var(--background);
}

body.taxi-page #hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

body.taxi-page #hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

body.taxi-page #hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(10, 10, 15, 0.98) 40%, rgba(10, 10, 15, 0.5) 75%, rgba(10, 10, 15, 0.2) 100%);
}

body.taxi-page #hero-glow {
  position: absolute;
  top: -100px;
  right: 200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 200, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

body.taxi-page #hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

body.taxi-page #hero-left {
  flex: 0 0 560px;
  max-width: 560px;
}

body.taxi-page #hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow-dim);
  border: 1px solid var(--border-yellow);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 28px;
}

body.taxi-page #hero-badge span {
  font-size: 13px;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 0.02em;
}

body.taxi-page #hero-h1 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.5px;
  color: var(--white);
  margin: 0 0 24px;
}

.yellow {
  color: var(--yellow);
}

body.taxi-page #hero-h1 .accent {
  color: var(--yellow);
}

body.taxi-page #hero-sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--white-70);
  line-height: 1.65;
  margin: 0 0 44px;
  max-width: 480px;
}

body.taxi-page #hero-btns,
body.taxi-page #cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

body.taxi-page .hero-stat-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: -0.5px;
}

body.taxi-page .hero-stat-label {
  font-size: 13px;
  color: var(--white-40);
  margin-top: 2px;
  font-weight: 500;
}

body.taxi-page #hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

body.taxi-page #hero-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

body.taxi-page #hero-mockup-wrap {
  position: relative;
  width: 480px;
  height: 520px;
}

body.taxi-page .phone-mockup {
  position: absolute;
  width: 200px;
  border-radius: 30px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

body.taxi-page #phone-passenger {
  top: 30px;
  left: 20px;
  z-index: 3;
  transform: rotate(-5deg);
}

body.taxi-page #phone-driver {
  top: 60px;
  right: 0;
  z-index: 2;
  transform: rotate(4deg);
}

body.taxi-page .phone-screen {
  width: 200px;
  height: 360px;
}

body.taxi-page #hero-dispatch-card {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  width: 320px;
  z-index: 4;
}

body.taxi-page .dispatch-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--white-40);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

body.taxi-page .dispatch-order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

body.taxi-page .dispatch-order-row:last-child {
  border-bottom: none;
}

body.taxi-page .order-id {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

body.taxi-page .order-addr {
  font-size: 12px;
  color: var(--white-40);
  margin-top: 1px;
}

body.taxi-page .order-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

body.taxi-page .badge-active {
  background: rgba(59, 130, 246, 0.18);
  color: #60a5fa;
}

body.taxi-page .badge-enroute {
  background: var(--yellow-dim);
  color: var(--yellow);
}

body.taxi-page .badge-done {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

body.taxi-page .section {
  padding: 100px 60px;
  max-width: 1320px;
  margin: 0 auto;
}

body.taxi-page .section-full {
  padding: 100px 0;
}

body.taxi-page .section-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

body.taxi-page .section-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

body.taxi-page .section-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--white);
  margin: 0 0 16px;
}

body.taxi-page .section-sub {
  font-size: 16px;
  color: var(--white-70);
  max-width: 560px;
  line-height: 1.65;
}

body.taxi-page .section-header-center {
  text-align: center;
}

body.taxi-page .section-header-center .section-sub {
  margin: 0 auto;
}

body.taxi-page #audience {
  background: var(--bg-2);
}

body.taxi-page #audience-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 100px 60px;
}

body.taxi-page #audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

body.taxi-page .audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

body.taxi-page .audience-card-icon,
body.taxi-page .platform-card-icon-wrap,
body.taxi-page .feature-card-icon,
body.taxi-page .legal-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
}

body.taxi-page .audience-card-icon {
  width: 48px;
  height: 48px;
  background: var(--yellow-dim);
  margin-bottom: 20px;
}

body.taxi-page .audience-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 12px;
}

body.taxi-page .audience-card-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

body.taxi-page #platform-parts {
  background: var(--bg);
}

body.taxi-page #platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

body.taxi-page .platform-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

body.taxi-page .platform-card-top {
  padding: 36px 32px 28px;
  border-bottom: 1px solid var(--border);
}

body.taxi-page .platform-card-icon-wrap {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
}

body.taxi-page .icon-yellow { background: var(--yellow-dim); }
body.taxi-page .icon-blue { background: var(--blue-dim); }
body.taxi-page .icon-purple { background: rgba(139, 92, 246, 0.12); }

body.taxi-page .platform-card-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

body.taxi-page .platform-card-tag--blue {
  color: #60a5fa;
}

body.taxi-page .platform-card-tag--violet {
  color: #c4b5fd;
}

body.taxi-page .platform-card-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 14px;
  letter-spacing: -0.4px;
}

body.taxi-page .platform-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

body.taxi-page .platform-card-features {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
}

body.taxi-page .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: var(--white-70);
}

body.taxi-page .feature-item:last-child {
  border-bottom: none;
}

body.taxi-page .feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  margin-top: 5px;
  flex-shrink: 0;
}

body.taxi-page .feature-dot-blue { background: var(--blue); }
body.taxi-page .feature-dot-purple { background: #a78bfa; }

body.taxi-page #how-it-works {
  background: var(--bg-2);
}

body.taxi-page #flow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

body.taxi-page #flow-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(250, 200, 0, 0.3) 20%, rgba(250, 200, 0, 0.3) 80%, transparent);
}

body.taxi-page .flow-step {
  padding: 0 32px 0 0;
  position: relative;
}

body.taxi-page .flow-step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

body.taxi-page .flow-step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px;
}

body.taxi-page .flow-step-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

body.taxi-page #flow-bottom-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 40px;
}

body.taxi-page #features {
  background: var(--bg);
}

body.taxi-page #features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

body.taxi-page .feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

body.taxi-page .feature-card-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow-dim);
  margin-bottom: 18px;
}

body.taxi-page .feature-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px;
}

body.taxi-page .feature-card-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

body.taxi-page #compare {
  background: var(--bg-2);
}

body.taxi-page #compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

body.taxi-page .compare-card {
  border-radius: var(--radius-lg);
  padding: 36px 36px 40px;
}

body.taxi-page .compare-without {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.taxi-page .compare-with {
  background: rgba(250, 200, 0, 0.06);
  border: 1px solid rgba(250, 200, 0, 0.2);
}

body.taxi-page .compare-card-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 28px;
}

body.taxi-page .compare-without .compare-card-title {
  color: var(--white-40);
}

body.taxi-page .compare-with .compare-card-title {
  color: var(--yellow);
}

body.taxi-page .compare-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

body.taxi-page .compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--white-70);
  line-height: 1.5;
}

body.taxi-page .compare-icon-bad,
body.taxi-page .compare-icon-good {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.taxi-page .compare-icon-bad {
  color: #f87171;
  font-size: 18px;
  font-weight: 700;
}

body.taxi-page .compare-icon-good {
  color: #4ade80;
}

body.taxi-page #tech {
  background: var(--bg);
}

body.taxi-page #tech-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 56px;
}

body.taxi-page #tech-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 32px;
}

body.taxi-page #tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.taxi-page .tech-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white-70);
}

body.taxi-page .tech-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

body.taxi-page #tech-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

body.taxi-page #legal {
  background: var(--bg-2);
}

body.taxi-page #legal .section-sub {
  margin-top: 4px;
}

body.taxi-page #legal-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
  margin-bottom: 36px;
}

body.taxi-page .legal-link-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 24px 20px;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

body.taxi-page .legal-link-icon {
  width: 40px;
  height: 40px;
  background: var(--yellow-dim);
  margin-bottom: 16px;
}

body.taxi-page .legal-link-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.4;
}

body.taxi-page .legal-link-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--yellow);
  margin-top: 12px;
  font-weight: 500;
}

body.taxi-page .legal-note {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 13px;
  color: var(--white-40);
  line-height: 1.65;
  max-width: 860px;
}

body.taxi-page #cta-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

body.taxi-page #cta-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(250, 200, 0, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

body.taxi-page #cta-box {
  background: var(--bg-card);
  border: 1px solid rgba(250, 200, 0, 0.2);
  border-radius: var(--radius-xl);
  padding: 72px 60px;
  text-align: center;
  position: relative;
  z-index: 2;
}

body.taxi-page #cta-box h2 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
  margin: 0 0 20px;
  line-height: 1.15;
}

body.taxi-page #cta-box p {
  font-size: 17px;
  color: var(--white-70);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.65;
}

body.taxi-page #footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 56px 60px 40px;
}

body.taxi-page #footer-inner {
  max-width: 1320px;
  margin: 0 auto;
}

body.taxi-page #footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

body.taxi-page #footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

body.taxi-page #footer-logo-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

body.taxi-page #footer-tagline {
  font-size: 13px;
  color: var(--white-40);
  max-width: 240px;
  line-height: 1.6;
}

body.taxi-page .footer-col-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--white-40);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

body.taxi-page .footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}

body.taxi-page .footer-links li a,
body.taxi-page .footer-link {
  font-size: 14px;
  color: var(--white-70);
  font-weight: 400;
}

body.taxi-page .footer-links li a:hover,
body.taxi-page .footer-links li a:focus-visible,
body.taxi-page .footer-link:hover,
body.taxi-page .footer-link:focus-visible {
  color: var(--white);
}

body.taxi-page #footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

body.taxi-page .footer-copy {
  font-size: 13px;
  color: var(--white-40);
}

body.taxi-page .footer-email {
  font-size: 13px;
  color: var(--yellow);
  font-weight: 500;
}

body.taxi-page .footer-legal {
  display: flex;
  align-items: center;
  gap: 24px;
}

body.taxi-page #hero-bg-img,
body.taxi-page #hero-dispatch-card,
body.taxi-page #tech-visual,
body.taxi-page .legal-link-card {
  border-radius: inherit;
}

body.taxi-page .showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.taxi-page .section-header-center .section-sub {
  margin: 0 auto;
}

@media (max-width: 1100px) {
  body.taxi-page #hero-inner {
    flex-direction: column;
    gap: 60px;
  }

  body.taxi-page #hero-left {
    flex: none;
    max-width: 100%;
  }

  body.taxi-page #hero-right {
    width: 100%;
    justify-content: center;
  }

  body.taxi-page #hero-mockup-wrap {
    width: 400px;
    height: 440px;
  }

  body.taxi-page #audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body.taxi-page #platform-grid {
    grid-template-columns: 1fr;
  }

  body.taxi-page #features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body.taxi-page #compare-grid {
    grid-template-columns: 1fr;
  }

  body.taxi-page #tech-inner {
    grid-template-columns: 1fr;
  }

  body.taxi-page #legal-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body.taxi-page #flow-steps,
  body.taxi-page #flow-bottom-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  body.taxi-page #nav {
    padding: 0 20px;
  }

  body.taxi-page #nav-links {
    display: none;
  }

  body.taxi-page #hero {
    padding: 100px 20px 60px;
  }

  body.taxi-page .section {
    padding: 70px 20px;
  }

  body.taxi-page .section-inner {
    padding: 0 20px;
  }

  body.taxi-page .section-full {
    padding: 70px 0;
  }

  body.taxi-page #audience-inner {
    padding: 70px 20px;
  }

  body.taxi-page #audience-grid {
    grid-template-columns: 1fr;
  }

  body.taxi-page #hero-h1 {
    font-size: 36px;
  }

  body.taxi-page #hero-mockup-wrap {
    width: 320px;
    height: 360px;
  }

  body.taxi-page .phone-mockup {
    width: 160px;
  }

  body.taxi-page .phone-screen {
    width: 160px;
    height: 290px;
  }

  body.taxi-page #hero-dispatch-card {
    width: 260px;
  }

  body.taxi-page #features-grid {
    grid-template-columns: 1fr;
  }

  body.taxi-page #flow-steps,
  body.taxi-page #flow-bottom-steps {
    grid-template-columns: 1fr;
  }

  body.taxi-page #flow-steps::before {
    display: none;
  }

  body.taxi-page #legal-links-grid {
    grid-template-columns: 1fr 1fr;
  }

  body.taxi-page #cta-box {
    padding: 40px 24px;
  }

  body.taxi-page #cta-box h2 {
    font-size: 28px;
  }

  body.taxi-page #footer {
    padding: 40px 20px 28px;
  }

  body.taxi-page #footer-top {
    flex-direction: column;
  }

  body.taxi-page .section-title {
    font-size: 28px;
  }

  body.taxi-page #tech-inner {
    gap: 40px;
  }
}
