/* ===================================
   CHARGE QUBE — Shared Styles
   =================================== */

/* --- Fonts --- */
@font-face {
  font-family: 'TWKLausanne';
  src: url('fonts/TWKLausanne-300.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TWKLausanne';
  src: url('fonts/TWKLausanne.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LightningDisplay';
  src: url('fonts/LightningDisplay.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* --- Variables --- */
:root {
  --dark: #04252B;
  --darkest: #0C0C15;
  --orange: #FF7A00;
  --light-grey: #F7F7F7;
  --muted: #BAC9CE;
  --muted2: #5A757E;
  --white: #FFFFFF;
  --black: #000000;

  --font-body: 'TWKLausanne', system-ui, -apple-system, sans-serif;
  --font-display: 'LightningDisplay', 'TWKLausanne', sans-serif;

  --container: 1440px;
  --inner: 1360px;
  --pad: 40px;
  --nav-h: 112px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-body); font-size: 16px; color: var(--darkest); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* --- Container --- */
.container {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ===================================
   NAVBAR
   =================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: var(--nav-h);
  background: rgba(2, 20, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar--scrolled {
  background: rgba(2, 20, 26, 0.95);
  box-shadow: 0 1px 32px rgba(0,0,0,0.4);
}

.navbar__inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 var(--pad);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo__wordmark {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.08;
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
}

.logo__triangle {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-bottom: 12px solid var(--orange);
  flex-shrink: 0;
  margin-bottom: 2px;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  opacity: 0.7;
  transition: all 0.25s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 8px;
  letter-spacing: 0.01em;
  gap: 6px;
}

.nav-link:hover {
  opacity: 1;
  background: rgba(255,255,255,0.06);
}

.nav-link .caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid var(--white);
  opacity: 0.4;
  margin-left: 2px;
}

/* Enquire Button */
.btn-enquire {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--darkest);
  background: var(--orange);
  padding: 0 24px;
  height: 44px;
  border: none;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}

.btn-enquire:hover { opacity: 0.88; transform: translateY(-1px); color: var(--darkest); }

.btn-enquire .arrow-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--darkest);
  padding: 24px var(--pad);
  border-top: 1px solid rgba(255,255,255,0.1);
  z-index: 99;
}

.mobile-nav.open { display: block; }

.mobile-nav .nav-link {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav .btn-enquire {
  margin-top: 20px;
  width: 100%;
  justify-content: center;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 24px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn:hover { opacity: 0.88; }
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--orange);
  color: var(--darkest);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
  width: fit-content;
}

.btn-dark {
  background: var(--darkest);
  color: var(--white);
  border: none;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
  width: fit-content;
}

.btn-dark:hover { opacity: 0.88; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover { border-color: var(--white); opacity: 1; }

.btn-download {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-download:hover { border-color: var(--white); opacity: 1; }

.btn .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.btn .arrow svg { width: 100%; height: 100%; }

/* ===================================
   CORE SPECS (Product page single spec)
   =================================== */
.core-specs {
  background: var(--darkest);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.core-specs__inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.core-specs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.core-specs__image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.core-specs__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.core-specs__image:hover .core-specs__img {
  transform: scale(1.04);
}

.core-specs__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.core-specs__label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
}

.core-specs__title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.core-specs__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.core-specs__badge {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,165,0,0.08);
  border: 1px solid rgba(255,165,0,0.15);
  padding: 8px 16px;
  border-radius: 100px;
}

.core-specs__rows {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}

.core-specs__row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 4px;
}

@media (min-width: 901px) {
  .core-specs__row {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    padding: 16px 0;
    gap: 24px;
  }
}

.core-specs__row:last-child {
  border-bottom: none;
}

.core-specs__row-label {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.core-specs__row-value {
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  text-align: left;
  line-height: 1.5;
  word-break: break-word;
  overflow-wrap: anywhere;
}

@media (min-width: 901px) {
  .core-specs__row-value {
    font-size: 16px;
    text-align: right;
  }
}

.core-specs__actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

@media (max-width: 900px) {
  .core-specs__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .core-specs__image {
    aspect-ratio: 3 / 2;
  }

  .core-specs__title {
    font-size: 40px;
  }
}

/* ===================================
   CERTIFICATIONS
   =================================== */
.certs-section {
  padding: 64px 0;
  background: var(--darkest);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.certs-section__inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.certs-section__text {
  flex-shrink: 0;
}

.certs-section__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.certs-section__title {
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  opacity: 0.7;
}

.certs-section__badges {
  display: flex;
  align-items: center;
  gap: 48px;
}

.certs-section__logo {
  height: 140px;
  width: auto;
  border-radius: 8px;
}

.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.cert-badge:hover {
  transform: translateY(-4px);
}

.cert-badge__icon {
  width: 72px;
  height: 72px;
  color: rgba(255,255,255,0.2);
  transition: color 0.3s;
}

.cert-badge:hover .cert-badge__icon {
  color: rgba(255,255,255,0.4);
}

.cert-badge__icon svg {
  width: 100%;
  height: 100%;
}

.cert-badge__name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.cert-badge__desc {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .certs-section__inner {
    flex-direction: column;
    text-align: center;
  }

  .certs-section__badges {
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--dark);
  padding: 48px 0 36px;
}

.footer__inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.footer__cq {
  font-family: var(--font-display);
  font-size: 69px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 32px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer__copy {
  font-size: 16px;
  font-weight: 300;
  color: var(--white);
  opacity: 0.7;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--white);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer__social a:hover { opacity: 1; }

.footer__social svg { width: 20px; height: 20px; fill: currentColor; }

/* ===================================
   CTA BANNER
   =================================== */
.cta-banner {
  background: var(--orange);
  padding: 80px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Full-width sections must not fade their background in — it exposes the
   white body behind them and causes a visible flash on scroll. */
.cta-banner.fade-in,
.certs-section.fade-in {
  opacity: 1;
  transform: none;
}

.cta-banner__text {
  font-size: 36px;
  font-weight: 400;
  color: var(--darkest);
  max-width: 600px;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--darkest);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 90%;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(2, 20, 26, 0.85) 0%,
    rgba(2, 20, 26, 0.55) 45%,
    rgba(2, 20, 26, 0.1) 80%,
    transparent 100%
  );
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--inner);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  gap: 48px;
  flex: 1;
  justify-content: center;
}

.hero__content {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__eyebrow {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
}

.hero__title {
  font-size: 72px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
}

.hero__subtitle {
  font-size: 20px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn-outline--white {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

.btn-outline--white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

.hero__stats {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 48px;
  padding: 24px var(--pad);
  background: rgba(4,37,43,0.5);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  width: 100%;
  justify-content: center;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--orange);
}

.hero__stat-label {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero outlined text */
.hero__title-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.5);
  text-stroke: 1.5px rgba(255,255,255,0.5);
  position: relative;
  font-weight: 800;
}

.hero__title-outline::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: var(--white);
  -webkit-text-stroke: 0;
  text-stroke: 0;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__title-outline.hero-animate__line {
  animation-fill-mode: forwards;
}

.hero__title-outline.is-filled-hero::before {
  clip-path: inset(0 0 0 0);
}

/* Hero entrance animation */
.hero-animate__item,
.hero-animate__line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: hero-reveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__eyebrow.hero-animate__item { animation-delay: 0.2s; }
.hero-animate__line:nth-child(1) { animation-delay: 0.45s; }
.hero-animate__line:nth-child(2) { animation-delay: 0.65s; }
.hero__subtitle.hero-animate__item { animation-delay: 0.9s; }
.hero__actions.hero-animate__item { animation-delay: 1.15s; }

@keyframes hero-reveal {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Stats bar entrance */
.hero__stats.fade-in {
  animation: hero-reveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.4s forwards;
  opacity: 0;
  transform: translateY(30px);
}

/* ===================================
   HOW IT WORKS
   =================================== */
.how-section-wrapper {
  height: 250vh;
  position: relative;
  background: var(--darkest);
}

.how-section {
  padding: 100px 0;
  background: var(--darkest);
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.how-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,165,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.how-section__inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
  z-index: 1;
}

.how-section__label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.how-section__title {
  font-size: 40px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  max-width: 600px;
  margin-bottom: 72px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}

.how-step {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.how-step__card {
  background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s, background 0.4s;
  position: relative;
  z-index: 1;
}

.how-step__card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,165,0,0.15);
  background: linear-gradient(160deg, rgba(255,165,0,0.06) 0%, rgba(255,255,255,0.02) 100%);
}

.how-step__number-badge {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 2px;
  background: rgba(255,165,0,0.08);
  border: 1px solid rgba(255,165,0,0.15);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.how-step__icon-wrap {
  width: 88px;
  height: 88px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.how-step__icon-glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,165,0,0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.how-step__card:hover .how-step__icon-glow {
  opacity: 1;
}

.how-step__icon-wrap svg {
  width: 52px;
  height: 52px;
  position: relative;
  z-index: 1;
}

.how-step__title {
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.how-step__desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 280px;
}

/* Connecting line between cards */
.how-step__line {
  display: none;
}

.how-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -1px;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, rgba(255,165,0,0.15), transparent);
}

/* Ensure how-step fade-in works */
.how-step.fade-in {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.how-step.fade-in.visible {
  opacity: 1;
  transform: none;
}

.how-step.fade-in:nth-child(1) { transition-delay: 0.1s; }
.how-step.fade-in:nth-child(2) { transition-delay: 0.35s; }
.how-step.fade-in:nth-child(3) { transition-delay: 0.6s; }

@media (max-width: 900px) {
  .how-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .how-step:not(:last-child)::after {
    display: none;
  }

  .how-section__title {
    font-size: 32px;
  }
}

.hero__mockup {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  padding: 40px;
  position: relative;
  z-index: 1;
}

.mockup-desktop {
  background: var(--white);
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  width: 380px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.mockup-desktop__bar {
  background: var(--darkest);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-desktop__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.mockup-desktop__screen {
  background: var(--dark);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-desktop__screen-inner {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.05em;
}

.mockup-phone {
  background: var(--dark);
  border-radius: 20px;
  width: 120px;
  height: 240px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}

.mockup-phone__notch {
  width: 40px;
  height: 10px;
  background: var(--darkest);
  border-radius: 0 0 6px 6px;
  margin: 0 auto;
  position: relative;
  top: 8px;
}

/* ===================================
   SECTION LABEL
   =================================== */
.section-label {
  font-size: 18px;
  font-weight: 400;
  color: var(--darkest);
  text-transform: none;
  margin-bottom: 16px;
}

.section-label--light { color: var(--white); opacity: 0.7; }
.section-label--orange { color: var(--orange); }

/* ===================================
   INTRO / TEXT SECTIONS
   =================================== */
.intro-section {
  padding: 80px 0;
}

.intro-section--dark { background: var(--darkest); }
.intro-section--light { background: var(--light-grey); }
.intro-section--white { background: var(--white); }
.intro-section--teal { background: var(--dark); }
.intro-section--orange { background: var(--orange); }

.intro-section__inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.intro-lead {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--darkest);
  max-width: 900px;
  margin-bottom: 60px;
}

.intro-lead--light { color: var(--white); }

/* ===================================
   INTRO STATEMENT
   =================================== */
.intro-statement {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.intro-statement__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--pad);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.intro-statement__line {
  width: 60px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
}

.intro-statement__text {
  font-size: 38px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--darkest);
  letter-spacing: -0.01em;
}

.intro-statement__highlight {
  color: var(--orange);
  font-weight: 400;
}

.intro-statement__hero-text {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
}

.intro-statement__hero-word {
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--darkest);
  text-stroke: 1.5px var(--darkest);
  position: relative;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.intro-statement__hero-word::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: var(--darkest);
  -webkit-text-stroke: 0;
  text-stroke: 0;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.intro-statement__hero-word:hover::before,
.intro-statement__hero-word.is-filled::before {
  clip-path: inset(0 0 0 0);
}

.intro-statement__hero-word:hover {
  transform: translateY(-4px);
}

.intro-statement__hero-word:nth-child(2) {
  font-size: 36px;
  font-weight: 400;
  -webkit-text-stroke: 0;
  text-stroke: 0;
  color: var(--muted2);
  letter-spacing: 0.1em;
  text-transform: lowercase;
  font-style: italic;
}

@media (max-width: 900px) {
  .intro-statement { padding: 80px 0; }
  .intro-statement__text { font-size: 28px; }
  .intro-statement__hero-word { font-size: 48px; }
  .intro-statement__hero-word:nth-child(2) { font-size: 24px; }
}

@media (max-width: 600px) {
  .intro-statement__hero-text { flex-direction: column; align-items: center; gap: 8px; }
  .intro-statement__hero-word { font-size: 56px; }
  .intro-statement__hero-word:nth-child(2) { font-size: 20px; }
}

@media (max-width: 600px) {
  .intro-statement__text { font-size: 24px; }
}

/* ===================================
   LOGO BAR
   =================================== */
.logo-bar {
  padding: 72px 0;
  background: var(--white);
  overflow: hidden;
  position: relative;
}

.logo-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(255,165,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.logo-bar__inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.logo-bar__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--darkest);
  text-align: center;
  margin-bottom: 44px;
  opacity: 0.55;
  position: relative;
  z-index: 1;
}

.logo-bar__track-wrapper {
  position: relative;
  overflow: hidden;
}

.logo-bar__fade {
  display: none;
}

.logo-bar__track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: logo-scroll 25s linear infinite;
}

.logo-bar__track:hover {
  animation-play-state: paused;
}

@keyframes logo-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-bar__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-bar__item--text span {
  font-family: var(--font-body);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  opacity: 0.85;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.logo-bar__item--fellten span {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

.logo-bar__item--img img {
  height: 56px;
  width: auto;
  opacity: 1;
}

.logo-bar__item--img img[src*="goodwood"] {
  height: 84px;
}

/* ===================================
   KEY FEATURES
   =================================== */
.features-section {
  background: var(--white);
  padding: 100px 0;
}

.features-section__inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.features-section__heading {
  font-size: 48px;
  font-weight: 400;
  color: var(--darkest);
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.features-label {
  font-size: 18px;
  font-weight: 400;
  color: var(--muted2);
  margin-bottom: 40px;
}

/* Dark accordion overrides (used on light features-section) */
.accordion--dark .accordion__item {
  border-top-color: rgba(0,0,0,0.08);
}

.accordion--dark .accordion__item:last-child {
  border-bottom-color: rgba(0,0,0,0.08);
}

.accordion--dark .accordion__title {
  color: var(--darkest);
}

.accordion--dark .accordion__item:not(.is-active) .accordion__title {
  color: rgba(0,0,0,0.45);
}

.accordion--dark .accordion__item.is-active .accordion__title {
  color: var(--darkest);
}

.accordion--dark .accordion__number {
  color: rgba(0,0,0,0.3);
}

.accordion--dark .accordion__item.is-active .accordion__number {
  color: var(--orange);
}

.accordion--dark .accordion__progress {
  display: none;
}

.accordion--dark .accordion__chevron {
  color: rgba(0,0,0,0.3);
}

.accordion--dark .accordion__item.is-active .accordion__chevron {
  color: var(--orange);
}

.accordion--dark .accordion__desc {
  color: rgba(0,0,0,0.65);
}

/* Active item styling */
.accordion--dark .accordion__item.is-active {
  background: rgba(0,0,0,0.03);
  border-radius: 12px;
  margin: 4px -16px;
  padding: 0 16px;
  border-top-color: transparent;
}

.accordion--dark .accordion__item.is-active + .accordion__item {
  border-top-color: transparent;
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
}

.accordion__item {
  border-top: 1px solid rgba(0,0,0,0.1);
}

.accordion__item:last-child {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: opacity 0.2s;
}

.accordion__header:hover {
  opacity: 0.7;
}

.accordion__indicator {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.accordion__number {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--muted2);
  transition: color 0.4s;
  min-width: 28px;
}

.accordion__item.is-active .accordion__number {
  color: var(--orange);
}

.accordion__progress {
  width: 3px;
  height: 36px;
  background: rgba(0,0,0,0.08);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.accordion__progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--orange);
  border-radius: 3px;
  transition: height 0.4s ease;
}

.accordion__item.is-active .accordion__progress-bar {
  height: 100%;
  transition: height 5s linear;
}

.accordion__title {
  font-size: 28px;
  font-weight: 400;
  color: var(--darkest);
  line-height: 1.3;
  flex: 1;
  transition: color 0.3s;
}

.accordion__item.is-active .accordion__title {
  color: var(--darkest);
}

.accordion__item:not(.is-active) .accordion__title {
  color: var(--muted2);
}

.accordion__chevron {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--muted2);
}

.accordion__chevron svg {
  width: 28px;
  height: 28px;
}

.accordion__item.is-active .accordion__chevron {
  transform: rotate(180deg);
  color: var(--orange);
}

.accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion__item.is-active .accordion__body {
  grid-template-rows: 1fr;
}

.accordion__body-inner {
  overflow: hidden;
}

.accordion__desc {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  padding: 0 0 32px 68px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.4s 0.1s, transform 0.4s 0.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion__item.is-active .accordion__desc {
  opacity: 1;
  transform: translateY(0);
}

/* Keep old feature-item classes for other pages */
.feature-item {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-item__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.feature-item__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item__icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
}

.feature-item__title {
  font-size: 28px;
  font-weight: 400;
  color: var(--darkest);
  line-height: 1.2;
}

.feature-item__title--light { color: var(--white); }

.feature-item__desc {
  font-size: 18px;
  font-weight: 300;
  color: var(--darkest);
  line-height: 1.6;
  padding-left: 56px;
}

.feature-item__desc--light { color: var(--white); opacity: 0.8; }

.features-image {
  position: sticky;
  top: 120px;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}

.features-image__stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.features-image__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: scale(1.04);
}

.features-image__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.features-image__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* ===================================
   PRODUCT CARDS
   =================================== */
.product-cards-section {
  padding: 80px 0;
}

.product-cards-header {
  margin-bottom: 48px;
}

.product-cards-header__label {
  font-size: 18px;
  font-weight: 400;
  color: var(--muted2);
  margin-bottom: 16px;
}

.product-cards-header__title {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--darkest);
  max-width: 700px;
}

.product-cards-header__title--light { color: var(--white); }

.product-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.product-card__image {
  aspect-ratio: 3 / 2;
  background: var(--darkest);
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.product-card__image-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #0a3540 0%, var(--darkest) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card__img {
  transform: scale(1.06);
}

.product-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,20,26,0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.product-card:hover .product-card__image::after {
  opacity: 1;
}

.product-card__image-label {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.2;
}

.product-card__content {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-card__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.product-card__desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.6;
}

.product-card__specs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.spec-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.spec-row__label {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-row__value {
  font-size: 15px;
  font-weight: 300;
  color: var(--white);
}

.product-card__cta {
  margin-top: auto;
}

.product-card__cta .btn-outline {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, opacity 0.3s;
}

.product-card:hover .product-card__cta .btn-outline {
  transform: translateY(-3px);
  border-color: var(--orange);
  color: var(--orange);
}

.product-card__cutout {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 32px;
  background: var(--orange);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

/* ===================================
   SPLIT SECTION (image + text)
   =================================== */
.split-section {
  padding: 80px 0;
}

.split-section--white { background: var(--white); }
.split-section--grey { background: var(--light-grey); }

.split-section__inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-section__inner--reverse { direction: rtl; }
.split-section__inner--reverse > * { direction: ltr; }

.split-section__image {
  height: 450px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.split-section__image img {
  transition: transform 0.1s linear;
  will-change: transform;
}

.split-section__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-section__image-placeholder.teal {
  background: linear-gradient(135deg, #5A757E 0%, var(--dark) 100%);
}

.split-section__image-placeholder.dark {
  background: linear-gradient(135deg, var(--darkest) 0%, var(--dark) 100%);
}

.split-section__image-placeholder span {
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 700;
  color: var(--white);
  opacity: 0.06;
}

.split-section__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-section__label {
  font-size: 18px;
  font-weight: 400;
  color: var(--muted2);
}

.split-section__title {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--darkest);
}

.split-section__title--light { color: var(--white); }

.split-section__desc {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--darkest);
}

.split-section__desc--light { color: var(--white); opacity: 0.8; }

/* ===================================
   APPLICATIONS SECTION
   =================================== */
.apps-section {
  padding: 80px 0;
}

.apps-section__inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.apps-section__header {
  margin-bottom: 48px;
}

.apps-section__label {
  font-size: 18px;
  font-weight: 400;
  color: var(--muted2);
  margin-bottom: 12px;
}

.apps-section__label--light { color: var(--white); opacity: 0.7; }

.apps-section__title {
  font-size: 36px;
  font-weight: 400;
  color: var(--darkest);
  max-width: 600px;
}

.apps-section__title--light { color: var(--white); }

.apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.app-card {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 12px 12px 0 12px;
  overflow: hidden;
}

.app-card__image {
  height: 180px;
  background: var(--darkest);
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.app-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.app-card__image-inner {
  width: 100%;
  height: 100%;
}

.app-card__image-inner.fleet {
  background: linear-gradient(160deg, #1a4a55 0%, var(--darkest) 100%);
}

.app-card__image-inner.grid {
  background: linear-gradient(160deg, #0f3540 0%, #071820 100%);
}

.app-card__image-inner.temp {
  background: linear-gradient(160deg, #16404c 0%, var(--darkest) 100%);
}

.app-card__image-inner.relief {
  background: linear-gradient(160deg, #0d3038 0%, var(--darkest) 100%);
}

.app-card__content {
  padding: 28px 28px 40px;
  flex: 1;
  position: relative;
}

.app-card__title {
  font-size: 22px;
  font-weight: 400;
  color: var(--orange);
  margin-bottom: 12px;
  line-height: 1.2;
}

.app-card__desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.6;
  opacity: 0.85;
}

.app-card__corner {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28px;
  height: 28px;
  background: var(--orange);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

/* ===================================
   SPECS TABLE
   =================================== */
.specs-section {
  padding: 80px 0;
  background: var(--light-grey);
}

.specs-section__inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.specs-section__header {
  margin-bottom: 48px;
}

.specs-section__label {
  font-size: 18px;
  font-weight: 400;
  color: var(--muted2);
  margin-bottom: 12px;
}

.specs-section__title {
  font-size: 36px;
  font-weight: 400;
  color: var(--darkest);
  max-width: 600px;
  line-height: 1.3;
}

/* Spec Columns - Premium Card Layout */
.spec-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.spec-column {
  background: var(--dark);
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-column:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}

.spec-column__header {
  padding: 40px 36px 36px;
  background: linear-gradient(160deg, #0c4150 0%, var(--darkest) 100%);
  position: relative;
  overflow: hidden;
}

.spec-column__header::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.04;
}

.spec-column--featured .spec-column__header {
  background: linear-gradient(160deg, #164a3a 0%, var(--darkest) 100%);
}

.spec-column--featured .spec-column__header::after {
  opacity: 0.07;
}

.spec-column__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,165,0,0.08);
  padding: 6px 14px;
  border: 1px solid rgba(255,165,0,0.15);
  margin-bottom: 20px;
}

.spec-column__name {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.spec-column__capacity {
  font-size: 28px;
  font-weight: 300;
  color: var(--orange);
}

.spec-column__capacity span {
  font-size: 18px;
  opacity: 0.7;
}

.spec-column__body {
  padding: 8px 36px;
  flex: 1;
}

.spec-column__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 16px;
}

.spec-column__row:last-child {
  border-bottom: none;
}

.spec-column__label {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.spec-column__value {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  text-align: right;
  line-height: 1.6;
}

.spec-column__optional {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}

.spec-column__footer {
  padding: 24px 36px 36px;
}

.spec-column__footer .btn-outline {
  width: 100%;
  justify-content: center;
}

/* Legacy table styles kept for backwards compat */
.specs-table-wrap {
  overflow-x: auto;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table__head th {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--darkest);
  text-align: left;
  padding: 16px 24px 24px;
  border-bottom: 2px solid rgba(0,0,0,0.1);
}

.specs-table__head th:first-child { padding-left: 0; }

.specs-table tr td {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  vertical-align: top;
}

.specs-table tr td:first-child { padding-left: 0; }

.spec-cell__label {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted2);
  margin-bottom: 4px;
  text-transform: none;
}

.spec-cell__value {
  font-size: 15px;
  font-weight: 300;
  color: var(--darkest);
  white-space: pre-line;
  line-height: 1.5;
}

.specs-table__actions td {
  padding-top: 24px;
  border-bottom: none;
}

/* ===================================
   FLEET CALCULATOR SECTION
   =================================== */
.calc-section {
  padding: 80px 0;
}

.calc-section__inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.calc-section__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calc-section__label {
  font-size: 18px;
  font-weight: 400;
  color: var(--muted2);
}

.calc-section__title {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--darkest);
}

.calc-section__desc {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--darkest);
}

.calc-section__image {
  height: 420px;
  background: linear-gradient(135deg, #5A757E 0%, var(--dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
}

.calc-section__image span {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 700;
  color: var(--white);
  opacity: 0.1;
}

/* ===================================
   ESG / FEATURE CARDS
   =================================== */
.feature-cards-section {
  padding: 60px 0;
  background: var(--light-grey);
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.feature-card {
  background: var(--dark);
  color: var(--white);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 220px;
  border-radius: 12px;
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.feature-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
}

.feature-card__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

/* ===================================
   HERO — Product page variant
   =================================== */
.product-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--darkest);
}

.product-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  will-change: transform;
}

.product-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,12,21,0.3) 0%, rgba(12,12,21,0.1) 30%, rgba(12,12,21,0.7) 70%, rgba(12,12,21,0.95) 100%),
    linear-gradient(90deg, rgba(12,12,21,0.8) 0%, transparent 60%);
  pointer-events: none;
}

.product-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--inner);
  margin: 0 auto;
  padding: 100px var(--pad) 100px;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(320px, 720px);
  grid-template-rows: auto auto;
  gap: 28px;
  align-items: center;
  justify-items: start;
}

.product-hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 24px;
  grid-column: 1;
  grid-row: 1;
}


.product-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,122,0,0.15);
  border: 1px solid rgba(255,122,0,0.3);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 400;
  color: var(--orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
  backdrop-filter: blur(10px);
}

