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

html {
  scroll-behavior: smooth;
}

/* ─── Dart Side Rentals — Design Tokens ─── */
:root {
  --primary:        #FF6B00;
  --primary-hover:  #E05E00;
  --primary-tint:   rgba(255, 107, 0, 0.08);
  --primary-glow:   rgba(255, 107, 0, 0.30);
  --accent:         #00C4D4;
  --accent-tint:    rgba(0, 196, 212, 0.08);
  --sparkle:        #FFB800;
  --dark:           #0B1628;
  --dark-2:         #1A2A42;
  --light:          #F0F4F8;
  --light-grey:     #E2E8F0;
  --white:          #FFFFFF;
  --text-body:      #334155;
  --text-light:     #E2E8F0;
  --text-muted:     #5B6B80;
  --red:            #DC2626;
  --font-heading:   'Oxanium', sans-serif;
  --font-body:      'Inter', sans-serif;
  --heading-skew:   skewX(-5deg);
  --btn-text:       var(--dark);
  --primary-text:   #B34D00;
  --btn-radius:     4px;
  --section-padding: 100px;
  --max-width:      1200px;
}

/* ─── Base ─── */
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text-light);
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--dark-2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ─── Grunge / Tactical Texture ─── */
.hero-section::after,
.arsenal-section::after,
.faq-section::after,
.contact-section::after,
.site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.arsenal-section,
.faq-section,
.contact-section,
.site-footer {
  position: relative;
}

/* ─── Layout ─── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.narrow {
  max-width: 800px;
}

/* ─── Typography ─── */
h1, h2, h3 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  transform: var(--heading-skew);
  letter-spacing: 0.02em;
}

h2, h3 {
  font-weight: 800;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-heading);
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 2px dashed var(--accent);
}

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

/* Long-form content (privacy page) */
.prose {
  color: var(--text-body);
  line-height: 1.75;
}

.prose h2 {
  font-size: 1.35rem;
  color: var(--dark-2);
  margin-top: 2em;
  margin-bottom: 0.6em;
}

.prose p { margin-bottom: 1em; }

.prose ul, .prose ol {
  margin-bottom: 1em;
  padding-left: 1.5em;
}

.prose li { margin-bottom: 0.4em; }
.prose a { color: var(--primary-text); }
.prose a:hover { text-decoration: underline; }
.prose strong { color: var(--dark-2); }

.section-pad {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  margin-top: 12px;
}

.section-subtext {
  font-size: 17px;
  color: rgba(226, 232, 240, 0.7);
  margin-top: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: var(--btn-radius);
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, border-color 0.2s, box-shadow 0.15s;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transform: skewX(-5deg);
}

.btn:hover {
  transform: skewX(-5deg) translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: var(--btn-text);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -2px 0 rgba(0, 0, 0, 0.2),
    0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  background: var(--primary-hover);
  color: var(--btn-text);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -2px 0 rgba(0, 0, 0, 0.2),
    0 6px 28px var(--primary-glow);
}

.btn-primary:active {
  transform: skewX(-5deg) translateY(1px);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.25),
    0 2px 8px var(--primary-tint);
}

.btn-ghost {
  color: var(--accent);
  border: 2px dashed var(--accent);
}

.btn-ghost:hover {
  background: var(--accent-tint);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ─── Navigation ─── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: padding 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease, border-bottom 0.3s ease;
  animation: slideDown 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

#site-header.scrolled {
  padding: 12px 0;
  background: rgba(11, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
  transition: height 0.3s ease, filter 0.3s ease;
}

#site-header.scrolled .nav-logo-img {
  height: 50px;
}

/* ─── Promo Banner (sticky bottom) ─── */
.promo-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: linear-gradient(90deg, var(--sparkle), var(--primary));
  color: var(--dark);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 12px 0;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.promo-banner.hidden {
  transform: translateY(100%);
  pointer-events: none;
}

.promo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.promo-text {
  line-height: 1.4;
}

