@charset "UTF-8";
/* ============================================================
   ev-landing.css  –  Page-specific styles for the EV Landing Page
   Relies on the lv2 design-system tokens defined in main.scss
   ============================================================ */
/* ── Hero ─────────────────────────────────────────────────── */
/* ── Introduction ─────────────────────────────────────────── */
/* ── Feature Highlights ───────────────────────────────────── */
/* ── Sticky Sub-Navigation ────────────────────────────────── */
/* ── Technology ───────────────────────────────────────────── */
/* ── Performance ──────────────────────────────────────────── */
/* ── Color Gallery ────────────────────────────────────────── */
/* ── Design ───────────────────────────────────────────────── */
/* ── Safety ───────────────────────────────────────────────── */
/* ── Battery ──────────────────────────────────────────────── */
/* ── Charging ─────────────────────────────────────────────── */
/* ── Specifications Table ─────────────────────────────────── */
/* ── FAQ ──────────────────────────────────────────────────── */
/* ── Footer CTA ───────────────────────────────────────────── */
.ev-model-landing {
  --lv2-section-space: 100px;
}
@media (max-width: 1280px) {
  .ev-model-landing {
    --lv2-section-space: 64px;
  }
}
@media (max-width: 1024px) {
  .ev-model-landing {
    --lv2-section-space: 48px;
  }
}

.ev-hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  background: var(--lv2-color-black);
  overflow: hidden;
}

.ev-hero__media {
  position: absolute;
  inset: 0;
}
.ev-hero__media picture,
.ev-hero__media video,
.ev-hero__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ev-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 100%), linear-gradient(360deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  z-index: 2;
}

.ev-hero__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  padding-top: calc(var(--lv2-value-14) + var(--lv2-value-16) + 2px);
  padding-bottom: var(--lv2-value-16);
  color: var(--lv2-color-white);
  height: 100%;
}
.ev-hero__content-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.ev-hero__content-inner > :not(:last-child, :first-child) {
  margin-top: 12px;
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  .ev-hero__content-inner > :not(:last-child, :first-child) {
    margin-top: 8px;
    margin-bottom: 24px;
  }
}

.ev-hero__title {
  font-family: var(--lv2-font-regular);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ev-hero__price {
  font-family: var(--lv2-font-book);
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.ev-hero__cta {
  text-decoration: none;
}

.ev-intro {
  padding: var(--lv2-section-space) 0;
}

.ev-intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.ev-intro__text {
  max-width: 540px;
}

.ev-intro__media img {
  border-radius: 4px;
}

.ev-features {
  padding: var(--lv2-section-space) 0;
}

.ev-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

.ev-features__card {
  overflow: hidden;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
}
.ev-features__card picture img {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
}

.ev-features__card-body {
  padding: 24px;
}
.ev-features__card-body h3 {
  font-family: var(--lv2-font-regular);
  font-size: 18px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ev-features__card-body p {
  font-family: var(--lv2-font-book);
  font-size: 14px;
}

.ev-subnav {
  background: var(--lv2-color-black);
  z-index: 90;
  position: sticky;
  top: 0;
  width: 100%;
  transition: background-color 0.3s, opacity 0.3s, top 0.3s;
}

body.headroom--unpinned .ev-subnav {
  top: 0;
  z-index: 999;
}
@media (max-width: 1024px) {
  body.headroom--unpinned .ev-subnav {
    top: 0;
  }
}
body.headroom--pinned .ev-subnav {
  top: 100px;
}
@media (max-width: 1024px) {
  body.headroom--pinned .ev-subnav {
    top: 0;
    z-index: 999;
  }
}

.ev-subnav__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-block: 10px;
  gap: 40px;
  padding-inline: 0;
}

.ev-subnav__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--lv2-value-7);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-right: auto;
}

.ev-subnav__modelLabel {
  display: block;
  font-family: var(--lv2-font-regular);
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 4%;
  text-transform: capitalize;
  color: var(--lv2-color-white);
}

