@font-face {
  font-family: "Audiowide";
  src: url("/assets/fonts/Audiowide-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SUIT Hero";
  src: url("/assets/fonts/SUIT-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --sky-50: #f4fbff;
  --sky-100: #eaf7ff;
  --sky-200: #cfeeff;
  --sky-400: #38bdf8;
  --sky-500: #0ea5e9;
  --blue-700: #0369a1;
  --blue-900: #0c4a6e;
  --ink: #142033;
  --muted: #64748b;
  --line: #dce5ed;
  --soft-line: #edf2f6;
  --green: #14965a;
  --green-soft: #e9f8f0;
  --orange: #e87916;
  --orange-soft: #fff4e8;
  --red: #d9464f;
  --shadow: 0 14px 36px rgba(15, 34, 52, 0.11);
  --header-height: 88px;
  --content: 1200px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  font-family: "Pretendard Variable", Pretendard, "Noto Sans KR", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.is-modal-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

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

button {
  cursor: pointer;
}

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

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

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

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--header-height);
  background: var(--white);
  border-bottom: 1px solid #e8e8e8;
}

.header-inner {
  position: relative;
  width: calc(100% - 34px);
  height: 83px;
  margin: 4px auto 0;
  padding-right: 40px;
  display: flex;
  align-items: center;
  gap: 0;
}

.wordmark {
  display: block;
  width: 176px;
  height: 74px;
  flex: 0 0 176px;
}

.wordmark-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (min-width: 1280px) {
  .wordmark { margin-left: 64px; }
}

.loading-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 24px;
  border-radius: 4px;
  background: var(--sky-400);
  color: var(--white);
  font-size: 16px;
  font-weight: 950;
}

.desktop-nav {
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 548px;
  height: 83px;
  margin: 0;
  padding: 0 4px;
  flex: 0 0 548px;
  transform: translateX(-50%);
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 83px;
  padding: 0 16px;
  white-space: nowrap;
  font-size: 19px;
  line-height: 29px;
  font-weight: 600;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--sky-400);
  transform: scaleX(0);
  transition: transform 0.18s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-current::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 519px;
  margin-left: auto;
  flex: 0 0 519px;
  transform: translateY(-1px);
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.icon-button:hover {
  border-color: var(--sky-400);
  color: var(--blue-700);
}

.header-consult,
.primary-button,
.submit-button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: var(--sky-500);
  color: var(--white);
  font-weight: 850;
}

.header-consult {
  width: 156px;
  height: 52px;
  padding: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 22px;
  line-height: 33px;
  font-weight: 600;
  white-space: nowrap;
}

.header-consult svg {
  width: 23px;
  height: 23px;
}

.header-search {
  position: relative;
  width: 343px;
  height: 52px;
  flex: 0 0 343px;
}

.header-search input {
  width: 100%;
  height: 52px;
  padding: 14px;
  border: 1px solid #e3e7eb;
  border-radius: 8px;
  background: var(--white);
  outline: 0;
  font-size: 14px;
  line-height: 20px;
}

.header-search input:focus {
  border-color: var(--sky-400);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.12);
}

.header-search button {
  position: absolute;
  top: 0;
  right: -40px;
  width: 52px;
  height: 50px;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: var(--sky-500);
  color: var(--white);
  display: grid;
  place-items: center;
}

.header-search button:hover {
  background: var(--blue-700);
}

.header-search button svg {
  width: 28px;
  height: 28px;
}

.header-consult:hover,
.primary-button:hover,
.submit-button:hover {
  background: var(--blue-700);
}

.mobile-menu-button,
.mobile-drawer,
.mobile-bottom-nav {
  display: none;
}

.page-loading {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  color: var(--muted);
}

.loading-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  font-size: 22px;
  animation: loading-pulse 1.2s ease-in-out infinite;
}

@keyframes loading-pulse {
  50% { opacity: 0.55; transform: translateY(-3px); }
}

.hero {
  position: relative;
  height: 605px;
  min-height: 605px;
  padding-top: 50px;
  overflow: hidden;
  background: var(--white);
}

.hero-viewport {
  position: absolute;
  top: 50px;
  left: 16px;
  width: calc(100% - 32px);
  height: 428px;
  overflow: hidden;
}

.hero-track {
  position: absolute;
  top: 0;
  left: 50%;
  height: 428px;
  display: flex;
  align-items: stretch;
  gap: 200px;
  transition: transform 0.42s ease;
  will-change: transform;
}

.hero-slide {
  position: relative;
  z-index: 1;
  width: 440px;
  height: 428px;
  flex: 0 0 440px;
  filter: brightness(0.74);
  transition: filter 0.3s ease;
}

.hero-slide.is-active {
  z-index: 3;
  filter: brightness(1);
}

.hero-banner {
  position: relative;
  display: block;
  width: 440px;
  height: 428px;
  overflow: hidden;
  border-radius: 24px;
  transition: width 0.3s ease, margin 0.3s ease, transform 0.25s ease;
}

.hero-slide.is-active .hero-banner {
  width: 760px;
  margin-right: -160px;
  margin-left: -160px;
}

.hero-banner:hover {
  transform: scale(1.015);
}

.hero-art,
.hero-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-art img {
  object-fit: cover;
}

.hero-banner.is-special {
  --special-cta-height: 48px;
  background: #eaf7ff;
  border: 1px solid rgba(3, 105, 161, 0.14);
  box-shadow: 0 18px 44px rgba(15, 71, 104, 0.14);
}

.hero-banner.is-special .hero-art {
  bottom: var(--special-cta-height);
  height: calc(100% - var(--special-cta-height));
  background: #eaf7ff;
}

.hero-banner.is-special .hero-art img {
  object-fit: cover;
  object-position: center;
}

.hero-slide:not(.is-active) .hero-banner.is-special .hero-art {
  background: #eaf7ff url("/assets/img/main/mobannerspecial-sky-v2.webp") center / cover no-repeat;
}

.hero-slide:not(.is-active) .hero-banner.is-special .hero-art img {
  opacity: 0;
}

.hero-banner.is-special .hero-promo-copy {
  color: #0b2438;
  text-shadow: none;
}

.hero-banner.is-special .hero-kicker {
  color: #0369a1;
  font-weight: 800;
}

