:root {
  --ink: #111317;
  --muted: #646b78;
  --line: rgba(17, 19, 23, 0.12);
  --paper: #f6f4ef;
  --white: #ffffff;
  --gold: #c99a3e;
  --red: #bc3140;
  --green: #126b5c;
  --night: #161a22;
  --shadow: 0 24px 70px rgba(17, 19, 23, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

body::selection {
  color: var(--white);
  background: var(--red);
}

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

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

.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 154, 62, 0.25), transparent 62%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 20;
  opacity: 0;
  transition: opacity 180ms ease;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 32px));
  min-height: 68px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(17, 19, 23, 0.38);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 250ms ease, box-shadow 250ms ease, color 250ms ease;
}

.site-header.is-scrolled,
.site-header.compact {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 45px rgba(17, 19, 23, 0.1);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 7px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--gold));
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 4px;
  color: currentColor;
  opacity: 0.68;
  font-size: 0.74rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: currentColor;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.nav-action,
.button.primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 30px rgba(188, 49, 64, 0.25);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.button.dark {
  color: var(--white);
  background: var(--night);
}

.button:hover,
.nav-action:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 94vh;
  padding: 150px max(24px, calc((100vw - 1160px) / 2)) 58px;
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 12, 15, 0.9), rgba(10, 12, 15, 0.5) 48%, rgba(10, 12, 15, 0.18)),
    linear-gradient(0deg, rgba(10, 12, 15, 0.78), rgba(10, 12, 15, 0.05) 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(760px, 100%);
  color: var(--white);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  display: inline-block;
  width: 36px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero h1 {
  margin: 0;
  max-width: 8ch;
  font-size: clamp(4rem, 12vw, 9.5rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-copy {
  width: min(620px, 100%);
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.7;
}

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

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-self: end;
  gap: 1px;
  width: min(900px, 100%);
  margin-top: 56px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel span,
.info-card span,
.fleet-body span,
.policy-summary span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.62);
}

.hero-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 0.98rem;
  line-height: 1.35;
}

.ticker {
  overflow: hidden;
  color: var(--white);
  background: var(--green);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 42px;
  padding: 16px 0;
  font-weight: 800;
  text-transform: uppercase;
  animation: ticker 24s linear infinite;
}

.ticker-track span {
  position: relative;
}

.ticker-track span::after {
  position: absolute;
  top: 50%;
  right: -25px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  transform: translateY(-50%);
}

.section {
  padding: 110px max(24px, calc((100vw - 1160px) / 2));
}

.intro {
  background: var(--white);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.split p,
.service-content p,
.contact-panel p,
.privacy-hero p,
.policy-content p,
.fleet-body p,
.step p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 34px;
}

.section-head h2 {
  width: min(720px, 100%);
}

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

.fleet-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--night);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.fleet-card img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
  opacity: 0.86;
  transition: transform 800ms ease, opacity 300ms ease;
}

.fleet-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 10, 13, 0.9), rgba(8, 10, 13, 0.05) 62%);
  content: "";
}

.fleet-card:hover img {
  opacity: 1;
  transform: scale(1.08);
}

.fleet-body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 28px;
  color: var(--white);
}

.fleet-body span,
.fleet-body p {
  color: rgba(255, 255, 255, 0.72);
}

.fleet-body h3 {
  margin: 10px 0;
  font-size: 1.55rem;
}

.service {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
  background: var(--night);
  color: var(--white);
}

.service .section-kicker,
.service-content p {
  color: rgba(255, 255, 255, 0.7);
}

.service-visual {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(18, 107, 92, 0.75), rgba(188, 49, 64, 0.42)),
    url("https://images.unsplash.com/photo-1553440569-bcc63803a83d?auto=format&fit=crop&w=1100&q=82") center/cover;
  box-shadow: var(--shadow);
}

.road {
  position: absolute;
  right: -20%;
  bottom: 18%;
  left: -20%;
  height: 82px;
  background: rgba(17, 19, 23, 0.82);
  transform: rotate(-8deg);
}

