:root {
  --ink: #142033;
  --muted: #667386;
  --line: #d8e0ea;
  --paper: #ffffff;
  --soft: #f3f6fa;
  --navy: #071225;
  --navy-2: #10213f;
  --blue: #123b73;
  --gold: #c99b49;
  --red: #b61f2e;
  --green: #178f55;
  --shadow: 0 22px 55px rgba(7, 18, 38, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body[dir="rtl"] {
  direction: rtl;
}

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

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

.topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 9px clamp(18px, 4vw, 58px);
  color: #dce6f3;
  background: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.topbar a {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(270px, 1fr) auto auto;
  gap: 22px;
  align-items: center;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

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

.brand strong {
  color: var(--navy);
  font-size: 17px;
  line-height: 1.1;
}

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

.main-nav,
.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.main-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  padding: 8px 2px;
}

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

.language-select {
  min-width: 154px;
  height: 42px;
  padding: 0 10px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.quote-button,
.primary-button,
.secondary-button,
.finder-form button,
.inquiry-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
}

.quote-button,
.primary-button,
.finder-form button,
.inquiry-form button {
  color: #fff;
  background: var(--red);
}

.quote-button,
.primary-button,
.secondary-button {
  padding: 0 18px;
}

.secondary-button {
  color: #fff;
  background: var(--green);
}

.hero {
  position: relative;
  min-height: min(780px, calc(100vh - 76px));
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(54px, 8vw, 100px) clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--navy);
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 13, 29, 0.94), rgba(7, 18, 38, 0.72) 38%, rgba(7, 18, 38, 0.22) 74%),
    linear-gradient(180deg, rgba(5, 13, 29, 0.08), rgba(5, 13, 29, 0.5));
}

body[dir="rtl"] .hero::after {
  background:
    linear-gradient(270deg, rgba(5, 13, 29, 0.94), rgba(7, 18, 38, 0.72) 38%, rgba(7, 18, 38, 0.22) 74%),
    linear-gradient(180deg, rgba(5, 13, 29, 0.08), rgba(5, 13, 29, 0.5));
}

.hero-panel {
  position: relative;
  z-index: 2;
  max-width: 770px;
}

.eyebrow,
.section-kicker {
  display: block;
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.36);
}

.hero p {
  max-width: 660px;
  margin: 24px 0 28px;
  color: #dce6f3;
  font-size: 18px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-tags span {
  padding: 9px 12px;
  color: #eef5ff;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
}

.quick-rfq {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: center;
  padding: 32px clamp(18px, 5vw, 72px);
  color: #fff;
  background: linear-gradient(145deg, var(--navy-2), var(--blue));
}

.quick-rfq h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
}

.finder-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px 140px;
  gap: 10px;
}

.finder-form input,
.finder-form select,
.finder-form button {
  min-height: 50px;
  padding: 0 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font: inherit;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.metrics div {
  min-height: 138px;
  padding: 28px clamp(18px, 4vw, 48px);
  background: #fff;
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  color: var(--navy);
  font-size: 34px;
  line-height: 1;
}

.metrics span {
  margin-top: 10px;
  color: var(--muted);
}

.section {
  padding: clamp(58px, 8vw, 98px) clamp(18px, 5vw, 72px);
}

.section-heading,
.warehouse-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.section-heading h2,
.warehouse-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
}

.section-heading p,
.warehouse-copy p,
.contact-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.models-section,
.support-section {
  background: #fff;
}

.product-section,
.news-section,
.contact-section {
  background: var(--soft);
}

.model-grid,
.product-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

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

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

.model-grid article,
.product-card,
.news-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(7, 18, 38, 0.08);
}

.product-card {
  display: flex;
  flex-direction: column;
}

.model-grid img {
  width: 100%;
  aspect-ratio: 1.36 / 1;
  object-fit: cover;
}

.product-image {
  display: grid;
  place-items: center;
  margin: 0;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(238, 243, 249, 0.9)),
    #f5f7fa;
  border-bottom: 1px solid var(--line);
  aspect-ratio: 1.28 / 1;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(7, 18, 38, 0.16));
}

.model-grid h3,
.model-grid p,
.product-card > div,
.news-grid article {
  margin: 0;
  padding: 18px;
}

.product-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.model-grid h3,
.product-card h3,
.news-grid h3,
.process-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.2;
}

.model-grid p,
.product-card p,
.process-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

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

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

.category-grid a {
  min-height: 94px;
  display: flex;
  align-items: end;
  padding: 18px;
  color: #fff;
  font-weight: 900;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--navy), var(--blue));
}

