:root {
  --green-deep: #1a4a2e;
  --green-mid: #2d7a4f;
  --green-bright: #3dba6f;
  --green-lime: #a8e63d;
  --green-pale: #d6f5e3;
  --green-mist: #edfaf3;
  --white: #ffffff;
  --off-white: #f7fdf9;
  --charcoal: #111a15;
  --gray: #5a6b60;
  --light-gray: #c8ddd0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--off-white);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ── NAV ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 56px;
  background: transparent;
  border-bottom: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#navbar.scrolled {
  top: 0;
  left: 0;
  right: 0;
  padding: 24px 56px;
  background: rgba(240, 242, 240, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 0;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}



.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: all 0.4s ease;
}

.nav-logo em {
  color: var(--green-lime);
  font-style: normal;
  font-family: inherit;
  /* Unify font with EV */
  font-weight: inherit;
}

#navbar.scrolled .nav-logo {
  color: var(--green-deep);
}

.nav-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: all 0.4s ease;
}

#navbar.scrolled .nav-logo img {
  height: 48px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

#navbar.scrolled .nav-links a {
  color: var(--charcoal);
}

#navbar.scrolled .nav-links a:hover {
  color: var(--green-bright);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-lime);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--charcoal) !important;
  color: var(--white) !important;
  padding: 12px 28px !important;
  border-radius: 100px !important;
  font-weight: 800 !important;
  font-size: 1.15rem !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.nav-cta:hover {
  background: var(--green-deep) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

#navbar.scrolled .hamburger span {
  background: var(--charcoal);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 16, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.menu-content {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 85%;
  max-width: 400px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  padding: 80px 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open .menu-content {
  transform: translateX(0);
}

.menu-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--green-deep);
  text-decoration: none;
  transition: all 0.3s ease;
  transform: translateX(20px);
  opacity: 0;
}

.mobile-menu.open a {
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu a:hover {
  color: var(--green-mid);
  padding-left: 10px;
}

.mobile-menu .m-cta {
  background: var(--green-deep);
  color: var(--white) !important;
  padding: 14px 40px;
  border-radius: 4px;
  font-size: 1.4rem !important;
  margin-top: 20px;
  text-align: center;
}

.mobile-menu .m-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--green-deep);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f5f5f5;
  z-index: 10;
}

/* ── HERO ── */
.hero {
  height: 100vh;
  min-height: 800px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  /* Center content vertically */
  padding-top: 100px;
}

.hero-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-slider {
  position: absolute;
  inset: 0;
  width: 300%;
  height: 100%;
  display: flex;
  z-index: 0;
  transition: transform 1.2s cubic-bezier(0.7, 0, 0.3, 1);
}

.hero-slide {
  width: 33.333%;
  height: 100%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  transition: transform 1.2s cubic-bezier(0.7, 0, 0.3, 1);
}

.hero-watermark {
  position: absolute;
  bottom: 60px;
  left: -2vw;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 25vw;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.15);
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
  line-height: 0.8;
  opacity: 1;
}

.hero-slide.active {
  /* No zoom effect */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(10, 25, 16, 0.88) 0%,
      rgba(10, 25, 16, 0.55) 55%,
      rgba(10, 25, 16, 0.08) 100%);
}

.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to top, var(--off-white), transparent);
}

.hero-content {
  position: relative;
  z-index: 20;
  padding: 0 56px 60px;
  max-width: 850px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--green-lime);
  background: rgba(168, 230, 61, 0.1);
  border: 1px solid rgba(168, 230, 61, 0.28);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
  animation: fadeUp 0.9s ease 0.2s both;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-lime);
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.2
  }
}

.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 9vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  animation: fadeUp 0.9s ease 0.35s both;
}

.hero-h1 em {
  color: var(--green-lime);
  font-style: normal;
  display: block;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-top: 22px;
  max-width: 440px;
  animation: fadeUp 0.9s ease 0.5s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 38px;
  animation: fadeUp 0.9s ease 0.65s both;
}

.btn-primary {
  display: inline-block;
  background: var(--green-lime);
  color: var(--green-deep);
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: #bff04a;
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  padding: 15px 32px;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--green-lime);
  color: var(--green-lime);
}

.hero-stats {
  position: absolute;
  right: 56px;
  top: 140px;
  /* Align with Zero Emissions tag */
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 25;
  animation: fadeInRight 0.9s ease 0.8s both;
}

