@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #fafafa;
  background: #09090b;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: clamp(1.5rem, 4vw, 3rem);
  padding-right: clamp(1.5rem, 4vw, 3rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 12px;
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 400ms ease;
}
.btn--primary {
  background: #dc2626;
  color: #09090b;
}
@media (hover: hover) and (pointer: fine) {
  .btn--primary:hover {
    background: #ef4444;
    transform: translateY(-2px);
    box-shadow: 0 10px 40px -10px rgba(220, 38, 38, 0.5);
  }
  .btn--primary:hover svg {
    transform: translateX(4px);
  }
}
.btn--secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fafafa;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}
@media (hover: hover) and (pointer: fine) {
  .btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
  }
}
.btn--outline-light {
  background: transparent;
  color: #18181b;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
@media (hover: hover) and (pointer: fine) {
  .btn--outline-light:hover {
    background: #09090b;
    color: #fafafa;
    border-color: #09090b;
  }
}
.btn--filter {
  width: 100%;
  margin-top: 1rem;
}
.btn--filter-reset {
  width: 100%;
  margin-top: 0.5rem;
  text-align: center;
}
.btn__icon {
  width: 18px;
  height: 18px;
}

::selection {
  background: rgba(220, 38, 38, 0.2);
  color: #fafafa;
}

:focus-visible {
  outline: 2px solid #dc2626;
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.car-card__price--request,
.car-detail__price--request {
  color: #dc2626 !important; /* !important prebije všetko ostatné */
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* ŠTÝLY PRE ŠÍPKY V GALÉRII */
.gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5); /* Polopriehľadná čierna */
  color: white;
  border: none;
  border-radius: 50%; /* Toto robí guličku */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
  outline: none;
}

.gallery__nav:hover {
  background: rgba(255, 255, 255, 0.9); /* Po prejdení myšou zbelie */
  color: black;
  transform: translateY(-50%) scale(1.1);
}

.gallery__nav--prev {
  left: 10px;
}

.gallery__nav--next {
  right: 10px;
}

.gallery__nav svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fafafa;
  margin: 0 0 1rem 0;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1.25rem 0;
  color: #a1a1aa;
  max-width: 65ch;
}
p:last-child {
  margin-bottom: 0;
}

strong,
b {
  font-weight: 700;
}

small {
  font-size: 0.875rem;
}

.text-primary {
  color: #dc2626;
}

.text-accent {
  color: #dc2626;
}

.text-muted {
  color: #71717a;
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-black {
  font-weight: 900;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
}
.label--primary {
  background: rgba(220, 38, 38, 0.12);
  color: #dc2626;
}
.label--dark {
  background: rgba(255, 255, 255, 0.1);
  color: #fafafa;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.price {
  font-weight: 900;
  color: #dc2626;
  letter-spacing: -0.02em;
}
.price--large {
  font-size: 1.5rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.section-header__title {
  margin-bottom: 1rem;
}
.section-header__subtitle {
  font-size: 1.125rem;
  color: #a1a1aa;
  font-weight: 400;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: #09090b;
  color: #fafafa;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 501;
  transition: top 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.skip-link:focus {
  top: 1rem;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 1rem clamp(1.5rem, 4vw, 3rem);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.75rem;
  background: rgba(255, 255, 255, 0.85);
}
@media (min-width: 440px) {
  .navbar__inner {
    padding: 0.75rem 1.25rem;
  }
}
.navbar__inner {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 9999px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.navbar__logo {
  display: flex;
  align-items: center;
  transition: opacity 150ms;
  flex-shrink: 0;
}
.navbar__logo:hover {
  opacity: 0.8;
}
.navbar__logo-img {
  height: 24px;
  width: auto;
  display: block;
}
@media (min-width: 440px) {
  .navbar__logo-img {
    height: 32px;
  }
}
@media (min-width: 768px) {
  .navbar__logo-img {
    height: 36px;
  }
}
.navbar__nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 768px) {
  .navbar__nav {
    display: flex;
  }
}
.navbar__link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: #52525b;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) and (pointer: fine) {
  .navbar__link:hover {
    color: #18181b;
    background: rgba(0, 0, 0, 0.05);
  }
}
.navbar__link.is-active {
  color: #dc2626;
  background: rgba(220, 38, 38, 0.12);
  font-weight: 600;
}
.navbar__link.is-active::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #dc2626;
  border-radius: 9999px;
}
.navbar__cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  background: #dc2626;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}
.navbar__cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
@media (hover: hover) and (pointer: fine) {
  .navbar__cta:hover {
    background: #ef4444;
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
  }
}
.navbar__cta:active {
  transform: translateY(0) scale(0.98);
}
@media (max-width: 767px) {
  .navbar__cta {
    padding: 0.625rem;
  }
  .navbar__cta span {
    display: none;
  }
}
.navbar__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background 150ms;
}
@media (min-width: 768px) {
  .navbar__toggle {
    display: none;
  }
}
.navbar__toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}
.navbar__toggle span {
  width: 18px;
  height: 2px;
  background: #18181b;
  border-radius: 2px;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}
