/* ─── Electro & Company — E-Drift Kart Design System v2.0 ──────────────────
   Black / White / #FF7200 Orange
   Font: Plus Jakarta Sans (Gilroy-equivalent)
   Kerning: -0.05em to -0.075em headlines, -0.025em mid, 0 body
   ─────────────────────────────────────────────────────────────────────────── */

:root {
  --black:        #0D0D0D;
  --black-mid:    #141414;
  --black-card:   #1A1A1A;
  --black-border: rgba(255,255,255,0.08);
  --white:        #FFFFFF;
  --grey:         #888888;
  --grey-mid:     #555555;
  --orange:       #FF7200;
  --orange-dim:   rgba(255,114,0,0.15);
  --orange-glow:  rgba(255,114,0,0.3);

  --font: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.76, 0, 0.24, 1);

  --container: 1320px;
  --gap:       clamp(24px, 4vw, 64px);
}

/* ─── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}

/* ─── Film grain overlay ──────────────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.028;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
ul, ol { list-style: none; }

/* ─── Scroll Progress Bar ─────────────────────────────────────────────────── */
.scroll-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--orange);
  z-index: 1000;
  transition: width 0.1s linear;
}

/* ─── Custom Cursor ───────────────────────────────────────────────────────── */
.has-custom-cursor,
.has-custom-cursor * { cursor: none !important; }

.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.18s, height 0.18s, opacity 0.18s;
  will-change: left, top;
  opacity: 0;
}

.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,114,0,0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s, opacity 0.3s;
  will-change: left, top;
  opacity: 0;
}

.cursor-dot.cursor-visible  { opacity: 1; }
.cursor-ring.cursor-visible { opacity: 1; }

.cursor-dot.cursor-hover  { width: 5px; height: 5px; background: #fff; }
.cursor-ring.cursor-hover { width: 52px; height: 52px; border-color: var(--orange); border-width: 2px; }

/* ─── Header ──────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background 0.4s, backdrop-filter 0.4s;
}

.site-header.scrolled {
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--black-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 40px;
}

.header-nav { display: flex; gap: 36px; }
.header-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--white); }

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 64px;
  width: auto;
  display: block;
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--orange);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta-btn:hover { background: #ff8a2e; transform: translateY(-1px); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-toggle.open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.mobile-toggle.open span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--black-mid);
  border-top: 1px solid var(--black-border);
  padding: 24px 40px 32px;
  gap: 20px;
}
.mobile-nav a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75);
}
.mobile-nav .mobile-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: var(--orange);
  color: var(--black);
  font-weight: 700;
  border-radius: 2px;
  align-self: flex-start;
  margin-top: 8px;
}
.mobile-nav.open { display: flex; }

/* ─── Shared Section Atoms ────────────────────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.95;
  color: var(--white);
}

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.btn-primary-orange {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--orange);
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary-orange:hover {
  background: #ff8a2e;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,114,0,0.35);
}
.btn-primary-orange.btn-lg { padding: 20px 40px; font-size: 15px; }

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* ─── Reveal Animations ───────────────────────────────────────────────────── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 1;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.in-view,
.reveal-left.in-view,
.reveal-right.in-view {
  opacity: 1;
  transform: none;
}

/* ─── HERO ────────────────────────────────────────────────────────────────── */
.section-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0a0a;
}

/* ── Full-width background video ── */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  pointer-events: none;
}

/* Dark overlay so headline stays readable */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.35) 0%,
    rgba(10,10,10,0.2)  60%,
    rgba(10,10,10,0.5)  100%
  );
  z-index: 2;
  pointer-events: none;
}

/* ── Content ── */
.hero-content {
  position: relative;
  z-index: 4;
  padding: 140px 60px 100px;
  width: 52%;
  min-width: 520px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--orange);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
}

.hero-badge-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}

.hero-line {
  display: block;
  font-size: clamp(68px, 9.5vw, 140px);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.87;
  color: var(--white);
  opacity: 0;
  transform: translateY(60px);
}

.hero-line--accent { color: var(--orange); }

.hero-line--small {
  font-size: clamp(22px, 2.8vw, 42px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.55);
  line-height: 1.2;
  margin-top: 8px;
}

.hero-sub {
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  margin-bottom: 48px;
}

