:root {
  color-scheme: light;
  --ink: #121417;
  --muted: #62666f;
  --line: #d9dee6;
  --surface: #ffffff;
  --soft: #f7f8f3;
  --night: #111720;
  --asphalt: #202832;
  --blue: #006eff;
  --blue-dark: #0049ad;
  --lime: #b7ff3c;
  --coral: #ff5a3d;
  --sun: #ffce35;
  --green: #1d8f64;
  --shadow: 0 18px 42px rgba(17, 23, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fbfbf7;
  line-height: 1.5;
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #ffffff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 20px rgba(17, 23, 32, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--night);
  background: var(--lime);
  box-shadow: inset -6px -6px 0 rgba(17, 23, 32, 0.16);
  font-weight: 950;
  font-size: 25px;
  transform: skew(-8deg);
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 17px;
  line-height: 1.1;
}

.brand small {
  color: currentColor;
  font-size: 12px;
  font-weight: 800;
  opacity: 0.76;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: clamp(14px, 3vw, 32px);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  color: var(--lime);
  opacity: 1;
}

.site-header.is-scrolled .site-nav a:hover {
  color: var(--blue);
}

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

.language-select {
  width: auto;
  min-width: 104px;
  min-height: 44px;
  padding: 10px 12px;
  border-color: rgba(255, 255, 255, 0.38);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 900;
}

.site-header.is-scrolled .language-select {
  color: var(--ink);
  background: #ffffff;
  border-color: rgba(17, 23, 32, 0.16);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 950;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.header-cta {
  color: var(--night);
  background: var(--lime);
  box-shadow: 0 10px 20px rgba(183, 255, 60, 0.28);
}

.site-header:not(.is-scrolled) .header-cta {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.36);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: var(--night);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 88px;
  background: repeating-linear-gradient(
    112deg,
    rgba(183, 255, 60, 0.95) 0 18px,
    rgba(17, 23, 32, 0.95) 18px 34px
  );
  transform: translateY(42px) skewY(-2deg);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.14) contrast(1.08);
}

.hero-shade {
  background:
    linear-gradient(95deg, rgba(10, 16, 25, 0.94) 0%, rgba(10, 16, 25, 0.68) 44%, rgba(10, 16, 25, 0.1) 100%),
    linear-gradient(0deg, rgba(0, 110, 255, 0.32), rgba(255, 90, 61, 0.16));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 70px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--night);
  background: var(--lime);
}

.hero h1,
.section-heading h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 720px;
  font-size: 84px;
  font-weight: 950;
  overflow-wrap: break-word;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button-primary {
  color: var(--night);
  background: var(--lime);
  box-shadow: 0 16px 30px rgba(183, 255, 60, 0.28);
}

.button-primary:hover {
  background: var(--sun);
}

.button-secondary {
  color: #ffffff;
  background: var(--asphalt);
  border-color: rgba(255, 255, 255, 0.16);
}

.hero .button-secondary {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.36);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: #ffffff;
  background: var(--night);
}