.navbar__toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar__toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar__toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.navbar__mobile {
  position: fixed;
  inset: 0;
  background: rgba(250, 250, 249, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 100px clamp(1.5rem, 4vw, 3rem) 2rem;
  z-index: -1;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
.navbar__mobile.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (min-width: 768px) {
  .navbar__mobile {
    display: none !important;
  }
}
.navbar__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.navbar__mobile-link {
  position: relative;
  font-size: 1.25rem;
  font-weight: 700;
  color: #18181b;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.navbar__mobile-link:hover {
  color: #dc2626;
  padding-left: 0.5rem;
}
.navbar__mobile-link.is-active {
  color: #dc2626;
}
.navbar__mobile-link.is-active::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: #dc2626;
  border-radius: 9999px;
}
.navbar__mobile-cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fafafa;
  background: #09090b;
  padding: 1.25rem;
  border-radius: 12px;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.navbar__mobile-cta svg {
  width: 20px;
  height: 20px;
}
.navbar__mobile-cta:hover {
  background: #0f0f12;
  transform: scale(1.02);
}
.navbar__mobile-cta:active {
  transform: scale(0.98);
}

.navbar.is-scrolled .navbar__inner {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.navbar.is-scrolled .navbar__logo-img {
  height: 28px;
}
@media (min-width: 768px) {
  .navbar.is-scrolled .navbar__logo-img {
    height: 32px;
  }
}

.footer {
  background: #09090b;
  color: #fafafa;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__main {
  padding: clamp(5rem, 10vw, 8rem) 0 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .footer__main {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .footer__main {
    gap: 4rem;
  }
}
.footer__brand {
  max-width: 300px;
}
@media (max-width: 767px) {
  .footer__brand {
    max-width: 100%;
  }
}
.footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
}
.footer__logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.footer__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #a1a1aa;
  margin-bottom: 1.5rem;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  color: #a1a1aa;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.footer__social-link svg {
  width: 18px;
  height: 18px;
}
@media (hover: hover) and (pointer: fine) {
  .footer__social-link:hover {
    background: #dc2626;
    border-color: #dc2626;
    color: #09090b;
  }
}
.footer__column {
  display: flex;
  flex-direction: column;
}
.footer__heading {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #71717a;
  margin-bottom: 1.25rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__link {
  font-size: 0.9375rem;
  color: #a1a1aa;
  transition: color 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) and (pointer: fine) {
  .footer__link:hover {
    color: #fafafa;
  }
}
.footer__note {
  margin-top: 1rem;
  font-size: 0.875rem;
  opacity: 0.8;
  line-height: 1.4;
}
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #a1a1aa;
}
.footer__contact-item svg {
  width: 16px;
  height: 16px;
  opacity: 0.5;
  flex-shrink: 0;
}
.footer__contact-item a {
  color: #a1a1aa;
  transition: color 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) and (pointer: fine) {
  .footer__contact-item a:hover {
    color: #fafafa;
  }
}
.footer__bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer__copy {
  font-size: 0.875rem;
  color: #71717a;
}
.footer__legal {
  display: flex;
  gap: 2rem;
}
.footer__legal-link {
  font-size: 0.875rem;
  color: #71717a;
  transition: color 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) and (pointer: fine) {
  .footer__legal-link:hover {
    color: #a1a1aa;
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 8rem 0 4rem;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(9, 9, 11, 0.75) 0%, rgba(9, 9, 11, 0.95) 100%), url("../images/hero/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.12);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
  border: 1px solid rgba(220, 38, 38, 0.2);
}
.hero__badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #dc2626;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.hero__title {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  color: #fafafa;
}
.hero__title span {
  display: block;
}
.hero__title .highlight {
  color: #dc2626;
}
.hero__desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #a1a1aa;
  max-width: 500px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 600px;
  margin: 5rem auto 0;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 767px) {
  .hero__stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
}
.hero__stat-value {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
  background: linear-gradient(180deg, #fafafa 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
.hero__stat-label {
  font-size: 0.875rem;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero__badge,
  .hero__title span,
  .hero__desc,
  .hero__actions,
  .hero__stats {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  }
  .hero__badge {
    animation-delay: 0.1s;
  }
  .hero__title span:nth-child(1) {
    animation-delay: 0.2s;
  }
  .hero__title span:nth-child(2) {
    animation-delay: 0.3s;
  }
  .hero__title span:nth-child(3) {
    animation-delay: 0.4s;
  }
  .hero__desc {
    animation-delay: 0.5s;
  }
  .hero__actions {
    animation-delay: 0.6s;
  }
  .hero__stats {
    animation-delay: 0.8s;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reviews {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: #fafaf9;
  position: relative;
  overflow: hidden;
}
.reviews__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.reviews__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #dc2626;
  margin-bottom: 0.75rem;
}
.reviews__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #18181b;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.reviews__carousel {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 1024px) {
  .reviews__carousel {
    max-width: 800px;
  }
}
.reviews__track {
  position: relative;
  display: grid;
}
.reviews__arrows {
  display: none;
}
@media (min-width: 768px) {
  .reviews__arrows {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
  }
}
@media (min-width: 1024px) {
  .reviews__arrows {
    left: -4rem;
    right: -4rem;
  }
}
.reviews__arrow {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #52525b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.reviews__arrow svg {
  width: 20px;
  height: 20px;
}
.reviews__arrow:hover {
  background: #ffffff;
  border-color: #dc2626;
  color: #dc2626;
  transform: scale(1.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.reviews__arrow:active {
  transform: scale(0.95);
}
.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.reviews__dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.08);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reviews__dot:hover {
  background: #a1a1aa;
}
.reviews__dot.is-active {
  background: #dc2626;
  width: 28px;
}
.reviews__progress {
  width: 80px;
  height: 3px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 9999px;
  overflow: hidden;
  margin: 1.5rem auto 0;
}
.reviews__progress-bar {
  height: 100%;
  background: #dc2626;
  width: 0%;
  border-radius: 9999px;
}

.review-slide {
  grid-area: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
  background-color: #fafaf9;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
.review-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 2;
}
.review-slide__quote {
  width: 48px;
  height: 48px;
  color: #dc2626;
  opacity: 0.15;
  margin-bottom: 1rem;
}
.review-slide__quote svg {
  width: 100%;
  height: 100%;
}
.review-slide__text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #18181b;
  margin: 0 0 1.5rem;
  max-width: 600px;
  font-weight: 400;
}
@media (min-width: 640px) {
  .review-slide__text {
    font-size: 1.25rem;
  }
}
.review-slide__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 1.5rem;
}
.review-slide__stars svg {
  width: 20px;
  height: 20px;
  fill: rgba(0, 0, 0, 0.08);
  transition: fill 150ms;
}
.review-slide__stars svg.is-filled {
  fill: #f59e0b;
}
.review-slide__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.review-slide__avatar {
  width: 52px;
  height: 52px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #09090b 0%, #18181b 100%);
  color: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-slide__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}
.review-slide__name {
  font-style: normal;
  font-size: 1rem;
  font-weight: 600;
  color: #18181b;
}
.review-slide__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: #10b981;
  font-weight: 500;
}
.review-slide__badge svg {
  width: 14px;
  height: 14px;
}

.reviews--dark {
  background: #09090b;
}
.reviews--dark .reviews__title {
  color: #fafafa;
}
.reviews--dark .reviews__arrow {
  background: #0f0f12;
  border-color: rgba(255, 255, 255, 0.08);
  color: #a1a1aa;
}
.reviews--dark .reviews__arrow:hover {
  background: #18181b;
  border-color: #dc2626;
  color: #dc2626;
}
.reviews--dark .reviews__dot {
  background: rgba(255, 255, 255, 0.08);
}
.reviews--dark .reviews__dot:hover {
  background: #71717a;
}
.reviews--dark .reviews__dot.is-active {
  background: #dc2626;
}
.reviews--dark .reviews__progress {
  background: rgba(255, 255, 255, 0.08);
}
.reviews--dark .review-slide__text {
  color: #fafafa;
}
.reviews--dark .review-slide__stars svg {
  fill: #27272a;
}
.reviews--dark .review-slide__avatar {
  background: #dc2626;
}
.reviews--dark .review-slide__name {
  color: #fafafa;
}

