:root {
  --nen: #ffffff;
  --nen-diu: #f4f8fb;
  --nen-xanh: #e9f7f8;
  --chu: #071c32;
  --secondary: #5f7182;
  --vien: #dce7ee;
  --xanh: #003469;
  --xanh-dam: #003469;
  --do: #c8192e;
  --bong: 0 22px 55px rgba(7, 28, 50, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--chu);
  background: var(--nen);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--chu);
  background: var(--nen);
}

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 56px;
  padding: 9px clamp(20px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 231, 238, 0.82);
  backdrop-filter: blur(18px);
}

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

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

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0;
  color: #003469;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-menu a,
.nav-menu button {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 18px;
  color: #003469;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  text-transform: uppercase;
      background: transparent;
}

.nav-menu a:hover,
.nav-menu button:hover {
  color: #ffffff;
  border-color: #003469;
  background: #003469;
  box-shadow: 0 10px 20px rgba(0, 52, 105, 0.16);
  transform: translateY(-1px);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #29445b;
  font-size: 13px;
  font-weight: 800;
}

.header-contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.header-contact svg {
  color: var(--xanh);
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 18px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: #2f4a99;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 10px 20px rgba(0, 52, 105, 0.14);
}

.phone-pill svg {
  flex: 0 0 auto;
  fill: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 17px;
  border-radius: 6px;
  color: var(--chu);
  background: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn.primary {
  color: #fff;
  background: var(--do);
  border-color: var(--do);
  box-shadow: 0 16px 26px rgba(200, 25, 46, 0.22);
}

.btn.secondary {
  color: var(--xanh-dam);
  border-color: #b8dbe2;
  background: #f8ffff;
}

.hotline {
  color: #fff;
  background: var(--xanh-dam);
  border-color: var(--xanh-dam);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--chu);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f6fbff;
}

.hero::after {
  display: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(500px, 1.16fr);
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  padding: 28px clamp(20px, 5vw, 72px) 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 620ms ease;
}

.hero-slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #f6fbff;
}

.hero-slide-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}

.hero-slide-link .hero-slide-image {
  position: static;
  display: block;
}

.hero-slide::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 33%, rgba(255, 255, 255, 0.44) 52%, rgba(255, 255, 255, 0.04) 100%);
}

.hero-slide:not(:has(.hero-content))::before {
  background:
    linear-gradient(90deg, rgba(0, 52, 105, 0.08), rgba(0, 52, 105, 0.02)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 52, 105, 0.08));
}

.hero-slide.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(44px, 5.1vw, 70px);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  margin: 17px 0 0;
  color: #071c32;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.35;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.hero-benefits {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 26px;
  left: clamp(20px, 5vw, 72px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, max-content));
  justify-content: start;
  gap: clamp(18px, 4vw, 56px);
  margin-top: 0;
  color: #30485c;
  font-size: 13px;
  font-weight: 600;
}

.hero-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 148px;
  line-height: 1.2;
}

.hero-benefits svg {
  color: var(--xanh);
}

.hero-car {
  min-height: 330px;
}

.hero-dots {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 18px;
  z-index: 4;
  display: flex;
  gap: 9px;
}

.hero-dots button {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 52, 105, 0.24);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: #003469;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.service-strip {
  display: none;
}

.service-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 96px;
  color: #15334b;
  background: #fff;
  font-weight: 800;
}

.service-strip svg {
  color: var(--xanh);
}

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

.intro {
  padding-top: 56px;
  padding-bottom: 56px;
  background: #ffffff;
}

.intro-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(0, 52, 105, 0.12);
  border-radius: 8px;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 48%, #f4f9fd 100%);
  box-shadow: 0 22px 58px rgba(0, 52, 105, 0.1);
  overflow: hidden;
}

.intro-content::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 7px;
  content: "";
  background: #003469;
  pointer-events: none;
}

.intro-copy {
  position: relative;
  z-index: 1;
}

.intro-copy > span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #003469;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro h2 {
  max-width: 620px;
  margin: 0;
  color: #071c32;
  font-size: clamp(36px, 4.3vw, 60px);
  line-height: 1;
}