.product-hero__title {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 600;
  color: var(--white);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.product-hero__title span {
  color: var(--orange);
}

.product-hero__desc {
  font-size: 18px;
  font-weight: 300;
  color: var(--white);
  opacity: 0.8;
  line-height: 1.6;
  max-width: 480px;
}

.product-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Stats — now under left column */
.product-hero__right {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  align-self: end;
  justify-self: start;
  grid-column: 1;
  grid-row: 2;
  max-width: 100%;
}

.product-hero__stat-card {
  background: rgba(4,37,43,0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  transition: border-color 0.3s, transform 0.3s;
}

.product-hero__stat-card:hover {
  border-color: rgba(255,122,0,0.3);
  transform: translateY(-4px);
}

.product-hero__stat-val {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--orange);
  line-height: 1;
  min-width: 100px;
}

.product-hero__stat-val small {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
}

.product-hero__stat-label {
  font-size: 14px;
  font-weight: 300;
  color: var(--white);
  opacity: 0.7;
  line-height: 1.3;
}

/* Scroll indicator */
.product-hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white);
  opacity: 0.4;
  animation: hero-bounce 2s infinite;
}

.product-hero__scroll span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===================================
   VARIANTS TABLE (CQ Core page)
   =================================== */
.variants-section {
  padding: 80px 0;
  background: var(--light-grey);
}

