/* ==========================================================
   AITechRide — Taxi App System Landing Page
   ========================================================== */

:root {
  --yellow: #fdb813;
  --yellow-dark: #e0a300;
  --bg: #0a0a0a;
  --bg-soft: #121212;
  --card: #161616;
  --card-2: #1e1e1e;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --text-dim: #b5b5b5;
  --text-faint: #8a8a8a;
  --green: #22c55e;
  --radius: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 36px;
}

/* ============ Buttons ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--yellow);
  color: #111;
}

.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(253, 184, 19, 0.28);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: var(--border-strong);
}

.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.btn-lg {
  padding: 12px 22px;
  font-size: 14.5px;
  border-radius: 11px;
}

.btn-block {
  width: 100%;
}

.play-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #111;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

/* ============ Header ============ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 18px;
  background: rgba(253, 184, 19, 0.06);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.logo-tag {
  font-size: 10.5px;
  color: var(--text-dim);
  font-weight: 500;
}

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

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: var(--yellow);
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* ============ Hero ============ */

.hero {
  position: relative;
  padding: 18px 0 0;
  overflow: hidden;
  min-height: calc(100vh - 64px);
  max-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 70% 55% at 75% -10%, rgba(253, 184, 19, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 45% at 8% 108%, rgba(253, 184, 19, 0.06), transparent 60%),
    linear-gradient(180deg, #0c0b09 0%, #0a0a0a 55%, #0b0a08 100%);
}

/* background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 90px 90px;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(253, 184, 19, 0.07), transparent 65%);
}

/* city photo backdrop */
.bg-city {
  position: absolute;
  inset: 0;
  background: url("../images/city-night.jpg") center 30% / cover no-repeat;
  opacity: 0.32;
  filter: saturate(0.9);
}

.bg-city::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.55) 0%,
    rgba(10, 10, 10, 0.35) 35%,
    rgba(10, 10, 10, 0.72) 70%,
    #0a0a0a 97%
  );
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.hero-glow-1 {
  width: 520px;
  height: 520px;
  left: 28%;
  top: 8%;
  background: rgba(253, 184, 19, 0.07);
  animation: glowBreathe 6s ease-in-out infinite alternate;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  right: 20%;
  top: -4%;
  background: rgba(253, 184, 19, 0.09);
  animation: glowBreathe 6s ease-in-out 3s infinite alternate;
}

@keyframes glowBreathe {
  from { opacity: 0.7; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.12); }
}

/* faint dashed map routes */
.bg-routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bg-routes path {
  fill: none;
  stroke: rgba(253, 184, 19, 0.09);
  stroke-width: 1.5;
  stroke-dasharray: 10 12;
  animation: routeDrift 30s linear infinite;
}

@keyframes routeDrift {
  to { stroke-dashoffset: -440; }
}

.route-dot {
  fill: rgba(253, 184, 19, 0.22);
}

/* city skyline */
.bg-skyline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 210px;
}

.bg-skyline .win-b {
  animation: twinkle 3.6s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0%   { opacity: 0.12; }
  100% { opacity: 0.45; }
}

/* floating particles */
.bg-particles span {
  position: absolute;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.2;
  animation: floatDot 7s ease-in-out infinite;
}

.bg-particles span:nth-child(1) { width: 4px; height: 4px; left: 12%; top: 22%; animation-delay: 0s; }
.bg-particles span:nth-child(2) { width: 3px; height: 3px; left: 28%; top: 60%; animation-delay: 1.2s; }
.bg-particles span:nth-child(3) { width: 5px; height: 5px; left: 38%; top: 14%; animation-delay: 2.4s; }
.bg-particles span:nth-child(4) { width: 3px; height: 3px; left: 52%; top: 70%; animation-delay: 0.8s; }
.bg-particles span:nth-child(5) { width: 4px; height: 4px; left: 62%; top: 24%; animation-delay: 3s; }
.bg-particles span:nth-child(6) { width: 3px; height: 3px; left: 74%; top: 55%; animation-delay: 1.8s; }
.bg-particles span:nth-child(7) { width: 5px; height: 5px; left: 86%; top: 18%; animation-delay: 2.2s; }
.bg-particles span:nth-child(8) { width: 3px; height: 3px; left: 93%; top: 62%; animation-delay: 0.4s; }

@keyframes floatDot {
  0%, 100% { transform: translateY(0); opacity: 0.16; }
  50%      { transform: translateY(-22px); opacity: 0.4; }
}

/* hero grid */
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 420px) 1fr 340px;
  gap: 20px;
  align-items: center;
}

/* ---------- Left content ---------- */

.hero-content {
  padding-top: 0;
  position: relative;
  z-index: 5;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border: 1px solid rgba(253, 184, 19, 0.45);
  border-radius: 999px;
  background: rgba(253, 184, 19, 0.06);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(30px, 2.9vw, 42px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.8px;
  margin-bottom: 13px;
}

.hero-sub {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 400px;
  margin-bottom: 18px;
}

/* feature strip */
.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(22, 22, 22, 0.85);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 4px;
  margin-bottom: 20px;
  max-width: 440px;
}

.hf-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 4px 8px;
  border-right: 1px solid var(--border);
}

.hf-item:last-child {
  border-right: none;
}

.hf-item i {
  font-size: 17px;
  color: var(--yellow);
}

