:root {
  --bg: #f5f5f2;
  --paper: #ffffff;
  --ink: #111111;
  --muted: #666b73;
  --line: #deded8;
  --soft: #ecece7;
  --red: #c9081a;
  --red-dark: #9f0715;
  --cyan: #05c7c9;
  --dark-glass: rgba(0, 0, 0, 0.64);
  --shadow: 0 18px 50px rgba(12, 16, 24, 0.14);
  --radius: 8px;
  --header: 72px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

body.menu-open,
body.modal-open,
body.drawer-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header);
  padding: 0 40px;
  color: #fff;
  background: rgba(10, 12, 14, 0.38);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.site-header.is-solid,
.site-header.menu-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  min-width: 86px;
  height: 32px;
  border: 2px solid currentColor;
  border-radius: 999px;
  color: var(--red);
  background: #fff;
  line-height: 1;
}

.site-header:not(.is-solid):not(.menu-active) .brand-mark {
  color: #fff;
  background: transparent;
}

.brand-location {
  font-size: 13px;
  letter-spacing: 0;
}

.main-nav {
  justify-self: end;
  display: flex;
  gap: clamp(16px, 1.5vw, 28px);
  margin-right: clamp(18px, 2vw, 32px);
}

.main-nav a,
.phone-link {
  position: relative;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
  content: "";
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

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

.language-switcher {
  display: inline-flex;
  gap: 3px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.language-switcher button {
  min-width: 34px;
  height: 28px;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
}

.site-header.is-solid .language-switcher,
.site-header.menu-active .language-switcher {
  background: var(--bg);
  border-color: var(--line);
}

.language-switcher button.is-active {
  color: var(--ink);
  background: #fff;
}

.site-header.is-solid .language-switcher button.is-active,
.site-header.menu-active .language-switcher button.is-active {
  color: #fff;
  background: var(--ink);
}

.button,
.icon-button {
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

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

.button-dark {
  color: #fff;
  background: var(--ink);
}

.button-light {
  color: var(--ink);
  background: #fff;
}

.button-accent {
  color: #fff;
  background: var(--red);
}

.button-accent:hover {
  background: var(--red-dark);
}

.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
}

.icon-button {
  display: none;
  width: 44px;
  background: transparent;
  color: inherit;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  height: clamp(760px, 86svh, 930px);
  overflow: hidden;
  color: #fff;
  background: #111;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  overflow: hidden;
}

.hero-media::before,
.hero-media::after {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  content: "";
}

.hero-media::before {
  background-image: var(--hero-backdrop, var(--hero-image));
  background-position: var(--hero-backdrop-position, center);
  background-size: var(--hero-backdrop-size, cover);
  filter: blur(var(--hero-backdrop-blur, 0)) brightness(var(--hero-backdrop-brightness, 1));
  transform: scale(var(--hero-backdrop-scale, 1.02));
}

.hero-media::after {
  background-image: var(--hero-foreground, var(--hero-image));
  background-position: var(--hero-position, center);
  background-size: var(--hero-size, cover);
  transform: scale(1.02);
  transition: background-image 360ms ease;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.46) 42%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.54) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, calc(100% - 40px));
  padding: clamp(118px, 13vh, 146px) 0 56px;
  margin-left: clamp(24px, 6vw, 96px);
}

.eyebrow,
.section-kicker,
.model-brand,
.news-grid span,
.brand-card span,
.model-meta {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  color: var(--cyan);
}

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