.variants-section__inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.variants-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 32px;
}

.variants-section__titles {
  flex: 1;
}

/* ===================================
   GALLERY
   =================================== */
.gallery-section {
  padding: 80px 0;
}

.gallery-section__inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.gallery-section__title {
  font-size: 36px;
  font-weight: 400;
  color: var(--darkest);
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 12px;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.25);
  cursor: pointer;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4,37,43,0.55) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.gallery-item:hover::after { opacity: 1; }

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--large { grid-column: span 2; grid-row: span 1; aspect-ratio: 16 / 9; }
}

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large { aspect-ratio: 4 / 3; }
}

.gallery-item-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.4s;
}

.gallery-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-item__img { transform: scale(1.05); }

.gallery-item:hover .gallery-item-inner { transform: scale(1.03); }

.gallery-item-inner.g1 { background: linear-gradient(135deg, #1a4a55 0%, #04252B 100%); }
.gallery-item-inner.g2 { background: linear-gradient(135deg, #0a3540 0%, #071820 100%); }
.gallery-item-inner.g3 { background: linear-gradient(135deg, #062f38 0%, #040f12 100%); }
.gallery-item-inner.g4 { background: linear-gradient(135deg, #14404d 0%, #04252B 100%); }
.gallery-item-inner.g5 { background: linear-gradient(135deg, #0d3038 0%, #040f12 100%); }

.gallery-item-inner span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.15;
}

/* ===================================
   RANGE HERO (overview page)
   =================================== */
.range-hero {
  background: var(--darkest);
}

.range-hero__inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  min-height: 540px;
  align-items: stretch;
}

.range-hero__left {
  background: var(--dark);
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.range-hero__label {
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
}

.range-hero__title {
  font-size: 44px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
}

.range-hero__desc {
  font-size: 18px;
  font-weight: 300;
  color: var(--white);
  opacity: 0.85;
  line-height: 1.6;
}

.range-hero__right {
  background: var(--darkest);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

/* ===================================
   STEPS SECTION (How It Works)
   =================================== */
.steps-section {
  padding: 120px 0;
  background: var(--darkest);
}

.steps-section__inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.steps-section__label {
  font-size: 14px;
  font-weight: 400;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.steps-section__title {
  font-size: 48px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  max-width: 550px;
  margin-bottom: 80px;
}

.steps-section__footer {
  margin: 96px auto 0;
  max-width: 760px;
  padding: 36px 48px;
  text-align: center;
  border-top: 1px solid rgba(255, 153, 0, 0.25);
  border-bottom: 1px solid rgba(255, 153, 0, 0.25);
  background: linear-gradient(180deg, rgba(255, 153, 0, 0.04), rgba(255, 153, 0, 0));
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.steps-section__footer.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.steps-section__footer-eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}

.steps-section__footer-text {
  font-size: 19px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin: 0;
}

/* Track */
.steps-track {
  position: relative;
}

.steps-track__line {
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 2px;
  background: rgba(255,255,255,0.12);
}

.steps-track__progress {
  height: 100%;
  width: 0;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(255,122,0,0.5);
  transition: width 1.2s cubic-bezier(0.25,0.46,0.45,0.94);
  position: relative;
  overflow: hidden;
}

.steps-track__progress::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  transform: translateX(-100%);
  animation: track-shimmer 3s ease-in-out infinite;
  animation-delay: 1.5s;
}

@keyframes track-shimmer {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(400%); }
}

.steps-track.is-animated .steps-track__progress {
  width: 100%;
}

/* Items row */
.steps-track__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

/* Each step */
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

.step-item:hover {
  transform: translateY(-6px);
}

/* Dot */
.step-item__dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-bottom: 32px;
  transition: all 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.step-item__dot span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--muted2);
  transition: color 0.4s;
}

.step-item__dot-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 0.6s;
}

/* Activated state */
.step-item.is-visible .step-item__dot {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(255,122,0,0.1), 0 0 32px rgba(255,122,0,0.35);
  animation: dot-glow 2.8s ease-in-out infinite;
}

.step-item:hover .step-item__dot {
  transform: scale(1.08);
}

@keyframes dot-glow {
  0%, 100% { box-shadow: 0 0 0 8px rgba(255,122,0,0.1), 0 0 28px rgba(255,122,0,0.3); }
  50%      { box-shadow: 0 0 0 12px rgba(255,122,0,0.14), 0 0 48px rgba(255,122,0,0.55); }
}

.step-item.is-visible .step-item__dot span {
  color: var(--white);
}

.step-item.is-visible .step-item__dot-ring {
  border-color: rgba(255,122,0,0.2);
  animation: dot-ring-pulse 2.8s ease-out infinite;
}

@keyframes dot-ring-pulse {
  0%   { transform: scale(1);    opacity: 0.6; border-color: rgba(255,122,0,0.35); }
  80%  { transform: scale(1.55); opacity: 0;   border-color: rgba(255,122,0,0); }
  100% { transform: scale(1.55); opacity: 0;   border-color: rgba(255,122,0,0); }
}

.step-item[data-step="1"].is-visible .step-item__dot-ring { animation-delay: 0.9s; }
.step-item[data-step="2"].is-visible .step-item__dot-ring { animation-delay: 1.8s; }

/* Content */
.step-item__content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.step-item.is-visible .step-item__content {
  opacity: 1;
  transform: translateY(0);
}

.step-item__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--orange);
  filter: drop-shadow(0 0 12px rgba(255,122,0,0.35));
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s ease;
  animation: icon-float 4s ease-in-out infinite;
}

.step-item[data-step="1"] .step-item__icon { animation-delay: 0.6s; }
.step-item[data-step="2"] .step-item__icon { animation-delay: 1.2s; }

@keyframes icon-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

.step-item:hover .step-item__icon {
  transform: translateY(-6px) scale(1.12);
  filter: drop-shadow(0 0 18px rgba(255,122,0,0.65));
}

.step-item__icon svg {
  width: 100%;
  height: 100%;
}

.step-item__title {
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.step-item__desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
}

/* Stagger timing */
.step-item[data-step="1"] .step-item__content { transition-delay: 0.25s; }
.step-item[data-step="1"] .step-item__dot { transition-delay: 0.25s; }
.step-item[data-step="2"] .step-item__content { transition-delay: 0.5s; }
.step-item[data-step="2"] .step-item__dot { transition-delay: 0.5s; }

@media (max-width: 900px) {
  .steps-section { padding: 80px 0; }
  .steps-section__title { font-size: 28px; margin-bottom: 60px; }
  .steps-section__footer { margin-top: 64px; padding: 28px 24px; }
  .steps-section__footer-eyebrow { font-size: 11px; }
  .steps-section__footer-text { font-size: 15px; }

  .steps-track__line {
    top: 0;
    bottom: 0;
    left: 28px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .steps-track__items {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-left: 80px;
  }

  .step-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .step-item__dot {
    position: absolute;
    left: 0;
    margin-bottom: 0;
  }

  .step-item__content { margin: 0; }
  .step-item__icon { margin: 0 0 16px; }
  .step-item__desc { max-width: none; }
}

/* ===================================
   RANGE SHOWCASE (Home Page)
   =================================== */
.range-showcase {
  padding: 120px 0;
  background: var(--darkest);
  position: relative;
  overflow: hidden;
}

.range-showcase__inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.range-showcase__header {
  text-align: center;
  margin-bottom: 64px;
}

.range-showcase__label {
  font-size: 14px;
  font-weight: 400;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.range-showcase__title {
  font-size: 48px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  max-width: 650px;
  margin: 0 auto;
}

/* Cards row */
.range-showcase__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  align-items: end;
}

.range-card {
  display: block;
  position: relative;
  text-decoration: none;
  background: var(--dark);
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.5s, border-color 0.4s;
}

.range-card:hover {
  transform: translateY(-8px);
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(255,122,0,0.08);
  border-color: rgba(255,122,0,0.2);
}

/* Image */
.range-card__img-wrap {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.range-card__img-wrap img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s;
  will-change: transform;
}

.range-card:hover .range-card__img-wrap img {
  transform: scale(1.08);
}

.range-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(4,37,43,0.95) 100%);
  transition: opacity 0.4s;
}

.range-card:hover .range-card__overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(4,37,43,0.85) 100%);
}

/* Capacity badge on image */
.range-card__capacity {
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  transition: transform 0.4s, color 0.4s;
}

.range-card__capacity span {
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
  margin-left: 2px;
}

.range-card:hover .range-card__capacity {
  transform: translateY(-4px);
  color: var(--orange);
}

.range-card:hover .range-card__capacity span {
  color: var(--orange);
}

/* Info bar */
.range-card__info {
  padding: 24px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--darkest);
  border-top: 2px solid transparent;
  transition: border-color 0.4s, background 0.4s;
}