/* ── Mini stats row under CTAs ── */
.hero-mini-stats {
  display: flex;
  align-items: center;
  gap: 0;
  opacity: 0;
  transform: translateY(16px);
}

.hero-mini-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 20px 0 0;
}

.hero-mini-stat:first-child { padding-left: 0; }

.hero-mini-val {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--white);
  line-height: 1;
}

.hero-mini-val em {
  font-style: normal;
  font-size: 0.5em;
  font-weight: 500;
  color: var(--orange);
  margin-left: 1px;
}

.hero-mini-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.hero-mini-div {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  margin: 0 20px 0 0;
  flex-shrink: 0;
}

/* ── Scroll hint ── */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 60px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out) 2.8s forwards;
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero-scroll-hint span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.4; transform: scaleY(0.6); }
}

@keyframes fadeInUp {
  to { opacity: 1; }
}

@keyframes fadeInUp {
  to { opacity: 1; }
}

/* ─── STATS ───────────────────────────────────────────────────────────────── */
.section-stats {
  background: #fafafa;
  border-top: 3px solid var(--orange);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 0;
  overflow: hidden;
  position: relative;
}

.section-stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(255,114,0,0.04) 0%, transparent 100%);
  pointer-events: none;
}

/* ── Stats white-mode overrides ── */
.section-stats .stat-card { background: transparent; }
.section-stats .stat-card:hover { background: rgba(255,114,0,0.04); }
.section-stats .stat-count { color: #0D0D0D; }
.section-stats .stat-card-label { color: #777; }
.section-stats .stat-divider { background: rgba(0,0,0,0.1); }
.section-stats .stat-card-bar { background: rgba(0,0,0,0.08); }

.stats-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.stat-card {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  grid-column: span 1;
  transition: background 0.3s;
}
.stat-card:hover { background: rgba(255,114,0,0.04); }

.stat-divider {
  width: 1px;
  background: var(--black-border);
  align-self: stretch;
  margin: 0;
}

.stat-card-icon { color: var(--orange); opacity: 0.9; }

.stat-card-num {
  display: flex;
  align-items: baseline;
  gap: 3px;
  line-height: 1;
}

.stat-count {
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 800;
  letter-spacing: -0.055em;
  color: var(--white);
}

.stat-unit {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.02em;
}

.stat-card-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
}

.stat-card-bar {
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 4px;
}

.stat-bar-fill {
  height: 100%;
  width: var(--fill, 0%);
  background: var(--orange);
  border-radius: 2px;
  transition: width 1.4s var(--ease-out);
}

/* ─── FEATURES ────────────────────────────────────────────────────────────── */
.section-features {
  padding: clamp(80px, 10vw, 160px) 0;
  background: var(--black);
}

/* Alternating dark / white feature blocks */
.feature-block:nth-child(odd) {
  background: #0a0a0a;
}
.feature-block:nth-child(even) {
  background: #ffffff;
  border-top-color: rgba(0,0,0,0.08);
  border-bottom-color: rgba(0,0,0,0.08);
}

/* White block text overrides */
.feature-block:nth-child(even) .feature-desc   { color: rgba(0,0,0,0.55); }
.feature-block:nth-child(even) .feature-title  { color: #0D0D0D; }
.feature-block:nth-child(even) .feature-list li { color: rgba(0,0,0,0.65); }
.feature-block:nth-child(even) .feature-list li::before { background: var(--orange); }
.feature-block:nth-child(even) .feature-tag    { background: rgba(255,255,255,0.9); border-color: rgba(0,0,0,0.1); }
.feature-block:nth-child(even) .feature-tag-val { color: #0D0D0D; }
.feature-block:nth-child(even) .feature-img-overlay { background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 60%); }

.features-header {
  max-width: var(--container);
  margin: 0 auto 80px;
  padding: 0 40px;
}

.features-header .section-title {
  margin-top: 12px;
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
  border-top: 1px solid var(--black-border);
}

.feature-block:last-child { border-bottom: 1px solid var(--black-border); }

.feature-block--img-left .feature-media  { order: -1; }
.feature-block--img-left .feature-content { padding-left: clamp(40px, 6vw, 100px); }
.feature-block--img-right .feature-content { padding-right: clamp(40px, 6vw, 100px); }

.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 80px) 40px;
  max-width: 600px;
}