.hero-stats>div {
  background: rgba(168, 230, 61, 0.92);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(26, 74, 46, 0.1);
  padding: 22px 30px;
  border-radius: 6px;
  min-width: 190px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-stats>div:hover {
  background: var(--green-lime);
  transform: translateX(-8px);
  box-shadow: 0 15px 45px rgba(168, 230, 61, 0.3);
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.3rem;
  color: var(--green-deep);
  letter-spacing: 0.05em;
  line-height: 1;
}

.stat-num sup {
  font-size: 0.7rem;
  margin-left: 2px;
}

.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-top: 10px;
  opacity: 0.8;
}

/* ── TICKER ── */
.ticker {
  background: var(--charcoal);
  color: var(--white);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-flex;
  animation: tickerAnim 32s linear infinite;
}

.ticker-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.ticker-item::after {
  content: '⚡';
  font-size: 0.65rem;
}

@keyframes tickerAnim {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ── SECTION COMMONS ── */
section {
  padding: 110px 56px;
}

.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  line-height: 0.94;
  letter-spacing: 0.02em;
  color: var(--green-deep);
}

/* ── FEATURES ── */
.features {
  background: var(--white);
}

.features-top {
  display: block;
  text-align: center;
  margin-bottom: 60px;
}

.features-top p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 600px;
  margin: 20px auto 0;
}


.feat-marquee {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  padding: 20px 0 60px;
}

.feat-marquee-track {
  display: flex;
  width: max-content;
  animation: scrollFeatMarquee 35s linear infinite;
  gap: 20px;
  padding: 0 10px;
}

.feat-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scrollFeatMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 10px));
  }
}

.feat-m-item {
  position: relative;
  width: 600px;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feat-m-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: saturate(1.1);
}

.feat-m-item:hover img {
  transform: scale(1.05);
}

.feat-m-tag {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--green-deep);
  color: var(--green-lime);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  padding: 12px 28px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.feat-m-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 25, 16, 0.7) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* ── PERFORMANCE SECTION ── */
.performance {
  background: var(--white);
  padding: 120px 56px 60px;
}

.performance-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
}

.perf-left img {
  width: 100%;
  height: 750px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 20px 20px 0 var(--green-lime);
}

.perf-right .section-eyebrow {
  color: var(--green-mid);
  margin-bottom: 20px;
}

.perf-right .section-title {
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 30px;
}

.section-desc {
  font-size: 1.15rem;
  color: #3a4a40;
  line-height: 1.7;
  max-width: 650px;
  margin-bottom: 50px;
  font-weight: 500;
}

.perf-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.perf-feat {
  display: flex;
  gap: 20px;
}

.perf-icon {
  width: 54px;
  height: 54px;
  background: rgba(168, 230, 61, 0.1);
  border: 1px solid rgba(168, 230, 61, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--green-deep);
}

.perf-feat h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.perf-feat p {
  font-size: 1rem;
  color: #4a5a50;
  line-height: 1.6;
  font-weight: 500;
}

.perf-bottom-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.perf-bottom-imgs img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.4s ease;
}

.perf-bottom-imgs img:hover {
  transform: scale(1.03);
}

@media (max-width: 1024px) {
  .performance-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .perf-left img {
    height: 500px;
    box-shadow: 10px 10px 0 var(--green-lime);
  }
}

@media (max-width: 768px) {
  .performance {
    padding: 80px 24px 60px;
  }

  .perf-features {
    grid-template-columns: 1fr;
  }

  .perf-bottom-imgs {
    grid-template-columns: 1fr;
  }
}