.js-ready .value-card[data-animate],
.js-ready .about-story__content[data-animate],
.js-ready .about-story__image-col[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.js-ready .value-card[data-animate].is-visible,
.js-ready .about-story__content[data-animate].is-visible,
.js-ready .about-story__image-col[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js-ready .value-card[data-animate]:nth-child(1) {
  transition-delay: 0ms;
}
.js-ready .value-card[data-animate]:nth-child(2) {
  transition-delay: 100ms;
}
.js-ready .value-card[data-animate]:nth-child(3) {
  transition-delay: 200ms;
}
.js-ready .value-card[data-animate]:nth-child(4) {
  transition-delay: 300ms;
}
.js-ready .about-story__image-col[data-animate] {
  transition-delay: 150ms;
}

.about-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #09090b;
}
.about-hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 9, 11, 0.95) 0%, rgba(9, 9, 11, 0.85) 35%, rgba(9, 9, 11, 0.5) 60%, rgba(9, 9, 11, 0.3) 100%);
}
@media (max-width: 767px) {
  .about-hero__image::after {
    background: linear-gradient(180deg, rgba(9, 9, 11, 0.7) 0%, rgba(9, 9, 11, 0.85) 50%, rgba(9, 9, 11, 0.95) 100%);
  }
}
.about-hero::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}
.about-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 8rem clamp(1.5rem, 4vw, 3rem) 4rem;
}
@media (min-width: 1024px) {
  .about-hero__content {
    padding: 6rem clamp(1.5rem, 4vw, 3rem);
    max-width: 650px;
    margin-left: max(clamp(1.5rem, 4vw, 3rem), (100vw - 1400px) / 2 + clamp(1.5rem, 4vw, 3rem));
    margin-right: auto;
  }
}
.about-hero__mobile-bg {
  display: none;
}
.about-hero__accent-shape {
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(220, 38, 38, 0.2);
  border-radius: 24px;
  transform: rotate(-12deg);
  z-index: 1;
  display: none;
}
@media (min-width: 1024px) {
  .about-hero__accent-shape {
    display: block;
  }
}
.about-hero__accent-shape::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(220, 38, 38, 0.15);
  border-radius: 16px;
}
.about-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.12);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
  border: 1px solid rgba(220, 38, 38, 0.2);
  width: fit-content;
}
.about-hero__label-dot {
  width: 6px;
  height: 6px;
  background: #dc2626;
  border-radius: 50%;
  animation: about-pulse 2s ease-in-out infinite;
}
.about-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fafafa;
  margin-bottom: 1.5rem;
}
.about-hero__title .highlight {
  color: #dc2626;
}
.about-hero__desc {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #a1a1aa;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.about-hero__desc strong {
  color: #fafafa;
  font-weight: 600;
}
.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@keyframes about-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.15);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .about-hero__label,
  .about-hero__title,
  .about-hero__desc,
  .about-hero__actions {
    animation: about-fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  }
  .about-hero__label {
    animation-delay: 0.1s;
  }
  .about-hero__title {
    animation-delay: 0.2s;
  }
  .about-hero__desc {
    animation-delay: 0.4s;
  }
  .about-hero__actions {
    animation-delay: 0.6s;
  }
  .about-hero__image-wrapper img {
    animation: about-zoomIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) backwards;
    animation-delay: 0.3s;
  }
  .about-hero__accent-shape {
    animation: about-floatIn 1s cubic-bezier(0.16, 1, 0.3, 1) backwards;
    animation-delay: 0.6s;
  }
}
@keyframes about-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes about-zoomIn {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1);
  }
}
@keyframes about-floatIn {
  from {
    opacity: 0;
    transform: rotate(-12deg) translateY(40px);
  }
  to {
    opacity: 1;
    transform: rotate(-12deg) translateY(0);
  }
}
.about-values {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: #fafaf9;
  color: #18181b;
}
.about-values__header {
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .about-values__header {
    max-width: 600px;
  }
}
.about-values__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #dc2626;
  margin-bottom: 0.75rem;
}
.about-values__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #18181b;
}
.about-values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .about-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .about-values__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  position: relative;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1), border-color 250ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) and (pointer: fine) {
  .value-card:hover {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
}
.value-card__index {
  font-size: 0.875rem;
  font-weight: 700;
  color: #a1a1aa;
  margin-bottom: 1.5rem;
  font-variant-numeric: tabular-nums;
}
.value-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 38, 38, 0.08);
  border-radius: 12px;
  margin-bottom: 1.25rem;
}
.value-card__icon svg {
  width: 22px;
  height: 22px;
  color: #dc2626;
}
.value-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #18181b;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.value-card__desc {
  font-size: 0.9375rem;
  color: #52525b;
  line-height: 1.65;
}

.about-story {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: #f4f4f5;
  overflow: hidden;
}
.about-story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-story__grid {
    grid-template-columns: 5.5fr 4.5fr;
  }
}
.about-story__content {
  text-align: center;
}
@media (min-width: 768px) {
  .about-story__content {
    text-align: left;
  }
}
.about-story__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #dc2626;
  margin-bottom: 0.75rem;
}
.about-story__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #18181b;
}
.about-story__text {
  margin: 2rem 0;
}
.about-story__text p {
  font-size: 1.125rem;
  color: #52525b;
  line-height: 1.75;
}
.about-story__text p + p {
  margin-top: 1.5rem;
}
.about-story__signature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .about-story__signature {
    justify-content: flex-start;
  }
}
.about-story__avatar {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background: #fafaf9;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #52525b;
  flex-shrink: 0;
  overflow: hidden;
}
.about-story__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-story__name {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #18181b;
}
.about-story__role {
  display: block;
  font-size: 0.875rem;
  color: #a1a1aa;
}
.about-story__image-col {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .about-story__image-col {
    justify-content: flex-end;
    transform: translateY(30px);
    margin-left: -20px;
  }
}
.about-story__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/5;
  background: #fafaf9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}