.feature-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--orange);
  margin-bottom: 20px;
  display: block;
}

.feature-title {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 20px;
}

.feature-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  max-width: 420px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.feature-list li {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  padding-left: 18px;
  position: relative;
  letter-spacing: -0.01em;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  border-bottom: 1px solid rgba(255,114,0,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s, gap 0.2s;
  align-self: flex-start;
}
.feature-link:hover { border-color: var(--orange); gap: 12px; }

.feature-media {
  position: relative;
  overflow: hidden;
  background: var(--black-mid);
}

.feature-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.feature-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease-out);
}

.feature-block:hover .feature-img-wrap img { transform: scale(1.04); }

.feature-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.4) 0%, transparent 60%);
}

.feature-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(13,13,13,0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 16px;
  border-radius: 6px;
}

.feature-tag-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.feature-tag-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

/* Motor card overlay */
.motor-card {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(13,13,13,0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 16px 18px;
  min-width: 170px;
}

.motor-card-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 4px;
}

.motor-card-output {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}

.motor-card-output span {
  font-size: 14px;
  color: var(--orange);
}

.motor-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 32px;
  margin-bottom: 8px;
}

.motor-bar {
  flex: 1;
  height: var(--h, 50%);
  background: var(--orange);
  border-radius: 2px 2px 0 0;
  opacity: 0.85;
  animation: motorPulse 1.8s ease-in-out infinite alternate;
}

.motor-bar:nth-child(2) { animation-delay: 0.15s; }
.motor-bar:nth-child(3) { animation-delay: 0.3s; }
.motor-bar:nth-child(4) { animation-delay: 0.45s; }
.motor-bar:nth-child(5) { animation-delay: 0.6s; }
.motor-bar:nth-child(6) { animation-delay: 0.75s; }
.motor-bar:nth-child(7) { animation-delay: 0.9s; }
.motor-bar:nth-child(8) { animation-delay: 1.05s; }

@keyframes motorPulse {
  from { opacity: 0.5; transform: scaleY(0.7); }
  to   { opacity: 1;   transform: scaleY(1); }
}

.motor-card-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ─── POWER MODES ─────────────────────────────────────────────────────────── */
.section-power {
  background: #0a0a0a;
  border-top: 1px solid var(--black-border);
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}

.section-power::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,114,0,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.section-power::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,114,0,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.power-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.power-header {
  margin-bottom: 64px;
  max-width: 520px;
}

.power-header .section-title { margin: 12px 0 20px; }

.power-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  letter-spacing: -0.01em;
}

.power-layout { display: flex; flex-direction: column; gap: 0; }

.power-tabs {
  display: flex;
  border-bottom: 1px solid var(--black-border);
  margin-bottom: 0;
}

.power-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 36px;
  border-bottom: 2px solid transparent;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-mid);
  transition: color 0.2s, border-color 0.2s;
  position: relative;
  top: 1px;
}

.power-tab--active {
  color: var(--white);
  border-bottom-color: var(--orange);
}

.power-tab:hover { color: rgba(255,255,255,0.8); }

.power-tab-num {
  font-size: 10px;
  color: var(--orange);
  font-weight: 700;
}

.power-panels { margin-top: 0; }

.power-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 48px 0;
  border-bottom: 1px solid var(--black-border);
}
.power-panel--active { display: grid; }

.power-panel-kart {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--black);
}

.power-panel-kart img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.power-panel-kart:hover img { transform: scale(1.03); }

.power-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 8px;
  transition: opacity 0.4s;
}
.power-glow--comfort { box-shadow: inset 0 0 60px rgba(255,255,255,0.04); }
.power-glow--sport   { box-shadow: inset 0 0 60px rgba(255,114,0,0.12); }
.power-glow--drift   { box-shadow: inset 0 0 80px rgba(255,114,0,0.25); }

.power-panel-info {
  padding: 0 0 0 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.power-panel-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -0.055em;
  color: var(--white);
  margin-bottom: 16px;
}

.power-panel-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  letter-spacing: -0.01em;
  margin-bottom: 36px;
  max-width: 380px;
}

.power-meters { display: flex; flex-direction: column; gap: 18px; }

