/* ============================================
   SATREACH - HOMEPAGE STYLES
   ============================================ */

/* ============================================
   TERRAIN EXPLORER — Cinematic Accordion Section
   ============================================ */

.te-section {
  background: var(--bg-dark);
  position: relative;
  overflow: clip;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-block: clamp(var(--space-2xl), 5vw, var(--space-4xl));
  padding-bottom: clamp(var(--space-2xl), 4vw, var(--space-3xl));
}

/* Section-level ambient glow */
.te-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
  opacity: 0.3;
}

/* ── Header ──────────────────────────────── */
.te-header {
  padding-top: clamp(40px, 5vw, 72px);
  padding-bottom: clamp(24px, 3vw, 40px);
}

.te-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.te-global-counter {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
}

.te-gc-current {
  color: var(--primary);
  font-weight: 700;
  min-width: 24px;
  transition: color 0.3s;
}

.te-gc-track {
  width: 80px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1px;
  overflow: hidden;
}

.te-gc-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  width: 20%;
  transition: width 0.5s var(--ease-out-expo);
  border-radius: 1px;
}

.te-gc-total {
  color: var(--text-dim);
}

.te-header-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-xl), 6vw, var(--space-5xl));
  align-items: end;
}

.te-headline {
  margin-bottom: 0;
}

.te-header-desc {
  font-size: var(--text-lg);
  line-height: 1.85;
  color: var(--text-muted);
  align-self: end;
  padding-bottom: 4px;
}

/* ── Accordion container ──────────────────── */
.te-accordion {
  border-top: 1px solid var(--border);
}

/* ── Single accordion item ─────────────────── */
.te-item {
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

/* Left glow stripe — animated in when active */
.te-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.6s var(--ease-out-expo);
  z-index: 3;
  pointer-events: none;
}

.te-item.is-active::before {
  transform: scaleY(1);
}

/* ── Trigger button ─────────────────────────── */
.te-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 72px 1fr auto 100px 44px;
  align-items: center;
  gap: clamp(var(--space-md), 3vw, var(--space-xl));
  padding: 0 clamp(var(--space-lg), 5vw, var(--space-3xl));
  height: 84px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s;
  position: relative;
}

.te-trigger:hover {
  background: rgba(var(--primary-rgb), 0.02);
}

.te-item.is-active .te-trigger {
  background: rgba(var(--primary-rgb), 0.03);
}

/* Number */
.te-num {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--text-dim);
  transition: color 0.4s;
  letter-spacing: 1px;
}

.te-item.is-active .te-num {
  color: var(--primary);
}

/* Text block: label + sub stacked */
.te-trigger-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.te-label {
  font-size: clamp(1.05rem, 1.2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s;
}

.te-item.is-active .te-label {
  color: var(--primary);
}

.te-sub {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Trigger thumb preview — peeks in on hover/active */
.te-thumb {
  width: 100px;
  height: 56px;
  border-radius: var(--radius-md);
  overflow: hidden;
  opacity: 0;
  transform: scale(0.88) translateY(4px);
  transition:
    opacity 0.35s var(--ease-out-expo),
    transform 0.35s var(--ease-out-expo);
  justify-self: end;
  flex-shrink: 0;
}

.te-item.is-active .te-thumb,
.te-trigger:hover .te-thumb {
  opacity: 0.65;
  transform: scale(1) translateY(0);
}

.te-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Icon +/× */
.te-trigger-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  justify-self: end;
  transition:
    border-color 0.4s,
    background 0.4s;
}

.te-trigger-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-dim);
  transition: stroke 0.3s;
  overflow: visible;
}

.te-trigger-icon .te-icon-h {
  transition: transform 0.45s var(--ease-out-expo);
  transform-origin: center;
}

.te-item.is-active .te-trigger-icon {
  border-color: rgba(var(--primary-rgb), 0.5);
  background: rgba(var(--primary-rgb), 0.06);
}

.te-item.is-active .te-trigger-icon svg {
  stroke: var(--primary);
}

.te-item.is-active .te-trigger-icon .te-icon-h {
  transform: rotate(90deg) scaleX(0);
  opacity: 0;
}

/* ── Panel (grid-template-rows trick) ─────── */
.te-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.te-item.is-active .te-panel {
  grid-template-rows: 1fr;
}

.te-panel-inner {
  overflow: hidden;
}

/* ── Panel grid (image left | content right) ─ */
.te-panel-grid {
  display: grid;
  grid-template-columns: 56% 44%;
  min-height: 540px;
}

/* ── Image side ─────────────────────────── */
.te-media {
  position: relative;
  overflow: hidden;
  min-height: 540px;
}

.te-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.te-item.is-active .te-img {
  transform: scale(1);
}

/* Gradient scrim — fade image into content panel */
.te-media-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 55%, rgba(3, 3, 8, 0.92) 100%),
    linear-gradient(to top, rgba(3, 3, 8, 0.45) 0%, transparent 35%),
    linear-gradient(to bottom, rgba(3, 3, 8, 0.2) 0%, transparent 20%);
  pointer-events: none;
  z-index: 1;
}

