:root {
  --ink: #14212b;
  --muted: #5e6a74;
  --paper: #f6f8fb;
  --panel: #ffffff;
  --line: #dfe6ed;
  --blue: #0877d8;
  --blue-dark: #064c90;
  --orange: #ff6b21;
  --green: #168062;
  --charcoal: #1c2933;
  --shadow: 0 22px 70px rgba(18, 33, 43, 0.16);
  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;
  color: var(--ink);
  background: var(--paper);
}

body.modal-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 54px);
  color: #fff;
  background: linear-gradient(180deg, rgba(10, 18, 24, 0.86), rgba(10, 18, 24, 0.22));
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(17, 29, 38, 0.94);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.top-contact {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-emblem {
  display: grid;
  place-items: center;
  width: 56px;
  height: 42px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  transform: skewX(-9deg);
}

.brand strong,
.brand small {
  display: block;
}

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

.brand small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.9;
}

.nav-links a:hover {
  color: #8ed2ff;
}

.nav-links .nav-b2b-link {
  color: #fff;
  padding: 8px 10px;
  background: rgba(22, 128, 98, 0.88);
  border: 1px solid rgba(141, 212, 183, 0.72);
  border-radius: 6px;
  opacity: 1;
}

.nav-links .nav-b2b-link:hover {
  color: #fff;
  background: #168062;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-menu {
  position: relative;
}

.language-select,
.header-whatsapp,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  color: #fff;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.language-select {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
}

.language-options {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  display: grid;
  min-width: 172px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 30, 44, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(7, 17, 28, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.language-menu.is-open .language-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-options button {
  width: 100%;
  padding: 10px 12px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.language-options button:hover,
.language-options button:focus,
.language-options button.is-active {
  color: var(--blue);
  background: rgba(8, 119, 216, 0.08);
  outline: none;
}

.header-whatsapp {
  background: var(--blue);
}

.header-whatsapp:hover,
.btn-primary:hover {
  background: var(--blue-dark);
}

.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  min-height: 740px;
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 12, 18, 0.62), rgba(6, 12, 18, 0.34) 45%, rgba(6, 12, 18, 0.76)),
    radial-gradient(circle at 58% 48%, rgba(8, 119, 216, 0.2), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(940px, calc(100% - 36px));
  padding-top: 80px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #b7e2ff;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.hero-copy {
  max-width: 660px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.45;
}

.hero-actions,
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: var(--blue);
}

.btn-secondary {
  color: var(--blue);
  background: #eaf4ff;
}

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

.hero-stats {
  margin-top: 32px;
}

.hero-stats span {
  min-width: 150px;
  padding: 15px 18px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.hero-stats strong {
  display: block;
  color: #fff;
  font-size: 24px;
}

.home-page .site-header {
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  row-gap: 18px;
  padding-top: 18px;
  padding-bottom: 18px;
  background: linear-gradient(180deg, rgba(5, 11, 17, 0.78), rgba(5, 11, 17, 0.2) 72%, transparent);
  box-shadow: none;
}

.home-page .site-header.is-scrolled {
  grid-template-rows: auto;
  row-gap: 0;
  background: rgba(17, 29, 38, 0.94);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.home-page .top-contact {
  grid-column: 2 / 4;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  min-height: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
}

.home-page .site-header.is-scrolled .top-contact {
  display: none;
}

.top-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-contact svg {
  width: 17px;
  height: 17px;
}

.home-page .brand {
  grid-column: 1;
  grid-row: 1 / 3;
}

.home-page .site-header.is-scrolled .brand {
  grid-row: 1;
}

.home-page .nav-links,
.home-page .header-tools {
  grid-row: 2;
}

.home-page .site-header.is-scrolled .nav-links,
.home-page .site-header.is-scrolled .header-tools {
  grid-row: 1;
}

.home-page .hero {
  min-height: 720px;
}

.home-page .hero-image {
  object-position: center center;
  transform: scale(1.02);
  filter: saturate(0.94) contrast(1.04);
}

.home-page .hero-overlay {
  background:
    linear-gradient(180deg, rgba(4, 11, 17, 0.58), rgba(4, 11, 17, 0.36) 42%, rgba(4, 11, 17, 0.48)),
    linear-gradient(90deg, rgba(4, 11, 17, 0.55), rgba(4, 11, 17, 0.22) 48%, rgba(4, 11, 17, 0.5));
}

.home-page .hero-content {
  width: min(920px, calc(100% - 36px));
  padding-top: 142px;
}

.home-page .hero .eyebrow {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: none;
}

.home-page .hero h1 {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.12;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.48);
}

.home-page .hero-copy {
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 800;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.42);
}

.home-page .hero-actions .btn {
  min-width: 124px;
  min-height: 44px;
  padding: 0 24px;
}

.home-page .hero-actions .btn-ghost {
  border: 0;
  background: rgba(83, 104, 122, 0.82);
}

.home-page .hero-actions .home-b2b-cta {
  background: rgba(22, 128, 98, 0.92);
}