.hf-item span {
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.35;
  color: #eee;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Center visual ---------- */

.hero-visual {
  position: relative;
  min-height: 540px;
  height: 100%;
  z-index: 2;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: -14px;
  transform: translateX(-50%);
  z-index: 6;
  text-align: center;
  animation: floatPin 3s ease-in-out infinite;
}

.map-pin i {
  font-size: 26px;
  color: var(--yellow);
  filter: drop-shadow(0 6px 18px rgba(253, 184, 19, 0.45));
}

.pin-ring {
  display: block;
  width: 20px;
  height: 6px;
  margin: 5px auto 0;
  border-radius: 50%;
  border: 2px solid rgba(253, 184, 19, 0.6);
}

@keyframes floatPin {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* phones */
.phone {
  position: absolute;
  background: #1a1a1a;
  border: 5px solid #2c2c2c;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.65);
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 10px;
  background: #000;
  border-radius: 10px;
  z-index: 3;
}

.phone-left {
  width: 126px;
  height: 266px;
  left: 7%;
  top: 62px;
  transform: rotate(-4deg);
  z-index: 2;
}

.phone-center {
  width: 148px;
  height: 316px;
  left: 50%;
  top: 24px;
  transform: translateX(-50%);
  z-index: 4;
}

.phone-right {
  width: 126px;
  height: 266px;
  right: 6%;
  top: 70px;
  transform: rotate(4deg);
  z-index: 1;
}

.phone-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.phone-screen.light {
  background: #f4f4f2;
  color: #1c1c1c;
}

.phone-screen.dark {
  background: #101418;
  color: #eee;
}

.p-statusbar {
  display: flex;
  justify-content: space-between;
  font-size: 7.5px;
  font-weight: 700;
  padding: 7px 12px 3px;
  opacity: 0.85;
}

.p-statusbar i {
  font-size: 7px;
  margin-left: 2px;
}

.p-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 11px;
  font-size: 10.5px;
}

.p-header strong {
  font-weight: 700;
}

.p-header.dark-h {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
}

.p-map {
  position: relative;
  flex: 1;
  margin: 3px 8px;
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    #e9e7e2;
  background-size: 26px 26px;
}

.p-map svg {
  width: 100%;
  height: 100%;
  display: block;
}

.map-road {
  stroke: #d6d3cc;
  stroke-width: 5;
  fill: none;
}

.map-route {
  stroke: #111;
  stroke-width: 3;
  fill: none;
  stroke-dasharray: 6 4;
  stroke-linejoin: round;
}

.p-search {
  position: absolute;
  left: 8px;
  bottom: 8px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #444;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.p-map.tall {
  flex: 0 0 64px;
}

/* driver bottom card */
.p-card {
  background: #fff;
  margin: 6px 8px 9px;
  border-radius: 12px;
  padding: 9px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
}

.p-earn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 8px;
}

.p-earn span {
  font-size: 9px;
  color: #777;
  font-weight: 600;
}

.p-earn strong {
  font-size: 13px;
  font-weight: 800;
}

.p-btn {
  display: block;
  width: 100%;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 10.5px;
  font-weight: 700;
  padding: 8px;
  cursor: pointer;
}

.p-btn.green {
  background: var(--green);
  color: #fff;
}

.p-btn.yellow {
  background: var(--yellow);
  color: #111;
  width: calc(100% - 16px);
  margin: 4px auto 9px;
}

/* passenger locations */
.p-locations {
  background: #fff;
  margin: 6px 8px 0;
  border-radius: 10px;
  padding: 3px 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.p-loc {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 0;
}

.p-loc + .p-loc {
  border-top: 1px dashed #e2e0da;
}

.p-loc > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}

.p-loc span {
  font-size: 7.5px;
  color: #999;
  font-weight: 600;
}

.p-loc strong {
  font-size: 8.5px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gold {
  color: var(--yellow) !important;
}

.dim {
  color: #bbb;
  font-size: 9px;
}

/* passenger ride options */
.p-rides {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin: 6px 8px 0;
}

.p-ride {
  background: #fff;
  border: 1.5px solid transparent;
  border-radius: 8px;
  padding: 5px 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.p-ride.active {
  border-color: var(--yellow);
  background: #fffbf0;
}

.p-ride i {
  font-size: 11px;
  color: #333;
}

.p-ride span {
  font-size: 8px;
  font-weight: 700;
}

.p-ride em {
  font-style: normal;
  font-size: 7.5px;
  color: #888;
  font-weight: 600;
}

/* admin stats */
.p-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 6px 9px;
}

.p-stat {
  background: #1a2028;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 6px 7px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.p-stat i {
  font-size: 9px;
  margin-bottom: 2px;
}

.green-i {
  color: var(--green);
}

.p-stat span {
  font-size: 6.5px;
  color: #8d97a5;
  font-weight: 600;
  white-space: nowrap;
}

.p-stat strong {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
}

.p-chart {
  margin: 3px 9px 10px;
  background: #1a2028;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.p-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
}

.p-chart-head strong {
  font-size: 8.5px;
  font-weight: 700;
  white-space: nowrap;
}

.p-chart-head span {
  font-size: 6.5px;
  color: #8d97a5;
  white-space: nowrap;
}

.p-chart svg {
  width: 100%;
  flex: 1;
}

/* taxi car */
.taxi-car {
  position: absolute;
  left: auto;
  right: -4px;
  bottom: 0;
  width: 300px;
  z-index: 5;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.55));
}

.taxi-car svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Code panel (build animation) ---------- */

.code-panel {
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 218px;
  background: transparent;
  z-index: 7;
  cursor: pointer;
}

/* animated arrow : code → taxi */
.code-arrow {
  position: absolute;
  left: 196px;
  bottom: 108px;
  width: 160px;
  height: 70px;
  z-index: 6;
  pointer-events: none;
}

.code-arrow svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.arrow-path {
  fill: none;
  stroke: var(--yellow);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 8 7;
  opacity: 0.9;
  filter: drop-shadow(0 0 6px rgba(253, 184, 19, 0.4));
  animation: dashFlow 1.4s linear infinite;
}

.code-arrow.active .arrow-path {
  animation: dashFlow 0.5s linear infinite;
}

@keyframes dashFlow {
  to { stroke-dashoffset: -30; }
}

.arrow-label {
  position: absolute;
  top: -16px;
  left: 30px;
  font-family: Consolas, "Courier New", monospace;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--yellow);
  white-space: nowrap;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.9), 0 2px 4px rgba(0, 0, 0, 0.8);
}

.code-arrow.active .arrow-label {
  animation: labelPulse 0.9s ease-in-out infinite;
}

@keyframes labelPulse {
  50% { opacity: 0.3; }
}