/* Floating environment badge */
.te-media-tag {
  position: absolute;
  bottom: var(--space-xl);
  left: var(--space-xl);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(3, 3, 8, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  padding: 7px 16px;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 2.5px;
  color: var(--text-secondary);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.55s 0.5s var(--ease-out-expo),
    transform 0.55s 0.5s var(--ease-out-expo);
}

.te-item.is-active .te-media-tag {
  opacity: 1;
  transform: translateY(0);
}

.te-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.6);
  animation: te-dot-pulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes te-dot-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

/* Auto-advance progress bar on image bottom edge */
.te-auto-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 0 16px rgba(var(--primary-rgb), 0.6);
  z-index: 3;
  pointer-events: none;
}

/* ── Content side ───────────────────────── */
.te-content {
  background: var(--bg-card);
  display: flex;
  align-items: center;
  padding: clamp(var(--space-2xl), 5vw, var(--space-4xl));
  position: relative;
  overflow: hidden;
}

.te-content::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.te-content-inner {
  width: 100%;
  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity 0.65s 0.25s var(--ease-out-expo),
    transform 0.65s 0.25s var(--ease-out-expo);
}

.te-item.is-active .te-content-inner {
  opacity: 1;
  transform: translateX(0);
}

/* KPI row */
.te-kpis {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border);
}

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

.te-kpi-val {
  font-family: var(--font-mono);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.te-kpi-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Content title */
.te-content-title {
  font-size: clamp(1.75rem, 2.4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1.05;
  margin-bottom: var(--space-lg);
}

.te-content-title span {
  color: var(--primary);
}

/* Description */
.te-content-desc {
  font-size: var(--text-base);
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  max-width: 440px;
}

/* Feature list */
.te-feats {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm) var(--space-xl);
  margin-bottom: var(--space-xl);
}

.te-feats li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.te-feat-pip {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.5);
}

/* CTA button */
.te-cta {
  display: inline-flex;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 1100px) {
  .te-panel-grid {
    grid-template-columns: 50% 50%;
    min-height: 480px;
  }
  .te-media {
    min-height: 480px;
  }
}