.power-meter { display: flex; flex-direction: column; gap: 6px; }

.power-meter-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  display: flex;
  justify-content: space-between;
}

.power-meter-track {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.power-meter-fill {
  height: 100%;
  width: var(--pct, 0%);
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  transition: width 0.8s var(--ease-out);
}
.power-meter-fill--orange { background: var(--orange); }

.power-meter-val {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  text-align: right;
}

/* ─── SPECS ───────────────────────────────────────────────────────────────── */
.section-specs {
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  background: #ffffff;
  position: relative;
}

.section-specs::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ── Specs white-mode overrides ── */
.section-specs .section-eyebrow { color: var(--orange); }
.section-specs .section-title   { color: #0D0D0D; }
.section-specs .specs-sub       { color: #666; }
.section-specs .specs-grid      { border-color: rgba(0,0,0,0.1); }
.section-specs .specs-col       { border-right-color: rgba(0,0,0,0.1); }
.section-specs .specs-group     { border-bottom-color: rgba(0,0,0,0.07); }
.section-specs .spec-row        { border-bottom-color: rgba(0,0,0,0.05); }
.section-specs .spec-row dt     { color: #888; }
.section-specs .spec-row dd     { color: #222; }
.section-specs .spec-highlight  { color: #0D0D0D !important; }
.section-specs .specs-bottom    { background: #f2f2f2; border-color: rgba(0,0,0,0.1); }
.section-specs .specs-bottom-text { color: #555; }

.specs-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.specs-header {
  margin-bottom: 72px;
  max-width: 560px;
}

.specs-header .section-title { margin: 12px 0 20px; }

.specs-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  letter-spacing: -0.01em;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--black-border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 64px;
}

.specs-col {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--black-border);
}
.specs-col:last-child { border-right: none; }

.specs-group {
  padding: 36px 36px;
  border-bottom: 1px solid var(--black-border);
}
.specs-group:last-child { border-bottom: none; }

.specs-group-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

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

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.spec-row:last-child { border-bottom: none; }

.spec-row dt {
  font-size: 12px;
  font-weight: 500;
  color: var(--grey);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.spec-row dd {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.01em;
  text-align: right;
}

.spec-highlight {
  color: var(--white) !important;
  font-weight: 700 !important;
}

.specs-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 4px;
}

.specs-bottom-text {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 480px;
  letter-spacing: -0.01em;
}

/* ─── FAQ ─────────────────────────────────────────────────────────────────── */
.section-faq {
  padding: clamp(80px, 10vw, 140px) 0;
  background: #080808;
  border-top: 1px solid var(--black-border);
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.faq-header {
  margin-bottom: 56px;
}

.faq-header .section-title { margin-top: 12px; }

.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--black-border);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: rgba(255,255,255,0.85);
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--white); }
.faq-q[aria-expanded="true"] { color: var(--white); }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); color: var(--orange); }

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--grey);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out), color 0.2s;
  line-height: 1;
}

.faq-a {
  padding: 0 0 24px;
}

.faq-a p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  letter-spacing: -0.01em;
  max-width: 680px;
}

/* ─── CTA ─────────────────────────────────────────────────────────────────── */
.section-cta {
  position: relative;
  padding: clamp(100px, 14vw, 180px) 0;
  overflow: hidden;
  border-top: 2px solid rgba(255,114,0,0.45);
}

.cta-bg-kart {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg-kart img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.45) saturate(0.8);
}
.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.55) 60%, rgba(255,114,0,0.08) 100%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

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

.cta-title {
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.9;
  color: var(--white);
  margin: 12px 0 24px;
}

.cta-desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.cta-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: -0.01em;
}

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--black-border);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  padding: 72px 0 56px;
  align-items: start;
}

.footer-logo {
  display: flex;
  margin-bottom: 16px;
  text-decoration: none;
  align-self: flex-start;
}
.logo-img--footer {
  height: 56px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.35);
  letter-spacing: -0.01em;
}