h1 {
  margin-top: 18px;
  font-size: clamp(48px, 7.2vw, 96px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero p {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  width: min(520px, 100%);
  margin: 28px 0 0;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-facts div {
  padding: 15px 18px;
  background: rgba(0, 0, 0, 0.24);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 700;
}

.hero-facts dd {
  margin: 7px 0 0;
  font-size: 20px;
  font-weight: 900;
}

.hero-facts a {
  color: inherit;
}

.hero-facts a:hover,
.hero-facts a:focus-visible {
  color: var(--cyan);
  outline: 0;
}

.hero-controls {
  position: absolute;
  right: clamp(24px, 5vw, 80px);
  bottom: 42px;
  z-index: 4;
  display: flex;
  gap: 10px;
}

.hero-controls button {
  width: 44px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
}

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

.quick-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -1px;
  color: #fff;
  background: #121212;
}

.quick-strip a,
.quick-strip button {
  display: flex;
  align-items: center;
  min-height: 82px;
  padding: 0 32px;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  font-weight: 800;
}

.quick-strip span {
  margin-right: 16px;
  color: var(--cyan);
  font-size: 13px;
}

.section {
  padding: 96px clamp(20px, 5vw, 80px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  max-width: 1320px;
  margin: 0 auto 44px;
}

.section-head h2,
.feature-copy h2,
.service-band h2,
.contact-copy h2 {
  margin-top: 12px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-head p,
.feature-copy p,
.service-band p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.tools-section {
  background: #fff;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1320px;
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}

.tool-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 188px;
  padding: 24px;
  color: var(--ink);
  text-align: left;
  background: #fff;
  border: 0;
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.tool-card:hover,
.tool-card:focus-visible {
  color: #fff;
  background: var(--ink);
  outline: 0;
}

.tool-card span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.tool-card strong {
  font-size: 22px;
  line-height: 1.1;
}

.tool-card small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.tool-card:hover small,
.tool-card:focus-visible small {
  color: rgba(255, 255, 255, 0.72);
}

.tour-preview {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 1px;
  max-width: 1320px;
  margin: 28px auto 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.tour-preview > div {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(26px, 4vw, 44px);
  background: var(--bg);
}

.tour-preview h3 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
}

.tour-preview p {
  color: var(--muted);
  line-height: 1.6;
}

.tour-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 440px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.22)),
    url("assets/haval-h6.webp") center / cover;
}

.tour-visual span {
  font-size: clamp(82px, 12vw, 160px);
  font-weight: 900;
  line-height: 0.8;
}

.tour-visual strong {
  position: absolute;
  right: 32px;
  bottom: 28px;
  color: var(--cyan);
  font-size: 18px;
  text-transform: uppercase;
}

.model-toolbar {
  max-width: 1320px;
  margin: 0 auto 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.filter-group,
.toolbar-side {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.model-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.filter-pill {
  min-height: 42px;
  padding: 0 18px;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
}

.filter-pill.is-active {
  color: #fff;
  background: var(--ink);
}

.search-field {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.search-field span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.search-field input,
.toolbar-side select {
  min-height: 42px;
  border: 0;
  outline: 0;
  background: transparent;
}

.toolbar-side select {
  padding: 0 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1320px;
  margin: 0 auto;
}

.model-card {
  position: relative;
  display: grid;
  min-height: 520px;
  overflow: hidden;
  color: #fff;
  background: #111;
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.model-card::before {
  position: absolute;
  inset: 0;
  background-image: var(--model-image);
  background-color: #151515;
  background-position: center 24px;
  background-repeat: no-repeat;
  background-size: calc(100% - 24px) auto;
  transition: transform 420ms ease;
  content: "";
}

.model-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.18) 38%, rgba(0, 0, 0, 0.86) 100%),
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.12), transparent 34%);
  content: "";
}

.model-card:hover::before {
  transform: scale(1.045);
}

.model-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  min-height: 100%;
  padding: 26px;
}

.model-brand {
  color: var(--cyan);
}

.model-card h3 {
  font-size: 32px;
  line-height: 1.05;
}

.model-tags,
.model-actions,
.offer-stats,
.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.model-tags span,
.offer-stats span {
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.model-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.model-specs div {
  min-height: 78px;
  padding: 13px;
  background: rgba(0, 0, 0, 0.2);
}

.model-specs dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.model-specs dd {
  margin: 6px 0 0;
  font-weight: 900;
}

.model-actions .button {
  min-height: 42px;
  padding: 11px 14px;
  font-size: 13px;
}

.feature-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: clamp(30px, 8vw, 120px);
  align-items: center;
  padding: 96px clamp(20px, 7vw, 110px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.42)),
    url("assets/haval-h6.webp") center / cover;
}