/* ── PERFORMANCE SECTION — PHONE ── */
@media (max-width: 480px) {
  .performance {
    padding: 0 0 48px;
    background: var(--white);
    overflow-x: hidden;
  }

  .performance-grid {
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    max-width: 100%;
  }

  /* Full-bleed image */
  .perf-left {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .perf-left img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    display: block;
  }

  /* Diagonal white slice at bottom of image */
  .perf-left::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 36px;
    background: var(--white);
    clip-path: polygon(0 55%, 100% 0%, 100% 100%, 0% 100%);
    pointer-events: none;
  }

  /* Lime accent bar on left edge */
  .perf-left::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 5px;
    height: 50%;
    background: var(--green-lime);
    border-radius: 0 3px 3px 0;
  }

  /* Text + content block */
  .perf-right {
    padding: 24px 16px 0;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .perf-right .section-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    margin-bottom: 10px;
  }

  .perf-right .section-title {
    font-size: clamp(2rem, 9vw, 2.6rem);
    line-height: 0.94;
    margin-bottom: 0;
    color: var(--green-deep);
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
  }

  /* Lime underline accent */
  .perf-right .section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    background: var(--green-lime);
    margin-top: 14px;
    margin-bottom: 18px;
    border-radius: 2px;
  }

  .section-desc {
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 24px;
    color: #3a4a40;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  /* 2×2 icon-first feature cards */
  .perf-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
    width: 100%;
    box-sizing: border-box;
  }

  .perf-feat {
    flex-direction: column;
    gap: 8px;
    background: linear-gradient(145deg, #f4fce8, #eaf6d8);
    border: 1px solid rgba(168, 230, 61, 0.3);
    border-radius: 12px;
    padding: 14px 10px;
    align-items: flex-start;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
  }

  .perf-icon {
    width: 38px;
    height: 38px;
    background: var(--white);
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 1.1rem;
    border-radius: 10px;
    margin-bottom: 4px;
    flex-shrink: 0;
  }

  .perf-feat h3 {
    font-size: 0.82rem;
    margin-bottom: 4px;
    line-height: 1.2;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .perf-feat p {
    font-size: 0.72rem;
    line-height: 1.5;
    color: #556655;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  /* Bottom images — simple 2-col grid, no overflow tricks */
  .perf-bottom-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
  }

  .perf-bottom-imgs img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
    transform: none;
    flex: unset;
  }
}



/* ── MODELS ── */
.models {
  background: var(--off-white);
}

.models-head {
  text-align: center;
  margin-bottom: 60px;
}

.models-head .section-title {
  font-size: clamp(3rem, 5vw, 5.5rem);
  color: var(--green-deep);
  line-height: 0.95;
}

.models-head a {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
  margin-top: 20px;
}

.models-head a:hover {
  gap: 14px;
}

.models-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.model-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.model-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  border-color: var(--green-lime);
}

.model-img-wrap {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.model-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: saturate(1.05);
}

.model-card:hover .model-img-wrap img {
  transform: scale(1.06);
}

.model-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 25, 16, 0.5), transparent 60%);
}

.model-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--green-lime);
  color: var(--green-deep);
  border-radius: 2px;
  z-index: 3;
}

.model-body {
  padding: 32px;
}

.model-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--green-deep);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.model-price {
  font-size: 0.9rem;
  color: var(--green-mid);
  font-weight: 700;
  margin-bottom: 24px;
}

.model-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid var(--green-pale);
  padding-top: 20px;
}

.model-spec {
  text-align: center;
}

.model-spec:not(:last-child) {
  border-right: 1px solid var(--green-pale);
}

.spec-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.22rem;
  color: var(--green-deep);
  letter-spacing: 0.02em;
}

.spec-key {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 2px;
}

/* ── FULL-WIDTH BANNER ── */
.banner {
  position: relative;
  height: 85vh;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 56px;
}

/* ── PRODUCTS SECTION ── */
.products {
  background: #f8f9fa;
  padding: 60px 56px 40px;
}

.products-head {
  text-align: center;
  margin-bottom: 80px;
}

.products-head p {
  max-width: 600px;
  margin: 20px auto 0;
  color: var(--gray);
}

.products .product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.products .product-card {
  background: var(--white);
  border: 1px solid rgba(26, 74, 46, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 14px 30px rgba(17, 26, 21, 0.05);
}

.products .product-card:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border-color: var(--green-lime);
  transform: translateY(-4px);
}

.products .p-img-box {
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f4fbf6 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #f0f0f0;
}

.products .p-img-box img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}



.products .p-body {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.products .p-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.products .p-title-row h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--green-deep);
  letter-spacing: 0.02em;
}

.p-price {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--green-mid);
}


.p-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.p-feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray);
}

.p-feat-item i {
  color: var(--green-lime);
  font-size: 0.7rem;
}

.products .p-footer {
  margin-top: auto;
}

.products .btn-product {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  background: var(--green-deep);
  color: var(--white);
  text-decoration: none;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 2px;
  transition: background 0.3s;
}

.products .btn-product:hover {
  background: var(--green-mid);
}

.collection-btn-container {
  text-align: center;
  margin-top: 80px;
}