/* ── Desktop: full-viewport pinned layout ── */
@media (min-width: 901px) {
  .te-section {
    min-height: 100vh;
    min-height: 100dvh;
    margin-block: clamp(var(--space-xl), 3vw, var(--space-2xl));
  }

  /* Compact header so panel has more room */
  .te-header.container-xl {
    padding-top: clamp(20px, 3vw, 44px);
    padding-bottom: clamp(14px, 1.8vw, 26px);
  }

  /* Panel grid fills remaining viewport height */
  .te-panel-grid {
    min-height: clamp(300px, calc(100vh - 490px), 620px);
  }

  .te-media {
    min-height: clamp(300px, calc(100vh - 490px), 620px);
  }

  /* Tighten trigger row height slightly */
  .te-trigger {
    height: 72px;
  }

  /* ─── Cross-fade stack: one card fills the full accordion ───
       Only the active card is visible. Inactive cards are
       hidden completely. JS forces top/height inline to beat
       any GSAP pin compensation.
    ── */
  .te-section.is-scroll-mode .te-accordion {
    position: relative;
    overflow: hidden;
  }
  /* Every item: absolute, full size, hidden by default */
  .te-section.is-scroll-mode .te-item {
    position: absolute;
    left: 0;
    right: 0;
    /* top & height set by JS to beat GSAP */
    margin: 0 !important;
    overflow: hidden;
    background: var(--bg-primary, #07101e);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  }
  /* Active card: visible, full accordion height */
  .te-section.is-scroll-mode .te-item.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 5;
    display: flex;
    flex-direction: column;
  }
  /* Trigger row: fixed height at top of active card */
  .te-section.is-scroll-mode .te-item.is-active .te-trigger {
    flex-shrink: 0;
    height: 72px;
  }
  /* Panel fills everything below the trigger */
  .te-section.is-scroll-mode .te-item.is-active .te-panel {
    flex: 1 1 0;
    min-height: 0;
    display: flex !important;
    flex-direction: column;
    grid-template-rows: 1fr !important;
    transition: none !important;
  }
  .te-section.is-scroll-mode .te-item.is-active .te-panel-inner {
    flex: 1 1 0;
    height: 100%;
    overflow: hidden;
  }
  .te-section.is-scroll-mode .te-panel-grid {
    height: 100%;
    min-height: 0 !important;
  }
  .te-section.is-scroll-mode .te-media {
    height: 100%;
    min-height: 0 !important;
  }
}

/* ── Side numbered navigator ────────────── */
/* ── Accordion + sticky nav wrapper ────── */
.te-body {
  display: flex;
  align-items: flex-start;
  position: relative;
  max-width: var(--container-xl);
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.te-body .te-accordion {
  flex: 1;
  min-width: 0;
}

.te-dots {
  position: fixed;
  right: clamp(12px, 2vw, 32px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  z-index: 20;
  padding: 8px 4px;
  /* Hidden by default — JS shows when section is in view */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.te-dots.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.te-dot-item {
  width: 44px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
  padding: 0;
}

.te-dot-item.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #000;
  box-shadow: 0 0 16px rgba(var(--primary-rgb), 0.5);
}

.te-dot-item:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 900px) {
  .te-dots {
    display: none;
  }
  .te-body {
    display: block;
  }
}

/* ── Scroll cue hint ─────────────────────── */
.te-scroll-cue {
  position: fixed; /* fixed so it sits at viewport bottom regardless of pin offset */
  bottom: clamp(16px, 2.5vh, 32px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 1;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 10;
}

.te-scroll-cue.is-hidden {
  opacity: 0;
}

.te-scroll-cue-text {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.te-scroll-cue-arrow {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: te-cue-drop 1.8s ease-in-out infinite;
}

@keyframes te-cue-drop {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }
  40% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
  80% {
    opacity: 0;
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .te-scroll-cue {
    display: none;
  }
}

@media (max-width: 900px) {
  .te-header-body {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .te-panel-grid {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .te-media {
    min-height: 260px;
    height: 260px;
  }

  .te-media-scrim {
    background: linear-gradient(to bottom, transparent 50%, rgba(3, 3, 8, 0.6) 100%);
  }

  .te-content {
    padding: var(--space-xl);
  }

  .te-feats {
    grid-template-columns: 1fr;
  }

  .te-trigger {
    grid-template-columns: 56px 1fr 44px;
    height: auto;
    padding-block: var(--space-lg);
  }

  .te-thumb {
    display: none;
  }

  .te-sub {
    display: none;
  }
}

@media (max-width: 640px) {
  .te-kpis {
    gap: var(--space-md);
  }

  .te-kpi-val {
    font-size: var(--text-xl);
  }
}

/* ============================================
   SHOOTING STARS
   ============================================ */
.shooting-stars {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.shooting-star {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
}

.shooting-star::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: clamp(80px, 12vw, 180px);
  height: 1px;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0) 0%,
    rgba(200, 230, 255, 0.6) 60%,
    rgba(255, 255, 255, 0.95) 100%
  );
  border-radius: 0 50% 50% 0;
}

@keyframes shootingStar {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }
  5% {
    opacity: 1;
  }
  80% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translate(-55vw, 35vw);
  }
}

/* Each star has a unique position and delay so they fire at different times */
.shooting-star:nth-child(1) {
  top: 8%;
  left: 75%;
  animation: shootingStar 3s ease-in-out infinite;
  animation-delay: 1.5s;
}
.shooting-star:nth-child(2) {
  top: 3%;
  left: 55%;
  animation: shootingStar 2.6s ease-in-out infinite;
  animation-delay: 8s;
}
.shooting-star:nth-child(3) {
  top: 14%;
  left: 88%;
  animation: shootingStar 3.2s ease-in-out infinite;
  animation-delay: 15s;
}
.shooting-star:nth-child(4) {
  top: 6%;
  left: 40%;
  animation: shootingStar 2.8s ease-in-out infinite;
  animation-delay: 22.5s;
}
.shooting-star:nth-child(5) {
  top: 20%;
  left: 70%;
  animation: shootingStar 3.5s ease-in-out infinite;
  animation-delay: 4s;
}
.shooting-star:nth-child(6) {
  top: 2%;
  left: 60%;
  animation: shootingStar 2.4s ease-in-out infinite;
  animation-delay: 30s;
}
.shooting-star:nth-child(7) {
  top: 10%;
  left: 95%;
  animation: shootingStar 3.1s ease-in-out infinite;
  animation-delay: 11s;
}
.shooting-star:nth-child(8) {
  top: 5%;
  left: 82%;
  animation: shootingStar 2.9s ease-in-out infinite;
  animation-delay: 18s;
}

/* ── Hero layout wrapper ── */
.hero-body {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-2xl), 4vw, var(--space-5xl));
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}

/* ── Hero visual — orbits (right grid column) ── */
.hero-visual {
  position: relative;
  z-index: 2;
  pointer-events: none;
  justify-self: center;
  align-self: center;
  width: clamp(300px, 36vmin, 520px);
  height: clamp(300px, 36vmin, 520px);
  flex-shrink: 0;

  /* glow backdrop so the rings pop against the starfield */
  filter: drop-shadow(0 0 60px rgba(var(--primary-rgb), 0.15));
}

.hero-orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(var(--primary-rgb), 0.18);
  border-radius: 50%;
  animation: orbitRotate 30s linear infinite;
}

.hero-orbit:nth-child(2) {
  inset: 14%;
  animation-duration: 22s;
  animation-direction: reverse;
  border-color: rgba(var(--secondary-rgb), 0.12);
}

