/* =========================================
   GLOBAL RESET (XPENG STYLE)
========================================= */

html, body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
  color: #111;
  background-color: #fff;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =========================================
   TYPOGRAPHY
========================================= */

h1, h2, h3, h4, h5, h6 {
  color: #000;
  font-weight: 500;
  letter-spacing: -0.02em;
}

p {
  color: #111;
}

/* =========================================
   LINKS
========================================= */

a {
  color: #111;
  text-decoration: none;
  transition: color 0.25s ease;
  cursor: pointer;
}

a:hover {
  color: #000;
}

/* =========================================
   BUTTONS
========================================= */

.btn {
  font-family: inherit;
  border-radius: 0;
  font-weight: 500;
  transition: all 0.25s ease;
}

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

.btn-dark {
  background-color: #000;
  border-color: #000;
}

.btn-outline {
  border: 1px solid #000;
  color: #000;
}

/* =========================================
   NAVBAR
========================================= */

.pdt-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  height: 60px;
  display: none;
  background: transparent;
  color: #fff;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}
.pdt-nav.navbar-sticky,
.pdt-nav.is-mobile-menu-open {
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  color: #111;
}
.pdt-nav__inner {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.pdt-nav__brand {
  display: inline-flex;
  align-items: center;
  height: 60px;
  margin: 0;
  padding: 0;
}
.pdt-nav__logo {
  height: 20px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.25s ease;
}
.pdt-nav.navbar-sticky .pdt-nav__logo,
.pdt-nav.is-mobile-menu-open .pdt-nav__logo {
  filter: none;
}
.pdt-nav__links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: nowrap;
  white-space: nowrap;
  line-height: 1;
}
.pdt-nav__links p,
.pdt-mobile-menu__content p {
  margin: 0;
  padding: 0;
  display: contents;
}
.pdt-nav__links br,
.pdt-mobile-menu__content br {
  display: none;
}
.pdt-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 60px;
  padding: 0 0.1rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  margin: 0;
}
.pdt-nav.navbar-sticky .pdt-nav__link,
.pdt-nav.is-mobile-menu-open .pdt-nav__link {
  color: #111;
}
.pdt-nav__link:hover {
  color: rgba(255, 255, 255, 0.7);
}
.pdt-nav.navbar-sticky .pdt-nav__link:hover,
.pdt-nav.is-mobile-menu-open .pdt-nav__link:hover {
  color: rgba(0, 0, 0, 0.65);
}
.pdt-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 100%;
  height: 2px;
  background-color: #96B414;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.pdt-nav__link:hover::after {
  transform: scaleX(1);
}
.pdt-nav__models {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 60px;
  margin: 0;
  padding: 0;
  line-height: 1;
}
.pdt-nav__panel {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  height: 150px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1200;
}
.pdt-nav__models:hover .pdt-nav__panel,
.pdt-nav__models:focus-within .pdt-nav__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.pdt-nav__panel-inner {
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  padding: 0 2rem;
}
.pdt-nav__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 220px;
  text-decoration: none;
  color: #111;
}
.pdt-nav__card-label {
  font-size: 0.9rem;
  font-weight: 500;
}
.pdt-nav__card-img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
}
.pdt-nav__card:hover .pdt-nav__card-img {
  transform: scale(1.03);
  transition: transform 0.25s ease;
}

.pdt-nav--desktop {
  display: block;
}
.pdt-nav--mobile {
  display: none;
}

.pdt-nav__menu-btn {
  position: relative;
  height: 60px;
  width: 60px;
  border: 0;
  background: transparent;
  padding: 0;
}
.pdt-nav__menu-icon {
  width: 30px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.25s ease;
}
.pdt-nav.navbar-sticky .pdt-nav__menu-icon,
.pdt-nav.is-mobile-menu-open .pdt-nav__menu-icon {
  filter: none;
}

.pdt-mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1300;
}
.pdt-mobile-menu.is-open {
  transform: translateX(0);
}
.pdt-mobile-menu__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 32px;
  line-height: 1;
}
.pdt-mobile-menu__content {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 4.5rem 1.25rem 1.25rem;
}
.pdt-mobile-menu__link {
  color: #111;
  font-size: 1.25rem;
  padding: 0.25rem 0;
}
.pdt-mobile-menu__link--cta {
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .pdt-nav--desktop {
    display: none;
  }
  .pdt-nav--mobile {
    display: block;
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 60px;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #fff;
}

.navbar.fixed-top {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  width: 100%;
}

.navbar.navbar-sticky {
  color: #111;
  height: 60px;
  min-height: 60px;
}

#main-nav {
  background: transparent;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

#main-nav.navbar-sticky {
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* NAV LINKS */

.nav-link,
.st-root-link {
  color: #fff;
  position: relative;
  font-weight: 500;
  transition: color 0.25s ease;
}

/* sticky override */
#main-nav.navbar-sticky .nav-link,
#main-nav.navbar-sticky .st-root-link {
  color: #111 !important;
}

.nav-link:hover,
.st-root-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

#main-nav.navbar-sticky .nav-link:hover,
#main-nav.navbar-sticky .st-root-link:hover {
  color: rgba(0, 0, 0, 0.6);
}

/* underline */

.nav-link::after,
.st-root-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 100%;
  height: 2px;
  background-color: #96B414;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.st-root-link:hover::after,
.nav-link.active::after,
.st-root-link.active::after {
  transform: scaleX(1);
}

/* =========================================
   LOGO
========================================= */

.logo {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

#main-nav .logo {
  position: relative;
  top: -3px;
  width: auto;
  height: 20px;
}

#main-nav .logo.m-3 {
  margin: 0 !important;
}

.navbar-sticky .logo {
  filter: none;
}

@media (min-width: 992px) {
  #main-nav,
  #main-nav .container,
  #main-nav .st-nav-menu,
  #main-nav .st-nav-primary {
    height: 60px;
  }

  .st-nav-menu {
    display: grid;
    grid-template-columns: max-content 1fr max-content;
    align-items: center;
    width: 100%;
  }

  .st-nav-menu > .st-nav-section:first-child {
    justify-self: start;
    width: max-content;
  }

  .link-logo.navbar-brand {
    display: block;
    margin: 0;
    margin-right: 0;
    padding: 0;
    width: max-content;
  }

  .st-nav-primary {
    justify-self: center;
    margin-left: 0 !important;
    display: flex;
    align-items: stretch;
    gap: 0.625rem;
  }

  .st-nav-mobile {
    justify-self: end;
  }

  #main-nav .st-dropdown-root {
    display: none !important;
  }

  #main-nav .nav-models-menu {
    display: flex;
    align-items: center;
    align-self: stretch;
    position: relative;
    height: 60px;
    margin: 0;
    padding: 0;
    line-height: 1;
    vertical-align: middle;
  }

  #main-nav .st-nav-primary > .nav-link,
  #main-nav .nav-models-menu > .st-root-link {
    display: inline-flex;
    align-items: center;
    height: 60px;
    line-height: 1;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  #main-nav .nav-models-menu > .st-root-link {
    align-self: stretch;
  }

  #main-nav .st-nav-primary > .nav-link,
  #main-nav .st-nav-primary > .nav-models-menu {
    margin-right: 0.625rem;
  }

  #main-nav .st-nav-primary > :last-child {
    margin-right: 0;
  }

  #main-nav .nav-models-panel {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    height: 150px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1100;
  }

  #main-nav .nav-models-menu:hover .nav-models-panel,
  #main-nav .nav-models-menu:focus-within .nav-models-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  #main-nav:has(.nav-models-menu:hover),
  #main-nav:has(.nav-models-menu:focus-within) {
    background: #fff;
  }

  #main-nav:has(.nav-models-menu:hover) .logo,
  #main-nav:has(.nav-models-menu:focus-within) .logo {
    filter: none;
  }

  #main-nav:has(.nav-models-menu:hover) .nav-link,
  #main-nav:has(.nav-models-menu:hover) .st-root-link,
  #main-nav:has(.nav-models-menu:focus-within) .nav-link,
  #main-nav:has(.nav-models-menu:focus-within) .st-root-link {
    color: #111 !important;
  }

  #main-nav:has(.nav-models-menu:hover) .nav-link:hover,
  #main-nav:has(.nav-models-menu:hover) .st-root-link:hover,
  #main-nav:has(.nav-models-menu:focus-within) .nav-link:hover,
  #main-nav:has(.nav-models-menu:focus-within) .st-root-link:hover {
    color: rgba(0, 0, 0, 0.6) !important;
  }

  #main-nav .nav-dropdown-gallery {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    height: 100%;
    padding: 0 2rem;
  }

  #main-nav .nav-dropdown-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    width: 168px;
    margin: 0;
    padding: 12px 0 0;
    color: #111;
    line-height: 1;
    text-align: left;
  }

  #main-nav .nav-dropdown-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 168px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  #main-nav .nav-dropdown-image {
    display: block;
    width: 168px;
    height: 70px;
    min-width: 168px;
    min-height: 70px;
    max-width: 168px;
    max-height: 70px;
    object-fit: cover;
    transition: transform 0.2s ease;
  }

  #main-nav .nav-dropdown-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    width: 168px;
    justify-content: flex-start;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #111;
    margin: 0 0 0.125rem;
  }

  #main-nav .nav-dropdown-label::before {
    content: "\2192";
    color: #111;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  #main-nav .nav-dropdown-card:hover .nav-dropdown-thumb {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
  }

  #main-nav .nav-dropdown-card:hover .nav-dropdown-image {
    transform: scale(1.03);
  }

  #main-nav .nav-dropdown-card:hover .nav-dropdown-label::before {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 991.98px) {
  #main-nav-mobile {
    height: 60px;
    min-height: 60px;
    background: transparent;
    transition: background-color 0.25s ease;
  }

  #main-nav-mobile.navbar-sticky,
  #main-nav-mobile.is-mobile-menu-open {
    background: #fff;
  }

  #main-nav-mobile .mobile-nav-content {
    position: relative;
    width: 100vw;
    width: 100dvw;
    min-height: 60px;
    height: 100%;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    background: transparent;
  }

  #main-nav-mobile .st-nav-menu {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 0;
    background: transparent;
  }

  #main-nav-mobile .st-nav-section.nav-item {
    width: auto;
  }

  #main-nav-mobile .st-nav-mobile {
    display: flex !important;
    align-items: center;
    margin-left: auto;
  }

  #main-nav-mobile .link-logo.navbar-brand {
    display: inline-flex;
    align-items: center;
    margin-right: 0;
  }

  #main-nav-mobile .nav-link::after,
  #main-nav-mobile .st-root-link::after,
  #main-nav-mobile .dropdown-item::after {
    display: none !important;
    content: none !important;
  }

  #main-nav-mobile .logo-mobile {
    position: relative;
    top: -3px;
    width: auto;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
  }

  #main-nav-mobile.navbar-sticky .logo-mobile,
  #main-nav-mobile.is-mobile-menu-open .logo-mobile {
    filter: none;
  }

  #main-nav-mobile .navbar-toggler {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 10px;
    top: 8px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: #fff !important;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none !important;
  }

  #main-nav-mobile .mobile-menu-icon {
    display: block;
    width: 30px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.25s ease;
  }

  #main-nav-mobile.navbar-sticky .navbar-toggler,
  #main-nav-mobile.is-mobile-menu-open .navbar-toggler {
    color: #111 !important;
  }

  #main-nav-mobile.navbar-sticky .mobile-menu-icon,
  #main-nav-mobile.is-mobile-menu-open .mobile-menu-icon {
    filter: none;
  }

  #main-nav-mobile .st-popup {
    position: fixed;
    inset: 0;
    display: block !important;
    width: 100vw !important;
    width: 100dvw !important;
    min-width: 100vw !important;
    min-width: 100dvw !important;
    max-width: none !important;
    height: 100vh !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    max-height: none !important;
    margin: 0 !important;
    background: #fff !important;
    color: #111 !important;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1300;
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.12);
    overflow-y: auto;
    overflow-x: hidden;
    pointer-events: none;
    -webkit-overflow-scrolling: touch;
  }

  #main-nav-mobile .st-nav-mobile.st-popup-active .st-popup {
    transform: translateX(0);
    pointer-events: auto;
  }

  #main-nav-mobile .st-popup-container {
    position: relative;
    width: 100% !important;
    max-width: none !important;
    height: 100dvh !important;
    min-height: 100dvh !important;
    padding: 4.75rem 1.25rem 1.5rem;
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff !important;
    color: #111 !important;
    -webkit-overflow-scrolling: touch;
  }

  #main-nav-mobile .mobile-nav-content,
  #main-nav-mobile .st-popup,
  #main-nav-mobile .st-popup-container,
  #main-nav-mobile .st-dropdown-content-group {
    box-sizing: border-box;
  }

  #main-nav-mobile .st-popup-close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 0;
    color: #111 !important;
    text-decoration: none !important;
  }

  #main-nav-mobile .st-popup-close-button::before,
  #main-nav-mobile .st-popup-close-button::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #111;
  }

  #main-nav-mobile .st-popup-close-button::before {
    transform: rotate(45deg);
  }

  #main-nav-mobile .st-popup-close-button::after {
    transform: rotate(-45deg);
  }

  #main-nav-mobile .st-dropdown-content-group {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
  }

  #main-nav-mobile .st-dropdown-content-group h4 {
    margin-bottom: 1.5rem;
    color: #111;
  }

  #main-nav-mobile .st-dropdown-content-group .dropdown-item {
    padding: 0.25rem 0;
    color: #111 !important;
    text-decoration: none !important;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
  }

  #main-nav-mobile .st-dropdown-content-group .dropdown-item:visited,
  #main-nav-mobile .st-dropdown-content-group .dropdown-item:hover,
  #main-nav-mobile .st-dropdown-content-group .dropdown-item:focus,
  #main-nav-mobile .st-dropdown-content-group .dropdown-item:active {
    color: #111 !important;
    text-decoration: none !important;
  }

  #main-nav-mobile .st-dropdown-content-group .dropdown-item + .dropdown-item {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  #main-nav-mobile .st-dropdown-content-group .dropdown-item.text-primary {
    color: #111 !important;
    font-weight: 500;
  }
}