.range-card:hover .range-card__info {
  border-top-color: var(--orange);
  background: rgba(12,12,21,0.95);
}

.range-card__name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--orange);
  line-height: 1;
  transition: text-shadow 0.4s;
}

.range-card:hover .range-card__name {
  text-shadow: 0 0 20px rgba(255,122,0,0.4);
}

.range-card__size {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  flex: 1;
}

.range-card__arrow {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s;
  color: var(--white);
}

.range-card__arrow svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

.range-card:hover .range-card__arrow {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--darkest);
  box-shadow: 0 0 20px rgba(255,122,0,0.4);
}

.range-card:hover .range-card__arrow svg {
  transform: translate(2px, -2px);
}

/* Featured card — Evo gets prominence */
.range-card--featured {
  border-color: rgba(255,122,0,0.15);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 60px rgba(255,122,0,0.06);
}

.range-card--featured .range-card__img-wrap {
  height: 420px;
}

.range-card--featured .range-card__info {
  border-top: 2px solid rgba(255,122,0,0.3);
}

/* CTA */
.range-showcase__cta {
  text-align: center;
}

/* ===================================
   PRODUCT SHOWCASE (Range Overview)
   =================================== */
.showcase {
  padding: 100px 0;
  background: var(--darkest);
  overflow: hidden;
}

