:root {
  --night: #06111f;
  --ink: #101827;
  --muted: #627085;
  --ocean: #0874d1;
  --skyglass: #eaf6ff;
  --citrus: #f6c340;
  --flame: #e42b35;
  --mint: #83e6d8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

.site-header {
  transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(6, 17, 31, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 42px rgba(6, 17, 31, 0.2);
}

.brand-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--flame), var(--citrus));
  color: white;
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(228, 43, 53, 0.34);
}

.brand-logo {
  display: block;
  width: 188px;
  max-width: 48vw;
  height: auto;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-panel a {
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 14px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-panel a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateY(-1px);
}

.nav-panel .nav-cta {
  background: white;
  color: var(--night);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 999px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
  isolation: isolate;
}

.orbit-hero {
  min-height: 100vh;
}

.hero-section.orbit-hero > .relative.z-10 {
  grid-template-areas:
    "copy"
    "visual"
    "after";
}

.orbit-hero__backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 44%, rgba(8, 116, 209, 0.24), transparent 18%),
    radial-gradient(circle at 88% 62%, rgba(131, 230, 216, 0.2), transparent 22%),
    linear-gradient(135deg, #020813 0%, #06111f 42%, #03101e 100%);
}

.orbit-hero__backdrop::before,
.orbit-hero__backdrop::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.orbit-hero__backdrop::before {
  left: -12vw;
  top: 3vh;
  width: 72vw;
  height: 72vw;
  max-width: 780px;
  max-height: 780px;
  border: 1px solid rgba(8, 116, 209, 0.22);
}

.orbit-hero__backdrop::after {
  right: -18vw;
  bottom: -22vw;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(131, 230, 216, 0.12);
}

.orbit-hero__sphere {
  position: absolute;
  left: 50%;
  top: 4%;
  width: min(48vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 10%, rgba(207, 255, 249, 0.92), transparent 18%),
    radial-gradient(circle at 72% 58%, rgba(8, 116, 209, 0.38), transparent 34%),
    linear-gradient(0deg, rgba(3, 11, 30, 0.08) 0%, rgba(8, 116, 209, 0.64) 48%, rgba(131, 230, 216, 0.9) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(131, 230, 216, 0.18),
    inset 0 -46px 80px rgba(2, 8, 19, 0.28),
    inset 0 34px 80px rgba(255, 255, 255, 0.14),
    0 0 92px rgba(8, 116, 209, 0.2);
  transform: translateX(-18%);
  opacity: 0.8;
}

.orbit-hero__sphere::before,
.orbit-hero__sphere::after {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: inherit;
  border: 1px solid rgba(48, 159, 255, 0.42);
}

.orbit-hero__sphere::after {
  inset: 10%;
  border-color: transparent;
  background-image: radial-gradient(rgba(131, 230, 216, 0.55) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.36;
  mask-image: linear-gradient(to bottom, black 0%, transparent 82%);
}

.orbit-hero__dots {
  position: absolute;
  width: 220px;
  height: 160px;
  background-image: radial-gradient(rgba(48, 159, 255, 0.78) 1.25px, transparent 1.25px);
  background-size: 18px 18px;
  opacity: 0.56;
}

.orbit-hero__dots--right {
  right: 4%;
  top: 10%;
}

.orbit-hero__dots--left {
  left: -2%;
  bottom: 26%;
  opacity: 0.24;
}

.orbit-hero__floor {
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: min(94vw, 980px);
  height: 210px;
  border-radius: 50%;
  transform: translateX(-26%) perspective(760px) rotateX(62deg);
  filter: drop-shadow(0 0 42px rgba(8, 116, 209, 0.26));
}

.orbit-hero__floor span {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(48, 159, 255, 0.9);
  box-shadow:
    inset 0 0 34px rgba(8, 116, 209, 0.32),
    0 0 28px rgba(8, 116, 209, 0.48);
}

.orbit-hero__floor span:nth-child(2) {
  inset: 20px 34px;
  border-width: 12px;
  border-color: rgba(8, 116, 209, 0.78);
  border-right-color: rgba(131, 230, 216, 0.78);
}

.orbit-hero__floor span:nth-child(3) {
  inset: 54px 82px;
  border-color: rgba(255, 255, 255, 0.72);
  opacity: 0.7;
}

.orbit-hero__copy {
  position: relative;
  z-index: 6;
}

.orbit-hero__copy {
  grid-area: copy;
}

.orbit-hero__after {
  position: relative;
  z-index: 7;
  grid-area: after;
}

.orbit-hero__actions {
  margin-top: 0;
}

.orbit-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  padding: 9px 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.orbit-hero__copy h1 {
  text-wrap: balance;
}

.orbit-hero__copy h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, var(--mint), #eaf6ff 52%, #2e8dff);
  background-clip: text;
  -webkit-background-clip: text;
  padding-bottom: 12px;
}

.orbit-hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 600px;
  margin-top: 34px;
}

