/* =========================================================
   ELITE GROUP - AUTOVERMIETUNG (FULL CSS) - UPDATED
   Bigger cards + perfect modal on mobile/desktop + promo badges
   ========================================================= */

:root {
  --red: #d11414;
  --red2: #b90f0f;
  --navy: #0b1324;
  --navy2: #08101f;

  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --muted2: rgba(255, 255, 255, 0.55);

  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.1);

  --shadow: 0 30px 120px rgba(0, 0, 0, 0.35);
  --shadow2: 0 40px 140px rgba(0, 0, 0, 0.55);

  --radius: 18px;
  --radius2: 14px;

  --tap: 52px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Mulish", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}
body.is-modalOpen {
  overflow: hidden;
  touch-action: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: inherit;
}

.material-symbols-rounded {
  font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 40;
}

/* container */
.av-container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

/* page wrapper (safe) */
.av-page {
  overflow-x: hidden;
}

/* =========================================================
   HERO
   ========================================================= */

.av-hero {
  position: relative;
  overflow: hidden;
  padding: 16px 0 22px;
}

/* background layers */
.av-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      900px 520px at 20% 30%,
      rgba(255, 255, 255, 0.12),
      transparent 55%
    ),
    radial-gradient(
      650px 480px at 78% 40%,
      rgba(255, 255, 255, 0.1),
      transparent 55%
    ),
    linear-gradient(180deg, #0b1221 0%, #0b1324 60%, #07101f 100%);
  z-index: 0;
}
.av-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      900px 520px at 10% 80%,
      rgba(209, 20, 20, 0.1),
      transparent 55%
    ),
    radial-gradient(
      650px 480px at 95% 80%,
      rgba(209, 20, 20, 0.06),
      transparent 55%
    );
  z-index: 1;
  pointer-events: none;
}

/* stripes */
.av-stripes {
  position: absolute;
  inset: auto -10% -38% auto;
  width: 920px;
  height: 520px;
  transform: rotate(-12deg);
  z-index: 1;
  pointer-events: none;
}
.av-stripe {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border-radius: 50px;
  transform: skewX(-10deg);
}
.av-stripe--white {
  background: rgba(255, 255, 255, 0.92);
  width: 58%;
  right: 18%;
}
.av-stripe--red {
  background: linear-gradient(180deg, var(--red), var(--red2));
  width: 62%;
  right: 6%;
}
.av-stripe--navy {
  background: rgba(20, 25, 40, 0.9);
  width: 44%;
  right: -12%;
}

/* grid */
.av-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 22px;
  align-items: center;
  padding-top: 10px;
}

/* brand */
.av-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.av-brand__mark {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(209, 20, 20, 0.14);
}
.av-brand__name {
  font-family: "Chakra Petch", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 14px;
  text-transform: uppercase;
}

/* title */
.av-h1 {
  margin: 6px 0 10px;
  font-family: "Chakra Petch", system-ui, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.02;
  font-size: clamp(38px, 5vw, 76px);
}
.av-h1 span {
  display: block;
  margin-top: 12px;
  font-size: clamp(22px, 2.8vw, 40px);
  opacity: 0.92;
}
.av-h1 em {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: clamp(18px, 2.3vw, 30px);
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.14em;
}

/* hero text */
.av-heroText {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 56ch;
  line-height: 1.55;
  font-size: 15.5px;
}

/* actions */
.av-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 10px 0 10px;
}
.av-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  font-family: "Chakra Petch", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, var(--red), var(--red2));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
}
.av-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.av-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}
.av-btn--block {
  width: 100%;
}

/* chips */
.av-hero__chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.av-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}
.av-chip .material-symbols-rounded {
  font-size: 18px;
}

/* visuals */
.av-hero__visual {
  position: relative;
  min-height: 330px;
}
.av-heroCar {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(740px, 92vw);
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.55));
  pointer-events: none;
  user-select: none;
}

/* bubbles */
.av-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.av-bubblePath {
  position: absolute;
  right: 10%;
  top: 6%;
  width: 320px;
  height: 220px;
  border: 2px dashed rgba(255, 255, 255, 0.25);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 999px;
  transform: rotate(6deg);
  opacity: 0.85;
}
.av-bubble {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%);
  animation: avFloat 2.6s ease-in-out infinite alternate;
}
.av-bubble .material-symbols-rounded {
  font-size: 26px;
  color: #0b1324;
}
@keyframes avFloat {
  from {
    transform: translate(-50%, -50%) translateY(0);
  }
  to {
    transform: translate(-50%, -50%) translateY(10px);
  }
}

