:root {
  --black: #050505;
  --carbon: #1a1a1a;
  --white: #ffffff;
  --paper: #f1f2f5;
  --card: #ffffff;
  --silver: #bfc0c2;
  --muted: #6d6e72;
  --ink: #15151a;
  --red: #e30613;
  --red-dark: #b4000a;
  --pink: #ff2a5f;
  --border: #dedfe5;
  --shadow: 0 14px 34px rgba(15, 15, 20, .08);
  --shadow-soft: 0 8px 22px rgba(15, 15, 20, .06);
  --shadow-lift: 0 22px 52px rgba(15, 15, 20, .12);
  --radius: 16px;
  --radius-lg: 22px;
  --space-section: clamp(46px, 6vw, 78px);
  --title-xl: clamp(34px, 4.6vw, 58px);
  --title-lg: clamp(28px, 3vw, 42px);
  --title-md: clamp(22px, 2vw, 28px);
  --copy: 16px;
  --copy-sm: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

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

button {
  cursor: pointer;
}

.content-wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(20px, 4vw, 52px);
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(0,0,0,.06);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: var(--red);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(227, 6, 19, .26);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 16px;
  font-weight: 900;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  color: #4f5260;
  font-size: 13px;
  font-weight: 700;
}

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

.header-whatsapp,
.header-cta,
.float-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(227, 6, 19, .24);
}

.float-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
}

.hero-clean {
  padding: 38px 20px 42px;
  background:
    linear-gradient(180deg, rgba(227,6,19,.04), transparent 42%),
    var(--paper);
}

.hero-panel {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(360px, 1fr);
  gap: 36px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 520px;
  font-size: var(--title-xl);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.hero-copy p {
  max-width: 520px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.search-box {
  padding: 26px;
  border: 1px solid #e5e6eb;
  border-radius: 20px;
  background: #fff;
}

.search-title h2 {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -.03em;
}

.search-title h2 span {
  color: var(--red);
}

.search-switch {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.search-switch button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: #676b78;
  background: #eceef4;
  font-size: 13px;
  font-weight: 800;
}

.search-switch button.active {
  color: var(--red);
  background: #ffe4eb;
}

.search-input {
  min-height: 58px;
  margin-top: 18px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  border: 2px solid var(--red);
  border-left-color: #6254d9;
  border-radius: 999px;
}

.search-input span {
  color: var(--red);
  font-size: 20px;
}

.search-input textarea {
  width: 100%;
  height: 54px;
  min-height: 54px;
  padding-top: 15px;
  resize: none;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 16px;
  line-height: 1.45;
}

.search-input textarea::placeholder {
  color: #717684;
}

.prompt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 20px;
}

.prompt-chips button {
  padding: 9px 12px;
  color: #555b68;
  background: #f4f5f8;
  border: 1px solid #e0e2e8;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.prompt-chips button:hover {
  color: var(--red);
  border-color: #ffc2ce;
  background: #fff0f3;
}

.search-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 10px;
  border: 0;
  font-size: 13px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 22px rgba(227, 6, 19, .24);
}

.btn-muted {
  color: #555b68;
  background: #eceef4;
}

.btn-outline {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border);
}

.btn-white {
  color: var(--red);
  background: var(--white);
}