.showcase__inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* --- Tabs --- */
.showcase__tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 60px;
  position: relative;
}

.showcase__tab {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 28px 20px 24px;
  cursor: pointer;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.showcase__tab::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(255,122,0,0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.showcase__tab:hover {
  border-color: rgba(255,122,0,0.3);
  background: rgba(255,255,255,0.05);
}

.showcase__tab:hover::before {
  opacity: 0.5;
}

.showcase__tab.is-active {
  border-color: var(--orange);
  background: rgba(255,122,0,0.06);
  box-shadow: 0 0 30px rgba(255,122,0,0.15), 0 0 60px rgba(255,122,0,0.05), inset 0 -2px 0 var(--orange);
}

.showcase__tab.is-active::before {
  opacity: 1;
}

.showcase__tab-name {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
  transition: color 0.4s, transform 0.4s, text-shadow 0.4s;
}

.showcase__tab:hover .showcase__tab-name {
  color: var(--orange);
}

.showcase__tab.is-active .showcase__tab-name {
  color: var(--orange);
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(255,122,0,0.4);
}

.showcase__tab-cap {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  transition: color 0.4s;
}

.showcase__tab.is-active .showcase__tab-cap {
  color: var(--white);
}

.showcase__tab-bar {
  display: none;
}

/* --- Stage / Panels --- */
.showcase__stage {
  position: relative;
  min-height: 520px;
}

.showcase__panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  animation: showcase-fadeIn 0.5s ease;
}

.showcase__panel.is-active {
  display: grid;
}

@keyframes showcase-fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Gallery */
.showcase__gallery {
  position: relative;
  perspective: 1400px;
  isolation: isolate;
}

/* Orange aura behind the image */
.showcase__glow {
  position: absolute;
  inset: -60px;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(255,107,0,0.45), transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(255,140,40,0.25), transparent 65%);
  filter: blur(50px);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.8s ease;
}