.promo-cta {
  display: inline-block;
  padding: 6px 20px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--btn-radius);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}

.promo-cta:hover {
  background: var(--dark-2);
}

.promo-close {
  background: none;
  border: none;
  color: var(--dark);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 2px 6px;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.promo-close:hover {
  opacity: 1;
}

@media (max-width: 600px) {
  .promo-banner { font-size: 0.78rem; padding: 10px 0; }
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a:not(.btn) {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
  font-family: var(--font-body);
}

.desktop-nav a:not(.btn):hover {
  color: var(--primary);
}

.desktop-nav a.active:not(.btn) {
  color: var(--primary) !important;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 4px;
}

/* ─── Mobile Overlay ─── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(11, 22, 40, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 28px;
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--primary);
}

.mobile-nav a.active {
  color: var(--primary);
}

/* ─── Hero Section ─── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--dark);
}

/* Full-bleed hero photo background */
.hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
  animation: heroZoom 20s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 22, 40, 0.55) 0%,
    rgba(11, 22, 40, 0.40) 40%,
    rgba(11, 22, 40, 0.50) 70%,
    rgba(11, 22, 40, 1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 80px;
  width: 100%;
}

.hero-grid {
  display: block;
  text-align: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 4px 24px rgba(0, 0, 0, 0.4);
}

h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}

/* Alternating headline colors — flyer style */
.hero-line {
  display: block;
}

.hero-line-white { color: var(--white); }
.hero-line-orange { color: var(--primary); }
.hero-line-orange em { font-style: italic; }
.hero-line-cyan { color: var(--accent); }

.hero-body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 36px;
  max-width: 560px;
  font-family: var(--font-body);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8), 0 0 40px rgba(11, 22, 40, 0.9);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── Floating Crosshairs ─── */
.hero-floaters,
.section-floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-floaters { z-index: 1; }
.section-floaters { z-index: 0; }

.floater {
  position: absolute;
  will-change: transform;
  transition: none;
  opacity: 0;
}

.floater-crosshair { color: rgba(255, 107, 0, 0.18); }
.floater-cta-1 { color: rgba(255, 107, 0, 0.12); }
.floater-cta-2 { color: rgba(0, 196, 212, 0.10); }

/* ─── Effect 2: Stencil text treatment ─── */
.hero-stencil em {
  font-style: italic;
  letter-spacing: 0.06em;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.35);
  paint-order: stroke fill;
  text-shadow:
    0 0 30px rgba(255, 107, 0, 0.6),
    0 0 60px rgba(255, 107, 0, 0.3),
    4px 4px 0 rgba(0, 0, 0, 0.5);
}

/* ─── Effect 3: Confetti canvas ─── */
.hero-confetti {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* ─── Effect 4: Stat counter strip ─── */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 28px;
  margin-top: 4px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  text-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.hero-stat-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white);
  text-shadow: 0 0 12px rgba(255, 107, 0, 0.5);
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 480px) {
  .hero-stat { padding: 0 16px; }
  .hero-stat-divider { height: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .floater { display: none; }
  .hero-confetti { display: none; }
}

/* ─── Scroll cue ─── */
.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--text-muted);
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
  transition: opacity 0.4s ease;
}

.scroll-cue.hidden {
  opacity: 0 !important;
}

.scroll-cue span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
}

.scroll-cue svg {
  width: 26px;
  height: 26px;
  animation: bounce 1.6s ease infinite;
}

/* ─── Gradient Blend (for low-contrast transitions) ─── */
.section-blend {
  height: 80px;
  margin-top: -1px;
}

.section-blend--dark-to-dark2 {
  background: linear-gradient(to bottom, var(--dark), var(--dark-2));
}

.section-blend--dark2-to-dark {
  background: linear-gradient(to bottom, var(--dark-2), var(--dark));
}

/* ─── Torn Edge Transition ─── */
/* Pre-colored torn paper PNGs (Pillow-generated). Top = upper section color,
   bottom = transparent, so the lower section's bg shows through the rip.
   A ::before gradient softens the color boundary. */
