:root {
  --navy-950: #06162f;
  --navy-900: #071b38;
  --navy-800: #092653;
  --blue-700: #0b52d4;
  --blue-600: #1268ff;
  --blue-500: #2c82ff;
  --blue-100: #e8f1ff;
  --ink: #07142c;
  --muted: #5b6b86;
  --line: #dbe6f5;
  --paper: #f7fbff;
  --white: #ffffff;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-card: 0 18px 45px rgba(9, 35, 83, .12);
  --shadow-deep: 0 34px 80px rgba(1, 12, 32, .36);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { max-width: 100%; display: block; }

.site-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  grid-template-rows: auto auto auto auto;
  grid-auto-flow: dense;
  background:
    linear-gradient(90deg, rgba(255,255,255,0) 0 49.8%, #f8fbff 49.8% 100%),
    #fff;
}

.hero-panel {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  min-height: 565px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  background: var(--navy-950);
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(640px 380px at 68% 22%, rgba(29, 116, 255, .34), transparent 66%),
    linear-gradient(90deg, rgba(4, 16, 38, .95), rgba(6, 23, 52, .86) 50%, rgba(5, 20, 44, .76)),
    url("assets/marketing-coastline.svg") center bottom / cover no-repeat;
  z-index: -2;
}
.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,27,56,.1) 0%, rgba(7,27,56,.16) 42%, rgba(4,15,34,.78) 100%),
    radial-gradient(1px 1px at 63% 30%, rgba(255,255,255,.24), transparent 2px);
  z-index: -1;
}