@media (max-width: 1100px) {
  .products .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .products .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .products {
    padding: 56px 16px 32px;
  }

  .products .product-card {
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(17, 26, 21, 0.06);
  }

  .products .p-img-box {
    height: 180px;
  }

  .products .p-body {
    padding: 14px 12px 12px;
  }

  .products .p-title-row {
    margin-bottom: 12px;
  }

  .products .p-title-row h3 {
    font-size: 1.15rem;
    line-height: 1;
  }



  .products .btn-product {
    padding: 12px 10px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 480px) {
  .products .product-grid {
    gap: 10px;
  }

  .products .p-img-box {
    height: 150px;
  }

  .products .p-body {
    padding: 12px 10px 10px;
  }

  .products .p-title-row h3 {
    font-size: 1rem;
  }



  .products .btn-product {
    padding: 11px 8px;
    font-size: 0.72rem;
  }
}

.banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(10, 25, 16, 0.82) 0%, rgba(10, 25, 16, 0.28) 100%);
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.banner-content .section-title {
  color: var(--white);
}

.banner-content .section-eyebrow {
  color: var(--green-lime);
}

.banner-content .section-title {
  color: var(--white);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.95;
  margin-bottom: 24px;
}

.banner-content p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.05rem;
  line-height: 1.78;
  margin-top: 18px;
  max-width: 420px;
}

.banner-content .btn-primary {
  margin-top: 34px;
}

/* ── CHARGING ── */
.charging-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  padding: 0;
}

.charge-img-col {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.charge-img-col img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.charge-img-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--green-deep) 100%);
}

.charge-text-col {
  background: var(--green-deep);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.charge-text-col .section-title {
  color: var(--white);
  margin-bottom: 20px;
}

.charge-text-col .section-eyebrow {
  color: var(--green-lime);
}

.charge-text-col>p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.charge-bars {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.charge-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 8px;
}

.charge-label span:last-child {
  color: var(--green-lime);
}

.charge-bar {
  height: 5px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 3px;
  overflow: hidden;
}

.charge-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--green-bright), var(--green-lime));
  width: 0;
  transition: width 1.9s cubic-bezier(0.25, 1, 0.5, 1);
}

.charge-cta {
  margin-top: 44px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-outline-white {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  padding: 14px 28px;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline-white:hover {
  border-color: var(--green-lime);
  color: var(--green-lime);
}

/* ── GALLERY ── */
.gallery {
  background: var(--white);
}

.gallery-head {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 4px;
  row-gap: 0;
}

.g-cell {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.g-cell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.55s ease;
  display: block;
  filter: saturate(1.06);
}

.g-cell:hover img {
  transform: scale(1.07);
}

/* ── QUOTE ── */
.quote-band {
  background: var(--green-lime);
  padding: 90px 56px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.quote-band::before {
  content: '"';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22rem;
  color: rgba(26, 74, 46, 0.07);
  position: absolute;
  top: -4rem;
  left: 1%;
  line-height: 1;
  pointer-events: none;
}

.quote-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  letter-spacing: 0.03em;
  color: var(--green-deep);
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.1;
  position: relative;
  z-index: 2;
}

.quote-attr {
  margin-top: 28px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26, 74, 46, 0.48);
  position: relative;
  z-index: 2;
}

/* ── SPECS ── */
.specs-section {
  background: var(--charcoal);
  padding: 100px 56px;
}

.specs-section .section-title {
  color: var(--white);
}

.specs-section .section-eyebrow {
  color: var(--green-lime);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: rgba(255, 255, 255, 0.04);
}

.spec-block {
  padding: 40px 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s;
}

.spec-block:hover {
  background: rgba(61, 186, 111, 0.08);
}

.spec-icon {
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.spec-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem;
  color: var(--green-lime);
  letter-spacing: 0.04em;
  line-height: 1;
}

.spec-unit {
  font-size: 0.9rem;
  color: var(--green-bright);
  margin-left: 3px;
}

.spec-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 12px;
}

.spec-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin-top: 12px;
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  padding: 80px 56px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand>p {
  font-size: 1rem;
  line-height: 1.72;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 18px;
}