.intro p {
  max-width: 560px;
  margin: 18px 0 0;
  color: #4f6578;
  font-size: 17px;
  line-height: 1.68;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.intro-visual {
  position: relative;
  z-index: 1;
  display: grid;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.intro-image {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 28px 32px;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
}

.intro-image img {
  width: min(720px, 100%);
  filter: drop-shadow(0 30px 30px rgba(0, 52, 105, 0.16));
}

.vehicle-list-section {
  background: #fff;
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 8px;
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading > span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  color: #003469;
  border: 1px solid rgba(0, 52, 105, 0.18);
  border-radius: 999px;
  background: #f3f8fc;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading h2,
.quote-section h2,
.contact h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading h2 {
  position: relative;
  color: #071c32;
}

.section-heading h2::after {
  display: block;
  width: 86px;
  height: 4px;
  margin: 14px auto 0;
  content: "";
  border-radius: 999px;
  background: #003469;
}

.section-heading > p {
  max-width: 560px;
  margin: 2px 0 0;
  color: #536b7f;
  font-size: 16px;
  line-height: 1.55;
}

.section-heading p,
.consulting p,
.contact p {
  margin: 0;
  color: var(--secondary);
  font-size: 17px;
  line-height: 1.65;
}

.vehicle-filter {
  display: flex;
  gap: 10px;
  margin-bottom: 26px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.vehicle-filter button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 15px;
  color: #335066;
  border: 1px solid var(--vien);
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.vehicle-filter button.is-active {
  color: #fff;
  background: var(--xanh-dam);
  border-color: var(--xanh-dam);
}

.vehicle-heading {
  display: flex;
  justify-content: center;
  max-width: 1280px;
  margin-bottom: 22px;
}

.vehicle-heading h2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #071c32;
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 900;
  white-space: nowrap;
}

.vehicle-heading h2::before,
.vehicle-heading h2::after {
  display: block;
  width: clamp(48px, 8vw, 118px);
  height: 2px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(0, 52, 105, 0.55));
}

.vehicle-heading h2::after {
  margin: 0;
  background: linear-gradient(90deg, rgba(0, 52, 105, 0.55), transparent);
}

.vehicle-heading h2 span {
  color: #003469;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.vehicle-card {
  min-width: 0;
  border: 1px solid var(--vien);
  border-radius: 7px;
  background: #fff;
  box-shadow: none;
  overflow: hidden;
}

.vehicle-image {
  display: grid;
  place-items: center;
  height: 164px;
  padding: 14px 14px 4px;
  background: #fff;
}

.vehicle-image img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
  transition: transform 220ms ease;
}

.vehicle-card:hover .vehicle-image img {
  transform: translateY(-4px) scale(1.04);
}

.vehicle-info {
  padding: 4px 10px 12px;
  text-align: center;
}

.vehicle-info h3 {
  margin: 0 0 3px;
  color: #003469;
  font-size: 16px;
  line-height: 1.12;
}

.vehicle-info strong {
  color: #003469;
  font-size: 13px;
  line-height: 1.2;
}

.quote-section {
  display: block;
  min-height: 520px;
  padding: 74px clamp(20px, 6vw, 96px);
  background:
    linear-gradient(90deg, rgba(246, 251, 255, 0.97) 0%, rgba(234, 247, 255, 0.9) 42%, rgba(234, 247, 255, 0.42) 74%, rgba(234, 247, 255, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(232, 246, 255, 0.72)),
    url("./assets/hero-vf8-silver.png");
  background-repeat: no-repeat;
  background-position: center, center, right center;
  background-size: cover, cover, auto 100%;
}

.quote-section h2 {
  max-width: 620px;
  color: #003469;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.05;
}

.quote-content {
  position: relative;
  z-index: 1;
  width: min(448px, 100%);
  max-width: 448px;
}

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

.benefit-grid div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  color: #003469;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.benefit-grid svg {
  width: 42px;
  height: 42px;
  padding: 8px;
  color: #003469;
  border: 1px solid rgba(0, 80, 185, 0.14);
  border-radius: 8px;
  background: #fff;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
  width: 100%;
  max-width: 448px;
  margin-top: 28px;
  padding: 28px;
  border: 1px solid rgba(0, 80, 185, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 54px rgba(0, 48, 115, 0.16);
  backdrop-filter: blur(10px);
}

.quote-form input,
.quote-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--chu);
  border: 1px solid #cfdde6;
  border-radius: 5px;
  background: #fff;
  outline: none;
}

.quote-form button {
  grid-column: 1 / -1;
  min-height: 50px;
  font-size: 16px;
}

.quote-form select {
  grid-column: 1 / -1;
}

.quote-form-message {
  grid-column: 1 / -1;
}

.quote-form small {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  min-height: 20px;
  color: #003469;
  font-size: 12px;
  line-height: 1.35;
}

.quote-form input:focus,
.quote-form select:focus {
  border-color: var(--xanh);
  box-shadow: 0 0 0 4px rgba(0, 122, 138, 0.12);
}

.news-section {
  padding-top: 58px;
  padding-bottom: 64px;
  background: #ffffff;
}

.home-news-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
}

.news-section .section-heading,
.news-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto 26px;
  text-align: left;
}

.news-section-heading span,
.news-list-head span,
.news-card span {
  color: #006f7f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.news-section .section-heading p {
  margin: 0;
  color: #536b7f;
  font-size: 15px;
  line-height: 1.6;
}