.home-page .hero-actions .home-b2b-cta:hover {
  background: #168062;
}

.home-page .hero-stats {
  display: none;
}

.category-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1040px, calc(100% - 36px));
  margin: -54px auto 0;
}

.category-card {
  position: relative;
  min-height: 118px;
  overflow: hidden;
  color: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 118px;
  object-fit: cover;
  filter: brightness(0.58);
  transition: transform 0.2s ease;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  font-size: 18px;
  font-weight: 900;
}

.category-card strong,
.category-card small,
.category-card b {
  display: block;
}

.category-card b {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
}

.category-card small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.4;
}

.home-page .category-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 18px;
  width: min(1180px, calc(100% - 36px));
  margin-top: -40px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-page .category-row-label {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.home-page .category-row-label::before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
}

.home-page .category-used-label::before {
  background: #ff8a22;
}

.home-page .category-new-label {
  margin-top: 10px;
}

.home-page .category-new-label::before {
  background: var(--blue);
}

.home-page .category-card {
  min-height: 254px;
  color: #fff;
  background: #0b131b;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 46px rgba(18, 33, 43, 0.18);
  isolation: isolate;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-page .category-card:hover,
.home-page .category-card:focus {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(18, 33, 43, 0.24);
  outline: none;
}

.home-page .category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  opacity: 1;
  filter: brightness(0.92) saturate(1.1) contrast(1.05);
  transform: scale(1.03);
}

.home-page .category-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(90deg, rgba(5, 11, 17, 0.72), rgba(5, 11, 17, 0.24) 58%, rgba(5, 11, 17, 0.08)),
    linear-gradient(180deg, rgba(5, 11, 17, 0.02), rgba(5, 11, 17, 0.5));
  content: "";
}

.home-page .category-card::after,
.home-page .category-card::before {
  pointer-events: none;
}

.home-page .category-card-used {
  border-top: 4px solid #ff8a22;
}

.home-page .category-card-new {
  border-top: 4px solid var(--blue);
}

.home-page .category-card-b2b {
  border-top: 4px solid var(--green);
}

.home-page .category-card-used::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 138, 34, 0.18), transparent 24%),
    linear-gradient(90deg, rgba(5, 11, 17, 0.74), rgba(5, 11, 17, 0.26) 58%, rgba(5, 11, 17, 0.08)),
    linear-gradient(180deg, rgba(5, 11, 17, 0.02), rgba(5, 11, 17, 0.52));
}

.home-page .category-card-new::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(8, 119, 216, 0.2), transparent 24%),
    linear-gradient(90deg, rgba(5, 11, 17, 0.72), rgba(5, 11, 17, 0.24) 58%, rgba(5, 11, 17, 0.08)),
    linear-gradient(180deg, rgba(5, 11, 17, 0.02), rgba(5, 11, 17, 0.5));
}

.home-page .category-card-b2b::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(22, 128, 98, 0.28), transparent 24%),
    linear-gradient(90deg, rgba(5, 11, 17, 0.78), rgba(5, 11, 17, 0.28) 58%, rgba(5, 11, 17, 0.1)),
    linear-gradient(180deg, rgba(5, 11, 17, 0.02), rgba(5, 11, 17, 0.52));
}

.home-page .category-card:nth-child(1) img,
.home-page .category-card:nth-child(5) img {
  object-position: 58% center;
}

.home-page .category-card:nth-child(2) img,
.home-page .category-card:nth-child(6) img {
  object-position: 54% center;
}

.home-page .category-card:nth-child(3) img,
.home-page .category-card:nth-child(7) img {
  object-position: 52% center;
}

.home-page .category-card:nth-child(4) img,
.home-page .category-card:nth-child(8) img {
  object-position: center center;
}

.home-page .category-card span {
  z-index: 2;
  top: 30px;
  right: 26px;
  left: 26px;
  bottom: auto;
  max-width: calc(100% - 52px);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.home-page .category-card b {
  display: inline-flex;
  width: max-content;
  padding: 5px 8px;
  margin-bottom: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 5px;
  backdrop-filter: blur(8px);
  font-size: 12px;
  letter-spacing: 0;
}

.home-page .category-card-used b {
  border-color: rgba(255, 160, 72, 0.92);
  box-shadow: 0 8px 18px rgba(255, 138, 34, 0.14);
}

.home-page .category-card-new b {
  border-color: rgba(64, 161, 255, 0.94);
  box-shadow: 0 8px 18px rgba(8, 119, 216, 0.14);
}

.home-page .category-card-b2b b {
  border-color: rgba(141, 212, 183, 0.94);
  box-shadow: 0 8px 18px rgba(22, 128, 98, 0.18);
}

.home-page .category-card strong {
  color: #fff;
  max-width: 280px;
  font-size: 23px;
  line-height: 1.16;
}

.home-page .category-card small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  max-width: 252px;
}