.hero-orbit:nth-child(3) {
  inset: 29%;
  animation-duration: 16s;
  border-color: rgba(var(--accent-rgb), 0.1);
}

.hero-satellite {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow:
    0 0 30px var(--primary),
    0 0 80px rgba(var(--primary-rgb), 0.5);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.hero-satellite::after {
  content: '';
  position: absolute;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes orbitRotate {
  to {
    transform: rotate(360deg);
  }
}

/* Trusted By Section */
.trusted-section {
  padding: var(--space-xl) var(--space-lg);
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition:
    box-shadow 0.5s var(--ease-out-expo),
    border-color 0.5s var(--ease-out-expo),
    background 0.5s var(--ease-out-expo);
}

.trusted-section:hover {
  background: rgba(0, 200, 255, 0.04);
  border-top-color: rgba(0, 200, 255, 0.25);
  border-bottom-color: rgba(0, 200, 255, 0.25);
  box-shadow:
    inset 0 1px 40px rgba(0, 200, 255, 0.07),
    inset 0 -1px 40px rgba(0, 200, 255, 0.07),
    0 0 60px rgba(0, 200, 255, 0.06);
}

.trusted-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-dim);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(var(--space-2xl), 6vw, var(--space-4xl));
  flex-wrap: wrap;
}

.trusted-logo {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-dim);
  opacity: 0.4;
  transition: var(--transition-base);
  letter-spacing: -0.5px;
}

.trusted-section:hover .trusted-logo {
  opacity: 0.75;
  color: var(--primary-light);
  text-shadow:
    0 0 18px rgba(0, 200, 255, 0.55),
    0 0 4px rgba(0, 200, 255, 0.4);
}

.trusted-logo:hover {
  opacity: 1 !important;
  color: var(--primary) !important;
  text-shadow:
    0 0 24px rgba(0, 200, 255, 0.9),
    0 0 8px rgba(0, 200, 255, 0.7),
    0 0 2px #fff !important;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-lg);
  right: var(--space-xl);
  font-size: clamp(48px, 3rem + 2vw, 80px);
  font-family: Georgia, serif;
  color: var(--primary);
  opacity: 0.1;
  line-height: 1;
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-md);
}

.testimonial-stars span {
  color: var(--accent);
  font-size: var(--text-sm);
}

.testimonial-text {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  font-style: italic;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--bg-dark);
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: var(--text-sm);
}

.testimonial-role {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-dim);
  letter-spacing: 1px;
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.process-step {
  background: var(--bg-card);
  padding: var(--space-xl);
  text-align: center;
  position: relative;
  transition: var(--transition-base);
}

.process-step:hover {
  background: var(--bg-card-hover);
}

.process-number {
  font-family: var(--font-mono);
  font-size: var(--text-4xl);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: var(--space-md);
}

.process-title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.process-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   AWARD-WINNING CONTACT SECTION
   ============================================ */

.section-contact-hero {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  padding-block: clamp(64px, 8vw, 120px);
}

/* Ambient glow orbs */
.contact-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.contact-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.12), transparent 70%);
  top: -180px;
  right: -100px;
}
.contact-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.1), transparent 70%);
  bottom: -100px;
  left: -80px;
}
.contact-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.07), transparent 70%);
  top: 40%;
  left: 30%;
}

.contact-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

/* Status eyebrow */
.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: var(--radius-full);
  padding: 6px 18px;
  width: fit-content;
}
.contact-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}
.contact-status-text {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 1px;
  color: var(--accent);
  text-transform: uppercase;
}

/* Headline block */
.contact-headline {
  display: flex;
  align-items: flex-end;
  gap: var(--space-xl);
  flex-wrap: wrap;
}
.contact-headline h2 {
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  color: #ffffff;
  flex-shrink: 0;
}
.contact-headline-accent {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-subhead {
  max-width: 380px;
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--text-muted);
  padding-bottom: 6px;
}

/* Two-column body */
.contact-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

/* ---- LEFT: Contact channels ---- */
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-xl);
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
  transition:
    background var(--transition-base),
    border-color var(--transition-base),
    transform var(--transition-base);
  position: relative;
}
.contact-channel:hover {
  background: rgba(var(--primary-rgb), 0.05);
  border-color: rgba(var(--primary-rgb), 0.18);
  transform: translateX(6px);
}
.contact-channel-location {
  cursor: default;
}
.contact-channel-location:hover {
  transform: none;
  background: transparent;
  border-color: transparent;
}

.contact-channel-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  display: grid;
  place-items: center;
  color: var(--primary);
  transition:
    background var(--transition-base),
    border-color var(--transition-base);
}
.contact-channel-icon svg {
  width: 20px;
  height: 20px;
}
.contact-channel:hover .contact-channel-icon {
  background: rgba(var(--primary-rgb), 0.15);
  border-color: rgba(var(--primary-rgb), 0.35);
}

.contact-channel-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.contact-channel-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.contact-channel-value {
  font-size: var(--text-lg);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
}
.contact-channel-sub {
  font-size: var(--text-xs);
  color: var(--text-dim);
}