.about-story__image-wrapper::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 100px;
  height: 100px;
  background: rgba(220, 38, 38, 0.15);
  border-radius: 12px;
  z-index: -1;
}
.about-story__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-cta {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: #09090b;
  overflow: hidden;
}
.about-cta__bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.06);
  filter: blur(120px);
  pointer-events: none;
}
.about-cta__inner {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.about-cta__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fafafa;
  margin-bottom: 1.25rem;
}
.about-cta__title .highlight {
  color: #dc2626;
}
.about-cta__desc {
  font-size: 1.125rem;
  color: #a1a1aa;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}
.about-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cars {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: #fafaf9;
  color: #18181b;
}
.cars__empty-msg {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem;
}
.cars__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .cars__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.cars__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #dc2626;
  margin-bottom: 0.75rem;
}
.cars__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #18181b;
}
.cars__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #52525b;
  transition: color 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.cars__link svg {
  width: 16px;
  height: 16px;
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) and (pointer: fine) {
  .cars__link:hover {
    color: #18181b;
  }
  .cars__link:hover svg {
    transform: translateX(4px);
  }
}
.cars__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .cars__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .cars__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1280px) {
  .cars__grid {
    gap: 2rem;
  }
}
@media (min-width: 768px) {
  .cars__grid .car-card:first-child {
    grid-column: span 2;
    flex-direction: row;
  }
  .cars__grid .car-card:first-child .car-card__gallery-wrapper {
    aspect-ratio: auto;
    width: 55%;
    flex-shrink: 0;
    height: auto;
  }
  .cars__grid .car-card:first-child .car-card__gallery,
  .cars__grid .car-card:first-child .car-card__slide,
  .cars__grid .car-card:first-child .car-card__slide img {
    height: 100%;
    object-fit: cover;
  }
  .cars__grid .car-card:first-child .car-card__content {
    padding: 1.5rem 2rem;
    justify-content: center;
  }
  .cars__grid .car-card:first-child .car-card__title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  .cars__grid .car-card:first-child .car-card__specs {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .cars__grid .car-card:first-child .car-card__desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1.5rem;
  }
  .cars__grid .car-card:first-child .car-card__price {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #18181b;
  }
  .cars__grid .car-card:first-child .car-card__price--request {
    color: #dc2626;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 700;
  }
  .cars__grid .car-card:first-child .car-card__btn {
    width: 48px;
    height: 48px;
  }
  .cars__grid .car-card:first-child .car-card__btn svg {
    width: 20px;
    height: 20px;
  }
}
@media (min-width: 1024px) {
  .cars__grid .car-card:first-child {
    grid-column: span 2;
  }
  .cars__grid .car-card:first-child .car-card__gallery-wrapper {
    width: 60%;
  }
  .cars__grid .car-card:first-child .car-card__content {
    padding: 2rem;
  }
  .cars__grid .car-card:first-child .car-card__title {
    font-size: 2rem;
  }
  .cars__grid .car-card:first-child .car-card__desc {
    font-size: 1rem;
  }
  .cars__grid .car-card:first-child .car-card__price {
    font-size: 1.5rem;
  }
}
.cars__actions {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.car-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 250ms cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.car-card__gallery-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f0f0f0;
  z-index: 15;
}
.car-card__gallery-wrapper:hover .car-card__nav {
  opacity: 1;
}
.car-card__gallery-link {
  position: absolute;
  inset: 0;
  z-index: 10;
  cursor: pointer;
}
.car-card__gallery {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.car-card__gallery::-webkit-scrollbar {
  display: none;
}
.car-card__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
}
.car-card__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.car-card__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
}
.car-card__nav:hover {
  background: rgba(255, 255, 255, 0.9);
  color: black;
  transform: translateY(-50%) scale(1.1);
}
.car-card__nav--prev {
  left: 8px;
}
.car-card__nav--next {
  right: 8px;
}
.car-card__dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 15;
  pointer-events: none;
}
.car-card__dots .dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: all 0.2s;
}
.car-card__dots .dot.active {
  background: white;
  transform: scale(1.2);
}
@media (hover: none) {
  .car-card .car-card__nav {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .car-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 12px 24px rgba(0, 0, 0, 0.04), 0 24px 48px rgba(0, 0, 0, 0.06);
  }
  .car-card:hover .car-card__image img {
    transform: scale(1.05);
  }
  .car-card:hover .car-card__btn {
    background: #09090b;
    color: #fafafa;
    border-color: #09090b;
  }
}
.car-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  cursor: pointer;
}
.car-card__overlay:focus-visible {
  outline: 2px solid #dc2626;
  outline-offset: 2px;
}
.car-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 20;
  padding: 0.5rem 0.75rem;
  background: #09090b;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.car-card__badge--premium {
  background: #dc2626;
  color: white;
  box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.4);
}
.car-card__badge--new {
  background: #10b981;
  color: white;
}
.car-card__badge--reserved {
  background: #fef3c7;
  color: #92400e;
}
.car-card__badge--sold {
  background: #f4f4f5;
  color: #52525b;
}
.car-card__image {
  position: relative;
  aspect-ratio: 4/3;
  background: #f4f4f5;
  overflow: hidden;
  width: 100%;
}
.car-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.car-card__content {
  position: relative;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  z-index: 1;
}
@media (min-width: 768px) {
  .car-card__content {
    padding: 1.5rem;
  }
}
.car-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #18181b;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .car-card__title {
    font-size: 1.25rem;
  }
}
.car-card__desc {
  display: none;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #52525b;
  margin-bottom: 1rem;
}
.car-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #a1a1aa;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .car-card__specs {
    margin-bottom: 1.25rem;
  }
}
.car-card__specs span:not(:last-child)::after {
  content: "·";
  margin-left: 0.5rem;
  opacity: 0.5;
}
.car-card__spec--bold {
  font-weight: 700;
}
.car-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.car-card__price {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #18181b;
}
.car-card__price-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.car-card__vat {
  font-size: 0.75rem;
  font-weight: 600;
  color: #047857;
  line-height: 1.2;
}
.car-card__btn {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #52525b;
  background: transparent;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}
.car-card__btn svg {
  width: 18px;
  height: 18px;
}