.news-section .section-heading h2 {
  margin: 6px 0 0;
  color: #071c32;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.16;
}

.news-section .home-news-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  max-width: 1180px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid #dce8f1;
  text-align: left;
}

.home-news-heading-copy {
  min-width: 0;
}

.news-section .home-news-heading span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  color: #d7192f;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.news-section .home-news-heading h2 {
  position: relative;
  margin: 8px 0 0;
  color: #071c32;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.12;
}

.news-section .home-news-heading p {
  max-width: 640px;
  margin: 10px 0 0;
  color: #536b7f;
  font-size: 15px;
  line-height: 1.65;
}

.news-section .home-news-heading > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  color: #003469;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
}

.news-section .home-news-heading > a:hover {
  color: #d7192f;
  transform: translateY(-1px);
}

.news-section .home-news-heading > a::after {
  width: 18px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: currentColor;
}
.news-list-page {
  padding-top: 46px;
  padding-bottom: 64px;
  background: #f6f9fc;
}

.news-list-head {
  max-width: 1180px;
  margin: 0 auto 22px;
}

.news-list-head h2 {
  margin: 6px 0 0;
  color: #071c32;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.2;
}

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

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

.news-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid #dfe8ef;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(12, 37, 62, 0.06);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.news-card:hover {
  transform: translateY(-3px);
  border-color: #c7d8e4;
  box-shadow: 0 18px 36px rgba(12, 37, 62, 0.11);
}

.news-image {
  display: block;
  position: relative;
  height: 196px;
  margin: 0;
  padding: 0;
  background: #e8eef4;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: transform 0.25s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.035);
}

.news-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 18px 20px;
}

.news-card h3 {
  margin: 8px 0 10px;
  color: #071c32;
  font-size: 16px;
  line-height: 1.36;
  font-weight: 750;
}

.news-card h3 a {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: inherit;
  font-weight: inherit;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-card p {
  display: -webkit-box;
  min-height: 62px;
  margin: 0;
  overflow: hidden;
  color: #536b7f;
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-card a {
  text-decoration: none;
}

.news-readmore {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin: auto 0 0;
  padding-top: 16px;
  color: #003469;
  font-size: 14px;
  font-weight: 800;
}

.news-readmore::after {
  width: 18px;
  height: 1px;
  content: "";
  background: #d7192f;
  transition: width 0.2s ease;
}

.news-card:hover .news-readmore::after {
  width: 30px;
}

.news-card-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  min-height: 300px;
}

.news-card-featured .news-image {
  height: 100%;
  min-height: 300px;
}

.news-card-featured .news-content {
  padding: 28px;
}

.news-card-featured h3 {
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.28;
}

.news-card-featured h3 a {
  -webkit-line-clamp: 5;
}

.news-card-featured p {
  font-size: 15px;
  -webkit-line-clamp: 4;
}

.news-page-hero {
  min-height: 230px;
}
.site-footer {
  color: #fff;
  background: #003469;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.62fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 44px clamp(20px, 6vw, 96px) 28px;
}

.footer-logo {
  color: #fff;
  min-width: 0;
}

.footer-logo img {
  width: 210px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
}

.footer-brand h2 {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.footer-brand p {
  max-width: 540px;
  margin: auto 0 0;`r`n  padding-top: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.65;
}

.footer-contact {
  display: grid;
  gap: 18px;
}

.footer-btn {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: auto;
  padding: 0;
  color: #fff;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-weight: 700;
  line-height: 1.3;
}

.footer-btn.primary {
  background: transparent;
}

.footer-btn svg {
  width: 20px;
  height: 20px;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  border: 0;
  border-radius: 0;
  background: transparent;
}

.footer-btn span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer-showroom {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin: 0 clamp(20px, 6vw, 96px) 28px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: transparent;
}

.footer-showroom > svg {
  width: 22px;
  height: 22px;
  padding: 0;
  color: rgba(255, 255, 255, 0.84);
  border-radius: 0;
  background: transparent;
}

.footer-showroom h3,
.footer-showroom p {
  margin: 0;
}

.footer-showroom h3 {
  margin-bottom: 4px;
  font-size: 17px;
}

.footer-showroom p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.footer-showroom a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  color: #003469;
  border-radius: 6px;
  background: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 16px clamp(20px, 6vw, 96px);
  color: rgba(255, 255, 255, 0.68);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.12);
  font-size: 14px;
}

.subpage-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 230px;
  padding: 54px clamp(20px, 6vw, 96px) 46px;
  text-align: center;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(0, 28, 66, 0.94), rgba(0, 52, 105, 0.82)),
    url("./assets/banner-vf8-2.jpg");
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.subpage-hero > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 900px;
}