.specialist-link {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.bot-response {
  margin-top: 14px;
  padding: 13px 14px;
  color: #555b68;
  background: #fff5f6;
  border: 1px solid #ffd5dc;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.55;
}

.brand-strip {
  padding: 4px 0 26px;
}

.small-heading {
  margin-bottom: 16px;
  color: #555b68;
  font-size: 16px;
  font-weight: 900;
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.popular-card {
  min-height: 214px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e5e6eb;
  border-radius: 10px;
}

.popular-card img {
  width: calc(100% + 30px);
  height: 108px;
  margin: 10px -15px -8px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 18px rgba(0,0,0,.12));
}

.popular-card span {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.popular-card strong {
  display: block;
  color: var(--red);
  font-size: 19px;
  line-height: 1;
  text-transform: uppercase;
}

.car-line {
  position: relative;
  height: 88px;
  display: block;
}

.car-line::before {
  content: "";
  position: absolute;
  left: -30px;
  right: -22px;
  bottom: 16px;
  height: 38px;
  border-radius: 70px 100px 14px 14px;
  background: linear-gradient(135deg, #f7f7f8, #9da1aa 56%, #2b2d34);
  box-shadow: 0 20px 30px rgba(0,0,0,.12);
}

.car-line.hatch::before {
  height: 42px;
  border-radius: 55px 90px 16px 16px;
}

.car-line.red::before {
  background: linear-gradient(135deg, #ff5a5a, #b4000a);
}

.car-line.blue::before {
  background: linear-gradient(135deg, #3f8cff, #0754c9);
}

.section-block,
.profile-section,
.social-proof {
  padding: var(--space-section) 0;
}

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

.section-head > div {
  max-width: 680px;
}

.section-head p {
  max-width: 560px;
  font-size: var(--copy-sm);
  line-height: 1.7;
}

.section-head h2,
.highlight-card h2,
.profile-section h2,
.service-grid h2,
.vip-inner h2,
.final-inner h2 {
  font-size: var(--title-lg);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.section-head p {
  margin-top: 8px;
  color: var(--muted);
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.vehicle-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e5e6eb;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(20, 20, 30, .04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.vehicle-card:hover,
.product-card:hover,
.popular-card:hover,
.profile-grid a:hover {
  transform: translateY(-3px);
  border-color: #d4d6df;
  box-shadow: var(--shadow-lift);
}

.vehicle-photo {
  position: relative;
  min-height: 154px;
  background: linear-gradient(135deg, #f7f7f9, #e1e3e8);
}

.vehicle-photo img {
  width: 100%;
  height: 184px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.vehicle-photo:has(img) {
  min-height: 184px;
  background: #f5f6f8;
}

.vehicle-photo:has(img)::before,
.vehicle-photo:has(img)::after {
  display: none;
}

.vehicle-photo::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 8%;
  bottom: 38px;
  height: 42px;
  border-radius: 74px 100px 16px 16px;
  background: linear-gradient(135deg, #f7f7f8, #969ba5 58%, #202127);
  box-shadow: 0 18px 28px rgba(0,0,0,.14);
}

.vehicle-photo::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 18%;
  bottom: 33px;
  height: 4px;
  border-radius: 999px;
  background: rgba(227, 6, 19, .45);
  filter: blur(6px);
}

.vehicle-photo span {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 6px 9px;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
}

.tone-black {
  background: linear-gradient(135deg, #22242b, #f5f5f6);
}

.tone-red {
  background: linear-gradient(135deg, #ffe8ec, #f6f6f8);
}

.vehicle-body {
  padding: 15px;
}

.vehicle-body h3 {
  font-size: 15px;
  line-height: 1.25;
}

.vehicle-body p {
  margin-top: 7px;
  min-height: 34px;
  color: #8a8f9d;
  font-size: 12px;
  font-weight: 700;
}

.vehicle-body strong {
  display: block;
  margin-top: 16px;
  color: #5b6070;
  font-size: 21px;
  letter-spacing: -.03em;
}

.vehicle-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.vehicle-actions a {
  min-height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.vehicle-actions a:first-child {
  color: var(--ink);
  background: #f1f2f5;
}

.vehicle-actions a:last-child {
  color: var(--white);
  background: var(--red);
}

.highlight-grid {
  padding: 36px 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 16px;
}

.highlight-card {
  min-height: 255px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid #e5e6eb;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.highlight-card.dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--black), #360105);
  border-color: transparent;
}

.highlight-card span,
.service-grid span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.highlight-card.dark span,
.highlight-card.dark p {
  color: rgba(255,255,255,.72);
}

.highlight-card p {
  color: var(--muted);
  font-weight: 700;
}

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

.profile-grid a {
  min-height: 150px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: var(--white);
  border: 1px solid #e5e6eb;
  border-radius: 14px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.profile-grid strong {
  font-size: 20px;
}

.profile-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.service-grid {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  padding: 36px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-grid article {
  padding: 26px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid #e5e6eb;
  border-radius: 16px;
}

.vip-section {
  margin-top: 28px;
  color: var(--white);
  background: var(--black);
}

.vip-inner {
  padding: 54px 0;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 28px;
  align-items: center;
}

.vip-inner p {
  margin-top: 8px;
  color: rgba(255,255,255,.68);
}

.vip-inner ul {
  display: grid;
  gap: 10px;
  list-style: none;
  color: rgba(255,255,255,.8);
  font-weight: 700;
}

.vip-inner li::before {
  content: "•";
  color: var(--red);
  margin-right: 9px;
}

.social-proof {
  padding-top: 56px;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e5e6eb;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.testimonial-track {
  position: relative;
  min-height: 282px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  padding: clamp(26px, 4vw, 44px);
  display: grid;
  align-content: space-between;
  opacity: 0;
  transform: translateX(24px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}

.testimonial-card.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.stars {
  color: var(--red);
  font-size: 16px;
  letter-spacing: .18em;
}

.testimonial-card p {
  max-width: 860px;
  color: var(--ink);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 850;
  line-height: 1.16;
  letter-spacing: -.04em;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.testimonial-card footer::before {
  content: "";
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.65), transparent 28%),
    linear-gradient(135deg, var(--red), var(--black));
  box-shadow: 0 8px 18px rgba(227, 6, 19, .2);
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  color: var(--ink);
  font-size: 15px;
}

.testimonial-card span {
  margin-top: 2px;
  font-size: 13px;
}

.testimonial-controls {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: flex;
  gap: 8px;
}

.testimonial-controls button {
  width: 34px;
  height: 34px;
  border: 1px solid #e1e3e8;
  border-radius: 50%;
  color: transparent;
  background: var(--white);
}

.testimonial-controls button::before {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  margin: auto;
  border-radius: 50%;
  background: #c6c9d2;
}

.testimonial-controls button.active {
  border-color: var(--red);
}

.testimonial-controls button.active::before {
  background: var(--red);
}

.final-cta {
  padding: 42px 0;
}

.final-inner {
  padding: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background: var(--white);
  border: 1px solid #e5e6eb;
  border-radius: 18px;
}

.final-inner p {
  margin-top: 7px;
  color: var(--muted);
}

.final-inner div:last-child {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.offer-highlights {
  align-items: stretch;
  padding-top: 24px;
  padding-bottom: 52px;
}

.offer-highlights .highlight-card {
  position: relative;
  overflow: hidden;
}

.arrival-card {
  grid-column: span 1;
  gap: 18px;
  background:
    radial-gradient(circle at 85% 15%, rgba(227, 6, 19, .1), transparent 30%),
    var(--white);
}

.highlight-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
}

.highlight-copy p,
.service-grid article p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.highlight-media {
  position: relative;
  z-index: 1;
  height: 132px;
  margin: 0 -10px -12px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f4f5f8, #e0e2e8);
  overflow: hidden;
}

.highlight-media::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 14px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0,0,0,.18);
  filter: blur(12px);
}

.highlight-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px 8px 0;
}

.offer-pills,
.deal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.offer-pills b,
.deal-list p {
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.offer-pills b {
  color: #4d5360;
  background: #f1f2f5;
}

.weekly-card {
  isolation: isolate;
  border: 0;
  box-shadow: 0 26px 56px rgba(5, 5, 5, .24);
}

.weekly-card::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(227, 6, 19, .42);
  filter: blur(20px);
  z-index: -1;
}

.weekly-card h2 {
  max-width: 390px;
}

.deal-badge {
  width: fit-content;
  padding: 10px 12px;
  display: grid;
  gap: 2px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(255,255,255,.08);
}

.deal-badge small,
.review-top small,
.service-grid small,
.profile-grid small {
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.deal-badge strong {
  color: var(--white);
  font-size: 13px;
}

.deal-list p {
  color: var(--white);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
}

.budget-card {
  min-height: 300px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.98)),
    radial-gradient(circle at 70% 84%, rgba(227, 6, 19, .16), transparent 36%);
}

.budget-card img {
  width: 105%;
  height: 116px;
  object-fit: cover;
  object-position: center;
  margin: 0 -12px -28px;
  border-radius: 16px 16px 0 0;
}

.budget-price {
  position: absolute;
  right: 22px;
  bottom: 94px;
  z-index: 3;
  padding: 12px 14px;
  color: var(--white);
  background: var(--red);
  border-radius: 14px;
  box-shadow: 0 16px 30px rgba(227, 6, 19, .28);
}

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

.budget-price small {
  color: rgba(255,255,255,.75);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.budget-price strong {
  margin-top: 2px;
  font-size: 18px;
  letter-spacing: -.04em;
}

.profile-grid a {
  position: relative;
  overflow: hidden;
  justify-content: space-between;
}

.profile-grid a::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(227, 6, 19, .07);
}

.profile-grid small {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: #fff0f2;
  border-radius: 50%;
}

.profile-grid strong,
.profile-grid span {
  position: relative;
  z-index: 1;
}

.service-grid article {
  position: relative;
  overflow: hidden;
  gap: 18px;
  background:
    linear-gradient(180deg, #fff, #f7f8fb);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--red);
}

.service-grid article:hover {
  transform: translateY(-3px);
  border-color: #d4d6df;
  box-shadow: var(--shadow-lift);
}

.service-grid small {
  color: #c5c8d0;
  font-size: 28px;
  letter-spacing: -.05em;
}

.service-grid .btn {
  width: fit-content;
}

.vip-section {
  background:
    radial-gradient(circle at 82% 20%, rgba(227, 6, 19, .38), transparent 26%),
    linear-gradient(135deg, var(--black), #171719 62%, #350105);
}

.vip-copy h2 {
  max-width: 420px;
}

.vip-board {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.vip-board strong {
  display: block;
  margin-bottom: 16px;
  color: var(--white);
  font-size: 14px;
  font-weight: 950;
}

.review-layout {
  display: grid;
  grid-template-columns: .42fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.review-score {
  padding: 28px;
  display: grid;
  align-content: center;
  gap: 10px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(255,255,255,.18), transparent 24%),
    linear-gradient(135deg, var(--black), #3c0106);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.review-score span {
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.review-score strong {
  font-size: clamp(56px, 7vw, 88px);
  line-height: .86;
  letter-spacing: -.08em;
}

.review-score p {
  max-width: 260px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.55;
}

.review-score .stars {
  color: var(--white);
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.review-top small {
  padding: 8px 10px;
  color: var(--red);
  background: #fff0f2;
  border-radius: 999px;
  white-space: nowrap;
}

.testimonial-slider {
  border: 1px solid #dedfe5;
  box-shadow: 0 18px 42px rgba(15, 15, 20, .08);
}

.testimonial-track {
  min-height: 292px;
}

.testimonial-card {
  gap: 28px;
}

.testimonial-card p {
  max-width: 760px;
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -.035em;
}

.testimonial-card footer {
  padding-top: 18px;
  border-top: 1px solid #eceef3;
}

.testimonial-controls button {
  width: 38px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: #dfe2e8;
}

.testimonial-controls button::before {
  display: none;
}

.testimonial-controls button.active {
  background: var(--red);
}

.footer {
  padding: 34px clamp(20px, 4vw, 52px);
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  color: #656a77;
  background: var(--white);
  border-top: 1px solid #e5e6eb;
}

.footer strong,
.footer span,
.footer p,
.footer a {
  display: block;
}

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

.footer span,
.footer p {
  margin-top: 6px;
  font-size: 13px;
}

.footer nav {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
}

/* Inventory and support pages inherit the same clean system */
.light-page {
  background: var(--paper);
}

.inventory-page,
.support-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 70px;
}

.inventory-page .section-head,
.inventory-page .service-grid,
.inventory-page .vip-inner,
.inventory-page .final-inner {
  width: 100%;
}

.inventory-hero,
.support-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 0 28px;
}

.inventory-hero h1,
.support-hero h1 {
  max-width: 720px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.inventory-hero p,
.support-hero p {
  max-width: 440px;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.inventory-filter {
  padding: 16px;
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr auto;
  gap: 12px;
  background: var(--white);
  border: 1px solid #e5e6eb;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.filter-field {
  padding: 12px 14px;
  border: 1px solid #dfe1e7;
  border-radius: 12px;
}

.filter-field small {
  display: block;
  margin-bottom: 6px;
  color: #6b7080;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.filter-field input,
.filter-field select {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 800;
}

.inventory-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 20px;
}

.inventory-tabs button {
  min-height: 38px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #e0e2e8;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.inventory-tabs button.active,
.inventory-tabs button:hover {
  color: var(--white);
  background: var(--black);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e5e6eb;
  border-radius: 12px;
}

.product-visual {
  position: relative;
  min-height: 196px;
  background: linear-gradient(135deg, #f7f7f9, #e1e3e8);
}

.product-visual::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 8%;
  bottom: 44px;
  height: 48px;
  border-radius: 74px 100px 16px 16px;
  background: linear-gradient(135deg, #f7f7f8, #969ba5 58%, #202127);
  box-shadow: 0 18px 28px rgba(0,0,0,.14);
}

.product-visual span {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-body {
  padding: 18px;
}

.product-top {
  display: flex;
  justify-content: space-between;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.product-top strong {
  color: var(--ink);
}

.product-body h2 {
  margin-top: 10px;
  font-size: 19px;
}

.product-body p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.product-specs span {
  padding: 7px 9px;
  color: #6b7080;
  background: #f2f3f6;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.empty-state,
.support-flow,
.faq-section {
  margin-top: 42px;
}

.stock-story,
.deal-band,
.budget-section,
.inventory-profile,
.inventory-services,
.inventory-proof,
.why-new-car,
.inventory-final {
  margin-top: 58px;
}

.stock-story {
  padding-top: 10px;
}

.mini-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mini-showcase article {
  min-height: 230px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--white);
  border: 1px solid #e5e6eb;
  border-radius: 14px;
}

.mini-car {
  position: relative;
  min-height: 124px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f7f7f9, #e1e3e8);
  overflow: hidden;
}

.mini-car::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 8%;
  bottom: 34px;
  height: 42px;
  border-radius: 74px 100px 16px 16px;
  background: linear-gradient(135deg, #f7f7f8, #969ba5 58%, #202127);
  box-shadow: 0 18px 28px rgba(0,0,0,.14);
}

.mini-showcase strong,
.mini-showcase span {
  display: block;
}

.mini-showcase strong {
  font-size: 18px;
}

.mini-showcase span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.deal-band {
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--black), #3a0307);
  border-radius: 18px;
}

.deal-band h2,
.budget-section h2,
.why-new-car h2 {
  max-width: 620px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.deal-band p,
.budget-section p {
  margin-top: 8px;
  color: rgba(255,255,255,.7);
}

.deal-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 340px;
}

.deal-pills span {
  padding: 9px 11px;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.budget-section {
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 340px);
  gap: 24px;
  align-items: center;
  background: var(--white);
  border: 1px solid #e5e6eb;
  border-radius: 18px;
}

.budget-section p {
  color: var(--muted);
}

.budget-card {
  overflow: hidden;
  border: 1px solid #e5e6eb;
  border-radius: 12px;
}

.inventory-vip {
  margin-inline: calc((100vw - min(1180px, calc(100vw - 40px))) / -2);
  padding-inline: calc((100vw - min(1180px, calc(100vw - 40px))) / 2);
}

.why-new-car {
  padding: 34px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
  background: var(--white);
  border: 1px solid #e5e6eb;
  border-radius: 18px;
}

.why-new-car ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  list-style: none;
}

.why-new-car li {
  padding: 13px 14px;
  background: #f5f6f9;
  border: 1px solid #e5e6eb;
  border-radius: 12px;
  color: #4f5260;
  font-size: 14px;
  font-weight: 850;
}

.why-new-car li::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--red);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.contact-cards a,
.steps article,
details {
  background: var(--white);
  border: 1px solid #e5e6eb;
  border-radius: 14px;
}

.contact-cards a {
  min-height: 190px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-cards span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.contact-cards strong {
  font-size: 20px;
}

.contact-cards p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.support-flow {
  padding: 34px;
  color: var(--white);
  background: var(--black);
  border-radius: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.steps article {
  padding: 22px;
  color: var(--ink);
}

.steps article span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-weight: 900;
}

.steps p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 900;
}

details p {
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.65;
}

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

  .hero-panel,
  .quick-filter,
  .inventory-filter,
  .vip-inner,
  .final-inner,
  .inventory-hero,
  .support-hero {
    grid-template-columns: 1fr;
  }

  .popular-grid,
  .vehicle-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .highlight-grid,
  .service-grid,
  .product-grid,
  .steps,
  .contact-cards,
  .mini-showcase,
  .deal-band,
  .budget-section,
  .why-new-car {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-grid,
  .testimonial-slider {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-layout {
    grid-template-columns: 1fr;
  }

  .arrival-card {
    grid-column: span 2;
  }

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

@media (max-width: 680px) {
  .site-header {
    padding: 12px 20px;
  }

  .header-whatsapp {
    display: none;
  }

  .brand small {
    display: none;
  }

  .hero-clean {
    padding-top: 20px;
  }

  .hero-panel,
  .search-box {
    padding: 20px;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .search-title h2 {
    font-size: 21px;
  }

  .search-input {
    align-items: start;
    border-radius: 18px;
    padding-top: 12px;
  }

  .search-input textarea {
    height: 76px;
    min-height: 76px;
    padding-top: 0;
  }

  .search-actions .btn,
  .search-actions .specialist-link,
  .section-head .btn,
  .final-inner .btn {
    width: 100%;
  }

  .section-head,
  .final-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .popular-grid,
  .vehicle-grid,
  .highlight-grid,
  .profile-grid,
  .service-grid,
  .review-layout,
  .product-grid,
  .steps,
  .contact-cards,
  .inventory-filter,
  .mini-showcase,
  .deal-band,
  .budget-section,
  .why-new-car,
  .why-new-car ul {
    grid-template-columns: 1fr;
  }

  .vehicle-photo {
    min-height: 180px;
  }

  .arrival-card {
    grid-column: span 1;
  }

  .offer-highlights .highlight-card {
    min-height: auto;
  }

  .highlight-media {
    height: 116px;
  }

  .budget-price {
    position: static;
    width: fit-content;
    margin-top: 8px;
  }

  .budget-card img {
    width: 100%;
    margin: 6px 0 -18px;
  }

  .vip-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .review-score {
    min-height: 220px;
  }

  .float-whatsapp {
    right: 16px;
    bottom: 16px;
  }

  .testimonial-track {
    min-height: 390px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-card p {
    font-size: 20px;
  }

  .testimonial-card footer {
    align-items: center;
    flex-direction: row;
  }

  .testimonial-controls {
    left: 24px;
    right: auto;
  }
}
