/* ============================================
   V DEDA — Premium Car Rental
   Sleek · Modern · Red/Black/Gray
   ============================================ */

:root {
  --red: #e50914;
  --red-dark: #b00610;
  --red-glow: rgba(229, 9, 20, 0.35);
  --black: #0a0a0a;
  --black-2: #121212;
  --black-3: #1a1a1a;
  --gray-1: #1f1f1f;
  --gray-2: #2a2a2a;
  --gray-3: #3a3a3a;
  --gray-4: #6a6a6a;
  --gray-5: #a0a0a0;
  --gray-6: #d4d4d4;
  --white: #f5f5f5;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-hard: cubic-bezier(0.83, 0, 0.17, 1);
  --radius: 14px;

  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: "Syncopate", "Inter", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

::selection {
  background: var(--red);
  color: #fff;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== Utilities ===== */
.section {
  padding: 110px 0;
  position: relative;
}
.section__head {
  max-width: 720px;
  margin-bottom: 56px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 14px;
  text-transform: uppercase;
}
.section__title .accent {
  color: var(--red);
}
.section__sub {
  margin-top: 18px;
  font-size: 1rem;
  color: var(--gray-5);
  max-width: 600px;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gray-5);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.eyebrow > span:first-child:empty {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 30px -10px var(--red-glow);
}
.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px var(--red-glow);
}
.btn--ghost {
  border-color: var(--gray-3);
  color: var(--white);
}
.btn--ghost:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}
.btn--full {
  width: 100%;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 102;
  width: calc(100% - 32px);
  max-width: 1320px;
  padding: 10px 14px 10px 18px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px -20px rgba(0, 0, 0, 0.6);
  transition:
    top 0.4s var(--ease),
    padding 0.4s var(--ease),
    background 0.4s var(--ease),
    border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  top: 12px;
  background: rgba(10, 10, 10, 0.78);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 50px -18px rgba(0, 0, 0, 0.7);
}
.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
}
.nav__logo-img {
  display: block;
  height: 32px;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s var(--ease);
}
.nav__logo:hover .nav__logo-img {
  transform: scale(1.05);
}

.nav__links {
  display: flex;
  gap: 4px;
  justify-self: center;
}
.nav__link {
  position: relative;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-5);
  padding: 10px 16px;
  border-radius: 999px;
  transition:
    color 0.3s var(--ease),
    background 0.3s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.35s var(--ease);
}
.nav__link:hover {
  color: #fff;
}
.nav__link:hover::after {
  width: 16px;
}

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

.nav__call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px 10px 14px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px -10px var(--red-glow);
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.nav__call:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px var(--red-glow);
}
.nav__call-icon {
  width: 16px;
  height: 16px;
  color: #fff;
  stroke: currentColor;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--gray-5);
  cursor: pointer;
  transition:
    border-color 0.3s var(--ease),
    background 0.3s var(--ease),
    color 0.3s var(--ease);
}
.lang-switch:hover {
  border-color: rgba(229, 9, 20, 0.4);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}
.lang-switch__opt {
  transition: color 0.3s var(--ease);
}
.lang-switch__opt.is-active {
  color: var(--red);
}
.lang-switch__sep {
  color: var(--gray-3);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 22px;
  justify-self: end;
  position: relative;
  z-index: 110;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
  transform-origin: center;
}
.nav__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Mobile full-screen menu ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 103;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 32px 48px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.mobile-menu__close:hover,
.mobile-menu__close:active {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.05);
}
.mobile-menu__close svg {
  width: 22px;
  height: 22px;
}
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease),
    color 0.3s var(--ease);
  display: flex;
  align-items: center;
  gap: 16px;
}
.mobile-menu__link::before {
  content: "";
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s var(--ease);
}
.mobile-menu__link:hover,
.mobile-menu__link:active {
  color: var(--red);
}
.mobile-menu__link:hover::before,
.mobile-menu__link:active::before {
  width: 24px;
}
.mobile-menu.is-open .mobile-menu__link {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu.is-open .mobile-menu__link:nth-child(1) {
  transition-delay: 0.12s;
}
.mobile-menu.is-open .mobile-menu__link:nth-child(2) {
  transition-delay: 0.18s;
}
.mobile-menu.is-open .mobile-menu__link:nth-child(3) {
  transition-delay: 0.24s;
}
.mobile-menu.is-open .mobile-menu__link:nth-child(4) {
  transition-delay: 0.3s;
}

.mobile-menu__foot {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease) 0.38s,
    transform 0.5s var(--ease) 0.38s;
}
.mobile-menu.is-open .mobile-menu__foot {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu__call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 14px 32px -12px var(--red-glow);
}
.mobile-menu__call svg {
  width: 16px;
  height: 16px;
}
.mobile-menu__ig {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease),
    color 0.3s var(--ease);
}
.mobile-menu__ig:hover {
  color: var(--red);
  border-color: var(--red);
  background: rgba(229, 9, 20, 0.08);
}
.mobile-menu__ig svg {
  width: 22px;
  height: 22px;
}