.orbit-hero__proof div {
  min-height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  padding: 13px;
  backdrop-filter: blur(14px);
}

.orbit-hero__proof strong,
.orbit-hero__proof span {
  display: block;
}

.orbit-hero__proof strong {
  font-size: 23px;
  font-weight: 950;
  line-height: 1;
}

.orbit-hero__proof span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.orbit-hero__visual {
  position: relative;
  grid-area: visual;
  min-height: 640px;
  z-index: 5;
}

.orbit-car {
  position: absolute;
  user-select: none;
  pointer-events: none;
  object-fit: contain;
}

.orbit-car--back {
  right: -2%;
  top: 22%;
  z-index: 2;
  width: min(58%, 420px);
  opacity: 0.48;
  filter: blur(0.8px) drop-shadow(0 28px 34px rgba(0, 0, 0, 0.54));
  animation: floatCar 7.5s ease-in-out infinite reverse;
}

.orbit-car--mid {
  left: -8%;
  top: 28%;
  z-index: 3;
  width: min(62%, 460px);
  opacity: 0.82;
  filter: drop-shadow(0 30px 38px rgba(0, 0, 0, 0.58));
  animation: floatCar 8s ease-in-out infinite 0.8s;
}

.orbit-car--front {
  left: 50%;
  top: 54%;
  z-index: 4;
  width: min(106%, 780px);
  filter: drop-shadow(0 42px 52px rgba(0, 0, 0, 0.78));
  transform: translate(-50%, -50%);
  animation: orbitFrontFloat 6s ease-in-out infinite;
}

.orbit-hero__badge {
  position: absolute;
  left: 50%;
  bottom: 5%;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 304px;
  border: 1px solid rgba(48, 159, 255, 0.72);
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(8, 116, 209, 0.18), rgba(6, 17, 31, 0.78));
  padding: 18px 22px;
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.44),
    0 0 34px rgba(48, 159, 255, 0.22);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  animation: floatCar 6.5s ease-in-out infinite 0.5s;
}

.orbit-hero__badge > div:first-child {
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 24%, #b9fff5, var(--mint) 44%, #0874d1);
  color: var(--night);
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.55);
}

.orbit-hero__badge svg {
  width: 24px;
  height: 24px;
}

.orbit-hero__badge strong,
.orbit-hero__badge span {
  display: block;
}

.orbit-hero__badge strong {
  font-size: 20px;
  font-weight: 950;
}

.orbit-hero__badge span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 650;
}

.hero-photo {
  min-height: 100vh;
}

.hero-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  transform: scale(1.015);
  animation: heroBreath 12s ease-in-out infinite;
}

.hero-photo-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 17, 31, 0.94) 0%, rgba(6, 17, 31, 0.78) 38%, rgba(6, 17, 31, 0.28) 66%, rgba(6, 17, 31, 0.16) 100%),
    linear-gradient(180deg, rgba(6, 17, 31, 0.7) 0%, rgba(6, 17, 31, 0.05) 36%, rgba(6, 17, 31, 0.88) 100%);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 34%;
  background: linear-gradient(180deg, transparent, var(--night));
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.13;
  filter: saturate(1.2);
}