.feature-copy {
  max-width: 680px;
}

.feature-copy p,
.service-band p {
  color: rgba(255, 255, 255, 0.78);
  margin: 24px 0 30px;
}

.offer-panel {
  padding: 30px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.offer-panel-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  margin-bottom: 16px;
}

.offer-panel-top span {
  color: var(--cyan);
  font-weight: 900;
}

.offer-panel-top strong {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
}

.offer-panel p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.brand-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1320px;
  margin: 0 auto;
}

.brand-card,
.news-grid article {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.brand-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #151515;
}

.brand-card div,
.news-grid article {
  padding: 22px;
}

.brand-card span,
.news-grid span {
  color: var(--red);
}

.brand-card h3,
.news-grid h3 {
  margin-top: 12px;
  font-size: 22px;
  line-height: 1.16;
}

.brand-card p,
.news-grid p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.service-band {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  padding: 84px clamp(20px, 7vw, 110px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.52)),
    url("assets/tank-500.webp") center / cover;
}

.service-band > div:first-child {
  max-width: 760px;
}

.warranty-section {
  background: #f0f0eb;
}

.warranty-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
}

.book-list,
.service-info {
  display: grid;
  gap: 14px;
}

.book-list article,
.service-info article {
  display: grid;
  gap: 12px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.book-list article {
  grid-template-columns: minmax(100px, 0.22fr) minmax(0, 1fr) auto;
  align-items: center;
}

.book-list span,
.service-info span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.book-list strong {
  font-size: 19px;
  line-height: 1.35;
}

.book-list button {
  min-height: 42px;
  padding: 0 14px;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
}

.service-info h3 {
  font-size: 24px;
}

.service-info p {
  color: var(--ink);
  font-weight: 900;
}

.service-info small {
  color: var(--muted);
  line-height: 1.55;
}

.news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.9fr);
  gap: clamp(30px, 8vw, 110px);
  max-width: 1460px;
  margin: 0 auto;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.contact-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 6px 0 0;
  font-size: 20px;
  font-weight: 900;
}

.lead-form,
.calculator {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.lead-form.compact,
.calculator {
  grid-template-columns: 1fr;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.lead-form label,
.calculator label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea,
.calculator input,
.calculator select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: #f8f8f5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: 0;
}

.lead-form textarea {
  padding: 14px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.calculator input:focus,
.calculator select:focus {
  border-color: var(--ink);
}

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

.form-status {
  grid-column: 1 / -1;
  min-height: 20px;
  color: var(--red);
  font-weight: 800;
}

.whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: #0bbf93;
  border-radius: 50%;
  box-shadow: var(--shadow);
  font-weight: 900;
}

.whatsapp svg {
  width: 30px;
  height: 30px;
}

.whatsapp:hover,
.whatsapp:focus-visible {
  background: #0aa981;
  outline: 0;
}

.modal {
  width: min(520px, calc(100% - 28px));
  padding: 28px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(4px);
}

.modal h2 {
  padding-right: 38px;
  font-size: 30px;
}

.modal p {
  margin: 10px 0 22px;
  color: var(--muted);
  line-height: 1.55;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  cursor: pointer;
  font-weight: 900;
}

.calc-result {
  display: block;
  padding: 20px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
  font-size: 28px;
  font-weight: 900;
  text-align: center;
}

.detail-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  width: min(560px, 94vw);
  padding: 30px;
  overflow: auto;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

.detail-drawer.is-open {
  transform: translateX(0);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 65;
  display: none;
  background: rgba(0, 0, 0, 0.46);
}

body.drawer-open .drawer-backdrop {
  display: block;
}

.detail-hero {
  height: 280px;
  margin: 36px -30px 26px;
  background-image: var(--detail-image);
  background-color: #151515;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.detail-drawer h2 {
  font-size: 36px;
  line-height: 1;
}

.detail-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.detail-specs div {
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius);
}

.detail-specs dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.detail-specs dd {
  margin: 8px 0 0;
  font-weight: 900;
}

.tour-visual {
  border: 0;
  cursor: pointer;
}