.contact-channel-arrow {
  font-size: var(--text-xl);
  color: var(--primary);
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity var(--transition-fast),
    transform var(--transition-fast);
}
.contact-channel:hover .contact-channel-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ---- RIGHT: Promises + CTA ---- */
.contact-right {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.contact-promises {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(12px);
}

.contact-promise {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition-base);
}
.contact-promise:last-child {
  border-bottom: none;
}
.contact-promise:hover {
  background: rgba(var(--primary-rgb), 0.04);
}

.contact-promise-num {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 1px;
  color: var(--primary);
  opacity: 0.6;
  padding-top: 3px;
  min-width: 24px;
}

.contact-promise-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.contact-promise-text strong {
  font-size: var(--text-base);
  font-weight: 600;
  color: #ffffff;
}
.contact-promise-text span {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
}

/* CTA block — kept for legacy, form replaces it */
.contact-cta-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
}
.contact-cta-btn {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  font-size: var(--text-base);
  letter-spacing: 0.02em;
  box-shadow:
    0 0 40px rgba(var(--primary-rgb), 0.25),
    0 8px 32px rgba(0, 0, 0, 0.3);
}
.contact-cta-btn:hover {
  box-shadow:
    0 0 60px rgba(var(--primary-rgb), 0.4),
    0 12px 40px rgba(0, 0, 0, 0.4);
}
.contact-cta-note {
  font-size: var(--text-xs);
  color: var(--text-dim);
  text-align: center;
  width: 100%;
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
}

/* ---- Contact Section Form ---- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-2xl);
  padding: var(--space-xl);
  backdrop-filter: blur(12px);
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-form-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.contact-form-input,
.contact-form-select,
.contact-form-textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  outline: none;
  width: 100%;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
  color: var(--text-dim);
}

.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus {
  border-color: rgba(var(--primary-rgb), 0.5);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
  background: rgba(var(--primary-rgb), 0.04);
}

.contact-form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300c8ff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: rgba(255, 255, 255, 0.04);
  padding-right: 40px;
  cursor: pointer;
}

.contact-form-select option {
  background: #0a0a1a;
  color: #ffffff;
}

.contact-form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.contact-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  width: 100%;
  padding: var(--space-sm) var(--space-xl);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--bg-dark);
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-base);
  margin-top: var(--space-sm);
  box-shadow:
    0 4px 24px rgba(var(--primary-rgb), 0.3),
    0 0 0 1px rgba(var(--primary-rgb), 0.15);
}
.contact-form-submit svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.contact-form-submit:hover {
  box-shadow:
    0 16px 48px rgba(var(--primary-rgb), 0.5),
    0 0 0 1px rgba(var(--primary-rgb), 0.3),
    0 0 80px rgba(var(--primary-rgb), 0.15);
}

.contact-form-note {
  font-size: var(--text-xs);
  color: var(--text-dim);
  text-align: center;
  font-family: var(--font-mono);
  letter-spacing: 0.3px;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-body {
    grid-template-columns: 1fr;
  }
  .contact-headline {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-lg);
  }
  .contact-subhead {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .contact-channel {
    padding: var(--space-md) var(--space-md);
  }
  .contact-promise {
    padding: var(--space-md) var(--space-lg);
  }
  .contact-form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: var(--space-lg);
  }
}

/* Enhanced CTA — kept for backwards compat */
.cta-enhanced {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(var(--primary-rgb), 0.05),
    rgba(var(--secondary-rgb), 0.02)
  );
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
}

.cta-enhanced::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.1), transparent 60%);
  pointer-events: none;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.cta-feature::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

.cta-visual {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cta-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  transition: var(--transition-base);
}

.cta-stat-card:hover {
  border-color: var(--border-hover);
  transform: translateX(8px);
}

.cta-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), transparent);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  display: grid;
  place-items: center;
  font-size: var(--text-xl);
}

.cta-stat-value {
  font-family: var(--font-mono);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-primary);
}

.cta-stat-label {
  font-size: var(--text-xs);
  color: var(--text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Responsive — hero */
@media (max-width: 900px) {
  .hero-body {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
}

/* Rental Icon Styling */
.rental-icon {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f2f5;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
  overflow: hidden;
  transition: var(--transition-base);
}

.rental-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-base);
  padding: var(--space-sm);
}

.rental-card:hover .rental-icon img {
  transform: scale(1.05);
}

/* ============================================
   WHY CHOOSE US TABS
   ============================================ */
.wcu-tabs {
  margin-top: var(--space-lg);
}

.wcu-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.wcu-nav-btn {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-card);
  border: none;
  cursor: pointer;
  text-align: left;
  transition: var(--transition-base);
  position: relative;
}

.wcu-nav-btn:hover {
  background: var(--bg-card-hover);
}

.wcu-nav-btn.active {
  background: linear-gradient(
    135deg,
    rgba(var(--primary-rgb), 0.15),
    rgba(var(--primary-rgb), 0.05)
  );
}

