:root {
  --ink: #091b2a;
  --ink-2: #163246;
  --blue: #0d7ea5;
  --aqua: #28c4b3;
  --coral: #ff6b4a;
  --yellow: #ffc857;
  --paper: #f4f7f8;
  --white: #ffffff;
  --muted: #687b88;
  --line: #dce5e9;
  --green: #138a72;
  --shadow: 0 22px 65px rgba(9, 27, 42, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
}
button, input, select, textarea { font: inherit; }
button { color: inherit; }
button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(40, 196, 179, .28);
  outline-offset: 2px;
}

.shell { min-height: 100vh; }
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 76px;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(244, 247, 248, .9);
  border-bottom: 1px solid rgba(220, 229, 233, .85);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  font: 800 22px/1 "Manrope", sans-serif;
  cursor: pointer;
}
.brand > span:last-child > span { color: var(--blue); }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 15px 15px 15px 5px;
  background: linear-gradient(145deg, var(--blue), var(--aqua));
  box-shadow: 0 10px 25px rgba(13, 126, 165, .24);
}
.nav {
  padding: 4px;
  display: flex;
  gap: 3px;
  background: #e7edef;
  border-radius: 999px;
}
.nav button {
  padding: 9px 15px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}
.nav button.active { background: white; box-shadow: 0 3px 12px rgba(9,27,42,.08); }
.head-actions { display: flex; align-items: center; gap: 8px; }
.currency, .wallet-btn, .verify-btn {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
}
.currency select { border: 0; outline: 0; background: transparent; font-weight: 800; }
.wallet-btn { cursor: pointer; }
.wallet-btn b { padding-left: 8px; color: var(--green); border-left: 1px solid var(--line); }
.verify-btn { cursor: pointer; color: #9a541f; font-weight: 800; }
.verify-btn.done { color: var(--green); background: #e7f6f1; }
.mobile-nav { display: none; }

main { padding-bottom: 80px; }
.hero {
  position: relative;
  width: min(1240px, calc(100% - 40px));
  min-height: 525px;
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  overflow: visible;
  color: white;
  border-radius: 34px;
  background:
    radial-gradient(circle at 78% 30%, rgba(40,196,179,.26), transparent 28%),
    linear-gradient(130deg, #091b2a 0%, #10364c 58%, #0d7193 100%);
  box-shadow: var(--shadow);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .35;
  border-radius: inherit;
  background-image: radial-gradient(rgba(255,255,255,.22) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, transparent 5%, black 65%);
}
.hero-copy { position: relative; z-index: 2; padding: 67px 58px 120px; }
.eyebrow {
  margin: 0 0 12px;
  color: #8fe7dc;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 12px;
  font-weight: 800;
}
.eyebrow.dark { color: var(--blue); }
.hero h1 {
  max-width: 720px;
  margin: 0;
  font: 800 clamp(42px, 5.3vw, 70px)/.99 "Manrope", sans-serif;
  letter-spacing: -.052em;
}
.hero h1 span { color: var(--yellow); }
.hero-text { max-width: 580px; margin: 24px 0; color: #d2e3ea; font-size: 19px; line-height: 1.55; }
.trust { display: flex; flex-wrap: wrap; gap: 18px; color: #b5d1dc; font-size: 13px; font-weight: 700; }
.trust span { display: flex; align-items: center; gap: 7px; }
.hero-art { position: relative; min-height: 430px; }
.globe {
  position: absolute;
  width: 360px;
  height: 360px;
  right: 42px;
  top: 48px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 28% 32%, rgba(255,255,255,.22) 0 9%, transparent 10%),
    radial-gradient(ellipse at 64% 55%, rgba(255,255,255,.18) 0 14%, transparent 15%),
    radial-gradient(circle at 45% 40%, #23b7b1, #116684 67%, #0b334c 100%);
  box-shadow: inset -35px -18px 60px rgba(2,17,29,.45), 0 34px 80px rgba(0,0,0,.3);
}
.globe::before, .globe::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 50%;
}
.globe::after { inset: 0 31%; }
.route { position: absolute; z-index: 2; border: 2px dashed rgba(255,200,87,.8); border-radius: 50%; transform: rotate(-22deg); }
.route-one { width: 220px; height: 90px; left: 40px; top: 100px; }
.route-two { width: 180px; height: 160px; left: 130px; top: 160px; }
.map-dot { position: absolute; z-index: 3; width: 12px; height: 12px; border: 3px solid white; background: var(--coral); border-radius: 50%; box-shadow: 0 0 0 7px rgba(255,107,74,.18); }
.dot-one { left: 65px; top: 118px; }.dot-two { right: 58px; top: 150px; }.dot-three { left: 155px; bottom: 55px; }
.ride {
  position: absolute;
  z-index: 3;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  font-size: 48px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 23px;
  background: rgba(255,255,255,.18);
  box-shadow: 0 18px 35px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
}
.ride.car { right: 46px; top: 66px; transform: rotate(7deg); }
.ride.moto { left: 18px; bottom: 78px; transform: rotate(-7deg); }
.ride.house { right: 150px; bottom: 28px; transform: rotate(4deg); }
.hero-note {
  position: absolute;
  right: 65px;
  bottom: 44px;
  z-index: 4;
  padding: 13px 18px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 15px;
  background: rgba(6,28,43,.72);
  backdrop-filter: blur(12px);
}
.hero-note b { color: var(--yellow); font: 800 18px "Manrope"; }
.hero-note span { margin-top: 2px; color: #c5d9e0; font-size: 12px; }
.search-card {
  position: absolute;
  z-index: 6;
  left: 42px;
  right: 42px;
  bottom: -37px;
  min-height: 94px;
  padding: 13px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  align-items: stretch;
  gap: 2px;
  color: var(--ink);
  border-radius: 22px;
  background: white;
  box-shadow: 0 22px 50px rgba(9,27,42,.2);
}
.search-card > label { padding: 10px 17px; border-right: 1px solid var(--line); }
.search-card > label > span { display: block; margin-bottom: 8px; color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.search-card label div { display: flex; align-items: center; gap: 8px; }
.search-card input { width: 100%; min-width: 0; border: 0; outline: 0; color: var(--ink); background: transparent; font-weight: 700; }
.search-card > button {
  min-width: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 15px;
  color: white;
  background: var(--coral);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(255,107,74,.25);
}

.section, .dashboard { width: min(1240px, calc(100% - 40px)); margin: 100px auto 0; }
.section-head, .dash-head, .panel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.section h2, .dash-head h1, .panel h2, .refer-banner h2 {
  margin: 0;
  font: 800 clamp(28px, 3.5vw, 40px)/1.08 "Manrope", sans-serif;
  letter-spacing: -.035em;
}
.section-head p, .dash-head p { margin: 8px 0 0; color: var(--muted); }
.inline-search {
  width: min(350px, 100%);
  height: 48px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}
.inline-search input { width: 100%; border: 0; outline: 0; background: transparent; }
.filters { margin: 22px 0 18px; display: flex; gap: 9px; }
.filters button {
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  font-weight: 800;
  cursor: pointer;
}
.filters button.active { color: white; border-color: var(--ink); background: var(--ink); }
.vehicle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 19px; }
.vehicle-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  transition: transform .2s ease, box-shadow .2s ease;
}
.vehicle-card:hover { transform: translateY(-5px); box-shadow: 0 18px 45px rgba(9,27,42,.12); }
.vehicle-cover {
  position: relative;
  height: 235px;
  padding: 16px;
  background-color: var(--accent);
  background-position: center;
  background-size: cover;
}
.type-tag, .verified {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}
.verified { margin-left: 5px; color: var(--green); }
.heart {
  position: absolute;
  right: 15px;
  top: 14px;
  z-index: 2;
  width: 37px;
  height: 37px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  font-size: 24px;
  cursor: pointer;
}
.cover-place { position: absolute; left: 17px; bottom: 15px; display: flex; align-items: center; gap: 6px; color: white; font-size: 13px; font-weight: 700; }
.vehicle-body { padding: 18px; }
.title-row { display: flex; justify-content: space-between; gap: 12px; }
.title-row h3 { margin: 0 0 3px; font: 800 19px/1.2 "Manrope"; }
.title-row span { color: var(--muted); font-size: 13px; }
.title-row > b { color: #7a5a00; font-size: 13px; white-space: nowrap; }
.specs { margin: 16px 0; display: flex; flex-wrap: wrap; gap: 7px; }
.specs span { padding: 6px 8px; color: #536773; border-radius: 8px; background: #eef3f5; font-size: 11px; font-weight: 700; }
.price-row { padding-top: 15px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); }
.price-row strong { display: block; font: 800 19px "Manrope"; }
.price-row span { color: var(--muted); font-size: 12px; }
.price-row button, .primary, .secondary, .refer-code button, .owner-cta button, .wallet-card button {
  min-height: 43px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 12px;
  color: white;
  background: var(--blue);
  font-weight: 800;
  cursor: pointer;
}
.primary { min-height: 48px; background: var(--coral); box-shadow: 0 10px 22px rgba(255,107,74,.2); }
.secondary { color: var(--ink); border: 1px solid var(--line); background: white; box-shadow: none; }
.full { width: 100%; }
.empty { grid-column: 1/-1; padding: 60px; display: flex; flex-direction: column; gap: 7px; align-items: center; color: var(--muted); border: 1px dashed #b9c8ce; border-radius: 20px; }

.refer-banner {
  width: min(1240px, calc(100% - 40px));
  min-height: 285px;
  margin: 70px auto 0;
  padding: 34px;
  display: grid;
  grid-template-columns: 245px 1fr 235px;
  align-items: center;
  gap: 34px;
  overflow: hidden;
  color: white;
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,200,87,.25), transparent 25%),
    linear-gradient(130deg, #11273a, #133f55 65%, #0e7893);
}
.refer-visual {
  width: 210px;
  height: 210px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  box-shadow: inset 0 0 45px rgba(40,196,179,.16);
}
.refer-visual > span { color: var(--yellow); font-size: 28px; }
.refer-visual b { margin: 7px 0; font: 800 34px "Manrope"; }
.refer-visual small { color: #bbd6de; }
.refer-copy p:last-child { max-width: 560px; margin: 13px 0 0; color: #c5dae2; line-height: 1.6; }
.refer-code {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
  border: 1px solid rgba(255,255,255,.21);
  border-radius: 18px;
  background: rgba(7,29,43,.48);
}
.refer-code small { grid-column: 1/-1; color: #aec9d2; }
.refer-code strong { font: 800 24px "Manrope"; letter-spacing: .12em; align-self: center; }
.refer-code button { min-height: 40px; background: var(--coral); }
.refer-code .light-btn { grid-column: 1/-1; color: white; border: 1px solid rgba(255,255,255,.2); background: transparent; }
.steps { width: min(1050px, calc(100% - 40px)); margin: 55px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.steps div { position: relative; padding-left: 58px; }
.steps span { position: absolute; left: 0; top: 0; color: var(--blue); font: 800 22px "Manrope"; }
.steps h3 { margin: 0 0 6px; font: 800 18px "Manrope"; }
.steps p { margin: 0; color: var(--muted); line-height: 1.5; }

.dashboard { margin-top: 52px; }
.dash-head { align-items: center; }
.dash-head > div { max-width: 750px; }
.dash-head h1 { font-size: clamp(32px, 4vw, 48px); }
.metrics { margin: 30px 0 20px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.metrics article {
  padding: 21px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: white;
}
.metrics span { color: var(--muted); font-size: 12px; font-weight: 700; }
.metrics strong { margin: 8px 0 5px; font: 800 27px "Manrope"; }
.metrics small { color: var(--muted); }
.metrics small.up { color: var(--green); }
.owner-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 18px; }
.panel { padding: 24px; border: 1px solid var(--line); border-radius: 22px; background: white; }
.panel-head { align-items: center; margin-bottom: 17px; }
.panel-head h2 { font-size: 24px; }
.panel-head > span { color: var(--muted); font-size: 13px; }
.mini-vehicle {
  padding: 13px 0;
  display: grid;
  grid-template-columns: 54px 1fr auto 64px auto;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
}
.mini-photo { width: 54px; height: 48px; display: grid; place-items: center; border-radius: 12px; background: #e8f3f5; font-size: 28px; }
.mini-vehicle > div:nth-child(2), .booking-row > div, .activity > div { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.mini-vehicle b, .booking-row b, .activity b { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-vehicle span, .booking-row span, .activity small { color: var(--muted); font-size: 12px; }
.mini-vehicle button, .table-row button { border: 0; background: transparent; color: var(--blue); font-weight: 800; cursor: pointer; }
.mini-stat { text-align: center; }
.mini-stat b { font-size: 18px; }
.badge { width: fit-content; padding: 6px 8px; color: #60727e; border-radius: 999px; background: #eef2f4; font-size: 10px; font-weight: 800; white-space: nowrap; }
.badge.ok { color: #0c715d; background: #dcf5ed; }
.badge.warn { color: #956411; background: #fff0cf; }
.booking-row { padding: 15px 0; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 10px; border-top: 1px solid var(--line); }
.avatar { width: 42px; height: 42px; display: grid; place-items: center; color: white!important; border-radius: 12px; background: var(--blue); font-weight: 800; }
.avatar.purple { background: #6858a0; }.avatar.orange { background: #c5633e; }
.owner-cta { margin-top: 18px; padding: 23px 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: white; border-radius: 21px; background: var(--ink); }
.owner-cta > div { display: flex; align-items: center; gap: 16px; }
.cta-icon { width: 50px; height: 50px; display: grid; place-items: center; flex: 0 0 auto; color: var(--yellow); border-radius: 15px; background: rgba(255,255,255,.1); }
.owner-cta h2 { margin: 0 0 4px; font: 800 20px "Manrope"; }.owner-cta p { margin: 0; color: #b8cdd6; }
.owner-cta button { color: var(--ink); background: var(--yellow); }

.admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.config .panel-head { padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.setting { padding: 17px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); }
.setting > div:first-child { display: flex; flex-direction: column; gap: 4px; }
.setting > div:first-child span { max-width: 390px; color: var(--muted); font-size: 12px; line-height: 1.4; }
.setting-input { width: 120px; height: 43px; padding: 0 10px; display: flex; align-items: center; border: 1px solid var(--line); border-radius: 11px; }
.setting-input input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; font-weight: 800; }
.setting-input span { color: var(--muted); font-size: 12px; }
.notice { margin-top: 17px; padding: 13px; display: flex; align-items: flex-start; gap: 9px; color: #536976; border-radius: 12px; background: #eef5f7; font-size: 12px; line-height: 1.5; }
.notice svg { flex: 0 0 auto; color: var(--blue); }
.countries { margin-top: 18px; }
.payments-admin, .identity-admin { margin-top: 18px; }
.payments-admin .panel-head p, .identity-admin .panel-head p { margin: 6px 0 0; color: var(--muted); font-size: 13px; }
.payment-country-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.payment-country { padding: 16px; border: 1px solid var(--line); border-radius: 17px; background: #f8fafb; }
.payment-country-head { margin-bottom: 13px; display: flex; justify-content: space-between; gap: 10px; font-size: 15px; }
.payment-country-head span { color: var(--blue); font-size: 12px; font-weight: 800; }
.payment-country > label { margin-top: 9px; display: flex; flex-direction: column; gap: 5px; color: var(--muted); font-size: 11px; font-weight: 800; }
.payment-country input:not([type="file"]), .payment-country textarea { min-height: 40px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 10px; background: white; font: inherit; }
.payment-country textarea { min-height: 76px; resize: vertical; }
.qr-upload { padding: 12px; align-items: center; text-align: center; border: 1px dashed #a8c9d4; border-radius: 12px; cursor: pointer; }
.qr-upload input { display: none; }.qr-upload img { width: 78px; height: 78px; object-fit: contain; border-radius: 8px; background: white; }
.qr-placeholder { width: 112px; height: 112px; display: grid; place-items: center; color: var(--ink); border: 9px dotted var(--ink); background: repeating-conic-gradient(#fff 0 25%, #091b2a 0 50%) 0 0/18px 18px; font: 900 18px "Manrope"; text-shadow: 0 0 4px white; }
.qr-placeholder.small { width: 70px; height: 70px; border-width: 6px; background-size: 12px 12px; font-size: 13px; }
.method-placeholder { width: 70px; height: 70px; display: grid; place-items: center; flex: 0 0 auto; color: var(--blue); border-radius: 12px; background: #e7f4f7; font: 900 25px "Manrope"; }
.method-placeholder.large { width: 112px; height: 112px; font-size: 28px; }
.requirements { margin-bottom: 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.requirements span { padding: 8px 10px; display: flex; align-items: center; gap: 5px; color: var(--green); border-radius: 999px; background: #e7f6f1; font-size: 12px; font-weight: 800; }
.review-row { padding: 13px 0; display: grid; grid-template-columns: 42px 1fr auto auto; gap: 11px; align-items: center; border-top: 1px solid var(--line); }
.review-row > div { display: flex; flex-direction: column; gap: 3px; }.review-row > div span { color: var(--muted); font-size: 12px; }
.mini-review { padding: 8px 10px; color: var(--blue); border: 0; border-radius: 9px; background: #e7f4f7; font-weight: 800; cursor: pointer; }
.country-table { overflow-x: auto; }
.table-head, .table-row { min-width: 720px; padding: 13px 8px; display: grid; grid-template-columns: 1.5fr .7fr .6fr .7fr .7fr; align-items: center; gap: 15px; }
.table-head { color: var(--muted); border-bottom: 1px solid var(--line); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.table-row { border-bottom: 1px solid var(--line); font-size: 13px; }

.overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  justify-content: flex-end;
  background: rgba(3, 15, 24, .6);
  backdrop-filter: blur(5px);
}
.drawer {
  width: min(480px, 100%);
  height: 100%;
  padding: 27px;
  overflow-y: auto;
  background: #fbfcfc;
  box-shadow: -30px 0 70px rgba(0,0,0,.18);
  animation: slideIn .25s ease;
}
.drawer.wide { width: min(620px, 100%); }
@keyframes slideIn { from { transform: translateX(35px); opacity: .5; } }
.drawer-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; }
.drawer-head h2 { margin: 0; font: 800 28px "Manrope"; }
.close { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 13px; background: white; cursor: pointer; }
.progress { margin: 23px 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.progress span { display: flex; align-items: center; gap: 6px; color: #91a0a8; font-size: 11px; font-weight: 800; }
.progress span::after { content: ""; height: 2px; flex: 1; background: #dce4e7; }
.progress span:last-child::after { display: none; }
.progress b { width: 23px; height: 23px; display: grid; place-items: center; color: #7d8d95; border-radius: 50%; background: #e5ebed; }
.progress span.active { color: var(--blue); }.progress span.active b { color: white; background: var(--blue); }
.booking-vehicle { margin-bottom: 20px; padding: 11px; display: flex; align-items: center; gap: 13px; border: 1px solid var(--line); border-radius: 17px; background: white; }
.booking-vehicle img { width: 128px; height: 86px; object-fit: cover; border-radius: 12px; }
.booking-vehicle span { color: var(--blue); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.booking-vehicle h3 { margin: 4px 0; font: 800 19px "Manrope"; }.booking-vehicle p { margin: 0; color: var(--muted); font-size: 12px; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form label { display: flex; flex-direction: column; gap: 7px; color: #51636e; font-size: 12px; font-weight: 800; }
.form .full-row { grid-column: 1/-1; }
.form input, .form select, .form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  background: white;
}
.form textarea { resize: vertical; }
.drawer-title { margin: 20px 0 14px; font: 800 19px "Manrope"; }
.protection { margin: 10px 0; padding: 15px; display: grid; grid-template-columns: auto auto 1fr auto; gap: 11px; align-items: start; border: 1px solid var(--line); border-radius: 15px; background: white; cursor: pointer; }
.protection.selected { border: 2px solid var(--blue); background: #f2fafc; }
.protection > span { color: var(--blue); }.protection p { margin: 4px 0 0; color: var(--muted); font-size: 12px; line-height: 1.4; }
.accept { margin: 18px 0; display: flex; align-items: flex-start; gap: 9px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.accept input { margin-top: 3px; accent-color: var(--blue); }
.summary { margin: 20px 0; padding: 15px; border-radius: 14px; background: white; border: 1px solid var(--line); }
.summary div { padding: 7px 0; display: flex; justify-content: space-between; gap: 15px; color: var(--muted); font-size: 12px; }
.summary b { color: var(--ink); text-align: right; }
.summary .total { margin-top: 6px; padding-top: 13px; border-top: 1px solid var(--line); font-size: 15px; }
.drawer-foot { margin-top: 22px; }
.drawer-foot .summary { margin-bottom: 12px; }
.success { padding: 35px 18px; text-align: center; }
.success > span { width: 72px; height: 72px; margin: auto; display: grid; place-items: center; color: white; border-radius: 50%; background: var(--green); }
.success h2 { margin: 18px 0 7px; font: 800 28px "Manrope"; }.success p { margin: 0 auto 17px; max-width: 390px; color: var(--muted); }
.success strong { padding: 9px 15px; display: inline-block; color: var(--blue); border-radius: 999px; background: #e4f3f7; letter-spacing: .08em; }

.wallet-card { margin: 25px 0 14px; padding: 25px; color: white; border-radius: 22px; background: linear-gradient(140deg, var(--ink), #0b6f8d); }
.wallet-card span { color: #bdd4dd; font-size: 12px; }.wallet-card strong { margin: 8px 0 2px; display: block; font: 800 38px "Manrope"; }
.wallet-card p { margin: 0 0 18px; color: #bdd4dd; font-size: 13px; }.wallet-card button { color: var(--ink); background: var(--yellow); }
.wallet-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.wallet-stats div { padding: 13px; display: flex; flex-direction: column; gap: 5px; border: 1px solid var(--line); border-radius: 13px; background: white; }
.wallet-stats span { color: var(--muted); font-size: 10px; }.wallet-stats b { font: 800 17px "Manrope"; }
.refer-mini { margin: 14px 0 25px; padding: 14px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; border-radius: 14px; background: #fff4d8; }
.refer-mini > span { width: 41px; height: 41px; display: grid; place-items: center; color: #8d6410; border-radius: 12px; background: #ffe29a; }
.refer-mini div { display: flex; flex-direction: column; }.refer-mini small { color: #836e3d; }.refer-mini b { letter-spacing: .1em; }
.refer-mini button { padding: 8px 10px; display: flex; align-items: center; gap: 5px; border: 0; border-radius: 9px; background: white; font-weight: 800; cursor: pointer; }
.activity-title { margin: 0 0 8px; font: 800 18px "Manrope"; }
.activity { padding: 14px 0; display: grid; grid-template-columns: 34px 1fr auto; gap: 10px; align-items: center; border-bottom: 1px solid var(--line); }
.activity > span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; font-weight: 900; }
.activity .plus { color: var(--green); background: #dcf4ed; }.activity .minus { color: #a5503b; background: #ffebe6; }
.activity > strong { color: var(--green); font-size: 13px; }
.publish-form { margin-top: 22px; }
.upload { margin: 17px 0; padding: 25px; display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--blue); border: 2px dashed #a8c9d4; border-radius: 16px; background: #f0f8fa; cursor: pointer; }
.upload input { display: none; }.upload b { color: var(--ink); }.upload small { color: var(--muted); text-align: center; }
.previews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.previews img { width: 100%; height: 88px; object-fit: cover; border-radius: 10px; }
.drawer-intro { color: var(--muted); line-height: 1.55; }
.document-grid { margin: 15px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.document-upload { min-height: 92px; padding: 11px; display: flex; align-items: center; gap: 10px; border: 1px dashed #a8c9d4; border-radius: 13px; background: #f0f8fa; cursor: pointer; }
.document-upload input { display: none; }.document-upload > span { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; color: var(--blue); border-radius: 10px; background: white; }
.document-upload img { width: 48px; height: 48px; object-fit: cover; border-radius: 9px; }
.document-upload div { display: flex; flex-direction: column; gap: 3px; }.document-upload b { font-size: 12px; }.document-upload small { color: var(--muted); font-size: 10px; line-height: 1.3; }
.direct-payment { padding: 15px; display: flex; align-items: center; gap: 15px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.direct-payment > div:last-child { display: flex; flex-direction: column; gap: 4px; }.direct-payment p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.4; }.direct-payment span { color: var(--blue); font-size: 11px; font-weight: 700; }
.platform-payment { margin-bottom: 10px; }.admin-qr { width: 112px; height: 112px; object-fit: contain; border-radius: 10px; }
.compact-upload { padding: 15px; flex-direction: row; justify-content: center; gap: 9px; }
.proof-preview { width: 48px; height: 48px; object-fit: cover; border-radius: 9px; }.owner-qr-preview { width: 78px; height: 78px; object-fit: contain; border-radius: 9px; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 25px;
  z-index: 100;
  padding: 12px 18px;
  color: white;
  border-radius: 12px;
  background: var(--ink);
  box-shadow: var(--shadow);
  transform: translate(-50%, 25px);
  opacity: 0;
  pointer-events: none;
  transition: .22s ease;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

@media (max-width: 1050px) {
  .nav { display: none; }
  .hero { grid-template-columns: 1fr .75fr; }
  .hero-copy { padding-left: 42px; }
  .globe { width: 290px; height: 290px; right: 20px; top: 75px; }
  .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
  .refer-banner { grid-template-columns: 190px 1fr; }
  .refer-visual { width: 175px; height: 175px; }
  .refer-code { grid-column: 1/-1; grid-template-columns: 1fr auto auto; }
  .refer-code small { grid-column: auto; align-self: center; }
  .refer-code .light-btn { grid-column: auto; }
  .owner-grid { grid-template-columns: 1fr; }
  .admin-grid { grid-template-columns: 1fr; }
  .payment-country-grid { grid-template-columns: 1fr 1fr; }
  .verify-btn span { display: none; }
}

@media (max-width: 760px) {
  .header { height: 67px; padding: 0 16px; }
  .brand { font-size: 19px; }.brand-mark { width: 38px; height: 38px; }
  .currency { display: none; }.wallet-btn span, .wallet-btn b { display: none; }.wallet-btn { width: 42px; padding: 0; justify-content: center; }
  .verify-btn { width: 42px; padding: 0; justify-content: center; }
  .mobile-nav {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 9px;
    z-index: 40;
    height: 62px;
    padding: 6px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: 19px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 12px 35px rgba(9,27,42,.18);
    backdrop-filter: blur(15px);
  }
  .mobile-nav button { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; color: #71818a; border: 0; border-radius: 12px; background: transparent; font-size: 10px; font-weight: 800; }
  .mobile-nav button.active { color: var(--blue); background: #e7f4f7; }
  main { padding-bottom: 90px; }
  .hero { width: calc(100% - 24px); min-height: 650px; margin-top: 12px; grid-template-columns: 1fr; border-radius: 25px; }
  .hero-copy { padding: 38px 25px 0; }
  .hero h1 { font-size: 41px; }
  .hero-text { font-size: 16px; }
  .trust { gap: 9px; }
  .hero-art { min-height: 245px; }
  .globe { width: 220px; height: 220px; top: 8px; right: 22px; }
  .ride { width: 57px; height: 57px; font-size: 33px; border-radius: 17px; }
  .ride.car { right: 25px; top: 20px; }.ride.moto { left: 24px; bottom: 30px; }.ride.house { right: 100px; bottom: 8px; }
  .hero-note { right: 24px; bottom: 18px; }
  .search-card {
    left: 12px;
    right: 12px;
    bottom: -123px;
    grid-template-columns: 1fr 1fr;
    border-radius: 18px;
  }
  .search-card > label { padding: 7px 9px; }
  .search-card > label:first-child { grid-column: 1/-1; border-bottom: 1px solid var(--line); }
  .search-card > label:nth-child(3) { border-right: 0; }
  .search-card > button { grid-column: 1/-1; min-height: 47px; }
  .section, .dashboard { width: calc(100% - 24px); }
  .section { margin-top: 165px; }
  .section-head, .dash-head { align-items: flex-start; flex-direction: column; }
  .inline-search { width: 100%; }
  .vehicle-grid { grid-template-columns: 1fr; }
  .vehicle-cover { height: 230px; }
  .refer-banner { width: calc(100% - 24px); margin-top: 45px; padding: 25px; grid-template-columns: 1fr; gap: 20px; }
  .refer-visual { width: 155px; height: 155px; }
  .refer-code { grid-template-columns: 1fr auto; }.refer-code small { grid-column: 1/-1; }.refer-code .light-btn { grid-column: 1/-1; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .dashboard { margin-top: 30px; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .mini-vehicle { grid-template-columns: 48px 1fr auto; }
  .mini-vehicle .mini-stat, .mini-vehicle > button { display: none; }
  .owner-cta { align-items: stretch; flex-direction: column; }
  .owner-cta > div { align-items: flex-start; }
  .admin-metrics { grid-template-columns: 1fr 1fr; }
  .payment-country-grid { grid-template-columns: 1fr; }
  .review-row { grid-template-columns: 40px 1fr; }.review-row .badge, .review-row .mini-review { grid-column: 2; }
  .setting { align-items: flex-start; flex-direction: column; }.setting-input { width: 100%; }
  .drawer { padding: 20px; }
  .wallet-stats { grid-template-columns: 1fr; }
  .toast { bottom: 86px; width: max-content; max-width: calc(100% - 30px); text-align: center; }
}

@media (max-width: 450px) {
  .hero h1 { font-size: 36px; }
  .hero { min-height: 665px; }
  .globe { right: 5px; }
  .metrics, .admin-metrics { grid-template-columns: 1fr; }
  .panel { padding: 18px; }
  .booking-row { grid-template-columns: 40px 1fr; }.booking-row .badge { grid-column: 2; }
  .form { grid-template-columns: 1fr; }.form label, .form .full-row { grid-column: 1; }
  .booking-vehicle img { width: 105px; }
  .protection { grid-template-columns: auto auto 1fr; }.protection > strong { grid-column: 3; }
  .document-grid { grid-template-columns: 1fr; }
  .direct-payment { align-items: flex-start; flex-direction: column; }
}