.home-page .category-card::after {
  position: absolute;
  left: 26px;
  bottom: 24px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 108px;
  height: 42px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  content: attr(data-cta);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.home-page .category-card-used::after {
  border-color: rgba(255, 160, 72, 0.92);
  box-shadow: 0 10px 24px rgba(255, 138, 34, 0.16);
}

.home-page .category-card-new::after {
  border-color: rgba(64, 161, 255, 0.94);
  box-shadow: 0 10px 24px rgba(8, 119, 216, 0.16);
}

.home-page .category-card-b2b::after {
  border-color: rgba(141, 212, 183, 0.94);
  box-shadow: 0 10px 24px rgba(22, 128, 98, 0.18);
}

.section,
.brand-band,
.proof-section,
.contact-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0;
}

.intro-grid,
.route-section,
.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 44px;
  align-items: start;
}

.section-copy p,
.proof-copy p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.7;
}

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

.service-card,
.model-card,
.timeline article,
.proof-grid article,
.quote-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(18, 33, 43, 0.07);
}

.service-card {
  padding: 24px;
}

.service-card svg,
.contact-methods svg {
  color: var(--blue);
}

.service-card p,
.model-card p,
.timeline p,
.proof-grid span {
  color: var(--muted);
  line-height: 1.6;
}

.browse-section {
  padding-top: 78px;
}

.export-window-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.export-window-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  color: #fff;
  background: #10202c;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.export-window-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.export-window-card:hover img {
  transform: scale(1.05);
}

.export-window-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 15, 20, 0.12), rgba(8, 15, 20, 0.82));
}

.export-window-copy {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 12px;
  padding: 26px;
}

.export-window-copy strong {
  font-size: 25px;
  line-height: 1.05;
}

.export-window-copy small {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.export-window-models {
  display: grid;
  gap: 7px;
  padding-top: 8px;
}

.export-window-models b,
.model-list-title,
.export-window-copy em {
  font-size: 12px;
  font-style: normal;
}

.model-list-title {
  color: #8ed2ff;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.export-window-models b {
  color: rgba(255, 255, 255, 0.9);
}

.export-window-copy em {
  justify-self: start;
  padding: 8px 10px;
  color: #fff;
  background: var(--blue);
  border-radius: 5px;
  font-weight: 900;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 900;
}

.filter-panel {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 12px;
  padding: 16px;
  margin-bottom: 22px;
  background: #eaf2f8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cdd8e2;
  border-radius: 6px;
  outline: none;
}

textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(8, 119, 216, 0.12);
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.model-card {
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.model-card:hover,
.model-card:focus {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(18, 33, 43, 0.14);
  outline: none;
}

.model-media {
  position: relative;
  height: 210px;
  background: #dce4eb;
}

.model-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(8, 119, 216, 0.94);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 900;
}

.model-body {
  padding: 20px;
}

.model-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.model-meta span {
  padding: 6px 8px;
  color: #3c4b57;
  background: #edf3f7;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 800;
}

.model-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 15px;
  margin-top: 14px;
  border-top: 1px solid var(--line);
}

.model-price strong {
  font-size: 22px;
}

.model-price button {
  min-height: 40px;
  padding: 0 14px;
}

.model-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.model-actions .btn {
  min-height: 40px;
  padding: 0 13px;
}

.vehicle-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  padding: 22px;
}

.vehicle-modal.is-open {
  display: grid;
  place-items: center;
}

.vehicle-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 18, 0.72);
  backdrop-filter: blur(8px);
}

.vehicle-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1160px, 100%);
  max-height: min(940px, calc(100svh - 28px));
  overflow: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.vehicle-modal-close {
  position: sticky;
  top: 14px;
  float: right;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 14px 14px -56px 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(18, 33, 43, 0.12);
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 0;
}

.detail-gallery {
  padding: 22px;
  background: #101b24;
}

.detail-main-image {
  width: 100%;
  height: min(500px, 52svh);
  object-fit: cover;
  background: #24313b;
  border-radius: 8px;
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.detail-thumbs button {
  overflow: hidden;
  padding: 0;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 6px;
}

.detail-thumbs button.active {
  border-color: var(--blue);
}

.detail-thumbs img {
  width: 100%;
  height: 82px;
  object-fit: cover;
}

.detail-copy {
  padding: 32px;
}

.detail-status {
  display: inline-block;
  padding: 7px 10px;
  color: #fff;
  background: var(--green);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 900;
}

.detail-copy h2 {
  margin-top: 14px;
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 46px);
}

.detail-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.detail-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}

.detail-specs span {
  display: grid;
  gap: 4px;
  padding: 13px;
  background: #eef4f8;
  border-radius: 6px;
  color: var(--ink);
  font-weight: 900;
}

