:root {
  --black: #7f93a3;
  --ink: #0c1724;
  --muted: #607182;
  --line: rgba(11, 28, 44, 0.12);
  --paper: #aebdca;
  --white: #ffffff;
  --gold: #00d5ff;
  --gold-dark: #6dff4f;
  --gold-soft: #c9ff3d;
  --accent-on-gray: #d7ff42;
  --cta-hover: #ff4f1f;
  --accent-rgb: 0, 213, 255;
  --accent-2-rgb: 109, 255, 79;
  --header-bg: rgba(127, 147, 163, 0.88);
  --header-bg-solid: rgba(151, 170, 184, 0.98);
  --hero-right: rgba(0, 183, 255, 0.28);
  --btn-text: #061018;
  --shadow: 0 26px 70px rgba(11, 28, 44, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--black);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(12, 23, 36, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 23, 36, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 72%);
}

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: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: var(--header-bg);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: var(--header-bg-solid);
  border-bottom-color: var(--line);
  box-shadow: 0 14px 40px rgba(11, 28, 44, 0.08);
}

.brand,
.nav,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-radius: 8px;
  box-shadow: 0 0 38px rgba(var(--accent-rgb), 0.44);
}

.nav {
  gap: 26px;
  color: rgba(12, 23, 36, 0.72);
  font-size: 0.95rem;
}

.nav a,
.header-cta {
  transition: color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav a:hover {
  color: var(--gold);
}

.header-cta:hover {
  color: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(11, 28, 44, 0.12);
}

.header-cta {
  padding: 12px 18px;
  color: var(--ink);
  background: rgba(246, 250, 253, 0.9);
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  border-radius: 8px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 132px clamp(18px, 5vw, 72px) 34px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(127, 147, 163, 0.96) 0%, rgba(127, 147, 163, 0.82) 44%, rgba(127, 147, 163, 0.58) 100%),
    linear-gradient(135deg, transparent 0 55%, rgba(var(--accent-2-rgb), 0.12) 55% 58%, transparent 58%),
    radial-gradient(circle at 82% 28%, var(--hero-right), transparent 34%),
    linear-gradient(135deg, #8fa2b1, #6f8798);
}

.hero-road {
  position: absolute;
  right: -18vw;
  bottom: -18vh;
  width: min(980px, 72vw);
  height: 64vh;
  background:
    linear-gradient(90deg, transparent 0 46%, rgba(var(--accent-rgb), 0.85) 46% 47%, transparent 47% 54%, rgba(var(--accent-2-rgb), 0.66) 54% 55%, transparent 55%),
    linear-gradient(125deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.025) 42%, transparent 72%);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  filter: drop-shadow(0 0 42px rgba(var(--accent-rgb), 0.24));
  transform: perspective(640px) rotateX(62deg) rotateZ(-18deg);
  transform-origin: bottom right;
  opacity: 0.92;
}

.hero-road::before,
.hero-road::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
}

.hero-road::before {
  top: 34%;
}

.hero-road::after {
  top: 66%;
}

.hero-content {
  position: relative;
  max-width: 820px;
  padding-bottom: 120px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow,
.section-dark .eyebrow,
.process-item span,
.rules-section .eyebrow,
.booking-section .eyebrow,
.contact-section .eyebrow {
  color: var(--accent-on-gray);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 7vw, 6.7rem);
  line-height: 0.96;
  letter-spacing: 0;
  max-width: 980px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0;
}

.hero-subtitle {
  max-width: 560px;
  color: rgba(12, 23, 36, 0.72);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.private-note {
  max-width: 590px;
  margin: 18px 0 0;
  padding: 14px 16px;
  color: rgba(12, 23, 36, 0.78);
  background: rgba(246, 250, 253, 0.86);
  border: 1px solid rgba(var(--accent-rgb), 0.38);
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.55;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-tags span {
  padding: 10px 12px;
  color: rgba(12, 23, 36, 0.78);
  background: rgba(246, 250, 253, 0.88);
  border: 1px solid rgba(var(--accent-rgb), 0.42);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 800;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: var(--btn-text);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 14px 34px rgba(var(--accent-rgb), 0.38);
}

.btn-primary:hover {
  box-shadow: 0 18px 42px rgba(var(--accent-rgb), 0.36);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(246, 250, 253, 0.9);
  border: 1px solid rgba(var(--accent-rgb), 0.22);
}

.hero-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin-left: auto;
  background: rgba(12, 23, 36, 0.12);
  border: 1px solid rgba(12, 23, 36, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.hero-stats div {
  padding: 22px;
  background: rgba(246, 250, 253, 0.88);
  backdrop-filter: blur(14px);
}

.hero-stats strong {
  display: block;
  color: var(--gold);
  font-size: 1.5rem;
  text-shadow: 0 0 14px rgba(var(--accent-rgb), 0.28);
}

.hero-stats span {
  color: rgba(12, 23, 36, 0.68);
  font-size: 0.92rem;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: #718898;
  border-top: 1px solid rgba(12, 23, 36, 0.1);
  border-bottom: 1px solid rgba(12, 23, 36, 0.1);
}

.process-item {
  min-height: 158px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.08), transparent 44%),
    rgba(255, 255, 255, 0.68);
}

.process-item span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
}