.subpage-hero h1 {
  order: 1;
  max-width: 920px;
  margin: 0;
  font-size: clamp(17px, 2vw, 28px);
  line-height: 1.08;
  text-transform: uppercase;
}

.subpage-hero p {
  order: 3;
  max-width: 560px;
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.6;
}

.breadcrumb {
  order: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: min(100%, 760px);
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.subpage-hero-cars {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  min-height: 150px;
}

.subpage-hero-cars img {
  width: min(220px, 26vw);
  margin-left: -54px;
  object-fit: contain;
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.26));
}

.subpage-section {
  padding: 44px clamp(20px, 6vw, 96px);
  background: #ffffff;
}

.list-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto 24px;
  color: #071c32;
}

.list-toolbar label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #536b7f;
  font-size: 14px;
  font-weight: 700;
}

.list-toolbar select {
  min-height: 42px;
  padding: 0 36px 0 14px;
  border: 1px solid var(--vien);
  border-radius: 6px;
  color: #003469;
  background: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.product-card {
  border: 1px solid var(--vien);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 52, 105, 0.06);
  overflow: hidden;
}

.product-card-image {
  display: grid;
  place-items: center;
  height: 190px;
  padding: 18px;
  background: linear-gradient(180deg, #f8fbfe, #ffffff);
}

.product-card-image img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 14px 16px rgba(0, 52, 105, 0.1));
}

.product-card-body {
  padding: 0 20px 20px;
}

.product-card h3 {
  margin: 0 0 8px;
  color: #071c32;
  font-size: 21px;
  line-height: 1.2;
}

.product-card p {
  margin: 0 0 14px;
  color: #5f7182;
  line-height: 1.5;
}

.product-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
  color: #29445b;
  font-size: 12px;
  font-weight: 700;
}

.product-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.product-card strong {
  display: block;
  margin-bottom: 14px;
  color: #d4152e;
  font-size: 18px;
}

.outline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  color: #003469;
  border: 1px solid #0f61ff;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 42px auto 0;
  padding: 26px 28px;
  color: #ffffff;
  border-radius: 8px;
  background: #003469;
}

.service-panel span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.9fr);
  gap: 46px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 44px clamp(20px, 6vw, 96px) 24px;
}

.gallery-panel,
.main-product-image,
.detail-copy,
.promo-box {
  border-radius: 8px;
}

.main-product-image {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 430px;
  padding: 28px;
  border: 1px solid var(--vien);
  background: linear-gradient(180deg, #f7fbff, #ffffff);
  cursor: zoom-in;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.main-product-image:hover {
  border-color: rgba(0, 52, 105, 0.35);
  box-shadow: 0 18px 38px rgba(0, 52, 105, 0.1);
  transform: translateY(-1px);
}

.main-product-image img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.thumb-row img {
  height: 86px;
  width: 100%;
  padding: 10px;
  object-fit: contain;
  border: 1px solid var(--vien);
  border-radius: 7px;
  background: #ffffff;
}

.detail-copy {
  padding: 16px 0 0;
}

.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 0 12px;
  color: #15803d;
  border-radius: 999px;
  background: #e8f8ef;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-copy h1 {
  margin: 18px 0 10px;
  color: #071c32;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.06;
}

.detail-copy p {
  margin: 0;
  color: #536b7f;
  font-size: 17px;
  line-height: 1.65;
}

.detail-copy > strong {
  display: block;
  margin: 18px 0 20px;
  color: #e0142f;
  font-size: 28px;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lead-modal.is-open {
  display: flex;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 28, 50, 0.62);
  backdrop-filter: blur(6px);
}

.lead-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  max-height: calc(100vh - 40px);
  padding: 28px;
  border: 1px solid rgba(205, 221, 234, 0.9);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(0, 22, 52, 0.28);
  overflow-y: auto;
}

.lead-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: #003469;
  border: 1px solid #d7e4ee;
  border-radius: 999px;
  background: #ffffff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.lead-modal-heading {
  padding-right: 34px;
}

.lead-modal-heading span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #d7192f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-modal-heading h2 {
  margin: 0;
  color: #003469;
  font-size: 28px;
  line-height: 1.15;
}

.lead-modal-heading p {
  margin: 8px 0 0;
  color: #536b7f;
  line-height: 1.55;
}

.lead-modal-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.lead-modal-form label {
  display: grid;
  gap: 7px;
  color: #071c32;
  font-size: 14px;
  font-weight: 800;
}

.lead-modal-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: #071c32;
  border: 1px solid #cdddea;
  border-radius: 6px;
  background: #ffffff;
  outline: none;
}

.lead-modal-form input:focus {
  border-color: #0f61ff;
  box-shadow: 0 0 0 4px rgba(15, 97, 255, 0.1);
}

.lead-date-field {
  display: none !important;
}