.section-tear {
  position: relative;
  height: 100px;
  margin-top: -1px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* Gradient fade softens the transition above/below the tear */
.section-tear::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  z-index: 1;
  pointer-events: none;
}

.section-tear--dark2-to-light {
  background-color: var(--light);
  background-image: url('images/tear-dark2.png');
}
.section-tear--dark2-to-light::before {
  background: linear-gradient(to bottom, transparent, var(--light));
}

.section-tear--light-to-dark {
  background-color: var(--dark);
  background-image: url('images/tear-light.png');
}
.section-tear--light-to-dark::before {
  background: linear-gradient(to bottom, transparent, var(--dark));
}

/* ─── Arsenal Section (What's Included) ─── */
.arsenal-section {
  background: var(--dark-2);
}

.arsenal-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.kit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.kit-card {
  background: rgba(255, 255, 255, 0.04);
  border: 2px dashed rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
  position: relative;
}

.kit-card::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  pointer-events: none;
}

.kit-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  background: rgba(255, 107, 0, 0.06);
}

.kit-card-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.kit-card-stat {
  flex-shrink: 0;
  font-size: 32px;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1;
  min-width: 56px;
  text-align: center;
  transform: var(--heading-skew);
}

.kit-card-text {
  flex: 1;
}

.kit-card-title {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 4px;
}

.kit-card-body {
  font-size: 13px;
  color: rgba(226, 232, 240, 0.7);
  line-height: 1.5;
  font-family: var(--font-body);
}

.arsenal-photo {
  position: relative;
  align-self: center;
  perspective: 800px;
  overflow: hidden;
  border-radius: 4px;
}

.arsenal-photo img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  border: 3px solid rgba(255, 255, 255, 0.10);
  box-shadow: 6px 6px 0 rgba(255, 107, 0, 0.15);
  /* Tilt on hover — 3D rotate */
  transition: transform 0.4s ease;
  transform-style: preserve-3d;
  /* Scan-line reveal — image hidden until scan sweeps down */
  clip-path: inset(0 0 100% 0);
}

/* Tilt on hover */
.arsenal-photo:hover img {
  transform: rotateY(-4deg) rotateX(2deg) scale(1.02);
}

/* Scan-line reveal: clip-path animates with the scan line */
.arsenal-photo.visible img {
  animation: imgReveal 2s 0.3s ease-in-out forwards;
}

@keyframes imgReveal {
  0%   { clip-path: inset(0 0 100% 0); }
  100% { clip-path: inset(0 0 0% 0); }
}

/* Scan line effect */
.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 107, 0, 0.6),
    rgba(255, 107, 0, 0.15),
    transparent
  );
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4), 0 0 60px rgba(255, 107, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

/* Scan line sweeps in sync with the image reveal */
.arsenal-photo.visible .scan-line {
  animation: scanSweep 2s 0.3s ease-in-out forwards;
}

@keyframes scanSweep {
  0%   { top: 0; opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* Arsenal mobile handled in main responsive block at 900px */

.arsenal-price {
  text-align: center;
  margin-top: 48px;
}

.price-badge {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--btn-radius);
  background: var(--primary);
  color: var(--btn-text);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  transform: skewX(-5deg);
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, box-shadow 0.15s;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 2px 12px var(--primary-tint),
    0 4px 20px var(--primary-glow);
}

.price-badge:hover {
  transform: skewX(-5deg) translateY(-2px);
  background: var(--primary-hover);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 4px 16px var(--primary-tint),
    0 6px 28px var(--primary-glow);
}

/* ─── Gallery Section ─── */
.gallery-section {
  background: var(--dark-2);
  overflow: hidden;
}

/* Gallery track images handled by gallery-carousel widget */

/* ─── How It Works Section ─── */
.how-section {
  background: var(--dark);
}

.how-section-light {
  background: var(--light);
}

.how-section-light .section-title {
  color: var(--dark-2);
}

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

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
}

/* Dashed connector between step cards */
.step-connector {
  width: 60px;
  border-top: 2px dashed var(--primary);
  opacity: 0.4;
  margin-top: 56px;
}

.how-section-light .step-card {
  background: var(--white);
  border: 2px dashed rgba(0, 0, 0, 0.10);
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.how-section-light .step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.step-card {
  background: var(--dark-2);
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
  border: 2px dashed rgba(255, 255, 255, 0.10);
  transition: transform 0.3s, border-color 0.3s;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

/* Crosshair number badge */
.step-number {
  position: relative;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.step-crosshair {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--primary);
  opacity: 0.3;
}

.step-num-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--primary);
}

/* Lucide step icon */
.step-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 12px;
  color: var(--accent);
}