body.no-scroll {
  overflow: hidden;
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  min-height: 620px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 110px 0 90px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: #000;
  z-index: -3;
}

.hero__car {
  position: absolute;
  top: 52%;
  right: 2%;
  width: min(560px, 42vw);
  height: auto;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.55));
  -webkit-user-select: none;
  user-select: none;
  transform: translateY(-50%);
  animation: heroCarDriveIn 1.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes heroCarDriveIn {
  0% {
    transform: translateY(-50%) translateX(60vw);
    opacity: 0;
  }
  100% {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}
.hero__glow {
  position: absolute;
  top: 52%;
  right: -2%;
  transform: translateY(30%);
  width: min(640px, 52vw);
  height: min(200px, 22vw);
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(197, 32, 39, 0.55) 0%,
    rgba(197, 32, 39, 0.2) 35%,
    transparent 70%
  );
  filter: blur(8px);
  animation: heroGlowPulse 2.4s ease-in-out infinite;
}
@keyframes heroGlowPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: translateY(30%) scale(0.95);
  }
  50% {
    opacity: 1;
    transform: translateY(30%) scale(1.08);
  }
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(
    ellipse 80% 60% at 30% 40%,
    #000 30%,
    transparent 75%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 60% at 30% 40%,
    #000 30%,
    transparent 75%
  );
  z-index: -2;
}

.hero__content {
  position: relative;
  z-index: 2;
}
.hero__eyebrow,
.hero__title {
  max-width: 900px;
}
.hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: var(--gray-5);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.hero__line {
  display: block;
  overflow: hidden;
}
.hero__line--accent {
  color: var(--red);
}
.hero__line em {
  font-style: italic;
  font-family: "Inter", serif;
  font-weight: 300;
  text-transform: lowercase;
  letter-spacing: -0.02em;
  color: var(--gray-6);
}
.hero__sub {
  margin-top: 18px;
  max-width: 560px;
  font-size: 1rem;
  color: var(--gray-5);
}
.hero__actions {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__stats {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 720px;
  padding-top: 0;
}

.hero__stat {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero__stat-plus,
.hero__stat-unit {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  color: var(--red);
  font-weight: 700;
}
.hero__stat-label {
  flex-basis: 100%;
  font-size: 0.72rem;
  color: var(--gray-4);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 8px;
}

.hero__side {
  position: absolute;
  top: 50%;
  left: 56px;
  transform: translateY(-50%);
  z-index: 3;
  max-width: 360px;
  text-align: left;
  padding: 36px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 32px;
}
.hero__side-eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.35em;
  color: var(--red);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero__side-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: #fff;
  text-transform: uppercase;
}
.hero__side-title span {
  display: inline-block;
  color: var(--gray-5);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 10px;
  font-size: 1.5rem;
}
.hero__side-text {
  margin-top: 22px;
  font-size: 1.05rem;
  color: var(--gray-5);
  line-height: 1.55;
}
.hero__side-cta {
  margin-top: 28px;
  padding: 16px 32px;
  font-size: 0.85rem;
}

.hero__scroll {
  position: absolute;
  bottom: 120px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--gray-4);
  z-index: 2;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--gray-4), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--red);
  animation: scrollLine 2.4s var(--ease) infinite;
}
@keyframes scrollLine {
  0% {
    top: -40%;
  }
  100% {
    top: 100%;
  }
}

