/* ================================================================
   CORSA RENTALS — STYLESHEET
   ================================================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --announce-height: 40px;
  --red:          #CC0000;
  --red-bright:   #e60000;
  --red-dim:      rgba(204, 0, 0, 0.12);
  --red-border:   rgba(204, 0, 0, 0.28);
  --black:        #0a0a0a;
  --dark:         #111111;
  --dark-2:       #181818;
  --dark-3:       #222222;
  --white:        #ffffff;
  --gray:         #7a7a7a;
  --gray-2:       #555555;
  --border:       rgba(255, 255, 255, 0.065);
  --border-2:     rgba(255, 255, 255, 0.035);

  --font-display: 'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width:    1200px;
  --nav-height:   80px;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition:   0.3s var(--ease);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
img { max-width: 100%; display: block; }

/* --- Utilities --- */
.text-red   { color: var(--red); }
.font-600   { font-weight: 600; }
.container  {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 30px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition:
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform 0.2s var(--ease-spring);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Red shimmer on hover */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease);
}
.btn:hover::after { transform: translateX(100%); }

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 2px 12px rgba(204, 0, 0, 0.25);
}
.btn-red:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  box-shadow: 0 6px 28px rgba(204, 0, 0, 0.45);
  transform: translateY(-2px);
}
.btn-red:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.22);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost:active { transform: translateY(0); }

.btn-large {
  padding: 17px 48px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.btn-sm {
  padding: 9px 22px;
  font-size: 0.72rem;
}

/* ================================================================
   SECTION COMMON
   ================================================================ */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.eyebrow {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  letter-spacing: 0.03em;
  line-height: 0.93;
  text-transform: uppercase;
}

.section-sub {
  margin-top: 18px;
  font-size: 0.95rem;
  color: var(--gray);
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible             { opacity: 1; transform: none; }
.reveal-delay-1.visible     { transition-delay: 0.13s; }
.reveal-delay-2.visible     { transition-delay: 0.26s; }
.reveal-delay-3.visible     { transition-delay: 0.39s; }

/* ================================================================
   ANNOUNCEMENT BAR
   ================================================================ */
.announce-bar {
  background: linear-gradient(90deg, var(--dark) 0%, #160000 50%, var(--dark) 100%);
  border-top: 1px solid rgba(204,0,0,0.25);
  border-bottom: 1px solid rgba(204,0,0,0.25);
  color: var(--white);
  padding: 14px 56px;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

/* Moving shine sweep */
.announce-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(204,0,0,0.07) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: announce-shine 3s linear infinite;
  pointer-events: none;
}

@keyframes announce-shine {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.announce-badge {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  color: var(--red);
  text-shadow:
    0 0 8px  rgba(204,0,0,0.9),
    0 0 20px rgba(204,0,0,0.5),
    0 0 40px rgba(204,0,0,0.25);
  animation: badge-pulse 2.2s ease-in-out infinite;
  white-space: nowrap;
}

@keyframes badge-pulse {
  0%, 100% {
    text-shadow:
      0 0 8px  rgba(204,0,0,0.9),
      0 0 20px rgba(204,0,0,0.5),
      0 0 40px rgba(204,0,0,0.25);
  }
  50% {
    text-shadow:
      0 0 12px rgba(204,0,0,1),
      0 0 28px rgba(204,0,0,0.7),
      0 0 55px rgba(204,0,0,0.35);
  }
}

.announce-text {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.7);
}

.announce-text strong {
  color: var(--white);
  font-weight: 700;
}

.announce-link {
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s;
}

.announce-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--red);
  box-shadow: 0 0 6px rgba(204,0,0,0.8);
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform 0.3s var(--transition);
}

.announce-link:hover { color: #ff2222; }
.announce-link:hover::after { transform: scaleX(1); }

.announce-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 1.1rem;
  line-height: 1;
  padding: 4px 8px;
  cursor: pointer;
  transition: color 0.2s;
}

.announce-close:hover { color: var(--white); }

.announce-bar.hidden { display: none; }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.45s var(--ease),
    border-color 0.45s var(--ease);
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.96);
  border-bottom-color: var(--border);
}