.code-head {
  display: none;
}

.code-replay {
  display: none;
}

.code-body {
  margin: 0;
  padding: 0;
  min-height: 148px;
  font-family: Consolas, "Courier New", monospace;
  font-size: 10.5px;
  line-height: 1.85;
  color: #d7dde3;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.9), 0 2px 4px rgba(0, 0, 0, 0.8);
}

.code-line {
  white-space: nowrap;
  overflow: hidden;
}

.tok-kw  { color: #ff8a80; }
.tok-str { color: #ffd54f; }
.tok-fn  { color: #ce93d8; }
.tok-num { color: #82b1ff; }

.code-ok {
  color: #4ade80;
  font-weight: 700;
  margin-top: 3px;
  text-shadow: 0 0 10px rgba(74, 222, 128, 0.5), 0 2px 4px rgba(0, 0, 0, 0.8);
}

.cursor {
  display: inline-block;
  width: 6px;
  height: 11px;
  margin-left: 1px;
  vertical-align: -1px;
  background: var(--yellow);
  animation: blink 0.9s steps(1) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* ---------- Taxi part assembly ---------- */

.taxi-part {
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity 0.45s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.taxi-car.building .taxi-part {
  opacity: 0;
}

.taxi-car.building .taxi-part.built {
  opacity: 1;
  animation: partPop 0.55s ease;
}

.taxi-car.building #part-shadow          { transform: scaleX(0.25); }
.taxi-car.building #part-shadow.built    { transform: scaleX(1); }

.taxi-car.building #part-body            { transform: translateY(-30px); }
.taxi-car.building #part-body.built      { transform: translateY(0); }

.taxi-car.building #part-glass           { transform: translateY(-18px) scale(0.85); }
.taxi-car.building #part-glass.built     { transform: translateY(0) scale(1); }

.taxi-car.building #part-sign            { transform: translateY(-22px); }
.taxi-car.building #part-sign.built      { transform: translateY(0); }

.taxi-car.building #part-lights          { transform: scale(0.2); }
.taxi-car.building #part-lights.built    { transform: scale(1); }

.taxi-car.building .wheel                { transform: rotate(-200deg) scale(0.4); }
.taxi-car.building .wheel.built          { transform: rotate(0deg) scale(1); }

@keyframes partPop {
  0%   { filter: drop-shadow(0 0 0 rgba(253, 184, 19, 0)); }
  40%  { filter: drop-shadow(0 0 14px rgba(253, 184, 19, 0.85)); }
  100% { filter: drop-shadow(0 0 0 rgba(253, 184, 19, 0)); }
}

/* finished : little hop + wheel spin */
.taxi-car.drive svg {
  animation: taxiHop 0.9s ease;
}

.taxi-car.drive .wheel {
  animation: wheelSpin 0.9s ease;
}

@keyframes taxiHop {
  0%, 100% { transform: translateY(0); }
  25%      { transform: translateY(-9px); }
  50%      { transform: translateY(0); }
  70%      { transform: translateY(-4px); }
}

@keyframes wheelSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ---------- Right form ---------- */

.hero-form {
  position: relative;
  z-index: 5;
  background: linear-gradient(160deg, #191919, #131313);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  padding: 18px 18px 14px;
  margin-top: 0;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.form-title {
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 6px;
}

.form-sub {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 14px;
  padding: 0 6px;
}

.field {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #1f1f1f;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 13px;
  margin-bottom: 9px;
  transition: border-color 0.2s;
}

.field:focus-within {
  border-color: var(--yellow);
}

.field i {
  color: var(--text-faint);
  font-size: 15px;
  flex-shrink: 0;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 0;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-faint);
}

.field select {
  cursor: pointer;
  appearance: none;
  padding-right: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6'><path d='M1 1l4 4 4-4' stroke='%23888' stroke-width='1.5' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right center;
}

.field select option {
  background: #1f1f1f;
}

.field-row {
  display: flex;
  gap: 9px;
}

.flag-field {
  flex: 0 0 104px;
}

.flag {
  font-size: 18px;
  line-height: 1;
}

.grow {
  flex: 1;
}

.textarea-field {
  align-items: flex-start;
  padding-top: 4px;
}

.textarea-field textarea {
  resize: none;
  line-height: 1.5;
}

.hero-form .btn-block {
  padding: 12px;
  font-size: 14.5px;
  border-radius: 10px;
  margin-top: 2px;
}

.form-notes {
  list-style: none;
  margin-top: 11px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.form-notes li {
  font-size: 11.5px;
  color: var(--text-dim);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-notes li i {
  color: var(--yellow);
  font-size: 12px;
}

/* ============ Features / Solution section ============ */

.features-intro {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 88% -12%, rgba(253, 184, 19, 0.18), transparent 62%),
    radial-gradient(760px 480px at -8% 28%, rgba(255, 215, 130, 0.16), transparent 62%),
    radial-gradient(850px 540px at 52% 118%, rgba(255, 190, 80, 0.12), transparent 65%),
    linear-gradient(180deg, #ffffff 0%, #fdfcf9 55%, #f9f6ef 100%);
  color: #141414;
  padding: 64px 0 80px;
}

.features-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 15, 0, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 15, 0, 0.022) 1px, transparent 1px);
  background-size: 88px 88px;
}

.features-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 230px at 91% 16%, transparent 228px, rgba(253, 184, 19, 0.30) 229px, transparent 232px),
    radial-gradient(circle 330px at 91% 16%, transparent 328px, rgba(253, 184, 19, 0.16) 329px, transparent 332px),
    radial-gradient(circle 170px at 4% 86%, transparent 168px, rgba(253, 184, 19, 0.24) 169px, transparent 172px),
    radial-gradient(circle 6px at 78% 34%, rgba(253, 184, 19, 0.35) 5px, transparent 7px),
    radial-gradient(circle 4px at 14% 62%, rgba(253, 184, 19, 0.3) 3px, transparent 5px);
}

.features-intro .container {
  position: relative;
  z-index: 1;
}

/* feature strip */
.feat-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.07);
  padding: 30px 8px;
}

.fs-item {
  text-align: center;
  padding: 4px 18px;
  border-right: 1px solid #ececea;
}

.fs-item:last-child {
  border-right: none;
}

.fs-item i {
  font-size: 26px;
  color: #1c1c1c;
  margin-bottom: 14px;
}

.fs-item h4 {
  font-size: 14.5px;
  font-weight: 800;
  margin-bottom: 8px;
}

.fs-item p {
  font-size: 12px;
  line-height: 1.55;
  color: #7c7c7c;
}

/* stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #101010;
  border-radius: 22px;
  margin-top: 26px;
  padding: 24px 10px;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item i {
  font-size: 26px;
  color: var(--yellow);
}

.stat-item strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.stat-item span {
  font-size: 12px;
  color: #b5b5b5;
  font-weight: 500;
}

/* solution split */
.solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 64px;
}

.solution-visual {
  position: relative;
}

/* image slot — drop your file at images/solution-apps.png */
.solution-image {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  overflow: hidden;
}

.solution-image.empty {
  min-height: 380px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(253, 184, 19, 0.10), transparent 65%),
    #ffffff;
  border: 1px dashed #d9d4c8;
}

