:root {
  color-scheme: light;
  --black: #050506;
  --ink: #121212;
  --white: #ffffff;
  --muted: #666666;
  --soft: #f6f6f5;
  --line: #dedede;
  --green: #16a34a;
  --danger: #b91c1c;
  --shadow: 0 30px 80px rgba(0,0,0,.13);
  --font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--white); }
body {
  margin: 0;
  min-height: 100svh;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-main);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
svg { display: block; max-width: 100%; }

.container {
  width: min(100% - clamp(22px,3vw,52px), 1120px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 100;
  width: min(100% - clamp(22px,3vw,52px), 1120px);
  margin: 16px auto 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 6px 8px 6px 10px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px) saturate(1.1);
  box-shadow: 0 18px 48px rgba(0,0,0,.10);
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 2px solid var(--black);
  color: var(--black);
  background: var(--white);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.brand strong {
  display: block;
  font-size: 13px;
  line-height: .85;
  letter-spacing: .18em;
  font-weight: 950;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: #111;
  font-size: 8px;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 950;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px,2.5vw,42px);
  color: #111;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 950;
}

.main-nav a {
  opacity: .76;
  position: relative;
  transition: opacity .18s ease;
}

.main-nav a:hover,
.main-nav a.active { opacity: 1; }

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: var(--black);
}

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

.btn {
  min-height: 34px;
  border: 1px solid rgba(0,0,0,.16);
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 17px;
  background: var(--white);
  color: var(--black);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 950;
  transition: transform .18s ease, opacity .18s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:disabled { cursor: not-allowed; opacity: .58; transform: none; }
.btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-white { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-block { width: 100%; }

.one-frame-section {
  padding: 42px 0 74px;
  background: var(--white);
}

.one-frame {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: var(--shadow);
}

.one-frame-top {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: stretch;
}

.frame-intro {
  background:
    radial-gradient(circle at 82% 14%, rgba(255,255,255,.11), transparent 18rem),
    linear-gradient(135deg, #070708 0%, #15161a 62%, #050506 100%);
  color: var(--white);
  padding: 50px 48px;
  position: relative;
  overflow: hidden;
}

.frame-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.frame-intro > * { position: relative; z-index: 2; }

.ongo-private-pulse {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  white-space: nowrap;
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 950;
}

.ongo-pulse-dot,
.live-dot {
  width: 11px;
  height: 11px;
  min-width: 11px;
  min-height: 11px;
  border-radius: 999px;
  background: var(--green);
  display: inline-block;
  position: relative;
  box-shadow:
    0 0 0 3px rgba(22,163,74,.18),
    0 0 12px rgba(22,163,74,.78);
  animation: livePulse 1.65s ease-out infinite;
}

.ongo-pulse-dot::before,
.ongo-pulse-dot::after,
.live-dot::before,
.live-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 1px solid rgba(22,163,74,.52);
  animation: ongoGreenPulseRing 1.65s ease-out infinite;
}

.ongo-pulse-dot::after,
.live-dot::after {
  inset: -11px;
  border-color: rgba(22,163,74,.26);
  animation-delay: .32s;
}

@keyframes livePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.13); }
}

@keyframes ongoGreenPulseRing {
  0% { transform: scale(.62); opacity: .9; }
  72% { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(2); opacity: 0; }
}

.frame-intro h1 {
  margin: 22px 0 18px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px,4.65vw,66px);
  line-height: .91;
  letter-spacing: 0;
  color: var(--white);
}

.hero-lead {
  max-width: 390px;
  color: #e5e5e5;
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin-top: 32px;
}

.hero-stat {
  min-height: 96px;
  border-radius: 12px;
  padding: 14px 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
}

.hero-stat strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  line-height: 1.1;
}

.hero-stat span {
  display: block;
  margin-top: 6px;
  color: var(--white);
  opacity: .76;
  font-size: 11px;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-actions .btn {
  min-height: 32px;
  padding-inline: 16px;
}

.clear-button { border-color: rgba(255,255,255,.84); }

.frame-booking {
  background: var(--white);
  color: var(--black);
  padding: 34px 34px 32px;
  border-left: 1px solid rgba(0,0,0,.10);
}

.booking-title {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  margin-bottom: 15px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,.10);
}