.model-card {
  min-height: 540px;
  background: #060606;
}

.model-card::before {
  inset: 22px 18px auto;
  height: 260px;
  background-color: transparent;
  background-position: var(--model-position, center bottom);
  background-size: contain;
  filter: var(--model-color-filter, var(--model-filter, none));
  transform: scale(var(--model-scale, 1));
}

.model-card::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0 43%, rgba(0, 0, 0, 0.82) 65%, rgba(0, 0, 0, 0.96) 100%),
    radial-gradient(ellipse at 50% 30%, rgba(255, 255, 255, 0.16), transparent 36%);
}

.model-card:hover::before {
  transform: scale(calc(var(--model-scale, 1) * 1.035));
}

.model-card-content {
  justify-content: flex-end;
  padding-top: 300px;
}

.model-card h3 {
  min-height: 68px;
}

.model-actions .button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
}

.model-color-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px 10px;
  align-items: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.model-color-row > span,
.model-trims > span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.model-color-row small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 700;
}

.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: flex-end;
}

.color-swatches button {
  width: 22px;
  height: 22px;
  padding: 0;
  background: var(--swatch);
  border: 2px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}

.color-swatches button.is-active {
  border-color: var(--cyan);
  box-shadow:
    0 0 0 2px rgba(5, 199, 201, 0.25),
    inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}

.model-trims {
  display: grid;
  gap: 8px;
}

.model-trims > div {
  display: grid;
  gap: 7px;
}

.model-trims > div > span {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  min-height: 34px;
  padding: 7px 9px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
}

.model-trims strong {
  color: #fff;
  white-space: nowrap;
}

.offer-grid {
  display: grid;
  gap: 14px;
}