.lead-modal[data-lead-type="test-drive"] .lead-date-field {
  display: grid !important;
}

.lead-modal-form button[type="submit"] {
  width: 100%;
  min-height: 48px;
  margin-top: 2px;
}

.lead-modal-message {
  min-height: 20px;
  margin: 0;
  color: #15803d;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.lead-modal-message.is-error {
  color: #d7192f;
}

.floating-contact-menu {
  position: fixed;
  left: 18px;
  bottom: 96px;
  z-index: 70;
  display: grid;
  gap: 10px;
}

.floating-contact-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  color: #ffffff;
  border: 0;
  border-radius: 999px;
  background: #003469;
  box-shadow: 0 12px 28px rgba(0, 22, 52, 0.22);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.floating-contact-btn:hover,
.floating-contact-btn:focus-visible {
  color: #ffffff;
  text-decoration: none;
  transform: translateX(3px);
  box-shadow: 0 16px 34px rgba(0, 22, 52, 0.28);
  outline: none;
}

.floating-contact-btn svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.floating-contact-btn > span {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #071c32;
  border: 1px solid rgba(205, 221, 234, 0.95);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 22, 52, 0.14);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translate(-6px, -50%);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.floating-contact-btn:hover > span,
.floating-contact-btn:focus-visible > span {
  opacity: 1;
  transform: translate(0, -50%);
}

.floating-contact-btn.is-phone {
  background: #e0142f;
}

.floating-contact-btn.is-quote {
  background: #003469;
}

.floating-contact-btn.is-drive {
  background: #0f61ff;
}

.floating-contact-btn.is-zalo {
  background: #0068ff;
}

.floating-contact-btn.is-zalo strong {
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.color-picker-group {
  display: grid;
  gap: 10px;
  margin: 16px 0 22px;
}

.color-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.color-row-label {
  color: #071c32;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.color-row button {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid #cfdde6;
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
}

.color-row button.is-active {
  border-color: #003469;
  box-shadow: 0 0 0 4px rgba(0, 52, 105, 0.12);
}

.color-row span {
  width: 28px;
  height: 28px;
  border: 1px solid #cfdde6;
  border-radius: 999px;
}

.promo-box {
  position: relative;
  display: grid;
  align-items: start;
  min-height: 132px;
  padding: 26px 30px;
  border: 1px solid rgba(215, 25, 47, 0.22);
  border-left: 6px solid #d7192f;
  background: linear-gradient(135deg, #fff8f8 0%, #ffffff 45%, #f2f8ff 100%);
  box-shadow: 0 18px 42px rgba(0, 52, 105, 0.1);
  overflow: hidden;
}

.promo-box::after {
  position: absolute;
  right: 24px;
  bottom: -28px;
  width: 124px;
  height: 124px;
  content: "";
  border: 1px solid rgba(215, 25, 47, 0.12);
  border-radius: 999px;
  background: rgba(215, 25, 47, 0.05);
}

.promo-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px clamp(20px, 6vw, 96px) 14px;
}

.promo-heading {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  align-content: start;
}

.promo-heading span {
  width: fit-content;
  padding: 5px 10px;
  color: #d7192f;
  border: 1px solid rgba(215, 25, 47, 0.18);
  border-radius: 999px;
  background: #ffffff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.promo-heading strong {
  color: #003469;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.15;
}

.promo-box p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #25435c;
  font-size: 16px;
  line-height: 1.72;
}

.promo-content {
  position: relative;
  z-index: 1;
  color: #25435c;
  font-size: 16px;
  line-height: 1.72;
}

.promo-content > :first-child {
  margin-top: 0;
}

.promo-content > :last-child {
  margin-bottom: 0;
}

.promo-content ul,
.promo-content ol {
  margin: 0;
  padding-left: 20px;
}

.promo-content li + li {
  margin-top: 6px;
}

.promo-content strong,
.promo-content b {
  color: #003469;
}

.promo-content h2,
.promo-content h3,
.promo-content h4 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 10px;
  color: #003469;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
}

.promo-content h2::after,
.promo-content h3::after,
.promo-content h4::after {
  flex: 1;
  min-width: 42px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(215, 25, 47, 0.38), rgba(0, 52, 105, 0.08));
}

.spec-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1280px;
  margin: 18px auto 0;
  padding: 0 clamp(20px, 6vw, 96px);
}

.spec-strip span {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--vien);
  border-radius: 8px;
  background: #ffffff;
  color: #536b7f;
  font-size: 13px;
}

.spec-strip svg {
  color: #0f61ff;
}

.spec-strip strong {
  color: #071c32;
  font-size: 20px;
}

.detail-block {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px clamp(20px, 6vw, 96px) 0;
}