.road::before {
  position: absolute;
  top: 38px;
  left: 0;
  width: 200%;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 58px, transparent 58px 92px);
  content: "";
  animation: lane 900ms linear infinite;
}

.car-shape {
  position: absolute;
  top: -42px;
  left: 44%;
  width: 150px;
  height: 56px;
  border-radius: 42px 56px 16px 16px;
  background: var(--white);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
  animation: carFloat 1.8s ease-in-out infinite;
}

.car-shape::before {
  position: absolute;
  top: -22px;
  left: 44px;
  width: 62px;
  height: 34px;
  border-radius: 24px 24px 4px 4px;
  background: rgba(255, 255, 255, 0.85);
  content: "";
}

.car-shape::after {
  position: absolute;
  right: 16px;
  bottom: -10px;
  left: 16px;
  height: 24px;
  background: radial-gradient(circle at 18px 12px, var(--night) 0 11px, transparent 12px), radial-gradient(circle at 102px 12px, var(--night) 0 11px, transparent 12px);
  content: "";
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 8px 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.step span {
  grid-row: span 2;
  color: var(--gold);
  font-weight: 800;
}

.step strong {
  font-size: 1.2rem;
}

.step p {
  margin: 0;
}

.company {
  background: var(--white);
}

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

.info-card {
  min-height: 170px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.info-card:hover {
  box-shadow: 0 18px 40px rgba(17, 19, 23, 0.09);
  transform: translateY(-4px);
}

.info-card strong {
  display: block;
  margin-top: 18px;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.info-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.contact {
  background: var(--paper);
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 52px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--night) 62%, var(--red));
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.contact-panel p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.75);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px max(24px, calc((100vw - 1160px) / 2));
  color: rgba(255, 255, 255, 0.72);
  background: #0d0f13;
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

.privacy-page {
  background:
    radial-gradient(circle at 80% 0%, rgba(201, 154, 62, 0.18), transparent 32%),
    var(--paper);
}

.privacy-main {
  padding-top: 116px;
}

.privacy-hero {
  padding: 86px max(24px, calc((100vw - 1160px) / 2)) 58px;
}

.privacy-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
}

.privacy-hero p {
  width: min(740px, 100%);
  margin-top: 24px;
  font-size: 1.15rem;
}

.policy-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 26px;
  padding: 0 max(24px, calc((100vw - 1160px) / 2)) 110px;
  align-items: start;
}

.policy-summary,
.policy-content {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 44px rgba(17, 19, 23, 0.08);
}

.policy-summary {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 14px;
  padding: 24px;
}

.policy-summary strong {
  font-size: 1.18rem;
}

.policy-summary span {
  color: var(--muted);
  line-height: 1.5;
  text-transform: none;
}

.policy-content {
  padding: 38px;
}

.policy-content h2 {
  margin: 0 0 12px;
  font-size: 1.34rem;
  line-height: 1.2;
}

.policy-content p {
  margin: 0 0 32px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes heroZoom {
  from {
    transform: scale(1.05) translateY(0);
  }
  to {
    transform: scale(1.12) translateY(-18px);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes lane {
  to {
    transform: translateX(-92px);
  }
}

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

@media (max-width: 900px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .nav-links {
    display: none;
  }

  .nav-action {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
  }

  .hero-panel,
  .split,
  .fleet-grid,
  .service,
  .info-grid,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    margin-top: 44px;
  }

  .section {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .section-head,
  .contact-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .fleet-card,
  .fleet-card img {
    min-height: 390px;
  }

  .service-visual {
    min-height: 360px;
  }

  .policy-summary {
    position: static;
  }
}

@media (max-width: 560px) {
  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    display: none;
  }

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

  .hero h1 {
    font-size: clamp(3.2rem, 18vw, 5rem);
  }

  .hero-panel div,
  .fleet-body,
  .contact-panel,
  .policy-content {
    padding: 22px;
  }

  .info-card {
    min-height: 136px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