.offer-card {
  display: grid;
  gap: 18px;
  padding: 26px;
  background: rgba(0, 0, 0, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.offer-card > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.offer-card span {
  color: var(--cyan);
  font-weight: 900;
}

.offer-card strong {
  color: #fff;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
  white-space: nowrap;
}

.offer-card p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.offer-stats button {
  min-height: 36px;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.offer-stats button:hover,
.offer-stats button:focus-visible {
  color: var(--ink);
  background: #fff;
  outline: 0;
}

.brand-card img {
  padding: 18px;
  background:
    radial-gradient(ellipse at 50% 52%, rgba(255, 255, 255, 0.14), transparent 43%),
    #050505;
  object-position: center;
}

.warranty-download {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.warranty-download h3 {
  margin-top: 10px;
  font-size: 30px;
  line-height: 1.05;
}

.warranty-download p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.warranty-download label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.warranty-download select {
  min-height: 56px;
  padding: 0 14px;
  color: var(--ink);
  background: #f8f8f5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.warranty-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.warranty-card img {
  width: 82px;
  height: 54px;
  object-fit: contain;
  padding: 4px;
  background: #070707;
  border-radius: 6px;
}

.warranty-card span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.warranty-card strong {
  display: block;
  margin-top: 4px;
  font-size: 14px;
}

.warranty-card a {
  grid-column: 1 / -1;
  min-height: 36px;
  padding: 9px 12px;
  color: #fff;
  text-align: center;
  background: var(--ink);
  border-radius: var(--radius);
  font-weight: 900;
}

.corporate-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: center;
  padding: 92px clamp(20px, 7vw, 110px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.52)),
    url("assets/poer.jpeg") center / cover;
}

.corporate-copy {
  max-width: 680px;
}

.corporate-copy p {
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.corporate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.corporate-grid article {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 240px;
  padding: 26px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.corporate-grid span {
  color: var(--cyan);
  font-weight: 900;
}

.corporate-grid h3 {
  font-size: 24px;
  line-height: 1.08;
}

.corporate-grid p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.modal {
  width: min(680px, calc(100% - 28px));
  padding: 34px;
}

.modal h2 {
  font-size: clamp(34px, 5vw, 52px);
}

.modal-close {
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  font-size: 22px;
  line-height: 1;
}

.lead-form.compact input,
.lead-form.compact select,
.lead-form.compact textarea,
.calculator input,
.calculator select {
  height: 62px;
  min-height: 62px;
}

.lead-form.compact .button,
.calculator .button {
  min-height: 62px;
}

.calculator-modal {
  width: min(780px, calc(100% - 28px));
}

.calculator {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-switcher,
.calc-result,
.calc-breakdown {
  grid-column: 1 / -1;
}

.price-switcher {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: #f8f8f5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.price-switcher[hidden] {
  display: none;
}

.price-switcher button {
  height: 48px;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 22px;
  font-weight: 900;
}

.price-switcher span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-switcher strong {
  display: block;
  margin-top: 4px;
  font-size: 20px;
}

.calc-breakdown {
  min-height: 22px;
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.warning-modal {
  width: min(420px, calc(100% - 28px));
}

.warning-modal p {
  color: var(--ink);
  font-size: 26px;
  font-weight: 900;
}

[hidden] {
  display: none !important;
}

/* Compact production pass */
.hero {
  height: max(680px, 100svh);
  min-height: 100svh;
}

.hero-content {
  width: min(620px, calc(100% - 40px));
  padding-top: clamp(104px, 12vh, 126px);
}

h1 {
  font-size: clamp(44px, 6vw, 78px);
}

.hero p {
  font-size: clamp(16px, 1.7vw, 20px);
}

.section {
  padding: 72px clamp(20px, 5vw, 72px);
}

.section-head {
  margin-bottom: 34px;
}

.section-head h2,
.feature-copy h2,
.service-band h2,
.contact-copy h2 {
  font-size: clamp(30px, 3.5vw, 46px);
}

.tool-card {
  min-height: 148px;
  padding: 20px;
}

.tool-card strong {
  font-size: 19px;
}

.tour-visual {
  min-height: 340px;
}

.model-card {
  min-height: 610px;
}

.model-card::before {
  height: 230px;
}

.model-card-content {
  gap: 12px;
  padding: 252px 22px 22px;
}

.model-card h3 {
  min-height: 54px;
  font-size: 27px;
}

.model-specs div {
  min-height: 64px;
  padding: 10px;
}

.feature-stage {
  align-items: start;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 520px);
  padding: 72px clamp(20px, 6vw, 88px);
}

.feature-copy p {
  margin: 18px 0 22px;
}

.offer-doc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.offer-card {
  gap: 12px;
  min-height: 0;
  padding: 18px;
}

.offer-card strong {
  font-size: clamp(24px, 3vw, 34px);
}

.offer-card p {
  font-size: 14px;
}

.offer-stats button {
  min-height: 32px;
  padding: 6px 10px;
}

.service-band,
.corporate-section {
  padding: 68px clamp(20px, 6vw, 88px);
}

.regional-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1320px;
  margin: 0 auto;
}

.regional-grid article {
  display: grid;
  gap: 8px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.regional-grid span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.regional-grid strong {
  font-size: 22px;
}

.regional-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.warranty-layout.warranty-simple {
  grid-template-columns: 1fr;
  max-width: 920px;
}

.warranty-download {
  gap: 20px;
  padding: 24px;
}

.warranty-download h3 {
  font-size: clamp(28px, 3vw, 38px);
}

.warranty-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.warranty-preview {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.warranty-preview img {
  width: 180px;
  height: 104px;
  object-fit: contain;
  padding: 8px;
  background: #070707;
  border-radius: var(--radius);
}

.warranty-preview span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.warranty-preview strong {
  display: block;
  margin-top: 6px;
  font-size: 26px;
  line-height: 1.1;
}

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

.corporate-grid article {
  min-height: 190px;
  padding: 22px;
}

.map-grid {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.map-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mini-map {
  position: relative;
  display: block;
  min-height: 104px;
  overflow: hidden;
  background:
    linear-gradient(32deg, transparent 44%, rgba(255, 255, 255, 0.68) 45% 51%, transparent 52%),
    linear-gradient(132deg, transparent 38%, rgba(255, 255, 255, 0.72) 39% 45%, transparent 46%),
    linear-gradient(90deg, rgba(5, 199, 201, 0.2), rgba(201, 8, 26, 0.14)),
    #dfe5df;
  border-radius: 6px;
}

.mini-map span {
  position: absolute;
  top: 45%;
  left: 52%;
  width: 16px;
  height: 16px;
  background: var(--red);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
}

.map-card strong {
  font-size: 18px;
}

.map-card p {
  margin: 4px 0 10px;
  color: var(--muted);
}

.map-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.map-apps a {
  padding: 7px 10px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 900;
}

.modal {
  width: min(560px, calc(100% - 28px));
  padding: 28px;
}

.calculator-modal {
  width: min(680px, calc(100% - 28px));
}

.modal h2 {
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1;
}

.modal p {
  margin-bottom: 18px;
}

.modal-close {
  width: 38px;
  height: 38px;
  font-size: 20px;
}

.lead-form.compact,
.calculator {
  gap: 13px;
}

.lead-form.compact input,
.lead-form.compact select,
.lead-form.compact textarea,
.calculator input,
.calculator select {
  height: 50px;
  min-height: 50px;
}

.lead-form.compact .button,
.calculator .button {
  min-height: 50px;
}

.file-field input {
  height: auto !important;
  min-height: 0 !important;
  padding: 12px;
}

.file-field input::file-selector-button {
  min-height: 34px;
  margin-right: 10px;
  padding: 0 12px;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
}

.file-field small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: none;
}

.calc-result {
  padding: 16px;
  font-size: 24px;
}

.brand-card {
  display: grid;
  grid-template-rows: 190px minmax(0, 1fr);
}

.brand-media {
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 58%, rgba(255, 255, 255, 0.16), transparent 44%),
    linear-gradient(180deg, #141414, #030303);
}

.brand-media img {
  width: 100%;
  height: 190px;
  padding: 28px 42px;
  object-fit: contain;
  object-position: center;
  background: transparent;
  transform: scale(var(--brand-image-scale, 1));
  transform-origin: center;
}

.brand-media-haval {
  --brand-image-scale: 1.14;
}

.brand-media-tank {
  --brand-image-scale: 1.03;
}

.brand-media-poer {
  --brand-image-scale: 1.07;
}

.brand-media-ora {
  --brand-image-scale: 1.18;
}

.brand-media-wey {
  --brand-image-scale: 0.86;
}

.brand-media-wingle {
  --brand-image-scale: 1.18;
}

.warranty-layout.warranty-simple {
  max-width: 820px;
}

.warranty-download {
  gap: 18px;
  padding: 22px;
}

.warranty-download h3 {
  max-width: 720px;
  font-size: clamp(26px, 2.8vw, 34px);
}

.warranty-row {
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 12px;
}

.warranty-download select,
.warranty-row .button {
  height: 52px;
  min-height: 52px;
}

.warranty-row .button {
  display: inline-grid;
  place-items: center;
  width: 100%;
  padding: 0 18px;
}

.warranty-preview {
  grid-template-columns: 136px minmax(0, 1fr);
  min-height: 124px;
  gap: 16px;
  padding: 16px;
}

.warranty-preview img {
  width: 136px;
  height: 84px;
  border-radius: 6px;
}

.warranty-preview strong {
  font-size: 23px;
}

.contact-section .lead-form {
  align-self: start;
  gap: 14px 18px;
  padding: 24px;
}

.contact-section .lead-form label {
  min-height: 82px;
  align-content: start;
}

.contact-section .lead-form input,
.contact-section .lead-form select {
  height: 52px;
  min-height: 52px;
}

.contact-section .lead-form textarea {
  min-height: 108px;
}

.contact-section .lead-form .file-field {
  grid-column: 1 / -1;
  min-height: auto;
}

.contact-section .lead-form .file-field input {
  height: 100% !important;
  min-height: 0 !important;
}

.contact-section .lead-form .file-field small {
  margin-top: -2px;
}

.file-upload {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 52px;
  padding: 8px 12px;
  background: #f8f8f5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-transform: none;
}

.file-upload input {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload span {
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  padding: 0 13px;
  color: #fff;
  background: var(--ink);
  border-radius: 6px;
  font-weight: 900;
}

.file-upload em {
  overflow: hidden;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-grid {
  gap: 14px;
}

.map-card {
  grid-template-columns: 164px minmax(0, 1fr);
  gap: 16px;
  padding: 14px;
  background: linear-gradient(180deg, #ffffff, #f8f8f5);
  border-color: #d7d7d0;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
}

.mini-map {
  min-height: 116px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(24deg, transparent 42%, rgba(255, 255, 255, 0.92) 43% 49%, transparent 50%),
    linear-gradient(118deg, transparent 35%, rgba(255, 255, 255, 0.9) 36% 42%, transparent 43%),
    linear-gradient(82deg, transparent 58%, rgba(255, 255, 255, 0.74) 59% 64%, transparent 65%),
    linear-gradient(0deg, rgba(5, 199, 201, 0.12) 0 28%, transparent 29%),
    repeating-linear-gradient(90deg, rgba(17, 17, 17, 0.05) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(17, 17, 17, 0.05) 0 1px, transparent 1px 28px),
    #e4eadf;
}

.mini-map::before {
  position: absolute;
  right: 10px;
  bottom: 9px;
  padding: 4px 7px;
  color: rgba(17, 17, 17, 0.58);
  content: "Bakı";
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-map::after {
  position: absolute;
  top: 14px;
  left: 12px;
  width: 46px;
  height: 20px;
  content: "";
  background:
    linear-gradient(90deg, #9bcf92 0 38%, transparent 39% 48%, #f0d37e 49% 72%, transparent 73%),
    linear-gradient(#80b6d9, #80b6d9);
  background-size: 100% 9px, 24px 6px;
  background-position: 0 0, 22px 14px;
  background-repeat: no-repeat;
  opacity: 0.88;
}

.mini-map span {
  top: 46%;
  left: 53%;
  width: 18px;
  height: 18px;
}

.mini-map span::after {
  position: absolute;
  right: -5px;
  bottom: -9px;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--red);
  border-radius: 0 0 10px;
  transform: rotate(45deg);
  z-index: -1;
}

.map-card strong {
  font-size: 19px;
}

.map-apps a {
  background: #fff;
}

.price-switcher {
  padding: 10px;
}

.price-switcher button {
  height: 42px;
}

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

  .icon-button {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header);
    right: 0;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 16px 20px 24px;
    color: var(--ink);
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .site-header.menu-active .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .phone-link,
  .header-actions .button {
    display: none;
  }

  .section-head,
  .feature-stage,
  .contact-section,
  .tour-preview,
  .warranty-layout,
  .corporate-section {
    grid-template-columns: 1fr;
  }

  .model-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .model-grid,
  .brand-grid,
  .tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-band {
    display: grid;
  }

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

  .book-list article {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  :root {
    --header: 64px;
  }

  .site-header {
    min-height: var(--header);
  }

  .brand-location {
    display: none;
  }

  .hero {
    height: max(680px, 100svh);
    min-height: 100svh;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding: 104px 0 44px;
    margin-left: 16px;
  }

  .hero-facts,
  .quick-strip,
  .model-specs,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .quick-strip a,
  .quick-strip button {
    min-height: 58px;
    padding: 0 18px;
  }

  .section {
    padding: 64px 16px;
  }

  .model-grid,
  .brand-grid,
  .news-grid,
  .tool-grid,
  .warranty-cards {
    grid-template-columns: 1fr;
  }

  .model-card {
    min-height: 650px;
  }

  .model-card::before {
    height: 230px;
  }

  .model-card-content {
    padding-top: 270px;
  }

  .feature-stage,
  .service-band,
  .corporate-section {
    padding: 64px 16px;
  }

  .warranty-row,
  .warranty-preview,
  .map-card {
    grid-template-columns: 1fr;
  }

  .warranty-preview img {
    width: 100%;
  }

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

  .toolbar-side {
    display: grid;
    grid-template-columns: 1fr;
  }

  .search-field {
    width: 100%;
  }

  .tool-card {
    min-height: 150px;
  }

  .tour-visual {
    min-height: 320px;
  }
}