/* show/hide mobile/desktop visuals */
.av-hero__visual--desktop {
  display: none;
}
.av-hero__visual--mobile {
  margin: 8px 0 2px;
  min-height: 210px;
}

/* =========================================================
   SECTIONS
   ========================================================= */

.av-section {
  padding: 72px 0;
  background: #fff;
  color: #121826;
}
.av-subtitle {
  font-family: "Chakra Petch", system-ui, sans-serif;
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.av-h2 {
  margin: 0 0 10px;
  font-family: "Chakra Petch", system-ui, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(26px, 3vw, 40px);
  color: #0b1324;
}
.av-lead {
  margin: 0 0 22px;
  color: #374151;
}

/* =========================================================
   FLEET CARDS (BIGGER)
   ========================================================= */

.av-fleet {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

/* 1 mobile, 2 tablet, 3 desktop */
@media (min-width: 720px) {
  .av-fleet {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}
@media (min-width: 1180px) {
  .av-fleet {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }
}

.av-carCard {
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  background: #0b1324;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
  transition: transform 0.22s ease, box-shadow 0.22s ease,
    border-color 0.22s ease;
  cursor: pointer;
}
.av-carCard:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.28);
  border-color: rgba(209, 20, 20, 0.35);
}

.av-carCard__media {
  position: relative;
  aspect-ratio: 16/10;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.av-carCard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.45s ease;
}
.av-carCard:hover .av-carCard__media img {
  transform: scale(1.12);
}

/* badges */
.av-carCard__badges {
  position: absolute;
  left: 12px;
  top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  z-index: 2;
}
.av-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  font-family: "Chakra Petch", system-ui, sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #fff;
}
.av-badge--brand {
  background: linear-gradient(180deg, var(--red), var(--red2));
}
.av-badge--glass {
  background: rgba(10, 16, 30, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}
.av-badge .material-symbols-rounded {
  font-size: 18px;
}

/* PROMO badge */
.av-badge--promo {
  background: linear-gradient(180deg, #ffcf33, #ff8a00);
  color: #121826;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.av-badge--promo .material-symbols-rounded {
  color: #121826;
  font-size: 18px;
}

/* promo corner tag */
.av-promoTag {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 900;
  letter-spacing: 0.02em;
  font-family: "Chakra Petch", system-ui, sans-serif;
  font-size: 12px;
}
.av-promoTag strong {
  color: #ffcf33;
}

/* content */
.av-carCard__content {
  padding: 18px 16px 18px;
  color: rgba(255, 255, 255, 0.92);
}

.av-carCard__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.av-h3 {
  margin: 0;
  font-family: "Chakra Petch", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 18px;
  line-height: 1.2;
}

.av-priceTag {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(209, 20, 20, 0.16);
  border: 1px solid rgba(209, 20, 20, 0.25);
}
.av-priceTag__value {
  font-weight: 900;
  color: #fff;
}
.av-priceTag__unit {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.av-sub {
  margin: 10px 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

/* chips row */
.av-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.av-chip2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  font-size: 13px;
}
.av-chip2 .material-symbols-rounded {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
}

/* button */
.av-miniBtn {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px;
  border-radius: var(--radius2);
  background: linear-gradient(
    180deg,
    rgba(209, 20, 20, 0.95),
    rgba(209, 20, 20, 0.72)
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease;
}
.av-miniBtn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.av-miniBtn:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 6px rgba(209, 20, 20, 0.2);
}

/* =========================================================
   CONTACT
   ========================================================= */

.av-contact {
  background: #0b1324;
  color: #fff;
}
.av-contact__grid {
  display: grid;
  gap: 18px;
}
@media (min-width: 980px) {
  .av-contact__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 22px;
  }
}

.av-contact__box {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px;
}

.av-subtitle--dark {
  color: rgba(255, 255, 255, 0.85);
}
.av-h2--dark {
  color: #fff;
}
.av-text--light {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 14px;
}

.av-links {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.av-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.av-form {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px;
}
.av-row {
  display: grid;
  gap: 12px;
}
@media (min-width: 720px) {
  .av-row {
    grid-template-columns: 1fr 1fr;
  }
}

.av-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.82);
}
.av-form input,
.av-form textarea {
  width: 100%;
  border-radius: 14px;
  padding: 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  outline: none;
}
.av-form input:focus,
.av-form textarea:focus {
  border-color: rgba(209, 20, 20, 0.6);
  box-shadow: 0 0 0 4px rgba(209, 20, 20, 0.16);
}
.av-note {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

/* =========================================================
   MODAL (PERFECT ON MOBILE + PC)
   ========================================================= */

.av-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.av-modal.is-open {
  display: block;
}

.av-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

/* panel: desktop = centered, mobile = fullscreen */
.av-modal__panel {
  position: relative;
  width: min(1080px, calc(100% - 24px));
  margin: 18px auto;
  border-radius: 18px;
  background: #0b1324;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow2);
  overflow: hidden;
  max-height: calc(100dvh - 36px);
  display: grid;
}

/* close */
.av-modal__close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
}

/* inner */
.av-modal__grid {
  display: grid;
  overflow: hidden;
}

/* desktop split */
@media (min-width: 980px) {
  .av-modal__grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

/* gallery */
.av-modal__gallery {
  padding: 14px;
  overflow: hidden;
}
.av-modal__hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  aspect-ratio: 16/10;
}
.av-modal__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* arrows */
.av-gbtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.av-gbtn--prev {
  left: 12px;
}
.av-gbtn--next {
  right: 12px;
}

/* thumbs */
.av-modal__thumbs {
  display: flex;
  gap: 10px;
  overflow: auto;
  padding: 12px 2px 2px;
}
.av-modal__thumbs::-webkit-scrollbar {
  height: 10px;
}
.av-modal__thumbs::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.av-thumb {
  width: 110px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  flex: 0 0 auto;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.av-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.av-thumb:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.av-thumb.is-active {
  opacity: 1;
  border-color: rgba(209, 20, 20, 0.55);
}

/* info */
.av-modal__info {
  padding: 18px;
  overflow: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 980px) {
  .av-modal__info {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.av-modal__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.av-modal__kicker {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  font-family: "Chakra Petch", system-ui, sans-serif;
  font-size: 12px;
}
.av-modal__title {
  margin: 0 0 6px;
  font-family: "Chakra Petch", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 22px;
}
.av-modal__sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.av-modal__price {
  text-align: right;
}
.av-modal__priceVal {
  font-family: "Chakra Petch", system-ui, sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: #fff;
}
.av-modal__priceUnit {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin-top: -2px;
}
.av-modal__deposit {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 800;
  font-size: 13px;
}

/* specs */
.av-modal__specs {
  display: grid;
  gap: 10px;
  margin: 14px 0 14px;
}
.av-spec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.av-spec strong {
  color: rgba(255, 255, 255, 0.88);
}
.av-spec span {
  color: rgba(255, 255, 255, 0.74);
}

/* features */
.av-modal__sectionTitle {
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.av-modal__featureList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.av-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  font-size: 13px;
}
.av-pill .material-symbols-rounded {
  font-size: 18px;
}

/* CTA */
.av-modal__cta {
  margin-top: 14px;
}
.av-modal__note {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

/* FULLSCREEN MOBILE modal */
@media (max-width: 860px) {
  .av-modal__panel {
    width: 100%;
    height: 100dvh;
    margin: 0;
    border-radius: 0;
    max-height: none;
  }
  .av-modal__grid {
    grid-template-columns: 1fr;
    height: 100%;
  }
  .av-modal__gallery {
    padding: 12px;
  }
  .av-modal__hero {
    aspect-ratio: 16/11;
  }
  .av-modal__info {
    padding: 14px 14px 18px;
  }
  .av-thumb {
    width: 96px;
    height: 62px;
  }
  .av-modal__close {
    right: 10px;
    top: 10px;
  }
}

/* =========================================================
   RESPONSIVE (hero desktop layout)
   ========================================================= */

@media (min-width: 980px) {
  .av-hero {
    padding: 8px 0 34px;
  }
  .av-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    padding-top: 6px;
  }
  .av-hero__visual--mobile {
    display: none;
  }
  .av-hero__visual--desktop {
    display: block;
    min-height: 420px;
  }

  .av-heroCar {
    left: auto;
    right: -10px;
    bottom: 18px;
    transform: none;
    width: min(780px, 52vw);
  }

  .av-bubblePath {
    right: 8%;
    top: 4%;
    width: 360px;
    height: 250px;
    opacity: 0.85;
  }
}

/* phone tune */
@media (max-width: 560px) {
  .av-container {
    width: min(1180px, calc(100% - 20px));
  }
  .av-hero {
    padding: 10px 0 18px;
  }
  .av-h1 {
    font-size: 44px;
  }
  .av-actions {
    flex-direction: column;
  }
  .av-actions .av-btn {
    width: 100%;
  }
  .av-chip {
    width: 100%;
  }
  .av-bubblePath {
    width: 230px;
    height: 160px;
    right: 6%;
    top: 2%;
    opacity: 0.55;
  }
  .av-bubble {
    width: 46px;
    height: 46px;
  }
  .av-bubble .material-symbols-rounded {
    font-size: 22px;
  }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .av-bubble {
    animation: none;
  }
  .av-btn,
  .av-carCard,
  .av-carCard__media img,
  .av-thumb {
    transition: none;
  }
}
/* =========================================================
   VEHICLE MODAL (high-end)
========================================================= */
.av-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.av-modal.is-open {
  display: block;
}

.av-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 12, 20, 0.62);
  backdrop-filter: blur(6px);
  animation: avFadeIn 0.18s ease both;
}

.av-modal__panel {
  position: relative;
  width: min(1100px, calc(100% - 24px));
  margin: 18px auto;
  border-radius: 20px;
  overflow: hidden;
  background: #0b1324;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 40px 140px rgba(0, 0, 0, 0.55);
  transform: translateY(10px) scale(0.98);
  opacity: 0;
  animation: avPopIn 0.22s ease forwards;
}

.av-modal__close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform 0.15s ease, background 0.15s ease;
}
.av-modal__close:hover { transform: translateY(-1px); background: rgba(255,255,255,0.14); }

.av-modal__grid {
  display: grid;
}
@media (min-width: 980px) {
  .av-modal__grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.av-modal__gallery {
  padding: 14px;
}

.av-modal__hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  aspect-ratio: 16 / 10;
}
.av-modal__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.av-modal__heroGlow {
  position: absolute;
  inset: -40% -30% auto -30%;
  height: 320px;
  background: radial-gradient(closest-side, rgba(209, 20, 20, 0.22), transparent 70%);
  pointer-events: none;
  filter: blur(4px);
}

.av-gbtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.av-gbtn:hover { transform: translateY(-50%) scale(1.04); background: rgba(0,0,0,0.44); }
.av-gbtn--prev { left: 12px; }
.av-gbtn--next { right: 12px; }

.av-modal__thumbs {
  display: flex;
  gap: 10px;
  overflow: auto;
  padding: 12px 2px 2px;
}
.av-modal__thumbs::-webkit-scrollbar { height: 10px; }
.av-modal__thumbs::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.av-thumb {
  width: 96px;
  height: 62px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  flex: 0 0 auto;
  cursor: pointer;
  opacity: 0.82;
  transition: opacity 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.av-thumb img { width: 100%; height: 100%; object-fit: cover; }
.av-thumb:hover { opacity: 1; transform: translateY(-2px); }
.av-thumb.is-active { opacity: 1; border-color: rgba(209, 20, 20, 0.55); }

.av-modal__info {
  padding: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
@media (min-width: 980px) {
  .av-modal__info {
    border-top: 0;
    border-left: 1px solid rgba(255,255,255,0.10);
  }
}

.av-modal__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}

.av-modal__kicker {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  font-size: 12px;
}
.av-modal__title {
  margin: 0 0 6px;
  font-weight: 900;
  font-size: 22px;
  color: #fff;
}
.av-modal__sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.45;
}

.av-modal__price { text-align: right; }
.av-modal__priceVal { font-weight: 900; font-size: 28px; color: #fff; }
.av-modal__priceUnit { display: block; color: rgba(255,255,255,0.7); margin-top: -2px; }
.av-modal__deposit { display: block; margin-top: 8px; color: rgba(255,255,255,0.78); font-weight: 800; font-size: 13px; }

.av-modal__specs {
  display: grid;
  gap: 10px;
  margin: 14px 0 14px;
}
.av-specRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}
.av-specRow strong { color: rgba(255,255,255,0.92); }
.av-specRow span { color: rgba(255,255,255,0.74); }

.av-modal__sectionTitle {
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.av-modal__featureList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.av-pill2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.90);
  font-weight: 800;
  font-size: 13px;
}
.av-pill2 .material-symbols-rounded { font-size: 18px; }

.av-modal__cta {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
@media (min-width: 520px) {
  .av-modal__cta { grid-template-columns: 1fr 1fr; }
}

.av-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease;
}
.av-modal__btn--primary {
  background: linear-gradient(180deg, #d11414, #b90f0f);
  box-shadow: 0 18px 55px rgba(0,0,0,0.28);
}
.av-modal__btn--ghost {
  background: rgba(255,255,255,0.08);
}
.av-modal__btn:hover { transform: translateY(-2px); filter: brightness(1.05); }

.av-modal__note {
  margin: 10px 0 0;
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  line-height: 1.45;
}

@keyframes avFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes avPopIn {
  to { transform: translateY(0) scale(1); opacity: 1; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .av-modal__backdrop,
  .av-modal__panel,
  .av-gbtn,
  .av-thumb,
  .av-modal__btn,
  .av-modal__close { animation: none !important; transition: none !important; }
}