.stats div {
  padding: 28px clamp(18px, 5vw, 56px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stats div:last-child {
  border-right: 0;
}

.stats strong {
  display: block;
  color: var(--lime);
  font-size: 28px;
  font-weight: 950;
}

.stats span {
  color: rgba(255, 255, 255, 0.72);
}

.section,
.process-band {
  padding: clamp(72px, 9vw, 116px) clamp(18px, 5vw, 64px);
}

.section-heading {
  width: min(840px, 100%);
  margin-bottom: 36px;
}

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading h2 {
  font-size: 56px;
  font-weight: 950;
}

.section-heading p:not(.eyebrow) {
  max-width: 660px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.vehicle-card {
  min-height: 340px;
  padding: 20px;
  border: 1px solid rgba(17, 23, 32, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(17, 23, 32, 0.08);
}

.vehicle-visual {
  position: relative;
  height: 154px;
  margin-bottom: 22px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(120deg, transparent 0 18%, rgba(255, 255, 255, 0.28) 18% 28%, transparent 28% 100%),
    linear-gradient(135deg, var(--blue-dark), var(--blue) 52%, var(--lime));
}

.vehicle-visual::before {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  top: 47%;
  height: 34%;
  border-radius: 80px 80px 18px 18px;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.vehicle-visual::after {
  content: "";
  position: absolute;
  left: 17%;
  right: 17%;
  bottom: 22%;
  height: 10px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 8% 50%, #ffffff 0 5px, transparent 6px),
    radial-gradient(circle at 92% 50%, #ffffff 0 5px, transparent 6px),
    rgba(17, 23, 32, 0.38);
}

.vehicle-visual.suv::before {
  left: 12%;
  right: 12%;
  top: 38%;
  height: 44%;
}

.vehicle-visual.executive {
  background:
    linear-gradient(120deg, transparent 0 20%, rgba(255, 255, 255, 0.18) 20% 30%, transparent 30% 100%),
    linear-gradient(135deg, #141922, #38414d 48%, var(--coral));
}

.vehicle-card h3,
.service-item h3,
.process-grid h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
}

.vehicle-card p,
.service-item p,
.process-grid p {
  margin: 0;
  color: var(--muted);
}

.vegas-strip {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(0, 110, 255, 0.22), rgba(255, 90, 61, 0.16)),
    repeating-linear-gradient(90deg, rgba(255, 206, 53, 0.08) 0 2px, transparent 2px 16px),
    #17121f;
}

.vegas-strip .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

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

.vegas-card {
  min-height: 300px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.22);
}

.vegas-card h3 {
  margin: 24px 0 10px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.12;
}

.vegas-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.vegas-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  color: var(--night);
  background: var(--sun);
  box-shadow: 0 0 24px rgba(255, 206, 53, 0.3);
  font-weight: 950;
}

.vegas-card.casino .vegas-icon {
  background: var(--lime);
  box-shadow: 0 0 24px rgba(183, 255, 60, 0.36);
}

.vegas-card.expo .vegas-icon {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 0 24px rgba(0, 110, 255, 0.34);
}

.vegas-card.tourism .vegas-icon {
  color: #ffffff;
  background: var(--coral);
  box-shadow: 0 0 24px rgba(255, 90, 61, 0.34);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  background:
    linear-gradient(180deg, rgba(255, 206, 53, 0.18), rgba(255, 255, 255, 0)),
    var(--soft);
}

.service-list {
  display: grid;
  gap: 16px;
}

.service-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(17, 23, 32, 0.1);
  border-radius: 8px;
  background: var(--surface);
}

.service-item span,
.process-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--night);
  background: var(--sun);
  font-weight: 950;
}

.process-band {
  position: relative;
  color: #ffffff;
  background:
    repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 18px),
    var(--night);
}

.process-band .section-heading p:not(.eyebrow),
.process-grid p {
  color: rgba(255, 255, 255, 0.72);
}

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

.process-grid div {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.process-grid span {
  margin-bottom: 28px;
  background: var(--lime);
}

.payment-info {
  background:
    linear-gradient(180deg, rgba(183, 255, 60, 0.13), rgba(255, 255, 255, 0)),
    #ffffff;
}

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

.payment-card {
  min-height: 280px;
  padding: 22px;
  border: 1px solid rgba(17, 23, 32, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(17, 23, 32, 0.08);
}

.payment-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--night);
  background: var(--lime);
  font-weight: 950;
}

.payment-card h3 {
  margin: 22px 0 10px;
  font-size: 22px;
  line-height: 1.14;
}

.payment-card p {
  margin: 0;
  color: var(--muted);
}

.reservation,
.customer-registration {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.customer-registration {
  background:
    linear-gradient(135deg, rgba(0, 110, 255, 0.12), rgba(255, 90, 61, 0.1)),
    #ffffff;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(17, 23, 32, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #2a3140;
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid #cfd6df;
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(183, 255, 60, 0.32);
  border-color: var(--blue);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  padding: 40px clamp(18px, 5vw, 64px);
  color: #ffffff;
  background: var(--night);
}

.site-footer p {
  max-width: 420px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact {
  display: grid;
  gap: 10px;
  align-content: center;
  justify-items: end;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 860px;
  }

  .hero-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 110px 18px 0;
  }

  .hero h1 {
    font-size: 52px;
  }

  .stats,
  .vegas-grid,
  .fleet-grid,
  .split,
  .process-grid,
  .payment-grid,
  .reservation,
  .customer-registration,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-contact {
    justify-items: start;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 14px;
    gap: 12px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 15px;
  }

  .header-cta {
    display: none;
  }

  .language-select {
    min-width: 92px;
    min-height: 38px;
    padding: 8px 9px;
    font-size: 12px;
  }

  .hero {
    min-height: 790px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(10, 16, 25, 0.9), rgba(10, 16, 25, 0.34)),
      linear-gradient(0deg, rgba(0, 110, 255, 0.22), rgba(255, 90, 61, 0.08));
  }

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

  .hero-copy {
    max-width: 31ch;
    font-size: 16px;
  }

  .hero-actions,
  .button,
  .booking-form {
    width: 100%;
  }

  .booking-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }
}
