:root {
  --primary: #2860e8;
  --primary-dark: #1748c8;
  --primary-soft: #edf3ff;
  --green: #138a54;
  --green-soft: #e8f8ef;
  --orange: #aa6900;
  --orange-soft: #fff4dc;
  --danger: #cf3b31;
  --danger-soft: #ffefed;
  --text: #10192c;
  --muted: #667085;
  --line: #e1e7f0;
  --surface: #ffffff;
  --background: #f7f9fd;
  --shadow: 0 16px 44px rgba(21, 40, 80, 0.08);
  --radius: 18px;
  --container: 1340px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 42px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(145deg, #3673f1, #1f50d5);
  color: white;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(40, 96, 232, 0.28);
}

.brand strong {
  font-size: 20px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-right: auto;
}

.main-nav a {
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

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

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

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 750;
  text-decoration: none;
  transition: 0.2s ease;
}

.button-primary {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
  box-shadow: 0 8px 22px rgba(40, 96, 232, 0.2);
}

.button-primary:hover {
  border-color: var(--primary-dark);
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.button-secondary {
  border-color: var(--line);
  background: white;
  color: var(--text);
}

.button-secondary:hover {
  background: #f8faff;
  border-color: #c8d2e2;
}

.icon-button,
.heart-button {
  border: 0;
  background: transparent;
  color: var(--text);
}

.icon-button {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-size: 20px;
}

.hero {
  padding: 54px 0 20px;
  background:
    radial-gradient(circle at 75% 5%, rgba(64, 115, 235, 0.13), transparent 27%),
    radial-gradient(circle at 100% 36%, rgba(122, 158, 240, 0.13), transparent 24%),
    linear-gradient(180deg, #fbfdff 0%, #f5f8ff 100%);
}

.hero-grid {
  min-height: 320px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(540px, 1.08fr);
  align-items: center;
  gap: 48px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.hero h1 {
  max-width: 650px;
  margin-bottom: 16px;
  font-size: clamp(48px, 4.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero h1 span {
  color: var(--primary);
}

.hero-description {
  max-width: 530px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.tracking-form {
  max-width: 620px;
  display: flex;
  gap: 8px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
  box-shadow: 0 9px 28px rgba(21, 40, 80, 0.06);
}

.url-field {
  min-width: 0;
  display: flex;
  align-items: center;
  flex: 1;
}

.field-icon {
  padding-left: 14px;
  color: var(--muted);
  font-size: 22px;
}

.url-field input {
  min-width: 0;
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 0;
  outline: 0;
  color: var(--text);
}

.tracking-form .button {
  min-width: 150px;
  min-height: 50px;
}

.form-message {
  min-height: 20px;
  margin: 8px 0 0;
  font-size: 13px;
}

.form-message.success {
  color: var(--green);
}

.form-message.error {
  color: var(--danger);
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.feature-pills span::first-letter {
  color: var(--primary);
}

.hero-visual {
  position: relative;
  min-height: 330px;
}

.vehicle-stage {
  position: absolute;
  inset: 0 190px 0 0;
  display: grid;
  place-items: center;
}

.vehicle-placeholder {
  width: 100%;
  min-height: 280px;
  display: grid;
  place-items: center;
  border-radius: 45% 55% 30% 40%;
  background:
    radial-gradient(circle, rgba(40, 96, 232, 0.13), transparent 62%);
}

.vehicle-placeholder span {
  font-size: 160px;
  filter: drop-shadow(0 25px 16px rgba(15, 25, 45, 0.2));
}

.price-preview {
  position: absolute;
  top: 24px;
  right: 0;
  width: 310px;
  padding: 18px;
  border: 1px solid rgba(225, 231, 240, 0.9);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.preview-heading {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.preview-heading small {
  color: var(--muted);
}

.preview-heading h2 {
  margin: 5px 0 0;
  font-size: 17px;
}

.heart-button {
  align-self: flex-start;
  font-size: 25px;
}

.preview-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.preview-price strong {
  font-size: 26px;
}

.preview-price span {
  padding: 6px 8px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.mini-chart {
  height: 75px;
  margin: 12px 0;
}

.mini-chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.mini-chart polyline {
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
}

.mini-chart circle {
  fill: var(--primary);
}

.preview-history {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.preview-history div {
  display: grid;
  gap: 5px;
  font-size: 11px;
}

.preview-history span {
  color: var(--muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.stat-card {
  min-height: 98px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
  box-shadow: 0 8px 26px rgba(21, 40, 80, 0.05);
}

.stat-icon,
.step-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
}

.stat-icon {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  font-size: 23px;
  font-weight: 850;
}

.stat-card strong {
  display: block;
  font-size: 25px;
  line-height: 1;
}

.stat-card p {
  margin: 6px 0 3px;
  font-size: 13px;
}

.stat-card small {
  color: var(--muted);
  font-size: 11px;
}

.how-section {
  padding: 34px 0;
  background: white;
}

.how-section h2 {
  margin-bottom: 25px;
  text-align: center;
  font-size: 25px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 13px;
  padding-left: 24px;
}

.step-number {
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 12px;
  font-weight: 850;
}

.step-icon {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  font-size: 25px;
}

.step h3 {
  margin-bottom: 5px;
  font-size: 15px;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.tracked-section {
  padding: 32px 0 60px;
  background: white;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 13px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: 22px;
}

.count-badge {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  margin-left: 5px;
  border-radius: 50%;
  background: #eef2f8;
  color: var(--muted);
  font-size: 13px;
}

.table-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
}

.vehicle-table-header,
.vehicle-row {
  display: grid;
  grid-template-columns:
    minmax(280px, 1.45fr)
    minmax(120px, 0.6fr)
    minmax(130px, 0.65fr)
    minmax(150px, 0.75fr)
    minmax(110px, 0.55fr)
    minmax(190px, 0.85fr);
  align-items: center;
}

.vehicle-table-header {
  min-height: 34px;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.vehicle-row {
  min-height: 76px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--line);
  transition: 0.2s ease;
}

.vehicle-row:last-child {
  border-bottom: 0;
}

.vehicle-row:hover {
  background: #f9fbff;
}

.vehicle-main {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vehicle-thumb {
  width: 84px;
  height: 55px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: var(--primary-soft);
  font-size: 29px;
}

.vehicle-main strong,
.vehicle-price {
  display: block;
  font-size: 14px;
}

.vehicle-main small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.vehicle-cell {
  font-size: 12px;
}

.status {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
}

.status.active {
  background: var(--green-soft);
  color: var(--green);
}

.status.pending {
  background: #eaf2ff;
  color: var(--primary);
}

.status.unavailable,
.status.removed,
.status.error {
  background: var(--danger-soft);
  color: var(--danger);
}

.vehicle-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}

.vehicle-actions .button {
  min-height: 36px;
  padding: 0 14px;
  font-size: 12px;
}

.external-link {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--text);
  text-decoration: none;
}

.table-message {
  padding: 35px;
  color: var(--muted);
  text-align: center;
}

.bottom-cta {
  min-height: 78px;
  display: grid;
  grid-template-columns: 45px 1fr auto;
  align-items: center;
  gap: 15px;
  margin-top: 13px;
  padding: 15px 20px;
  border: 1px solid #dbe5fa;
  border-radius: 13px;
  background: linear-gradient(90deg, #f6f9ff, #f9fbff);
}

.cta-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 22px;
}

.bottom-cta strong {
  color: var(--primary);
  font-size: 14px;
}

.bottom-cta p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.hidden {
  display: none !important;
}

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

  .header-actions {
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 350px;
  }

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

  .vehicle-table-header {
    display: none;
  }

  .vehicle-row {
    grid-template-columns: 1fr 120px 130px;
    gap: 10px;
  }

  .vehicle-row > :nth-child(4),
  .vehicle-row > :nth-child(5) {
    display: none;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .site-header {
    position: static;
  }

  .header-inner {
    min-height: 64px;
  }

  .header-actions .button-secondary,
  .header-actions .button-primary,
  .icon-button {
    display: none;
  }

  .hero {
    padding-top: 35px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .tracking-form {
    flex-direction: column;
    padding: 8px;
  }

  .tracking-form .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 470px;
  }

  .vehicle-stage {
    inset: 0 0 170px;
  }

  .vehicle-placeholder span {
    font-size: 110px;
  }

  .price-preview {
    top: auto;
    right: 0;
    bottom: 0;
    width: 100%;
  }

  .stats-grid,
  .steps {
    grid-template-columns: 1fr;
  }

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

  .vehicle-row {
    grid-template-columns: 1fr;
  }

  .vehicle-row > :nth-child(2),
  .vehicle-row > :nth-child(3) {
    display: block;
  }

  .bottom-cta {
    grid-template-columns: 45px 1fr;
  }

  .bottom-cta .button {
    grid-column: 1 / 3;
  }
}

/* AUTOSEKLYS DELETE BUTTON */

.delete-listing-button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: #7b8798;
  transition: 0.2s ease;
}

.delete-listing-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.delete-listing-button:hover {
  border-color: #f1b7b2;
  background: var(--danger-soft);
  color: var(--danger);
}

.delete-listing-button:focus-visible {
  outline: 3px solid rgba(207, 59, 49, 0.15);
  outline-offset: 2px;
}

.delete-listing-button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.delete-listing-button.is-loading svg {
  animation: delete-button-pulse 0.8s ease-in-out infinite alternate;
}

@keyframes delete-button-pulse {
  from {
    opacity: 0.35;
  }

  to {
    opacity: 1;
  }
}




@media (max-width: 768px) {

  .hero-preview {
    margin-top: 55px;
    padding-bottom: 40px;
  }

  .hero-preview-card {
    position: relative;
    margin-top: 40px;
    right: auto;
    bottom: auto;
  }

  .hero-car {
    margin-bottom: 35px;
  }

}

/* AUTOSEKLYS MOBILE HERO OVERLAP FIX */

@media (max-width: 680px) {
  .hero-visual {
    min-height: 610px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 20px;
  }

  .vehicle-stage {
    position: relative;
    inset: auto;
    min-height: 240px;
    order: 1;
  }

  .vehicle-placeholder {
    min-height: 240px;
  }

  .vehicle-placeholder span {
    font-size: 105px;
    transform: translateY(0);
  }

  .price-preview {
    position: relative;
    inset: auto;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    order: 2;
    margin-top: 0;
  }
}



/* AUTOSEKLYS MOBILE MENU */

.mobile-menu-button {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  color: var(--text);
}

.mobile-menu-button span {
  width: 19px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform .2s ease,
    opacity .2s ease;
}

.mobile-menu-button.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 64px;
  right: 0;
  left: 0;
  z-index: 50;
  display: none;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 18px 36px rgba(21, 40, 80, .12);
  backdrop-filter: blur(16px);
}

.mobile-menu.is-open {
  display: grid;
  gap: 7px;
}

.mobile-menu a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 10px;
  color: var(--text);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.mobile-menu a:hover {
  background: var(--primary-soft);
  color: var(--primary);
}

.mobile-menu-primary {
  justify-content: center;
  margin-top: 5px;
  background: var(--primary);
  color: white !important;
}

.mobile-menu-primary:hover {
  background: var(--primary-dark) !important;
  color: white !important;
}

body.mobile-menu-open {
  overflow: hidden;
}

@media (max-width: 680px) {
  .mobile-menu-button {
    display: flex;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-actions .button-secondary,
  .header-actions .button-primary,
  .icon-button {
    display: none;
  }
}


/* AUTOSEKLYS GLOBAL MOBILE HEADER */

.auth-mobile-header {
  display: none;
}

@media (max-width: 680px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 60;
  }

  .header-inner {
    min-height: 64px;
  }

  .brand strong {
    font-size: 18px;
  }

  .mobile-menu {
    top: 64px;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }

  .auth-mobile-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 60;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(16px);
  }

  .auth-page {
    padding-top: 92px;
  }

  .auth-brand {
    display: none;
  }

  .auth-mobile-header .mobile-menu-button {
    display: flex;
  }
}

/* AUTOSEKLYS STATIC BMW HERO */

.hero-bmw-static {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
  overflow: visible;
  background: transparent;
}

.hero-bmw-static::before {
  content: "";
  position: absolute;
  width: 88%;
  height: 72%;
  border-radius: 50%;
  background:
    radial-gradient(
      ellipse,
      rgba(78, 137, 255, .23) 0%,
      rgba(78, 137, 255, .10) 42%,
      transparent 73%
    );
  filter: blur(14px);
}

.hero-bmw-static::after {
  content: "";
  position: absolute;
  bottom: 24px;
  width: 67%;
  height: 28px;
  border-radius: 50%;
  background: rgba(14, 27, 51, .18);
  filter: blur(15px);
}

.hero-bmw-static-image {
  position: relative;
  z-index: 2;
  width: min(630px, 110%);
  max-width: none;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 21px 16px rgba(13, 27, 52, .18))
    drop-shadow(0 5px 4px rgba(13, 27, 52, .08));
}

@media (max-width: 900px) {
  .hero-bmw-static-image {
    width: min(570px, 108%);
  }
}

@media (max-width: 680px) {
  .hero-bmw-static {
    min-height: 270px;
    margin-top: 12px;
  }

  .hero-bmw-static-image {
    width: 112%;
    max-width: 500px;
  }

  .hero-bmw-static::after {
    bottom: 18px;
    width: 72%;
  }
}




/* =======================================================
   HERO FINAL PRESENTATION LAYOUT
   ======================================================= */

/* BMW didesnis */

.hero-bmw-static-image{
    width:650px !important;
    max-width:120%;
    height:auto;
}

/* Demonstracinis tekstas nereikalingas */

.hero-image-note,
.hero-bmw-static small,
.hero-bmw-static p{
    display:none !important;
}

/* Kortelė virš automobilio */

.price-preview{
    position:absolute;
    top:-75px;
    right:-25px;
    z-index:50;
}

/* Automobilio konteineris */

.vehicle-stage{
    position:relative;
    overflow:visible;
}

/* Šiek tiek daugiau vietos */

.hero-bmw-static{
    padding-top:70px;
}

/* Mobili versija */

@media (max-width:900px){

    .price-preview{
        position:relative;
        top:0;
        right:0;
        margin:0 auto 18px;
    }

    .hero-bmw-static-image{
        width:108%;
        max-width:520px;
    }

}



/* AUTOSEKLYS PRICE CARD POSITION FIX */

@media (min-width: 901px) {
  .hero-visual {
    position: relative;
  }

  .price-preview {
    position: absolute !important;
    top: 35px !important;
    right: 35px !important;
    z-index: 50;
  }
}

@media (max-width: 900px) {
  .price-preview {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    margin: 18px auto 0 !important;
  }
}





/* AUTOSEKLYS PRICE CARD POSITION FIX V2 */

@media (min-width:901px){

    .hero-visual{
        position:relative;
    }

    .vehicle-stage{
        position:relative;
        overflow:visible;
    }

    .price-preview{
        position:absolute !important;

        top:35px !important;
        right:80px !important;

        z-index:50;
    }

}

@media (max-width:900px){

    .price-preview{

        position:relative !important;

        top:auto !important;
        right:auto !important;

        margin:20px auto 0 !important;

    }

}



/* AUTOSEKLYS FINAL HERO COMPOSITION V3 */

@media (min-width: 901px) {
  .hero-visual {
    position: relative !important;
    min-height: 470px !important;
    overflow: visible !important;
  }

  .vehicle-stage {
    position: absolute !important;
    top: 115px !important;
    right: 145px !important;
    bottom: auto !important;
    left: -30px !important;

    display: grid !important;
    place-items: center !important;
    overflow: visible !important;
  }

  .hero-bmw-static {
    min-height: 345px !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    background: transparent !important;
  }

  .hero-bmw-static-image {
    width: 720px !important;
    max-width: none !important;
    height: auto !important;
    object-fit: contain !important;

    filter:
      drop-shadow(0 24px 19px rgba(13, 27, 52, .17))
      drop-shadow(0 7px 5px rgba(13, 27, 52, .08)) !important;
  }

  .hero-bmw-static::before {
    width: 90% !important;
    height: 75% !important;
    opacity: .55 !important;
  }

  .hero-bmw-static::after {
    bottom: 24px !important;
    width: 65% !important;
  }

  .price-preview {
    position: absolute !important;
    top: 120px !important;
    right: 0 !important;

    width: 285px !important;
    max-width: 285px !important;
    z-index: 30 !important;

    margin: 0 !important;
    transform: none !important;

    box-shadow:
      0 24px 55px rgba(22, 43, 84, .14),
      0 7px 18px rgba(22, 43, 84, .07) !important;
  }

  .hero-image-note,
  .hero-bmw-static small,
  .hero-bmw-static > span,
  .hero-bmw-static > p {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .hero-visual {
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
  }

  .vehicle-stage {
    position: relative !important;
    inset: auto !important;
    order: 1 !important;
  }

  .hero-bmw-static {
    min-height: 285px !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .hero-bmw-static-image {
    width: 112% !important;
    max-width: 540px !important;
    height: auto !important;
  }

  .price-preview {
    position: relative !important;
    inset: auto !important;
    order: 2 !important;

    width: 100% !important;
    max-width: 390px !important;

    margin: 0 auto 24px !important;
    transform: none !important;
  }

  .hero-image-note,
  .hero-bmw-static small,
  .hero-bmw-static > span,
  .hero-bmw-static > p {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hero-bmw-static {
    min-height: 240px !important;
  }

  .hero-bmw-static-image {
    width: 118% !important;
    max-width: 460px !important;
  }
}