.showcase__panel.is-active .showcase__glow {
  opacity: 1;
  animation: showcase-pulse 7s ease-in-out infinite;
}

@keyframes showcase-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.55; }
  50%      { transform: scale(1.12) rotate(3deg); opacity: 1; }
}

/* Image */
.showcase__image {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  transform-style: preserve-3d;
  transform: rotateX(0deg) rotateY(0deg);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1), box-shadow 0.5s ease;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,107,0,0.08);
  z-index: 1;
  will-change: transform;
}

.showcase__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: inherit;
  pointer-events: none;
  z-index: 4;
  mix-blend-mode: screen;
}

.showcase__image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1), opacity 0.4s ease;
  transform: translateZ(0);
}

.showcase__image:hover {
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,107,0,0.25), 0 0 60px -10px rgba(255,107,0,0.35);
}

.showcase__image:hover img {
  transform: scale(1.04);
}

/* Scan line sweep on panel activation */
.showcase__scan {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,107,0,0.95) 50%, transparent);
  box-shadow: 0 0 24px rgba(255,107,0,0.9), 0 0 8px rgba(255,107,0,1);
  opacity: 0;
  z-index: 3;
  pointer-events: none;
}

.showcase__panel.is-active .showcase__scan {
  animation: showcase-scan 1.6s cubic-bezier(.4,0,.2,1) 0.15s forwards;
}

