/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.5;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
}
/* =========================
   CONTAINER
========================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
/* =========================
   HEADER
========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  height: 80px;
}
.header-container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 50px;
  width: auto;
}
/* =========================
   NAVIGATION
========================= */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.desktop-nav > a {
  color: #222;
  font-size: 15px;
  font-weight: 500;
}
.desktop-nav > a:hover {
  color: #1464f4;
}
.dropdown {
  position: relative;
}
.dropdown-btn {
  border: none;
  background: none;
  cursor: pointer;
  color: #222;
  font-size: 15px;
  font-weight: 500;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid #eee;
  display: none;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.dropdown-menu a {
  padding: 12px 16px;
  color: #111;
  border-bottom: 1px solid #f3f3f3;
}
.dropdown-menu a:hover {
  background: #f7f7f7;
}
.dropdown:hover .dropdown-menu {
  display: flex;
}
/* =========================
   BUTTON
========================= */
.btn-primary {
  background: #1464f4;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
}
.btn-primary:hover {
  background: #0e54d6;
}
.btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 4px;
}
/* =========================
   HERO
========================= */
.hero {
  position: relative;
  height: 700px;
  background-image: url("/assets/images/banner-pcf2605-002.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.hero-content h1 {
  font-size: 64px;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 22px;
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}
/* =========================
   VEHICLE SECTION
========================= */
.vehicle-section {
  padding: 80px 0;
}
.vehicle-section h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 50px;
}
/* =========================
   GRID XE
========================= */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1320px;
  margin: 0 auto;
}
/* =========================
   CARD XE
========================= */
.vehicle-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: center;
}
.vehicle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.vehicle-card img {
  width: 75%;
  height: auto;
  margin: 40px auto 20px;
  display: block;
  transition: transform 0.3s ease;
}
.vehicle-card-content {
  padding: 20px;
}
.vehicle-card h3 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}
.vehicle-card p {
  color: #1464f4;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
  padding: 0 24px 30px;
  text-align: center;
}
.btn-card {
  display: inline-block;
  background: #1464f4;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}
/* ======================
   HERO SLIDER
====================== */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1920 / 800;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 0.5s;
}
.slide.active {
  opacity: 1;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  z-index: 10;
  font-size: 24px;
}
.slider-prev {
  left: 20px;
}
.slider-next {
  right: 20px;
}
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.5;
}
.dot.active {
  opacity: 1;
}
/* =====================
   POPUP
===================== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}
.popup-overlay.show {
  display: flex;
}
.popup-container {
  width: 900px;
  max-width: 95%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.popup-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popup-right {
  padding: 40px;
}
.popup-right h2 {
  color: #1464f4;
  margin-bottom: 10px;
}
.popup-right p {
  margin-bottom: 20px;
}
.popup-right form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.popup-right input,
.popup-right select {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
}
.popup-submit {
  height: 50px;
  border: none;
  background: #1464f4;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  border-radius: 6px;
}
.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 24px;
  z-index: 10;
}
.hidden {
  display: none !important;
}
/* =========================================
   VEHICLE DETAIL
========================================= */
.vehicle-hero {
  padding: 80px 0;
  background: #f7f8fa;
}
.vehicle-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.vehicle-image img {
  width: 100%;
  border-radius: 16px;
}
.vehicle-info h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #111;
  overflow-wrap: break-word;
}
.vehicle-short {
  font-size: 18px;
  color: #666;
  margin-bottom: 24px;
}
.vehicle-price {
  margin: 24px 0;
  font-size: 28px;
  font-weight: 700;
  color: #2563eb;
}
.vehicle-price span {
  font-size: 54px;
  font-weight: 800;
}
.vehicle-price strong {
  color: #1464f4;
  font-size: 34px;
}
.vehicle-specs {
  padding: 80px 0;
}
.vehicle-specs h2 {
  text-align: center;
  margin-bottom: 40px;
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.spec-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.spec-card span {
  display: block;
  margin-bottom: 12px;
  color: #666;
}
.spec-card strong {
  font-size: 24px;
  color: #1464f4;
}
.vehicle-content {
  padding: 80px 0;
}
.vehicle-content h2 {
  margin-bottom: 24px;
}
.vehicle-content p {
  line-height: 1.8;
  color: #444;
  word-break: break-word;
}
/* =========================================
RELATED VEHICLES
========================================= */
.related-vehicles {
  padding: 80px 0;
  background: #f7f8fa;
}
.related-vehicles h2 {
  text-align: center;
  margin-bottom: 40px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.related-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: 0.25s;
}
.related-card:hover {
  transform: translateY(-6px);
}
.related-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}
.related-card h3 {
  padding: 16px 16px 8px;
}
.related-card p {
  padding: 0 16px 20px;
  color: #1464f4;
  font-weight: 700;
}
/* =====================
   LEAD SUCCESS
===================== */
.lead-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}
.lead-success.show {
  display: block;
}
.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #16a34a;
  color: white;
  font-size: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lead-success h3 {
  margin-bottom: 12px;
}
.lead-success p {
  margin-bottom: 24px;
  color: #666;
}
/* =====================
   RESPONSIVE MOBILE
===================== */
.mobile-menu-btn {
  display: none;
  border: none;
  background: none;
  font-size: 28px;
  cursor: pointer;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;

  width: 100%;
  max-width: 320px;
  height: 100vh;

  background: #fff;

  transform: translateX(100%);
  transition: transform 0.3s ease;

  box-sizing: border-box;
  padding: 80px 20px 20px;
  overflow-y: auto;
  z-index: 9999;
}
.mobile-menu.show {
  transform: translateX(0);
}
.mobile-menu a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
}
.mobile-dropdown-btn {
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
}
.mobile-dropdown-content {
  display: none;
  padding-left: 15px;
}
.mobile-dropdown-content.show {
  display: block;
}
/* =====================
   FOOTER CTA
===================== */
.footer-cta {
  background: #f5f5f5;
  padding: 60px 0;
}
.footer-cta-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.footer-cta h2 {
  margin-bottom: 15px;
}
.footer-cta p {
  margin-bottom: 8px;
}
.cta-hotline {
  background: #1464f4;
  color: white;
  padding: 15px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}