.detail-block h2 {
  margin: 0 0 20px;
  color: #071c32;
  font-size: 26px;
  text-transform: uppercase;
}

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

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

.related-products-block {
  margin-bottom: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(42px, 6vw, 76px);
}

.feature-card {
  border: 1px solid var(--vien);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.feature-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  background: #f6fbff;
}

.feature-card h3 {
  margin: 16px 18px 8px;
  color: #071c32;
}

.feature-card p {
  margin: 0 18px 18px;
  color: #536b7f;
  line-height: 1.55;
}

.spec-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--vien);
  border-radius: 8px;
  overflow: hidden;
}

.spec-table div {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  min-height: 46px;
  border-bottom: 1px solid var(--vien);
}

.spec-table span,
.spec-table strong {
  display: flex;
  align-items: center;
  padding: 10px 16px;
}

.spec-table span {
  color: #536b7f;
  background: #f4f8fb;
}

.spec-table strong {
  color: #071c32;
  font-weight: 800;
}

.block-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.block-title-row a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #003469;
  font-weight: 900;
}

.product-article {
  max-width: 1280px;
  margin: 36px auto 0;
  padding: 34px clamp(20px, 6vw, 96px);
}

.product-article h2::after {
  flex: 1;
  min-width: 42px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgb(0 52 105), rgba(0, 52, 105, 0.08));
}



.product-article h2 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 40px 0 18px;
  padding: 0px 15px 0px 15px;
  color: #003469;
  border-left: 5px solid #003469;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.18;
  font-weight: 700;
  font-size: 25px;
}

.product-article h2:first-child {
  margin-top: 0;
}

.product-article h3 {
  position: relative;
  margin: 28px 0 12px;
  padding-left: 18px;
  color: #003469;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 900;
}

.product-article h3::before {
  position: absolute;
  top: 0.38em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 999px;
  background: #d7192f;
  box-shadow: 0 0 0 5px rgba(215, 25, 47, 0.1);
}

.product-article p,
.product-article li {
  color: #536b7f;
  font-size: 16px;
  line-height: 1.72;
}

.product-article p {
  margin: 0 0 14px;
}

.product-article ul {
  margin: 0;
  padding-left: 20px;
}

.source-detail-section {
  margin-bottom: 28px;
}

.source-detail-section:last-child {
  margin-bottom: 0;
}

.source-detail-section img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 18px auto;
  border-radius: 8px;
}

.variant-block h2 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  padding: 0px 15px 0px 15px;
  color: #003469;
  border-left: 5px solid #003469;
  font-size: 25px;
  line-height: 1.18;
  font-weight: 700;
  text-transform: none;
}

.article-gallery-block {
  padding-top: 34px;
}

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

.article-gallery-grid figure {
  margin: 0;
  border-radius: 8px;
  background: #f6fbff;
  overflow: hidden;
}

.article-gallery-zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  text-decoration: none;
}

.article-gallery-zoom img {
  transition: transform 180ms ease;
}

.article-gallery-zoom:hover img {
  transform: scale(1.03);
}

.article-gallery-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.price-table {
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid var(--vien);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.price-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 120px;
  align-items: center;
  gap: 16px;
  min-height: 74px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--vien);
}

.price-head {
  min-height: 52px;
  color: #003469;
  background: #f4f8fb;
  font-weight: 900;
  text-transform: uppercase;
}

.price-product {
  display: flex;
  align-items: center;
  gap: 14px;
}

.price-product img {
  width: 88px;
  height: 54px;
  object-fit: contain;
}

.price-row > strong {
  color: #e0142f;
}

.price-row a {
  display: inline-flex;
  justify-content: center;
  min-height: 36px;
  align-items: center;
  color: #003469;
  border: 1px solid #0f61ff;
  border-radius: 5px;
  font-weight: 900;
}

.price-row-child {
  padding-left: clamp(18px, 4vw, 54px);
  background: #fbfdff;
}

.price-row-child .price-product {
  min-height: auto;
  color: #42576b;
  font-size: 14px;
}

.price-page {
  background: #ffffff;
}

.price-page-heading {
  max-width: 1180px;
  margin: 0 auto 24px;
  text-align: center;
}

.price-page-heading h2 {
  margin: 0;
  color: #071c32;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
}

.price-page-heading p {
  max-width: 680px;
  margin: 10px auto 0;
  color: #536b7f;
  font-size: 16px;
  line-height: 1.6;
}

.price-list {
  display: grid;
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
}

.price-vehicle-card {
  display: grid;
  grid-template-columns: 230px minmax(180px, 0.65fr) minmax(360px, 1fr);
  gap: 26px;
  align-items: center;
  padding: 24px;
  border: 1px solid #cdddea;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 52, 105, 0.07);
}

.price-vehicle-image {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 12px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f7fbff, #ffffff);
}