.wcu-nav-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out-expo);
}

.wcu-nav-btn.active .wcu-nav-indicator {
  transform: scaleX(1);
}

.wcu-nav-icon {
  font-size: var(--text-lg);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.wcu-nav-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wcu-nav-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
}

.wcu-nav-sublabel {
  font-size: var(--text-xs);
  color: var(--text-dim);
}

/* Panels */
.wcu-panels {
  position: relative;
}

.wcu-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  animation: panelFadeIn 0.5s var(--ease-out-expo);
}

.wcu-panel.active {
  display: grid;
}

@keyframes panelFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wcu-panel-image {
  position: relative;
  min-height: 300px;
  background: var(--bg-card);
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.wcu-panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.wcu-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3, 3, 8, 0.3), rgba(3, 3, 8, 0.6));
}

.wcu-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: floatBounce 3s ease-in-out infinite;
}

.wcu-float-1 {
  top: var(--space-lg);
  left: var(--space-lg);
}

.wcu-float-2 {
  bottom: var(--space-lg);
  right: var(--space-lg);
  animation-delay: 1.5s;
}

@keyframes floatBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.wcu-float-icon {
  font-size: var(--text-base);
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-md);
}

.wcu-float-data {
  display: flex;
  flex-direction: column;
}

.wcu-float-data strong {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--bg-dark);
  line-height: 1.2;
}

.wcu-float-data small {
  font-size: var(--text-xs);
  color: #666;
}

.wcu-panel-content {
  padding: var(--space-xl) var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wcu-content-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: var(--space-xs) var(--space-md);
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  border-radius: var(--radius-full);
  width: fit-content;
  margin-bottom: var(--space-md);
}