.solution-image.empty::before {
  content: "\f03e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: calc(50% - 44px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 34px;
  color: #cfc9ba;
}

.solution-image.empty::after {
  content: "Add your image here:\A images/solution-apps.png";
  white-space: pre;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 13.5px;
  line-height: 1.7;
  color: #a39c8b;
  font-weight: 600;
}

.solution-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

/* solution content */
.section-tag {
  display: inline-block;
  background: rgba(253, 184, 19, 0.18);
  color: #a87b00;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-title .accent {
  color: #f0a500;
}

.section-sub {
  font-size: 15px;
  line-height: 1.65;
  color: #6d6d6d;
  max-width: 480px;
  margin-bottom: 26px;
}

.sol-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.sol-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.sol-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #ecebe7;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #1c1c1c;
  flex-shrink: 0;
}

.sol-item h4 {
  font-size: 16.5px;
  font-weight: 800;
  margin-bottom: 5px;
}

.sol-item p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #6d6d6d;
  max-width: 430px;
}

.btn-dark {
  background: #111;
  color: #fff;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 15px;
}

.btn-dark i {
  color: var(--yellow);
}

.btn-dark:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* ============ Why Choose Us ============ */

.why-choose {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(760px 440px at 10% -14%, rgba(253, 184, 19, 0.20), transparent 60%),
    radial-gradient(920px 520px at 102% 52%, rgba(255, 224, 138, 0.18), transparent 64%),
    radial-gradient(700px 420px at 45% 120%, rgba(255, 200, 90, 0.10), transparent 62%),
    linear-gradient(180deg, #fdfcf9 0%, #faf7f0 60%, #f7f3ea 100%);
  color: #141414;
  padding: 34px 0 40px;
}

.why-choose::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(140, 100, 0, 0.05) 1.1px, transparent 1.1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 90% at 50% 30%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 50% 30%, #000 30%, transparent 78%);
}

.why-choose::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 200px at 96% 88%, transparent 198px, rgba(253, 184, 19, 0.26) 199px, transparent 202px),
    radial-gradient(circle 130px at 6% 30%, transparent 128px, rgba(253, 184, 19, 0.22) 129px, transparent 132px),
    radial-gradient(circle 5px at 90% 22%, rgba(253, 184, 19, 0.32) 4px, transparent 6px),
    radial-gradient(circle 4px at 22% 88%, rgba(253, 184, 19, 0.3) 3px, transparent 5px);
}

.why-choose .container {
  position: relative;
  z-index: 1;
}

.section-head {
  text-align: center;
  margin-bottom: 38px;
}

.head-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.6px;
  color: var(--yellow);
  margin-bottom: 10px;
}

.head-tag.dark-tag {
  color: #6d6d6d;
}

.pill-tag {
  display: inline-block;
  background: #fff;
  border: 1px solid rgba(253, 184, 19, 0.45);
  color: #d99b00;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  padding: 7px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(253, 184, 19, 0.22);
  margin-bottom: 10px;
}

.why-choose .section-head {
  margin-bottom: 22px;
}

.why-choose .section-sub {
  font-size: 13.5px;
  margin-bottom: 0;
}

.why-wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 22px;
}

/* ---- left visual ---- */

.why-visual {
  position: relative;
  min-height: 424px;
}

.float-tile {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--yellow);
  z-index: 7;
  animation: tileFloat 4.5s ease-in-out infinite;
}