/* =====================
   FOOTER
===================== */
.footer {
  background: #000;
  color: #fff;
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}
.footer-grid h3 {
  margin-bottom: 20px;
  font-size: 24px;
}
.footer-grid p {
  margin-bottom: 10px;
  color: #ddd;
}
.footer-social {
  display: flex;
  gap: 15px;
}
.footer-social a {
  color: white;
  text-decoration: none;
}
.footer-desc {
  color: #bbb;
  line-height: 1.8;
  margin-bottom: 40px;
}
.footer-menu {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.footer-menu a {
  color: #ddd;
  text-decoration: none;
}
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.phone-btn {
  background: #1464f4;
  color: #fff;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.zalo-btn {
  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  padding: 0;
  box-shadow: none;
}

.zalo-btn img {
  width: 56px;
  height: 56px;
  display: block;
}
.floating-contact {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-contact a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1464f4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.floating-contact a img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floating-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: #1464f4;
  border-color: #1464f4;
}
.footer-social i {
  font-size: 16px;
}
.why-vinfast {
  padding: 100px 0;
  background: #f8fafc;
}
.section-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.section-heading span {
  color: #1464f4;
  font-weight: 700;
  letter-spacing: 2px;
}
.section-heading h2 {
  font-size: 42px;
  margin: 15px 0;
}
.section-heading p {
  color: #666;
  line-height: 1.8;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.why-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.why-card:hover {
  transform: translateY(-8px);
}
.why-icon {
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 50%;
  background: #1464f4;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}
.why-icon i {
  font-size: 32px;
}
.test-drive {
  padding: 120px 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("/assets/images/test-drive-banner.jpg");
  background-size: cover;
  background-position: center;
}
.test-drive-content {
  text-align: center;
  color: white;
}
.test-drive-content h2 {
  font-size: 52px;
  margin-bottom: 20px;
}
.test-drive-content p {
  max-width: 700px;
  margin: auto;
  margin-bottom: 30px;
}
.btn-large {
  padding: 18px 40px;
}
.promotion {
  padding: 100px 0;
}
.promotion-card {
  overflow: hidden;
  border-radius: 20px;
}
.promotion-card img {
  width: 100%;
  display: block;
}
.news-preview {
  padding: 100px 0;
  background: #f8fafc;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.news-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}
.news-card:hover {
  transform: translateY(-6px);
}
.news-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.news-body {
  padding: 24px;
}
.news-body h3 {
  margin-bottom: 15px;
}
.top-btn {
  background: #111;
}
.page-hero {
  padding: 100px 0;
  background: #f8fafc;
  text-align: center;
}
.page-hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
}
.page-hero p {
  color: #666;
}
.news-page {
  padding: 80px 0;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}
.news-card:hover {
  transform: translateY(-6px);
}
.news-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.news-body {
  padding: 24px;
}
.news-body h3 {
  margin-bottom: 15px;
  font-size: 22px;
}
.news-body h3 a {
  text-decoration: none;
  color: #111;
}
.news-body p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}
.news-readmore {
  color: #1464f4;
  font-weight: 700;
  text-decoration: none;
}
.article-content {
  line-height: 1.9;
  font-size: 17px;
}
.article-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 30px;
}
.article-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 24px;
}
.article-content p {
  margin-bottom: 20px;
}
.article-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.article-content li {
  margin-bottom: 10px;
}
.article-content img {
  max-width: 100%;
  border-radius: 12px;
  margin: 25px 0;
}
.vehicle-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.vehicle-actions .btn-primary {
  min-width: 220px;
  height: 56px;
  border: none;
  border-radius: 12px;
  background: #1464f4;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.vehicle-actions .btn-secondary {
  min-width: 220px;
  height: 56px;
  border-radius: 12px;
  border: 2px solid #1464f4;
  background: #fff;
  color: #1464f4;
  font-weight: 700;
  cursor: pointer;
}
.btn-hotline {
  min-width: 220px;
  height: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
  border-radius: 12px;
  text-decoration: none;
  background: #111827;
  color: #fff;
}
.btn-hotline strong {
  font-size: 18px;
}
.vehicle-actions .btn-outline {
  min-width: 150px;
  height: 46px;
}
.vehicle-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
  flex-direction: column;
}
.badge {
  padding: 10px 16px;
  border-radius: 999px;
  background: #f3f4f6;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  text-align: center;
}
.vehicle-rating {
  margin: 12px 0;
  color: #f59e0b;
  font-size: 18px;
}
.vehicle-rating span {
  color: #6b7280;
  margin-left: 8px;
  font-size: 14px;
}
.vehicle-highlights-section {
  padding: 80px 0;
}
.vehicle-highlights-section h2 {
  text-align: center;
  margin-bottom: 40px;
}
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.highlight-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}
.highlight-card:hover {
  transform: translateY(-6px);
}
.highlight-icon {
  font-size: 42px;
  margin-bottom: 16px;
}
.highlight-card h3 {
  margin-bottom: 12px;
}
.highlight-card p {
  color: #666;
  line-height: 1.6;
}
.mobile-sticky-cta {
  display: none;
}
/* =========================
   PRICE LIST
========================= */
.price-page {
  padding: 60px 0;
}