.hero-aurora {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 16% 20%, rgba(131, 230, 216, 0.26), transparent 24%),
    radial-gradient(circle at 78% 18%, rgba(246, 195, 64, 0.24), transparent 22%),
    radial-gradient(circle at 86% 78%, rgba(228, 43, 53, 0.22), transparent 24%),
    linear-gradient(125deg, rgba(8, 116, 209, 0.86), rgba(6, 17, 31, 0.96) 48%, #08101c);
  background-size: 48px 48px, 48px 48px, auto, auto, auto, auto;
}

.hero-aurora::before {
  content: "";
  position: absolute;
  inset: 11% -18% auto auto;
  width: min(72vw, 760px);
  height: min(72vw, 760px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.availability-pill,
.btn-primary,
.btn-ghost,
.hero-proof span,
.mode-switch,
.route-tags span {
  display: inline-flex;
  align-items: center;
}

.availability-pill {
  gap: 10px;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 13px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 850;
}

.hero-kicker {
  width: fit-content;
  color: var(--mint);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 rgba(131, 230, 216, 0.8);
  animation: pulseDot 1.8s infinite;
}

.hero-lead {
  text-wrap: pretty;
}

.hero-booking-panel {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 12;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 1px;
  width: min(1180px, calc(100% - 32px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
}

.hero-booking-item,
.hero-panel-action {
  min-height: 92px;
  background: rgba(6, 17, 31, 0.58);
}

.hero-booking-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 18px;
}

.hero-booking-item svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: var(--citrus);
}

.hero-booking-item small,
.hero-booking-item strong {
  display: block;
}

.hero-booking-item small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-booking-item strong {
  margin-top: 5px;
  color: white;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.28;
}

.hero-panel-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--flame), #ff6f2d);
  color: white;
  font-size: 15px;
  font-weight: 950;
  white-space: nowrap;
}

.hero-panel-action svg {
  width: 18px;
  height: 18px;
}

.hero-mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
}

.hero-mode-card {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
  backdrop-filter: blur(16px);
}

.hero-mode-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(246, 195, 64, 0.12);
}

.hero-mode-card svg {
  width: 24px;
  height: 24px;
  color: var(--citrus);
}

.hero-mode-card strong,
.hero-mode-card span {
  display: block;
}

.hero-mode-card strong {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 950;
}

.hero-mode-card span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.btn-primary,
.btn-ghost {
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  min-height: 52px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--flame), #ff6f2d);
  color: white;
  box-shadow: 0 22px 44px rgba(228, 43, 53, 0.34);
}

.btn-primary:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.btn-primary svg,
.btn-ghost svg {
  width: 18px;
  height: 18px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span {
  gap: 8px;
  min-height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 850;
}

.hero-proof svg {
  width: 16px;
  height: 16px;
  color: var(--mint);
}

.hero-trip-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
}

.hero-trip-card div {
  min-width: 0;
  padding: 14px 16px;
}

.hero-trip-card div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-trip-card small,
.hero-trip-card strong {
  display: block;
}

.hero-trip-card small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-trip-card strong {
  margin-top: 4px;
  overflow: hidden;
  color: white;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-overflow: ellipsis;
}

.hero-showcase {
  position: relative;
  min-height: 530px;
}

.hero-route-orbit {
  position: absolute;
  inset: -38px -94px -30px -42px;
  width: calc(100% + 130px);
  height: calc(100% + 80px);
  object-fit: contain;
  opacity: 0.88;
  animation: routeDrift 8s ease-in-out infinite;
}

.hero-car-stage {
  position: absolute;
  inset: 8% -4% 0 0;
  border-radius: 44px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 58% 45%, rgba(255, 255, 255, 0.18), transparent 42%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.hero-car-stage::before {
  content: "RENTAL MOBIL SURABAYA";
  position: absolute;
  left: 24px;
  top: 24px;
  color: rgba(255, 255, 255, 0.12);
  font-size: clamp(36px, 5vw, 74px);
  font-weight: 950;
  line-height: 0.9;
  max-width: 8ch;
}

.hero-car-stage::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 54px;
  height: 26px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  filter: blur(18px);
}