.tile-pin    { left: 0;      top: 12px; }
.tile-shield { right: 9%;    top: 4px;   animation-delay: 1.1s; }
.tile-cloud  { right: -4px;  top: 108px; color: #60a5fa; animation-delay: 2.2s; }
.tile-chart  { left: -6px;   bottom: 104px; animation-delay: 3.1s; }

@keyframes tileFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

/* laptop */
.laptop {
  position: relative;
  width: 74%;
  margin: 16px auto 0;
  z-index: 2;
}

.laptop-screen {
  display: flex;
  height: 236px;
  background: #161616;
  border: 8px solid #222;
  border-bottom: none;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}

.laptop-base {
  width: 112%;
  margin-left: -6%;
  height: 13px;
  background: linear-gradient(#e2e2df, #bdbdb9);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.18);
}

.lap-side {
  flex: 0 0 76px;
  background: #101010;
  padding: 8px 7px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lap-logo {
  font-size: 9px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  padding-left: 4px;
}

.lap-logo span {
  color: var(--yellow);
}

.lap-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 6.5px;
  font-weight: 600;
  color: #8d8d8d;
  padding: 3.5px 6px;
  border-radius: 6px;
  white-space: nowrap;
}

.lap-item i {
  font-size: 7px;
  width: 9px;
}

.lap-item.active {
  background: var(--yellow);
  color: #111;
}

.lap-main {
  flex: 1;
  background: #1d1d1d;
  padding: 7px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.lap-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.lap-stat {
  background: #fff;
  border-radius: 8px;
  padding: 7px 8px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.lap-stat span {
  font-size: 5.5px;
  color: #8a8a8a;
  font-weight: 600;
  white-space: nowrap;
}

.lap-stat strong {
  font-size: 10.5px;
  font-weight: 800;
  color: #141414;
}

.lap-stat em {
  font-style: normal;
  font-size: 5.5px;
  font-weight: 700;
  color: #16a34a;
}

.lap-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 7px;
}

.lap-chart,
.lap-locs,
.lap-recent {
  background: #fff;
  border-radius: 8px;
  padding: 8px 9px;
}

.lap-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.lap-card-head strong {
  font-size: 7.5px;
  font-weight: 800;
  color: #141414;
}

.lap-card-head span {
  font-size: 6px;
  color: #999;
}

.lap-chart svg {
  width: 100%;
  height: 40px;
  display: block;
}

.lap-loc {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 5px;
}

.lap-loc span {
  flex: 0 0 38px;
  font-size: 6px;
  font-weight: 600;
  color: #555;
  white-space: nowrap;
}

.lap-loc i {
  display: block;
  height: 4px;
  border-radius: 3px;
  background: linear-gradient(90deg, #fdb813, #ffd35e);
}

.lap-recent .lap-book {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 0;
}

.lb-av {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5.5px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.lb-av.a1 { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.lb-av.a2 { background: linear-gradient(135deg, #ec4899, #8b5cf6); }

.lap-book > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.35;
  min-width: 0;
}

.lap-book strong {
  font-size: 6.5px;
  font-weight: 700;
  color: #141414;
}

.lap-book span {
  font-size: 5.5px;
  color: #999;
}

.lap-book em {
  font-style: normal;
  font-size: 7px;
  font-weight: 800;
  color: #141414;
}

.lap-book b {
  font-size: 5px;
  font-weight: 700;
  color: #16a34a;
  background: rgba(22, 163, 74, 0.1);
  padding: 2px 5px;
  border-radius: 999px;
}

/* small phones */
.wphone {
  position: absolute;
  background: #fdfdfb;
  border: 4px solid #232323;
  border-radius: 20px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 8px;
  gap: 5px;
}

.wphone-book {
  width: 142px;
  height: 296px;
  left: -2px;
  top: 62px;
  transform: rotate(-3deg);
  z-index: 5;
}

.wphone-driver {
  width: 128px;
  height: 264px;
  right: 0;
  top: 108px;
  transform: rotate(3deg);
  z-index: 4;
  align-items: center;
  text-align: center;
}

.wp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9.5px;
  font-weight: 800;
  color: #141414;
}

.wp-head i {
  font-size: 8px;
  color: #999;
}

.wp-map {
  border-radius: 9px;
  overflow: hidden;
  background: #efede6;
  flex: 0 0 74px;
}

.wp-map svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wp-field {
  background: #fff;
  border: 1px solid #eceade;
  border-radius: 9px;
  padding: 5px 9px;
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.wp-field span {
  font-size: 6.5px;
  color: #999;
  font-weight: 600;
}

.wp-field strong {
  font-size: 8.5px;
  color: #141414;
  font-weight: 700;
}

.wp-ride {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid #eceade;
  border-radius: 9px;
  padding: 6px 9px;
}

.wp-ride.active {
  border-color: var(--yellow);
  background: #fffaf0;
}

.wp-ride i {
  font-size: 11px;
  color: var(--yellow-dark);
}

.wp-ride strong {
  flex: 1;
  font-size: 8.5px;
  font-weight: 700;
  color: #141414;
}

.wp-ride em {
  font-style: normal;
  font-size: 8.5px;
  font-weight: 800;
  color: #141414;
}

.wp-btn {
  margin-top: auto;
  background: var(--yellow);
  color: #111;
  text-align: center;
  font-size: 9px;
  font-weight: 800;
  border-radius: 999px;
  padding: 8px;
  width: 100%;
}

.wp-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 7.5px;
  font-weight: 700;
  color: #16a34a;
  align-self: flex-end;
}

.on-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
}

.wp-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd23f, #f0a400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #7c5200;
  margin-top: 2px;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.wp-name {
  font-size: 10px;
  font-weight: 800;
  color: #141414;
}

.wp-rating {
  font-size: 8px;
  font-weight: 700;
  color: #666;
}

.wp-rating i {
  color: var(--yellow);
  font-size: 7px;
}

.wp-earn {
  width: 100%;
  background: #141414;
  color: #fff;
  border-radius: 12px;
  padding: 9px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 4px;
}

.wp-earn > span {
  font-size: 6.5px;
  color: #a5a5a5;
  font-weight: 600;
}

.wp-earn > strong {
  font-size: 15px;
  font-weight: 800;
}

.wp-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 6px;
}

.wp-mini div {
  background: #222;
  border-radius: 7px;
  padding: 4px 2px;
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.wp-mini strong {
  font-size: 6.5px;
  font-weight: 800;
}

.wp-mini span {
  font-size: 5px;
  color: #9a9a9a;
}

/* taxi */
.why-taxi {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-54%);
  width: 262px;
  z-index: 6;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.22));
}

.why-taxi svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- right cards ---- */

.why-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.wc-card {
  background: #fff;
  border: 1px solid #f0ede2;
  border-radius: 15px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
  padding: 15px 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.09);
}

.wc-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: #fdf3d7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #e9a800;
  flex-shrink: 0;
}

.wc-card h4 {
  font-size: 13.5px;
  font-weight: 800;
  margin-bottom: 4px;
}

.wc-card p {
  font-size: 11.5px;
  line-height: 1.55;
  color: #7c7c7c;
}

/* ---- bottom stats ---- */

.why-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid #f0ede2;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
  padding: 17px 10px;
}

.ws-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-right: 1px solid #efece1;
}

.ws-item:last-child {
  border-right: none;
}

.ws-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fdf3d7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #e9a800;
  flex-shrink: 0;
}