.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--green-lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom em {
  color: var(--green-bright);
  font-style: normal;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 {
  transition-delay: 0.12s;
}

.reveal-d2 {
  transition-delay: 0.24s;
}

.reveal-d3 {
  transition-delay: 0.36s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  nav {
    padding: 18px 32px;
  }

  nav.scrolled {
    padding: 12px 32px;
  }

  section {
    padding: 80px 32px;
  }

  .hero-content {
    padding: 0 32px 80px;
  }

  .banner {
    padding: 0 32px;
  }

  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .models-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .models-row .model-card:nth-child(3) {
    grid-column: 1 / -1;
  }

  .charging-section {
    grid-template-columns: 1fr;
  }

  .charge-img-col::after {
    background: linear-gradient(to top, var(--green-deep) 10%, transparent 55%);
  }

  .charge-img-col {
    min-height: 380px;
  }

  .charge-text-col {
    padding: 64px 32px;
  }

  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .gallery {
    padding: 80px 32px;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 8px;
    row-gap: 0;
  }

  footer {
    padding: 60px 32px 32px;
  }
}

@media (max-width: 768px) {
  #navbar {
    padding: 12px 20px;
    background: rgba(240, 242, 240, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }

  #navbar .nav-logo {
    color: var(--green-deep);
  }

  #navbar .hamburger span {
    background: var(--green-deep);
  }

  #navbar.scrolled {
    left: 0;
    right: 0;
    top: 0;
    padding: 12px 20px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  section {
    padding: 50px 20px;
    /* Reduced vertical padding for all sections on mobile */
  }

  .hero-content {
    padding: 40px 20px 20px;
    background: #f0f2f0;
  }

  .hero-stats {
    display: none;
  }

  .ticker {
    margin-top: 12px;
  }

  .hero-stats>div {
    min-width: calc(50% - 6px);
    padding: 12px 16px;
  }

  .stat-num {
    font-size: 1.8rem;
  }

  .banner {
    padding: 0 20px;
    height: 60vh;
  }

  .banner-content .section-title {
    font-size: 2.8rem;
  }

  .feat-grid {
    grid-template-columns: 1fr;
  }

  .p-img-box {
    height: auto;
    aspect-ratio: 16/10;
    width: 100%;
  }

  .p-specs {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .p-spec-item:nth-child(3) {
    grid-column: 1 / -1;
  }

  .models-row {
    grid-template-columns: 1fr;
  }

  .models-row .model-card:nth-child(3) {
    grid-column: auto;
  }

  .charging-section {
    display: block;
    position: relative;
    padding: 0;
    overflow: hidden;
  }

  .charge-img-col {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .charge-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    /* Very light so dark text pops */
  }

  .charge-img-col::after {
    background: linear-gradient(to bottom, var(--green-deep) 0%, transparent 50%, var(--green-deep) 100%);
    z-index: 2;
  }

  .charge-text-col {
    position: relative;
    z-index: 10;
    background: transparent;
    padding: 60px 24px;
    text-align: center;
    color: var(--green-deep);
    /* Dark text for readability */
  }

  .charge-text-col .section-title,
  .charge-text-col p,
  .charge-text-col .charge-label {
    color: var(--green-deep) !important;
  }

  .charge-bar {
    background: rgba(0, 0, 0, 0.1) !important;
  }

  .models-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero {
    height: auto;
    min-height: auto;
    padding: 90px 16px 0;
    display: block;
    background: #f0f2f0;
    /* Match content background to prevent gaps */
  }

  .hero-frame {
    position: relative;
    height: 56.25vw;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.06);
    border: 2px solid var(--white);
  }

  .hero-slider {
    position: absolute;
    height: 100%;
    width: 300%;
    z-index: 1;
  }

  .hero-slide {
    background-size: cover;
    /* Since container now matches aspect ratio, cover shows full image */
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    height: 100%;
    background-image: none;
    background-color: rgba(0, 0, 0, 0.05);
    z-index: 5;
  }

  .hero-content {
    padding: 40px 20px 80px;
    /* Massive bottom padding to ensure buttons never cut */
    background: #f0f2f0;
  }

  .hero-h1 {
    color: var(--green-deep);
    font-size: 3.5rem;
  }

  .hero-sub {
    color: var(--charcoal);
  }

  .hero-watermark {
    display: none;
  }

  .gallery {
    padding: 40px 14px;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 6px;
    row-gap: 0;
  }

  .g-cell {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    display: block;
    background: linear-gradient(180deg, #ffffff 0%, #f5faf6 100%);
    border: none;
    box-shadow: 0 4px 12px rgba(17, 26, 21, 0.05);
  }

  .g-cell a {
    display: block;
    width: 100%;
    height: 100%;
  }

  .g-cell img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 6px;
  }

  .g-cell:nth-child(6) {
    display: block;
  }



  .quote-band {
    padding: 64px 20px;
  }

  .specs-section {
    padding: 64px 20px;
  }

  .specs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .features-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .models-head {
    flex-direction: column;
    align-items: flex-start;
  }

  footer {
    padding: 52px 20px 28px;
  }

  .footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 28px 20px;
  }

  .footer-brand {
    flex: 0 0 100%;
  }

  .footer-col {
    flex: 1 1 calc(50% - 10px);
    min-width: 120px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .hero-h1 {
    font-size: 3.2rem;
  }

  .hero-sub {
    font-size: 0.9rem;
    margin-top: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    text-align: center;
    padding: 14px 24px;
  }

  .hero-actions .btn-ghost {
    color: var(--green-deep);
    border-color: rgba(26, 74, 46, 0.3);
  }

  .hero-stats {
    gap: 12px;
  }

  .p-img-box {
    height: 280px;
  }

  .p-body {
    padding: 20px;
  }

  .p-title-row h3 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .p-specs {
    gap: 8px;
    padding: 12px 0;
  }

  .p-spec-item label {
    font-size: 0.95rem;
  }

  .p-spec-item span {
    font-size: 0.95rem;
  }

  /* ── GALLERY — PHONE MARQUEE ── */
  .gallery {
    padding: 40px 0 48px;
    overflow: hidden;
  }

  .gallery-head {
    padding: 0 20px;
    margin-bottom: 28px;
  }

  /* Hide original grid — JS rebuilds it as marquee */
  .gallery-grid.marquee-ready {
    display: none;
  }

  /* Marquee wrapper */
  .gallery-marquee-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
    width: 100%;
  }

  /* Each row */
  .gallery-marquee-row {
    overflow: hidden;
    width: 100%;
  }

  /* Sliding inner track — contains items × 2 for seamless loop */
  .gallery-marquee-inner {
    display: flex;
    gap: 14px;
    width: max-content;
    will-change: transform;
  }

  .scroll-left {
    animation: gal-scroll-left 18s linear infinite;
  }

  .scroll-right {
    animation: gal-scroll-right 18s linear infinite;
  }

  @keyframes gal-scroll-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  @keyframes gal-scroll-right {
    0% {
      transform: translateX(-50%);
    }

    100% {
      transform: translateX(0);
    }
  }

  /* Pause on touch */
  .gallery-marquee-row:active .gallery-marquee-inner {
    animation-play-state: paused;
  }

  /* Card inside marquee */
  .gallery-marquee-inner .g-cell {
    flex: 0 0 52vw;
    width: 52vw;
    height: 64vw;
    max-height: 260px;
    aspect-ratio: unset;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(160deg, #f4fce8 0%, #e8f5d4 100%);
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .gallery-marquee-inner .g-cell a {
    display: block;
    width: 100%;
    height: 100%;
  }

  .gallery-marquee-inner .g-cell img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    display: block;
    transform: none !important;
  }
}