.detail-specs strong {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.detail-proof,
.detail-costs {
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.detail-proof h3,
.detail-costs h3 {
  margin-bottom: 8px;
}

.detail-costs {
  display: grid;
  gap: 9px;
}

.detail-costs div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

.detail-costs div strong {
  color: var(--ink);
}

.detail-costs .detail-total {
  padding-top: 12px;
  margin-top: 4px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  font-size: 18px;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.featured-stock {
  padding-top: 36px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.featured-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(18, 33, 43, 0.07);
}

.featured-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.featured-card > div {
  padding: 20px;
}

.featured-card span {
  display: inline-block;
  padding: 6px 8px;
  margin-bottom: 12px;
  color: #fff;
  background: var(--green);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 900;
}

.featured-card p {
  color: var(--muted);
  line-height: 1.6;
}

.featured-card dl {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
}

.featured-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.featured-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.featured-card dd {
  margin: 0;
  font-weight: 900;
}

.jetour-showcase {
  display: grid;
  grid-template-columns: 0.82fr 1.3fr;
  gap: 28px;
  align-items: stretch;
  padding: 34px;
  margin-top: 24px;
  color: #fff;
  background: linear-gradient(135deg, #16232d, #0f5487);
  border-radius: 8px;
}

.jetour-showcase .eyebrow {
  color: #b7e2ff;
}

.jetour-copy p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.jetour-copy ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.jetour-copy li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
}

.jetour-copy svg {
  color: #8ed2ff;
}

.jetour-copy span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.jetour-copy strong {
  display: block;
  color: #fff;
}

.jetour-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.jetour-gallery figure {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.jetour-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.jetour-gallery figcaption {
  padding: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
}

.brand-band {
  width: 100%;
  padding-left: max(18px, calc((100% - 1180px) / 2));
  padding-right: max(18px, calc((100% - 1180px) / 2));
  background: #111d26;
  color: #fff;
}

.brand-band .eyebrow {
  color: #8ed2ff;
}

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

.brand-pill {
  display: grid;
  place-items: center;
  min-height: 82px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  font-weight: 900;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  display: grid;
  grid-template-columns: 72px 1fr;
  column-gap: 18px;
  padding: 22px;
}

.timeline span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #fff;
  background: var(--orange);
  border-radius: 8px;
  font-weight: 900;
}

.proof-section {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr;
  gap: 34px;
  padding: 70px 36px;
  color: #fff;
  background: linear-gradient(135deg, #122431, #0d4e82);
  border-radius: 8px;
}

.proof-section .eyebrow {
  color: #b7e2ff;
}

.proof-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.proof-evidence {
  display: grid;
  gap: 14px;
  min-width: 0;
}

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

.proof-grid article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
}

.proof-route-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.proof-route-strip span {
  min-width: 0;
  padding: 16px 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.45;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-route-strip span:last-child {
  border-right: 0;
}

.proof-route-strip b {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.proof-bottom-line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  padding: 16px 18px;
  color: #fff;
  background: rgba(255, 107, 33, 0.18);
  border: 1px solid rgba(255, 180, 124, 0.32);
  border-radius: 8px;
}

.proof-bottom-line span {
  color: rgba(255, 255, 255, 0.78);
}

.contact-section {
  align-items: stretch;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-methods a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

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

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

.floating-actions {
  position: fixed;
  right: 14px;
  top: 37%;
  z-index: 20;
  display: grid;
  gap: 10px;
}

.floating-actions a {
  display: grid;
  place-items: center;
  width: 64px;
  min-height: 64px;
  color: var(--blue);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  font-size: 11px;
  font-weight: 800;
}

.floating-actions svg {
  width: 24px;
  height: 24px;
}

.mobile-dock {
  display: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 54px);
  color: rgba(255, 255, 255, 0.74);
  background: var(--charcoal);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong,
.site-footer a {
  color: #fff;
}

.list-page {
  background: #fff;
}

.list-main {
  padding-top: 70px;
}

.list-banner {
  height: 128px;
  overflow: hidden;
  background: #111d26;
}

.list-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.74);
}

.list-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 78px;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  color: #9aa6af;
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  color: #7e8b96;
}

.brand-page {
  background: #fff;
}

.brand-main {
  padding-top: 70px;
}

.brand-hero {
  height: 214px;
  overflow: hidden;
  background: #111d26;
}

.brand-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.62) saturate(0.86);
}

.brand-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 32px 0 92px;
}

.brand-title {
  max-width: 620px;
  margin: 22px auto 42px;
  text-align: center;
}

.brand-title h1 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
}

.brand-title p:last-child {
  color: var(--muted);
  font-weight: 700;
}

.brand-page-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}