.ev-subnav__link {
  display: block;
  font-family: var(--lv2-font-book);
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: var(--lv2-grey-text);
  white-space: nowrap;
  padding: 18px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.ev-subnav__link:hover {
  color: var(--lv2-color-white);
}
@media (max-width: 1366px) {
  .ev-subnav__link {
    padding: 8px 0;
  }
}

.ev-subnav__link.active {
  color: var(--lv2-color-white);
}

.ev-subnav__cta {
  flex-shrink: 0;
}

.ev-subnav__cta-wrapper {
  display: flex;
  gap: 40px;
}

.ev-model__stickyNav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: fixed;
  bottom: 0;
  padding: var(--lv2-value-2dot5) var(--lv2-value-6);
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  z-index: 99;
  gap: 12px;
  backdrop-filter: blur(4px);
  transition: bottom 0.25s ease;
}

.ev-model__stickyNav .lv2-btn {
  width: 100%;
}

.headroom--pinned .ev-model__stickyNav {
  bottom: -70px;
}

.ev-subnav__toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 14px 0;
  color: var(--lv2-color-white);
  font-family: var(--lv2-font-book);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.55px;
  text-transform: uppercase;
}

.ev-subnav__toggle-icon {
  transition: transform 0.25s ease;
}

.ev-subnav.is-open .ev-subnav__toggle-icon {
  transform: rotate(180deg);
}

.ev-technology {
  margin-top: 48px !important;
}

.ev-technology__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

.ev-technology__item {
  overflow: hidden;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
}
.ev-technology__item picture img {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
}

.ev-technology__item-body {
  padding: 24px;
}
.ev-technology__item-body h3 {
  font-family: var(--lv2-font-regular);
  font-size: 18px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ev-technology__item-body p {
  font-family: var(--lv2-font-book);
  font-size: 14px;
}

.ev-performance .lv2-highlight-banner-inner {
  flex-direction: column;
}
@media (max-width: 1024px) {
  .ev-performance .lv2-highlight-banner-inner {
    max-height: 100%;
    height: 80vh;
    justify-content: flex-end;
  }
}
@media (min-width: 1024px) {
  .ev-performance .lv2-highlight-banner-inner .lv2-highlight-content--v2 {
    width: 450px;
  }
}
@media (max-width: 1024px) {
  .ev-performance .lv2-highlight-banner-inner .lv2-highlight-content--v2 {
    margin: 0;
    padding: var(--lv2-value-6);
  }
}
@media (max-width: 1024px) {
  .ev-performance .lv2-highlight-banner-inner .lv2-banner-bg picture,
  .ev-performance .lv2-highlight-banner-inner .lv2-banner-bg img,
  .ev-performance .lv2-highlight-banner-inner .lv2-banner-bg video {
    height: 100%;
  }
}
@media (max-width: 1024px) {
  .ev-performance .lv2-huge-title {
    font-family: var(--lv2-font-regular);
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 8%;
    text-transform: uppercase;
  }
}

.ev-performance__visual {
  margin-top: 48px;
}
.ev-performance__visual img {
  width: 100%;
  border-radius: 4px;
}

.ev-performance__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.ev-performance__stat-item {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.ev-performance__stat-item h3 {
  font-family: var(--lv2-font-regular);
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.ev-performance__stat-item span {
  font-family: var(--lv2-font-book);
  font-size: 14px;
  letter-spacing: 0.64px;
}

.ev-color {
  padding: var(--lv2-section-space) 0;
}

.ev-media-tabs {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  margin-bottom: var(--lv2-value-16);
}
@media (max-width: 1024px) {
  .ev-media-tabs {
    margin-bottom: var(--lv2-value-10);
  }
}

.ev-media-tab {
  position: relative;
  background: none;
  border: none;
  padding: 12px 0;
  font-family: var(--lv2-font-book);
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition: color 0.2s ease;
}
.ev-media-tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background-color: var(--lv2-color-white);
  transition: width 0.25s ease;
}
.ev-media-tab.active {
  color: var(--lv2-color-white);
}
.ev-media-tab.active::after {
  width: 100%;
}

.ev-media-panel {
  display: none;
  position: relative;
}

.ev-media-panel.active {
  display: block;
}

.ev-color__tabs {
  display: flex;
  position: absolute;
  width: 100%;
  gap: 24px;
  margin: 32px 0 24px;
  justify-content: center;
  border: 0;
  z-index: 2;
}
@media (max-width: 1024px) {
  .ev-color__tabs {
    margin: 40px 0 0;
  }
}

.ev-color__tab {
  background: none;
  border: none;
  padding: 12px 0;
  font-family: var(--lv2-font-regular);
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--lv2-color-grey-500);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.ev-color__tab.active {
  color: var(--lv2-color-white);
  border-bottom-color: var(--lv2-color-white);
}

.ev-color__panel {
  display: none;
  position: relative;
  z-index: 1;
}

.ev-color__panel.active {
  display: block;
}

.ev-color__display {
  margin-bottom: 24px;
}
.ev-color__display .ev-color-swiper .swiper-slide {
  --crossFade-speed: 700ms;
  transition-duration: var(--crossFade-speed) !important;
  transition-timing-function: linear !important;
}
@media (max-width: 1024px) {
  .ev-color__display .ev-color-swiper .swiper-slide {
    height: 520px;
  }
}
.ev-color__display .ev-color-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.25), transparent 70%);
  opacity: 0;
  transform: translateX(-100%);
}
.ev-color__display .ev-color-swiper .swiper-slide-active::after {
  animation: sweep var(--crossFade-speed) linear;
}
@keyframes sweep {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  30% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
.ev-color__display img,
.ev-color__display picture,
.ev-color__display video {
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}

.ev-color__controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  z-index: 1;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .ev-color__controls {
    padding-inline: 24px;
  }
}
@media screen and (max-width: 768px) {
  .ev-color__controls {
    padding-inline: 0;
  }
}