/* ── COLLECTION PAGE ── */
.collection-page {
  background: #f4f7f5;
  min-height: 100vh;
}

.collection-banner {
  height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 60px;
}

.collection-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 25, 16, 0.75), rgba(10, 25, 16, 0.4));
  z-index: 1;
}

.collection-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 40px;
}

.collection-banner-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  color: var(--white);
  letter-spacing: 0.05em;
  margin: 0;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.collection-banner-content p {
  color: var(--green-lime);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-top: 15px;
  font-size: 1.1rem;
  opacity: 0.9;
}

.collection-layout {
  max-width: 1440px;
  margin: 0 auto 100px;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
  align-items: start;
}

.filter-sidebar {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  position: sticky;
  top: 120px;
}

.filter-sidebar h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--green-deep);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
  letter-spacing: 0.02em;
}

.filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-list li {
  margin-bottom: 12px;
}

.filter-list a {
  text-decoration: none;
  color: var(--gray);
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.2s;
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
}

.filter-list a:hover {
  background-color: var(--green-pale);
  color: var(--green-deep);
}

.filter-list a.active {
  background-color: var(--green-deep);
  color: var(--green-lime);
  font-weight: 600;
}

@media (max-width: 900px) {
  .collection-layout {
    grid-template-columns: 1fr;
  }

  .filter-sidebar {
    position: static;
    margin-bottom: 30px;
  }
}


.collection-sidebar {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  height: fit-content;
  position: sticky;
  top: 120px;
  max-height: calc(100vh - 160px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--green-pale) transparent;
}

.collection-sidebar::-webkit-scrollbar {
  width: 4px;
}

.collection-sidebar::-webkit-scrollbar-thumb {
  background: var(--green-pale);
  border-radius: 10px;
}

.collection-sidebar h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--green-deep);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
  letter-spacing: 0.02em;
}

.filter-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--gray);
  cursor: pointer;
  font-weight: 500;
  transition: color 0.2s;
}

.filter-item:hover {
  color: var(--green-mid);
}