.hero__marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  border-top: 1px solid var(--gray-2);
  border-bottom: 1px solid var(--gray-2);
  padding: 22px 0;
  background: rgba(0, 0, 0, 0.4);
}
.marquee__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  color: var(--gray-4);
  font-weight: 700;
}
.marquee__track span:nth-child(even) {
  color: var(--red);
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== ABOUT ===== */
.about.section {
  background: #000;
  position: relative;
  overflow: hidden;
  min-height: 0;
  height: auto;
  padding: 70px 0 60px;
  display: flex;
  align-items: flex-start;
}
.about__image-wrap {
  position: absolute;
  top: 18%;
  bottom: 0;
  left: 0;
  width: 46%;
  max-width: 620px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(90deg, #000 0%, #000 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 55%,
    transparent 100%
  );
}
.about__image {
  width: 100%;
  height: 100%;
  background: url("assets/right-merc-logo.jpeg") center / cover no-repeat;
  transform: scaleX(-1);
  opacity: 0.55;
  filter: grayscale(40%) contrast(1.05);
}
.about .container {
  position: relative;
  z-index: 1;
  width: 100%;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
.about__lead {
  font-size: 1.05rem;
  color: var(--gray-6);
  line-height: 1.7;
  margin-bottom: 32px;
}
.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
}
.feature {
  padding-top: 28px;
  border-top: 1px solid var(--gray-2);
  position: relative;
  transition: border-color 0.4s var(--ease);
}
.feature:hover {
  border-top-color: var(--red);
}
.feature__num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--red);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.feature h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.feature p {
  color: var(--gray-5);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== FLEET ===== */
.fleet {
  background: linear-gradient(
    180deg,
    var(--black) 0%,
    var(--black-2) 50%,
    var(--black) 100%
  );
}

.fleet__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 56px;
}
.chip {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--gray-2);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-5);
  transition: all 0.3s var(--ease);
}
.chip:hover {
  color: #fff;
  border-color: var(--gray-4);
}
.chip--active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.fleet__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.car {
  background: linear-gradient(180deg, var(--black-3), var(--black-2));
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.5s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}
.car:hover {
  transform: translateY(-8px);
  border-color: var(--red);
  box-shadow: 0 30px 60px -20px rgba(229, 9, 20, 0.25);
}
.car.is-hidden {
  display: none;
}

.car__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 6px 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 4px;
  border: 1px solid var(--gray-3);
}
/* ===== Car photo carousel ===== */
.car__carousel {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: #0a0a0a;
}
.car__slides {
  position: absolute;
  inset: 0;
}
.car__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 0.6s var(--ease),
    transform 0.9s var(--ease);
  z-index: 1;
}
.car__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
.car__carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 10, 10, 0.85));
  z-index: 3;
  pointer-events: none;
}

.car__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition:
    opacity 0.3s var(--ease),
    background 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.car:hover .car__arrow {
  opacity: 1;
}
.car__arrow:hover {
  background: var(--red);
  border-color: var(--red);
}
.car__arrow--prev {
  left: 12px;
}
.car__arrow--next {
  right: 12px;
}

.car__dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.car__dot {
  width: 18px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  transition:
    background 0.3s var(--ease),
    width 0.3s var(--ease);
  cursor: pointer;
  padding: 0;
}
.car__dot:hover {
  background: rgba(255, 255, 255, 0.6);
}
.car__dot.is-active {
  background: var(--red);
  width: 28px;
}

.car__body {
  padding: 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.car__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.car__head h3 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.car__price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--red);
  font-weight: 700;
  white-space: nowrap;
}
.car__price em {
  font-style: normal;
  font-size: 0.7rem;
  color: var(--gray-5);
  font-weight: 400;
  margin-left: 2px;
  font-family: var(--font-sans);
}
.car__specs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--gray-5);
  font-size: 0.82rem;
}
.car__specs i {
  display: inline-block;
  width: 3px;
  height: 3px;
  background: var(--gray-3);
  border-radius: 50%;
}
.car__cta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--gray-2);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  transition:
    color 0.3s var(--ease),
    letter-spacing 0.3s var(--ease);
}
.car__cta:hover {
  color: var(--red);
  letter-spacing: 0.22em;
}