.wcu-content-title {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.wcu-content-title span {
  color: var(--primary);
}

.wcu-content-lead {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.wcu-content-body {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.wcu-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.wcu-pill {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-primary);
  padding: var(--space-sm) var(--space-md);
  background: linear-gradient(
    135deg,
    rgba(var(--primary-rgb), 0.15),
    rgba(var(--primary-rgb), 0.05)
  );
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

/* Progress & Counter */
.wcu-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  overflow: hidden;
}

.wcu-progress-bar {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.5s var(--ease-out-expo);
}

.wcu-counter {
  position: absolute;
  bottom: var(--space-xl);
  right: var(--space-xl);
  font-family: var(--font-mono);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.wcu-counter-current {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--primary);
}

.wcu-counter-sep {
  color: var(--text-dim);
}

.wcu-counter-total {
  font-size: var(--text-lg);
  color: var(--text-dim);
}

/* Responsive */
@media (max-width: 1024px) {
  .wcu-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .wcu-panel {
    grid-template-columns: 1fr;
  }

  .wcu-panel-image {
    min-height: 300px;
  }
}

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

  .wcu-nav-btn {
    padding: var(--space-md);
  }

  .wcu-nav-icon {
    width: 40px;
    height: 40px;
    font-size: var(--text-xl);
  }

  .wcu-panel-content {
    padding: var(--space-xl);
  }

  .wcu-content-title {
    font-size: var(--text-2xl);
  }

  .wcu-float {
    padding: var(--space-sm) var(--space-md);
  }

  .wcu-float-icon {
    width: 32px;
    height: 32px;
    font-size: var(--text-base);
  }

  .wcu-float-data strong {
    font-size: var(--text-base);
  }

  .wcu-counter {
    bottom: var(--space-lg);
    right: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .wcu-panel-image {
    min-height: 220px;
  }

  .wcu-panel-content {
    padding: var(--space-lg);
  }

  .wcu-content-title {
    font-size: var(--text-xl);
  }

  .wcu-content-lead {
    font-size: var(--text-base);
  }

  .wcu-content-body {
    font-size: var(--text-sm);
  }

  .wcu-pills {
    gap: var(--space-xs);
  }

  .wcu-pill {
    font-size: var(--text-xs);
    padding: var(--space-xs) var(--space-sm);
  }
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-inline: auto;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-grid {
    grid-template-columns: 1fr;
  }
  .cta-visual {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .cta-stat-card {
    flex: 1;
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .trusted-logos {
    gap: var(--space-xl);
  }
  .trusted-logo {
    font-size: var(--text-base);
  }
  .testimonial-card {
    padding: var(--space-xl);
  }
  .testimonial-text {
    font-size: var(--text-sm);
  }
  .process-step {
    padding: var(--space-xl);
  }
  .process-number {
    font-size: var(--text-4xl);
  }
  .cta-enhanced {
    padding: var(--space-2xl);
  }
}

@media (max-width: 640px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
  .cta-stat-card {
    flex-direction: column;
    text-align: center;
  }
  .cta-visual {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .testimonial-card::before {
    font-size: 48px;
  }
  .process-step {
    padding: var(--space-lg);
  }
  .cta-enhanced {
    padding: var(--space-xl);
  }
}

/* ============================================
   LIGHT SECTIONS THEME
   ============================================ */

/* About section — compact to fit viewport */
#about {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

#about .section-header {
  margin-bottom: var(--space-md);
}

.section-light {
  --bg-section: #f8f9fc;
  --bg-card: #ffffff;
  --bg-card-hover: #f0f2f5;
  --text-primary: #0a0a12;
  --text-secondary: #2a2a3a;
  --text-muted: #5a5a6a;
  --text-dim: #8a8a9a;
  --border: rgba(0, 0, 0, 0.08);
  background: var(--bg-section);
  position: relative;
}

.section-light .section-tag {
  color: var(--primary);
  border-color: rgba(var(--primary-rgb), 0.3);
  background: rgba(var(--primary-rgb), 0.08);
}

.section-light .section-title {
  color: var(--text-primary);
}

.section-light .section-desc {
  color: var(--text-secondary);
}

.section-light .solution-card,
.section-light .product-card,
.section-light .rental-card {
  background: var(--bg-card);
  border-color: var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.section-light .solution-card:hover,
.section-light .product-card:hover,
.section-light .rental-card:hover {
  background: var(--bg-card);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.section-light .rental-device {
  color: var(--text-primary);
}

.section-light .rental-bestfor,
.section-light .rental-specs li,
.section-light .rental-price-row {
  color: var(--text-muted);
}

.section-light .rental-bestfor strong,
.section-light .rental-specs li strong {
  color: var(--text-secondary);
}

.section-light .rental-price {
  color: var(--primary);
}

.section-light .rental-actions {
  border-top-color: var(--border);
  background: var(--bg-card);
}

.section-light .rental-image-wrap {
  background: #ffffff;
}

.section-light .rental-specs li {
  border-bottom-color: rgba(0, 0, 0, 0.05);
}

.section-light .rental-price-row {
  border-top-color: var(--border);
}

.section-light .rental-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.15);
}

.section-light .testimonial-card {
  background: var(--bg-card);
  border-color: var(--border);
}

.section-light .testimonial-text {
  color: var(--text-secondary);
}

.section-light .testimonial-author strong {
  color: var(--text-primary);
}

.section-light .contact-card {
  background: var(--bg-card);
  border-color: var(--border);
}

.section-light .contact-title {
  color: var(--text-primary);
}

.section-light .contact-info {
  color: var(--text-secondary);
}

.section-light .contact-info a {
  color: var(--primary);
}

.section-light .contact-info a:hover {
  color: var(--secondary);
}

/* ============================================
   SECTION CANVAS BACKGROUNDS
   ============================================ */
.section-canvas {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
  /* Don't use CSS width/height - JS handles resolution */
}

.section > .container-xl,
.section > .container-lg,
.section > .container {
  position: relative;
  z-index: 1;
}

/* Canvas overlays for better text readability */
.section-dark-overlay {
  position: relative;
}

.section-dark-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(3, 3, 8, 0.5) 0%,
    rgba(3, 3, 8, 0.2) 50%,
    rgba(3, 3, 8, 0.5) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.section-light-overlay {
  position: relative;
}

.section-light-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(248, 249, 252, 0.8) 0%,
    rgba(248, 249, 252, 0.5) 50%,
    rgba(248, 249, 252, 0.8) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* Stats section enhanced */
.stats-section {
  position: relative;
  overflow: hidden;
}

.stats-section .section-canvas {
  opacity: 0.4;
  border-radius: var(--radius-xl);
}

.stats-section .stat-item {
  position: relative;
  z-index: 1;
  background: rgba(var(--bg-card-rgb, 18, 18, 25), 0.85);
  backdrop-filter: blur(8px);
}

/* ============================================
   SECTION BACKGROUND ANIMATIONS — Space / Starlink
   Each section gets a unique, subtle space-themed
   CSS animation on its ::before pseudo-element.
   All animations respect prefers-reduced-motion.
   ============================================ */

/* Shared base — every animated layer sits behind content */
#about::before,
#solutions::before,
#products::before,
.stats-section::before,
#terrain-explorer::after,
#testimonials::before,
#process::before,
#rentals-preview::before {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* ── 1. About: Nebula Signal Breath ─────────────────────
   Two soft glowing lobes (like a dish's signal pattern)
   slowly breathe in and out from opposite corners.       */
#about {
  overflow: hidden;
}
#about::before {
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 15% 25%, rgba(var(--primary-rgb), 0.08) 0%, transparent 65%),
    radial-gradient(ellipse 42% 38% at 85% 75%, rgba(var(--primary-rgb), 0.06) 0%, transparent 60%);
  animation: nebulaPulse 11s ease-in-out infinite;
}
@keyframes nebulaPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* ── 2. Solutions: LEO Orbital Trails ────────────────────
   Very faint diagonal lines drifting across — like a
   time-lapse of Starlink satellites crossing the sky.    */
#solutions::before {
  inset: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    -42deg,
    transparent 0px,
    transparent 88px,
    rgba(var(--primary-rgb), 0.025) 88px,
    rgba(var(--primary-rgb), 0.025) 90px
  );
  animation: orbitTrail 28s linear infinite;
}
@keyframes orbitTrail {
  from {
    transform: translateX(0) translateY(0);
  }
  to {
    transform: translateX(15%) translateY(15%);
  }
}