.ev-color__swatches {
  display: flex;
  gap: 12px;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 8px;
  border-radius: 100px;
  position: relative;
}
@media (max-width: 1024px) {
  .ev-color__swatches {
    overflow-x: auto;
    overflow-y: hidden;
    max-width: 292px;
    justify-content: flex-start;
  }
}

.ev-color__swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  margin: 4px;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  outline: none;
  position: relative;
  padding: 0;
}
.ev-color__swatch:not(:last-child) {
  margin-right: 0;
}
.ev-color__swatch:hover {
  transform: scale(1.15);
}
.ev-color__swatch::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}
@media (max-width: 1024px) {
  .ev-color__swatch {
    aspect-ratio: 1/1;
    width: 29px;
    height: 29px;
  }
  .ev-color__swatch::before {
    inset: -4px;
  }
}

.ev-color__swatch.active::before {
  border-color: var(--lv2-color-white);
}

.ev-color__name {
  position: absolute;
  font-family: var(--lv2-font-book);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  top: -40px;
  letter-spacing: 2%;
  color: var(--lv2-color-white);
  background: rgba(0, 0, 0, 0.4);
  border-radius: 100px;
  left: 0;
  padding: 4px 12px;
  white-space: nowrap;
  transition: left 0.25s ease;
  pointer-events: none;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .ev-color__name {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 4%;
  }
}

.ev-gallery {
  margin-top: 32px;
}

.ev-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--lv2-value-6);
}
@media (max-width: 1024px) {
  .ev-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .ev-gallery__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.ev-gallery__item {
  position: relative;
  display: block;
  padding: 0;
  border: none;
  cursor: pointer;
  background: none;
  overflow: hidden;
}
.ev-gallery__item picture,
.ev-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.35s ease;
}
.ev-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 100%);
}
.ev-gallery__item:hover :is(picture, img) {
  transform: scale(1.04);
}

.ev-gallery__label {
  position: absolute;
  left: 0;
  bottom: 16px;
  z-index: 1;
  font-family: var(--lv2-font-regular);
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.55px;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  color: var(--lv2-color-white);
}

.ev-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.ev-gallery-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.ev-gallery-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.5);
  transition: 0.15s ease-in-out;
}

.ev-gallery-modal__panel {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  width: 100%;
  background: var(--lv2-color-black);
  border-radius: 2px;
  box-shadow: 0 18px 40px rgba(10, 10, 10, 0.55);
}