.category-grid a:nth-child(even) {
  background: linear-gradient(145deg, #2d3749, #7a8798);
}

.product-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(420px, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 24px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(7, 18, 38, 0.07);
}

.product-search input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.product-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.product-filter button {
  min-height: 36px;
  padding: 0 12px;
  color: var(--blue);
  background: #edf3fa;
  border: 1px solid #d8e4f2;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

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

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  padding: 0;
}

.product-meta span {
  padding: 5px 8px;
  color: var(--blue);
  background: #edf3fa;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
}

.product-empty {
  grid-column: 1 / -1;
  padding: 24px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  font-weight: 900;
}

.product-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: auto;
  padding: 0 13px;
  color: #fff;
  background: var(--green);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 900;
}

.product-meta + .product-whatsapp {
  margin-top: 14px;
}

.warehouse-section {
  background: #fff;
}

.warehouse-section img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.service-list span {
  padding: 12px 14px;
  color: var(--navy);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
}

.process-section {
  color: #fff;
  background: var(--navy);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 26px;
  background: rgba(255, 255, 255, 0.18);
}

.process-grid article {
  min-height: 210px;
  padding: 26px;
  background: var(--navy);
}

.process-grid strong {
  color: var(--gold);
}

.process-grid h3 {
  margin-top: 34px;
  color: #fff;
}

.process-grid p {
  color: #cfd8e9;
}

.news-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.faq-section {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.faq-list details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.faq-list summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 10px 0 0;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.contact-list div {
  display: grid;
  gap: 4px;
}

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

.contact-list dd {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.inquiry-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 28px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form button {
  min-height: 50px;
  font-size: 15px;
}

.rfq-note {
  margin: 0;
  padding: 12px 14px;
  color: #176246;
  background: #e7f6ee;
  border: 1px solid #b8e3cb;
  border-radius: var(--radius);
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 900;
}

.whatsapp-float::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 9px;
  background: #fff;
  border-radius: 50%;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: #d9e4f1;
  background: var(--navy);
}

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

.site-footer p {
  margin: 8px 0 0;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

@media (max-width: 1180px) {
  .site-header,
  .quick-rfq,
  .section-heading,
  .warehouse-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .main-nav {
    flex-wrap: wrap;
  }

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

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

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

  .product-filter {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .topbar {
    gap: 8px;
    padding: 8px 12px;
    font-size: 12px;
    text-align: center;
  }

  .site-header {
    position: static;
    gap: 14px;
    min-height: 0;
    padding: 14px;
  }

  .brand {
    align-items: flex-start;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

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

  .brand small {
    font-size: 11px;
    line-height: 1.25;
  }

  .main-nav,
  .header-actions,
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 6px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 12px;
  }

  .language-select,
  .quote-button,
  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero {
    min-height: 560px;
    padding: 48px 16px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.05;
  }

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

  .quick-rfq,
  .section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .finder-form {
    gap: 8px;
  }

  .finder-form,
  .metrics,
  .model-grid,
  .category-grid,
  .product-grid,
  .product-grid.expanded,
  .service-list,
  .process-grid,
  .news-grid,
  .form-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .category-grid {
    gap: 8px;
  }

  .category-grid a {
    min-height: 62px;
    padding: 12px;
    font-size: 13px;
  }

  .product-toolbar {
    padding: 10px;
  }

  .product-filter {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .product-filter button {
    flex: 0 0 auto;
  }

  .product-grid,
  .product-grid.expanded {
    gap: 14px;
    margin-top: 22px;
  }

  .product-image {
    aspect-ratio: 1.45 / 1;
    padding: 10px;
  }

  .product-card div,
  .news-grid article {
    padding: 14px;
  }

  .product-card h3 {
    font-size: 17px;
  }

  .product-card p {
    font-size: 13px;
    line-height: 1.45;
  }

  .product-whatsapp {
    width: 100%;
    min-height: 42px;
  }

  .form-grid {
    gap: 10px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 44px;
    padding: 0 14px;
    font-size: 13px;
  }
}

/* Quanhe B2B exporter redesign */
.industrial-hero {
  min-height: min(760px, calc(100vh - 76px));
}

.industrial-hero::after {
  background:
    linear-gradient(90deg, rgba(3, 9, 20, 0.94), rgba(7, 18, 38, 0.78) 42%, rgba(7, 18, 38, 0.26)),
    radial-gradient(circle at 75% 35%, rgba(201, 155, 73, 0.22), transparent 28%);
}

.vin-section {
  background: #fff;
}

.compact-form {
  margin-top: 26px;
}

.category-showcase {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.category-showcase article {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(7, 18, 38, 0.08);
}

.category-showcase img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: contain;
  padding: 12px;
  background: #f7f9fc;
  border-bottom: 1px solid var(--line);
}

.category-showcase div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.category-showcase h3 {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
}

.category-showcase p {
  margin: 9px 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.category-showcase a,
.news-grid a {
  margin-top: auto;
  color: var(--red);
  font-weight: 900;
}

.product-category {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 8px;
  color: var(--blue);
  background: #edf3fa;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
}

.product-specs {
  display: grid;
  gap: 8px;
  margin: 14px 0;
}

.product-specs div {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 8px;
  padding: 0;
}

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

.product-specs dd {
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
  padding: 0 !important;
}

.product-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 10px;
  color: #fff;
  background: var(--green);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.product-actions a:last-child {
  background: var(--blue);
}

.warehouse-trust {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 18, 37, 0.97), rgba(16, 33, 63, 0.95)),
    var(--navy);
}

.warehouse-trust h2 {
  color: #fff;
}

.warehouse-trust p {
  color: #d4deec;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.counter-grid div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

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

.counter-grid strong {
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
}

.counter-grid span {
  margin-top: 6px;
  color: #eef4fb;
  font-weight: 900;
}

.warehouse-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
}

.warehouse-gallery img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.warehouse-gallery img:first-child {
  grid-row: span 2;
}

.why-section {
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.why-grid article {
  padding: 22px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.why-grid strong {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
}

.why-grid h3 {
  margin: 16px 0 8px;
  color: var(--navy);
}

.why-grid p {
  margin: 0;
  color: var(--muted);
}

.export-section {
  background: var(--soft);
}

.export-map {
  position: relative;
  min-height: 420px;
  margin-top: 30px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 18, 37, 0.92), rgba(18, 59, 115, 0.88)),
    url("../img/truck-lineup-hero.jpg") center / cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.export-map::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  animation: mapPulse 4s infinite;
}

.map-point {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  color: #fff;
  background: rgba(182, 31, 46, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.africa { left: 45%; top: 55%; }
.middle-east { left: 55%; top: 45%; }
.asia { right: 12%; top: 52%; }
.south-america { left: 24%; bottom: 19%; }

@keyframes mapPulse {
  0%, 100% { transform: scale(0.98); opacity: 0.55; }
  50% { transform: scale(1.04); opacity: 1; }
}

.cta-section {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  text-align: center;
}

.cta-section h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 5vw, 58px);
}

.cta-section p {
  max-width: 760px;
  margin: 14px auto 24px;
  color: #dce6f3;
}

.cta-section .hero-actions {
  justify-content: center;
}

.model-entry-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  padding: 34px clamp(18px, 5vw, 72px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.entry-heading h2,
.parts-finder-band h2,
.price-list-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

.entry-heading p,
.price-list-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

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

.truck-model-grid a {
  overflow: hidden;
  position: relative;
  min-height: 190px;
  color: #fff;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(7, 18, 38, 0.12);
}

.truck-model-grid img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  opacity: 0.84;
  transition: transform 0.35s ease;
}

.truck-model-grid span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px;
  background: rgba(7, 18, 37, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font-weight: 900;
}

.truck-model-grid a:hover img {
  transform: scale(1.05);
}

.parts-finder-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(520px, 1.38fr);
  gap: clamp(20px, 4vw, 50px);
  align-items: center;
  padding: 34px clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 18, 37, 0.98), rgba(18, 59, 115, 0.92)),
    var(--navy);
}