.contact-hero {
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: #09090b;
}
@media (min-width: 768px) {
  .contact-hero {
    align-items: center;
  }
}
.contact-hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-hero__image-wrapper {
  width: 100%;
  height: 100%;
}
.contact-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
@media (min-width: 768px) {
  .contact-hero__image img {
    object-position: center;
  }
}
.contact-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 9, 11, 0.95) 0%, rgba(9, 9, 11, 0.85) 35%, rgba(9, 9, 11, 0.5) 60%, rgba(9, 9, 11, 0.3) 100%);
}
@media (max-width: 767px) {
  .contact-hero__image::after {
    background: linear-gradient(180deg, rgba(9, 9, 11, 0.1) 0%, rgba(9, 9, 11, 0.15) 30%, rgba(9, 9, 11, 0.5) 55%, rgba(9, 9, 11, 0.85) 75%, rgba(9, 9, 11, 0.92) 100%);
  }
}
.contact-hero::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}
.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}
.contact-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem clamp(1.5rem, 4vw, 3rem) 3rem;
}
@media (min-width: 1024px) {
  .contact-hero__content {
    padding: 6rem clamp(1.5rem, 4vw, 3rem);
    max-width: 600px;
    margin-left: max(clamp(1.5rem, 4vw, 3rem), (100vw - 1400px) / 2 + clamp(1.5rem, 4vw, 3rem));
    margin-right: auto;
  }
}
.contact-hero__mobile-bg {
  display: none;
}
.contact-hero__accent-shape {
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(220, 38, 38, 0.2);
  border-radius: 24px;
  transform: rotate(-12deg);
  z-index: 1;
  display: none;
}
@media (min-width: 1024px) {
  .contact-hero__accent-shape {
    display: block;
  }
}
.contact-hero__accent-shape::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(220, 38, 38, 0.15);
  border-radius: 16px;
}
.contact-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.12);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
  border: 1px solid rgba(220, 38, 38, 0.2);
  width: fit-content;
}
.contact-hero__label-dot {
  width: 6px;
  height: 6px;
  background: #dc2626;
  border-radius: 50%;
  animation: contact-pulse 2s ease-in-out infinite;
}
.contact-hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fafafa;
  margin-bottom: 1.5rem;
}
.contact-hero__title .highlight {
  color: #dc2626;
}
.contact-hero__desc {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #a1a1aa;
  line-height: 1.7;
  max-width: 480px;
}

@keyframes contact-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.15);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .contact-hero__label,
  .contact-hero__title,
  .contact-hero__desc {
    animation: contact-fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  }
  .contact-hero__label {
    animation-delay: 0.1s;
  }
  .contact-hero__title {
    animation-delay: 0.2s;
  }
  .contact-hero__desc {
    animation-delay: 0.4s;
  }
  .contact-hero__image-wrapper img {
    animation: contact-zoomIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) backwards;
    animation-delay: 0.3s;
  }
  .contact-hero__accent-shape {
    animation: contact-floatIn 1s cubic-bezier(0.16, 1, 0.3, 1) backwards;
    animation-delay: 0.6s;
  }
}
@keyframes contact-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes contact-zoomIn {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1);
  }
}
@keyframes contact-floatIn {
  from {
    opacity: 0;
    transform: rotate(-12deg) translateY(40px);
  }
  to {
    opacity: 1;
    transform: rotate(-12deg) translateY(0);
  }
}
.contact-info {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: #fafaf9;
}
.contact-info__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .contact-info__layout {
    grid-template-columns: 1.1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
  }
}
.contact-info__primary {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-info__secondary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .contact-info__secondary {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .contact-info__secondary {
    grid-template-columns: 1fr;
  }
}

.contact-card-big {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 440px) {
  .contact-card-big {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
  }
}
@media (min-width: 768px) {
  .contact-card-big {
    gap: 1.5rem;
    padding: 2rem 2.5rem;
  }
}
.contact-card-big::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #dc2626;
  opacity: 0;
  transition: opacity 250ms;
}
@media (hover: hover) and (pointer: fine) {
  .contact-card-big:hover {
    border-color: rgba(220, 38, 38, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 12px 24px rgba(0, 0, 0, 0.04), 0 24px 48px rgba(0, 0, 0, 0.06);
  }
  .contact-card-big:hover::before {
    opacity: 1;
  }
  .contact-card-big:hover .contact-card-big__icon {
    background: #dc2626;
    border-color: #dc2626;
    transform: scale(1.05);
  }
  .contact-card-big:hover .contact-card-big__icon svg {
    stroke: white;
  }
  .contact-card-big:hover .contact-card-big__arrow {
    opacity: 1;
    transform: translateX(0);
  }
  .contact-card-big:hover .contact-card-big__value {
    color: #dc2626;
  }
}
.contact-card-big__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.15);
  border-radius: 16px;
  flex-shrink: 0;
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-card-big__icon svg {
  width: 26px;
  height: 26px;
  stroke: #dc2626;
  transition: stroke 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-card-big__content {
  flex: 1;
  min-width: 0;
}
.contact-card-big__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #a1a1aa;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.contact-card-big__value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #18181b;
  letter-spacing: -0.01em;
  transition: color 250ms;
}
@media (min-width: 768px) {
  .contact-card-big__value {
    font-size: 1.5rem;
  }
}
.contact-card-big__note {
  display: block;
  font-size: 0.875rem;
  color: #52525b;
  margin-top: 0.5rem;
}
.contact-card-big__arrow {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}
.contact-card-big__arrow svg {
  width: 24px;
  height: 24px;
  stroke: #dc2626;
}