.fleet__foot {
  margin-top: 64px;
  text-align: center;
}

/* ===== RATING ===== */
.rating {
  padding: 80px 0;
}
.rating__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.rating__smile {
  width: 90px;
  height: 90px;
  color: var(--red);
}
.rating__smile svg {
  width: 100%;
  height: 100%;
  display: block;
}
.rating__stars {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
}
.rating__star {
  width: 34px;
  height: 34px;
  display: block;
  filter: drop-shadow(0 4px 12px var(--red-glow));
}
.rating__score {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  margin-top: 4px;
}
.rating__score strong {
  color: var(--red);
}
.rating__label {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gray-5);
  font-weight: 500;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--black-2);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: stretch;
}
.contact__left {
  display: flex;
  flex-direction: column;
}
.contact__tire--big {
  width: 100%;
  height: 160px;
  background: url("assets/tire-mark.png") center / 100% 100% no-repeat;
  opacity: 0.85;
  filter: grayscale(100%) brightness(1.05) contrast(1.1);
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  margin-bottom: 80px;
}

.contact__lead {
  margin-top: 24px;
  color: var(--gray-5);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 460px;
}

/* ---- Form submit (metallic ignition button) ---- */
.form__submit {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-2);
}

.noSelect {
  -webkit-tap-highlight-color: transparent;
}

.mybutton {
  border: none;
  font-family: "Montserrat", var(--font-sans);
  display: grid;
  transform: scale(1);
  background-image: linear-gradient(
    to bottom right,
    #cccccc 0%,
    #6b6b6b 20%,
    black 50%,
    black 70%,
    #6b6b6b 100%
  );
  border-radius: 100px;
  width: 100px;
  height: 100px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.mybutton .mybuttoninner {
  width: 85px;
  height: 85px;
  border-radius: 100px;
  background-image: linear-gradient(
    to bottom,
    #9e9e9e 0%,
    #ffffff 40%,
    #383838 70%,
    #ffffff 100%
  );
  margin: 2px auto 6px auto;
  padding: 2px;
}
.mybutton .mybuttoninner .mybuttoninner2 {
  width: 85px;
  height: 85px;
  background-color: #6b6b6b;
  border-radius: 100px;
  box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.7);
  display: grid;
}
.mybutton .mybuttoninner .mybuttoninner2 ul {
  padding: 0;
  margin: 0;
  align-self: center;
}
.mybutton .mybuttoninner .mybuttoninner2 ul li {
  color: #aaaaaa;
  list-style-type: none;
  text-align: center;
  text-transform: uppercase;
  padding: 7px;
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 500;
  font-family: "Montserrat", var(--font-sans);
}
.mybutton .mybuttoninner .mybuttoninner2 ul .mybuttoninnerline2 {
  width: 70px;
  height: 1px;
  margin: auto;
  background-color: black;
}
.mybutton .mybuttoninner .mybuttoninner2 ul .mybuttoninnerline {
  width: 70px;
  height: 1px;
  margin: auto;
  transition: all 0.3s ease;
}
@keyframes ignitionAnimShadow {
  50% {
    box-shadow: 0 0 20px #ffffff;
    background-color: #ffffff;
  }
  100% {
    box-shadow: 0 0 4px #e00000;
    background-color: #e00000;
  }
}
@keyframes ignitionPressed {
  100% {
    transform: scale(0.98);
    box-shadow: none;
  }
}
.mybutton:hover .mybuttoninnerline {
  box-shadow: 0 0 4px #e00000;
  transition: all 0.3s ease;
  background-color: #e00000;
}
.mybutton:focus {
  border: none;
  outline: none;
  animation: ignitionPressed 0.2s alternate;
}
.mybutton:focus .mybuttoninnerline {
  animation: ignitionAnimShadow 0.4s forwards;
}
.contact__info {
  list-style: none;
  margin-top: auto;
  padding-top: 48px;
  display: grid;
  gap: 0;
}
.contact__info li {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--gray-2);
  gap: 24px;
}
.contact__info li:last-child {
  border-bottom: 1px solid var(--gray-2);
}
.contact__label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: var(--gray-4);
  text-transform: uppercase;
  font-weight: 500;
}
.contact__info a,
.contact__info li > span:last-child {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
}
.contact__info a {
  transition: color 0.3s;
}
.contact__info a:hover {
  color: var(--red);
}