.nav-container {
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { margin-left: 8px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* BG layers */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Subtle grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(204, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 75%);
  will-change: transform;
}

/* Radial red glows */
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 50% at 50% 110%, rgba(204, 0, 0, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 8%  80%,  rgba(204, 0, 0, 0.07) 0%, transparent 60%),
    var(--black);
}

/* Diagonal racing stripe */
.hero-stripe {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    -35deg,
    transparent 0%,
    transparent 48%,
    rgba(204, 0, 0, 0.055) 48%,
    rgba(204, 0, 0, 0.055) 51%,
    transparent 51%,
    transparent 100%
  );
}

/* Speed lines animation */
.hero-speed {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -52deg,
    transparent,
    transparent 46px,
    rgba(255, 255, 255, 0.011) 46px,
    rgba(255, 255, 255, 0.011) 47px
  );
  animation: heroSpeedMove 9s linear infinite;
}
@keyframes heroSpeedMove {
  from { background-position: 0 0; }
  to   { background-position: 130px 130px; }
}

/* Content */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 56px 32px;
  max-width: 1000px;
  width: 100%;
  will-change: transform;
}

.hero-eyebrow-wrap {
  margin-bottom: 28px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(204, 0, 0, 0.4);
  padding: 7px 22px;
  border-radius: 2px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-title em {
  font-style: normal;
  display: inline-block;
  /* subtle text shadow for red */
  text-shadow: 0 0 60px rgba(204, 0, 0, 0.4);
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 44px;
  font-weight: 300;
  letter-spacing: 0.07em;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
}

/* Subtle slide-up for hero elements — no fade so content is always visible */
.hero-eyebrow-wrap { animation: heroSlide 0.8s       var(--ease) both; }
.hero-title        { animation: heroSlide 0.8s 0.12s  var(--ease) both; }
.hero-sub          { animation: heroSlide 0.8s 0.24s  var(--ease) both; }
.hero-actions      { animation: heroSlide 0.8s 0.36s  var(--ease) both; }
.hero-badge        { animation: heroSlide 0.8s 0.48s  var(--ease) both; }

@keyframes heroSlide {
  from { transform: translateY(18px); }
  to   { transform: translateY(0); }
}

/* Watermark */
.hero-watermark {
  position: absolute;
  bottom: -4%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(130px, 30vw, 380px);
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.018);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  line-height: 1;
  z-index: 0;
  will-change: transform;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.3;
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white);
  transition: opacity var(--transition);
}
.hero-scroll:hover { opacity: 0.65; }
.hero-scroll-track {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1px;
  overflow: hidden;
  position: relative;
}
.hero-scroll-dot {
  width: 1px;
  height: 16px;
  background: var(--white);
  border-radius: 1px;
  animation: scrollDrop 2.2s var(--ease) infinite;
}
@keyframes scrollDrop {
  0%   { transform: translateY(-16px); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(48px);  opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ================================================================
   MARQUEE
   ================================================================ */
.marquee-strip {
  background: var(--red);
  overflow: hidden;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.marquee-track { width: 100%; overflow: hidden; }

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
  white-space: nowrap;
}

.marquee-inner span {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.marquee-dot {
  font-size: 0.45rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
  letter-spacing: 0 !important;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-strip:hover .marquee-inner { animation-play-state: paused; }

/* ================================================================
   STATS STRIP
   ================================================================ */
.stats-strip {
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 26px 20px;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.4s var(--ease);
}
.stat:hover::before { width: 60%; }

.stat-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.07em;
  color: var(--white);
}

.stat-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ================================================================
   FLEET SECTION
   ================================================================ */
.fleet-section {
  padding: 96px 0;
  background: var(--black);
  position: relative;
}
.fleet-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(204, 0, 0, 0.35), transparent);
}

/* ── Car grid: 2 columns ── */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 44px;
}