.contact-card-location {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  height: 100%;
  text-decoration: none;
}
@media (min-width: 440px) {
  .contact-card-location {
    flex-direction: row;
    gap: 1.25rem;
  }
}
.contact-card-location--link {
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .contact-card-location--link:hover {
    border-color: rgba(220, 38, 38, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 12px 24px rgba(0, 0, 0, 0.04), 0 24px 48px rgba(0, 0, 0, 0.06);
  }
  .contact-card-location--link:hover .contact-card-location__icon {
    background: #dc2626;
    border-color: #dc2626;
  }
  .contact-card-location--link:hover .contact-card-location__icon svg {
    stroke: white;
  }
  .contact-card-location--link:hover .contact-card-location__link {
    gap: 0.75rem;
  }
  .contact-card-location--link:hover .contact-card-location__link svg {
    transform: translate(2px, -2px);
  }
}
.contact-card-location--expanded {
  flex-direction: column;
  padding: 0;
  gap: 0;
  overflow: hidden;
  height: auto;
}
@media (min-width: 440px) {
  .contact-card-location--expanded {
    flex-direction: column;
  }
}
.contact-card-location__top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}
@media (min-width: 440px) {
  .contact-card-location__top {
    flex-direction: row;
    gap: 1.25rem;
  }
}
@media (min-width: 768px) {
  .contact-card-location__top {
    padding: 2rem 2.5rem;
  }
}
.contact-card-location__map-preview {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border-radius: 0 0 16px 16px;
  flex-shrink: 0;
}
.contact-card-location__map-preview #contact-map-mini {
  display: block;
  width: 100%;
  height: 190px;
}
@media (min-width: 768px) {
  .contact-card-location__map-preview #contact-map-mini {
    height: 220px;
  }
}
.contact-card-location__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.15);
  border-radius: 16px;
  flex-shrink: 0;
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-card-location__icon svg {
  width: 26px;
  height: 26px;
  stroke: #dc2626;
  transition: stroke 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-card-location__content {
  flex: 1;
  min-width: 0;
}
.contact-card-location__content h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #a1a1aa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.contact-card-location__address {
  font-size: 1rem;
  font-weight: 500;
  color: #18181b;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.contact-card-location__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #dc2626;
  transition: gap 250ms;
}
.contact-card-location__link svg {
  width: 14px;
  height: 14px;
  transition: transform 250ms;
}
@media (hover: hover) and (pointer: fine) {
  .contact-card-location__link:hover {
    gap: 0.75rem;
  }
  .contact-card-location__link:hover svg {
    transform: translate(2px, -2px);
  }
}

.custom-marker {
  background: transparent !important;
  border: none !important;
}

.marker-pin {
  width: 36px;
  height: 45px;
  color: #dc2626;
  filter: drop-shadow(0 4px 8px rgba(220, 38, 38, 0.45));
  animation: markerBounce 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.marker-pin svg {
  width: 100%;
  height: 100%;
}

@keyframes markerBounce {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.8);
  }
  70% {
    transform: translateY(4px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.contact-card-hours {
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.contact-card-hours__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 440px) {
  .contact-card-hours__header {
    flex-direction: row;
    align-items: center;
  }
}
.contact-card-hours__header svg {
  width: 26px;
  height: 26px;
  padding: 15px;
  stroke: #dc2626;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.15);
  border-radius: 16px;
  box-sizing: content-box;
  flex-shrink: 0;
}
.contact-card-hours__header h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #a1a1aa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-card-hours__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.contact-card-hours__status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1rem;
  margin-top: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.875rem;
  font-weight: 500;
  color: #52525b;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #52525b;
}
.hours-item--closed {
  color: #a1a1aa;
}

.hours-note {
  font-size: 0.875rem;
  margin-top: 1rem;
  color: #a1a1aa;
  text-align: center;
}

.contact-card-hours__status {
  margin-top: 1rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a1a1aa;
}
.status-dot--open {
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}
.status-dot--closed {
  background: #dc2626;
}

.contact-team {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: #f4f4f5;
}
.contact-team__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.contact-team__header .section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #dc2626;
  margin-bottom: 0.75rem;
}
.contact-team__header .section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #18181b;
  margin-bottom: 1rem;
}
.contact-team__header .section-desc {
  font-size: 1.125rem;
  color: #52525b;
  line-height: 1.7;
}
.contact-team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .contact-team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .contact-team__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) and (pointer: fine) {
  .team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 12px 24px rgba(0, 0, 0, 0.04), 0 24px 48px rgba(0, 0, 0, 0.06);
  }
  .team-card:hover .team-card__overlay {
    opacity: 1;
  }
  .team-card:hover .team-card__image-inner {
    transform: scale(1.08);
  }
}
.team-card__image-wrapper {
  position: relative;
  height: 370px;
  overflow: hidden;
  background: #f4f4f5;
}
.team-card__image-inner {
  width: 100%;
  height: 100%;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.team-card__image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 9, 11, 0.9) 0%, rgba(9, 9, 11, 0.5) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.75rem;
  padding-bottom: 1.5rem;
  opacity: 0;
  transition: opacity 400ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}
.team-card__action {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dc2626;
  border-radius: 9999px;
  transition: all 250ms;
}
.team-card__action svg {
  width: 20px;
  height: 20px;
  stroke: #09090b;
}
@media (hover: hover) and (pointer: fine) {
  .team-card__action:hover {
    background: #ef4444;
    transform: scale(1.1);
  }
}
.team-card__content {
  padding: 1.5rem;
}
.team-card__name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #18181b;
  margin-bottom: 0.25rem;
}
.team-card__role {
  font-size: 0.875rem;
  font-weight: 500;
  color: #dc2626;
  margin-bottom: 1rem;
}
.team-card__languages {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: #a1a1aa;
  display: flex;
  align-items: center;
  gap: 6px;
}
.team-card__languages .fi {
  border-radius: 2px;
}
.team-card__contact {
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.team-card__contact a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #a1a1aa;
  transition: color 250ms;
}
@media (hover: hover) and (pointer: fine) {
  .team-card__contact a:hover {
    color: #dc2626;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .contact-card-big,
  .contact-card-location,
  .contact-card-hours {
    animation: contact-fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  }
  .contact-card-big:nth-child(1) {
    animation-delay: 0.1s;
  }
  .contact-card-big:nth-child(2) {
    animation-delay: 0.2s;
  }
  .contact-card-location {
    animation-delay: 0.3s;
  }
  .contact-card-hours {
    animation-delay: 0.4s;
  }
  .team-card {
    animation: contact-fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  }
  .team-card:nth-child(1) {
    animation-delay: 0.15s;
  }
  .team-card:nth-child(2) {
    animation-delay: 0.3s;
  }
  .team-card:nth-child(3) {
    animation-delay: 0.45s;
  }
}
.car-detail {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: #fafaf9;
  color: #18181b;
  min-height: 100vh;
}
.car-detail--request {
  color: #dc2626;
  font-size: 0.8em;
  text-transform: uppercase;
  font-weight: 700;
}
.car-detail__container {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .car-detail__container {
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}
.car-detail__gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.car-detail .gallery__main {
  width: 100%;
  aspect-ratio: 4/3;
  background: #f4f4f5;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  cursor: zoom-in;
}
.car-detail .gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.car-detail .gallery__main .gallery__zoom-icon {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.car-detail .gallery__main .gallery__zoom-icon svg {
  width: 20px;
  height: 20px;
}
.car-detail .gallery__main:hover .gallery__zoom-icon {
  opacity: 1;
  transform: scale(1.1);
}
.car-detail .gallery__thumbnails {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}
@media (max-width: 767px) {
  .car-detail .gallery__thumbnails {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
  }
}
.car-detail .gallery__thumb {
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.7;
}
.car-detail .gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.car-detail .gallery__thumb:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.car-detail .gallery__thumb.active {
  opacity: 1;
  border-color: #dc2626;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
}
@media (min-width: 1024px) {
  .car-detail__info {
    position: sticky;
    top: 120px;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }
}
.car-detail__header {
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 1.5rem;
}
.car-detail__brand {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #dc2626;
  margin-bottom: 0.5rem;
  display: block;
}
.car-detail__title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #18181b;
}
.car-detail__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}
.car-detail__price {
  font-size: 2rem;
  font-weight: 700;
  color: #18181b;
  letter-spacing: -0.02em;
}
.car-detail__price small {
  font-size: 1rem;
  font-weight: 400;
  color: #52525b;
  margin-left: 0.25rem;
}
.car-detail__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.car-detail .spec-card {
  background: #f4f4f5;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: background 250ms;
}
.car-detail .spec-card:hover {
  background: rgb(235.9857142857, 235.9857142857, 237.7142857143);
}
.car-detail .spec-card__label {
  font-size: 0.75rem;
  color: #a1a1aa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.car-detail .spec-card__label svg {
  width: 14px;
  height: 14px;
  color: #dc2626;
}
.car-detail .spec-card__value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #18181b;
}
.car-detail__desc-block {
  margin-bottom: 2rem;
}
.car-detail__desc-block h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.car-detail__desc-block p {
  font-size: 1rem;
  color: #52525b;
  line-height: 1.7;
}
.car-detail__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.car-detail__feature-tag {
  font-size: 0.75rem;
  font-weight: 500;
  background: #f4f4f5;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  color: #52525b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.car-detail__feature-tag svg {
  width: 12px;
  height: 12px;
  color: #dc2626;
}
.car-detail__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.car-detail__actions .btn {
  width: 100%;
  justify-content: center;
}
.car-detail__stock-badge {
  color: #16a34a;
  font-weight: 600;
  font-size: 0.875rem;
  display: block;
  margin-top: 0.5rem;
}
.car-detail__vin {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 0.75rem 1rem;
  background: #f4f4f5;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}
.car-detail__vin-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a1a1aa;
  flex-shrink: 0;
}
.car-detail__vin-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #18181b;
  letter-spacing: 0.04em;
  word-break: break-all;
}
.car-detail__full-info {
  margin-top: 3rem;
}
.car-detail__features-block {
  margin-top: 2rem;
}