.process-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.process-item p {
  margin: 0;
  color: rgba(12, 23, 36, 0.62);
  line-height: 1.6;
}

.section {
  padding: clamp(74px, 9vw, 126px) clamp(18px, 5vw, 72px);
}

.section-dark {
  background:
    radial-gradient(circle at 12% 0%, rgba(var(--accent-rgb), 0.12), transparent 30%),
    radial-gradient(circle at 90% 16%, rgba(var(--accent-2-rgb), 0.12), transparent 26%),
    #7f93a3;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 44px;
}

.fleet-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.46fr);
  align-items: end;
  gap: 28px;
}

.fleet-heading p:not(.eyebrow) {
  margin-bottom: 10px;
  color: rgba(12, 23, 36, 0.62);
  line-height: 1.75;
}

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

.car-card {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    #111922;
  border: 1px solid rgba(12, 23, 36, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.34);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.car-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.18), transparent 24%);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.car-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--accent-rgb), 0.46);
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(var(--accent-rgb), 0.12);
}

.car-card:hover::before {
  opacity: 1;
}

.car-image {
  position: relative;
  display: grid;
  aspect-ratio: 1.45 / 1;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.28), transparent 38%),
    linear-gradient(150deg, rgba(var(--accent-2-rgb), 0.16), transparent 52%),
    linear-gradient(145deg, #20262d, #07090c);
}

.car-image::before {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: 23%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.86), rgba(var(--accent-2-rgb), 0.76), transparent);
  transform: rotate(-10deg);
  box-shadow: 0 0 24px rgba(var(--accent-rgb), 0.45);
}

.car-image::after {
  content: "";
  position: absolute;
  inset: auto 26px 22px;
  height: 42px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.72), transparent 68%);
}

.car-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  z-index: 2;
}

.car-image img.focus-left {
  object-position: 18% 56%;
}

.car-image img[src] {
  color: transparent;
}

.car-image img.is-missing {
  display: none;
}

.car-image img:not([src]),
.car-image img[src=""] {
  display: none;
}

.car-image img.is-missing + .image-fallback,
.car-image img:not([src]) + .image-fallback,
.car-image img[src=""] + .image-fallback {
  display: block;
}

.image-fallback {
  position: relative;
  z-index: 1;
  display: block;
  padding: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  text-align: center;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.55);
}

.car-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 8px 10px;
  color: var(--btn-text);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.car-body {
  padding: 24px;
}

.car-title-row,
.price-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.car-title-row h3 {
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.25;
}

.car-title-row span {
  padding: 7px 10px;
  color: var(--gold);
  background: rgba(var(--accent-rgb), 0.12);
  border-radius: 8px;
  font-weight: 800;
}

.car-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.car-specs div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

dt {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
}

dd {
  margin: 6px 0 0;
  font-weight: 800;
}

.price-row {
  align-items: start;
  flex-direction: column;
  margin-bottom: 14px;
}

.price-label,
.unlimited {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.84rem;
}

.price-row strong {
  display: block;
  color: var(--gold);
  font-size: 2rem;
  line-height: 1.15;
  white-space: nowrap;
}

.price-row small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.unlimited {
  width: fit-content;
  margin-top: 8px;
  padding: 7px 9px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  text-align: left;
}

.card-note {
  min-height: 44px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  line-height: 1.55;
}

.btn-card {
  width: 100%;
  color: var(--white);
  background: rgba(var(--accent-rgb), 0.06);
  border: 1px solid rgba(var(--accent-rgb), 0.5);
}

.rules-section {
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.12), transparent 30%),
    linear-gradient(225deg, rgba(var(--accent-2-rgb), 0.1), transparent 34%),
    #778e9f;
  border-top: 1px solid rgba(12, 23, 36, 0.08);
  border-bottom: 1px solid rgba(12, 23, 36, 0.08);
}

.rules-heading {
  max-width: 960px;
}

.rules-heading p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(12, 23, 36, 0.66);
  font-size: 1.04rem;
  line-height: 1.75;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(12, 23, 36, 0.1);
  border: 1px solid rgba(12, 23, 36, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.benefit {
  min-height: 172px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.07), transparent 52%),
    rgba(255, 255, 255, 0.78);
}

.benefit span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-weight: 900;
}

.benefit h3 {
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.35;
}

.rules-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  margin-top: 34px;
  padding: clamp(24px, 4vw, 42px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.14), transparent 38%),
    #101923;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 62px rgba(11, 28, 44, 0.22);
}

.rules-panel-heading h3 {
  color: var(--white);
  font-size: clamp(1.45rem, 2.4vw, 2.3rem);
  line-height: 1.16;
}

.rules-list {
  display: grid;
  gap: 12px;
}