/* =========================================
   HERO
========================================= */

.hero-slide {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 6s ease;
}

.splide__slide.is-active .hero-slide:not(.hero-slide--content) .hero-img {
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08), rgba(0,0,0,0.4));
  z-index: 2;
}

.hero-slide .container,
.hero-content {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 640px;
}

.hero-content h1,
.hero-content p {
  color: #fff;
}

.brand-future-mobility-hero .hero-slide {
  align-items: flex-start;
}

.brand-future-mobility-hero .container {
  display: flex;
  justify-content: flex-end;
  padding-top: clamp(6rem, 12vh, 9rem);
}

.brand-future-mobility-hero .hero-content {
  max-width: 560px;
  text-align: right;
}

.brand-corporate-story-hero .hero-slide {
  align-items: flex-start;
}

.brand-corporate-story-hero .container {
  padding-top: clamp(6rem, 12vh, 9rem);
}

.brand-corporate-story-hero .hero-content {
  max-width: 560px;
}

.brand-corporate-intro {
  margin: 0 !important;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}

.brand-corporate-intro .xp-news-text {
  max-width: 920px;
  margin: 0 auto;
}

.brand-global-talent-hero .hero-slide {
  align-items: flex-start;
}

.brand-global-talent-hero .container {
  display: flex;
  justify-content: center;
  padding-top: clamp(6rem, 12vh, 9rem);
}

.brand-global-talent-hero .hero-content {
  max-width: 720px;
  text-align: center;
}

