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

:root {
  --bg: #080808;
  --surface: #111111;
  --surface-2: #181818;
  --surface-3: #222222;
  --border: rgba(255, 255, 255, 0.06);
  --border-2: rgba(255, 255, 255, 0.1);
  --green: #3DFF14;
  --green-dim: #2ae500;
  --green-glow: rgba(57, 255, 20, 0.15);
  --text: #E8E8E6;
  --text-muted: #888883;
  --text-faint: #444440;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===================== TYPOGRAPHY ===================== */
.t-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green);
}

.t-hero {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.t-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.t-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.t-body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ===================== GLOBAL NOISE OVERLAY ===================== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===================== HEADER ===================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 100;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s;
}

#header.scrolled {
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-nav a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--text);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: #050505;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 0 30px rgba(61, 255, 20, 0.4), 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover::after {
  opacity: 0.08;
}

.btn-primary:active {
  transform: scale(0.97);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border-2);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s var(--ease-out);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

/* ===================== SCROLL ANIMATIONS ===================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-reveal="left"] {
  transform: translateX(-32px);
}

[data-reveal="right"] {
  transform: translateX(32px);
}

[data-reveal="scale"] {
  transform: scale(0.95);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-delay="1"] {
  transition-delay: 0.1s;
}

[data-delay="2"] {
  transition-delay: 0.2s;
}

[data-delay="3"] {
  transition-delay: 0.3s;
}

[data-delay="4"] {
  transition-delay: 0.4s;
}

[data-delay="5"] {
  transition-delay: 0.5s;
}

[data-delay="6"] {
  transition-delay: 0.6s;
}

/* ===================== HERO ===================== */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 2rem 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #050505;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-family: var(--font-display);
  border: 1px dashed rgba(255, 255, 255, 0.04);
  margin: 2rem;
  border-radius: 1rem;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #080808 0%, rgba(8, 8, 8, 0.7) 40%, rgba(8, 8, 8, 0.1) 80%, transparent 100%);
}

.hero-gradient-side {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8, 8, 8, 0.8) 0%, transparent 60%);
}

/* Animated grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61, 255, 20, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 255, 20, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 80px;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fade-up 1s var(--ease-out) 0.2s both;
}

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.hero-headline {
  animation: fade-up 1s var(--ease-out) 0.4s both;
  margin-bottom: 1.5rem;
}

.hero-headline .line-2 {
  color: var(--text-muted);
  font-weight: 700;
}

.hero-sub {
  animation: fade-up 1s var(--ease-out) 0.6s both;
  max-width: 540px;
  margin-bottom: 3rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fade-up 1s var(--ease-out) 0.8s both;
}

.hero-stats {
  position: absolute;
  right: 2rem;
  bottom: 5rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: fade-in 1.2s var(--ease-out) 1s both;
}

.hero-stat {
  text-align: right;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 0.2rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fade-in 1.5s var(--ease-out) 1.5s both;
}

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

@keyframes scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 1;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}

.scroll-label {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-family: var(--font-display);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ===================== SECTIONS ===================== */
.section {
  padding: 8rem 2rem;
  position: relative;
}

.section-sm {
  padding: 5rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
}

/* ===================== IMAGE WRAPPERS ===================== */
.img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--surface);
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--font-display);
  border: 1px dashed rgba(255, 255, 255, 0.04);
  border-radius: 1.5rem;
  margin: 0;
}

/* ===================== VIDEO WRAPPERS ===================== */
.video-wrapper {
  position: relative;
  width: 100%;
  background: var(--surface);
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--font-display);
  border: 1px dashed rgba(255, 255, 255, 0.04);
  border-radius: 1.5rem;
  margin: 0;
}

/* ===================== BENTO CARDS ===================== */
.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.bento-card:hover {
  border-color: var(--border-2);
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.bento-card-green {
  border-color: rgba(61, 255, 20, 0.12);
}

.bento-card-green:hover {
  border-color: rgba(61, 255, 20, 0.25);
  box-shadow: 0 20px 60px rgba(61, 255, 20, 0.06);
}

.bento-card-img {
  min-height: 480px;
  padding: 0;
  overflow: hidden;
}

.bento-card-img .img-wrapper {
  height: 100%;
  border-radius: 0;
}

/* ===================== SECTION: CERTEZA ===================== */
.certeza-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}

.metric-row:last-child {
  border-bottom: none;
}