.price-vehicle-image img {
  width: 100%;
  max-height: 132px;
  object-fit: contain;
  filter: drop-shadow(0 12px 14px rgba(0, 52, 105, 0.12));
}

.price-vehicle-title h2 {
  margin: 0 0 14px;
  color: #003469;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.1;
  font-weight: 900;
}

.price-vehicle-title a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  color: #003469;
  border: 1px solid #0f61ff;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-vehicle-table-wrap {
  display: grid;
  gap: 12px;
}

.price-vehicle-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid #d7e4ee;
  border-radius: 8px;
  background: #ffffff;
}

.price-vehicle-table tr + tr {
  border-top: 1px solid #d7e4ee;
}

.price-vehicle-table td {
  padding: 12px 16px;
  color: #25435c;
  font-size: 15px;
  line-height: 1.4;
  vertical-align: middle;
}

.price-vehicle-table td:first-child {
  width: 62%;
  font-weight: 800;
  text-transform: uppercase;
}

.price-vehicle-table td + td {
  width: 38%;
  border-left: 1px solid #d7e4ee;
  text-align: right;
}

.price-vehicle-table strong {
  color: #d7192f;
  font-size: 16px;
  white-space: nowrap;
}

.variant-table {
  overflow: hidden;
  border: 1px solid #cdddea;
  border-radius: 8px;
  background: #fff;
}

.variant-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: center;
  min-height: 54px;
  padding: 14px 18px;
  border-top: 1px solid var(--vien);
}

.variant-row:first-child {
  border-top: 0;
}

.variant-head {
  color: #fff;
  background: #003469;
  font-weight: 900;
  text-transform: uppercase;
}

.variant-row strong {
  color: #c8192e;
  font-size: 17px;
}

.variant-table .variant-row {
  gap: 0;
  border-top: 1px solid #cdddea;
}

.variant-table .variant-row:first-child {
  border-top: 0;
}

.variant-table .variant-row > strong {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding-left: 18px;
  border-left: 1px solid #cdddea;
}

.variant-table .variant-head > span + span {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.promo-box ul {
  margin: 10px 0 0;
  padding-left: 20px;
  color: #25435c;
  line-height: 1.8;
}

.source-note {
  padding-top: 16px;
  border-top: 1px solid var(--vien);
  color: #5f7182;
  font-size: 14px;
}

.source-note a {
  color: #003469;
  font-weight: 800;
}

.pricing-cta {
  max-width: 1180px;
  margin: 28px auto 0;
  padding: 28px;
  color: #ffffff;
  border-radius: 8px;
  background: #003469;
}

.pricing-cta h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 3vw, 42px);
}

.pricing-cta p {
  max-width: 720px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1260px) {
  .header-contact a:first-child {
    display: none;
  }
}

@media (max-width: 1120px) {
  .hero {
    aspect-ratio: 16 / 9;
  }

  .hero-slide {
    position: absolute;
    grid-template-columns: 1fr;
  }

  .hero-car {
    min-height: 220px;
  }

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

  .quote-section {
    min-height: 620px;
    background-position: center, center, right bottom;
    background-size: cover, cover, auto 62%;
  }

  .intro-content,
  .news-section .section-heading,
  .news-grid {
    grid-template-columns: 1fr;
  }

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

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

  .price-vehicle-card {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .price-vehicle-table-wrap {
    grid-column: 1 / -1;
  }

  .spec-strip,
  .service-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promo-box {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .news-section .section-heading,
  .news-grid,
  .news-grid-list {
    grid-template-columns: 1fr;
  }

  .news-card-featured {
    grid-column: auto;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 68px;
  }

  .nav-menu {
    position: absolute;
    top: 68px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--vien);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--bong);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 12px;
    border-radius: 6px;
  }

  .hotline {
    display: none;
  }

  .phone-pill {
    display: none;
  }

  .header-contact {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: clamp(44px, 11vw, 68px);
  }

  .section-heading,
  .footer-cta,
  .footer-showroom {
    grid-template-columns: 1fr;
  }

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

  .hero-benefits,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .hero-benefits {
    right: 20px;
    bottom: 58px;
    left: 20px;
    gap: 10px;
  }

  .footer-showroom a {
    justify-self: start;
  }

  .intro-image {
    min-height: 210px;
    padding: 24px;
  }

  .intro-image img {
    width: min(310px, 100%);
  }

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

  .product-grid,
  .feature-grid,
  .related-grid,
  .article-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .price-vehicle-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .price-vehicle-image {
    min-height: 130px;
  }

  .price-vehicle-title {
    text-align: center;
  }

  .price-vehicle-table td {
    padding: 11px 12px;
  }

  .price-head {
    display: none;
  }

  .spec-table {
    grid-template-columns: 1fr;
  }

  .promo-section {
    padding-top: 0;
  }

  .promo-box {
    padding: 22px;
  }

  .news-section .section-heading,
  .news-section-heading {
    grid-template-columns: 1fr;
  }

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

  .news-card-featured {
    display: flex;
  }

  .news-card-featured .news-image {
    height: 220px;
    min-height: 0;
  }

  .floating-contact-menu {
    left: 12px;
    bottom: 74px;
    gap: 8px;
  }

  .floating-contact-btn {
    width: 46px;
    height: 46px;
  }

  .floating-contact-btn svg {
    width: 21px;
    height: 21px;
  }

  .floating-contact-btn > span {
    display: none;
  }
}