.hero-car {
  position: absolute;
  filter: drop-shadow(0 34px 42px rgba(0, 0, 0, 0.35));
  user-select: none;
}

.hero-car-main {
  right: -16px;
  bottom: 48px;
  z-index: 3;
  width: min(100%, 650px);
  animation: floatCar 5.8s ease-in-out infinite;
}

.hero-car-back {
  left: -10px;
  top: 52px;
  z-index: 2;
  width: min(72%, 450px);
  opacity: 0.86;
  animation: floatCar 6.5s ease-in-out infinite reverse;
}

.hero-badge {
  position: absolute;
  z-index: 6;
  width: 156px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(6, 17, 31, 0.72);
  padding: 14px;
  color: white;
  backdrop-filter: blur(18px);
}

.hero-badge.top {
  right: 8px;
  top: 22px;
}

.hero-badge.middle {
  right: 20px;
  bottom: 128px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: auto;
  min-width: 220px;
}

.hero-badge.middle svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--mint);
}

.hero-badge.bottom {
  left: 20px;
  bottom: 18px;
}

.hero-badge span,
.hero-badge small {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 800;
}

.hero-badge strong {
  display: block;
  margin-top: 2px;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.05;
}

.ticker-strip {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.ticker-track span {
  padding: 18px 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-pad {
  padding: 96px 0;
}

.section-heading {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.section-heading.text-left {
  margin-left: 0;
  margin-right: 0;
}

.section-heading > p:first-child,
.eyebrow {
  color: var(--ocean);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-heading h2,
.route-copy h2,
.cta-section h2 {
  margin-top: 12px;
  font-size: clamp(31px, 4.6vw, 54px);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading > span,
.section-desc {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.78;
}

.section-desc {
  color: rgba(255, 255, 255, 0.68);
}

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

.service-panel {
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  background: white;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 68px rgba(15, 23, 42, 0.12);
}

.service-panel img {
  width: 100%;
  aspect-ratio: 4 / 2.45;
  object-fit: cover;
}

.service-panel div {
  padding: 24px;
}

.service-panel span,
.fleet-copy span {
  color: var(--flame);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-panel h3,
.fleet-copy h3,
.step-card h3 {
  margin-top: 10px;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.08;
}

.service-panel p,
.fleet-copy p,
.step-card p,
.cta-section p,
.route-copy p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.72;
}

.service-panel ul {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

.service-panel li {
  position: relative;
  padding-left: 20px;
}

.service-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--citrus);
}

.fleet-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(131, 230, 216, 0.28), transparent 25%),
    linear-gradient(180deg, #f7fbff, #edf7ff);
}

.fleet-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.mode-switch {
  gap: 4px;
  flex: 0 0 auto;
  width: fit-content;
  border: 1px solid #d9e7f5;
  border-radius: 999px;
  background: white;
  padding: 5px;
  box-shadow: 0 16px 42px rgba(8, 116, 209, 0.12);
}

.mode-switch button {
  min-height: 42px;
  border-radius: 999px;
  padding: 0 18px;
  color: #64748b;
  font-size: 14px;
  font-weight: 900;
  transition: background 0.2s ease, color 0.2s ease;
}

.mode-switch button.active {
  background: var(--night);
  color: white;
}

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

.fleet-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 410px;
  border: 1px solid rgba(8, 116, 209, 0.14);
  border-radius: 26px;
  background: white;
  box-shadow: 0 18px 52px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.fleet-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.9), transparent 26%),
    linear-gradient(180deg, transparent 52%, rgba(8, 116, 209, 0.06));
}

.fleet-card:focus-visible {
  outline: 3px solid rgba(8, 116, 209, 0.35);
  outline-offset: 3px;
}

.fleet-card:hover {
  border-color: rgba(8, 116, 209, 0.34);
  box-shadow: 0 28px 76px rgba(8, 116, 209, 0.18);
  transform: translateY(-5px);
}