.brand-card {
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  min-height: 174px;
  padding: 24px 16px 22px;
  color: var(--ink);
  background: #f7f7f7;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.brand-card:hover,
.brand-card:focus {
  transform: translateY(-3px);
  background: #fff;
  border-color: #cfe2f2;
  box-shadow: 0 18px 48px rgba(18, 33, 43, 0.12);
  outline: none;
}

.brand-logo-text {
  display: grid;
  place-items: center;
  min-height: 74px;
  color: #17242e;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 950;
  letter-spacing: 0.04em;
}

.brand-card:nth-child(1) .brand-logo-text,
.brand-card:nth-child(12) .brand-logo-text {
  color: #0d58a6;
}

.brand-card:nth-child(2) .brand-logo-text,
.brand-card:nth-child(10) .brand-logo-text,
.brand-card:nth-child(11) .brand-logo-text {
  color: #d71920;
}

.brand-card:nth-child(7) .brand-logo-text,
.brand-card:nth-child(8) .brand-logo-text {
  color: #54636f;
}

.brand-card strong {
  color: #8a959e;
  font-size: 15px;
  font-weight: 900;
}

.info-page {
  background: #fff;
}

.info-main {
  padding-top: 70px;
}

.info-hero {
  height: 214px;
  overflow: hidden;
  background: #111d26;
}

.info-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.62) saturate(0.86);
}

.info-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 32px 0 92px;
}

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

.info-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 210px;
  padding: 26px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(18, 33, 43, 0.07);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.info-card:hover,
.info-card:focus {
  transform: translateY(-3px);
  border-color: #cfe2f2;
  box-shadow: 0 18px 48px rgba(18, 33, 43, 0.13);
  outline: none;
}

.info-card svg {
  width: 34px;
  height: 34px;
  color: var(--blue);
}

.info-card strong {
  font-size: 20px;
  line-height: 1.2;
}

.info-card span,
.info-card p {
  color: var(--muted);
  line-height: 1.6;
}

.info-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.info-process li {
  display: grid;
  gap: 10px;
  min-height: 220px;
  padding: 24px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
}

.info-process li:nth-child(even) {
  background: #50677a;
}

.info-process strong {
  font-size: 28px;
}

.info-process span {
  font-size: 18px;
  font-weight: 900;
}

.info-process p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.list-searchbar {
  display: grid;
  grid-template-columns: 1fr 64px;
  width: min(420px, calc(100% - 92px));
  margin-left: auto;
  margin-right: 92px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.list-searchbar input {
  border: 0;
  border-radius: 0;
}

.list-searchbar button {
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border: 0;
}

.list-filter-box {
  display: grid;
  gap: 18px;
  padding: 28px;
  margin-bottom: 34px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(18, 33, 43, 0.05);
}

.list-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  color: #42515c;
  font-size: 14px;
}

.list-filter-row > span {
  width: 64px;
  color: #687682;
  font-weight: 900;
}

.list-filter-row button {
  min-height: 32px;
  padding: 0 12px;
  color: #2e3d49;
  background: transparent;
  border: 0;
  border-radius: 5px;
  font-weight: 800;
}

.list-filter-row button.active,
.list-filter-row button:hover {
  color: #fff;
  background: var(--blue);
}

.list-hidden-selects {
  display: none;
}

.list-results h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.list-model-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.list-model-grid .model-media {
  height: 174px;
}

.list-model-grid .model-body {
  padding: 16px;
}

.list-model-grid h3 {
  font-size: 17px;
  line-height: 1.25;
}

.list-model-grid .model-meta {
  gap: 6px;
}

.list-model-grid .model-price {
  align-items: stretch;
}

.list-model-grid .model-price strong {
  font-size: 20px;
}

.detail-page {
  background: #eef2f5;
}

.detail-main {
  padding-top: 70px;
}

.vehicle-detail-hero,
.inspection-strip,
.detail-section,
.buying-process,
.quote-ribbon {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.vehicle-detail-hero {
  padding: 42px 0 56px;
}

.detail-page-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
}

.detail-page-gallery,
.detail-summary-card {
  padding: 16px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(18, 33, 43, 0.08);
}

.detail-page-main {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 6px;
}

.detail-page-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.detail-page-thumbs button {
  overflow: hidden;
  padding: 0;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 5px;
}

.detail-page-thumbs button.active {
  border-color: var(--blue);
}

.detail-page-thumbs img {
  width: 100%;
  height: 72px;
  object-fit: cover;
}

.detail-summary-card {
  padding: 28px;
}

.detail-summary-card h1 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.25;
}

.detail-page-price {
  display: block;
  margin-bottom: 18px;
  color: #e43a2e;
  font-size: 28px;
}

.mini-spec-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.mini-spec-table div {
  display: grid;
  gap: 4px;
  min-height: 88px;
  padding: 14px;
  background: #f6f8fa;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mini-spec-table span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.mini-spec-table strong {
  font-size: 14px;
}

.detail-summary-card p {
  color: var(--muted);
  text-align: center;
}

.detail-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  margin: 18px 0 14px;
  color: #fff;
  background: #07b83e;
  border-radius: 6px;
  font-weight: 900;
}

.detail-socials {
  display: flex;
  gap: 12px;
}

.detail-socials a,
.social-contact-links a {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #fff;
  background: var(--blue);
  border-radius: 12px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(16, 31, 43, 0.14);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.social-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.social-chip.facebook {
  background: #1877f2;
}

.social-chip.whatsapp {
  background: #08b43f;
}

.social-chip.youtube {
  background: #ff0000;
}

.social-chip.tiktok {
  background: #050505;
}

.social-chip svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  stroke: none;
}