.site-header {
  min-height: 72px;
  padding: 24px 42px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 32px;
  position: relative;
  z-index: 5;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  font-weight: 850;
  letter-spacing: 3px;
}
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand span {
  color: #fff;
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
}
.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 34px);
  padding-top: 8px;
}
.main-nav a {
  position: relative;
  color: rgba(255,255,255,.88);
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  transition: color .2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 2px;
  border-radius: 99px;
  background: var(--blue-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.main-nav a:hover, .main-nav a:first-child { color: #fff; }
.main-nav a:hover::after, .main-nav a:first-child::after { transform: scaleX(1); }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 6px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.lang-switch button {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(255,255,255,.82);
  cursor: pointer;
  font-weight: 850;
}
.lang-switch button.active { color: #fff; }

.hero-content {
  min-height: 493px;
  padding: 34px 44px 38px 68px;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 270px;
  align-items: center;
  gap: 28px;
}
.hero-copy { max-width: 560px; }
.eyebrow {
  margin: 0 0 18px;
  color: #8fbfff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}
.hero-copy h1 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(36px, 3.2vw, 50px);
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 850;
}
.lead {
  margin: 24px 0 16px;
  color: rgba(255,255,255,.95);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
}
.body-copy {
  margin: 0;
  max-width: 420px;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 600;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 30px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.42);
  font-size: 16px;
  font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary {
  color: #fff;
  border-color: rgba(37,122,255,.9);
  background: linear-gradient(135deg, #1975ff, #0755e8);
  box-shadow: 0 18px 36px rgba(13, 92, 237, .32), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn.primary:hover { box-shadow: 0 24px 50px rgba(13, 92, 237, .42), inset 0 1px 0 rgba(255,255,255,.24); }
.btn.ghost {
  color: #fff;
  background: rgba(255,255,255,.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.btn.ghost:hover { border-color: rgba(255,255,255,.78); background: rgba(255,255,255,.09); }
.btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn.small {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 12px;
}

.store-row {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.store-badge {
  height: 52px;
  min-width: 148px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 8px 14px;
  border-radius: 12px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.72);
  background: rgba(3, 11, 28, .68);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  cursor: default;
}
.store-badge.dark {
  width: 190px;
  height: 64px;
  background: #071226;
  border-color: rgba(7, 18, 38, .9);
  box-shadow: 0 18px 34px rgba(4, 17, 40, .16);
}
.store-badge b {
  display: block;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0;
}
.store-badge small {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: rgba(255,255,255,.78);
  font-weight: 800;
}
.store-icon {
  width: 28px;
  height: 28px;
  flex: none;
  display: block;
}
.apple-icon {
  background: #fff;
  clip-path: path("M21.4 14.4c0-3 2.5-4.5 2.6-4.6-1.4-2-3.6-2.3-4.4-2.3-1.9-.2-3.6 1.1-4.6 1.1-.9 0-2.4-1.1-4-1-2.1 0-4 1.2-5.1 3.1-2.2 3.8-.6 9.5 1.6 12.6 1.1 1.5 2.3 3.2 4 3.1 1.6-.1 2.2-1 4-1s2.3 1 4 1c1.7 0 2.8-1.5 3.8-3 1.2-1.7 1.7-3.4 1.7-3.5-.1 0-3.5-1.4-3.6-5.5ZM18.4 5.5c.9-1.1 1.5-2.5 1.3-4-1.3.1-2.8.9-3.7 2-.8.9-1.6 2.4-1.4 3.8 1.5.1 2.9-.7 3.8-1.8Z");
}
.play-icon {
  position: relative;
  width: 30px;
  height: 28px;
}
.play-icon::before {
  content: "";
  position: absolute;
  inset: 2px 3px;
  background: linear-gradient(135deg, #37d3ff 0 28%, #7bff93 28% 52%, #ffd35c 52% 72%, #ff4f79 72%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.phone {
  width: 268px;
  max-width: 100%;
  filter: drop-shadow(0 28px 48px rgba(0,0,0,.42));
}
.phone-frame {
  position: relative;
  aspect-ratio: 9 / 18.5;
  padding: 12px;
  border-radius: 44px;
  background: linear-gradient(135deg, #0a1020, #313846 42%, #050914);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.18), inset 0 0 0 7px #111a2b;
  transform: rotate(8deg);
}
.hero-phone .phone-frame { transform: rotate(8deg) translateY(-4px); }
.phone-notch {
  position: absolute;
  top: 21px;
  left: 50%;
  width: 104px;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 0 0 18px 18px;
  background: #050915;
  z-index: 3;
}
.app-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 34px;
  background: #f9fbff;
}
.phone-status {
  height: 44px;
  padding: 12px 18px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: #10203f;
  font-size: 11px;
  font-weight: 850;
}
.phone-status span:last-child::before {
  content: "";
  display: block;
  width: 36px;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, #10203f 28%, transparent 28% 38%, #10203f 38% 66%, transparent 66% 76%, #10203f 76%);
}
.search-pill {
  margin: 4px 18px 10px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: #20304e;
  background: #fff;
  box-shadow: 0 8px 18px rgba(13, 46, 98, .1);
  font-size: 12px;
  font-weight: 800;
}
.mini-map {
  height: 122px;
  margin: 0 18px 12px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 48%, rgba(17,104,255,.11) 48% 50%, transparent 50%),
    linear-gradient(0deg, transparent 48%, rgba(17,104,255,.11) 48% 50%, transparent 50%),
    radial-gradient(circle at 34% 44%, rgba(18,104,255,.16), transparent 20%),
    #eaf4e9;
  background-size: 58px 58px, 58px 58px, auto, auto;
}
.route-line {
  position: absolute;
  left: 46px;
  top: 70px;
  width: 150px;
  height: 48px;
  border: 4px solid var(--blue-600);
  border-left: 0;
  border-top: 0;
  border-radius: 0 0 42px 0;
}
.pin {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50% 50% 50% 0;
  background: var(--blue-600);
  transform: rotate(-45deg);
  box-shadow: 0 4px 10px rgba(18,104,255,.3);
}
.pin::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #fff;
}
.pin.p1 { left: 48px; top: 58px; }
.pin.p2 { left: 130px; top: 92px; }
.pin.p3 { right: 42px; top: 42px; }
.route-card {
  margin: 0 18px 8px;
  padding: 10px 12px;
  display: grid;
  gap: 12px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(13, 46, 98, .1);
}
.route-card div {
  display: grid;
  gap: 2px;
  padding-left: 18px;
  position: relative;
}
.route-card div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-600);
}
.route-card small { color: #7890b2; font-size: 9px; font-weight: 800; }
.route-card b { color: #182846; font-size: 11px; }
.ride-stack {
  margin: 0 18px;
  display: grid;
  gap: 7px;
}
.ride-stack div {
  min-height: 36px;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 12px;
  color: #142743;
  background: #fff;
  box-shadow: 0 6px 12px rgba(13, 46, 98, .08);
}
.ride-stack img {
  width: 38px;
  height: 24px;
  object-fit: contain;
  background: #f7fbff;
  border-radius: 6px;
}
.ride-stack span { font-size: 10px; font-weight: 850; }
.ride-stack b { font-size: 10px; color: var(--blue-700); }
.customer-screen button {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #1975ff, #0755e8);
  font-size: 12px;
  font-weight: 850;
}

.section {
  padding: 38px 44px;
  background: #fff;
}
.section-head {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-bottom: 36px;
  text-align: center;
}
.section-head h2 {
  margin: 0;
  color: #07142c;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 850;
}
.section-head span {
  width: 36px;
  height: 3px;
  border-radius: 99px;
  background: var(--blue-600);
}

.why-section {
  grid-column: 1;
  grid-row: 2;
  padding-top: 44px;
  padding-bottom: 46px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}
.feature-card {
  min-height: 136px;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  gap: 12px;
}
.feature-card h3 {
  margin: 0;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 850;
}
.feature-card p {
  margin: 0;
  color: #4f5d75;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 600;
}

[class^="icon-"], [class*=" icon-"] {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--blue-600);
  position: relative;
}
[class^="icon-"]::before, [class*=" icon-"]::before {
  content: "";
  width: 34px;
  height: 34px;
  display: block;
  background: currentColor;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}
.icon-shield { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 3 26 7v7c0 6.5-4.2 11.8-10 14-5.8-2.2-10-7.5-10-14V7l10-4Z'/%3E%3Cpath d='m11 16 3 3 7-8'/%3E%3C/svg%3E"); }
.icon-pin { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 28s9-8.4 9-16a9 9 0 0 0-18 0c0 7.6 9 16 9 16Z'/%3E%3Ccircle cx='16' cy='12' r='3'/%3E%3C/svg%3E"); }
.icon-headset { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 17a10 10 0 0 1 20 0'/%3E%3Crect x='4' y='17' width='5' height='8' rx='2'/%3E%3Crect x='23' y='17' width='5' height='8' rx='2'/%3E%3Cpath d='M25 25c-1.2 3-4 4-8 4h-2'/%3E%3C/svg%3E"); }
.icon-lock { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='13' width='18' height='14' rx='3'/%3E%3Cpath d='M11 13V9a5 5 0 0 1 10 0v4'/%3E%3Cpath d='M16 19v3'/%3E%3C/svg%3E"); }
.icon-wallet { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 10h22v16H5a3 3 0 0 1-3-3V9a3 3 0 0 1 3-3h19'/%3E%3Cpath d='M22 16h7v6h-7a3 3 0 0 1 0-6Z'/%3E%3Ccircle cx='22' cy='19' r='1'/%3E%3C/svg%3E"); }
.icon-card { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='8' width='24' height='17' rx='3'/%3E%3Cpath d='M4 13h24M9 20h5'/%3E%3C/svg%3E"); }
.icon-route { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3Ccircle cx='24' cy='24' r='3'/%3E%3Cpath d='M11 8h5a4 4 0 0 1 0 8h-1a4 4 0 0 0 0 8h6'/%3E%3C/svg%3E"); }
.icon-car { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 19h18l-2-6a4 4 0 0 0-4-3h-6a4 4 0 0 0-4 3l-2 6Z'/%3E%3Cpath d='M5 19v5h4v-3h14v3h4v-5'/%3E%3Ccircle cx='10' cy='19' r='1.5'/%3E%3Ccircle cx='22' cy='19' r='1.5'/%3E%3C/svg%3E"); }

.process-section {
  grid-column: 2;
  grid-row: 1;
  padding: 54px 58px 50px;
  background: #f9fbff;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}
.steps article {
  position: relative;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 12px;
}
.steps article::after {
  content: "";
  position: absolute;
  top: 86px;
  left: calc(50% + 34px);
  width: calc(100% - 68px);
  height: 1px;
  background: linear-gradient(90deg, #dbe6f5, transparent);
}
.steps article:last-child::after { display: none; }
.step-icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #edf5ff;
  color: var(--blue-600);
}
.step-icon::before { width: 42px; height: 42px; }
.steps b {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue-600);
  font-size: 11px;
}
.steps h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 850;
}
.steps p {
  margin: 0;
  max-width: 120px;
  color: #4e5b73;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 600;
}

.ride-section {
  grid-column: 2;
  grid-row: 2;
  padding: 34px 42px 24px;
  background: #fff;
}
.ride-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.ride-card {
  min-height: 276px;
  padding: 24px 24px 18px;
  border: 1px solid #dfe9f7;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-rows: auto 86px 1fr auto;
  gap: 16px;
  overflow: hidden;
}
.ride-card h3 {
  margin: 0;
  color: var(--blue-600);
  font-size: 22px;
  font-weight: 850;
}
.ride-card img {
  width: min(100%, 148px);
  height: 74px;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #f4f8ff, #e8f2ff);
  opacity: .94;
  justify-self: center;
}
.ride-card p {
  margin: 0;
  color: #344257;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}
.ride-card div {
  display: flex;
  gap: 20px;
  color: #324258;
  font-size: 11px;
  font-weight: 750;
}
.ride-card div span {
  position: relative;
  padding-left: 18px;
}
.ride-card div span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 12px;
  height: 12px;
  border: 1.6px solid #6d80a0;
  border-radius: 50%;
}

.driver-banner {
  grid-column: 2;
  grid-row: 3;
  margin: 0 42px 30px;
  min-height: 304px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 12px;
  overflow: hidden;
  border-radius: 20px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5,17,39,.98) 0%, rgba(6,26,60,.95) 48%, rgba(5,17,39,.86) 100%),
    url("assets/driver-banner-bg.svg") center / cover no-repeat;
  box-shadow: var(--shadow-deep);
}
.driver-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(380px 220px at 74% 36%, rgba(18,104,255,.24), transparent 70%);
  pointer-events: none;
}
.driver-copy {
  position: relative;
  z-index: 2;
  padding: 42px 42px;
}
.driver-copy h2 {
  margin: 0 0 22px;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 850;
}
.driver-copy ul {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.driver-copy li {
  color: rgba(255,255,255,.9);
  font-size: 15px;
  font-weight: 650;
}
.driver-copy li::before {
  content: "✓";
  margin-right: 10px;
  color: #51a4ff;
  font-weight: 900;
}
.driver-copy .btn { min-height: 52px; width: 230px; padding: 0 24px; }
.driver-visual {
  position: relative;
  min-height: 304px;
}
.driver-person {
  position: absolute;
  z-index: 1;
  right: 150px;
  bottom: 8px;
  width: 240px;
  height: 230px;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  opacity: .72;
  filter: saturate(1.08) contrast(1.05);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}
.wheel-bg {
  position: absolute;
  right: 90px;
  bottom: -30px;
  width: 260px;
  opacity: .16;
  filter: saturate(1.1);
}
.small-phone {
  position: absolute;
  right: 20px;
  top: 30px;
  width: 180px;
  z-index: 2;
}
.small-phone .phone-frame { transform: rotate(5deg); border-radius: 32px; padding: 8px; }
.small-phone .app-screen { border-radius: 25px; }
.small-phone .phone-notch { width: 62px; height: 18px; top: 14px; }
.driver-screen {
  padding: 44px 16px 14px;
  color: #11213e;
}
.driver-screen small {
  color: #657697;
  font-size: 10px;
  font-weight: 800;
}
.driver-screen strong {
  display: block;
  margin: 5px 0 12px;
  font-size: 24px;
  line-height: 1;
}
.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}
.mini-stats span {
  padding: 7px 4px;
  border-radius: 10px;
  background: #eef5ff;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}
.mini-stats small {
  color: #60718f;
  font-size: 7px;
}
.bars {
  height: 62px;
  display: flex;
  align-items: end;
  gap: 8px;
  padding: 8px 4px;
}
.bars i {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, #2b8bff, #0755e8);
}
.bars i:nth-child(1) { height: 30%; }
.bars i:nth-child(2) { height: 76%; }
.bars i:nth-child(3) { height: 48%; }
.bars i:nth-child(4) { height: 92%; }
.last-trip {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  padding: 9px;
  border-radius: 11px;
  background: #f4f8ff;
  font-size: 9px;
}

.regions-section {
  grid-column: 1;
  grid-row: 3;
  padding-top: 38px;
  padding-bottom: 44px;
}
.region-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.region-grid article {
  min-height: 122px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 18px 10px;
  border-radius: 14px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(7,27,56,0) 0%, rgba(7,20,42,.88) 100%),
    url("assets/mockup-crop-region-girne.png") center / cover no-repeat;
  box-shadow: 0 16px 30px rgba(9, 35, 83, .15);
}
.region-grid article::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 56%;
  background: linear-gradient(180deg, rgba(4, 16, 38, 0), rgba(3, 12, 29, .92));
  pointer-events: none;
}
.region-grid article:nth-child(2) {
  background-image:
    linear-gradient(180deg, rgba(7,27,56,0) 0%, rgba(7,20,42,.88) 100%),
    url("assets/mockup-crop-region-lefkosa.png");
}
.region-grid article:nth-child(3) {
  background-image:
    linear-gradient(180deg, rgba(7,27,56,0) 0%, rgba(7,20,42,.88) 100%),
    url("assets/mockup-crop-region-gazimagusa.png");
}
.region-grid article:nth-child(4) {
  background-image:
    linear-gradient(180deg, rgba(7,27,56,0) 0%, rgba(7,20,42,.88) 100%),
    url("assets/mockup-crop-region-iskele.png");
}
.region-grid article:nth-child(5) {
  background-image:
    linear-gradient(180deg, rgba(7,27,56,0) 0%, rgba(7,20,42,.88) 100%),
    url("assets/mockup-crop-region-ercan.png");
}
.region-grid span {
  position: relative;
  z-index: 1;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 850;
  text-shadow: 0 4px 14px rgba(0,0,0,.3);
  opacity: 1;
}

.download-card {
  grid-column: 2;
  grid-row: 4;
  margin: 0 42px 44px;
  min-height: 350px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 26px;
  align-items: center;
  padding: 44px 34px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f7fbff, #e8f2ff);
  box-shadow: 0 18px 44px rgba(9, 35, 83, .1);
}
.download-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: 420px;
  height: 300px;
  background: radial-gradient(circle at 50% 50%, rgba(18,104,255,.16), transparent 62%);
}
.download-copy {
  position: relative;
  z-index: 2;
  max-width: 390px;
  padding-right: 88px;
}
.download-copy h2 {
  margin: 0;
  max-width: 360px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 850;
}
.download-copy > p {
  margin: 18px 0 34px;
  max-width: 410px;
  color: #35445b;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 650;
}
.qr-row {
  display: grid;
  grid-template-columns: 104px 1fr;
  align-items: center;
  gap: 22px;
}
.qr {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  padding: 8px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(7,27,56,.12);
}
.qr img { width: 100%; height: 100%; }
.qr-row h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 850;
}
.qr-row p {
  margin: 0 0 12px;
  color: #52617a;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}
.download-phone {
  position: absolute;
  z-index: 1;
  right: 154px;
  bottom: 0;
  width: 150px;
  height: 286px;
  pointer-events: none;
}
.blue-phone {
  width: 154px;
  position: absolute;
  bottom: -86px;
  left: 0;
}
.blue-phone .phone-frame { transform: rotate(10deg); border-radius: 32px; padding: 8px; }
.blue-phone .app-screen { border-radius: 25px; }
.blue-phone .phone-notch { width: 62px; height: 18px; top: 14px; }
.logo-screen {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15,92,224,.3), rgba(4,18,43,.1)),
    radial-gradient(circle at 50% 20%, rgba(24,111,255,.36), transparent 44%),
    #082653;
}
.logo-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(30deg, transparent 48%, #fff 49%, transparent 50%),
    linear-gradient(150deg, transparent 48%, #fff 49%, transparent 50%);
  background-size: 44px 44px;
}
.logo-screen img { width: 68px; height: 68px; position: relative; }
.logo-screen strong {
  position: relative;
  font-size: 25px;
  letter-spacing: 3px;
}
.logo-screen small {
  position: relative;
  color: #a9c9ff;
  font-size: 8px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.download-badges {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 18px;
  grid-column: 2;
  justify-items: end;
}

.footer {
  grid-column: 1;
  grid-row: 4;
  min-height: 224px;
  padding: 40px 50px 28px;
  display: grid;
  grid-template-columns: 1.8fr repeat(4, 1fr);
  gap: 34px;
  color: #fff;
  background:
    radial-gradient(460px 240px at 30% 10%, rgba(18,104,255,.24), transparent 68%),
    linear-gradient(135deg, #071b38, #06152e);
}
.footer .brand span { font-size: 23px; }
.footer-brand p {
  margin: 20px 0;
  max-width: 300px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 600;
}
.socials {
  display: flex;
  gap: 10px;
}
.socials a {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  font-weight: 850;
}
.footer nav {
  display: grid;
  align-content: start;
  gap: 12px;
}
.footer h3 {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 850;
}
.footer nav a {
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 650;
}
.footer nav a:hover { color: #fff; }
.footer > small {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.54);
  font-size: 11px;
}

@media (max-width: 1320px) {
  .site-shell { grid-template-columns: 1fr; }
  .hero-panel,
  .why-section,
  .process-section,
  .ride-section,
  .driver-banner,
  .regions-section,
  .download-card,
  .footer {
    grid-column: 1;
    grid-row: auto;
  }
  .hero-panel { min-height: auto; }
  .hero-content { grid-template-columns: minmax(0, 1fr) 300px; padding-left: 58px; padding-right: 46px; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); row-gap: 28px; }
  .process-section { padding: 46px 44px; }
  .driver-banner, .download-card { margin-left: 44px; margin-right: 44px; }
  .footer { grid-template-columns: 1.4fr repeat(4, 1fr); }
}

@media (max-width: 980px) {
  .site-header {
    padding: 22px 24px 0;
    grid-template-columns: 1fr auto;
  }
  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding: 10px 0 4px;
    scrollbar-width: none;
  }
  .main-nav::-webkit-scrollbar { display: none; }
  .hero-content {
    grid-template-columns: 1fr;
    padding: 42px 24px 50px;
    gap: 34px;
  }
  .hero-copy h1 { font-size: clamp(36px, 9vw, 54px); }
  .hero-phone { justify-self: center; width: 280px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps article:nth-child(2)::after { display: none; }
  .ride-grid { grid-template-columns: 1fr; }
  .ride-card { min-height: 220px; grid-template-columns: 1fr 180px; grid-template-rows: auto 1fr auto; }
  .ride-card img { grid-column: 2; grid-row: 1 / 4; width: min(100%, 158px); height: 82px; align-self: center; }
  .driver-banner { grid-template-columns: 1fr; }
  .driver-visual { min-height: 230px; }
  .driver-person { right: 190px; bottom: 4px; width: 220px; height: 210px; opacity: .56; }
  .small-phone { right: 52px; top: 6px; }
  .wheel-bg { right: 190px; }
  .region-grid { grid-template-columns: repeat(2, 1fr); }
  .download-card {
    grid-template-columns: 1fr;
    padding-right: 30px;
  }
  .download-phone { display: none; }
  .download-badges { grid-template-columns: repeat(2, max-content); }
  .footer { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .site-shell { background: #fff; }
  body { overflow-x: hidden; }
  .hero-panel { border-radius: 0; }
  .brand span { font-size: 17px; }
  .brand img { width: 36px; height: 36px; }
  .site-header { gap: 16px; }
  .main-nav a { font-size: 12px; white-space: nowrap; }
  .lang-switch { font-size: 12px; }
  .hero-content {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 34px;
    overflow: hidden;
  }
  .hero-copy,
  .hero-actions,
  .store-row {
    min-width: 0;
    width: 100%;
    max-width: calc(100vw - 48px);
  }
  .body-copy {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .lead { margin-top: 24px; font-size: 17px; }
  .body-copy { font-size: 14px; }
  .hero-actions, .store-row { flex-direction: column; gap: 12px; }
  .btn { width: 100%; max-width: 100%; min-height: 50px; padding: 0 22px; }
  .store-badge { width: 100%; justify-content: center; }
  .hero-phone { width: 250px; }
  .section { padding: 34px 22px; }
  .section-head h2, .driver-copy h2, .download-copy h2 { font-size: 25px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card {
    min-height: 0;
    grid-template-columns: 46px 1fr;
    justify-items: start;
    text-align: left;
    column-gap: 14px;
  }
  .feature-card p { grid-column: 2; }
  .process-section { padding: 38px 22px; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .steps article::after { display: none; }
  .step-icon { width: 72px; height: 72px; }
  .ride-section { padding: 34px 22px; }
  .ride-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto 84px auto auto;
  }
  .ride-card img { grid-column: auto; grid-row: auto; height: 78px; }
  .driver-banner {
    margin: 0 18px 28px;
    border-radius: 18px;
  }
  .driver-copy { padding: 32px 24px; }
  .driver-copy .btn { width: 100%; }
  .driver-person { right: 128px; width: 210px; height: 210px; opacity: .42; }
  .small-phone { right: 26px; }
  .wheel-bg { right: 120px; width: 220px; }
  .regions-section { padding-left: 18px; padding-right: 18px; }
  .region-grid { grid-template-columns: 1fr; gap: 14px; }
  .region-grid article { min-height: 122px; }
  .download-card {
    margin: 0 18px 28px;
    padding: 32px 24px;
  }
  .qr-row { grid-template-columns: 1fr; }
  .qr { width: 128px; height: 128px; }
  .download-badges { grid-template-columns: 1fr; }
  .download-badges .store-badge { width: 100%; }
  .footer {
    padding: 34px 24px 24px;
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy, .phone, .feature-card, .ride-card, .driver-banner, .download-card {
    animation: rise .6s ease both;
  }
  .phone { animation-delay: .08s; }
  .feature-card:nth-child(2), .ride-card:nth-child(2) { animation-delay: .05s; }
  .feature-card:nth-child(3), .ride-card:nth-child(3) { animation-delay: .1s; }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