@media (max-width: 620px) {
  .hero {
    aspect-ratio: 16 / 9;
  }

  .hero-slide {
    padding: 20px;
  }

  .hero-car {
    display: none;
  }

  .hero h1 {
    font-size: clamp(28px, 8vw, 40px);
    max-width: 300px;
  }

  .hero p,
  .hero-benefits {
    display: none;
  }

  .actions {
    margin-top: 14px;
  }

  .hero-dots {
    right: 20px;
    bottom: 18px;
  }

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

  .vehicle-image {
    height: 128px;
    padding: 8px;
  }

  .vehicle-image img {
    max-height: 116px;
  }

  .vehicle-info {
    padding: 6px 7px 10px;
  }

  .vehicle-info h3 {
    font-size: 14px;
  }

  .vehicle-info strong {
    font-size: 11px;
  }

  .section-heading h2,
  .quote-section h2,
  .contact h2 {
    font-size: 34px;
  }

  .vehicle-heading h2 {
    gap: 10px;
    font-size: 28px;
  }

  .vehicle-heading h2::before,
  .vehicle-heading h2::after {
    width: 28px;
  }

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

  .quote-form {
    padding: 18px;
  }

  .quote-section {
    min-height: 700px;
    padding-top: 44px;
    padding-bottom: 300px;
    background:
      linear-gradient(180deg, rgba(246, 251, 255, 0.98) 0%, rgba(234, 247, 255, 0.92) 54%, rgba(234, 247, 255, 0.38) 100%),
      url("./assets/hero-vf8-silver.png");
    background-repeat: no-repeat;
    background-position: center, right bottom;
    background-size: cover, auto 300px;
  }

  .intro-content {
    padding: 22px;
  }

  .news-card p {
  display: -webkit-box;
  min-height: 62px;
  margin: 0;
  overflow: hidden;
  color: #536b7f;
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

  .brand {
    min-width: 150px;
  }

  .brand img {
    width: 150px;
  }

  .subpage-hero {
    min-height: 220px;
    padding: 46px 18px 38px;
  }

  .subpage-hero h1 {
    font-size: clamp(15px, 4vw, 21px);
  }

  .breadcrumb {
    max-width: 100%;
    white-space: normal;
  }

  .subpage-hero-cars {
    display: none;
  }

  .product-grid,
  .feature-grid,
  .related-grid,
  .article-gallery-grid,
  .spec-strip,
  .service-panel {
    grid-template-columns: 1fr;
  }

  .product-card-image {
    height: 150px;
  }

  .price-page-heading {
    text-align: left;
  }

  .price-vehicle-table,
  .price-vehicle-table tbody,
  .price-vehicle-table tr,
  .price-vehicle-table td {
    display: block;
    width: 100%;
  }

  .price-vehicle-table tr {
    padding: 12px;
  }

  .price-vehicle-table tr + tr {
    border-top: 1px solid #d7e4ee;
  }

  .price-vehicle-table td {
    padding: 0;
  }

  .price-vehicle-table td:first-child {
    width: 100%;
  }

  .price-vehicle-table td + td {
    width: 100%;
    margin-top: 6px;
    border-left: 0;
    text-align: left;
  }

  .main-product-image {
    min-height: 260px;
  }

  .thumb-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-box {
    padding: 18px;
    border-left-width: 4px;
  }

  .promo-heading strong {
    font-size: 22px;
  }

  .news-section {
    padding-top: 42px;
    padding-right: 18px;
    padding-bottom: 46px;
    padding-left: 18px;
  }

  .news-section .home-news-heading {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 16px;
  }

  .news-section .home-news-heading h2 {
    font-size: clamp(27px, 8vw, 34px);
  }

  .news-section .home-news-heading > a {
    width: fit-content;
    justify-content: flex-start;
  }

  .news-list-page {
    padding-top: 32px;
  }

  .news-image,
  .news-card-featured .news-image {
    height: 188px;
  }

  .news-content,
  .news-card-featured .news-content {
    padding: 16px;
  }
  .news-card h3,
  .news-card-featured h3 {
    font-size: 16px;
    line-height: 1.34;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}