/* ── Car card ── */
.car-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.car-card:hover {
  border-color: var(--red-border);
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(204, 0, 0, 0.06);
}

/* ── Slider ── */
.car-slider {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0d0d0d;
}

.car-slides {
  display: flex;
  height: 100%;
  transition: transform 0.5s var(--ease);
  will-change: transform;
}

.car-slide {
  flex: 0 0 100%;
  height: 100%;
}
.car-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.car-card:hover .car-slide img { transform: scale(1.03); }

/* Gradient overlay on photo */
.car-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}

/* Slider buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), transform 0.2s var(--ease);
}
.slider-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-50%) scale(1.08);
}
.slider-btn--prev { left: 14px; }
.slider-btn--next { right: 14px; }

/* Dot indicators */
.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 7px;
}
.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  border: none;
  padding: 0;
}
.slider-dot.active {
  background: var(--white);
  transform: scale(1.25);
}

/* ── Car card body ── */
.car-card-body {
  padding: 26px 28px 30px;
}

.car-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.fleet-tag {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 11px;
  border-radius: 2px;
}
.fleet-tag--hot {
  color: #ff5555;
  border-color: rgba(204, 0, 0, 0.35);
  background: rgba(204, 0, 0, 0.08);
}

.car-avail {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #44cc66;
}

.car-name {
  font-family: var(--font-display);
  font-size: 2.6rem;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 10px;
}

.car-desc {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 20px;
}

.fleet-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray);
}
.fleet-note a { font-weight: 600; }
.fleet-note a:hover { opacity: 0.75; }

/* ================================================================
   HOW TO RENT
   ================================================================ */
.how-section {
  padding: 96px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.how-section::before,
.how-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
}
.how-section::before { top: 0;    background: linear-gradient(to right, transparent, rgba(204, 0, 0, 0.6), transparent); }
.how-section::after  { bottom: 0; background: linear-gradient(to right, transparent, rgba(204, 0, 0, 0.25), transparent); }

/* Steps row: step > connector > step > connector > step */
.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 72px;
}

/* Connector */
.step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  color: rgba(204, 0, 0, 0.35);
}
.connector-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, transparent, rgba(204, 0, 0, 0.3), transparent);
}

.step {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px 32px 36px;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.step:hover {
  border-color: var(--red-border);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(204, 0, 0, 0.05);
}
/* Accent corner */
.step::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 36px 36px 0;
  border-color: transparent rgba(204, 0, 0, 0.07) transparent transparent;
}

.step-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(204, 0, 0, 0.1);
  letter-spacing: -0.02em;
  transition: color 0.3s var(--ease);
}
.step:hover .step-num { color: rgba(204, 0, 0, 0.2); }

.step-icon {
  width: 48px;
  height: 48px;
  background: rgba(204, 0, 0, 0.08);
  border: 1px solid rgba(204, 0, 0, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.step p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.75;
}
.step p a { font-weight: 600; }

.how-cta { text-align: center; }

/* ================================================================
   CAR MANAGEMENT
   ================================================================ */
.mgmt-section {
  padding: 96px 0;
  background: var(--black);
  position: relative;
}

.mgmt-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.mgmt-content .eyebrow,
.mgmt-content .section-title { text-align: left; }
.mgmt-content .section-title   { margin-bottom: 24px; }

.mgmt-lead {
  font-size: 0.975rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 440px;
}

.mgmt-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 44px;
}
.mgmt-perks li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.91rem;
  color: rgba(255, 255, 255, 0.72);
}
.perk-bullet {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(204, 0, 0, 0.5);
}