.footer-links {
  display: flex;
  gap: 72px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-rule {
  height: 1px;
  background: var(--black-border);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
}

.footer-copy, .footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.01em;
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .stats-inner {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }
  .stat-divider { display: none; }
  .stat-card { border-bottom: 1px solid var(--black-border); }

  .feature-block {
    grid-template-columns: 1fr;
  }
  .feature-block--img-left .feature-media { order: 0; }
  .feature-block--img-left .feature-content { padding-left: 40px; }
  .feature-block--img-right .feature-content { padding-right: 40px; }
  .feature-content { max-width: 100%; }

  .hero-content { width: 55%; min-width: 0; padding: 120px 40px 80px; }

  .power-panel { grid-template-columns: 1fr; }
  .power-panel-info { padding: 32px 0 0; }

  .specs-grid { grid-template-columns: 1fr; }
  .specs-col { border-right: none; border-bottom: 1px solid var(--black-border); }
  .specs-col:last-child { border-bottom: none; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .mobile-toggle { display: flex; }
  .nav-cta-btn { display: none; }

  .header-inner { padding: 16px 24px; }

  .hero-content { width: 100%; min-width: 0; padding: 100px 24px 80px; }
  .hero-video-overlay { background: rgba(10,10,10,0.4); }
  .hero-mini-stats { flex-wrap: wrap; gap: 12px; }
  .hero-mini-div { display: none; }
  .hero-mini-stat { padding: 0; }
  .hero-scroll-hint { display: none; }

  .section-features { padding: 60px 0; }
  .features-header { padding: 0 24px; margin-bottom: 48px; }
  .feature-content { padding: 40px 24px; }
  .feature-img-wrap { min-height: 280px; }

  .power-inner,
  .specs-inner,
  .faq-inner,
  .cta-inner { padding: 0 24px; }

  .power-tabs { overflow-x: auto; }
  .power-tab { padding: 16px 20px; white-space: nowrap; }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 24px;
  }
  .stat-card { padding: 28px 20px; }

  .cta-features { grid-template-columns: 1fr; }
  .specs-bottom { flex-direction: column; align-items: flex-start; }

  .footer-inner { padding: 0 24px; }
  .footer-links { flex-direction: column; gap: 32px; }
}

/* ─── KART EXPLORER ───────────────────────────────────────────────────────── */
.section-kart-explorer {
  background: #0a0a0a;
  padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 6vw, 100px);
  overflow: hidden;
  position: relative;
}

.section-kart-explorer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(255,114,0,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.explorer-header {
  text-align: center;
  max-width: var(--container);
  margin: 0 auto clamp(48px, 6vw, 80px);
  padding: 0 40px;
}

.explorer-title-accent { color: var(--orange); }

.explorer-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  letter-spacing: -0.01em;
  margin-top: 16px;
}

/* Stage: the image + hotspots container */
.explorer-stage {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  user-select: none;
}

.explorer-kart-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 40px 80px rgba(255,114,0,0.12));
}

/* ── Hotspot marker ── */
.kart-hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.hotspot-dot {
  position: relative;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.hotspot-core {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  border: 2px solid #fff;
  z-index: 2;
  transition: transform 0.2s;
}

.kart-hotspot:hover .hotspot-core,
.kart-hotspot.active .hotspot-core {
  transform: translate(-50%, -50%) scale(1.3);
}

.hotspot-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255,114,0,0.6);
  animation: hotspotPulse 2s ease-out infinite;
}

.hotspot-pulse--2 {
  animation-delay: 0.8s;
}