.booking-title h2 {
  color: var(--black);
  margin: 0 0 7px;
  font-family: var(--font-display);
  font-size: clamp(36px,3.2vw,48px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 500;
}

.booking-title p {
  color: var(--muted);
  margin: 0;
  max-width: 470px;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 650;
}

.live-pill {
  min-height: 27px;
  border-radius: 999px;
  padding: 0 12px;
  background: var(--black);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 950;
  overflow: hidden;
}

.live-pill .live-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
}

.vehicle-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.vehicle-tab {
  min-height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  background: var(--white);
  color: var(--black);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 950;
  box-shadow: 0 4px 14px rgba(0,0,0,.04);
}

.vehicle-tab.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px 12px;
}

.field { display: grid; gap: 6px; }
.field.full, .full { grid-column: 1 / -1; }

.field label,
.modal-card label {
  color: var(--black);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-weight: 950;
}

.input-wrap input,
.input-wrap textarea,
.modal-card input {
  width: 100%;
  min-height: 41px;
  border: 1px solid #d4d4d4;
  border-radius: 10px;
  background: var(--white);
  color: var(--black);
  padding: 10px 13px;
  outline: 0;
  font-size: 13px;
  font-weight: 650;
}

.input-wrap textarea {
  min-height: 78px;
  resize: vertical;
}

.input-wrap input:focus,
.input-wrap textarea:focus,
.modal-card input:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 4px rgba(0,0,0,.055);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.summary-bar {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 8px;
  margin-top: 2px;
}

.summary-item {
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  background: var(--white);
}

.summary-item span {
  display: block;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 950;
  margin-bottom: 5px;
}

.summary-item strong {
  display: block;
  font-size: 14px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.form-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 8px;
}

.form-actions .btn {
  min-height: 35px;
  border-radius: 9px;
}

.form-note,
.form-message {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 13px;
  background: var(--white);
  color: #101010;
  line-height: 1.45;
  font-size: 12px;
  font-weight: 650;
  margin: 0;
}

.form-message:empty { display: none; }
.form-message.error { color: var(--danger); border-color: #fecaca; background: #fff7f7; }
.form-message.success { color: #166534; border-color: #bbf7d0; background: #f0fdf4; }

.frame-map {
  width: 100%;
  height: 460px;
  border-top: 1px solid rgba(0,0,0,.10);
  background: #f7f7f4;
  position: relative;
  overflow: hidden;
}

.route-canvas {
  position: absolute;
  inset: 0;
  background: #f7f7f4;
}

.route-canvas[data-route="yes"] {
  background:
    radial-gradient(circle at 44% 38%, rgba(0,0,0,.06), transparent 18rem),
    #f7f7f4;
}

.route-canvas.map-ready {
  background: #f7f7f4;
}

.route-canvas.map-ready .leaflet-container,
.route-canvas.map-ready {
  font-family: var(--font-main);
}

.route-canvas .leaflet-container {
  width: 100%;
  height: 100%;
  background: #f7f7f4;
  filter: grayscale(.15) contrast(1.02) brightness(1.03);
}

.route-canvas .leaflet-control-attribution {
  background: rgba(255,255,255,.86);
  color: #111;
  font-size: 9px;
}

.route-marker {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 3px solid #ffffff;
  background: #050506;
  box-shadow: 0 8px 20px rgba(0,0,0,.26);
}

.route-marker.dropoff {
  background: var(--green);
}

.route-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .78;
}

.map-card {
  position: absolute;
  left: 24px;
  bottom: 18px;
  z-index: 10;
  width: min(244px, calc(100% - 48px));
  border-radius: 12px;
  padding: 14px 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(0,0,0,.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0,0,0,.14);
}

.map-card strong,
.map-card span { color: var(--black); }
.map-card strong { display: block; font-size: 11px; }
.map-card span {
  display: block;
  margin-top: 5px;
  color: #464646;
  font-size: 10px;
  line-height: 1.35;
  font-weight: 750;
}

.round-icon {
  width: 45px;
  height: 45px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--white);
  font-weight: 950;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.section { padding: 92px 0 74px; }
.section-head {
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-head h2,
.cta h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(38px,4.2vw,58px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 500;
}

.section-head p {
  color: #626262;
  line-height: 1.6;
  margin: 0;
  font-size: 12px;
  font-weight: 650;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}

.card {
  min-height: 144px;
  border-radius: 13px;
  padding: 22px 20px;
  border: 1px solid rgba(0,0,0,.13);
  background: var(--white);
  color: var(--black);
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
}

.card-num {
  width: 25px;
  height: 25px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 9px;
  font-weight: 950;
  margin-bottom: 14px;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 500;
  margin: 0 0 9px;
}

.card p {
  color: #626262;
  line-height: 1.55;
  margin: 0;
  font-size: 12px;
  font-weight: 650;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--black);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 950;
  border-bottom: 1px solid currentColor;
}

.page-hero {
  padding: 46px 0 70px;
  background: var(--white);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) 330px;
  gap: 28px;
  align-items: stretch;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 14%, rgba(255,255,255,.11), transparent 18rem),
    linear-gradient(135deg, #070708 0%, #15161a 62%, #050506 100%);
  color: var(--white);
  padding: clamp(34px,5vw,62px);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  max-width: 760px;
  margin: 22px 0 16px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px,5vw,72px);
  line-height: .94;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: #e5e5e5;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 650;
}