@keyframes showcase-scan {
  0%   { top: -2px; opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* Diagonal shine on hover */
.showcase__shine {
  position: absolute;
  inset: -20%;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,0.18) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 1s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  z-index: 2;
}

.showcase__image:hover .showcase__shine {
  transform: translateX(120%);
}

/* Subtle tech grid overlay */
.showcase__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,107,0,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,0,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  mix-blend-mode: overlay;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.6s ease;
}

.showcase__image:hover .showcase__grid {
  opacity: 0.6;
}

/* HUD corner brackets — hidden */
.showcase__corner { display: none; }

.showcase__corner--tl { top: 12px; left: 12px; border-top-width: 2px; border-left-width: 2px; }
.showcase__corner--tr { top: 12px; right: 12px; border-top-width: 2px; border-right-width: 2px; }
.showcase__corner--bl { bottom: 12px; left: 12px; border-bottom-width: 2px; border-left-width: 2px; }
.showcase__corner--br { bottom: 12px; right: 12px; border-bottom-width: 2px; border-right-width: 2px; }

.showcase__panel.is-active .showcase__corner {
  width: 28px;
  height: 28px;
  opacity: 1;
  transition-delay: 0.35s, 0.45s, 0.35s;
}

.showcase__image:hover .showcase__corner {
  width: 38px;
  height: 38px;
  box-shadow: 0 0 20px rgba(255,107,0,0.9);
}

.showcase__panel.is-active .showcase__image img {
  animation: showcase-imgZoom 0.9s cubic-bezier(.2,.8,.2,1) forwards;
}

@keyframes showcase-imgZoom {
  from { transform: scale(1.12); opacity: 0; filter: blur(8px); }
  to   { transform: scale(1); opacity: 1; filter: blur(0); }
}