@keyframes hotspotPulse {
  0%   { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ── Tooltip card ── */
.hotspot-card {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 230px;
  background: rgba(15,15,15,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,114,0,0.25);
  border-radius: 10px;
  padding: 18px 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s var(--ease-out);
  z-index: 20;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,114,0,0.08);
}

/* Direction variants */
.hotspot-card--top {
  bottom: calc(100% + 18px);
  transform: translateX(-50%) translateY(6px);
}
.hotspot-card--bottom {
  top: calc(100% + 18px);
  transform: translateX(-50%) translateY(-6px);
}
.hotspot-card--left {
  left: auto;
  right: calc(100% + 18px);
  transform: translateY(-50%);
  top: 50%;
}
.hotspot-card--top.hotspot-card--left {
  bottom: calc(100% + 18px);
  top: auto;
  right: calc(100% + 18px);
  left: auto;
  transform: none;
}
.hotspot-card--bottom.hotspot-card--left {
  top: calc(100% + 18px);
  right: calc(100% + 18px);
  left: auto;
  transform: none;
}

/* Show on hover / active */
.kart-hotspot:hover .hotspot-card,
.kart-hotspot.active .hotspot-card {
  opacity: 1;
}

.kart-hotspot:hover .hotspot-card--top,
.kart-hotspot.active .hotspot-card--top {
  transform: translateX(-50%) translateY(0);
}
.kart-hotspot:hover .hotspot-card--bottom,
.kart-hotspot.active .hotspot-card--bottom {
  transform: translateX(-50%) translateY(0);
}
.kart-hotspot:hover .hotspot-card--left,
.kart-hotspot.active .hotspot-card--left {
  transform: translateY(-50%);
}
.kart-hotspot:hover .hotspot-card--top.hotspot-card--left,
.kart-hotspot.active .hotspot-card--top.hotspot-card--left,
.kart-hotspot:hover .hotspot-card--bottom.hotspot-card--left,
.kart-hotspot.active .hotspot-card--bottom.hotspot-card--left {
  transform: none;
}

.hotspot-card-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.hotspot-card-title {
  display: block;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.1;
}

.hotspot-card-desc {
  font-size: 12px;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  letter-spacing: -0.005em;
  margin-bottom: 14px;
}

.hotspot-card-stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.hcs-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.hcs-val {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--orange);
}

.explorer-hint { display: none; }

/* ── Auto-cycle progress bar ── */
.explorer-progress {
  max-width: 1100px;
  margin: 24px auto 0;
  padding: 0 40px;
  height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}

.explorer-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--orange);
  border-radius: 2px;
  /* width transition driven by JS */
}

/* ── Nav row: prev · dots · next ── */
.explorer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  padding: 0 40px;
}

.explorer-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.explorer-nav-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,114,0,0.08);
}

/* Dots */
.explorer-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.explorer-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: none;
  padding: 4px 6px;
  cursor: pointer;
  transition: opacity 0.2s;
  opacity: 0.45;
}

.explorer-dot:hover { opacity: 0.75; }

.explorer-dot.active { opacity: 1; }

.explorer-dot-pip {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background 0.25s, transform 0.25s;
}

.explorer-dot.active .explorer-dot-pip {
  background: var(--orange);
  transform: scale(1.4);
}

.explorer-dot-lbl {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  transition: color 0.2s;
}

.explorer-dot.active .explorer-dot-lbl {
  color: var(--orange);
}

/* Mobile: tap to toggle */
@media (max-width: 768px) {
  .explorer-stage { padding: 0 16px; }
  .hotspot-card { width: 190px; }
  .explorer-hint { margin-top: 24px; }
  .hotspot-card--left,
  .hotspot-card--top.hotspot-card--left,
  .hotspot-card--bottom.hotspot-card--left {
    right: auto;
    left: 50%;
    top: calc(100% + 14px);
    bottom: auto;
    transform: translateX(-50%);
  }
  .kart-hotspot:hover .hotspot-card--left,
  .kart-hotspot.active .hotspot-card--left,
  .kart-hotspot:hover .hotspot-card--top.hotspot-card--left,
  .kart-hotspot.active .hotspot-card--top.hotspot-card--left,
  .kart-hotspot:hover .hotspot-card--bottom.hotspot-card--left,
  .kart-hotspot.active .hotspot-card--bottom.hotspot-card--left {
    transform: translateX(-50%);
  }
}

/* ─── ABOUT ───────────────────────────────────────────────────────────────── */
.section-about {
  background: #ffffff;
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  position: relative;
}

.about-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}

.about-left .section-title { color: #0D0D0D; margin-top: 12px; }

.about-lead {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 500;
  color: #222;
  line-height: 1.6;
  letter-spacing: -0.02em;
  margin-top: 24px;
}

.about-body {
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.about-pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-pillar-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(255,114,0,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.about-pillar strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0D0D0D;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.about-pillar p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.about-closing {
  font-size: 14px;
  line-height: 1.75;
  color: #555;
  letter-spacing: -0.01em;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.about-closing em {
  font-style: normal;
  font-weight: 600;
  color: var(--orange);
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
}

/* ─── EXPERIENCE ──────────────────────────────────────────────────────────── */
.section-experience {
  background: #0a0a0a;
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--black-border);
  position: relative;
  overflow: hidden;
}

/* Video background */
.experience-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  z-index: 0;
  pointer-events: none;
}
.experience-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.25) 100%);
  z-index: 1;
  pointer-events: none;
}
.experience-inner {
  position: relative;
  z-index: 2;
}