.parts-finder-band h2 {
  color: #fff;
}

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

.parts-chip-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 10px;
  color: #eef5ff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
}

.parts-chip-grid a:hover {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.price-list-section {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(320px, 0.72fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: stretch;
  padding: 34px clamp(18px, 5vw, 72px);
  background: var(--soft);
}

.price-list-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(7, 18, 38, 0.08);
}

.price-list-card img {
  width: 100%;
  aspect-ratio: 1 / 0.86;
  object-fit: contain;
  padding: 10px;
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.price-list-form {
  box-shadow: none;
}

.site-footer {
  grid-template-columns: 1.15fr 0.75fr 0.85fr 1fr;
}

.page-hero {
  padding: clamp(70px, 10vw, 120px) clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 18, 37, 0.96), rgba(16, 33, 63, 0.88)),
    url("../img/truck-lineup-logo-hero.jpg") center / cover;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #dce6f3;
  font-size: 18px;
}

.page-content {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.content-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(7, 18, 38, 0.08);
}

@media (max-width: 1180px) {
  .category-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .model-entry-section,
  .parts-finder-band,
  .price-list-section {
    grid-template-columns: 1fr;
  }

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

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

  .warehouse-trust,
  .split-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  .category-showcase,
  .why-grid,
  .counter-grid,
  .truck-model-grid,
  .parts-chip-grid,
  .price-list-card,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .model-entry-section,
  .parts-finder-band,
  .price-list-section {
    padding: 24px 14px;
  }

  .truck-model-grid a,
  .truck-model-grid img {
    min-height: 168px;
  }

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

  .warehouse-gallery img:first-child {
    grid-row: auto;
  }

  .product-specs div,
  .product-actions {
    grid-template-columns: 1fr;
  }

  .export-map {
    min-height: 520px;
  }

  .map-point {
    font-size: 12px;
  }

  .africa { left: 28%; top: 50%; }
  .middle-east { left: 38%; top: 38%; }
  .asia { right: 10%; top: 47%; }
  .south-america { left: 16%; bottom: 18%; }
}