.ws-item strong {
  display: block;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.1;
}

.ws-item span {
  font-size: 11px;
  color: #8a8578;
  font-weight: 600;
  line-height: 1.3;
}

/* ============ Testimonials ============ */

.testimonials {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  color: #fff;
  padding: 60px 0 70px;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/taxi-street.jpg") center 62% / cover no-repeat;
  opacity: 0.38;
}

.testimonials::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, #0a0a0a 0%, rgba(8, 8, 8, 0.78) 30%, rgba(8, 8, 8, 0.78) 70%, #0a0a0a 100%),
    radial-gradient(ellipse 42% 55% at 8% 0%, rgba(253, 184, 19, 0.08), transparent 60%);
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.light-title {
  color: #fff;
}

.testi-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
}

.testi-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  flex: 1;
}

.testi-card {
  background: rgba(18, 18, 18, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
}

.testi-card .quote {
  font-size: 20px;
  color: var(--yellow);
  margin-bottom: 14px;
}

.testi-card > p {
  font-size: 14px;
  line-height: 1.7;
  color: #d6d6d6;
  flex: 1;
  margin-bottom: 22px;
}

.testi-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.av-1 { background: linear-gradient(135deg, #f97316, #ef4444); }
.av-2 { background: linear-gradient(135deg, #ec4899, #8b5cf6); }
.av-3 { background: linear-gradient(135deg, #3b82f6, #06b6d4); }

.testi-person strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.testi-person span {
  font-size: 12px;
  color: #9a9a9a;
}

.stars i {
  color: var(--yellow);
  font-size: 12px;
  margin-left: 2px;
}

.testi-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--yellow);
  color: #111;
  font-size: 14px;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.2s;
}

.testi-arrow:hover {
  background: var(--yellow-dark);
  transform: scale(1.08);
}

/* ============ CTA banner ============ */

.cta-banner {
  position: relative;
  background:
    radial-gradient(ellipse 55% 70% at 12% -8%, rgba(255, 255, 255, 0.28), transparent 58%),
    radial-gradient(ellipse 50% 60% at 100% 110%, rgba(0, 0, 0, 0.12), transparent 60%),
    var(--yellow);
  color: #141414;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(0, 0, 0, 0.028) 0 2px,
    transparent 2px 16px
  );
}

.cta-city {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 62%;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px;
  align-items: end;
  padding-top: 54px;
}

.cta-content {
  padding-bottom: 54px;
}

.cta-content h2 {
  font-size: clamp(28px, 2.9vw, 40px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}

.cta-content p {
  font-size: 15px;
  line-height: 1.65;
  max-width: 430px;
  margin-bottom: 26px;
  color: #2c2410;
}

.cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-black {
  background: #111;
  color: #fff;
  padding: 13px 24px;
  border-radius: 10px;
}

.btn-black i { color: var(--yellow); }

.btn-black:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
}

.btn-black-outline {
  background: transparent;
  color: #111;
  border-color: rgba(0, 0, 0, 0.55);
  padding: 13px 24px;
  border-radius: 10px;
}

.btn-black-outline:hover {
  background: #111;
  color: #fff;
}

.cta-taxi {
  position: relative;
  align-self: end;
  width: min(440px, 100%);
  margin: 0 0 -6px auto;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.28));
}

.cta-taxi svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ============ Footer ============ */

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 80% at 50% -30%, rgba(253, 184, 19, 0.10), transparent 60%),
    linear-gradient(180deg, #0d0c0a 0%, #080808 100%);
  color: #cfcfcf;
  padding: 56px 0 0;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/city-night.jpg") center 70% / cover no-repeat;
  opacity: 0.09;
  filter: saturate(0.8);
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0a0a0a 0%, rgba(10, 10, 10, 0.35) 55%, rgba(10, 10, 10, 0.85) 100%);
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.site-footer .back-top {
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 44px;
}

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #9a9a9a;
  margin: 18px 0 20px;
  max-width: 260px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #cfcfcf;
  transition: all 0.2s;
}

.socials a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #111;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col h5 {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.footer-col a,
.footer-col span {
  font-size: 13.5px;
  color: #9a9a9a;
  transition: color 0.2s;
}

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

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--yellow);
  font-size: 13px;
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0 22px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12.5px;
  color: #8a8a8a;
}

.back-top {
  position: absolute;
  right: 34px;
  bottom: 26px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #1f1f1f;
  border: 1px solid var(--border-strong);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s;
}

.back-top:hover {
  background: var(--yellow);
  color: #111;
  transform: translateY(-3px);
}

/* ============ How It Works ============ */

.how-it-works {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 70% at 50% -20%, rgba(253, 184, 19, 0.08), transparent 60%),
    #0a0a0a;
  color: #fff;
  padding: 60px 0 70px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  position: relative;
  background: #151515;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 22px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(253, 184, 19, 0.45);
}

.step-num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 30px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(253, 184, 19, 0.5);
}

.step-card i {
  font-size: 26px;
  color: var(--yellow);
  margin-bottom: 16px;
}

.step-card h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #a8a8a8;
}

/* ============ Pricing ============ */

.pricing {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(820px 480px at 85% -10%, rgba(253, 184, 19, 0.14), transparent 62%),
    radial-gradient(700px 420px at 0% 105%, rgba(255, 215, 130, 0.12), transparent 62%),
    linear-gradient(180deg, #fdfcf9 0%, #f8f5ee 100%);
  color: #141414;
  padding: 60px 0 76px;
}

.center-sub {
  margin: 0 auto;
  text-align: center;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 8px;
}

.price-card {
  position: relative;
  background: #fff;
  border: 1px solid #eceade;
  border-radius: 20px;
  padding: 30px 28px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.1);
}

.price-card h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}

.price-desc {
  font-size: 12.5px;
  color: #8a8578;
  margin-bottom: 18px;
}

.price {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.price .currency {
  font-size: 22px;
  vertical-align: 14px;
  margin-right: 2px;
}

.price .per {
  font-size: 12.5px;
  font-weight: 600;
  color: #9a9588;
  letter-spacing: 0;
  margin-left: 8px;
}

.price-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 26px;
  flex: 1;
}