.rules-list p {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  margin: 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.rules-list span {
  color: var(--accent-on-gray);
  font-weight: 900;
}

.rules-list strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  line-height: 1.55;
}

.booking-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 6vw, 84px);
  background:
    linear-gradient(120deg, rgba(var(--accent-rgb), 0.12), transparent 35%),
    #7f93a3;
}

.booking-copy {
  position: sticky;
  top: 110px;
  align-self: start;
}

.booking-copy p:not(.eyebrow) {
  color: rgba(12, 23, 36, 0.7);
  line-height: 1.8;
}

.booking-form {
  padding: clamp(22px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(12, 23, 36, 0.12);
  border-radius: 8px;
}

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

label,
legend {
  color: rgba(12, 23, 36, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 15px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(12, 23, 36, 0.16);
  border-radius: 8px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

select option {
  color: #111;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.14);
}

fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0;
  padding: 0;
  border: 0;
}

legend {
  flex-basis: 100%;
  margin-bottom: 2px;
}

.radio-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(12, 23, 36, 0.13);
  border-radius: 8px;
  cursor: pointer;
}

.radio-card input {
  width: auto;
  margin: 0;
  accent-color: var(--gold);
}

.consent-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  margin-top: 18px;
  padding: 16px;
  color: rgba(12, 23, 36, 0.78);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(12, 23, 36, 0.13);
  border-radius: 8px;
  line-height: 1.55;
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.availability-note {
  margin-top: 18px;
  padding: 16px;
  color: rgba(12, 23, 36, 0.76);
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  border-radius: 8px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.availability-note strong {
  color: var(--gold);
}

.form-submit {
  width: 100%;
  margin-top: 22px;
}

.form-message {
  min-height: 0;
  margin: 16px 0 0;
  padding: 0;
  color: transparent;
  background: transparent;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.45;
}

.form-message.is-success,
.form-message.is-error {
  padding: 16px 18px;
  color: var(--ink);
  box-shadow: 0 14px 28px rgba(12, 23, 36, 0.12);
}

.form-message.is-success {
  background: #c8f7d6;
  border: 1px solid #2db866;
}

.form-message.is-error {
  background: #ffe1df;
  border: 1px solid #e5534b;
}

.payment-section {
  color: var(--ink);
  background: #7f93a3;
}

.payment-panel {
  max-width: 940px;
  padding: clamp(28px, 5vw, 52px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(12, 23, 36, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.payment-panel ul {
  margin: 22px 0 0;
  padding-left: 20px;
  color: rgba(12, 23, 36, 0.76);
  line-height: 1.8;
}

.faq-section {
  background:
    linear-gradient(145deg, rgba(var(--accent-2-rgb), 0.1), transparent 36%),
    #778e9f;
}

.faq-section .section-heading p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(12, 23, 36, 0.68);
  line-height: 1.75;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(12, 23, 36, 0.11);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(11, 28, 44, 0.08);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--btn-text);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-radius: 8px;
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: rgba(12, 23, 36, 0.72);
  line-height: 1.7;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.18), transparent 38%),
    #778e9f;
}

.contact-card {
  max-width: 920px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 34px 0;
}

.contact-list p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid rgba(12, 23, 36, 0.12);
}

.contact-list span {
  color: rgba(12, 23, 36, 0.56);
}

.contact-list strong {
  text-align: right;
}

.privacy-section {
  background: #7f93a3;
  border-top: 1px solid rgba(12, 23, 36, 0.08);
}

.privacy-panel {
  max-width: 1040px;
  padding: clamp(26px, 5vw, 50px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(12, 23, 36, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.privacy-grid p {
  margin: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(12, 23, 36, 0.1);
  border-radius: 8px;
}

.privacy-grid strong,
.privacy-grid span {
  display: block;
}

.privacy-grid strong {
  margin-bottom: 8px;
  color: var(--ink);
}

.privacy-grid span {
  color: rgba(12, 23, 36, 0.68);
  line-height: 1.65;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(12, 23, 36, 0.52);
  background: #7f93a3;
  border-top: 1px solid rgba(12, 23, 36, 0.1);
}

.footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(12, 23, 36, 0.72);
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--cta-hover);
}

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

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

@media (max-width: 980px) {
  .nav {
    display: none;
  }

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

  .fleet-grid,
  .benefits-grid,
  .rules-panel,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .booking-copy {
    position: static;
  }

  .hero-road {
    right: -42vw;
    bottom: -10vh;
    width: 120vw;
    opacity: 0.55;
  }

  .process-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    padding: 10px 12px;
  }

  .hero {
    min-height: 92svh;
    padding: 112px 18px 24px;
  }

  .hero-content {
    padding-bottom: 28px;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-stats,
  .form-grid,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    padding: 18px;
  }

  .car-title-row,
  .price-row,
  .contact-list p {
    flex-direction: column;
  }

  .unlimited,
  .contact-list strong {
    text-align: left;
  }

  .car-specs {
    grid-template-columns: 1fr;
  }

  .car-image {
    aspect-ratio: 1.08 / 1;
  }

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

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