.brand-global-talent-hero .hero-content h1 {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.brand-global-talent-hero .hero-content h1,
.brand-global-talent-hero .hero-content p {
  color: #000;
}

.brand-story-block {
  margin-top: 0 !important;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding-top: 0;
  padding-bottom: 0;
}

.brand-future-mobility-hero + .brand-story-block {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.brand-story-block + .brand-story-block {
  margin-top: 0 !important;
}

.brand-story-block .row {
  align-items: flex-start !important;
}

.brand-story-block p:empty,
.brand-story-block .container > p,
.brand-story-block .row > p {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* =========================================
   HERO BUTTON (PREMIUM)
========================================= */

.hero-content .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #fff;
  border: 1px solid #fff;
  background: transparent;

  border-radius: 4px;
  padding: 8px 18px;

  overflow: hidden;
  z-index: 1;

  transition: color 0.3s ease, border-color 0.3s ease;
}

/* fill animation */
.hero-content .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #96B414;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  z-index: -1;
}

/* arrow */
.hero-content .btn::after {
  content: "";
  width: 16px;
  height: 16px;
  margin-left: 6px;

  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTExLjU1NSA4LjAwNEw2LjQyMyAyLjY2N0g0LjQ0NGw1LjEyNCA1LjMzNy01LjEyNCA1LjMzaDEuOTkzbDUuMTE4LTUuMzN6IiBmaWxsPSIjZmZmIi8+PC9zdmc+");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  transform: translateY(1px);
  transition: transform 0.3s ease;
}

/* hover */
.hero-content .btn:hover {
  border-color: #96B414;
}

.hero-content .btn:hover::before {
  transform: scaleX(1);
}

.hero-content .btn:hover::after {
  transform: translateX(4px);
}

.hero-content .btn:hover {
  box-shadow: 0 4px 20px rgba(248, 199, 60, 0.3);
}

/* =========================================
   HERO BUTTON VARIANT (FILLED)
========================================= */

.hero-btn--filled {
  border-radius: 4px;
  color: #111;
  background: #fff;
  border: 1px solid #fff;
}

/* arrow should follow text color */
.hero-btn--filled::after {
  filter: invert(0); /* dark arrow */
}

/* hover → green fill */
.hero-btn--filled:hover {
  color: #fff;
  border-color: #96B414;
}

/* use SAME animation layer */
.hero-btn--filled::before {
  background: #96B414;
}

/* arrow stays visible on green */
.hero-btn--filled:hover::after {
  filter: invert(1);
}

/* arrow */
.hero-btn--filled::after {
  color: #8C73C;
}


/* =========================================
   SPLIDE PAGINATION
========================================= */

.splide__pagination {
  bottom: 30px;
  display: flex;
  gap: 12px;
}

.splide__pagination__page {
  width: 40px;
  height: 3px;
  background-color: rgba(255,255,255,0.3);
  transform: skewX(-30deg);
  border-radius: 0;
  opacity: 1;
  transition: all 0.3s ease;
}

.splide__pagination__page::before {
  display: none;
}

.splide__pagination__page.is-active {
  background-color: #96B414;
  transform: skewX(-30deg);
}

/* slider content */
/* =========================================
   NON-HERO SLIDE (CONTENT MODE)
========================================= */

.hero-slide--content {
  background: #fff;
  height: auto;
  min-height: 500px;
  padding: 100px 0;

  align-items: center;
}

/* remove image/overlay if present */
.hero-slide--content .hero-img,
.hero-slide--content .hero-overlay {
  display: none;
}

/* darker text */
.hero-content--dark h1 {
  color: #111;
}

.hero-content--dark p {
  color: #555;
}

/* =========================================
   FULL BLEED SECTIONS INSIDE PAGE CONTAINERS
========================================= */

.section--full-bleed {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.section--full-bleed .splide,
.section--full-bleed .splide__track,
.section--full-bleed .splide__list,
.section--full-bleed .splide__slide {
  width: 100%;
}

.section--full-bleed .hero-slide {
  width: 100vw;
}
/* =========================================
   XP HOME INTRO (SCOPED)
========================================= */

.xp-home-intro {
  background: linear-gradient(
    to bottom,
    #f5f5f5 0%,
    #ffffff 60%
  );
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.xp-home-intro p:empty,
.xp-home-intro .container > p:empty,
.xp-home-intro .row > p {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.width-70 {
  max-width: 70%;
}

.width-80 {
  max-width: 80%;
}

@media (max-width: 768px) {
  .width-70 {
    width: 90%;
    max-width: 100%;
  }
}

/* TEXT */
.xp-home-intro .xp-title,
.brand-media-section .xp-title {
  font-size: 42px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.xp-home-intro .xp-news-text,
.brand-media-section .xp-news-text,
.brand-corporate-intro .xp-news-text {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 1.7;
}

.brand-media-section {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #fff;
}

.brand-global-talent-section {
  padding-top: clamp(5rem, 9vw, 8rem);
}

.brand-media-section picture {
  display: block;
  width: 100%;
}

.brand-media-section .brand-media-img {
  display: block;
  width: 100%;
  max-width: none;
  margin: clamp(1.75rem, 4vw, 2.75rem) auto 0;
  border-radius: 0;
  object-fit: cover;
}

.brand-media-section .brand-media-after {
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
}

.brand-global-talent-section .brand-global-talent-img {
  object-fit: contain;
  background: #fff;
}

.xp-home-intro .xp-subtitle {
  font-size: 18px;
  margin-bottom: 20px;
}

.xp-home-intro .xp-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
}

/* IMAGES */
.xp-home-intro .xp-img {
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
}

/* =========================================
   XP BUTTON - WIPE GREEN LEFT → RIGHT
========================================= */

.xp-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0 10px !important;
  border: 1px solid #111;
  color: #111;
  background: #fff;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.3s ease;
  cursor: pointer;
  z-index: 1;
  line-height: 1;
  height: 32px;
}

.xp-btn br {
  display: none;
}

/* green fill layer */
.xp-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #96B414;
  transition: width 0.4s ease;
  z-index: -1;
}

/* hover effect */
.xp-btn:hover::before {
  width: 100%;
}

.xp-btn:hover {
  color: #fff;
  border-color: #96B414;
}

.xp-news-archive-section,
.xp-news-detail-section {
  padding-top: clamp(2.75rem, 4.5vw, 3.5rem) !important;
}

.xp-news-detail-section {
  margin-bottom: 10px;
}

.xp-news-archive-section .xp-news-card__image-link br {
  display: none;
}

.xp-news-archive-section .xp-news-card__image {
  display: block;
  object-position: center top;
}

.xp-news-archive-section .xp-news-card__image-link + .xp-news-date {
  margin-top: -0.35rem !important;
}

.xp-news-archive-section > p,
.xp-news-detail-section > p,
.xp-news-archive-section .container > p:empty,
.xp-news-detail-section .container > p:empty,
.xp-news-archive-section .row > p:empty,
.xp-news-detail-section .row > p:empty,
.xp-news-archive-section .xp-news-card > p:empty,
.xp-news-detail-section .xp-news-detail__body > p:empty,
.xp-news-archive-section .container > p:has(> br:only-child),
.xp-news-detail-section .container > p:has(> br:only-child),
.xp-news-archive-section .row > p:has(> br:only-child),
.xp-news-detail-section .row > p:has(> br:only-child),
.xp-news-archive-section .xp-news-card > p:has(> br:only-child),
.xp-news-detail-section .xp-news-detail__body > p:has(> br:only-child) {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 0 !important;
  line-height: 0 !important;
}

.xp-news-detail-section .xp-news-detail__image {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  background: #f4f4f4;
}

.xp-news-detail-section .xp-news-detail__meta {
  margin-top: 1.5rem;
  color: #777;
  font-size: 0.9rem;
}

.xp-news-detail-section .xp-news-detail__excerpt {
  max-width: 820px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.xp-news-detail-section .xp-news-detail__body {
  max-width: 860px;
  margin-top: 2rem;
}

.xp-news-detail-section p {
  margin-bottom: 0;
}

.xp-news-detail-section .xp-news-detail__paragraph {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.xp-news-detail-section .xp-news-detail__caption {
  margin-top: 0;
  margin-bottom: 1rem;
}

.xp-news-detail-section .xp-news-detail__subheading {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
  line-height: 1.25;
}

.xp-news-detail-section .xp-news-detail__list {
  padding-left: 1.25rem;
  font-size: 1rem;
  line-height: 1.65;
}

.xp-news-detail-section .xp-news-detail__inline-image {
  width: 100%;
  margin: 1.5rem 0;
  margin-bottom: 0;
  max-height: 580px;
  object-fit: cover;
}

.xp-news-detail-section .xp-news-detail__image-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.75rem;
  width: 100%;
  max-width: 100%;
  margin: 1.5rem 0 0.35rem;
  overflow: hidden;
}

.xp-news-detail-section .xp-news-detail__image-grid p {
  display: contents;
}

.xp-news-detail-section .xp-news-detail__image-grid .xp-news-detail__inline-image,
.xp-news-detail-section .xp-news-detail__image-grid img {
  display: block;
  width: 100% !important;
  min-width: 0;
  height: clamp(180px, 28vw, 320px);
  max-height: none;
  margin: 0 !important;
  object-fit: cover;
}

.xp-news-detail-section .xp-news-detail__image-grid + .xp-news-detail__caption {
  margin-top: 0;
}

.xp-news-detail-section .xp-news-detail__actions {
  margin-top: 2rem;
}

.find-us-hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.find-us-hero-frame {
  width: 100%;
  height: min(72vh, 680px);
  min-height: 420px;
  overflow: hidden;
}

.find-us-hero-img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: cover;
  object-position: center center;
}

.find-us-details {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.find-us-location {
  height: 100%;
}

.find-us-location h3 {
  margin-bottom: 1.25rem;
}

.find-us-detail {
  margin-bottom: 1.25rem;
}

.find-us-detail h4 {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.find-us-detail p {
  margin-bottom: 0;
}

.find-us-detail a {
  color: #111;
  text-decoration: none;
}

.find-us-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (max-width: 767px) {
  .find-us-hero-frame {
    height: auto;
    min-height: 0;
  }

  .find-us-hero-img {
    width: 100vw;
    max-width: 100vw;
    height: auto;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .find-us-details {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .find-us-actions {
    justify-content: center;
  }
}

/* =========================================
   PRODUCT SPECS TABS
========================================= */

.pdt-specs-section .container {
  max-width: 1180px;
}

@media (min-width: 768px) {
  .g6-specs-section .pdt-specs-panel > .row {
    align-items: flex-start !important;
  }

  .g6-specs-section .pdt-specs-image-wrap {
    padding-top: 3.7rem;
  }

  .g6-specs-section .pdt-specs-variant-tabs + .tab-content {
    position: relative;
    min-height: 205px;
  }

  .g6-specs-section .pdt-specs-variant-tabs + .tab-content > .pdt-specs-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }

  .x9-specs-section .container {
    width: 90vw !important;
    max-width: 1440px;
  }

  .x9-specs-section .x9-shared-title {
    margin-bottom: 0.5rem;
  }

  .x9-specs-section .pdt-specs-tabs {
    margin-top: 0.75rem;
    margin-bottom: 1rem;
  }

  .x9-specs-section .pdt-specs-panel .row {
    --bs-gutter-x: 5rem;
  }

  .x9-specs-section .pdt-specs-image-wrap {
    min-height: 240px;
    overflow: hidden;
  }

  .x9-specs-section .pdt-specs-actions {
    margin-top: 1.5rem;
  }

  .x9-specs-section .pdt-specs-actions > [class*="col-"] {
    flex: 0 0 auto;
    width: auto;
  }

  .x9-specs-section .pdt-specs-actions .xp-btn {
    width: auto !important;
    min-width: 190px;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .x9-specs-section .pdt-specs-grid {
    column-gap: 1.2rem;
  }
}

.pdt-specs-tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem auto 2.5rem;
}

.pdt-specs-tab {
  border: 0;
  min-width: 145px;
  border-bottom: 2px solid transparent;
  background: transparent;
  padding: 0 0.75rem 0.6rem;
  color: #777;
  font-size: 0.78rem;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.pdt-specs-tab.active,
.pdt-specs-tab.is-active {
  color: #111;
  font-weight: 600;
  border-bottom-color: #96B414;
}

.pdt-specs-model-tabs {
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pdt-specs-model-tabs .pdt-specs-tab {
  min-width: 72px;
  height: 34px;
  border: 1px solid #111;
  border-radius: 4px;
  padding: 0 0.75rem;
  color: #111;
  font-size: 0.85rem;
  font-weight: 400;
}

.pdt-specs-model-tabs .pdt-specs-tab.active,
.pdt-specs-model-tabs .pdt-specs-tab.is-active {
  background: #000;
  color: #fff;
  border-color: #000;
  font-weight: 400;
}

.pdt-specs-variant-tabs {
  justify-content: flex-start;
  gap: 2.25rem;
  width: 100%;
  margin: 0 0 1rem;
}

.pdt-specs-variant-tabs .pdt-specs-tab {
  flex: 0 0 auto;
  min-width: 0;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  font-size: 1rem;
}

.pdt-specs-panel {
  display: none;
}

.pdt-specs-panel.active,
.pdt-specs-panel.show {
  display: block;
}

.pdt-specs-image-wrap {
  min-height: 300px;
  display: flex;
  align-items: center;
}

.pdt-specs-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.x9-specs-section .pdt-specs-image {
  width: 83.2%;
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  transform: none;
}

.pdt-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 2.25rem;
}

.pdt-specs-item {
  min-height: 34px;
}

.pdt-specs-item-title {
  margin-bottom: 0.05rem;
  color: #777;
  font-size: 0.62rem;
  line-height: 1.15;
}

.pdt-specs-item-value {
  margin: 0;
  color: #111;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.1;
}

.pdt-specs-actions {
  justify-content: center;
  margin-top: 3rem;
}

.pdt-specs-actions .xp-btn {
  min-width: 150px;
  height: 34px;
  padding: 0 1rem;
  font-size: 0.78rem;
}

/* =========================================
   PRODUCT FULL-WIDTH HERO MEDIA
========================================= */

.pdt-image-hero {
  height: 100vh;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.pdt-image-hero-picture {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.pdt-image-hero .hero-img {
  height: 100%;
  object-fit: cover;
}

.pdt-image-hero .container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 14vh;
  z-index: 3;
}

.pdt-image-hero-content {
  width: 100%;
  max-width: none;
}

.pdt-image-hero-content h1 {
  color: #fff;
  font-weight: 500;
}

.pdt-compact-title-hero-section .pdt-image-hero-content h1 {
  font-size: 1.8rem;
  line-height: 1.2;
}

.pdt-compact-title-hero-section .pdt-image-hero-content .lead {
  font-size: 0.76rem;
  line-height: 1.45;
}

.pdt-image-hero-content .display-4.hero-animate,
.pdt-first-hero-title .display-4.hero-animate {
  font-size: 2rem;
}

.g6-page .g6-hero-section {
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  overflow: hidden !important;
}

.g6-page > p {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 0 !important;
  line-height: 0 !important;
}

.g6-page > p + .g6-starship-section,
.g6-hero-section + p {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.g6-page .g6-hero-section .splide,
.g6-page .g6-hero-section .splide__track,
.g6-page .g6-hero-section .splide__list,
.g6-page .g6-hero-section .splide__slide,
.g6-page .g6-hero-section .pdt-first-hero {
  height: 100vh !important;
  max-height: none !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.g6-page .g6-starship-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.g6-page .g6-starship-section .pdt-image-hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
  background: #000;
}

.g6-page .g6-starship-section .pdt-image-hero-picture,
.g6-page .g6-starship-section .hero-img {
  display: block;
  margin-top: 0 !important;
}

.g6-page .g6-starship-section .g6-starship-hero-img {
  object-position: center top;
}

.g6-page .g6-starship-section .pdt-shared-title,
.g6-page .g6-storage-section .pdt-shared-title,
.g6-page .g6-range-section .pdt-shared-title {
  font-size: clamp(2.1rem, 3.1vw, 3.25rem) !important;
  line-height: 1.12 !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

.g6-page .g6-starship-section .pdt-shared-subtitle {
  max-width: 760px;
  margin: 0.75rem auto 0;
  color: #fff;
  font-size: clamp(1rem, 1.25vw, 1.2rem) !important;
  line-height: 1.45 !important;
  letter-spacing: 0 !important;
}

.g6-page .g6-design-section {
  padding-top: clamp(5rem, 8vw, 8rem) !important;
}

.g6-page .g6-charging-video-section,
.g6-page .g6-specs-section {
  padding-top: clamp(5rem, 8vw, 8rem) !important;
}

.g6-page .g6-feature-video-section {
  padding-top: clamp(5rem, 8vw, 8rem) !important;
  background: #fff;
}

.pdt-first-hero-title,
.x9-first-hero-title {
  opacity: 1;
}

.pdt-first-hero-title h1 {
  font-size: 4.4rem;
  line-height: 1.08;
}

@media (min-width: 768px) {
  .pdt-first-hero-title h1,
  .x9-first-hero-title h1 {
    font-size: clamp(3.2rem, 4.15vw, 4.4rem) !important;
    line-height: 1.08 !important;
  }

  .g6-page .pdt-first-hero-title h1 {
    font-size: clamp(3rem, 3.55vw, 3.74rem) !important;
  }

  .pdt-first-hero-title .lead,
  .x9-first-hero-title .lead {
    font-size: clamp(1.18rem, 1.45vw, 1.55rem) !important;
    line-height: 1.35 !important;
  }

  .pdt-first-hero-stat h4,
  .x9-first-hero-stat h4 {
    font-size: clamp(1rem, 1.12vw, 1.2rem) !important;
    line-height: 1.2 !important;
  }

  .pdt-first-hero-stat p,
  .x9-first-hero-stat p {
    font-size: clamp(0.68rem, 0.72vw, 0.78rem) !important;
    line-height: 1.3 !important;
  }

  .pdt-first-hero-actions .xp-btn,
  .x9-first-hero-actions .xp-btn {
    font-size: 0.92rem !important;
    line-height: 1.1 !important;
  }
}

.pdt-first-hero-title .lead {
  font-size: 1.55rem;
  line-height: 1.35;
  margin-top: 0.75rem;
}

.pdt-first-hero-stats-wrap,
.x9-first-hero-stats-wrap {
  z-index: 3;
}

.pdt-first-hero-stats,
.x9-first-hero-stats {
  align-items: flex-start;
}

.pdt-first-hero-stat h4,
.pdt-first-hero-stat p,
.x9-first-hero-stat h4,
.x9-first-hero-stat p {
  margin-bottom: 0;
}

.pdt-first-hero-actions .xp-btn {
  min-width: 150px;
  height: 34px;
  border-color: #fff;
  color: #fff;
  background: transparent !important;
}

.pdt-first-hero-actions .xp-btn:hover {
  color: #fff;
  background: transparent !important;
}

.x9-first-hero-actions .xp-btn {
  min-width: 150px;
  height: 34px;
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.pdt-first-hero.is-ready .pdt-first-hero-heading-row,
.pdt-first-hero.is-ready .pdt-first-hero-title .lead,
.pdt-first-hero.is-ready .pdt-first-hero-actions {
  opacity: 0;
  transform: translateY(28px);
  transition: transform 0.7s ease-out, opacity 0.7s ease-out;
}

.pdt-first-hero.is-visible .pdt-first-hero-heading-row,
.pdt-first-hero.is-visible .pdt-first-hero-title .lead,
.pdt-first-hero.is-visible .pdt-first-hero-actions {
  opacity: 1;
  transform: translateY(0);
}

.pdt-first-hero.is-visible .pdt-first-hero-title .lead {
  transition-delay: 0.12s;
}

.pdt-first-hero.is-visible .pdt-first-hero-actions {
  transition-delay: 0.28s;
}

.pdt-video-hero {
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
}

.pdt-video-shell {
  position: relative;
}

.pdt-video-shell .pdt-video-el {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdt-video-play {
  display: none;
}

.pdt-mobile-video-modal {
  display: none;
}

.pdt-contained-video-section {
  background: #fff;
}

.pdt-contained-video-copy {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.pdt-contained-video-shell {
  position: relative;
  margin-top: 2rem;
  overflow: hidden;
  background: transparent;
}

.pdt-contained-video-el {
  display: block;
  width: 100%;
  height: auto;
}

.pdt-feature-stack-section {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.pdt-feature-stack-section + .pdt-feature-stack-section {
  margin-top: 0;
  padding-top: 0.5rem !important;
}

.pdt-feature-stack-section .row {
  --bs-gutter-x: 4rem;
  --bs-gutter-y: 0;
  align-items: flex-start !important;
}

.pdt-feature-stack-section .xp-title {
  margin-bottom: 0.75rem;
}

.pdt-feature-stack-section .xp-news-text {
  margin-bottom: 0.75rem;
}

.pdt-feature-image-col {
  overflow: hidden;
  border-radius: 6px;
  height: clamp(300px, 28vw, 430px);
}

.pdt-feature-stack-section .xp-news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transform-origin: center;
  border-radius: inherit;
}

@media (min-width: 768px) {
  .g6-page .pdt-feature-image-col {
    height: auto;
    overflow: visible;
  }

  .g6-page .pdt-feature-stack-section .xp-news-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: none;
  }
}

/* =========================================
   PRODUCT TABBED MEDIA
========================================= */

.pdt-tabbed-media-section {
  background: #fff;
}

.pdt-tabbed-media-display {
  text-align: center;
}

.pdt-tabbed-media-frame {
  width: 80%;
  max-height: 72vh;
  aspect-ratio: 1484 / 742;
  object-fit: cover;
  background: #000;
}

.pdt-tabbed-media-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.pdt-tabbed-media-tab {
  border: 0;
  border-bottom: 1px solid #d9d9d9;
  background: transparent;
  color: #777;
  padding: 0 0.25rem 0.75rem;
  font-size: 0.78rem;
  line-height: 1.3;
  transition: color 0.2s ease;
  flex: 1 1 0;
  width: 0;
  max-width: none;
  text-align: center;
}

.pdt-tabbed-media-tab.active,
.pdt-tabbed-media-tab.is-active {
  color: #111;
  font-weight: 600;
  border-bottom-color: #96B414;
  border-bottom-width: 2px;
}

.pdt-tabbed-media-copy {
  width: 80%;
  margin: 1.25rem auto 0;
  text-align: center;
  color: #111;
  font-size: 0.95rem;
  line-height: 1.5;
}

.pdt-feature-carousel {
  width: 100%;
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
}

.pdt-feature-carousel .splide {
  width: 100%;
  height: 100%;
}

.pdt-feature-carousel .splide__track {
  height: 100%;
  padding: 0;
}

.pdt-feature-carousel .splide__list,
.pdt-feature-carousel .splide__slide {
  height: 100%;
  align-items: center;
}

.pdt-feature-carousel .splide__slide {
  opacity: 1;
  transform: none;
  transition: none;
  display: flex;
  justify-content: center;
}

.pdt-feature-carousel .splide__slide.is-active,
.pdt-feature-carousel .splide__slide.is-target {
  opacity: 1;
  transform: none;
}

.pdt-feature-carousel .splide__arrows {
  pointer-events: none;
}

.pdt-feature-carousel .splide__arrow {
  pointer-events: auto;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 0;
  background: rgba(17, 17, 17, 0.7);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdt-feature-carousel .splide__arrow svg {
  display: none;
}

.pdt-feature-carousel .splide__arrow--prev::before {
  content: "‹";
}

.pdt-feature-carousel .splide__arrow--next::before {
  content: "›";
}

.pdt-feature-carousel .text-center {
  width: 100%;
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}

.pdt-feature-carousel .xp-img {
  max-height: 70vh;
  object-fit: contain;
}

.pdt-home-product-section,
.pdt-home-values-section {
  background: #fff;
}

.pdt-home-product-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.pdt-home-product-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.pdt-home-product-tab {
  border: 0;
  background: transparent;
  color: #777;
  min-width: 0;
  padding: 0 0.25rem;
  font-size: 0.95rem;
  line-height: 1.2;
  text-align: center;
  transition: color 0.2s ease, font-weight 0.2s ease;
}

.pdt-home-product-tab.is-active {
  color: #111;
  font-weight: 600;
}

.pdt-home-product-card {
  position: relative;
  overflow: hidden;
  min-height: 64vh;
  background: #fff;
}

.pdt-home-product-image-crop {
  position: relative;
  overflow: hidden;
  height: 54vh;
}

.pdt-home-value-slide {
  position: relative;
  overflow: hidden;
  height: 56vh;
  background: #fff;
  transform: scale(0.92);
  transition: transform 0.22s ease;
}

.pdt-home-value-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.68);
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.pdt-home-values-section .splide__track {
  overflow: hidden;
  padding: 4.5rem 0;
}

.pdt-home-values-section .splide__list {
  align-items: center;
}

.pdt-home-values-section .splide__slide {
  padding: 0 0.75rem;
}

.pdt-home-values-section .splide__slide.is-active .pdt-home-value-slide,
.pdt-home-values-section .splide__slide.is-visible.is-active .pdt-home-value-slide {
  transform: scale(1.2);
}

.pdt-home-values-section .splide__slide.is-active .pdt-home-value-slide::after,
.pdt-home-values-section .splide__slide.is-visible.is-active .pdt-home-value-slide::after {
  opacity: 0;
}

.pdt-home-product-img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 980px);
  height: 100%;
  margin: 2rem auto 0;
  object-fit: contain;
  transform: scale(1.8);
  transform-origin: center center;
}

.pdt-home-product-img--x9 {
  max-height: 100vh;
  transform: scale(1.71);
}

.pdt-home-product-img--g6 {
  transform: scale(1);
}

.pdt-home-product-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  transform: translate(5vw, -8vh) scale(0.5);
  transform-origin: center center;
}

.pdt-home-product-bg--x9 {
  left: -30%;
}

.pdt-home-value-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdt-home-product-copy {
  position: relative;
  z-index: 2;
  width: min(420px, 84%);
  margin: 1.25rem auto 0;
  color: #111;
  text-align: center;
  clear: both;
}

.pdt-home-product-copy > * {
  opacity: 0;
  transform: translateY(18px);
}

.pdt-home-product-section .splide__slide.is-active .pdt-home-product-copy > * {
  animation: pdtHomeProductCopyUp 0.5s ease forwards;
}

.pdt-home-product-section .splide__slide.is-active .pdt-home-product-copy .xp-btn {
  animation-delay: 0.08s;
}

.pdt-home-value-copy {
  position: absolute;
  left: 8%;
  bottom: 10%;
  z-index: 2;
  width: min(420px, 84%);
  color: #fff;
}

.pdt-home-value-copy .xp-title,
.pdt-home-value-copy .xp-news-text {
  color: #fff;
}

.pdt-home-product-copy .xp-title,
.pdt-home-value-copy .xp-title {
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

.pdt-home-product-copy .xp-btn {
  margin-top: 0.25rem;
  border-color: #111;
  color: #111;
  background: transparent;
}

.pdt-home-product-copy .xp-news-text {
  margin-bottom: 0.25rem;
}

@keyframes pdtHomeProductCopyUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .brand-future-mobility-hero,
  .brand-future-mobility-hero .hero-slide {
    width: 100svw !important;
    min-height: 100svh !important;
    height: 100svh !important;
    overflow: hidden !important;
    background: #fff;
  }

  .brand-future-mobility-hero picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
  }

  .brand-future-mobility-hero .hero-img {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100svw;
    max-width: 100svw;
    height: auto !important;
    min-height: 0 !important;
    object-fit: contain;
    object-position: top center;
    background: #fff;
  }

  .brand-future-mobility-hero .container {
    height: 100% !important;
    min-height: 100% !important;
  }

  .brand-corporate-story-hero .hero-slide {
    display: flex;
    flex-direction: column;
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
    background: #fff;
  }

  .brand-corporate-story-hero .hero-img {
    position: relative !important;
    inset: auto;
    order: 2;
    display: block;
    width: 100svw;
    max-width: 100svw;
    height: auto !important;
    aspect-ratio: 2640 / 1484;
    object-fit: contain;
  }

  .brand-corporate-story-hero .container {
    position: relative;
    inset: auto;
    order: 1;
    display: block;
    height: auto !important;
    min-height: 0 !important;
    padding: 1.5rem 1rem 0.75rem;
  }

  .brand-corporate-story-hero .hero-content {
    max-width: none;
    text-align: center;
  }

  .brand-corporate-story-hero .hero-content h1,
  .brand-corporate-story-hero .hero-content p {
    color: #111;
  }

  .brand-global-talent-hero .hero-slide {
    display: flex;
    flex-direction: column;
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
    background: #fff;
  }

  .brand-global-talent-hero picture {
    position: relative;
    inset: auto;
    order: 2;
    display: block;
    width: 100svw;
    max-width: 100svw;
    aspect-ratio: 650 / 884;
  }

  .brand-global-talent-hero .hero-img {
    position: absolute !important;
    inset: 0;
    width: 100svw;
    max-width: 100svw;
    height: 100% !important;
    object-fit: contain;
    background: #fff;
  }

  .brand-global-talent-hero .container {
    position: relative;
    inset: auto;
    order: 1;
    display: block;
    height: auto !important;
    min-height: 0 !important;
    padding: 1.5rem 1rem 0.75rem;
  }

  .brand-global-talent-hero .hero-content {
    max-width: none;
    text-align: center;
  }

  .brand-global-talent-hero .hero-content h1,
  .brand-global-talent-hero .hero-content p {
    color: #111;
  }

  .xp-home-intro .xp-title,
  .brand-media-section .xp-title,
  .brand-values-title {
    font-size: 1.7rem;
    line-height: 1.15;
    letter-spacing: 0;
  }

  .xp-home-intro .xp-news-text,
  .brand-media-section .xp-news-text,
  .brand-corporate-intro .xp-news-text {
    font-size: 15px;
    line-height: 1.65;
  }

  .brand-media-section {
    padding: 2.75rem 0;
  }

  .brand-global-talent-section {
    padding-top: 4.5rem;
  }

  .g6-specs-section {
    padding-top: 4rem !important;
  }

  .pdt-specs-section .pdt-shared-title,
  .pdt-specs-section .x9-shared-title {
    text-align: center !important;
  }

  .pdt-specs-tabs {
    gap: 0.75rem;
    margin: 1rem auto 1.5rem;
  }

  .pdt-specs-tab {
    min-width: 0;
    flex: 1 1 0;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    font-size: 0.74rem;
  }

  .pdt-specs-model-tabs {
    margin-bottom: 1.25rem;
  }

  .pdt-specs-model-tabs .pdt-specs-tab {
    height: 34px;
    font-size: 0.78rem;
  }

  .g6-specs-section .pdt-specs-model-tabs {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .g6-specs-section .pdt-specs-model-tabs .pdt-specs-tab {
    flex: 0 0 auto;
    min-width: 52px;
    height: 28px;
    padding: 0 0.45rem;
    font-size: 0.72rem;
  }

  .pdt-specs-variant-tabs {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .pdt-specs-variant-tabs .pdt-specs-tab {
    flex: 1 1 0;
    font-size: 0.78rem;
  }

  .g6-specs-section .pdt-specs-variant-tabs {
    width: 70vw;
    max-width: 70vw;
    margin-right: auto;
    margin-left: auto;
  }

  .g6-specs-section .pdt-specs-variant-tabs .pdt-specs-tab {
    padding-right: 0;
    padding-left: 0;
  }

  .g6-specs-section .pdt-specs-grid {
    width: 70vw;
    max-width: 70vw;
    margin-right: auto;
    margin-left: auto;
  }

  .pdt-specs-image-wrap {
    min-height: auto;
    margin-bottom: 1.5rem;
  }

  .x9-specs-section .pdt-specs-image-wrap {
    margin-bottom: 0.5rem;
  }

  .pdt-specs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem 1.1rem;
  }

  .pdt-specs-item-title {
    font-size: 0.6rem;
  }

  .pdt-specs-item-value {
    font-size: 0.72rem;
  }

  .x9-specs-section .pdt-specs-item-title,
  .x9-specs-section .pdt-specs-item-value {
    font-size: 0.84rem;
    line-height: 1.25;
  }

  .pdt-video-hero {
    height: 100svh !important;
    min-height: 100svh !important;
    max-height: none !important;
    overflow: hidden !important;
  }

  .g6-page .section--full-bleed:has(.pdt-video-hero),
  .g6-page .pdt-video-hero,
  .g6-page .pdt-video-shell {
    background: #fff !important;
  }

  .g6-page .section--full-bleed:has(.pdt-video-hero) {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  .g6-page .pdt-video-hero {
    height: 100svh !important;
    min-height: 100svh !important;
    max-height: 100svh !important;
    overflow: hidden !important;
  }

  .g6-page .pdt-video-shell {
    height: 100% !important;
    overflow: hidden !important;
  }

  .g6-page .pdt-video-shell .pdt-video-el {
    display: block;
    height: 100% !important;
    object-fit: cover;
  }

  .pdt-image-hero {
    height: 100svh;
    min-height: 100svh;
  }

  .pdt-image-hero-content {
    padding: 0 1.25rem;
  }

  .pdt-image-hero .container {
    padding-top: 12vh;
  }

  .pdt-image-hero-content h1 {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .pdt-compact-title-hero-section .pdt-image-hero-content h1 {
    font-size: 1.08rem;
  }

  .pdt-compact-title-hero-section .pdt-image-hero-content .lead {
    font-size: 0.62rem;
  }

  .g6-page .pdt-compact-title-hero-section .pdt-image-hero-content h1 {
    font-size: 2rem;
    line-height: 1.22;
    font-weight: 500;
  }

  .g6-page .pdt-compact-title-hero-section .pdt-image-hero-content .lead {
    max-width: 86vw;
    margin: 0.5rem auto 0;
    font-size: 0.95rem;
    line-height: 1.38;
  }

  .g6-page .g6-starship-hero-img {
    width: 100vw;
    max-width: 100vw;
    left: 50%;
    object-fit: cover;
    object-position: top center;
    transform: translateX(-50%);
  }

  .g6-page .pdt-image-hero {
    height: 100svh !important;
    min-height: 100svh !important;
    overflow: hidden !important;
  }

  .g6-page .pdt-image-hero .container {
    height: 100% !important;
    min-height: 100% !important;
  }

  .g6-page .pdt-image-hero:has(.g6-starship-hero-content) {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 390 / 520;
    overflow: hidden !important;
    background: #000;
  }

  .g6-page .pdt-image-hero:has(.g6-starship-hero-content) .pdt-image-hero-picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
  }

  .g6-page .pdt-image-hero .container:has(.g6-starship-hero-content) {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 1.5rem 1rem 0;
  }

  .g6-page .g6-starship-hero-content {
    padding: 0;
  }

  .g6-page .g6-starship-hero-content h1,
  .g6-page .g6-starship-hero-content .lead,
  .g6-page .g6-starship-hero-content .pdt-shared-subtitle {
    color: #fff;
  }

  .g6-page .g6-starship-section .pdt-shared-title,
  .g6-page .g6-storage-section .pdt-shared-title,
  .g6-page .g6-range-section .pdt-shared-title {
    font-size: 2rem !important;
    line-height: 1.22 !important;
    font-weight: 400 !important;
    text-align: center !important;
  }

  .g6-page .g6-starship-section .pdt-shared-subtitle {
    max-width: 86vw;
    margin: 0.5rem auto 0;
    font-size: 0.95rem !important;
    line-height: 1.38 !important;
    text-align: center !important;
  }

  .g6-page .g6-front-comfort-title {
    font-size: 1.7rem;
  }

  .g6-page .g6-storage-hero-img,
  .g6-page .g6-range-hero-img {
    object-fit: contain;
    transform: scale(0.85);
    background: #000;
  }

  .g6-page .pdt-contained-video-section {
    padding-top: 4rem !important;
    padding-bottom: 0 !important;
    background: #fff !important;
  }

  .g6-page .pdt-contained-video-shell {
    margin-top: 1.5rem;
    margin-bottom: 0 !important;
    background: #fff !important;
    line-height: 0;
  }

  .g6-page .pdt-contained-video-el {
    display: block;
    width: 100%;
    background: #fff !important;
  }

  .g6-page .pdt-image-hero:has(.g6-storage-hero-img) {
    display: flex;
    flex-direction: column;
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
    background: #fff;
  }

  .g6-page .pdt-image-hero:has(.g6-storage-hero-img) .pdt-image-hero-picture {
    position: relative;
    inset: auto;
    order: 2;
    display: block;
    width: 100svw;
    max-width: 100svw;
    aspect-ratio: 3840 / 1960;
    background: #000;
  }

  .g6-page .pdt-image-hero:has(.g6-storage-hero-img) .container {
    position: relative;
    inset: auto;
    order: 1;
    display: block;
    height: auto !important;
    min-height: 0 !important;
    padding: 1.5rem 1rem 0.75rem;
  }

  .g6-page .pdt-image-hero:has(.g6-storage-hero-img) .pdt-image-hero-content h1,
  .g6-page .pdt-image-hero:has(.g6-range-hero-img) .pdt-image-hero-content h1 {
    color: #111;
  }

  .g6-page .g6-storage-hero-img {
    width: 100svw;
    max-width: 100svw;
    height: 100% !important;
    object-fit: contain;
    transform: none;
  }

  .g6-page .pdt-image-hero:has(.g6-range-hero-img) {
    display: flex;
    flex-direction: column;
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
    background: #fff;
  }

  .g6-page .pdt-image-hero:has(.g6-range-hero-img) .pdt-image-hero-picture {
    position: relative;
    inset: auto;
    order: 2;
    display: block;
    width: 100svw;
    max-width: 100svw;
    aspect-ratio: 1 / 1;
    background: #fff;
  }

  .g6-page .pdt-image-hero:has(.g6-range-hero-img) .container {
    position: relative;
    inset: auto;
    order: 1;
    display: block;
    height: auto !important;
    min-height: 0 !important;
    padding: 1.5rem 1rem 0.75rem;
  }

  .g6-page .g6-range-hero-img {
    width: 100svw;
    max-width: 100svw;
    height: 100% !important;
    object-fit: contain;
    transform: none;
    background: #fff;
  }

  .g6-page .g6-design-section {
    padding-top: 4.5rem !important;
  }

  .g6-page .g6-charging-video-section,
  .g6-page .g6-specs-section {
    padding-top: 4.5rem !important;
  }

  .g6-page .g6-feature-video-section {
    padding-top: 4.5rem !important;
  }

  .g6-page .pdt-feature-stack-section .xp-title,
  .g6-page .pdt-contained-video-section .xp-title,
  .g6-page .pdt-feature-carousel .text-center .xp-title {
    font-size: 2rem;
    line-height: 1.24;
  }

  .g6-page .pdt-feature-stack-section .xp-news-text,
  .g6-page .pdt-contained-video-copy,
  .g6-page .pdt-feature-carousel .text-center .xp-news-text {
    font-size: 0.95rem;
    line-height: 1.42;
  }

  .pdt-first-hero-title {
    left: 7% !important;
    top: 10% !important;
    width: 86% !important;
    padding: 0 1rem;
  }

  .pdt-first-hero-title h1 {
    font-size: 2rem;
  }

  .pdt-first-hero-title .lead {
    font-size: 0.95rem;
    margin-top: 0.5rem;
  }

  .pdt-first-hero-stats-wrap {
    bottom: 4% !important;
    padding: 0 1rem;
  }

  .pdt-first-hero-stats {
    --bs-gutter-y: 0.65rem;
  }

  .pdt-first-hero-stat {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .pdt-first-hero-actions {
    gap: 0.5rem !important;
    margin-top: 0.75rem !important;
  }

  .x9-first-hero-actions {
    gap: 0.5rem !important;
    margin-top: 0.75rem !important;
  }

  .pdt-first-hero-actions .xp-btn,
  .x9-first-hero-actions .xp-btn {
    min-width: 132px;
    height: 32px;
    font-size: 0.72rem;
  }

  .pdt-contained-video-shell {
    margin-top: 1.25rem;
  }

  .pdt-mobile-video-modal.is-open {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.92);
  }

  .pdt-mobile-video-modal-dialog {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pdt-mobile-video-modal-player {
    width: 100%;
    max-height: calc(100vh - 5rem);
    object-fit: contain;
    background: #000;
  }

  .pdt-mobile-video-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pdt-video-shell,
  .pdt-contained-video-shell {
    overflow: hidden;
  }

  .pdt-video-shell.is-overlay-visible .pdt-video-play,
  .pdt-contained-video-shell.is-overlay-visible .pdt-video-play {
    display: flex;
  }

  .pdt-video-play {
    position: absolute;
    inset: 0;
    z-index: 4;
    border: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.18);
    align-items: center;
    justify-content: center;
  }

  .pdt-video-play::before {
    content: "";
    width: 64px;
    height: 64px;
    background: #fff;
    -webkit-mask: url('../img/xpeng_play_icon.svg') center / contain no-repeat;
    mask: url('../img/xpeng_play_icon.svg') center / contain no-repeat;
  }

  .pdt-feature-stack-section {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .pdt-feature-stack-section + .pdt-feature-stack-section {
    padding-top: 0.5rem !important;
  }

  .pdt-feature-stack-section .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0.75rem;
  }

  .pdt-feature-image-col {
    height: auto;
  }

  .pdt-feature-stack-section .xp-news-img {
    height: auto;
    object-fit: initial;
  }

  .pdt-tabbed-media-frame,
  .pdt-tabbed-media-tabs,
  .pdt-tabbed-media-copy {
    width: 100%;
  }

  .pdt-tabbed-media-tab {
    flex: 1 1 50%;
    width: auto;
    font-size: 0.72rem;
  }

  .pdt-tabbed-media-copy {
    font-size: 0.82rem;
  }

  .pdt-feature-carousel {
    min-height: auto;
    max-height: none;
    display: block;
  }

  .pdt-feature-carousel .splide,
  .pdt-feature-carousel .splide__track,
  .pdt-feature-carousel .splide__list,
  .pdt-feature-carousel .splide__slide {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
  }

  .pdt-feature-carousel .splide__track {
    padding: 0;
  }

  .pdt-feature-carousel .splide__list,
  .pdt-feature-carousel .splide__slide {
    align-items: flex-start !important;
  }

  .pdt-feature-carousel .text-center {
    width: 100%;
    min-height: auto;
    max-height: none;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .pdt-feature-carousel .text-center .xp-img {
    order: 1;
    width: 100%;
    max-height: none;
    margin-top: 0 !important;
    margin-bottom: 1rem;
  }

  .pdt-feature-carousel .text-center .xp-title {
    order: 2;
    margin-bottom: 0.5rem;
  }

  .pdt-feature-carousel .text-center .xp-news-text {
    order: 3;
  }

  #g6DesignMobileSplide {
    padding-bottom: 2.5rem;
  }

  #g6DesignMobileSplide .splide__pagination {
    right: 0;
    bottom: 0.5rem;
    left: 0;
    justify-content: center;
  }

  #g6DesignMobileSplide .splide__pagination__page {
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background-color: rgba(17, 17, 17, 0.24);
  }

  #g6DesignMobileSplide .splide__pagination__page.is-active {
    background-color: #96B414;
    transform: none;
  }

  .pdt-home-product-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .pdt-home-product-tabs {
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .pdt-home-product-tab {
    font-size: 0.82rem;
  }

  .pdt-home-product-card {
    min-height: 58vh;
  }

  .pdt-home-product-image-crop {
    height: 40vh;
  }

  .pdt-home-value-slide {
    height: 56vh;
    transform: scale(0.94);
  }

  .pdt-home-product-img {
    margin-top: 1rem;
  }

  .pdt-home-product-img--x9 {
    transform: scale(1.2);
  }

  .pdt-home-product-bg {
    transform: translate(5vw, -8vh) scale(0.5);
  }

  .pdt-home-value-img {
    height: 100%;
  }

  .pdt-home-value-copy {
    left: 1.25rem;
    bottom: 1.5rem;
    width: calc(100% - 2.5rem);
  }

  .pdt-home-product-copy .xp-title,
  .pdt-home-value-copy .xp-title {
    font-size: 1.35rem;
  }

}

/* =========================================
   FOOTER
========================================= */

.site-footer {
  color: #111;
}

body:has(.xp-sticky-action-footer) .site-footer {
  margin-bottom: 72px;
}

.xp-sticky-action-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1250;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 72px;
  min-height: 72px;
  padding: 7px clamp(18px, 4vw, 48px) calc(7px + env(safe-area-inset-bottom));
  background: #96B414;
  color: #fff;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.12);
}

.xp-sticky-action-footer br {
  display: none;
}

.xp-sticky-action-footer p {
  display: contents;
  margin: 0;
  padding: 0;
}

.xp-sticky-action-footer__primary {
  display: none;
}

.xp-sticky-action-footer__primary::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: #96B414;
  transition: width 0.4s ease;
  z-index: -1;
}

.xp-sticky-action-footer__primary:hover,
.xp-sticky-action-footer__primary:focus {
  color: #fff;
  border-color: #96B414;
}

.xp-sticky-action-footer__primary:hover::before,
.xp-sticky-action-footer__primary:focus::before {
  width: 100%;
}

.xp-sticky-action-footer__links {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(4rem, 12vw, 10rem);
  width: 100%;
}

.xp-sticky-action-footer__link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.22rem;
  min-width: 128px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  transition: color 0.3s ease;
}

.xp-sticky-action-footer__link--mobile {
  display: inline-flex;
}

.xp-sticky-action-footer__link:hover,
.xp-sticky-action-footer__link:focus {
  color: #111;
}

.xp-sticky-action-footer__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: currentColor;
}

.xp-sticky-action-footer__icon svg,
.xp-sticky-action-footer__icon img,
.xp-sticky-action-footer__icon i {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.xp-sticky-action-footer__icon i {
  font-size: 1.18rem;
  line-height: 1;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.footer-social__link {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  color: #111;
  text-decoration: none;
}

@media (max-width: 767.98px) {
  body:has(.xp-sticky-action-footer) .site-footer {
    margin-bottom: 62px;
  }

  .xp-sticky-action-footer {
    height: 62px;
    min-height: 62px;
    padding: 8px 16px calc(8px + env(safe-area-inset-bottom));
  }

  .xp-sticky-action-footer__primary {
    display: none;
    margin-top: 0;
  }

  .xp-sticky-action-footer__links {
    justify-content: space-between;
    gap: 0.5rem;
    max-width: 380px;
  }

  .xp-sticky-action-footer__link {
    flex: 1 1 0;
    min-width: 0;
    gap: 0.16rem;
    font-size: 0.68rem;
  }

  .xp-sticky-action-footer__icon {
    width: 16px;
    height: 16px;
  }

  .footer-social {
    justify-content: center;
  }
}

/* =========================================
   MOBILE
========================================= */

.mobile-submenu {
  display: none;
  padding-left: 15px;
}

.mobile-menu-toggle {
  font-weight: 600;
  cursor: pointer;
}

/* =========================================
   404
========================================= */

.xp-error-page {
  min-height: calc(100vh - 90px);
  padding: clamp(5rem, 9vw, 8rem) 0 clamp(4rem, 7vw, 6rem);
  background: #f5f6f4;
  color: #111;
  display: flex;
  align-items: center;
}

.xp-error-layout {
  max-width: 980px;
}

.xp-error-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7f9615;
}

.xp-error-layout h1 {
  margin: 0;
  font-size: clamp(4.5rem, 11vw, 10rem);
  line-height: 0.9;
  font-weight: 700;
}

.xp-error-layout p:not(.xp-error-kicker) {
  max-width: 520px;
  margin: 1.25rem 0 0;
  color: #4b4f48;
  font-size: 1.05rem;
  line-height: 1.65;
}

.xp-error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.xp-error-actions .xp-btn {
  min-width: 150px;
}

.xp-btn-outline {
  color: #111;
  background: transparent;
  border: 1px solid rgba(17, 17, 17, 0.28);
}

.xp-btn-outline:hover,
.xp-btn-outline:focus {
  color: #fff;
  background: #111;
  border-color: #111;
}

@media (max-width: 991.98px) {
  .xp-error-page {
    min-height: auto;
    padding-top: 4rem;
  }
}

@media (max-width: 575.98px) {
  .xp-error-page {
    padding: 3rem 0 3.5rem;
  }

  .xp-error-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .xp-error-actions .xp-btn {
    width: 100%;
  }
}


/* =========================================
   X9 PAGE STYLES
========================================= */

  @media (min-width: 768px) {
    .pdt-first-hero-title,
    .x9-first-hero-title {
      opacity: 1;
      transform: translateX(-50%);
    }
    .pdt-first-hero.is-ready .pdt-first-hero-heading-row,
    .x9-first-hero.is-ready .x9-first-hero-heading-row {
      display: inline-flex;
      opacity: 0;
      visibility: hidden;
      transform: scale(0);
      transform-origin: top left;
      transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease, visibility 0s linear 0.85s;
    }
    .pdt-first-hero.is-ready .pdt-first-hero-heading-row h1,
    .x9-first-hero.is-ready .x9-first-hero-heading-row h1 {
      color: rgba(255, 255, 255, 0);
      transition: color 0.5s ease;
    }
    .pdt-first-hero.is-ready .pdt-first-hero-stat,
    .x9-first-hero.is-ready .x9-first-hero-stat {
      opacity: 0;
      transform: translateY(48px);
      transition: transform 0.7s ease-out, opacity 0.7s ease-out;
    }
    .pdt-first-hero.is-ready .pdt-first-hero-title .lead,
    .x9-first-hero.is-ready .x9-first-hero-title .lead {
      opacity: 0;
      transform: translateY(18px);
      transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    }
    .pdt-first-hero.is-visible .pdt-first-hero-heading-row,
    .x9-first-hero.is-visible .x9-first-hero-heading-row {
      opacity: 1;
      visibility: visible;
      transform: scale(1);
      transition-delay: 0.82s, 0.82s, 0s;
    }
    .pdt-first-hero.is-visible .pdt-first-hero-heading-row h1,
    .x9-first-hero.is-visible .x9-first-hero-heading-row h1 {
      color: #fff;
      transition-delay: 0.82s;
    }
    .pdt-first-hero.is-visible .pdt-first-hero-stat,
    .x9-first-hero.is-visible .x9-first-hero-stat {
      opacity: 1;
      transform: translateY(0);
    }
    .pdt-first-hero.is-visible .pdt-first-hero-title .lead,
    .x9-first-hero.is-visible .x9-first-hero-title .lead {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.96s;
    }
    .pdt-first-hero.is-visible .pdt-first-hero-stat:nth-child(1),
    .x9-first-hero.is-visible .x9-first-hero-stat:nth-child(1) {
      transition-delay: 0.45s;
    }
    .pdt-first-hero.is-visible .pdt-first-hero-stat:nth-child(2),
    .x9-first-hero.is-visible .x9-first-hero-stat:nth-child(2) {
      transition-delay: 0.58s;
    }
    .pdt-first-hero.is-visible .pdt-first-hero-stat:nth-child(3),
    .x9-first-hero.is-visible .x9-first-hero-stat:nth-child(3) {
      transition-delay: 0.71s;
    }
  }

  .section,
  .section img,
  .section a,
  .section button,
  .splide,
  .splide__track,
  .splide__list,
  .splide__slide {
    touch-action: manipulation;
  }
  .hero-overlay {
    display: none !important;
  }
  .x9-section-spaced {
    margin-top: 6rem !important;
  }
  @media (max-width: 767px) {
    .x9-section-spaced {
      margin-top: 3.5rem !important;
    }
  }
  .pdt-app-reveal,
  .x9-app-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .pdt-app-reveal.is-visible,
  .x9-app-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .x9-mobile-video-shell {
    position: relative;
  }
  .x9-dual-chamber-video-shell {
    display: inline-block;
    width: 100%;
    line-height: 0;
    vertical-align: top;
    overflow: hidden;
  }
  .x9-mobile-video-shell .x9-mobile-video-el {
    display: block;
    width: 100%;
    height: auto;
  }
  .x9-dual-chamber-video-shell .x9-mobile-video-el {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
  }
  .hero-img.x9-mobile-video-shell .x9-mobile-video-el,
  .x9-video-frame.x9-mobile-video-shell .x9-mobile-video-el {
    height: 100%;
  }
  .x9-mobile-video-play {
    display: none;
  }
  .x9-mobile-video-modal {
    display: none;
  }
  .width-25 {
    width: 25% !important;
  }
  .width-33 {
    width: 33.3333% !important;
  }
  .width-40 {
    width: 40% !important;
  }
  .width-50 {
    width: 50% !important;
  }
  .width-60 {
    width: 60% !important;
  }
  .width-70 {
    width: 70% !important;
  }
  .width-75 {
    width: 75% !important;
  }
  .width-80 {
    width: 80% !important;
  }
  .width-90 {
    width: 90% !important;
  }
  .width-100 {
    width: 100% !important;
  }
  .pdt-feature-carousel,
  .x9-feature-carousel {
    width: 100%;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
  }
  .pdt-feature-carousel .splide,
  .x9-feature-carousel .splide {
    width: 100%;
    height: 100%;
  }
  .pdt-feature-carousel .splide__track,
  .x9-feature-carousel .splide__track {
    height: 100%;
    padding: 0;
  }
  .pdt-feature-carousel .splide__list,
  .pdt-feature-carousel .splide__slide,
  .x9-feature-carousel .splide__list,
  .x9-feature-carousel .splide__slide {
    height: 100%;
    align-items: center;
  }
  .pdt-feature-carousel .splide__slide,
  .x9-feature-carousel .splide__slide {
    opacity: 1;
    transform: none;
    transition: none;
    display: flex;
    justify-content: center;
  }
  .pdt-feature-carousel .splide__slide.is-active,
  .x9-feature-carousel .splide__slide.is-active {
    opacity: 1;
    transform: none;
  }
  .pdt-feature-carousel .splide__slide.is-target,
  .x9-feature-carousel .splide__slide.is-target {
    opacity: 1;
  }
  .pdt-feature-carousel .splide__arrows,
  .x9-feature-carousel .splide__arrows {
    pointer-events: none;
  }
  .pdt-feature-carousel .splide__arrow,
  .x9-feature-carousel .splide__arrow {
    pointer-events: auto;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 0;
    background: rgba(17, 17, 17, 0.7);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pdt-feature-carousel .splide__arrow svg,
  .x9-feature-carousel .splide__arrow svg {
    display: none;
  }
  .pdt-feature-carousel .splide__arrow--prev::before,
  .x9-feature-carousel .splide__arrow--prev::before {
    content: "‹";
  }
  .pdt-feature-carousel .splide__arrow--next::before,
  .x9-feature-carousel .splide__arrow--next::before {
    content: "›";
  }
  .pdt-feature-carousel .text-center,
  .x9-feature-carousel .text-center {
    width: 100%;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
  }
  .pdt-feature-carousel .xp-img,
  .x9-feature-carousel .xp-img {
    max-height: 70vh;
    object-fit: contain;
  }
  @media (max-width: 1199px) {
    .pdt-feature-carousel,
    .x9-feature-carousel {
      min-height: 100vh;
      max-height: 100vh;
    }
    .pdt-feature-carousel .text-center,
    .x9-feature-carousel .text-center {
      min-height: 100vh;
      max-height: 100vh;
    }
    .pdt-feature-carousel .xp-img,
    .x9-feature-carousel .xp-img {
      max-height: 70vh;
    }
  }
  @media (max-width: 991px) {
    .pdt-feature-carousel,
    .x9-feature-carousel {
      min-height: 100vh;
      max-height: 100vh;
    }
    .pdt-feature-carousel .text-center,
    .x9-feature-carousel .text-center {
      min-height: 100vh;
      max-height: 100vh;
    }
    .pdt-feature-carousel .xp-img,
    .x9-feature-carousel .xp-img {
      max-height: 70vh;
    }
  }
  @media (max-width: 767px) {
    .hero-slide {
      height: auto !important;
      min-height: auto !important;
      max-height: none !important;
      overflow: visible !important;
    }
    .hero-slide .container {
      height: auto !important;
      min-height: auto !important;
      max-height: none !important;
    }
    .x9-feature-carousel {
      min-height: auto;
      max-height: none;
      display: block;
    }
    .x9-feature-carousel .splide,
    .x9-feature-carousel .splide__track,
    .x9-feature-carousel .splide__list,
    .x9-feature-carousel .splide__slide {
      height: auto !important;
      min-height: auto !important;
      max-height: none !important;
    }
    .x9-feature-carousel .splide__track {
      padding: 0;
    }
    .x9-feature-carousel .text-center {
      width: 100%;
      min-height: auto;
      padding: 2rem 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }
    .x9-feature-carousel .splide__list,
    .x9-feature-carousel .splide__slide {
      align-items: flex-start !important;
    }
    .x9-feature-carousel .text-center .xp-img {
      order: 1;
      margin-top: 0 !important;
      margin-bottom: 1rem;
    }
    .x9-feature-carousel .text-center .xp-title {
      order: 2;
      margin-bottom: 0.5rem;
    }
    .x9-feature-carousel .text-center .xp-news-text {
      order: 3;
    }
    .x9-feature-carousel .xp-img {
      max-height: none;
    }
  }

  .pdt-exterior-overlap,
  .x9-exterior-overlap {
    width: 100%;
    position: relative;
    top: -300px;
    z-index: 2;
    padding-top: 18vh;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 30%, rgba(255,255,255,0.72) 56%, #fff 72%, #fff 100%);
  }

  @media (min-width: 768px) {
    .pdt-exterior-overlap > .container.d-none.d-md-block,
    .x9-exterior-overlap > .container.d-none.d-md-block {
      padding-top: 0 !important;
    }
    .pdt-exterior-overlap > .container.d-none.d-md-block .row,
    .x9-exterior-overlap > .container.d-none.d-md-block .row {
      padding-top: 0 !important;
      margin-top: 0 !important;
    }
    .pdt-exterior-overlap > .container.d-none.d-md-block .col-md-4,
    .x9-exterior-overlap > .container.d-none.d-md-block .col-md-4 {
      padding-top: 0 !important;
      margin-top: 0 !important;
    }
    .pdt-exterior-overlap > .container.d-none.d-md-block .pdt-exterior-detail-card,
    .x9-exterior-overlap > .container.d-none.d-md-block .x9-exterior-detail-card {
      height: 70% !important;
      border-radius: 10px !important;
      overflow: hidden;
    }
    .pdt-exterior-overlap > .container.d-none.d-md-block .pdt-exterior-detail-card .xp-img,
    .x9-exterior-overlap > .container.d-none.d-md-block .x9-exterior-detail-card .xp-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .pdt-exterior-overlap > .container.d-none.d-md-block .pdt-exterior-detail-title .xp-title,
    .x9-exterior-overlap > .container.d-none.d-md-block .x9-exterior-detail-title .xp-title {
      font-size: 0.665rem !important;
      line-height: 1.35 !important;
    }
  }

  @media (max-width: 767px) {
    .pdt-exterior-overlap,
    .x9-exterior-overlap {
      top: 0;
      padding-top: 0 !important;
      margin-top: 0 !important;
      background: #fff;
    }
  }

  .pdt-color-section,
  .x9-color-section {
    background: #fff;
  }
  .pdt-color-display,
  .x9-color-display {
    text-align: center;
  }
  .pdt-color-display .xp-title,
  .x9-color-display .xp-title {
    margin-bottom: 0.5rem;
  }
  .pdt-color-image,
  .x9-color-image {
    width: 100%;
    max-height: 64vh;
    object-fit: contain;
    margin-top: 0.75rem !important;
  }
  .pdt-color-image-crop,
  .x9-color-image-crop {
    overflow: hidden;
  }
  .pdt-color-section--exterior .pdt-color-image-crop,
  .x9-color-section--exterior .x9-color-image-crop {
    height: 60vh;
    max-height: 60vh;
    position: relative;
  }
  @media (max-width: 767px) {
    .pdt-color-section--exterior .pdt-color-image-crop,
    .x9-color-section--exterior .x9-color-image-crop {
      height: 25vh;
      max-height: 25vh;
    }
  }
  .pdt-color-section--exterior .pdt-color-image-bg,
  .x9-color-section--exterior .x9-color-image-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(0.5);
    transform-origin: center center;
    z-index: 0;
    pointer-events: none;
  }
  @media (min-width: 768px) {
    .pdt-color-section--exterior .pdt-color-image-bg,
    .x9-color-section--exterior .x9-color-image-bg {
      transform: translate(5vw, -8vh) scale(0.5);
    }
  }
  @media (max-width: 767px) {
    .pdt-color-section--exterior .pdt-color-image-bg,
    .x9-color-section--exterior .x9-color-image-bg {
      transform: translate(5vw, -8vh) scale(0.5);
    }
  }
  .pdt-bg-shift-left-10,
  .x9-bg-shift-left-10 {
    left: -10% !important;
  }
  .pdt-bg-shift-left-20,
  .x9-bg-shift-left-20 {
    left: -20% !important;
  }
  .pdt-bg-shift-left-30,
  .x9-bg-shift-left-30 {
    left: -30% !important;
  }
  .pdt-bg-shift-right-10,
  .x9-bg-shift-right-10 {
    left: 10% !important;
  }
  .pdt-bg-shift-right-20,
  .x9-bg-shift-right-20 {
    left: 20% !important;
  }
  .pdt-bg-shift-right-30,
  .x9-bg-shift-right-30 {
    left: 30% !important;
  }
  .pdt-banner-hero--worry-free,
  .x9-banner-hero--worry-free {
    min-height: 80vh !important;
    height: 80vh !important;
    overflow: hidden !important;
  }
  .pdt-banner-hero--worry-free .hero-img,
  .x9-banner-hero--worry-free .hero-img {
    width: 100%;
    height: 100% !important;
    object-fit: cover !important;
  }
  .pdt-color-section--exterior .pdt-color-image,
  .x9-color-section--exterior .x9-color-image {
    position: relative;
    z-index: 1;
    max-height: 100vh;
  }

  .pdt-img-shift-up-10,
  .x9-img-shift-up-10 {
    transform: translateY(-10%) !important;
  }
  .pdt-img-shift-up-20,
  .x9-img-shift-up-20 {
    transform: translateY(-20%) !important;
  }
  .pdt-img-shift-up-30,
  .x9-img-shift-up-30 {
    transform: translateY(-30%) !important;
  }
  .pdt-color-tabs,
  .x9-color-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.375rem;
    margin-top: 0.75rem;
    padding-left: 10%;
  }
  @media (max-width: 767px) {
    .pdt-color-tabs,
    .x9-color-tabs {
      padding-left: 0;
    }
    .x9-color-display--mobile .x9-color-mobile-copy {
      display: block;
      margin: 0.25rem 0 0.5rem;
      text-align: center;
      font-size: 0.95rem;
      color: #111;
    }
    .x9-color-display--mobile .x9-color-tabs {
      width: 100%;
      padding-left: 0;
      margin-top: 0.25rem;
    }
    .x9-color-display--mobile .x9-color-tabs .splide__track {
      overflow: hidden;
    }
    .x9-color-display--mobile .x9-color-tabs .splide__list {
      width: 100%;
      align-items: center;
      justify-content: center;
      gap: 0.35rem;
      transform: none !important;
    }
    .x9-color-display--mobile .x9-color-tabs .splide__slide {
      width: auto !important;
      flex: 0 0 auto;
    }
    .x9-color-display--mobile .x9-color-tab {
      padding: 0.125rem;
      background: transparent !important;
    }
    .x9-color-display--mobile .x9-color-tab span:last-child {
      display: none !important;
    }
    .x9-color-display--mobile .x9-color-tab-swatch {
      width: 1.1rem;
      height: 1.1rem;
      flex: 0 0 1.1rem;
    }
  }
  .pdt-color-tab,
  .x9-color-tab {
    border: 0;
    background: #fff;
    color: #111;
    padding: 0.375rem 0.55rem 0.375rem 0.4rem;
    border-radius: 999px;
    font-size: 0.475rem;
    line-height: 1.2;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
  }
  .pdt-color-tab.is-active,
  .x9-color-tab.is-active {
    background: #f7f7f7;
    color: #111;
  }
  .pdt-color-tab span:last-child,
  .x9-color-tab span:last-child {
    display: none;
  }
  .pdt-color-tab.is-active span:last-child,
  .x9-color-tab.is-active span:last-child {
    display: inline;
  }
  .pdt-color-tab-swatch,
  .x9-color-tab-swatch {
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 999px;
    flex: 0 0 1.1rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .pdt-color-tab.is-active span:last-child,
  .x9-color-tab.is-active span:last-child {
    font-size: 1.1em;
  }
  @media (min-width: 768px) {
    .x9-color-section.d-none.d-md-block .x9-color-tabs {
      gap: 0.75rem;
      margin-top: 1.25rem;
    }
    .x9-color-section.d-none.d-md-block .x9-color-tab {
      padding: 0.55rem 0.85rem 0.55rem 0.55rem;
      font-size: 0.75rem;
      gap: 0.45rem;
    }
    .x9-color-section.d-none.d-md-block .x9-color-tab-swatch {
      width: 1.75rem;
      height: 1.75rem;
      flex-basis: 1.75rem;
    }
    .x9-color-section.d-none.d-md-block .x9-color-tab.is-active span:last-child {
      font-size: 1rem;
    }
  }
  .pdt-video-tabs-section,
  .x9-video-tabs-section {
    background: #fff;
  }
  .pdt-video-tabs-display,
  .x9-video-tabs-display {
    text-align: center;
  }
  .pdt-video-tabs-display .xp-title,
  .x9-video-tabs-display .xp-title {
    margin-bottom: 0.75rem;
    font-size: 2rem;
  }
  .pdt-video-frame,
  .x9-video-frame {
    width: 80%;
    max-height: 72vh;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 1484 / 742;
    object-fit: cover;
    background: #000;
  }
  .pdt-image-frame,
  .x9-image-frame {
    width: 80%;
    max-height: 72vh;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 1484 / 742;
    object-fit: cover;
    background: #000;
  }
  .pdt-video-tabs,
  .x9-video-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .pdt-video-tab,
  .x9-video-tab {
    border: 0;
    border-bottom: 1px solid #d9d9d9;
    background: transparent;
    color: #777;
    padding: 0 0 0.75rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    font-size: 0.78rem;
    line-height: 1.3;
    transition: color 0.2s ease;
    flex: 1 1 0;
    width: 0;
    max-width: none;
    text-align: center;
  }
  .pdt-video-tab.is-active,
  .x9-video-tab.is-active {
    color: #111;
    font-weight: 600;
    border-bottom-color: #96B414;
    border-bottom-width: 2px;
  }
  .pdt-video-copy,
  .x9-video-copy {
    margin-top: 0.75rem;
    text-align: center;
    color: #555;
    font-size: 0.8rem;
    line-height: 1.5;
  }
  .pdt-safety-grid .row,
  .x9-safety-grid .row {
    row-gap: 1.5rem;
  }
  .pdt-safety-card,
  .x9-safety-card {
    position: relative;
    overflow: hidden;
    background: #000;
    height: 85%;
  }
  .pdt-safety-card img,
  .x9-safety-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
  }
  .pdt-safety-card:hover img,
  .x9-safety-card:hover img {
    transform: scale(1.2);
  }
  .pdt-safety-card::after,
  .x9-safety-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 20%;
    background: rgba(0,0,0,0.3);
    pointer-events: none;
  }
  .pdt-safety-card-title,
  .x9-safety-card-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 20%;
    z-index: 1;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    text-align: left;
    color: #fff;
  }
  .pdt-exterior-detail-card,
  .x9-exterior-detail-card {
    height: 70%;
    padding: 0;
  }
  .pdt-banner-hero,
  .x9-banner-hero {
    min-height: 100vh;
    overflow: hidden;
    position: relative;
  }
  .pdt-video-hero,
  .x9-video-hero {
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
  }
  .pdt-banner-content,
  .x9-banner-content {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 100%;
    padding: 3.5rem 1.5rem 0;
    text-align: center;
  }
  .pdt-banner-content .display-4,
  .x9-banner-content .display-4 {
    font-size: 1.5rem !important;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  .pdt-banner-content .lead,
  .x9-banner-content .lead {
    font-size: 0.9rem !important;
    line-height: 1.4;
    margin-bottom: 0.35rem;
  }
  .pdt-banner-content--always-overlay,
  .x9-banner-content--always-overlay {
    position: absolute !important;
    left: 50% !important;
    top: 0 !important;
    transform: translateX(-50%) !important;
    width: 100% !important;
    padding: 3.5rem 1.5rem 0 !important;
    text-align: center !important;
  }
  .pdt-banner-mobile-copy,
  .x9-banner-mobile-copy {
    padding: 1rem 1rem 0;
    text-align: center;
    color: #111;
    background: #fff;
  }
  .pdt-banner-mobile-copy .display-4,
  .x9-banner-mobile-copy .display-4 {
    font-size: 1.25rem !important;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #111 !important;
  }
  .pdt-banner-mobile-copy .lead,
  .x9-banner-mobile-copy .lead {
    font-size: 0.85rem !important;
    line-height: 1.4;
    margin-bottom: 0.35rem;
    color: #111 !important;
  }
  .pdt-shared-title,
  .x9-shared-title {
    font-size: 1.7rem !important;
    font-weight: 400 !important;
    line-height: 1.25 !important;
    text-align: center;
  }
  .pdt-shared-subtitle,
  .x9-shared-subtitle,
  .pdt-shared-title + .lead,
  .x9-shared-title + .lead,
  .pdt-shared-title + .xp-news-text,
  .x9-shared-title + .xp-news-text,
  .pdt-shared-title + p,
  .x9-shared-title + p {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    text-align: center;
  }
  @media (max-width: 767px) {
    .x9-mobile-video-modal.is-open {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      background: rgba(0, 0, 0, 0.92);
    }
    .x9-mobile-video-modal-dialog {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .x9-mobile-video-modal-player {
      width: 100%;
      max-height: calc(100vh - 5rem);
      object-fit: contain;
      background: #000;
    }
    .x9-mobile-video-modal-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      z-index: 2;
      width: 40px;
      height: 40px;
      border: 0;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
      font-size: 28px;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .x9-mobile-video-shell {
      overflow: hidden;
    }
    .x9-mobile-video-shell.is-overlay-visible .x9-mobile-video-play {
      display: flex;
    }
    .x9-mobile-video-play {
      position: absolute;
      inset: 0;
      z-index: 4;
      border: 0;
      padding: 0;
      background: rgba(0, 0, 0, 0.18);
      align-items: center;
      justify-content: center;
    }
    .x9-mobile-video-play::before {
      content: "";
      width: 64px;
      height: 64px;
      background: #fff;
      -webkit-mask: url('/wp-content/themes/dashcore/assets/img/xpeng_play_icon.svg') center / contain no-repeat;
      mask: url('/wp-content/themes/dashcore/assets/img/xpeng_play_icon.svg') center / contain no-repeat;
    }
    .x9-first-hero-title {
      opacity: 1;
      transform: translateX(-50%);
    }
    .x9-first-hero.is-ready .x9-first-hero-heading-row {
      opacity: 0;
      visibility: hidden;
      transform: scale(0);
      transform-origin: top left;
      transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease, visibility 0s linear 0.85s;
    }
    .x9-first-hero.is-ready .x9-first-hero-heading-row h1 {
      color: rgba(255, 255, 255, 0);
      transition: color 0.5s ease;
    }
    .x9-first-hero.is-ready .x9-first-hero-title .lead {
      opacity: 0;
      transform: translateY(18px);
      transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    }
    .x9-first-hero.is-ready .x9-first-hero-stat {
      opacity: 0;
      transform: translateY(72px) scale(0.92);
      transition: transform 0.8s ease-out, opacity 0.8s ease-out;
    }
    .x9-first-hero.is-visible .x9-first-hero-heading-row {
      opacity: 1;
      visibility: visible;
      transform: scale(1);
      transition-delay: 0.82s, 0.82s, 0s;
    }
    .x9-first-hero.is-visible .x9-first-hero-heading-row h1 {
      color: #fff;
      transition-delay: 0.82s;
    }
    .x9-first-hero.is-visible .x9-first-hero-title .lead {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.96s;
    }
    .x9-first-hero.is-visible .x9-first-hero-stat {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
    .x9-first-hero.is-visible .x9-first-hero-stat:nth-child(1) {
      transition-delay: 0.45s;
    }
    .x9-first-hero.is-visible .x9-first-hero-stat:nth-child(2) {
      transition-delay: 0.58s;
    }
    .x9-first-hero.is-visible .x9-first-hero-stat:nth-child(3) {
      transition-delay: 0.71s;
    }
    .section--full-bleed:first-child .splide,
    .section--full-bleed:first-child .splide__track,
    .section--full-bleed:first-child .splide__list,
    .section--full-bleed:first-child .splide__slide {
      height: 100svh !important;
      min-height: 100svh !important;
    }
    .section--full-bleed:first-child > .hero-slide,
    .section--full-bleed:first-child .pdt-first-hero {
      min-height: 100svh !important;
      height: 100svh !important;
      overflow: hidden !important;
      background: #000;
    }
    .section--full-bleed:first-child > .hero-slide .hero-img,
    .section--full-bleed:first-child .pdt-first-hero .hero-img {
      position: absolute !important;
      inset: 0;
      width: 100%;
      height: 100% !important;
      object-fit: cover;
    }
    .section--full-bleed:first-child > .hero-slide .container,
    .section--full-bleed:first-child .pdt-first-hero .container {
      height: 100% !important;
      min-height: 100% !important;
      max-height: none !important;
    }
    .x9-first-hero {
      min-height: 100svh !important;
      height: 100svh !important;
      overflow: hidden !important;
      background: #000;
    }
    .x9-first-hero .hero-img {
      position: absolute !important;
      inset: 0;
      width: 100%;
      height: 100% !important;
      object-fit: cover;
    }
    .x9-first-hero::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 32svh;
      background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 22%, rgba(0,0,0,0.82) 62%, #000 100%);
      pointer-events: none;
      z-index: 2;
    }
    .x9-first-hero .container {
      position: relative !important;
      height: 100% !important;
      min-height: 100% !important;
      max-height: none !important;
      padding: 0 !important;
      margin: 0 !important;
      z-index: 3;
    }
    .x9-first-hero-stats-wrap {
      bottom: 1.25rem !important;
      padding: 0 1rem;
    }
    .x9-first-hero-stats {
      display: flex !important;
      flex-wrap: nowrap !important;
      gap: 0.35rem !important;
      align-items: center;
      justify-content: flex-start !important;
      width: 100%;
      max-width: 100%;
    }
    .x9-first-hero-stats .x9-first-hero-stat {
      flex: 0 0 calc((100% - 0.7rem) / 3);
      max-width: calc((100% - 0.7rem) / 3);
      text-align: center !important;
    }
    .x9-first-hero-stats .x9-first-hero-stat h4,
    .x9-first-hero-stats .x9-first-hero-stat p {
      margin-bottom: 0;
    }
    .x9-first-hero-stats .x9-first-hero-stat h4 {
      font-size: 0.76rem !important;
      line-height: 1.12;
    }
    .x9-first-hero-stats .x9-first-hero-stat p {
      font-size: 0.5rem !important;
      line-height: 1.15;
    }
    .x9-first-hero-actions {
      justify-content: flex-start !important;
      flex-wrap: nowrap !important;
      gap: 0.35rem !important;
      margin-top: 0.75rem !important;
      width: 100%;
    }
    .x9-first-hero-actions .xp-btn {
      min-width: 0;
      width: calc((100% - 0.7rem) / 3);
      height: 40px;
      padding: 0 0.25rem;
      font-size: 0.56rem;
      line-height: 1.15;
      white-space: normal;
      text-align: center;
    }
    .pdt-shared-title,
    .x9-shared-title {
      text-align: left !important;
    }
    .pdt-shared-subtitle,
    .x9-shared-subtitle,
    .pdt-shared-title + .lead,
    .x9-shared-title + .lead,
    .pdt-shared-title + .xp-news-text,
    .x9-shared-title + .xp-news-text,
    .pdt-shared-title + p,
    .x9-shared-title + p {
      text-align: left !important;
    }
    .pdt-banner-hero,
    .x9-banner-hero {
      min-height: auto;
      overflow: visible;
      margin-bottom: 0;
    }
    .pdt-banner-hero .hero-overlay,
    .x9-banner-hero .hero-overlay {
      display: none;
    }
    .pdt-banner-hero .hero-img,
    .x9-banner-hero .hero-img {
      position: static !important;
      width: 100%;
      height: auto !important;
      display: block;
      object-fit: cover;
    }
    .pdt-banner-hero .container,
    .x9-banner-hero .container {
      position: static !important;
      height: auto !important;
      padding: 0 !important;
      margin: 0 !important;
    }
    .pdt-banner-hero--exterior,
    .x9-banner-hero--exterior {
      min-height: 100svh !important;
      height: 100svh !important;
      overflow: hidden !important;
      margin-bottom: 0 !important;
      padding-bottom: 0 !important;
    }
    .pdt-banner-hero--rear-lounge,
    .x9-banner-hero--rear-lounge {
      min-height: 60svh !important;
      height: 60svh !important;
      overflow: hidden !important;
    }
    .pdt-banner-hero--rear-lounge .hero-img,
    .x9-banner-hero--rear-lounge .hero-img {
      position: absolute !important;
      width: 100%;
      height: 100% !important;
      object-fit: cover;
    }
    .pdt-hero-img-60vh,
    .x9-hero-img-60vh {
      height: 60svh !important;
      width: auto !important;
      min-height: 60svh !important;
      max-height: 60svh !important;
      max-width: 100% !important;
      margin-left: auto;
      margin-right: auto;
      display: block;
      object-fit: cover !important;
    }
    .pdt-hero-img-65vh,
    .x9-hero-img-65vh {
      height: 65svh !important;
      width: auto !important;
      min-height: 65svh !important;
      max-height: 65svh !important;
      max-width: 100% !important;
      margin-left: auto;
      margin-right: auto;
      display: block;
      object-fit: cover !important;
    }
    .pdt-hero-img-70vh,
    .x9-hero-img-70vh {
      height: 70svh !important;
      width: auto !important;
      min-height: 70svh !important;
      max-height: 70svh !important;
      max-width: 100% !important;
      margin-left: auto;
      margin-right: auto;
      display: block;
      object-fit: cover !important;
    }
    .pdt-hero-img-75vh,
    .x9-hero-img-75vh {
      height: 75svh !important;
      width: auto !important;
      min-height: 75svh !important;
      max-height: 75svh !important;
      max-width: 100% !important;
      margin-left: auto;
      margin-right: auto;
      display: block;
      object-fit: cover !important;
    }
    .pdt-hero-img-80vh,
    .x9-hero-img-80vh {
      height: 80svh !important;
      width: auto !important;
      min-height: 80svh !important;
      max-height: 80svh !important;
      max-width: 100% !important;
      margin-left: auto;
      margin-right: auto;
      display: block;
      object-fit: cover !important;
    }
    .pdt-banner-hero--rear-lounge,
    .x9-banner-hero--rear-lounge {
      min-height: 0 !important;
      height: auto !important;
      overflow: visible !important;
    }
    .pdt-banner-hero--rear-lounge .hero-img,
    .x9-banner-hero--rear-lounge .hero-img {
      position: static !important;
      width: 100% !important;
      height: auto !important;
      min-height: 0 !important;
      max-height: none !important;
      max-width: 100% !important;
      object-fit: contain !important;
    }
    .x9-banner-hero--mobile-contain {
      min-height: 0 !important;
      height: auto !important;
      overflow: visible !important;
    }
    .x9-banner-hero--mobile-contain .hero-img {
      position: static !important;
      width: 100% !important;
      height: auto !important;
      min-height: 0 !important;
      max-height: none !important;
      max-width: 100% !important;
      object-fit: contain !important;
    }
    .pdt-hero-img-100vh,
    .x9-hero-img-100vh {
      height: 100svh !important;
      width: 100% !important;
      min-height: 100svh !important;
      max-height: 100svh !important;
      max-width: none !important;
      margin-left: 0;
      margin-right: 0;
      display: block;
      object-fit: cover !important;
    }
    .pdt-hero-img-pos-center,
    .x9-hero-img-pos-center {
      object-position: center center !important;
    }
    .pdt-hero-img-pos-center-top,
    .x9-hero-img-pos-center-top {
      object-position: center top !important;
    }
    .pdt-hero-img-pos-center-bottom,
    .x9-hero-img-pos-center-bottom {
      object-position: center bottom !important;
    }
    .pdt-hero-img-pos-left-center,
    .x9-hero-img-pos-left-center {
      object-position: left center !important;
    }
    .pdt-hero-img-pos-right-center,
    .x9-hero-img-pos-right-center {
      object-position: right center !important;
    }
    .pdt-hero-img-pos-left-top,
    .x9-hero-img-pos-left-top {
      object-position: left top !important;
    }
    .pdt-hero-img-pos-right-top,
    .x9-hero-img-pos-right-top {
      object-position: right top !important;
    }
    .pdt-hero-img-shift-up-10,
    .x9-hero-img-shift-up-10 {
      transform: translateY(-10vh) !important;
      transition: none !important;
    }
    .pdt-hero-img-zoom-90,
    .x9-hero-img-zoom-90 {
      transform: scale(0.9) !important;
      transform-origin: center center !important;
    }
    .pdt-hero-img-zoom-100,
    .x9-hero-img-zoom-100 {
      transform: scale(1) !important;
      transform-origin: center center !important;
    }
    .pdt-hero-img-zoom-110,
    .x9-hero-img-zoom-110 {
      transform: scale(1.1) !important;
      transform-origin: center center !important;
    }
    .pdt-hero-img-zoom-125,
    .x9-hero-img-zoom-125 {
      transform: scale(1.25) !important;
      transform-origin: center center !important;
    }
    .pdt-hero-img-zoom-150,
    .x9-hero-img-zoom-150 {
      transform: scale(1.5) !important;
      transform-origin: center center !important;
    }
    .pdt-banner-hero--rear-lounge .container,
    .x9-banner-hero--rear-lounge .container {
      position: relative !important;
      height: 100% !important;
    }
    .pdt-banner-hero--exterior .hero-img,
    .x9-banner-hero--exterior .hero-img {
      position: absolute !important;
      width: 100%;
      height: 100% !important;
      object-fit: cover;
    }
    .pdt-banner-hero--exterior .container,
    .x9-banner-hero--exterior .container {
      position: relative !important;
      height: 100% !important;
    }
    .section.section--full-bleed.xp-section:has(.pdt-banner-hero),
    .section.section--full-bleed.xp-section:has(.x9-banner-hero) {
      padding-top: 0 !important;
      padding-bottom: 0 !important;
      margin-bottom: 0 !important;
    }
    .pdt-banner-mobile-copy,
    .x9-banner-mobile-copy {
      padding: 0.75rem 1rem 0 !important;
      margin: 0 !important;
    }
    .pdt-banner-mobile-copy .display-4,
    .pdt-banner-mobile-copy .lead,
    .x9-banner-mobile-copy .display-4,
    .x9-banner-mobile-copy .lead {
      margin-top: 0 !important;
    }
    .pdt-banner-content--always-overlay,
    .x9-banner-content--always-overlay {
      position: absolute !important;
      left: 50% !important;
      top: 0 !important;
      transform: translateX(-50%) !important;
      width: 100% !important;
      padding: 2rem 1rem 0 !important;
      text-align: center !important;
      color: #fff !important;
    }
    .pdt-banner-content--always-overlay .display-4,
    .pdt-banner-content--always-overlay .lead,
    .x9-banner-content--always-overlay .display-4,
    .x9-banner-content--always-overlay .lead {
      color: #fff !important;
    }
    .x9-video-tabs {
      gap: 0;
    }
    .x9-video-frame,
    .x9-image-frame,
    .x9-video-tabs {
      width: 100%;
    }
    .x9-video-tab {
      font-size: 0.72rem;
    }
    .x9-video-copy {
      font-size: 0.75rem;
    }
    .pdt-dual-chamber-mobile,
    .x9-dual-chamber-mobile {
      width: 90vw;
      margin-left: auto;
      margin-right: auto;
    }
    #x9SafetyMobileSplide {
      width: 100vw;
      max-width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
    }
    #x9SafetyMobileSplide .splide__track,
    #x9SafetyMobileSplide .splide__slide {
      width: 100vw !important;
    }
    .x9-safety-mobile-carousel .x9-safety-card--mobile {
      width: 100vw !important;
      height: 220px;
      padding: 0;
    }
    .x9-safety-mobile-carousel .x9-safety-card--mobile::after {
      height: 46%;
      background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 45%, rgba(0,0,0,0.86) 100%);
    }
    .x9-safety-mobile-carousel .xp-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      transform: scale(1.12);
      transform-origin: center center;
    }
    .x9-safety-mobile-carousel .x9-safety-card-title {
      height: auto;
      min-height: 46%;
      padding: 0.8rem 0.9rem;
      align-items: flex-end;
    }
    .x9-safety-mobile-carousel .x9-safety-card-title .xp-title {
      font-size: 0.8rem !important;
      line-height: 1.25 !important;
    }
    .x9-xpilot-mobile-image-frame {
      height: 50vh;
      overflow: hidden;
    }
    .x9-feature-carousel .x9-xpilot-mobile-image {
      width: 100% !important;
      max-width: 100% !important;
      min-width: 100% !important;
      height: 100% !important;
      display: block;
      object-fit: cover;
      transform: scale(1);
      transform-origin: center center;
    }
    .x9-xpilot-mobile-copy {
      padding: 1rem !important;
    }
    .x9-feature-carousel #x9SeatingMobileSplide .text-center,
    .x9-feature-carousel #x9XpilotMobileSplide .text-center {
      padding-left: 0 !important;
      padding-right: 0 !important;
      justify-content: flex-start !important;
    }
    .x9-feature-carousel #x9SeatingMobileSplide .splide__track,
    .x9-feature-carousel #x9XpilotMobileSplide .splide__track {
      padding-left: 0 !important;
      padding-right: 0 !important;
    }
    .x9-feature-carousel #x9SeatingMobileSplide .splide__list,
    .x9-feature-carousel #x9SeatingMobileSplide .splide__slide,
    .x9-feature-carousel #x9XpilotMobileSplide .splide__list,
    .x9-feature-carousel #x9XpilotMobileSplide .splide__slide {
      align-items: flex-start !important;
    }
    .x9-feature-carousel #x9SeatingMobileSplide .splide__slide,
    .x9-feature-carousel #x9XpilotMobileSplide .splide__slide {
      width: 100vw !important;
    }
    #x9SeatingMobileSplide,
    #x9XpilotMobileSplide {
      padding-bottom: 2.5rem;
    }
    #x9SeatingMobileSplide .splide__arrows,
    #x9XpilotMobileSplide .splide__arrows {
      pointer-events: none;
    }
    #x9SeatingMobileSplide .splide__arrow,
    #x9XpilotMobileSplide .splide__arrow {
      pointer-events: auto;
      top: 25vh;
      width: 38px;
      height: 38px;
      background: rgba(17, 17, 17, 0.58);
      color: #fff;
    }
    #x9SeatingMobileSplide .splide__arrow--prev,
    #x9XpilotMobileSplide .splide__arrow--prev {
      left: 0.75rem;
    }
    #x9SeatingMobileSplide .splide__arrow--next,
    #x9XpilotMobileSplide .splide__arrow--next {
      right: 0.75rem;
    }
    #x9SeatingMobileSplide .splide__pagination,
    #x9XpilotMobileSplide .splide__pagination {
      bottom: 0.5rem;
      left: 0;
      right: 0;
      justify-content: center;
    }
    #x9SeatingMobileSplide .splide__pagination__page,
    #x9XpilotMobileSplide .splide__pagination__page {
      width: 28px;
      height: 3px;
      background-color: rgba(17, 17, 17, 0.24);
    }
    #x9SeatingMobileSplide .splide__pagination__page.is-active,
    #x9XpilotMobileSplide .splide__pagination__page.is-active {
      background-color: #96B414;
    }
    .x9-xpilot-mobile-fullbleed {
      --dc-gutter-x: 0 !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
      width: 100vw;
      max-width: 100vw;
    }
    .x9-xpilot-mobile-copy .xp-title {
      margin-top: 0 !important;
    }
    .x9-xpilot-mobile-copy .xp-news-text {
      margin-bottom: 0 !important;
    }
    .x9-seating-mobile-media-title {
      position: absolute;
      left: 1rem;
      right: 1rem;
      top: 1rem;
      z-index: 5;
      color: #fff;
      font-size: 1.85rem !important;
      line-height: 1.1 !important;
      text-align: left !important;
      text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
      pointer-events: none;
    }
    #x9SeatingMobileSplide .x9-xpilot-mobile-image-frame {
      position: relative;
      height: 56svh;
      min-height: 360px;
      overflow: hidden;
      background: #000;
      line-height: 0;
    }
    #x9SeatingMobileSplide .x9-xpilot-mobile-image {
      position: absolute !important;
      inset: 0;
      width: 100% !important;
      height: 100% !important;
      min-width: 100% !important;
      min-height: 100% !important;
      max-width: none !important;
      max-height: none !important;
      object-fit: cover !important;
      object-position: center center !important;
      transform: scale(1.14);
      transform-origin: center center;
    }
    .x9-exterior-detail-card {
      height: auto;
      padding: 0;
    }
    .x9-banner-hero--exterior .x9-banner-content--always-overlay {
      padding-top: 30px !important;
    }
    .x9-video-hero {
      height: 100svh !important;
      min-height: 100svh !important;
      max-height: none !important;
      overflow: hidden !important;
    }
    #x9ExteriorDetailSplide .text-center {
      padding-top: 0 !important;
    }
    #x9ExteriorDetailSplide .xp-title {
      margin-top: 0 !important;
    }
    #x9ExteriorDetailSplide .xp-img {
      width: 100%;
      max-width: none;
    }
    #x9FeatureSplide,
    #x9SpaceSplide,
    #x9VoiceControlMobileSplide {
      padding-bottom: 2.5rem;
    }
    #x9FeatureSplide .splide__pagination,
    #x9SpaceSplide .splide__pagination,
    #x9VoiceControlMobileSplide .splide__pagination {
      bottom: 0.5rem;
      left: 0;
      right: 0;
      justify-content: center;
    }
    #x9FeatureSplide .splide__pagination__page,
    #x9SpaceSplide .splide__pagination__page,
    #x9VoiceControlMobileSplide .splide__pagination__page {
      width: 28px;
      height: 3px;
      background-color: rgba(17, 17, 17, 0.24);
    }
    #x9FeatureSplide .splide__pagination__page.is-active,
    #x9SpaceSplide .splide__pagination__page.is-active,
    #x9VoiceControlMobileSplide .splide__pagination__page.is-active {
      background-color: #96B414;
    }
    #x9CockpitFeatureSplide {
      padding-bottom: 2.5rem;
    }
    #x9CockpitFeatureSplide .splide__pagination {
      bottom: 0.5rem;
      left: 0;
      right: 0;
      justify-content: center;
    }
    #x9CockpitFeatureSplide .splide__pagination__page {
      width: 28px;
      height: 3px;
      background-color: rgba(17, 17, 17, 0.24);
    }
    #x9CockpitFeatureSplide .splide__pagination__page.is-active {
      background-color: #96B414;
    }
    #x9SafetyMobileSplide {
      padding-bottom: 2.5rem;
    }
    #x9SafetyMobileSplide .splide__pagination {
      bottom: 0.5rem;
      left: 0;
      right: 0;
      justify-content: center;
    }
    #x9SafetyMobileSplide .splide__pagination__page {
      width: 28px;
      height: 3px;
      background-color: rgba(17, 17, 17, 0.24);
    }
    #x9SafetyMobileSplide .splide__pagination__page.is-active {
      background-color: #96B414;
    }
    .x9-ultra-mobile-copy .x9-shared-title {
      font-size: 2rem !important;
      line-height: 1.15 !important;
    }
    .x9-ultra-mobile-copy .x9-shared-subtitle {
      font-size: 1rem !important;
      line-height: 1.35 !important;
      margin-top: 0.4rem !important;
    }
    .x9-xos-mobile-copy .x9-shared-title {
      font-size: 2rem !important;
      line-height: 1.15 !important;
    }
    .x9-xos-mobile-copy .lead {
      font-size: 1rem !important;
      line-height: 1.35 !important;
      margin-top: 0.4rem !important;
    }
    .x9-xpilot-hero-mobile-copy .x9-shared-title {
      font-size: 2rem !important;
      line-height: 1.15 !important;
    }
    .x9-xpilot-hero-mobile-copy .lead {
      font-size: 1rem !important;
      line-height: 1.35 !important;
      margin-top: 0.4rem !important;
    }
  }

@media (max-width: 767px) {
  .x9-specs-section .pdt-specs-actions .xp-btn {
    min-width: 0;
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
    font-size: 0.68rem;
    white-space: nowrap;
  }
}