/* Cards grid (right column) */
.mgmt-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mgmt-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  transition: border-color var(--transition), box-shadow var(--transition), transform 0.25s var(--ease-spring);
}
.mgmt-card:hover {
  border-color: var(--red-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transform: translateY(-3px);
}
.mgmt-card--wide { grid-column: span 2; }

.mgmt-card-icon {
  width: 42px;
  height: 42px;
  background: rgba(204, 0, 0, 0.08);
  border: 1px solid rgba(204, 0, 0, 0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 16px;
}

.mgmt-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.mgmt-card p {
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.7;
}
.mgmt-card p a { font-weight: 600; }

/* ================================================================
   CONTACT SECTION
   ================================================================ */
.contact-section {
  padding: 96px 0;
  background: var(--dark);
  position: relative;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(204, 0, 0, 0.6), transparent);
}

.contact-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(204, 0, 0, 0.18);
  text-align: center;
}

.contact-box-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 105%, rgba(204, 0, 0, 0.16) 0%, transparent 65%),
    linear-gradient(160deg, var(--dark-2) 0%, #180000 100%);
}

.contact-box-content {
  position: relative;
  z-index: 1;
  padding: 72px 60px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.contact-left { text-align: left; }
.contact-left .eyebrow { margin-bottom: 14px; }
.contact-left .section-title { margin-bottom: 18px; }

.contact-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

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

/* ---- Form ---- */
.contact-right { width: 100%; }

.form-success {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(204, 0, 0, 0.08);
  border: 1px solid rgba(204, 0, 0, 0.3);
  border-radius: 8px;
  padding: 20px 24px;
  color: #fff;
  font-size: 0.95rem;
}

.form-error-banner {
  background: rgba(204, 0, 0, 0.12);
  border: 1px solid rgba(204, 0, 0, 0.4);
  border-radius: 8px;
  padding: 12px 16px;
  color: #ff6b6b;
  font-size: 0.875rem;
  margin-bottom: 16px;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.label-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.3);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 11px 14px;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(204, 0, 0, 0.7);
  background: rgba(255, 255, 255, 0.07);
}

.form-group input[aria-invalid="true"],
.form-group select[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
  border-color: #ff4444;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group select option {
  background: #1a1a1a;
  color: #fff;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.5);
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.field-error {
  color: #ff6b6b;
  font-size: 0.78rem;
  min-height: 1em;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}

.footer-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.8;
}

.footer-col h5 {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 22px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul a {
  font-size: 0.875rem;
  color: var(--gray);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }

.footer-col p {
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 10px;
}

/* Social button */
.social-row { margin-top: 20px; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--gray);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.social-btn:hover {
  background: rgba(204, 0, 0, 0.1);
  border-color: rgba(204, 0, 0, 0.35);
  color: var(--red);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
}
.footer-tagline { font-style: italic; }

/* ================================================================
   RESPONSIVE — 1100px
   ================================================================ */
@media (max-width: 1100px) {
  .cars-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
  .mgmt-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .mgmt-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .mgmt-card--wide { grid-column: span 1; }
}

/* ================================================================
   RESPONSIVE — 860px
   ================================================================ */
@media (max-width: 860px) {
  .steps-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step-connector { display: none; }
  .step { height: auto; }
}

/* ================================================================
   RESPONSIVE — 768px
   ================================================================ */
@media (max-width: 768px) {
  :root { --nav-height: 68px; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 24px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    display: block;
    padding: 17px 32px;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
  }
  .nav-links a::after { display: none; }
  .nav-cta   { display: none; }
  .hamburger { display: flex; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3),
  .stat:nth-child(4) { border-top: 1px solid var(--border); }

  .contact-box-content {
    padding: 56px 28px;
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-left { text-align: center; }
  .contact-actions { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .mgmt-cards {
    grid-template-columns: 1fr 1fr;
  }
  .mgmt-card--wide { grid-column: span 2; }
}

/* ================================================================
   RESPONSIVE — 560px
   ================================================================ */
@media (max-width: 560px) {
  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .mgmt-cards {
    grid-template-columns: 1fr;
  }
  .mgmt-card--wide { grid-column: span 1; }

  .section-title { font-size: 2.6rem; }
  .hero-title    { font-size: 3.6rem; }
  .container     { padding: 0 20px; }
}