.social-chip.youtube svg {
  width: 30px;
  height: 30px;
}

.social-chip.tiktok {
  font-size: 23px;
  letter-spacing: -1px;
}

.social-contact-links a:hover,
.detail-socials a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(16, 31, 43, 0.2);
}

.inspection-strip {
  padding: 42px 0;
}

.inspection-strip h2,
.detail-section h2,
.buying-process h2 {
  font-size: 30px;
  margin-bottom: 18px;
}

.inspection-strip p {
  color: var(--muted);
}

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

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

.inspection-cards svg {
  color: #07b83e;
}

.inspection-cards span {
  color: var(--muted);
  font-size: 13px;
}

.detail-section {
  padding: 44px 0;
}

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

.detail-image-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.buying-process {
  padding: 48px 0;
}

.buying-process ol {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.buying-process li {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 112px;
  padding: 14px;
  color: #fff;
  text-align: center;
  background: var(--blue);
}

.buying-process li:nth-child(even) {
  background: #50677a;
}

.buying-process span {
  font-size: 12px;
}

.quote-ribbon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  width: 100%;
  padding: 28px max(18px, calc((100% - 1180px) / 2));
  color: #fff;
  background:
    linear-gradient(90deg, var(--blue), rgba(8, 119, 216, 0.84)),
    url("/assets/hero-uzbekistan-cars.png") right center / auto 100% no-repeat;
}

.quote-ribbon h2,
.quote-ribbon p {
  margin: 0;
}

.quote-ribbon a {
  display: grid;
  place-items: center;
  width: 110px;
  height: 110px;
  color: #fff;
  background: #f39c12;
  border-radius: 50%;
  font-weight: 900;
}

.full-spec-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #fff;
  border: 1px solid var(--line);
}

.full-spec-table div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.full-spec-table div:nth-child(4n + 1),
.full-spec-table div:nth-child(4n + 2) {
  background: #f7f7f7;
}

.full-spec-table span {
  color: var(--muted);
  font-weight: 800;
}