.contact__form {
  background: var(--black);
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: grid;
  gap: 20px;
  align-content: start;
}
.field {
  display: grid;
  gap: 8px;
}
.field label {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  color: var(--gray-4);
  text-transform: uppercase;
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--black-2);
  border: 1px solid var(--gray-2);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  transition:
    border-color 0.3s,
    background 0.3s;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--gray-4);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--black-3);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23a0a0a0' d='M6 8 0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact__form .btn {
  margin-top: 8px;
}
.field__file {
  padding: 10px 12px !important;
  font-size: 0.88rem;
  cursor: pointer;
}
.field__file::-webkit-file-upload-button,
.field__file::file-selector-button {
  background: var(--red);
  color: #fff;
  border: 0;
  border-radius: 6px;
  padding: 8px 14px;
  margin-right: 12px;
  font-family: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
}
.field__file::-webkit-file-upload-button:hover,
.field__file::file-selector-button:hover {
  background: #e03030;
}
.field__hint {
  font-size: 0.72rem;
  color: var(--gray-4);
  line-height: 1.45;
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 0 22px;
  border-top: 1px solid var(--gray-2);
  background: var(--black);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 32px;
}
.footer__tag {
  margin-top: 12px;
  color: var(--gray-5);
  font-size: 0.82rem;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer__cols h5 {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-5);
  margin-bottom: 12px;
  font-weight: 600;
}
.footer__cols a {
  display: block;
  padding: 4px 0;
  font-size: 0.84rem;
  color: var(--gray-6);
  transition: color 0.3s;
}
.footer__cols a:hover {
  color: var(--red);
}
.footer__ig {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}
.footer__ig svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.footer__bottom {
  padding-top: 18px;
  border-top: 1px solid var(--gray-2);
  display: flex;
  justify-content: space-between;
  font-size: 0.74rem;
  color: var(--gray-4);
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== Data-reveal baseline (GSAP takes over) ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
}
/* Hero elements stay visible by default — hero timeline handles its own intro.
   This prevents the hero from staying blank if the GSAP intro fails or on
   reduced-motion / restored sessions where captured target opacity is 0. */
.hero [data-reveal] {
  opacity: 1;
  transform: none;
}
.hero__line > * {
  display: inline-block;
}

/* ===== Responsive ===== */

@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__image-wrap {
    width: 80%;
    opacity: 0.4;
    mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
  }
  .fleet__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
  }
  .contact__info {
    margin-top: 40px;
    padding-top: 0;
  }
  .hero__scroll {
    display: none;
  }
  .hero__side {
    display: none;
  }
  .hero__car {
    width: min(480px, 56vw);
    right: 0;
    opacity: 0.85;
  }
  .hero__glow {
    width: min(520px, 70vw);
    height: min(160px, 22vw);
  }
  .nav__links {
    justify-self: start;
    margin-left: 24px;
  }
}