.detail-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.875rem;
  z-index: 2;
}
.detail-badge--reserved {
  background: #FEF3C7;
  color: #92400E;
}
.detail-badge--sold {
  background: #F3F4F6;
  color: #374151;
}

.spec-card--vat {
  grid-column: 1/-1;
  background-color: #ecfdf5;
  color: #065f46;
}
.spec-card--vat .spec-card__label {
  color: #047857;
}
.spec-card--vat .spec-card__label svg {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.btn--outline-subtle {
  border-color: rgba(0, 0, 0, 0.08);
  color: #18181b;
}

.detail-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.detail-nav__breadcrumbs {
  font-size: 0.875rem;
  color: #52525b;
}
.detail-nav__breadcrumbs a {
  transition: color 250ms;
}
.detail-nav__breadcrumbs a:hover {
  color: #dc2626;
}
.detail-nav__breadcrumbs span {
  margin: 0 0.5rem;
  opacity: 0.5;
}
.detail-nav__breadcrumbs .current {
  color: #18181b;
  font-weight: 600;
}
.detail-nav__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #52525b;
}
.detail-nav__back svg {
  width: 16px;
  height: 16px;
  transition: transform 250ms;
}
.detail-nav__back:hover {
  color: #18181b;
}
.detail-nav__back:hover svg {
  transform: translateX(-4px);
}

.financing-badge {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 12px;
  padding: 1rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.financing-badge__icon {
  width: 40px;
  height: 40px;
  background: #dc2626;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #09090b;
  flex-shrink: 0;
}
.financing-badge__text {
  display: flex;
  flex-direction: column;
}
.financing-badge__text small {
  font-size: 0.75rem;
  color: #a1a1aa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.financing-badge__text strong {
  font-size: 1.125rem;
  font-weight: 700;
  color: #18181b;
}

.related-cars {
  margin-top: 6rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.related-cars__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}
.related-cars__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #18181b;
}
.related-cars__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .related-cars__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.related-cars__grid .car-card {
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.related-cars__grid .car-card__image {
  aspect-ratio: 4/3;
}
.related-cars__grid .car-card__content {
  padding: 1.25rem;
}
.related-cars__grid .car-card__title {
  font-size: 1.125rem;
}
.related-cars__grid .car-card__price {
  font-size: 1.25rem;
}
.related-cars__actions {
  margin-top: 3rem;
  text-align: center;
}
.related-cars__actions .btn {
  min-width: 200px;
}

.catalog {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: #fafaf9;
  min-height: 100vh;
  overflow: hidden;
}
.catalog .container {
  position: relative;
  z-index: 1;
}

.catalog__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.catalog__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}

.catalog__bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: linear-gradient(180deg, rgba(220, 38, 38, 0.03) 0%, rgba(220, 38, 38, 0.01) 50%, transparent 100%);
}

.catalog__bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  background: #dc2626;
}
.catalog__bg-blob--1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -150px;
  opacity: 0.15;
}
@media (min-width: 1024px) {
  .catalog__bg-blob--1 {
    width: 600px;
    height: 600px;
  }
}
.catalog__bg-blob--2 {
  width: 400px;
  height: 400px;
  bottom: 10%;
  left: -200px;
  opacity: 0.1;
}

.catalog__page-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}
@media (min-width: 1024px) {
  .catalog__page-header {
    margin-bottom: 4rem;
  }
}

.catalog__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #dc2626;
  padding: 0.5rem 1rem;
  background: rgba(220, 38, 38, 0.12);
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.catalog__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #18181b;
  margin-bottom: 1rem;
}

.catalog__subtitle {
  font-size: 1.125rem;
  color: #52525b;
  line-height: 1.6;
}

.catalog__layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .catalog__layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
  }
}
@media (min-width: 1280px) {
  .catalog__layout {
    grid-template-columns: 300px 1fr;
    gap: 3rem;
  }
}

html.sidebar-open {
  overflow: hidden;
}
html.sidebar-open body {
  overflow: hidden;
}