.fleet-media {
  position: relative;
  z-index: 2;
  min-height: 206px;
  background:
    linear-gradient(90deg, rgba(8, 116, 209, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(8, 116, 209, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 72% 18%, rgba(246, 195, 64, 0.92), transparent 18%),
    linear-gradient(155deg, #f7fbff, #e8f4ff);
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.fleet-media::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -82px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(8, 116, 209, 0.12);
}

.fleet-media img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 220px;
  object-fit: contain;
  padding: 20px 14px 0;
  transform: translateX(5%);
  transition: transform 0.28s ease;
}

.fleet-card:hover .fleet-media img {
  transform: translateX(1%) scale(1.04);
}

.fleet-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 22px;
}

.fleet-ribbon {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(6, 17, 31, 0.82);
  padding: 8px 11px;
  color: white;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.fleet-copy p {
  min-height: 58px;
  font-size: 15px;
}

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

.price-value {
  display: inline-flex;
  border-radius: 999px;
  background: var(--night);
  padding: 10px 15px;
  color: white;
  font-size: 18px;
  font-weight: 950;
}

.fleet-bottom small {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--ocean);
  font-size: 13px;
  font-weight: 950;
}

.fleet-bottom svg {
  width: 15px;
  height: 15px;
}

.rate-note {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  border: 1px solid rgba(8, 116, 209, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  padding: 16px;
  color: var(--muted);
  box-shadow: 0 14px 42px rgba(15, 23, 42, 0.06);
}

.rate-note svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--ocean);
}

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

#alur {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(131, 230, 216, 0.26), transparent 26%),
    radial-gradient(circle at 92% 18%, rgba(246, 195, 64, 0.18), transparent 24%),
    linear-gradient(145deg, #030914 0%, #06111f 48%, #09213a 100%);
}

#alur::before,
#alur::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

#alur::before {
  inset: 42px auto auto -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(131, 230, 216, 0.18);
  border-radius: 50%;
}

#alur::after {
  right: -90px;
  bottom: -150px;
  width: 520px;
  height: 320px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.36;
  transform: rotate(-8deg);
}

#alur > div {
  position: relative;
  z-index: 1;
}

.step-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.06);
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.step-card::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -58px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 116, 209, 0.28), transparent 68%);
}

.step-card span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--citrus), var(--flame));
  color: white;
  font-weight: 950;
}

.step-card p {
  color: rgba(255, 255, 255, 0.64);
}

.route-section {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.82), transparent 23%),
    radial-gradient(circle at 84% 18%, rgba(131, 230, 216, 0.34), transparent 28%),
    linear-gradient(135deg, #fff6d4 0%, #f6c340 42%, #f39a2c 100%);
}

.route-section::before,
.route-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.route-section::before {
  left: -130px;
  bottom: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(6, 17, 31, 0.1);
}

.route-section::after {
  right: -92px;
  top: 36px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(6, 17, 31, 0.16);
  border-radius: 50%;
}

.route-section > div {
  position: relative;
  z-index: 1;
}

.route-map {
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background: white;
  box-shadow: 0 28px 72px rgba(6, 17, 31, 0.24);
  transform: rotate(-0.75deg);
}

.route-map img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.route-copy {
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.62);
  padding: 30px;
  box-shadow: 0 22px 58px rgba(6, 17, 31, 0.12);
  backdrop-filter: blur(18px);
}

.route-copy h2 {
  color: var(--night);
}

.route-copy p {
  color: rgba(6, 17, 31, 0.72);
}

.route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.route-tags span {
  min-height: 42px;
  border: 1px solid rgba(6, 17, 31, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  padding: 0 15px;
  color: var(--night);
  font-size: 14px;
  font-weight: 900;
}

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

.testimonial-card {
  overflow: hidden;
  border-radius: 26px;
  background: var(--night);
  box-shadow: 0 24px 62px rgba(15, 23, 42, 0.12);
}

.testimonial-card img {
  width: 100%;
  aspect-ratio: 1 / 1.24;
  object-fit: cover;
}

.testimonial-card figcaption {
  padding: 20px;
  color: white;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  font-size: 20px;
  font-weight: 950;
}

.testimonial-card span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.65;
}