.hero-banner.is-special .hero-promo-copy h1,
.hero-banner.is-special .hero-promo-copy h2 {
  color: #0b2438;
}

.hero-banner.is-special .hero-card-cta {
  height: var(--special-cta-height);
  background: rgba(3, 105, 161, 0.94);
  font-weight: 800;
}

@media (max-width: 1024px) {
  .hero-banner.is-special {
    --special-cta-height: 42px;
  }
}

@media (max-width: 640px) {
  .hero-banner.is-special {
    --special-cta-height: 38px;
  }
}

.hero-banner.is-modern {
  background: #eaf7ff;
  border: 1px solid rgba(3, 105, 161, 0.12);
  box-shadow: 0 18px 44px rgba(15, 71, 104, 0.14);
}

.hero-modern-art,
.hero-modern-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-modern-bg {
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.hero-modern-car {
  position: absolute;
  z-index: 1;
  right: 1.5%;
  bottom: 48px;
  width: min(64%, 500px);
  height: auto;
  filter: drop-shadow(0 20px 18px rgba(7, 28, 46, 0.28));
  transition: transform 0.35s ease;
}

.hero-modern-car.car-suv {
  right: -1.5%;
  width: min(68%, 520px);
}

.hero-banner.is-modern:hover .hero-modern-car {
  transform: translateY(-4px) scale(1.015);
}

.hero-promo-copy {
  position: relative;
  z-index: 2;
  padding: 60px 50px 0;
  color: var(--white);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.34);
  word-break: keep-all;
}

.hero-banner.is-modern .hero-promo-copy {
  max-width: 55%;
  padding: 52px 0 0 46px;
  color: #0b2438;
  font-family: "SUIT Hero", "Pretendard Variable", Pretendard, sans-serif;
  text-shadow: none;
}

.hero-banner.is-modern.tone-dark .hero-promo-copy {
  color: var(--white);
  text-shadow: 0 2px 12px rgba(1, 16, 31, 0.3);
}

.hero-kicker {
  display: block;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 600;
}

.hero-banner.is-modern .hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0369a1;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
}

.hero-banner.is-modern .hero-kicker::before {
  width: 26px;
  height: 3px;
  flex: 0 0 26px;
  border-radius: 2px;
  background: #0ea5e9;
  content: "";
}

.hero-banner.is-modern.tone-dark .hero-kicker {
  color: #7dd3fc;
}

.hero-promo-copy h1,
.hero-promo-copy h2 {
  margin: 10px 0 0;
  color: var(--white);
  font-size: 36px;
  line-height: 1.2;
  font-weight: 850;
}

.hero-banner.is-modern .hero-promo-copy h1,
.hero-banner.is-modern .hero-promo-copy h2 {
  margin-top: 14px;
  color: inherit;
  font-size: 37px;
  line-height: 1.22;
  font-weight: 800;
}

.hero-slide:not(.is-active) .hero-banner.is-modern .hero-promo-copy {
  max-width: 88%;
  padding: 52px 28px 0;
}

.hero-slide:not(.is-active) .hero-banner.is-modern .hero-promo-copy h1,
.hero-slide:not(.is-active) .hero-banner.is-modern .hero-promo-copy h2 {
  font-size: 34px;
}

.hero-event-badge {
  display: inline-block;
  margin-top: 22px;
  padding: 5px 12px;
  border-radius: 6px;
  background: var(--sky-500);
  color: var(--white);
  font-size: 32px;
  line-height: 1.15;
}

.hero-card-cta {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 48px;
  padding: 0 18px 0 20px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
}

.hero-banner.is-modern .hero-card-cta {
  background: rgba(3, 105, 161, 0.94);
  font-family: "SUIT Hero", "Pretendard Variable", Pretendard, sans-serif;
  font-weight: 800;
}

.hero-card-cta svg {
  width: 20px;
  height: 20px;
}