.metric-row:hover {
  border-color: var(--border-2);
}

.metric-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.metric-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--green);
  line-height: 1;
}

/* ===================== SECTION: FROTA ===================== */
.fleet-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 0.5rem 0 3rem;
  scrollbar-width: none;
  cursor: grab;
}

.fleet-scroll:active {
  cursor: grabbing;
}

.fleet-scroll::-webkit-scrollbar {
  display: none;
}

.fleet-card {
  min-width: 340px;
  height: 480px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  transition: border-color 0.3s, transform 0.4s var(--ease-out), box-shadow 0.4s;
  cursor: pointer;
}

.fleet-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.fleet-card.active-fleet {
  border-color: rgba(61, 255, 20, 0.25);
  box-shadow: 0 0 0 1px rgba(61, 255, 20, 0.1), 0 20px 60px rgba(61, 255, 20, 0.08);
}

.fleet-card:hover.active-fleet {
  box-shadow: 0 0 0 1px rgba(61, 255, 20, 0.2), 0 30px 80px rgba(61, 255, 20, 0.12);
}

.fleet-bg-text {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.025);
  letter-spacing: -0.06em;
  line-height: 1;
  pointer-events: none;
}

.fleet-img-area {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--font-display);
  border: 1px dashed rgba(255, 255, 255, 0.04);
  margin: 4rem 1.5rem 6rem;
  border-radius: 0.75rem;
}

.fleet-tag {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  background: rgba(61, 255, 20, 0.1);
  color: var(--green);
  border: 1px solid rgba(61, 255, 20, 0.15);
  margin-bottom: 0.75rem;
}

.fleet-hover-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  z-index: 1;
}

.fleet-card:hover .fleet-hover-video {
  opacity: 1;
}

.fleet-cta {
  margin-top: 1.25rem;
  width: 100%;
}

/* ===================== SECTION: COMPARISON ===================== */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: 1.5rem;
  overflow: hidden;
}

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

.comparison-col {
  background: var(--surface);
  padding: 3rem 2.5rem;
}

.comparison-col.col-ziv {
  background: var(--surface-2);
  position: relative;
}

.comparison-col.col-ziv::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--green), var(--green-dim));
  box-shadow: 0 0 20px var(--green-glow);
}

.compare-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.5s, transform 0.5s var(--ease-out), box-shadow 0.3s;
  border-radius: 1rem;
  padding: 1rem;
}

.compare-item.is-visible {
  opacity: 1;
  transform: none;
}

.col-ziv .compare-item {
  --shadow: 0 0 20px rgba(61, 255, 20, 0);
  box-shadow: var(--shadow);
}

.col-ziv .compare-item:hover {
  --shadow: 0 0 30px rgba(61, 255, 20, 0.15);
  background: rgba(61, 255, 20, 0.03);
}

.compare-item-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.compare-item-icon.x {
  background: rgba(255, 80, 80, 0.1);
  color: #ff5050;
  font-size: 0.8rem;
}

.compare-item-icon.check {
  background: rgba(61, 255, 20, 0.1);
  color: var(--green);
  font-size: 0.8rem;
}

/* ===================== SECTION: DRIVER ===================== */
.driver-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.earnings-card {
  background: linear-gradient(135deg, rgba(61, 255, 20, 0.06) 0%, transparent 60%);
  border: 1px solid rgba(61, 255, 20, 0.15);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.earnings-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(61, 255, 20, 0.04) 0%, transparent 60%);
  animation: earnings-pulse 3s ease-in-out infinite;
}

@keyframes earnings-pulse {

  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

.earnings-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--green);
  line-height: 1;
  position: relative;
  z-index: 1;
}

/* ===================== SECTION: STATION ===================== */
.station-hero-card {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  padding: 3rem;
}

.station-bg {
  position: absolute;
  inset: 0;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

.station-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.station-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8, 8, 8, 0.9) 0%, rgba(8, 8, 8, 0.4) 60%, transparent 100%);
}

.station-content {
  position: relative;
  z-index: 1;
  max-width: 500px;
}

/* ===================== CTA FINAL ===================== */
#cta-final {
  background: var(--green);
  border-radius: 2.5rem;
  padding: 6rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 2rem 6rem;
}

#cta-final::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

#cta-final .t-hero {
  color: #050505;
}

#cta-final p {
  color: rgba(5, 5, 5, 0.65);
}