@media (max-width: 820px) {
  .nav {
    padding: 8px 10px 8px 14px;
  }
  .nav__inner {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }
  .nav__links {
    display: none;
  }
  .nav__burger {
    display: flex;
    margin-right: 10px;
  }
  .nav__call span {
    display: none;
  }
  .nav__call {
    padding: 10px 12px;
  }
  .lang-switch {
    padding: 6px 10px;
    font-size: 0.66rem;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 90px 0;
  }
  .container {
    padding: 0 20px;
  }
  .hero {
    padding: 120px 0 120px;
  }
  .hero__content {
    padding-left: 40px;
    padding-right: 16px;
    max-width: 100%;
  }
  .hero__car {
    height: auto;
    width: 70vw;
    max-width: 320px;
    right: 50%;
    top: auto;
    bottom: 90px;
    opacity: 1;
    animation: heroCarDriveInMobile 1.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  @keyframes heroCarDriveInMobile {
    0% {
      transform: translateX(calc(50% + 80vw));
      opacity: 0;
    }
    100% {
      transform: translateX(50%);
      opacity: 1;
    }
  }
  .hero__glow {
    width: 90vw;
    max-width: 380px;
    height: 120px;
    right: 50%;
    top: auto;
    bottom: 70px;
    transform: translateX(50%);
    animation: heroGlowPulseMobile 2.4s ease-in-out infinite;
  }
  @keyframes heroGlowPulseMobile {
    0%,
    100% {
      opacity: 0.35;
      transform: translateX(50%) scale(0.95);
    }
    50% {
      opacity: 0.7;
      transform: translateX(50%) scale(1.08);
    }
  }
  .hero__eyebrow {
    font-size: 0.58rem;
    letter-spacing: 0.26em;
    margin-bottom: 12px;
  }
  .hero__title {
    font-size: clamp(1.55rem, 6.8vw, 1.95rem);
    letter-spacing: -0.02em;
  }
  .hero__sub {
    margin-top: 12px;
    font-size: 0.82rem;
    max-width: 340px;
    line-height: 1.5;
  }
  .hero__actions {
    margin-top: 18px;
    gap: 8px;
  }
  .hero__actions .btn {
    padding: 10px 14px;
    font-size: 0.72rem;
  }
  .hero__stats {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
    max-width: 320px;
  }
  .hero__stat-num {
    font-size: 1.2rem;
  }
  .hero__stat-plus,
  .hero__stat-unit {
    font-size: 0.85rem;
  }
  .hero__stat-label {
    font-size: 0.62rem;
    margin-top: 2px;
    letter-spacing: 0.12em;
  }
  .about__features {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .fleet__grid {
    grid-template-columns: 1fr;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .footer {
    padding: 36px 0 18px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 24px;
  }
  .footer__cols {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .footer__cols a {
    font-size: 0.78rem;
    padding: 3px 0;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    font-size: 0.7rem;
  }
  .contact__form {
    padding: 32px 24px;
  }
  .contact__info li {
    grid-template-columns: 80px 1fr;
    gap: 16px;
    padding: 18px 0;
  }
  .form__submit {
    padding-top: 18px;
  }
  .contact__tire--big {
    height: 80px;
    margin-bottom: 48px;
  }
}

/* ============================================
   Toast
   ============================================ */
.toast-stack {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  pointer-events: auto;
  min-width: 280px;
  max-width: 380px;
  padding: 14px 18px 14px 16px;
  background: linear-gradient(135deg, #141416 0%, #1d1d21 100%);
  color: var(--white);
  border: 1px solid var(--gray-2);
  border-left: 3px solid var(--red);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.02);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.toast.is-visible {
  transform: translateX(0);
  opacity: 1;
}
.toast--success {
  border-left-color: var(--red);
}
.toast--error {
  border-left-color: #ff5a5f;
  background: linear-gradient(135deg, #2a1414 0%, #1d1d21 100%);
}
.toast__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px var(--red-glow);
  margin-top: 1px;
}
.toast--error .toast__icon {
  background: #ff5a5f;
  box-shadow: 0 0 12px rgba(255, 90, 95, 0.5);
}
.toast__body {
  flex: 1;
}
.toast__title {
  margin: 0 0 2px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
}
.toast__msg {
  margin: 0;
  font-size: 13.5px;
  color: var(--gray-6);
}
.toast__close {
  flex-shrink: 0;
  background: none;
  border: 0;
  color: var(--gray-5);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 2px 4px;
  transition: color 0.2s var(--ease);
}
.toast__close:hover {
  color: var(--white);
}
@media (max-width: 520px) {
  .toast-stack {
    top: 12px;
    right: 12px;
    left: 12px;
  }
  .toast {
    min-width: 0;
    max-width: none;
  }
}