.filter-item input {
  accent-color: var(--green-deep);
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.collection-layout .product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.p-img-box {
  aspect-ratio: 16/11;
  background: #f9fbf9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.p-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 5px;
  /* Reduced padding for larger look */
}


.p-body {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.p-title-row {
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.p-title-row h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--charcoal);
  margin: 0;
  letter-spacing: 0.02em;
}

.p-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  color: var(--green-mid);
  font-size: 1.5rem;
  margin: 0;
  white-space: nowrap;
}

.p-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.p-spec-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 0;
}

.p-spec-item label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  color: var(--green-deep);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 0;
}

.p-spec-item span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--gray);
  letter-spacing: 0.02em;
}

.btn-product {
  margin-top: auto;
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--green-lime);
  color: var(--charcoal);
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(168, 230, 61, 0.15);
}

.btn-product:hover {
  background: #bff04a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(168, 230, 61, 0.25);
}

@media (max-width: 1024px) {
  .collection-layout {
    padding: 0 32px;
  }

  .collection-layout .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .collection-layout {
    padding: 0 24px;
  }

  .collection-layout .product-grid {
    grid-template-columns: 1fr;
  }
}

/* ── TEST RIDE SECTION ── */
.test-ride-section {
  padding: 40px 56px;
  background: var(--charcoal);
}

.test-ride-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}