.step-title {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 12px;
}

.how-section-light .step-title {
  color: var(--dark-2);
}

.step-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.how-section-light .step-body {
  color: var(--text-body);
}

/* ─── FAQ Section ─── */
.faq-section {
  background: var(--dark);
}

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

.faq-item {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.faq-item:first-of-type {
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
}

.faq-question {
  cursor: pointer;
  padding: 22px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
  font-family: var(--font-body);
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }

.faq-chevron {
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 0 22px;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(226, 232, 240, 0.7);
  font-family: var(--font-body);
}

/* ─── Contact Section ─── */
.contact-section {
  background: var(--dark-2);
  background-image: url('images/space-bg.webp');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

.contact-subtext {
  color: rgba(226, 232, 240, 0.7);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text-light);
  font-family: var(--font-body);
}

.contact-info-item a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-item a:hover {
  color: var(--primary);
}

.contact-info-item svg {
  flex-shrink: 0;
}

.contact-price {
  font-weight: 700;
  color: var(--sparkle);
  font-family: var(--font-heading);
  font-size: 16px;
}

.contact-service-area {
  font-size: 14px;
  color: rgba(226, 232, 240, 0.6);
  font-family: var(--font-body);
  margin-top: 8px;
}

/* ─── Contact Form (dark variant) ─── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 48px 32px;
  border: 2px dashed rgba(0, 196, 212, 0.25);
  border-radius: 16px;
  text-align: center;
}

.contact-form-cta-text {
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.6;
  max-width: 360px;
}

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

.form-group label {
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-body);
  font-size: 15px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ─── Footer ─── */
.site-footer {
  background: var(--dark);
  padding: 48px 24px 40px;
  text-align: center;
}

.site-footer-textured {
  background-color: var(--dark);
  background-image:
    linear-gradient(rgba(11, 22, 40, 0.88), rgba(11, 22, 40, 0.88)),
    url('images/gallery/action-wide-field.webp');
  background-size: cover;
  background-position: center 70%;
}

.footer-brand-mark {
  display: block;
  margin: 0 auto 24px;
  width: 160px;
  height: 160px;
  opacity: 0.85;
}

.footer-brand-round {
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.08);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
  margin-bottom: 12px;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-link {
  font-size: 13px;
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-link:hover {
  color: var(--primary);
}

.footer-divider {
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
}

.footer-disclaimer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-body);
  max-width: 480px;
  margin: 0 auto;
}

.footer-privacy {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-privacy:hover {
  color: var(--primary);
}

.footer-built-by {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.55);
}

.footer-built-by a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-built-by a:hover {
  color: var(--primary-hover);
}

/* ─── Sticky Mobile CTA ─── */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 16px;
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-mobile-cta.visible {
  transform: translateY(0);
}

.sticky-mobile-cta .btn {
  font-size: 15px;
  padding: 14px 24px;
}

/* ─── Animations ─── */
@keyframes slideDown {
  from { transform: translateY(-80px); }
  to   { transform: translateY(0); }
}

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