.cta-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(131, 230, 216, 0.4), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(228, 43, 53, 0.2), transparent 24%),
    linear-gradient(145deg, var(--night), #0a3159);
  padding: 108px 0;
  color: white;
}

.cta-section p {
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
}

.cta-phone {
  border-color: rgba(255, 255, 255, 0.22);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 20px;
  background: #13c563;
  color: white;
  box-shadow: 0 18px 42px rgba(19, 197, 99, 0.34);
}

.floating-whatsapp svg {
  width: 27px;
  height: 27px;
}

.rate-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.rate-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.rate-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 17, 31, 0.68);
  backdrop-filter: blur(10px);
}

.rate-modal__dialog {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: min(940px, 100%);
  max-height: min(88vh, 850px);
  max-height: min(88dvh, 850px);
  border-radius: 30px;
  background: white;
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.34);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.22s ease;
}

.rate-modal.is-open .rate-modal__dialog {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 5;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: rgba(6, 17, 31, 0.1);
  color: var(--night);
}

.modal-close svg {
  width: 20px;
  height: 20px;
}

.modal-hero {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  align-items: center;
  gap: 18px;
  background:
    radial-gradient(circle at 88% 18%, rgba(246, 195, 64, 0.7), transparent 22%),
    linear-gradient(135deg, #edf8ff, #ffffff 58%);
  padding: 34px 34px 18px;
}

.modal-hero span {
  color: var(--flame);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.modal-hero h2 {
  margin-top: 8px;
  color: var(--night);
  font-size: clamp(34px, 7vw, 58px);
  font-weight: 950;
  line-height: 0.96;
}

.modal-hero p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.modal-hero img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(15, 23, 42, 0.22));
}

.modal-body {
  flex: 1 1 auto;
  overflow: auto;
  min-height: 0;
  max-height: calc(88vh - 260px);
  max-height: calc(88dvh - 260px);
  padding: 24px 34px 34px;
  -webkit-overflow-scrolling: touch;
}

.modal-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.modal-specs span {
  border-radius: 999px;
  background: #edf7ff;
  padding: 9px 12px;
  color: #17405f;
  font-size: 13px;
  font-weight: 900;
}

.rate-table {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.rate-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 15px;
}

.rate-row strong,
.rate-row span,
.rate-row small {
  display: block;
}

.rate-row strong {
  color: var(--night);
  font-size: 16px;
  font-weight: 950;
}

.rate-row small {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.rate-row span {
  color: var(--ocean);
  font-size: 18px;
  font-weight: 950;
  white-space: nowrap;
}

.modal-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.modal-info-grid > div {
  border-radius: 20px;
  background: #f8fafc;
  padding: 18px;
}

.modal-info-grid h3 {
  color: var(--night);
  font-size: 16px;
  font-weight: 950;
}

.modal-info-grid ul {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.modal-info-grid li {
  position: relative;
  padding-left: 18px;
}

.modal-info-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--citrus);
}

.modal-booking {
  width: 100%;
  margin-top: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(131, 230, 216, 0.8);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(131, 230, 216, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(131, 230, 216, 0);
  }
}

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

@keyframes orbitFrontFloat {
  0%,
  100% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, calc(-50% - 14px));
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes heroBreath {
  0%,
  100% {
    transform: scale(1.015);
  }
  50% {
    transform: scale(1.045);
  }
}

@keyframes routeDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(10px, -12px, 0) rotate(1deg);
  }
}

@media (min-width: 1024px) {
  .hero-section.orbit-hero > .relative.z-10 {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    grid-template-areas:
      "copy visual"
      "after visual";
    grid-template-rows: auto auto;
  }
}