.test-ride-carousel {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.test-ride-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ── BENEFITS SECTION ── */
.benefits-section {
  background: var(--white);
  padding: 100px 56px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.benefit-card {
  padding: 40px;
  background: var(--off-white);
  border-radius: 12px;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(17, 26, 21, 0.06);
}

/* ── CONTACT SECTION ── */
.contact-section {
  background: var(--off-white);
  padding: 100px 56px;
}

.contact-header {
  max-width: 1200px;
  margin: 0 auto 56px;
}

.contact-intro {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 560px;
  margin-top: 16px;
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

/* Left column: map + info strip */
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.09);
}

.contact-left .contact-map {
  flex: 1;
  min-height: 320px;
  border-radius: 0;
  box-shadow: none;
  border: none;
  margin: 0;
}

.contact-left .contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.contact-info-strip {
  background: var(--green-deep);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-info-item svg {
  width: 18px;
  height: 18px;
  color: var(--green-lime);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Right column: form */
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.07);
  border: 1px solid #eee;
}

/* ── MOBILE OVERRIDES ── */
@media (max-width: 768px) {
  .test-ride-section {
    padding: 48px 20px;
  }

  .test-ride-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .test-ride-carousel {
    min-height: 260px;
  }

  .test-ride-form-grid {
    grid-template-columns: 1fr;
  }

  .benefits-section {
    padding: 64px 20px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-card {
    padding: 28px 22px;
  }

  .contact-section {
    padding: 64px 20px;
  }

  .contact-header {
    margin-bottom: 36px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-left .contact-map iframe {
    min-height: 260px;
  }
}

@media (max-width: 480px) {
  .test-ride-section {
    padding: 40px 16px;
  }

  .benefits-section {
    padding: 48px 16px;
  }

  .benefit-card {
    padding: 24px 18px;
  }

  .contact-section {
    padding: 48px 16px;
  }

  .contact-left .contact-map iframe {
    min-height: 220px;
  }

  .contact-info-strip {
    padding: 16px 18px;
    gap: 10px;
  }

  .contact-info-item {
    font-size: 0.88rem;
  }

  .contact-form {
    padding: 24px 18px;
  }
}

.footer-legal-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal-links a:hover {
  color: var(--green-bright);
}

/* Hover Slideshow for Product Cards */
.hover-slideshow {
  position: relative;
  overflow: hidden;
  justify-content: flex-start;
}

.slideshow-track {
  display: flex;
  width: calc(var(--total-imgs) * 100%);
  height: 100%;
  transition: transform 0.4s ease;
  flex-shrink: 0;
}

.slideshow-track img {
  flex: 0 0 calc(100% / var(--total-imgs));
  width: calc(100% / var(--total-imgs));
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* Adjust track width for specific counts */
.hover-slideshow[data-total="2"] .slideshow-track {
  width: 200%;
}

.hover-slideshow[data-total="3"] .slideshow-track {
  width: 300%;
}

.hover-slideshow[data-total="4"] .slideshow-track {
  width: 400%;
}

.hover-slideshow[data-total="2"] .slideshow-track img {
  flex-basis: 50%;
}

.hover-slideshow[data-total="3"] .slideshow-track img {
  flex-basis: 33.333%;
}

.hover-slideshow[data-total="4"] .slideshow-track img {
  flex-basis: 25%;
}

.product-card:hover .hover-slideshow.animated .slideshow-track {
  animation: slideTrack calc(var(--total-imgs) * 1.5s) infinite;
}

/* Specific animations for specific counts to ensure correct alignment */
.product-card:hover .hover-slideshow[data-total="2"] .slideshow-track {
  animation: slideTrack2 3s infinite;
}

@keyframes slideTrack2 {

  0%,
  45% {
    transform: translateX(0);
  }

  50%,
  95% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.product-card:hover .hover-slideshow[data-total="3"] .slideshow-track {
  animation: slideTrack3 4.5s infinite;
}

@keyframes slideTrack3 {

  0%,
  28% {
    transform: translateX(0);
  }

  33%,
  61% {
    transform: translateX(-33.3333%);
  }

  66%,
  95% {
    transform: translateX(-66.6666%);
  }

  100% {
    transform: translateX(0);
  }
}

.product-card:hover .hover-slideshow[data-total="4"] .slideshow-track {
  animation: slideTrack4 6s infinite;
}

@keyframes slideTrack4 {

  0%,
  20% {
    transform: translateX(0);
  }

  25%,
  45% {
    transform: translateX(-25%);
  }

  50%,
  70% {
    transform: translateX(-50%);
  }

  75%,
  95% {
    transform: translateX(-75%);
  }

  100% {
    transform: translateX(0);
  }
}

.slider-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s;
}

.product-card:hover .slider-dots {
  opacity: 1;
}

.dot {
  width: 5px;
  height: 5px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
}

.product-card:hover .dot {
  animation: dotActive calc(var(--total-imgs) * 1.5s) infinite;
  animation-delay: calc(var(--dot-idx) * 1.5s);
}

@keyframes dotActive {

  0%,
  25% {
    background: var(--green-mid);
  }

  30%,
  100% {
    background: rgba(0, 0, 0, 0.15);
  }
}

/* Fallback for single image - no dots, no track animation */
.hover-slideshow:not(.animated) .slideshow-track {
  width: 100%;
  transform: none !important;
  animation: none !important;
}

@media (max-width: 768px) {
  .p-title-row h3 {
    font-size: 1.4rem;
  }
}

/* ── CART BADGE & ICON ── */
.nav-cart-link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 4px !important;
}

.nav-cart-link::after {
  display: none !important;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #e53935;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(229, 57, 53, 0.4);
  animation: badgePop 0.3s ease;
}

@keyframes badgePop {
  0% {
    transform: scale(0);
  }

  60% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

.nav-mobile-actions {
  display: none;
  align-items: center;
  gap: 12px;
}

.mobile-cart {
  display: none;
}

@media (max-width: 768px) {
  .nav-mobile-actions {
    display: flex;
  }

  .mobile-cart {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

/* ── BUY NOW BUTTON ── */
.btn-buy-now {
  background: var(--green-deep);
  color: var(--green-lime);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  padding: 16px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-buy-now:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
}

/* ── CART TOAST ── */
.cart-toast {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green-deep);
  color: #fff;
  padding: 14px 20px;
  border-radius: 10px;
  margin-top: 12px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  animation: slideUp 0.3s ease;
  box-shadow: 0 8px 24px rgba(26, 74, 46, 0.3);
}

.cart-toast svg {
  color: var(--green-lime);
  flex-shrink: 0;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── CONTACT MAP (inside left column) ── */
.contact-map {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* ── FOOTER MAP ── */
.footer-map-wrap {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.footer-map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-map-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-deep);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.footer-map-badge svg {
  width: 14px;
  height: 14px;
  color: var(--green-lime);
  flex-shrink: 0;
}

/* ── FOOTER SOCIALS ── */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.footer-socials a:hover {
  background: var(--green-lime);
  color: var(--green-deep);
  border-color: var(--green-lime);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .footer-map-wrap {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .footer-map-wrap {
    height: 170px;
  }
}

/* ── FLOATING CONTACT BUTTONS ── */
.float-contact {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9000;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.20);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.float-btn svg {
  width: 26px;
  height: 26px;
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
}

.float-whatsapp {
  background: #25D366;
  color: #fff;
}

.float-phone {
  background: var(--green-deep);
  color: var(--green-lime);
}

@media (max-width: 480px) {
  .float-contact {
    bottom: 20px;
    right: 16px;
    gap: 12px;
  }

  .float-btn {
    width: 46px;
    height: 46px;
  }

  .float-btn svg {
    width: 22px;
    height: 22px;
  }
}