.price-page h1 {
  margin-bottom: 20px;
}

.price-page h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.price-desc {
  font-size: 18px;
  line-height: 1.8;
}

.price-benefits {
  margin-left: 20px;
}

.price-benefits li {
  margin-bottom: 12px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.price-table th,
.price-table td {
  border: 1px solid #ddd;
  padding: 14px;
}

.price-table th {
  background: #f3f3f3;
  text-align: left;
}

.price-table tr:hover {
  background: #fafafa;
}

.price-table a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}
.price-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.price-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}
/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  /* Layout chung */
  html,
  body {
    overflow-x: hidden;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  /* Hero homepage */
  .hero {
    height: 500px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-slider {
    aspect-ratio: 16 / 9;
  }

  .slider-prev,
  .slider-next {
    width: 40px;
    height: 40px;
  }

  /* Vehicle detail */
  .vehicle-hero {
    padding: 40px 0;
  }

  .vehicle-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vehicle-image {
    order: 1;
  }

  .vehicle-info {
    order: 2;
    min-width: 0;
  }

  .vehicle-info h1 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 16px;
    word-break: break-word;
  }

  .vehicle-short {
    font-size: 16px;
  }

  .vehicle-rating {
    font-size: 16px;
  }

  .vehicle-rating span {
    display: block;
    margin-left: 0;
    margin-top: 6px;
  }

  .vehicle-price {
    margin: 20px 0;
    font-size: 22px;
  }

  .vehicle-price strong {
    display: block;
    font-size: 32px;
    line-height: 1.2;
    word-break: break-word;
  }

  .vehicle-actions {
    flex-direction: column;
  }

  .vehicle-actions .btn-primary,
  .vehicle-actions .btn-secondary,
  .vehicle-actions .btn-hotline {
    width: 100%;
    min-width: unset;
  }

  /* Grid */
  .vehicle-grid,
  .why-grid,
  .news-grid,
  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Popup */
  .popup-container {
    grid-template-columns: 1fr;
  }

  .popup-left {
    display: none;
  }

  /* Typography */
  .section-heading h2 {
    font-size: 30px;
  }

  .test-drive-content h2 {
    font-size: 34px;
  }

  /* Footer */
  .footer-cta-wrap {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .price-hero h1 {
    font-size: 28px;
  }

  .price-hero p {
    font-size: 15px;
    line-height: 1.6;
  }

  .price-promo h2,
  .price-list h2 {
    font-size: 24px;
  }

  .price-table th,
  .price-table td {
    padding: 12px 10px;
    font-size: 14px;
    white-space: nowrap;
  }
}