.btn-dark {
  background: #050505;
  color: var(--green);
  border: none;
}

.btn-dark:hover {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}

/* ===================== FOOTER ===================== */
footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 5rem 2rem 3rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

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

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

.footer-nav-title {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1.5rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 300;
}

.footer-nav a:hover {
  color: var(--text);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--text-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===================== BOTTOM NAV (mobile) ===================== */
#bottom-nav {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-2);
  border-radius: 9999px;
  padding: 0.5rem;
  display: flex;
  gap: 0.25rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
}

.nav-item.active {
  background: var(--green);
  color: #050505;
}

.nav-item:not(.active):hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-icon {
  font-size: 1rem;
}

/* ===================== CURSOR GLOW ===================== */
#cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(61, 255, 20, 0.03) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: transform 0.15s, opacity 0.3s;
}

/* ===================== MISC ===================== */
.green-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  margin-right: 0.5rem;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 0;
}

@media (max-width: 640px) {
  .section {
    padding: 5rem 1.25rem;
  }

  #header {
    padding: 0 1.25rem;
  }

  .header-nav {
    display: none;
  }

  .hero-stats {
    display: none;
  }

  #cta-final {
    margin: 0 1rem 4rem;
    padding: 4rem 1.5rem;
  }
}
\n
/* ===================== NEW SHARED COMPONENTS ===================== */

/* Accordion */
.accordion {
  border-bottom: 1px solid var(--border);
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.3s;
}
.accordion-header:hover {
  color: var(--green);
}
.accordion-icon {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-out);
}
.accordion-icon::before, .accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--text);
  transition: background 0.3s, transform 0.3s var(--ease-out);
}
.accordion-icon::before {
  width: 16px;
  height: 2px;
}
.accordion-icon::after {
  width: 2px;
  height: 16px;
}
.accordion.active .accordion-icon {
  transform: rotate(45deg);
}
.accordion.active .accordion-icon::before,
.accordion.active .accordion-icon::after {
  background: var(--green);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.accordion-inner {
  padding-bottom: 1.5rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  line-height: 1.75;
  font-weight: 300;
}

/* Testimonial Card */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}
.testimonial-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
}
.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
  font-style: italic;
  font-weight: 300;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}
.testimonial-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-2);
}
.testimonial-info {
  display: flex;
  flex-direction: column;
}
.testimonial-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}
.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Timeline Step */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 1px;
  background: var(--border);
}
.timeline-step {
  display: flex;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.timeline-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--green);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(61, 255, 20, 0.1);
}
.timeline-content {
  padding-top: 0.5rem;
}
.timeline-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.timeline-desc {
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* Feature Card */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2.5rem;
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-2);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(61, 255, 20, 0.1);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.feature-desc {
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* Tag */
.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border-2);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--surface);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.modal-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}
.modal-box {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 1.5rem;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.4s var(--ease-out);
  padding: 3rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.modal-overlay.is-active .modal-box {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}
.modal-close:hover {
  color: var(--text);
}
.modal-close svg {
  width: 24px;
  height: 24px;
}

/* Form Group */
.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}
.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.form-control {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-control:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green);
}
.form-error {
  color: #ff3333;
  font-size: 0.75rem;
  margin-top: 0.5rem;
  display: none;
}
.form-group.has-error .form-control {
  border-color: #ff3333;
}
.form-group.has-error .form-error {
  display: block;
}

/* Audio Player */
.audio-player {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.audio-btn {
  background: var(--green);
  color: #000;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.audio-btn:hover {
  transform: scale(1.05);
}
.audio-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.audio-progress-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.audio-progress-bar {
  height: 4px;
  background: var(--surface-3);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}
.audio-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--green);
  border-radius: 2px;
  width: 0%;
}
.audio-time {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

/* ===================== MOBILE MENU ===================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 102;
}
.hamburger span {
  width: 2rem;
  height: 0.15rem;
  background: var(--text);
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}
.hamburger.is-active span:first-child {
  transform: rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg);
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 101;
  display: flex;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out), visibility 0.3s;
}
.mobile-menu.is-active {
  visibility: visible;
  opacity: 1;
}
.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}
.mobile-menu-content {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: var(--surface);
  height: 100%;
  margin-left: auto;
  padding: 6rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.mobile-menu.is-active .mobile-menu-content {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--green);
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .header-nav {
    display: none;
  }
}