@media (max-width: 1023px) {
  .nav-panel {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: grid;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    background: rgba(6, 17, 31, 0.97);
    padding: 12px;
    box-shadow: 0 20px 58px rgba(6, 17, 31, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-panel a {
    display: block;
    border-radius: 14px;
    padding: 13px 14px;
  }

  .hero-showcase {
    min-height: 460px;
  }

  .hero-booking-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panel-action {
    grid-column: span 2;
    min-height: 62px;
  }

  .fleet-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .fleet-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .section-pad {
    padding: 68px 0;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-photo {
    min-height: 760px;
  }

  .hero-photo-img {
    object-position: 70% center;
  }

  .hero-photo-shade {
    background:
      linear-gradient(180deg, rgba(6, 17, 31, 0.84) 0%, rgba(6, 17, 31, 0.52) 42%, rgba(6, 17, 31, 0.96) 100%),
      linear-gradient(90deg, rgba(6, 17, 31, 0.74), rgba(6, 17, 31, 0.2));
  }

  .hero-section .relative.z-10 {
    min-height: auto;
    align-items: flex-start;
    padding-bottom: 270px;
    padding-top: 112px;
  }

  .hero-copy h1 {
    font-size: 48px;
    max-width: 10ch;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.65;
  }

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

  .hero-mode-card {
    min-height: 0;
    padding: 14px;
  }

  .hero-booking-panel {
    bottom: 18px;
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    border-radius: 22px;
  }

  .hero-booking-item {
    min-height: 70px;
    padding: 14px;
  }

  .hero-panel-action {
    grid-column: auto;
    min-height: 56px;
  }

  .hero-showcase {
    min-height: 340px;
  }

  .hero-route-orbit {
    inset: -30px -72px -22px -54px;
    width: calc(100% + 124px);
    height: calc(100% + 60px);
    opacity: 0.72;
  }

  .hero-car-stage {
    inset: 0 -14px 0 -8px;
    border-radius: 30px;
  }

  .hero-car-stage::before {
    left: 16px;
    top: 18px;
    font-size: 34px;
  }

  .hero-car-main {
    right: -45px;
    bottom: 38px;
    width: 112%;
  }

  .hero-car-back {
    left: -28px;
    top: 64px;
    width: 68%;
  }

  .hero-badge {
    width: 132px;
    border-radius: 18px;
    padding: 12px;
  }

  .hero-badge.top {
    top: 10px;
    right: 0;
  }

  .hero-badge.bottom {
    left: 2px;
    bottom: 8px;
  }

  .hero-badge.middle {
    right: 4px;
    bottom: 84px;
    min-width: 184px;
  }

  .hero-badge strong {
    font-size: 18px;
  }

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

  .hero-trip-card div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .fleet-grid,
  .service-grid,
  .steps-grid,
  .testimonial-grid,
  .modal-info-grid {
    grid-template-columns: 1fr;
  }

  .fleet-card {
    min-height: auto;
    grid-template-columns: 42% 58%;
    border-radius: 22px;
  }

  .fleet-ribbon {
    left: 10px;
    top: 10px;
    padding: 7px 9px;
    font-size: 10px;
  }

  .fleet-media {
    min-height: 100%;
  }

  .fleet-media img {
    height: 100%;
    min-height: 210px;
    padding: 14px 0 10px 8px;
    object-fit: contain;
    transform: translateX(0);
  }

  .fleet-card:hover .fleet-media img {
    transform: scale(1.03);
  }

  .fleet-copy {
    gap: 12px;
    padding: 16px 14px 16px 8px;
  }

  .fleet-copy h3 {
    font-size: 22px;
  }

  .fleet-copy p {
    min-height: 0;
    font-size: 13px;
    line-height: 1.45;
  }

  .fleet-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .price-value {
    padding: 8px 12px;
    font-size: 16px;
  }

  .mode-switch {
    width: 100%;
  }

  .mode-switch button {
    flex: 1;
    padding: 0 10px;
  }

  .route-section {
    padding: 68px 0;
  }

  .route-map {
    border-radius: 24px;
    transform: none;
  }

  .route-map img {
    min-height: 260px;
  }

  .route-copy {
    border-radius: 24px;
    padding: 22px;
  }

  .testimonial-card img {
    aspect-ratio: 1 / 1.05;
  }

  .rate-modal {
    align-items: end;
    padding: 8px;
    padding-top: max(8px, env(safe-area-inset-top));
    padding-bottom: max(8px, env(safe-area-inset-bottom));
  }

  .rate-modal__dialog {
    width: 100%;
    max-height: calc(100vh - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 24px 24px 18px 18px;
  }

  .modal-hero {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 24px 18px 8px;
  }

  .modal-hero img {
    max-height: 190px;
  }

  .modal-body {
    max-height: none;
    padding: 16px 18px max(24px, env(safe-area-inset-bottom));
  }

  .rate-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .rate-row span {
    white-space: normal;
  }
}

@media (max-width: 430px) {
  .brand-logo {
    width: 156px;
  }

  .availability-pill {
    max-width: 100%;
    font-size: 12px;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    min-height: 50px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-proof span {
    width: 100%;
    justify-content: center;
  }

  .ticker-track span {
    padding: 15px 18px;
    font-size: 12px;
  }

  .fleet-card {
    grid-template-columns: 1fr;
  }

  .fleet-media img {
    height: 190px;
    min-height: 190px;
    padding: 14px 10px 0;
  }

  .fleet-copy {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1023px) {
  .orbit-hero {
    min-height: auto;
  }

  .hero-section.orbit-hero > .relative.z-10 {
    min-height: auto;
    padding-bottom: 84px;
  }

  .orbit-hero__sphere {
    left: 50%;
    top: 34%;
    width: min(68vw, 520px);
    transform: translateX(-50%);
  }

  .orbit-hero__floor {
    left: 50%;
    bottom: 9%;
    width: min(108vw, 820px);
    transform: translateX(-50%) perspective(720px) rotateX(64deg);
  }

  .orbit-hero__visual {
    min-height: 500px;
  }

  .orbit-car--front {
    width: min(102%, 660px);
  }

  .orbit-car--mid {
    left: 0;
    width: min(50%, 350px);
  }

  .orbit-car--back {
    right: 2%;
    width: min(48%, 340px);
  }
}

@media (max-width: 767px) {
  .hero-section.orbit-hero > .relative.z-10 {
    gap: 28px;
    padding-top: 108px;
    padding-bottom: 60px;
  }

  .orbit-hero__backdrop::before {
    left: -42vw;
    top: 18vh;
    width: 110vw;
    height: 110vw;
  }

  .orbit-hero__sphere {
    top: 50vh;
    width: 78vw;
    opacity: 0.88;
  }

  .orbit-hero__dots--right {
    right: -80px;
    top: 12%;
  }

  .orbit-hero__dots--left {
    left: -120px;
    bottom: 30%;
  }

  .orbit-hero__copy h1 {
    font-size: 43px;
    line-height: 1;
  }

  .orbit-hero__copy p {
    font-size: 15px;
    line-height: 1.7;
  }

  .orbit-hero__proof {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 24px;
  }

  .orbit-hero__proof div {
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
  }

  .orbit-hero__proof span {
    margin-top: 0;
    text-align: right;
  }

  .orbit-hero__visual {
    min-height: 385px;
  }

  .orbit-hero__floor {
    top: 70vh;
    width: 116vw;
    height: 150px;
  }

  .orbit-car--front {
    top: 48%;
    width: min(112%, 560px);
  }

  .orbit-car--mid {
    left: -10%;
    top: 30%;
    width: min(52%, 260px);
  }

  .orbit-car--back {
    right: -10%;
    top: 26%;
    width: min(52%, 260px);
  }

  .orbit-hero__badge {
    bottom: 4%;
    min-width: min(304px, calc(100% - 28px));
    padding: 14px 16px;
  }

  .orbit-hero__badge strong {
    font-size: 17px;
  }

  .orbit-hero__badge span {
    font-size: 12px;
  }
}

@media (max-width: 430px) {
  .orbit-hero__copy h1 {
    font-size: 38px;
  }

  .orbit-pill {
    font-size: 12px;
  }

  .orbit-hero__visual {
    min-height: 340px;
  }

  .orbit-car--front {
    width: 122%;
  }

  .orbit-car--mid,
  .orbit-car--back {
    opacity: 0.42;
  }
}