.hero-controls {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 55px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-controls button {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #e0e4e8;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
}

.hero-controls button:hover {
  border-color: var(--sky-400);
  color: var(--blue-700);
}

.hero-count {
  min-width: 43px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  font-size: 18px;
}

.hero-count strong {
  font-weight: 850;
}

.hero-count span {
  color: #737b83;
}

.quick-menu-wrap {
  position: relative;
  z-index: 8;
  height: 227px;
  padding: 40px 19px;
  background: #f8f8f8;
}

.quick-menu {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(8, 122px);
  justify-content: center;
  gap: 32px;
}

.quick-item {
  width: 122px;
  height: 147px;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-weight: 750;
}

.quick-item:hover .quick-icon,
.quick-item:hover .quick-special-card {
  box-shadow: 0 7px 20px rgba(16, 82, 118, 0.12);
  transform: translateY(-2px);
}

.quick-icon {
  width: 122px;
  height: 112px;
  flex: 0 0 112px;
  border-radius: 16px 16px 16px 0;
  display: grid;
  place-items: center;
  background: var(--white);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-icon img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.quick-item:hover .quick-icon img {
  transform: scale(1.08);
}

.quick-label {
  text-align: center;
  font-size: 18px;
  line-height: 19px;
  white-space: nowrap;
}

.quick-special {
  height: 147px;
  padding: 0;
  background: transparent;
  color: var(--ink);
  gap: 8px;
}

.quick-special-card {
  position: relative;
  width: 100%;
  height: 112px;
  flex: 0 0 112px;
  border-radius: 16px 16px 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(14, 165, 233, 0.08);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-special-card > img {
  width: 33px;
  height: 37px;
  object-fit: contain;
}

.quick-special-badge {
  position: absolute;
  top: -15px;
  right: 0;
  left: 0;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-special-badge > span {
  width: 96px;
  height: 26px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sky-500);
  color: var(--white);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  white-space: nowrap;
}

.quick-special-card strong {
  font-family: "Audiowide", sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: var(--sky-500);
  font-variant-numeric: tabular-nums;
}

.content-section {
  padding: 82px 0;
}

.content-section.is-soft {
  background: var(--sky-50);
}

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

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading h2,
.page-title h1 {
  margin: 5px 0 0;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 950;
  word-break: keep-all;
}

.section-heading p,
.page-title p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.section-kicker {
  color: var(--sky-500);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.update-time {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.timer-box {
  min-width: 126px;
  padding: 10px 14px;
  border-left: 3px solid var(--orange);
  background: var(--orange-soft);
}

.timer-box small {
  display: block;
  color: var(--orange);
  font-weight: 800;
}

.timer-box strong {
  display: block;
  margin-top: 3px;
  font-size: 22px;
  font-variant-numeric: tabular-nums;
}

.filter-board {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.filter-row {
  min-height: 62px;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  border-bottom: 1px solid var(--soft-line);
}

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

.filter-label {
  padding: 19px 16px;
  background: #f7fafc;
  color: #37475a;
  font-size: 14px;
  font-weight: 850;
}

.filter-options {
  min-width: 0;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.filter-chip,
.brand-chip,
.segment-button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: #435468;
  font-size: 13px;
  font-weight: 750;
}

.filter-chip:hover,
.brand-chip:hover,
.segment-button:hover {
  border-color: var(--sky-400);
}

.filter-chip.is-active,
.brand-chip.is-active,
.segment-button.is-active {
  border-color: var(--sky-500);
  background: var(--sky-500);
  color: var(--white);
}

.brand-chip {
  min-width: 74px;
}

.filter-tools {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.catalog-count {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.catalog-count strong {
  color: var(--sky-500);
  font-size: 24px;
}

.catalog-count span {
  color: var(--muted);
  font-size: 14px;
}

.catalog-actions {
  display: flex;
  gap: 8px;
}

.select-control,
.search-control,
.quote-control select,
.quote-control input {
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  outline: none;
}

.select-control {
  min-width: 140px;
  padding: 0 34px 0 12px;
}

.search-control {
  width: 220px;
  padding: 0 12px;
}

.select-control:focus,
.search-control:focus,
.quote-control select:focus,
.quote-control input:focus,
.form-grid input:focus,
.form-grid textarea:focus,
.search-field input:focus {
  border-color: var(--sky-500);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

.vehicle-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 28px;
}

.vehicle-card {
  min-width: 0;
  min-height: 361px;
  display: block;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: var(--white);
  transition: transform 0.16s ease;
}

.vehicle-card:hover {
  transform: translateY(-2px);
}

.vehicle-card-media {
  position: relative;
  width: 100%;
  height: 178px;
  min-height: 178px;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #eff0f0;
  display: flex;
  align-items: center;
}

.vehicle-card-media img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  transform: translateX(38px);
  transition: transform 0.25s ease;
}

.vehicle-card:hover .vehicle-card-media img {
  transform: translateX(38px) scale(1.07);
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  color: #91a0ae;
  font-size: 13px;
  font-weight: 800;
}

.stock-badge {
  position: absolute;
  z-index: 2;
  top: auto;
  bottom: 0;
  left: 0;
  min-height: 32px;
  padding: 4px 12px;
  border-radius: 0 16px 0 16px;
  background: var(--sky-100);
  color: var(--blue-700);
  font-size: 15px;
  font-weight: 700;
}

.stock-badge.is-empty {
  background: #f0f2f4;
  color: var(--muted);
}

.vehicle-card-body {
  min-width: 0;
  padding: 12px 0 0;
  display: block;
}

.vehicle-brand {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 8px;
  border-radius: 5px;
  background: var(--sky-100);
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
}

.vehicle-card h3 {
  margin: 7px 0 0;
  min-height: 28px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.vehicle-price-range {
  display: block;
  margin-top: 2px;
  color: #767676;
  font-size: 15px;
  font-weight: 600;
}

.vehicle-monthly {
  margin-top: 2px;
  min-height: 42px;
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.vehicle-monthly small {
  display: none;
}

.vehicle-monthly strong {
  display: block;
  margin-top: 0;
  color: var(--blue-700);
  font-size: 26px;
  line-height: 1.45;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.vehicle-monthly strong span {
  margin-left: 3px;
  color: var(--ink);
  font-size: 14px;
}

.nearest-label {
  display: none;
  margin-top: 0;
  color: var(--orange);
  font-size: 11px;
  font-weight: 850;
}

.vehicle-card-actions {
  margin-top: 18px;
  padding-top: 0;
  display: block;
}

.vehicle-card-actions button,
.vehicle-card-actions a {
  min-height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vehicle-card-actions .quote-button {
  width: 100%;
  border: 1px solid var(--sky-500);
  background: var(--white);
  color: var(--blue-700);
  font-size: 17px;
  font-weight: 700;
  transition: background 0.18s ease, color 0.18s ease;
}

.vehicle-card-actions .quote-button:hover {
  background: var(--sky-500);
  color: var(--white);
}

.vehicle-card-actions .detail-button {
  display: none;
}

.vehicle-card-actions .detail-button svg {
  width: 18px;
  height: 18px;
}

.load-more-wrap {
  margin-top: 28px;
  text-align: center;
}

.load-more-button,
.secondary-button {
  min-height: 46px;
  padding: 0 28px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  font-weight: 800;
}

.load-more-button:hover,
.secondary-button:hover {
  border-color: var(--sky-500);
  color: var(--blue-700);
}

.load-more-button span {
  margin-left: 8px;
  color: var(--muted);
  font-size: 12px;
}

.empty-result {
  margin-top: 22px;
  min-height: 240px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 9px;
  text-align: center;
}

.empty-result svg {
  width: 36px;
  height: 36px;
  color: #91a0ae;
}

.empty-result p {
  margin: 0;
  color: var(--muted);
}

.deal-grid,
.feature-grid,
.review-grid,
.info-grid,
.event-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.deal-card,
.review-card,
.info-card,
.event-card,
.category-tile {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.review-card {
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.review-card:hover {
  border-color: #b7dff3;
  box-shadow: 0 12px 30px rgba(14, 73, 105, 0.1);
  transform: translateY(-2px);
}

.review-card-open {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.review-card-open:disabled {
  cursor: default;
}

.deal-card-media,
.event-card-media,
.review-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #f5f9fb;
  overflow: hidden;
}

.deal-card-media img,
.event-card-media img,
.review-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.review-card-media img,
.event-card-media img {
  object-fit: cover;
}

.review-card-media img {
  display: block;
  object-position: center;
}

.deal-card-body,
.review-card-body,
.event-card-body,
.info-card {
  padding: 18px;
}

.review-card-body {
  display: flex;
  flex-direction: column;
  min-height: 252px;
  padding: 0;
}

.review-card-heading {
  padding: 17px 18px 15px;
  border-bottom: 1px solid #e8eff3;
}

.review-card-preview {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 13px 18px 18px;
}

.review-stars {
  color: #f5a623;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
}

.review-image-count {
  position: absolute;
  right: 10px;
  bottom: 10px;
  min-width: 44px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: rgba(7, 33, 49, 0.78);
  color: var(--white);
  font-size: 12px;
  font-weight: 850;
  backdrop-filter: blur(6px);
}

.review-image-count svg {
  width: 14px;
  height: 14px;
}

.review-card-meta {
  margin-top: 9px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
  color: #6d7e89;
  font-size: 12px;
  font-weight: 700;
}

.review-card-brief {
  min-height: 38px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: 17px 17px;
  gap: 4px 10px;
  color: #6d7e89;
  font-size: 12px;
  line-height: 17px;
  font-weight: 700;
}

.review-card-brief-car {
  grid-column: 1 / -1;
}

.review-card-brief-car,
.review-card-brief-customer {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.review-card-brief time {
  white-space: nowrap;
}

.review-card-meta span + span {
  position: relative;
}

.review-card-meta span + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -7px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #aebac1;
}

.review-card-link {
  margin-top: auto;
  padding-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 850;
}

.review-card-link svg {
  width: 14px;
  height: 14px;
}

.deal-card h3,
.review-card h3,
.event-card h3,
.info-card h3 {
  margin: 5px 0 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.review-card h3 {
  height: 49px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.deal-card-price {
  margin-top: 14px;
  color: var(--blue-700);
  font-size: 21px;
  font-weight: 950;
}

.deal-card button,
.event-card button {
  width: 100%;
  min-height: 42px;
  margin-top: 15px;
  border: 0;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
}

.weekly-deal-section {
  position: relative;
  min-height: 669px;
  padding: 90px 16px;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--sky-400);
}

.weekly-deal-background {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  mix-blend-mode: multiply;
  filter: sepia(1) saturate(4) hue-rotate(150deg) brightness(1.55);
  pointer-events: none;
}

.weekly-deal-header,
.weekly-deal-stage {
  position: relative;
  z-index: 1;
}

.weekly-deal-header {
  width: min(1200px, 100%);
  height: 89px;
  margin: 0 auto;
  padding-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.weekly-deal-title {
  height: 51px;
  display: inline-flex;
  align-items: center;
  color: var(--white);
}

.weekly-deal-title h2 {
  margin: 0;
  font-size: 38px;
  line-height: 51px;
  font-weight: 700;
}

.weekly-deal-title svg {
  display: none;
}

.weekly-countdown {
  width: 334px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-variant-numeric: tabular-nums;
}

.weekly-countdown-day,
.weekly-countdown-digit {
  height: 64px;
  border: 2px solid var(--blue-700);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.weekly-countdown-day {
  width: 86px;
  flex: 0 0 86px;
}

.weekly-countdown-day strong {
  background: linear-gradient(135deg, #111111, var(--blue-700));
  background-clip: text;
  color: transparent;
  font-size: 34px;
  line-height: 51px;
  font-weight: 700;
}

.weekly-countdown-digit {
  width: 46px;
  flex: 0 0 46px;
  color: #111111;
  font-size: 34px;
  line-height: 51px;
  font-weight: 700;
}

.weekly-countdown-separator {
  width: 8px;
  flex: 0 0 8px;
  color: var(--white);
  text-align: center;
  font-size: 34px;
  line-height: 51px;
  font-weight: 700;
}

.weekly-deal-stage {
  height: 400px;
}

.weekly-deal-carousel-row {
  width: min(1456px, 100%);
  height: 348px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.weekly-carousel-button {
  width: 88px;
  height: 88px;
  padding: 0;
  border: 0;
  display: grid;
  flex: 0 0 88px;
  place-items: center;
  background: transparent;
  color: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.weekly-carousel-button:hover {
  transform: scale(0.92);
  opacity: 0.82;
}

.weekly-carousel-button svg {
  width: 88px;
  height: 88px;
  stroke-width: 1.25;
}

.weekly-deal-center {
  width: 1200px;
  height: 348px;
  min-width: 0;
  flex: 0 1 1200px;
}

.weekly-deal-viewport {
  width: 100%;
  height: 328px;
  overflow: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.weekly-deal-viewport::-webkit-scrollbar {
  display: none;
}

.weekly-deal-track {
  height: 328px;
  display: flex;
  gap: 28px;
}

.weekly-deal-card {
  width: 308px;
  height: 328px;
  flex: 0 0 308px;
}

.weekly-deal-card-inner {
  position: relative;
  display: block;
  width: 308px;
  height: 308px;
  padding: 26px 18px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
}

.weekly-deal-card-copy {
  position: relative;
  z-index: 2;
  width: 214px;
}

.weekly-deal-card h3 {
  max-width: 205px;
  margin: 0;
  overflow: hidden;
  color: #22262a;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
}

.weekly-reference-price {
  width: fit-content;
  margin-top: 11px;
  color: #767676;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.weekly-promo-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  color: #111111;
  font-size: 18px;
  line-height: 39px;
  font-weight: 500;
}

.weekly-promo-price strong {
  color: var(--blue-700);
  font-size: 26px;
  line-height: 39px;
  font-weight: 700;
}

.weekly-deal-visual {
  position: absolute;
  right: -16px;
  bottom: 30px;
  width: 266px;
  height: 120px;
}

.weekly-deal-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.weekly-deal-card-inner:hover .weekly-deal-image {
  transform: scale(1.05);
}

.weekly-stock-badge {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  min-width: 118px;
  height: 32px;
  padding: 0 11px;
  border-radius: 0 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-700);
  color: var(--white);
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  white-space: nowrap;
}

.weekly-deal-meta {
  width: fit-content;
  height: 20px;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  line-height: 20px;
}

.weekly-deal-meta i {
  width: 1px;
  height: 11px;
  background: rgba(255, 255, 255, 0.3);
}

.weekly-deal-more {
  width: 260px;
  height: 52px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  transition: transform 0.2s ease, background 0.2s ease;
}

.weekly-deal-more:hover {
  transform: scale(0.96);
  background: rgba(255, 255, 255, 0.12);
}

.personal-strip {
  padding: 58px 0;
  background: var(--blue-900);
  color: var(--white);
}

.personal-strip-inner {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.personal-strip h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 950;
}

.personal-strip p {
  margin: 8px 0 0;
  color: #ccecff;
}

.personal-strip button {
  min-width: 180px;
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  background: var(--sky-400);
  color: #082c41;
  font-weight: 900;
}

.metric-band {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric-grid {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.metric-item {
  min-height: 86px;
  display: grid;
  place-content: center;
  justify-items: center;
  border-right: 1px solid var(--line);
}

.metric-item:last-child {
  border-right: 0;
}

.metric-item strong {
  color: var(--blue-700);
  font-size: 28px;
  font-weight: 950;
}

.metric-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.review-card p,
.event-card p,
.info-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.review-card p {
  min-height: 71px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.review-summary {
  margin: -14px 0 22px;
  display: flex;
  align-items: baseline;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
}

.review-summary strong {
  color: var(--blue-700);
  font-size: 25px;
  font-weight: 950;
}

.info-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--sky-100);
  color: var(--blue-700);
}

.info-card a {
  margin-top: auto;
  padding-top: 20px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 850;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 70px;
  padding: 21px 52px 21px 10px;
  position: relative;
  list-style: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 850;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 14px;
  font-size: 25px;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 52px 24px 10px;
  color: var(--muted);
  line-height: 1.75;
}

.page-shell {
  min-height: 70vh;
  padding: 58px 0 92px;
}

.page-title {
  margin-bottom: 34px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--ink);
}

.category-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 38px;
}

.category-tile {
  min-height: 230px;
  padding: 28px;
  text-align: left;
  position: relative;
  border-color: var(--line);
}

.category-tile:hover,
.category-tile.is-active {
  border-color: var(--sky-500);
  background: var(--sky-50);
}

.category-tile .info-icon {
  margin-bottom: 26px;
}

.category-tile h2 {
  margin: 0;
  font-size: 23px;
  font-weight: 950;
}

.category-tile p {
  margin: 8px 0 0;
  color: var(--muted);
}

.category-tile strong {
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: var(--sky-500);
  font-size: 14px;
}

.estimate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.estimate-vehicle-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-height: 720px;
  overflow-y: auto;
  padding-right: 5px;
}

.estimate-vehicle-button {
  min-width: 0;
  min-height: 142px;
  padding: 12px;
  display: grid;
  grid-template-columns: 42% minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  text-align: left;
}

.estimate-vehicle-button:hover,
.estimate-vehicle-button.is-active {
  border-color: var(--sky-500);
  background: var(--sky-50);
}

.estimate-vehicle-button img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
}

.estimate-vehicle-button strong,
.estimate-vehicle-button span {
  display: block;
  overflow-wrap: anywhere;
}

.estimate-vehicle-button span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.quote-panel {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.quote-panel-head {
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.quote-panel-head h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 950;
}

.quote-panel-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.quote-controls {
  padding: 20px 22px 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.quote-control {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.quote-control.is-wide {
  grid-column: 1 / -1;
}

.quote-control span {
  color: #526376;
  font-size: 12px;
  font-weight: 800;
}

.quote-control select,
.quote-control input {
  width: 100%;
  padding: 0 10px;
}

.quote-result {
  margin: 14px 22px 22px;
  padding: 20px;
  border-radius: 7px;
  background: var(--sky-100);
}

.quote-result small {
  display: block;
  color: var(--blue-700);
  font-weight: 800;
}

.quote-result strong {
  display: block;
  margin-top: 3px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.quote-result p {
  margin: 10px 0 0;
  color: #486173;
  font-size: 12px;
  line-height: 1.65;
}

.quote-panel-actions {
  padding: 0 22px 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.quote-panel-actions button,
.quote-panel-actions a {
  min-height: 48px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 850;
}

.quote-panel-actions button {
  border: 0;
  background: var(--sky-500);
  color: var(--white);
}

.quote-panel-actions a {
  border: 1px solid var(--line);
  background: var(--white);
}

.model-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 34px;
  align-items: start;
}

.model-visual {
  position: sticky;
  top: calc(var(--header-height) + 18px);
}

.model-image-stage {
  position: relative;
  min-height: 460px;
  padding: 48px 24px;
  background: var(--sky-50);
  display: grid;
  place-items: center;
}

.model-image-stage img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
}

.model-summary {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.model-summary h1 {
  margin: 3px 0 0;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 950;
}

.model-summary-price {
  text-align: right;
  white-space: nowrap;
}

.model-summary-price small,
.model-summary-price strong {
  display: block;
}

.model-summary-price small {
  color: var(--muted);
  font-size: 12px;
}

.model-summary-price strong {
  margin-top: 4px;
  color: var(--blue-700);
  font-size: 20px;
}

.trim-section {
  margin-top: 28px;
}

.trim-section h2,
.option-section h2 {
  margin: 0 0 12px;
  font-size: 20px;
}

.lineup-tabs {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.lineup-tabs button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  font-size: 12px;
  font-weight: 750;
}

.lineup-tabs button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.trim-list {
  margin-top: 10px;
  display: grid;
  gap: 7px;
}

.trim-button {
  min-height: 56px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
}

.trim-button span {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 13px;
  font-weight: 750;
}

.trim-button strong {
  flex: 0 0 auto;
  font-size: 13px;
}

.trim-button.is-active {
  border-color: var(--sky-500);
  background: var(--sky-50);
}

.option-section {
  margin-top: 34px;
}

.option-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.option-group {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--soft-line);
  border-radius: 6px;
  background: #fafcfd;
}

.option-group strong {
  display: block;
  font-size: 13px;
}

.option-group p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.model-quote .quote-panel {
  position: sticky;
  top: calc(var(--header-height) + 18px);
}

.site-footer {
  padding: 52px 0 110px;
  background: #132536;
  color: #d7e4ec;
}

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

.footer-brand strong {
  color: var(--white);
  font-size: 19px;
}

.footer-brand p,
.footer-notice,
.copyright {
  color: #9cb0bf;
  font-size: 13px;
}

.footer-links {
  margin: 22px 0;
  display: flex;
  gap: 16px;
}

.footer-links button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font-weight: 750;
}

.footer-notice {
  max-width: 720px;
  line-height: 1.7;
}

.copyright {
  margin-top: 22px;
}

.modal-layer {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 21, 33, 0.62);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.review-modal-panel {
  width: min(980px, 100%);
}

.review-modal-header {
  position: sticky;
  z-index: 3;
  top: 0;
  min-height: 92px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.review-modal-header h2 {
  margin: 5px 0 0;
  font-size: 25px;
  line-height: 1.35;
  font-weight: 920;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.review-modal-gallery {
  padding: 22px 22px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.review-modal-gallery.is-multiple {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-modal-gallery figure {
  margin: 0;
  min-width: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #eef5f8;
  display: grid;
  place-items: center;
}

.review-modal-gallery img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 580px;
  display: block;
  object-fit: contain;
}

.review-modal-body {
  padding: 24px 22px 30px;
}

.review-modal-body p {
  margin: 16px 0 0;
  color: #344653;
  font-size: 15px;
  line-height: 1.85;
  white-space: pre-line;
  overflow-wrap: anywhere;
}

.modal-header {
  min-height: 82px;
  padding: 19px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.modal-header h2 {
  margin: 2px 0 0;
  font-size: 24px;
  font-weight: 950;
}

.inquiry-form {
  padding: 22px;
}

.selected-quote {
  margin-bottom: 18px;
  padding: 15px;
  border-left: 3px solid var(--sky-500);
  background: var(--sky-50);
}

.selected-quote strong,
.selected-quote span {
  display: block;
}

.selected-quote span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-grid label {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.form-grid label > span {
  font-size: 13px;
  font-weight: 800;
}

.form-wide {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  outline: none;
}

.form-grid input {
  height: 46px;
  padding: 0 12px;
}

.form-grid textarea {
  min-height: 106px;
  padding: 12px;
  resize: vertical;
}

.privacy-check {
  margin-top: 17px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.privacy-check input {
  width: 17px;
  height: 17px;
  accent-color: var(--sky-500);
}

.privacy-check span {
  min-width: 0;
  flex: 1;
}

.privacy-check button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue-700);
  font-weight: 800;
  text-decoration: underline;
}

.form-message {
  min-height: 20px;
  margin: 11px 0 0;
  color: var(--red);
  font-size: 13px;
  font-weight: 750;
}

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

.submit-button {
  width: 100%;
  min-height: 50px;
  margin-top: 4px;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
}

.search-panel {
  width: min(760px, 100%);
  align-self: flex-start;
  margin-top: 8vh;
}

.search-head {
  padding: 16px;
  display: flex;
  gap: 10px;
  border-bottom: 1px solid var(--line);
}

.search-field {
  min-width: 0;
  flex: 1;
  height: 50px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.search-field input {
  min-width: 0;
  flex: 1;
  height: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 17px;
}

.search-results {
  max-height: 60vh;
  overflow-y: auto;
  padding: 10px 16px 18px;
}

.search-result-item {
  width: 100%;
  min-height: 86px;
  padding: 8px;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 12px;
  border: 0;
  border-bottom: 1px solid var(--soft-line);
  background: var(--white);
  text-align: left;
}

.search-result-item img {
  width: 112px;
  height: 70px;
  object-fit: contain;
  background: #f7fafc;
}

.search-result-item small,
.search-result-item strong {
  display: block;
}

.search-result-item small {
  color: var(--muted);
}

.privacy-panel {
  width: min(560px, 100%);
  padding-bottom: 20px;
}

.privacy-content {
  padding: 18px 22px 4px;
  color: #506174;
  font-size: 14px;
  line-height: 1.75;
}

.privacy-content strong {
  color: var(--ink);
}

.privacy-panel > .submit-button {
  width: calc(100% - 44px);
  margin: 8px 22px 0;
}

.toast {
  position: fixed;
  z-index: 300;
  left: 50%;
  bottom: 32px;
  max-width: calc(100% - 32px);
  padding: 12px 18px;
  border-radius: 7px;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 750;
}

.skeleton {
  background: #edf2f5;
  animation: skeleton 1.1s ease-in-out infinite alternate;
}

@keyframes skeleton {
  to { opacity: 0.48; }
}

@media (max-width: 1440px) {
  .quick-menu { grid-template-columns: repeat(8, 112px); gap: 24px; }
  .quick-item,
  .quick-icon { width: 112px; }
}

@media (max-width: 1719px) {
  .header-search { display: none; }
  .header-actions { width: 156px; flex-basis: 156px; }
}

@media (max-width: 1279px) {
  .desktop-nav,
  .header-search,
  .header-consult { display: none; }
  .header-inner { padding-right: 0; }
  .header-actions { width: auto; margin-left: auto; flex: 0 0 auto; }
  .mobile-menu-button {
    display: inline-grid;
    width: 24px;
    height: 18px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .mobile-menu-button svg { width: 24px; height: 18px; }
}

@media (max-width: 1180px) {
  .quick-menu { grid-template-columns: repeat(8, 104px); gap: 15px; }
  .quick-item,
  .quick-icon { width: 104px; }
  .weekly-deal-carousel-row { gap: 16px; }
  .weekly-carousel-button { width: 64px; height: 64px; flex-basis: 64px; }
  .weekly-carousel-button svg { width: 64px; height: 64px; }
}

@media (max-width: 1080px) {
  .vehicle-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px 22px; }
}

@media (max-width: 900px) {
  :root { --header-height: 56px; }
  .site-header { padding-top: 0; border-bottom: 1px solid #e8e8e8; }
  .header-inner { width: calc(100% - 32px); height: 55px; margin-top: 0; padding: 0; }
  .wordmark { width: 118px; height: 50px; flex-basis: 118px; }
  .header-actions { transform: none; }
  .mobile-menu-button { transform: translateY(1px); }
  .mobile-drawer {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    padding: 10px 20px 18px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .mobile-drawer a {
    min-height: 44px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    background: #f7fafc;
    font-size: 14px;
    font-weight: 800;
  }
  .hero { height: 430px; min-height: 430px; padding-top: 34px; }
  .hero-viewport { top: 34px; left: 0; width: 100%; height: 320px; }
  .hero-track { height: 320px; gap: 24px; }
  .hero-slide { width: 375px; height: 320px; flex-basis: 375px; filter: brightness(0.78); }
  .hero-banner,
  .hero-slide.is-active .hero-banner { width: 375px; height: 320px; margin: 0; border-radius: 16px; }
  .hero-promo-copy { padding: 38px 30px 0; }
  .hero-kicker { font-size: 19px; }
  .hero-promo-copy h1,
  .hero-promo-copy h2 { font-size: 29px; }
  .hero-banner.is-modern .hero-promo-copy { max-width: 59%; padding: 34px 0 0 30px; }
  .hero-banner.is-modern .hero-kicker { gap: 8px; font-size: 15px; }
  .hero-banner.is-modern .hero-kicker::before { width: 20px; flex-basis: 20px; }
  .hero-banner.is-modern .hero-promo-copy h1,
  .hero-banner.is-modern .hero-promo-copy h2 { margin-top: 10px; font-size: 28px; }
  .hero-modern-car { bottom: 42px; width: min(66%, 410px); }
  .hero-modern-car.car-suv { width: min(70%, 430px); }
  .hero-card-cta { height: 42px; font-size: 16px; }
  .hero-controls { bottom: 24px; }
  .quick-menu-wrap { height: auto; padding: 22px 16px; background: var(--white); }
  .quick-menu { width: 100%; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px 10px; padding: 22px 18px 18px; border: 1px solid #e8e8e8; border-radius: 12px; }
  .quick-item { width: 100%; height: 106px; gap: 5px; }
  .quick-icon { width: 68px; height: 68px; flex-basis: 68px; background: #f0f0f0; }
  .quick-icon img { width: 56px; height: 56px; }
  .quick-label { font-size: 13px; }
  .quick-special { width: 100%; height: 106px; padding: 0; gap: 5px; }
  .quick-special-card { width: 68px; height: 68px; flex-basis: 68px; }
  .quick-special-badge { top: -8px; height: 17px; padding: 0 3px; }
  .quick-special-badge > span { width: 100%; height: 17px; font-size: 12px; line-height: 17px; }
  .quick-special-card > img { width: 24px; height: 28px; }
  .quick-special-card strong { font-size: 12px; line-height: 16px; }
  .weekly-deal-section { min-height: 0; padding: 50px 16px; background: #159ed6; }
  .weekly-deal-background { display: none; }
  .weekly-deal-header { width: 100%; height: auto; padding: 0; display: block; }
  .weekly-deal-title { width: 100%; height: 36px; margin-bottom: 28px; }
  .weekly-deal-title h2 { font-size: 24px; line-height: 32px; }
  .weekly-deal-title svg { display: block; width: 28px; height: 28px; margin-left: 2px; }
  .weekly-countdown { width: 264px; height: 52px; gap: 7px; }
  .weekly-countdown-day,
  .weekly-countdown-digit { height: 52px; }
  .weekly-countdown-day { width: 64px; flex-basis: 64px; }
  .weekly-countdown-day strong { font-size: 22px; line-height: 33px; }
  .weekly-countdown-digit { width: 36px; flex-basis: 36px; font-size: 22px; line-height: 33px; }
  .weekly-countdown-separator { width: 7px; flex-basis: 7px; font-size: 22px; line-height: 33px; }
  .weekly-deal-stage { height: auto; margin-top: 22px; }
  .weekly-deal-carousel-row { width: 100%; height: auto; display: block; }
  .weekly-carousel-button { display: none; }
  .weekly-deal-center { width: 100%; height: auto; }
  .weekly-deal-viewport { width: 100%; height: auto; overflow: visible; }
  .weekly-deal-track { width: 100%; height: auto; display: flex; flex-direction: column; gap: 14px; }
  .weekly-deal-card { width: 100%; height: 138px; flex-basis: 138px; }
  .weekly-deal-card-inner { width: 100%; height: 138px; padding: 22px 20px; border-radius: 12px; box-shadow: 0 3px 8px rgba(3, 105, 161, 0.2); }
  .weekly-deal-card-copy { width: 58%; }
  .weekly-deal-card h3 { max-width: 100%; font-size: 16px; line-height: 24px; }
  .weekly-reference-price { height: 21px; margin-top: 7px; padding: 0 4px; font-size: 14px; line-height: 21px; }
  .weekly-promo-price { gap: 3px; font-size: 18px; line-height: 33px; }
  .weekly-promo-price strong { font-size: 22px; line-height: 33px; }
  .weekly-deal-visual { right: -16px; bottom: 12px; width: min(174px, 52%); height: 78px; }
  .weekly-stock-badge { top: 6px; right: 6px; bottom: auto; left: auto; min-width: 0; height: 24px; padding: 0 9px; border-radius: 999px; font-size: 13px; line-height: 19px; }
  .weekly-deal-meta { width: 100%; height: auto; margin-top: 22px; justify-content: center; flex-wrap: wrap; gap: 5px 9px; text-align: center; font-size: 12px; line-height: 18px; }
  .weekly-deal-more { width: 100%; height: 52px; margin-top: 28px; font-size: 16px; }
  .vehicle-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .deal-grid,
  .feature-grid,
  .review-grid,
  .info-grid,
  .event-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .estimate-layout,
  .model-layout { grid-template-columns: 1fr; }
  .quote-panel,
  .model-visual,
  .model-quote .quote-panel { position: static; }
  .model-quote { order: -1; }
}

@media (max-width: 640px) {
  body { padding-bottom: 66px; }
  .icon-button:not(.mobile-menu-button) { width: 40px; height: 40px; }
  .mobile-menu-button { width: 24px; height: 18px; }
  .hero { height: 390px; min-height: 390px; padding-top: 28px; }
  .hero-viewport { top: 28px; height: 292px; }
  .hero-track { height: 292px; gap: 16px; }
  .hero-slide { width: min(283px, calc(100vw - 32px)); height: 292px; flex-basis: min(283px, calc(100vw - 32px)); }
  .hero-banner,
  .hero-slide.is-active .hero-banner { width: min(283px, calc(100vw - 32px)); height: 292px; border-radius: 12px; }
  .hero-promo-copy { padding: 27px 16px 0; text-align: center; }
  .hero-kicker { font-size: 15px; }
  .hero-promo-copy h1,
  .hero-promo-copy h2 { margin-top: 5px; font-size: 24px; line-height: 1.2; }
  .hero-event-badge { margin-top: 12px; font-size: 23px; }
  .hero-banner.is-modern .hero-promo-copy { max-width: 100%; padding: 23px 18px 0; text-align: left; }
  .hero-slide:not(.is-active) .hero-banner.is-modern .hero-promo-copy { max-width: 100%; padding: 23px 18px 0; }
  .hero-banner.is-modern .hero-kicker { gap: 7px; font-size: 13px; }
  .hero-banner.is-modern .hero-kicker::before { width: 18px; height: 2px; flex-basis: 18px; }
  .hero-banner.is-modern .hero-promo-copy h1,
  .hero-banner.is-modern .hero-promo-copy h2,
  .hero-slide:not(.is-active) .hero-banner.is-modern .hero-promo-copy h1,
  .hero-slide:not(.is-active) .hero-banner.is-modern .hero-promo-copy h2 { max-width: 245px; margin-top: 8px; font-size: 22px; line-height: 1.25; }
  .hero-modern-bg { object-position: 58% center; }
  .hero-modern-car,
  .hero-modern-car.car-suv { right: -3%; bottom: 38px; width: 94%; }
  .hero-card-cta { height: 38px; padding: 0 13px; font-size: 14px; }
  .hero-controls { bottom: 18px; gap: 9px; }
  .hero-controls button { width: 36px; height: 36px; }
  .hero-count { font-size: 16px; }
  .quick-menu-wrap { padding: 14px 10px 18px; }
  .quick-menu { padding: 20px 9px 15px; }
  .content-section { padding: 58px 0; }
  .section-inner,
  .page-inner { width: calc(100% - 28px); }
  .section-heading { align-items: flex-start; margin-bottom: 21px; }
  .section-heading h2,
  .page-title h1 { font-size: 27px; }
  .section-heading p,
  .page-title p { font-size: 14px; }
  .update-time { display: none; }
  .timer-box { min-width: 94px; padding: 7px 9px; }
  .timer-box strong { font-size: 17px; }
  .filter-row { grid-template-columns: 80px minmax(0, 1fr); }
  .filter-label { padding: 17px 10px; font-size: 12px; }
  .filter-options { padding: 9px; flex-wrap: nowrap; overflow-x: auto; }
  .filter-chip,
  .brand-chip,
  .segment-button { flex: 0 0 auto; min-height: 36px; padding: 0 12px; font-size: 12px; }
  .filter-tools { align-items: flex-start; flex-direction: column; }
  .catalog-actions { width: 100%; }
  .search-control { min-width: 0; width: 100%; flex: 1; }
  .select-control { min-width: 118px; }
  .vehicle-grid { grid-template-columns: 1fr; gap: 28px; }
  .vehicle-card { width: min(100%, 390px); min-height: 0; margin: 0 auto; }
  .vehicle-card-media { height: 178px; min-height: 178px; padding: 0; }
  .vehicle-card-media img { height: 140px; max-height: 140px; }
  .vehicle-card-body { padding: 15px 16px 16px; }
  .vehicle-card h3 { min-height: auto; font-size: 20px; }
  .vehicle-monthly { margin-top: 12px; }
  .vehicle-monthly strong { font-size: 23px; }
  .vehicle-card-actions { padding-top: 14px; }
  .deal-grid,
  .feature-grid,
  .review-grid,
  .info-grid,
  .event-grid { grid-template-columns: 1fr; }
  .review-modal-header { min-height: 78px; padding: 16px; }
  .review-modal-header h2 { font-size: 21px; }
  .review-modal-gallery,
  .review-modal-gallery.is-multiple { padding: 16px 16px 0; grid-template-columns: 1fr; }
  .review-modal-body { padding: 20px 16px 24px; }
  .deal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .deal-card-body { padding: 13px; }
  .deal-card h3 { min-height: 46px; font-size: 15px; }
  .deal-card-price { font-size: 17px; }
  .personal-strip { padding: 42px 0; }
  .personal-strip-inner { width: calc(100% - 28px); display: block; }
  .personal-strip h2 { font-size: 26px; }
  .personal-strip button { width: 100%; margin-top: 22px; }
  .metric-grid { width: calc(100% - 28px); }
  .metric-item strong { font-size: 21px; }
  .metric-item span { font-size: 11px; }
  .page-shell { padding: 36px 0 70px; }
  .page-title { margin-bottom: 24px; }
  .category-tiles { grid-template-columns: 1fr; gap: 8px; }
  .category-tile { min-height: 150px; padding: 20px; }
  .category-tile .info-icon { margin-bottom: 14px; }
  .category-tile strong { right: 18px; bottom: 16px; }
  .estimate-vehicle-list { grid-template-columns: 1fr; max-height: 520px; }
  .estimate-vehicle-button { min-height: 118px; }
  .model-image-stage { min-height: 300px; padding: 28px 14px; }
  .model-image-stage img { max-height: 260px; }
  .model-summary { display: block; }
  .model-summary h1 { font-size: 28px; }
  .model-summary-price { margin-top: 14px; text-align: left; }
  .quote-controls { grid-template-columns: 1fr; }
  .quote-control.is-wide { grid-column: auto; }
  .option-groups { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }
  .modal-layer { padding: 0; align-items: flex-end; }
  .modal-panel { width: 100%; max-height: 92vh; border-radius: 8px 8px 0 0; }
  .search-panel { align-self: stretch; margin-top: 0; border-radius: 0; }
  .search-result-item { grid-template-columns: 90px minmax(0, 1fr) 20px; }
  .search-result-item img { width: 90px; height: 58px; }
  .site-footer { padding-bottom: 42px; }
  .mobile-bottom-nav {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    height: 66px;
    padding-bottom: env(safe-area-inset-bottom);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border-top: 1px solid var(--line);
  }
  .mobile-bottom-nav a,
  .mobile-bottom-nav button {
    min-width: 0;
    padding: 7px 2px 5px;
    border: 0;
    background: var(--white);
    display: grid;
    place-items: center;
    align-content: center;
    gap: 3px;
    color: #5c6d7e;
    font-size: 10px;
    font-weight: 750;
  }
  .mobile-bottom-nav svg { width: 20px; height: 20px; }
  .toast { bottom: 78px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