.term-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.term-row span {
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--white);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 900;
}

.page-hero-panel {
  border-radius: 16px;
  padding: 22px;
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 14px;
  background: var(--white);
  color: var(--black);
}

.page-hero-panel strong {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.page-hero-panel span {
  color: #565656;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 650;
}

.content-band {
  padding: 38px 0 74px;
  background: var(--white);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 14px;
}

.feature-card {
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 14px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0,0,0,.055);
}

.feature-card h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  font-weight: 500;
}

.feature-card p {
  margin: 0;
  color: #606060;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 650;
}

.cta {
  padding: 72px 0 80px;
  background: var(--white);
  color: var(--black);
}

.cta-box {
  border-radius: 20px;
  padding: 34px 42px;
  background: var(--black);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow);
}

.cta p {
  margin: 0;
  color: #d1d5db;
  font-size: 12px;
  font-weight: 650;
}

.footer {
  padding: 44px 0 26px;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,.10);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(130px,1fr));
  gap: 32px;
}

.footer-brand {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.footer-brand .brand-mark {
  background: var(--black);
  color: var(--white);
  border-color: var(--white);
}

.footer h4 {
  margin: 0 0 12px;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.footer p,
.footer a {
  color: #d7d7d7;
  line-height: 1.65;
  font-size: 12px;
}

.footer a { display: block; margin: 7px 0; }

.modal[hidden],
.toast[hidden] { display: none; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0,0,0,.68);
}

.modal-card {
  width: min(520px,100%);
  padding: 28px;
  border-radius: 22px;
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow);
  position: relative;
}

.modal-card h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 500;
}

.modal-card p {
  color: #555;
  line-height: 1.6;
  font-size: 13px;
  font-weight: 650;
}

.modal-card form { display: grid; gap: 12px; }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 24px;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 260;
  max-width: min(420px, calc(100% - 40px));
  padding: 14px 16px;
  border-radius: 14px;
  color: var(--white);
  background: var(--black);
  box-shadow: var(--shadow);
  line-height: 1.5;
  font-weight: 800;
}

@media (max-width: 1120px) {
  .one-frame-top { grid-template-columns: 1fr; }
  .frame-booking {
    border-left: 0;
    border-top: 1px solid rgba(0,0,0,.10);
  }
}

@media (max-width: 880px) {
  .container,
  .site-header {
    width: min(100% - 24px, 1120px);
  }

  .site-header {
    top: 10px;
    margin-top: 10px;
  }

  .main-nav { display: none; }
  .header-actions .btn:first-child { display: none; }
  .frame-intro,
  .frame-booking { padding: 28px 20px; }
  .frame-intro h1 { font-size: clamp(40px,12vw,64px); }
  .hero-stats,
  .booking-form,
  .summary-bar,
  .cards,
  .content-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .booking-title,
  .form-actions { grid-template-columns: 1fr; }
  .page-hero-grid { grid-template-columns: 1fr; padding: 28px 20px; }
  .page-hero h1 { font-size: clamp(40px,12vw,64px); }
  .frame-map { height: 390px; }
  .cta-box { display: grid; }
  .footer-grid { gap: 20px; }
}