.ev-gallery-modal__content {
  position: relative;
}
@media screen and (max-width: 768px) {
  .ev-gallery-modal__content {
    width: 100%;
    margin: 0 auto;
  }
}

.ev-gallery-modal__video-wrap {
  position: relative;
  display: flex;
}
.ev-gallery-modal__video-wrap iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 768px) {
  .ev-gallery-modal__video-wrap iframe {
    aspect-ratio: 16/10;
  }
}

.ev-gallery-modal__slide picture,
.ev-gallery-modal__slide img {
  max-width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .ev-gallery-modal__slide picture,
  .ev-gallery-modal__slide img {
    aspect-ratio: 16/10;
  }
}

.ev-gallery-modal__image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #050505;
}
.ev-gallery-modal__image-wrap picture,
.ev-gallery-modal__image-wrap img {
  max-width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/2;
}
@media screen and (max-width: 768px) {
  .ev-gallery-modal__image-wrap picture,
  .ev-gallery-modal__image-wrap img {
    aspect-ratio: 16/10;
  }
}

.ev-gallery-modal__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--lv2-font-book);
  font-size: 18px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff;
  position: absolute;
  bottom: 0;
  padding: 32px;
  width: 100%;
  z-index: 2;
}
@media (max-width: 640px) {
  .ev-gallery-modal__meta {
    padding: 24px;
    font-size: 14px;
  }
}

.ev-gallery-modal__caption {
  margin: 0;
}

.ev-gallery-modal__counter {
  margin: 0;
  opacity: 0.9;
}

.ev-gallery-modal__close {
  border: 0;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  background: none;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .ev-gallery-modal__close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }
}
.ev-gallery-modal__close span {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.ev-gallery-modal__close span::after {
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg width='44' height='44' viewBox='0 0 44 44' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='44' height='44' rx='22' fill='white' fill-opacity='0.2'/%3E%3Cpath d='M27.1758 28.0742L22.0195 22.8789L16.8242 28.0742C16.5898 28.3086 16.1992 28.3086 15.9258 28.0742C15.6914 27.8008 15.6914 27.4102 15.9258 27.1758L21.1211 21.9805L15.9648 16.8242C15.6914 16.5898 15.6914 16.1992 15.9648 15.9258C16.1992 15.6914 16.5898 15.6914 16.8242 15.9258L22.0195 21.1211L27.1758 15.9258C27.4102 15.6914 27.8008 15.6914 28.0742 15.9258C28.3086 16.1992 28.3086 16.5898 28.0742 16.8242L22.8789 21.9805L28.0742 27.1758C28.3086 27.4102 28.3086 27.8008 28.0742 28.0742C27.8008 28.3086 27.4102 28.3086 27.1758 28.0742Z' fill='white'/%3E%3C/svg%3E%0A");
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  display: block;
}

.ev-gallery-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
@media (max-width: 640px) {
  .ev-gallery-modal__nav {
    width: 42px;
    height: 42px;
  }
}
.ev-gallery-modal__nav span {
  position: relative;
  width: 12px;
  height: 12px;
}
.ev-gallery-modal__nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.ev-gallery-modal__nav--prev {
  left: 16px;
}
.ev-gallery-modal__nav--prev span::before,
.ev-gallery-modal__nav--prev span::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 50%;
  width: 10px;
  height: 1px;
  background-color: #fff;
  transform-origin: left center;
}
.ev-gallery-modal__nav--prev span::before {
  transform: rotate(45deg);
}
.ev-gallery-modal__nav--prev span::after {
  transform: rotate(-45deg);
}

.ev-gallery-modal__nav--next {
  right: 16px;
}
.ev-gallery-modal__nav--next span::before,
.ev-gallery-modal__nav--next span::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 50%;
  width: 10px;
  height: 1px;
  background-color: #fff;
  transform-origin: right center;
}
.ev-gallery-modal__nav--next span::before {
  transform: rotate(45deg);
}
.ev-gallery-modal__nav--next span::after {
  transform: rotate(-45deg);
}

.ev-design__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

.ev-design__card {
  overflow: hidden;
  border-radius: 4px;
  background: var(--lv2-color-white);
}
.ev-design__card picture img {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
}