.feature-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-cloud span {
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

.faq-section details {
  padding: 18px 20px;
  margin-bottom: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-section summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-section p {
  color: var(--muted);
  line-height: 1.7;
}

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

.related-grid a {
  display: grid;
  gap: 8px;
  padding-bottom: 14px;
  background: #fff;
  border: 1px solid var(--line);
}

.related-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.related-grid strong,
.related-grid span {
  padding: 0 12px;
}

.related-grid span {
  color: #e43a2e;
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .home-page .site-header,
  .home-page .site-header.is-scrolled {
    grid-template-columns: auto auto;
    grid-template-rows: auto;
    background: rgba(17, 29, 38, 0.94);
  }

  .home-page .top-contact {
    display: none;
  }

  .home-page .brand {
    grid-row: 1;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-links,
  .header-tools {
    display: none;
  }

  .nav-links.is-open {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open a {
    padding: 14px;
  }

  .hero {
    min-height: 560px;
  }

  .home-page .hero {
    min-height: 620px;
  }

  .home-page .hero-content {
    padding-top: 84px;
  }

  .home-page .category-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -28px;
  }

  .intro-grid,
  .route-section,
  .proof-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .proof-route-strip span:nth-child(2) {
    border-right: 0;
  }

  .proof-route-strip span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .filter-panel,
  .model-grid,
  .export-window-grid,
  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jetour-showcase {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .contact-page-grid {
    grid-template-columns: 1fr;
  }

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

  .detail-page-grid,
  .full-spec-table {
    grid-template-columns: 1fr;
  }

  .inspection-cards,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .buying-process ol {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 74px;
  }

  .site-header {
    padding: 12px;
    background: rgba(17, 29, 38, 0.96);
  }

  .home-page .site-header {
    padding: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-emblem {
    width: 48px;
    height: 36px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 500px;
    place-items: end center;
    padding-bottom: 48px;
  }

  .home-page .hero {
    min-height: 540px;
  }

  .hero-content {
    padding-top: 78px;
  }

  .home-page .hero-content {
    padding-top: 78px;
  }

  .home-page .hero .eyebrow {
    font-size: 12px;
  }

  .home-page .hero h1 {
    font-size: 32px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 29px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-stats {
    display: none;
  }

  .category-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: -22px;
  }

  .home-page .category-strip {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .category-card,
  .category-card img {
    min-height: 78px;
  }

  .home-page .category-card,
  .home-page .category-card img {
    min-height: 214px;
  }

  .home-page .category-card span {
    top: 22px;
    right: 20px;
    left: 20px;
    max-width: calc(100% - 40px);
  }

  .home-page .category-card strong {
    max-width: 260px;
    font-size: 21px;
    line-height: 1.16;
  }

  .home-page .category-card small {
    max-width: 240px;
    font-size: 12px;
  }

  .home-page .category-card::after {
    left: 20px;
    bottom: 18px;
    width: 92px;
    height: 38px;
  }

  .category-card span {
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 13px;
  }

  .section,
  .brand-band,
  .proof-section,
  .contact-section {
    width: min(100% - 24px, 1180px);
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .service-grid,
  .filter-panel,
  .model-grid,
  .export-window-grid,
  .featured-grid,
  .proof-grid,
  .proof-route-strip,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .proof-route-strip span,
  .proof-route-strip span:nth-child(2) {
    border-right: 0;
  }

  .proof-route-strip span:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .proof-bottom-line {
    grid-template-columns: 1fr;
  }

  .export-window-card,
  .export-window-card img {
    min-height: 330px;
  }

  .export-window-copy {
    padding: 20px;
  }

  .section-head {
    display: block;
  }

  .model-media {
    height: 190px;
  }

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

  .brand-main {
    padding-top: 66px;
  }

  .info-main {
    padding-top: 66px;
  }

  .brand-hero,
  .info-hero {
    height: 132px;
  }

  .brand-shell,
  .info-shell {
    width: calc(100% - 24px);
    padding-top: 20px;
  }

  .brand-title {
    margin-bottom: 26px;
  }

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

  .info-card-grid,
  .info-process {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .info-card,
  .info-process li {
    min-height: 0;
    padding: 20px;
  }

  .brand-card {
    min-height: 138px;
    padding: 18px 12px;
  }

  .brand-logo-text {
    min-height: 58px;
    font-size: 22px;
  }

  .jetour-showcase {
    padding: 22px;
  }

  .jetour-gallery {
    grid-template-columns: 1fr;
  }

  .jetour-gallery img {
    height: 220px;
  }

  .timeline article {
    grid-template-columns: 58px 1fr;
    padding: 18px;
  }

  .timeline span {
    width: 46px;
    height: 46px;
  }

  .proof-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .floating-actions {
    right: 8px;
    top: auto;
    bottom: 88px;
  }

  .home-page .floating-actions {
    display: none;
  }

  .floating-actions a {
    width: 52px;
    min-height: 52px;
  }

  .floating-actions span {
    display: none;
  }

  .mobile-dock {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 28;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    color: #fff;
    background: rgba(28, 41, 51, 0.96);
    backdrop-filter: blur(14px);
  }

  .mobile-dock a {
    display: grid;
    place-items: center;
    gap: 4px;
    min-height: 66px;
    font-size: 12px;
    font-weight: 800;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .site-footer {
    display: block;
  }

  .list-main {
    padding-top: 66px;
  }

  .list-banner {
    height: 104px;
  }

  .list-shell {
    width: calc(100% - 24px);
    padding-top: 20px;
  }

  .list-searchbar {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .list-filter-box {
    padding: 18px;
  }

  .list-filter-row > span {
    width: 100%;
  }

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

  .model-price {
    display: grid;
  }

  .model-actions {
    justify-content: stretch;
  }

  .model-actions .btn {
    flex: 1;
  }

  .vehicle-modal {
    padding: 10px;
  }

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

  .detail-gallery {
    padding: 14px;
  }

  .detail-main-image {
    height: 300px;
  }

  .detail-copy {
    padding: 22px;
  }

  .detail-specs {
    grid-template-columns: 1fr;
  }

  .detail-thumbs img {
    height: 62px;
  }

  .detail-main {
    padding-top: 66px;
  }

  .vehicle-detail-hero,
  .inspection-strip,
  .detail-section,
  .buying-process {
    width: calc(100% - 24px);
  }

  .detail-page-main {
    height: 300px;
  }

  .detail-summary-card {
    padding: 20px;
  }

  .mini-spec-table,
  .detail-image-grid,
  .inspection-cards,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .detail-image-grid img {
    height: 230px;
  }

  .buying-process ol {
    grid-template-columns: 1fr;
  }

  .quote-ribbon {
    display: grid;
  }
}

.b2b-page {
  color: var(--ink);
  background: #f4f7f6;
}

.b2b-page .site-header.is-scrolled {
  background: rgba(17, 29, 38, 0.96);
}

.b2b-main {
  padding: 92px 0 72px;
}

.b2b-hero,
.b2b-section,
.b2b-final {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 22px;
}

.b2b-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.62fr);
  gap: 22px;
  align-items: stretch;
}

.b2b-hero-copy,
.b2b-section,
.b2b-final {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(18, 33, 43, 0.07);
}

.b2b-hero-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  min-width: 0;
  padding: clamp(28px, 5vw, 58px);
}

.b2b-hero-copy h1,
.b2b-section-head h2,
.b2b-final h2 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
}

.b2b-hero-copy h1 {
  max-width: 20ch;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.08;
}

.b2b-hero-copy p,
.b2b-section-head p,
.b2b-final p,
.b2b-identity-body p,
.b2b-vehicle-card p,
.b2b-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.b2b-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.b2b-page .btn-primary,
.b2b-page .header-whatsapp {
  background: var(--green);
}

.b2b-page .btn-primary:hover,
.b2b-page .header-whatsapp:hover {
  background: #0f674e;
}

.b2b-secondary {
  color: var(--ink);
  background: #eef4f2;
}

.b2b-trust-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.b2b-trust-points span,
.b2b-proof-placeholder,
.b2b-fit-grid span,
.b2b-flow-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfa;
}

.b2b-trust-points span {
  padding: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.b2b-trust-points b,
.b2b-route-strip b {
  display: block;
  color: var(--ink);
}

.b2b-identity-panel {
  display: grid;
  align-content: stretch;
  min-width: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(18, 33, 43, 0.07);
}

.b2b-identity-body {
  display: grid;
  gap: 16px;
  padding: 24px;
  color: var(--ink);
}

.b2b-card-kicker {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.b2b-identity-body h2,
.b2b-vehicle-card h3,
.b2b-note h2 {
  margin: 0;
}

.b2b-note h2 {
  line-height: 1.14;
}

.b2b-identity-body dl,
.b2b-vehicle-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.b2b-identity-body dl div,
.b2b-vehicle-card dl div {
  display: grid;
  grid-template-columns: minmax(104px, 0.48fr) minmax(0, 1fr);
  gap: 8px;
}

.b2b-identity-body dt,
.b2b-identity-body dd,
.b2b-vehicle-card dt,
.b2b-vehicle-card dd {
  margin: 0;
}

.b2b-identity-body dt {
  color: var(--muted);
}

.b2b-identity-body dd {
  color: var(--ink);
  font-weight: 800;
}

.b2b-identity-body p {
  color: var(--muted);
  font-size: 13px;
}

.b2b-verification-list {
  display: grid;
  gap: 8px;
}

.b2b-verification-list span {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  padding: 10px 12px;
  color: var(--muted);
  background: #f8fbfa;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.45;
}

.b2b-verification-list svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.b2b-section,
.b2b-final {
  padding: clamp(24px, 4vw, 42px);
}

.b2b-section-head {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 22px;
}

.b2b-section-head h2,
.b2b-final h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.14;
}

.b2b-proof-grid,
.b2b-fit-grid,
.b2b-flow-grid,
.b2b-proof-state {
  display: grid;
  gap: 14px;
}

.b2b-proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.b2b-proof-grid article,
.b2b-vehicle-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.b2b-proof-grid svg,
.b2b-fit-grid svg,
.b2b-proof-placeholder svg,
.b2b-note svg {
  width: 22px;
  height: 22px;
  color: var(--green);
}

.b2b-proof-grid span,
.b2b-fit-grid span,
.b2b-flow-grid p,
.b2b-proof-placeholder span {
  color: var(--muted);
  line-height: 1.6;
}

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

.b2b-vehicle-card h3 {
  color: var(--ink);
  font-size: 26px;
}

.b2b-vehicle-card dt {
  color: var(--muted);
  font-size: 13px;
}

.b2b-vehicle-card dd {
  font-weight: 900;
}

.b2b-vehicle-card p {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.b2b-vehicle-card p strong {
  color: var(--ink);
}

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

.b2b-fit-grid span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  font-weight: 850;
}

.b2b-flow-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.b2b-flow-grid article {
  padding: 18px;
}

.b2b-flow-grid article span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  font-weight: 900;
}

.b2b-flow-grid strong {
  display: block;
  margin-bottom: 8px;
}

.b2b-note {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 16px;
  border-color: rgba(255, 107, 33, 0.32);
  background: #fff8f3;
}

.b2b-note .eyebrow {
  color: #ad531e;
}

.b2b-proof-state {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.b2b-proof-placeholder {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.b2b-proof-placeholder strong {
  color: var(--ink);
}

.b2b-final {
  display: grid;
  justify-items: start;
  gap: 14px;
  color: #fff;
  background: linear-gradient(135deg, #122431, #168062);
}

.b2b-final h2,
.b2b-final p {
  color: #fff;
}

@media (max-width: 980px) {
  .b2b-hero,
  .b2b-proof-grid,
  .b2b-vehicle-grid,
  .b2b-flow-grid {
    grid-template-columns: 1fr;
  }

  .b2b-trust-points,
  .b2b-fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .b2b-main {
    padding-top: 78px;
  }

  .b2b-hero,
  .b2b-section,
  .b2b-final {
    width: calc(100% - 24px);
  }

  .b2b-hero-copy,
  .b2b-section,
  .b2b-final {
    padding: 22px;
  }

  .b2b-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(28px, 9vw, 36px);
  }

  .b2b-actions,
  .b2b-actions .btn,
  .b2b-page .header-whatsapp {
    width: 100%;
  }

  .b2b-trust-points,
  .b2b-fit-grid,
  .b2b-proof-state,
  .b2b-identity-body dl div,
  .b2b-vehicle-card dl div,
  .b2b-note {
    grid-template-columns: 1fr;
  }
}