/* ── 3. Products: Signal Dot Lattice ─────────────────────
   Tiny dot grid (like a satellite tracking matrix) that
   gently breathes opacity, hinting at a data grid.      */
#products {
  overflow: hidden;
}
#products::before {
  inset: 0;
  background-image: radial-gradient(circle, rgba(var(--primary-rgb), 0.14) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: latticePulse 8s ease-in-out infinite alternate;
}
@keyframes latticePulse {
  from {
    opacity: 0.25;
  }
  to {
    opacity: 0.55;
  }
}

/* ── 4. Stats: Satellite Signal Ping ─────────────────────
   Concentric rings expand outward from the center — like
   a ground station dish broadcasting its signal.        */
.stats-section::before {
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  margin-top: -3px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.5);
  animation: signalPing 6s ease-out infinite;
}
@keyframes signalPing {
  0% {
    box-shadow:
      0 0 0 0px rgba(var(--primary-rgb), 0.28),
      0 0 0 0px rgba(var(--primary-rgb), 0.18),
      0 0 0 0px rgba(var(--primary-rgb), 0.09);
    opacity: 1;
  }
  100% {
    box-shadow:
      0 0 0 160px rgba(var(--primary-rgb), 0),
      0 0 0 300px rgba(var(--primary-rgb), 0),
      0 0 0 460px rgba(var(--primary-rgb), 0);
    opacity: 0.4;
  }
}

/* ── 5. Terrain Explorer: Star Field Drift ───────────────
   Three layers of tiny stars drifting slowly downward —
   mimicking long-exposure satellite tracking photos.    */
#terrain-explorer {
  overflow: hidden;
}
#terrain-explorer::after {
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.55) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size:
    70px 70px,
    120px 120px,
    190px 190px;
  background-position:
    0 0,
    35px 55px,
    85px 25px;
  animation: starDrift 50s linear infinite;
  opacity: 0.35;
  z-index: 0;
}
@keyframes starDrift {
  from {
    background-position:
      0 0,
      35px 55px,
      85px 25px;
  }
  to {
    background-position:
      0 70px,
      35px 175px,
      85px 215px;
  }
}

/* ── 6. Testimonials: Constellation Twinkle ──────────────
   Faint star-point grid gently pulsing — like a star
   chart slowly coming into focus through a telescope.  */
#testimonials {
  overflow: hidden;
}
#testimonials::before {
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(var(--primary-rgb), 0.13) 1px, transparent 1px),
    radial-gradient(circle, rgba(var(--primary-rgb), 0.08) 1px, transparent 1px);
  background-size:
    56px 56px,
    104px 104px;
  background-position:
    0 0,
    28px 48px;
  animation: constellationTwinkle 7s ease-in-out infinite alternate;
}
@keyframes constellationTwinkle {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 0.7;
  }
}

/* ── 7. Process: Comet Streaks ───────────────────────────
   Thin angled light streaks fade in and drift — like
   comet/meteor trails seen from a satellite viewpoint.  */
#process {
  overflow: hidden;
}
#process::before {
  inset: -20%;
  width: 140%;
  height: 140%;
  background: repeating-linear-gradient(
    -65deg,
    transparent 0px,
    transparent 120px,
    rgba(var(--primary-rgb), 0.018) 120px,
    rgba(var(--primary-rgb), 0.018) 121px,
    transparent 122px,
    transparent 200px,
    rgba(var(--primary-rgb), 0.012) 200px,
    rgba(var(--primary-rgb), 0.012) 201px
  );
  animation: cometStreak 35s linear infinite;
}
@keyframes cometStreak {
  from {
    transform: translateX(-8%) translateY(-8%);
  }
  to {
    transform: translateX(8%) translateY(8%);
  }
}

/* ── 8. Rentals: Radar Arc Pulse ─────────────────────────
   A soft circular halo pulses from the top-right corner
   like a radar sweep from a satellite ground station.   */
#rentals-preview {
  overflow: hidden;
}
#rentals-preview::before {
  right: -80px;
  top: -80px;
  left: auto;
  bottom: auto;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(var(--primary-rgb), 0.07);
  box-shadow:
    0 0 0 60px rgba(var(--primary-rgb), 0.035),
    0 0 0 120px rgba(var(--primary-rgb), 0.02),
    0 0 0 180px rgba(var(--primary-rgb), 0.01);
  animation: radarArc 10s ease-in-out infinite;
}
@keyframes radarArc {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  #about::before,
  #solutions::before,
  #products::before,
  .stats-section::before,
  #terrain-explorer::after,
  #testimonials::before,
  #process::before,
  #rentals-preview::before {
    animation: none;
  }
}