.price-card li {
  font-size: 13.5px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.price-card li i {
  color: var(--yellow-dark);
  font-size: 12px;
  margin-top: 3px;
}

.price-card.popular {
  background: linear-gradient(170deg, #191919, #0f0f0f);
  border-color: rgba(253, 184, 19, 0.5);
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
  z-index: 1;
}

.price-card.popular:hover {
  transform: scale(1.04) translateY(-6px);
}

.price-card.popular .price-desc {
  color: #a8a8a8;
}

.price-card.popular .per {
  color: #9a9a9a;
}

.price-card.popular li i {
  color: var(--yellow);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: #111;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ============ FAQ ============ */

.faq {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 400px at 10% -12%, rgba(253, 184, 19, 0.12), transparent 60%),
    linear-gradient(180deg, #f8f5ee 0%, #fdfcf9 100%);
  color: #141414;
  padding: 60px 0 76px;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid #eceade;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq-item.open {
  border-color: rgba(253, 184, 19, 0.55);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: #141414;
  text-align: left;
  padding: 18px 22px;
  cursor: pointer;
}

.faq-q i {
  color: var(--yellow-dark);
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-q i {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a p {
  padding: 0 22px 18px;
  font-size: 13.5px;
  line-height: 1.7;
  color: #6d6d6d;
}

.faq-item.open .faq-a {
  max-height: 220px;
}

/* ============ Form validation ============ */

.field.invalid {
  border-color: #ef4444 !important;
}

.field.invalid i {
  color: #ef4444;
}

.err-msg {
  display: block;
  color: #f87171;
  font-size: 11.5px;
  font-weight: 600;
  margin: -5px 4px 9px;
}

.form-success-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  color: #4ade80;
  font-size: 13px;
  font-weight: 700;
}

/* ============ Scroll reveal animations ============ */

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.22, 0.9, 0.34, 1);
  will-change: opacity, transform;
}

.reveal.rv-left  { transform: translateX(-44px); }
.reveal.rv-right { transform: translateX(44px); }
.reveal.rv-zoom  { transform: scale(0.9); }

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  * {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
  }
}

/* ============ Ambient animations (always running) ============ */

@keyframes bobY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

@keyframes ringGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(253, 184, 19, 0.38); }
  60%      { box-shadow: 0 0 0 12px rgba(253, 184, 19, 0); }
}

@keyframes badgeShine {
  to { background-position: -200% 0; }
}

@keyframes drawLine {
  0%        { stroke-dashoffset: 320; }
  55%, 100% { stroke-dashoffset: 0; }
}

/* section 2 : feature strip + dark stats bar */
.fs-item i { display: inline-block; animation: bobY 3.2s ease-in-out infinite; }
.fs-item:nth-child(2) i { animation-delay: 0.4s; }
.fs-item:nth-child(3) i { animation-delay: 0.8s; }
.fs-item:nth-child(4) i { animation-delay: 1.2s; }
.fs-item:nth-child(5) i { animation-delay: 1.6s; }
.fs-item:nth-child(6) i { animation-delay: 2s; }

.stat-item i { animation: bobY 3s ease-in-out infinite; }
.stat-item:nth-child(2) i { animation-delay: 0.5s; }
.stat-item:nth-child(3) i { animation-delay: 1s; }
.stat-item:nth-child(4) i { animation-delay: 1.5s; }
.stat-item:nth-child(5) i { animation-delay: 2s; }

/* solution list icons */
.sol-icon { animation: bobY 3.4s ease-in-out infinite; }
.sol-item:nth-child(2) .sol-icon { animation-delay: 0.6s; }
.sol-item:nth-child(3) .sol-icon { animation-delay: 1.2s; }

/* how it works */
.step-card i { display: inline-block; animation: bobY 3s ease-in-out infinite; }
.steps-grid .step-card:nth-child(2) i { animation-delay: 0.5s; }
.steps-grid .step-card:nth-child(3) i { animation-delay: 1s; }
.steps-grid .step-card:nth-child(4) i { animation-delay: 1.5s; }

/* why choose us */
.wc-icon { animation: bobY 3.6s ease-in-out infinite; }
.why-cards .wc-card:nth-child(2) .wc-icon { animation-delay: 0.4s; }
.why-cards .wc-card:nth-child(3) .wc-icon { animation-delay: 0.8s; }
.why-cards .wc-card:nth-child(4) .wc-icon { animation-delay: 1.2s; }
.why-cards .wc-card:nth-child(5) .wc-icon { animation-delay: 1.6s; }
.why-cards .wc-card:nth-child(6) .wc-icon { animation-delay: 2s; }

.ws-icon { animation: ringGlow 2.8s ease-out infinite; }
.why-stats .ws-item:nth-child(2) .ws-icon { animation-delay: 0.5s; }
.why-stats .ws-item:nth-child(3) .ws-icon { animation-delay: 1s; }
.why-stats .ws-item:nth-child(4) .ws-icon { animation-delay: 1.5s; }

.lap-chart path[stroke="#fdb813"] {
  stroke-dasharray: 320;
  animation: drawLine 5s ease-in-out infinite;
}

.why-taxi svg { animation: bobY 4.5s ease-in-out infinite; }

/* pricing */
.popular-badge {
  background: linear-gradient(110deg, #fdb813 40%, #ffe9a8 50%, #fdb813 60%);
  background-size: 200% 100%;
  animation: badgeShine 2.6s linear infinite;
}

/* testimonials */
.testi-card .quote { display: inline-block; animation: bobY 3.2s ease-in-out infinite; }
.testi-track .testi-card:nth-child(2) .quote { animation-delay: 0.6s; }
.testi-track .testi-card:nth-child(3) .quote { animation-delay: 1.2s; }

/* faq */
.faq-item.open .faq-q i { color: var(--yellow); }

/* cta banner */
.cta-taxi svg { animation: bobY 4s ease-in-out infinite; }

/* ============ Lead popup ============ */

.lead-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lead-overlay.open {
  opacity: 1;
  visibility: visible;
}

.lead-modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(253, 184, 19, 0.14), transparent 60%),
    linear-gradient(165deg, #1c1c1c, #121212);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 34px 28px 26px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
  transform: translateY(18px) scale(0.94);
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
  color: #fff;
}