.experience-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.experience-header { margin-bottom: 48px; }
.experience-header .section-title { margin-top: 12px; }

.experience-feel {
  max-width: 720px;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--black-border);
}

.experience-lead {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.experience-body {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  letter-spacing: -0.01em;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--black-border);
  border: 1px solid var(--black-border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 64px;
}

.experience-card {
  background: #0e0e0e;
  padding: 36px 28px;
  transition: background 0.3s;
}

.experience-card:hover { background: #141414; }

.experience-card-icon {
  color: var(--orange);
  margin-bottom: 20px;
}

.experience-card-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 12px;
}

.experience-card-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  letter-spacing: -0.01em;
}

.experience-who { max-width: var(--container); }

.experience-who-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
}

.experience-who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.experience-who-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.experience-who-icon {
  font-size: 11px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  padding-top: 2px;
}

.experience-who-item p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  letter-spacing: -0.01em;
}

@media (max-width: 900px) {
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-who-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .experience-grid { grid-template-columns: 1fr; }
  .experience-who-grid { grid-template-columns: 1fr; }
}

/* ─── BOOKING ─────────────────────────────────────────────────────────────── */
.section-booking {
  background: #ffffff;
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 3px solid var(--orange);
  position: relative;
}

.booking-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.booking-header { margin-bottom: 64px; }
.booking-header .section-title { color: #0D0D0D; margin-top: 12px; }
.booking-sub { font-size: 15px; color: #666; margin-top: 16px; letter-spacing: -0.01em; }

.booking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.booking-card {
  background: #f7f7f7;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}

.booking-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.booking-card--featured {
  background: #0D0D0D;
  border-color: var(--orange);
}

.booking-card--featured .booking-card-num,
.booking-card--featured .booking-card-title,
.booking-card--featured .booking-card-desc,
.booking-card--featured .booking-card-includes li {
  color: rgba(255,255,255,0.9);
}

.booking-card--featured .booking-card-includes li::before {
  background: var(--orange);
}

.booking-card-badge {
  position: absolute;
  top: -12px;
  left: 36px;
  background: var(--orange);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.booking-card-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 16px;
}

.booking-card-body { display: flex; flex-direction: column; flex: 1; }

.booking-card-title {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #0D0D0D;
  margin-bottom: 14px;
  line-height: 1.1;
}

.booking-card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.booking-card-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
  flex: 1;
}

.booking-card-includes li {
  font-size: 13px;
  font-weight: 500;
  color: #444;
  padding-left: 18px;
  position: relative;
  letter-spacing: -0.01em;
}

.booking-card-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.booking-contact {
  text-align: center;
  font-size: 14px;
  color: #888;
  letter-spacing: -0.01em;
}

.booking-contact a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}

.booking-contact a:hover { text-decoration: underline; }

/* ─── SAFETY ──────────────────────────────────────────────────────────────── */
.section-safety {
  background: #0D0D0D;
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--black-border);
}

.safety-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.safety-header { margin-bottom: 64px; max-width: 600px; }
.safety-header .section-title { margin-top: 12px; }

.safety-intro {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  letter-spacing: -0.01em;
  margin-top: 20px;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--black-border);
  border: 1px solid var(--black-border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 48px;
}

.safety-item {
  background: #111111;
  padding: 36px 32px;
  transition: background 0.3s;
}

.safety-item:hover { background: #181818; }

.safety-item-icon {
  color: var(--orange);
  margin-bottom: 20px;
}

.safety-item-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 10px;
}

.safety-item-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  letter-spacing: -0.01em;
}

.safety-statement {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.4);
  letter-spacing: -0.01em;
}

@media (max-width: 900px) {
  .booking-grid { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; padding: 0 24px; }
  .experience-inner,
  .booking-inner,
  .safety-inner { padding: 0 24px; }
}

@media (max-width: 600px) {
  .safety-grid { grid-template-columns: 1fr; }
}