.catalog__sidebar {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  height: fit-content;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
@media (min-width: 1024px) {
  .catalog__sidebar {
    position: sticky;
    top: 100px;
  }
}
@media (max-width: 767px) {
  .catalog__sidebar {
    position: fixed;
    inset: 0;
    height: 100%;
    z-index: 400;
    transform: translateX(-100%);
    transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    border-radius: 0;
    backdrop-filter: none;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    padding-bottom: 4rem;
  }
  .catalog__sidebar.is-open {
    transform: translateX(0);
  }
}

.catalog__mobile-close {
  align-self: flex-end;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .catalog__mobile-close {
    display: none !important;
  }
}

.filter-group {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-group__title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #18181b;
  margin-bottom: 1rem;
}

.filter-group__grid {
  display: grid;
  gap: 0.75rem;
}

.filter-group__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  font-size: 0.875rem;
  font-family: inherit;
  background: #fafaf9;
  color: #18181b;
  transition: all 150ms;
}
.form-input::placeholder {
  color: #a1a1aa;
}
.form-input:hover {
  border-color: rgba(0, 0, 0, 0.15);
}
.form-input:focus {
  outline: none;
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #52525b;
  cursor: pointer;
  padding: 0.5rem;
  margin: -0.5rem;
  border-radius: 8px;
  transition: all 150ms;
}
.checkbox-label input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #dc2626;
  cursor: pointer;
}
.checkbox-label .checkbox-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
.checkbox-label:hover {
  color: #18181b;
  background: rgba(0, 0, 0, 0.02);
}
.checkbox-label--premium {
  color: #dc2626;
  font-weight: 600;
  background: rgba(220, 38, 38, 0.12);
  padding: 0.75rem;
  margin: 0 0 0.5rem;
  border-radius: 12px;
  border: 1px solid rgba(220, 38, 38, 0.2);
}
.checkbox-label--premium:hover {
  background: rgba(220, 38, 38, 0.15);
}

.icon-premium {
  width: 16px;
  height: 16px;
  margin-right: 0.25rem;
}

.catalog__content {
  min-width: 0;
}

.catalog__toolbar {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.catalog__count {
  font-size: 0.875rem;
  color: #a1a1aa;
}
.catalog__count strong {
  color: #18181b;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .catalog__toggle-btn {
    display: none !important;
  }
}

.catalog__sort .form-input {
  width: auto;
  min-width: 160px;
  padding-right: 2rem;
  cursor: pointer;
}

.catalog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .catalog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .catalog__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.catalog__empty {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  text-align: center;
  padding: 4rem 2rem;
}

.catalog__empty-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.catalog__empty-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #18181b;
  margin-bottom: 0.5rem;
}

.catalog__empty-text {
  font-size: 1rem;
  color: #a1a1aa;
  margin-bottom: 2rem;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination__link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  color: #52525b;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.pagination__link:hover {
  border-color: #dc2626;
  color: #dc2626;
  transform: translateY(-2px);
}
.pagination__link.is-active {
  background: #dc2626;
  border-color: #dc2626;
  color: white;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.catalog .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.catalog .btn svg {
  width: 18px;
  height: 18px;
}
.catalog .btn--primary {
  background: #dc2626;
  color: white;
  border-color: #dc2626;
}
.catalog .btn--primary:hover {
  background: #ef4444;
  border-color: #ef4444;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}
.catalog .btn--secondary {
  background: #ffffff;
  color: #18181b;
  border-color: rgba(0, 0, 0, 0.15);
}
.catalog .btn--secondary:hover {
  background: #fafaf9;
  border-color: #a1a1aa;
  transform: translateY(-2px);
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
.skeleton-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.skeleton-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(to right, #f0f0f0 8%, #e0e0e0 18%, #f0f0f0 33%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite linear;
}

.skeleton-card__content {
  padding: 1.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skeleton-card__title {
  height: 24px;
  width: 70%;
  border-radius: 4px;
  background: linear-gradient(to right, #f0f0f0 8%, #e0e0e0 18%, #f0f0f0 33%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite linear;
}

.skeleton-card__specs {
  height: 16px;
  width: 40%;
  border-radius: 4px;
  background: linear-gradient(to right, #f0f0f0 8%, #e0e0e0 18%, #f0f0f0 33%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite linear;
}

.skeleton-card__footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.skeleton-card__price {
  height: 28px;
  width: 30%;
  border-radius: 4px;
  background: linear-gradient(to right, #f0f0f0 8%, #e0e0e0 18%, #f0f0f0 33%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite linear;
}

.skeleton-card__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(to right, #f0f0f0 8%, #e0e0e0 18%, #f0f0f0 33%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite linear;
}

/* Farba a veľkosť čísla v zátvorke */
.checkbox-count {
  color: #9ca3af;
  font-size: 0.85em;
}

/* Zakázaný (prázdny) filter */
.checkbox-label.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.legal-hero {
  padding: 10rem 0 3rem;
  background: #09090b;
  position: relative;
  overflow: hidden;
}
.legal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.legal-hero__content {
  position: relative;
  z-index: 10;
}
.legal-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #dc2626;
  margin-bottom: 1.25rem;
}
.legal-hero__label-icon {
  width: 16px;
  height: 16px;
}
.legal-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fafafa;
  margin-bottom: 1rem;
}
.legal-hero__desc {
  font-size: 1.125rem;
  color: #a1a1aa;
  line-height: 1.6;
  max-width: 560px;
}

.legal-page {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: #fafaf9;
}
.legal-page__card {
  max-width: 820px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .legal-page__card {
    padding: 3rem 4rem;
  }
}
.legal-page__updated {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #a1a1aa;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  width: 100%;
}
.legal-page__content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #18181b;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  letter-spacing: -0.01em;
}
.legal-page__content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.legal-page__content p {
  font-size: 1rem;
  color: #52525b;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.legal-page__content ul {
  margin: 0 0 1.25rem 0;
  padding: 0;
  list-style: none;
}
.legal-page__content ul li {
  position: relative;
  font-size: 1rem;
  color: #52525b;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
}
.legal-page__content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #dc2626;
  opacity: 0.5;
}
.legal-page__content ul li strong {
  color: #18181b;
  font-weight: 600;
}
.legal-page__content a {
  color: #dc2626;
  text-decoration: none;
  font-weight: 500;
  transition: color 150ms cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) and (pointer: fine) {
  .legal-page__content a:hover {
    color: #ef4444;
    text-decoration: underline;
  }
}