.lead-overlay.open .lead-modal {
  transform: translateY(0) scale(1);
}

.lead-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #bbb;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.lead-close:hover {
  background: var(--yellow);
  color: #111;
  border-color: var(--yellow);
  transform: rotate(90deg);
}

.lead-head {
  text-align: center;
  margin-bottom: 20px;
}

.lead-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 16px;
  background: rgba(253, 184, 19, 0.12);
  border: 1px solid rgba(253, 184, 19, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--yellow);
}

.lead-head h3 {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 8px;
}

.lead-head p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.55;
  padding: 0 14px;
}

.lead-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 11.5px;
  color: var(--text-dim);
}

.lead-note i {
  color: var(--yellow);
  font-size: 11px;
}

.lead-success {
  text-align: center;
  padding: 26px 0 14px;
}

.lead-success i {
  font-size: 52px;
  color: #4ade80;
  margin-bottom: 14px;
  animation: popIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
  from { transform: scale(0.3); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.lead-success h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

.lead-success p {
  font-size: 13.5px;
  color: var(--text-dim);
}

/* ============ Floating action buttons ============ */

.float-btn {
  position: fixed;
  bottom: 26px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.float-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.45);
}

.float-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  z-index: -1;
  animation: ringPulse 2.4s ease-out infinite;
}

@keyframes ringPulse {
  0%   { transform: scale(1);    opacity: 0.45; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

.float-btn i {
  font-size: 22px;
}

.float-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: #141414;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.float-call .float-label {
  left: calc(100% + 14px);
  transform: translateY(-50%) translateX(-8px);
}

.float-wa .float-label {
  right: calc(100% + 14px);
  transform: translateY(-50%) translateX(8px);
}

.float-btn:hover .float-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.float-call {
  left: 26px;
  background: linear-gradient(135deg, #ffd23f, #f0a400);
  color: #111;
}

.float-call .float-label {
  color: var(--yellow);
}

.float-wa {
  right: 26px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
}

.float-wa i {
  font-size: 26px;
}

@media (max-width: 640px) {
  .float-btn {
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .float-call { left: 16px; }
  .float-wa   { right: 16px; }
}

/* ============ Responsive ============ */

@media (max-width: 1280px) {
  .hero-inner {
    grid-template-columns: minmax(340px, 1fr) 1fr 360px;
  }

  .phone-left { left: 0; }
  .phone-right { right: 0; }
}

@media (max-width: 1100px) {
  /* mobile nav dropdown */
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 18px;
    z-index: 99;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 11px 4px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .nav-toggle {
    display: block;
  }

  /* hero: stop clamping height once layout stacks */
  .hero {
    max-height: none;
    min-height: auto;
    padding-bottom: 40px;
  }

  .feat-strip {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 26px;
  }

  .fs-item:nth-child(3) {
    border-right: none;
  }

  .stats-bar {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 20px;
  }

  .stat-item:nth-child(3) {
    border-right: none;
  }

  .solution {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-stats {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 22px;
  }

  .ws-item:nth-child(2) {
    border-right: none;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 8px auto 0;
    gap: 30px;
  }

  .price-card.popular {
    transform: none;
  }

  .price-card.popular:hover {
    transform: translateY(-6px);
  }

  .testi-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .testi-track::-webkit-scrollbar {
    display: none;
  }

  .testi-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cta-content {
    padding-bottom: 0;
  }

  .cta-taxi {
    margin: 0 auto -6px;
  }

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

  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    grid-column: 1 / -1;
    order: 3;
  }
}

@media (max-width: 860px) {
  .header-actions .btn-outline {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .map-pin {
    display: none;
  }

  .hero-form {
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-visual {
    min-height: 640px;
  }

  .phone-left,
  .phone-right {
    display: none;
  }

  /* centered, simplified hero */
  .hero {
    padding-top: 26px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-features {
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-visual {
    min-height: 625px;
    margin-top: 4px;
  }

  .phone-center {
    top: 0;
    width: 152px;
    height: 326px;
  }

  /* code panel sits centered under the phone, taxi builds below it */
  .code-panel {
    left: 50%;
    transform: translateX(-50%);
    bottom: auto;
    top: 340px;
    width: 230px;
  }

  .code-body {
    font-size: 11px;
    min-height: 140px;
  }

  .taxi-car {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 250px;
  }

  .code-arrow {
    display: none;
  }
}

@media (max-width: 640px) {
  .feat-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .wphone,
  .float-tile {
    display: none;
  }

  .laptop {
    width: 96%;
  }

  .why-visual {
    min-height: 380px;
  }

  .why-taxi {
    width: 240px;
    transform: translateX(-50%);
  }

  .taxi-car {
    width: 230px;
  }

  .testi-arrow {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .cta-content h2 br {
    display: none;
  }

  .fs-item {
    border-right: none;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: none;
    justify-content: flex-start;
    padding-left: 18px;
  }

  .solution-image {
    min-height: 260px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .why-cards {
    grid-template-columns: 1fr;
  }

  .why-stats {
    grid-template-columns: 1fr;
  }

  .ws-item {
    border-right: none;
    justify-content: flex-start;
    padding-left: 22px;
  }

  .why-visual {
    min-height: 480px;
  }

  .wphone,
  .float-tile {
    display: none;
  }

  .laptop {
    width: 100%;
  }

  .why-taxi {
    width: 250px;
    transform: translateX(-50%);
  }

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

  .testi-card {
    flex: 0 0 92%;
  }

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

  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 0;
  }

  .hf-item:nth-child(2) {
    border-right: none;
  }

  .header-actions .btn-primary {
    padding: 10px 16px;
    font-size: 13px;
  }
}