/* Staggered stat reveal */
.showcase__panel.is-active .showcase__spec {
  animation: showcase-specIn 0.7s cubic-bezier(.2,.8,.2,1) forwards;
  opacity: 0;
  transform: translateY(20px);
}
.showcase__panel.is-active .showcase__spec:nth-child(1) { animation-delay: 0.15s; }
.showcase__panel.is-active .showcase__spec:nth-child(2) { animation-delay: 0.25s; }
.showcase__panel.is-active .showcase__spec:nth-child(3) { animation-delay: 0.35s; }
.showcase__panel.is-active .showcase__spec:nth-child(4) { animation-delay: 0.45s; }

@keyframes showcase-specIn {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .showcase__panel.is-active .showcase__glow,
  .showcase__panel.is-active .showcase__scan,
  .showcase__panel.is-active .showcase__image img,
  .showcase__panel.is-active .showcase__spec { animation: none; }
  .showcase__panel.is-active .showcase__spec { opacity: 1; transform: none; }
}

.showcase__image-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--orange);
  color: var(--darkest);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Info */
.showcase__info {
  padding-top: 8px;
}

.showcase__title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 12px;
  line-height: 1;
}

.showcase__desc {
  font-size: 17px;
  font-weight: 300;
  color: var(--white);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* Spec counters */
.showcase__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.showcase__spec {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px 24px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.showcase__spec::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}

.showcase__spec:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.showcase__spec:hover::before { transform: scaleY(1); }

.showcase__spec-val {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}

.showcase__spec-val span {
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
  margin-left: 2px;
}

.showcase__spec-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Detail rows */
.showcase__details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.showcase__detail {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  font-weight: 300;
}

.showcase__detail span:first-child {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 13px;
}

.showcase__detail span:last-child {
  color: var(--white);
  text-align: right;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1200px) {
  :root { --pad: 28px; }
  .product-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .apps-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --pad: 20px; --nav-h: 80px; }

  .nav-menu { display: none; }
  .hamburger { display: flex; }

  .hero {
    min-height: calc(100vh - var(--nav-h));
    min-height: calc(100svh - var(--nav-h));
  }
  .hero__bg { object-position: center 35%; }
  .hero__inner { padding: 24px var(--pad) 16px; gap: 24px; }
  .hero__title { font-size: 38px; }
  .hero__stats { gap: 24px; padding: 16px var(--pad); }
  .intro-statement { padding: 56px 0; }

  .product-hero { min-height: 100vh; height: auto; }
  .product-hero__inner { grid-template-columns: 1fr; }
  .product-hero__right { flex-direction: column; width: 100%; }
  .product-hero__stat-card { width: 100%; }
  .product-hero__title { font-size: 48px; }

  .range-hero__inner { grid-template-columns: 1fr; }
  .range-hero__right { display: none; }

  .intro-lead { font-size: 26px; }

  .features-grid { grid-template-columns: 1fr; }
  .features-image { display: none; }

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

  .split-section { padding: 56px 0; }
  .split-section__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    direction: ltr;
  }
  .split-section__inner--reverse { direction: ltr; }
  .split-section__text { order: 1; }
  .split-section__image { order: 2; height: 240px; }

  .calc-section { padding: 56px 0; }
  .calc-section__inner { grid-template-columns: 1fr; gap: 24px; }
  .calc-section__image { height: 240px; }

  .showcase__tabs { grid-template-columns: 1fr; gap: 12px; margin-bottom: 32px; }
  .showcase__tab { padding: 18px 20px; }
  .showcase__tab-name { font-size: 24px; }
  .showcase__spec { padding: 20px 16px; }
  .showcase__spec-val { font-size: 28px; }
  .showcase__spec-val span { font-size: 14px; }
  .showcase__spec-label { font-size: 11px; }
  .showcase__panel { grid-template-columns: 1fr; }
  .showcase__image img { height: 320px; }
  .showcase__title { font-size: 40px; }

  .range-showcase__title { font-size: 32px; }
  .range-showcase__cards { grid-template-columns: 1fr; gap: 16px; }
  .range-card__img-wrap { height: 280px; }
  .range-card--featured .range-card__img-wrap { height: 280px; }
  .range-card__capacity { font-size: 32px; }

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

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 60px var(--pad);
  }

  .cta-banner__text { font-size: 28px; }

  .specs-table__head th { font-size: 16px; padding: 12px 16px 16px; }
  .specs-table tr td { padding: 12px 16px; }

  .feature-cards-grid { grid-template-columns: 1fr 1fr; }

  .core-specs__row-label { white-space: normal; }
}

@media (max-width: 600px) {
  :root { --pad: 16px; }

  .hero__inner { padding: 16px var(--pad) 12px; gap: 20px; }
  .hero__title { font-size: 32px; }
  .intro-statement { padding: 40px 0; }
  .hero__subtitle { font-size: 17px; }
  .hero__stats {
    flex-wrap: nowrap;
    gap: 12px;
    padding: 14px var(--pad);
    justify-content: space-around;
  }
  .hero__stat { flex: 1; min-width: 0; align-items: center; text-align: center; }
  .hero__stat-value { font-size: 22px; }
  .hero__stat-label { font-size: 10px; letter-spacing: 0.5px; }
  .hero__overlay {
    background: linear-gradient(
      to top,
      rgba(2, 20, 26, 0.95) 0%,
      rgba(2, 20, 26, 0.7) 50%,
      rgba(2, 20, 26, 0.3) 100%
    );
  }
  .intro-lead { font-size: 22px; }
  .section-label { font-size: 16px; }

  .product-cards-grid { grid-template-columns: 1fr; }
  .apps-grid { grid-template-columns: 1fr; }
  .feature-cards-grid { grid-template-columns: 1fr; }

  .footer__cq { font-size: 48px; }
  .footer__bottom { flex-direction: column; gap: 16px; align-items: flex-start; }

  .product-hero__title { font-size: 38px; }
  .split-section__title { font-size: 26px; }
  .cta-banner__text { font-size: 22px; }

  .specs-table__head th { font-size: 14px; padding: 10px; }
  .specs-table tr td { padding: 10px; }

  .variants-section__header { flex-direction: column; align-items: flex-start; }

  .core-specs { padding: 64px 0; }
  .core-specs__title { font-size: 34px; }
  .core-specs__actions { flex-direction: column; align-items: stretch; }
  .core-specs__actions .btn { width: 100%; justify-content: center; }
}