.ev-design__card-body {
  padding: 24px;
}
.ev-design__card-body h3 {
  font-family: var(--lv2-font-regular);
  font-size: 18px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ev-design__card-body p {
  font-family: var(--lv2-font-book);
  font-size: 14px;
  line-height: 22px;
  color: rgba(10, 10, 10, 0.6);
}

.ev-safety {
  padding-bottom: 100px !important;
}

.ev-safety__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

.ev-safety__card {
  overflow: hidden;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  padding-bottom: 24px;
}
.ev-safety__card picture img {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
}
.ev-safety__card h3 {
  font-family: var(--lv2-font-regular);
  font-size: 18px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 24px 24px 8px;
}
.ev-safety__card p {
  font-family: var(--lv2-font-book);
  font-size: 14px;
  padding: 0 24px;
}

.ev-battery {
  padding: var(--lv2-section-space) 0;
}

.ev-battery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.ev-battery__text {
  max-width: 540px;
}

.ev-battery__media img {
  border-radius: 4px;
}

.ev-charging {
  padding: var(--lv2-section-space) 0;
}

.ev-charging__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.ev-charging__media img {
  border-radius: 4px;
  width: 100%;
}

.ev-charging__text {
  max-width: 540px;
}

.ev-charging__icons {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.ev-charging__icon-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ev-charging__icon-item strong {
  font-family: var(--lv2-font-regular);
  font-size: 20px;
  letter-spacing: 1px;
}
.ev-charging__icon-item span {
  font-family: var(--lv2-font-book);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.ev-faq {
  padding: var(--lv2-section-space) 0;
}

.ev-faq__list {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  max-width: 800px;
}

.ev-faq__item {
  border-bottom: 1px solid var(--lv2-color-grey-200);
}

.ev-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--lv2-font-regular);
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.6px;
  text-align: left;
  color: var(--lv2-color-black);
  gap: 16px;
}

.ev-faq__icon {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.ev-faq__item.is-open .ev-faq__icon {
  transform: rotate(180deg);
}
.ev-faq__item.is-open .ev-faq__answer {
  max-height: 400px;
  padding-bottom: 20px;
}

.ev-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
}
.ev-faq__answer p {
  font-family: var(--lv2-font-book);
  font-size: 15px;
  line-height: 24px;
  color: rgba(10, 10, 10, 0.6);
}

.ev-footer-cta {
  padding: var(--lv2-section-space) 0;
}

.ev-footer-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.ev-footer-cta__text {
  max-width: 520px;
}
.ev-footer-cta__text .lv2-split-title {
  margin-bottom: 8px;
}

.ev-footer-cta__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.ev-footer-cta__actions a {
  text-decoration: none;
}

@media (max-width: 1024px) {
  .ev-hero__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 104px;
    padding-bottom: 44px;
  }
  .ev-hero__title {
    font-size: 32px;
    line-height: 1.15;
  }
  .ev-subnav__inner {
    position: relative;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .ev-subnav__toggle {
    display: flex;
  }
  .ev-subnav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--lv2-color-black);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    z-index: 100;
  }
  .ev-subnav.is-open .ev-subnav__links {
    max-height: 300px;
    padding: 8px 20px 16px;
  }
  .ev-subnav__link {
    padding: 12px 0;
    border-bottom: none;
    width: 100%;
    display: block;
  }
  .ev-subnav__cta {
    display: none;
  }
  .ev-performance__stat-item h3 {
    font-size: 28px;
  }
}
@media (min-width: 1024px) {
  .ev-intro__grid {
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: center;
  }
  .ev-features__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .ev-technology__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .ev-performance__stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .ev-design__grid {
    grid-template-columns: 1fr 1fr;
  }
  .ev-safety__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .ev-battery__grid {
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: center;
  }
  .ev-charging__grid {
    grid-template-columns: 7fr 5fr;
    gap: 64px;
    align-items: center;
  }
  .ev-footer-cta__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .ev-model-landing .lv2-scrollbar-track {
    width: 500px;
  }
}/*# sourceMappingURL=ev-landing.css.map */