@keyframes fadeIn {
  to { opacity: 0.8; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

.animate-hero {
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--hero-delay, 0s);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--stagger-delay, 0s);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .animate-hero,
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
  #site-header {
    animation: none;
  }
  .hero-bg-img {
    animation: none;
  }
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .mobile-menu-btn { display: block; }

  .arsenal-layout { grid-template-columns: 1fr; }
  .kit-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; gap: 24px; }
  .step-connector { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .sticky-mobile-cta { display: block; }

  /* Prevent skewed headings from clipping off-screen */
  h1, h2, h3 { transform: none; }
  .btn { transform: skewX(-3deg); }
  .btn:hover { transform: skewX(-3deg) translateY(-2px); }
  .price-badge { transform: skewX(-3deg); }
  .price-badge:hover { transform: skewX(-3deg) translateY(-2px); }
}

@media (max-width: 600px) {
  .hero-grid { gap: 0; }
  h1 { font-size: clamp(28px, 7.5vw, 44px); }

  /* Hero buttons stack vertically on small screens */
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* Hero stats — tighter on small phones */
  .hero-stat { padding: 0 12px; }
  .hero-stat-num { font-size: clamp(22px, 6vw, 36px); }
  .hero-stat-divider { height: 24px; }

  /* Kit cards stay single column */
  .kit-grid { grid-template-columns: 1fr; }
  .kit-card-stat { font-size: 26px; min-width: 48px; }

  /* Gallery smaller */
  .gallery-track img { height: 200px; }

  /* Eyebrow — smaller on mobile */
  .eyebrow { font-size: 11px; letter-spacing: 0.12em; }

  /* Section padding tighter */
  .section-pad { padding-top: 64px; padding-bottom: 64px; }

  /* Disable scan-line reveal on small screens — just show the image */
  .arsenal-photo img { clip-path: none; animation: none; }
  .scan-line { display: none; }

  /* Contact form full width */
  .contact-form { width: 100%; }
}

@media (max-width: 380px) {
  /* Very small phones */
  h1 { font-size: 26px; }
  .hero-stat { padding: 0 8px; }
  .hero-stat-num { font-size: 20px; }
  .hero-stat-label { font-size: 0.6rem; }
  .btn-lg { padding: 14px 20px; font-size: 14px; }
  .kit-card { padding: 12px 14px; gap: 12px; }
  .kit-card-icon { width: 22px; height: 22px; }
}

/* Promo banner must sit above sticky CTA */
.promo-banner { z-index: 95; }
.sticky-mobile-cta { z-index: 90; }

/* When promo banner is visible, bump sticky CTA up */
.promo-banner:not(.hidden) ~ .sticky-mobile-cta.visible {
  bottom: 48px;
}

/* ─── Cookie Consent Banner ─── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--dark-2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-light);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  line-height: 1.5;
  max-width: 600px;
}

.cookie-banner a {
  color: var(--text-light);
  text-decoration: underline;
}

.cookie-btn {
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--primary);
  color: var(--btn-text);
}

.cookie-btn-accept:hover {
  background: var(--primary-hover);
  color: var(--btn-text);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn-decline:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text-light);
}

/* ─── Light section background (inner pages) ─── */
.section-light {
  background: var(--light);
  color: var(--text-body);
}

/* ─── Inner Page Hero (privacy, 404) ─── */
.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--dark);
  text-align: center;
  padding: 140px 24px 80px;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.page-hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero-subtitle {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.65;
  font-family: var(--font-body);
  max-width: 560px;
  margin: 0 auto;
}

/* ─── Focus States ─── */
.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.cookie-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ─── Skip Link ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 999;
  padding: 12px 24px;
  background: var(--primary);
  color: var(--btn-text);
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ─── Print ─── */
@media print {
  #site-header, .mobile-overlay, .cookie-banner, .sticky-mobile-cta,
  .scroll-cue, .skip-link, .promo-banner { display: none !important; }
  body { background: #fff; color: #000; }
  .section-light { background: #fff; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #555; }
}
