/* =========================================
   CREATIVE SKIES — style.css
   Dark/dramatic drone light show aesthetic
   ========================================= */

/* ── Custom Properties ──────────────────── */
:root {
  --bg-dark:      #04060f;
  --bg-deep:      #070c1a;
  --bg-card:      rgba(255,255,255,0.04);
  --bg-card-hover:rgba(255,255,255,0.08);
  --blue:         #00b4ff;
  --blue-glow:    rgba(0, 180, 255, 0.35);
  --purple:       #8b5cf6;
  --purple-glow:  rgba(139, 92, 246, 0.35);
  --white:        #ffffff;
  --text-muted:   rgba(255,255,255,0.65);
  --border:       rgba(255,255,255,0.08);
  --border-glow:  rgba(0, 180, 255, 0.25);
  --nav-h:        72px;
  --radius:       16px;
  --radius-sm:    10px;
  --transition:   0.3s ease;
  --font:         'Inter', system-ui, -apple-system, sans-serif;
}

/* ── Reset & Base ───────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utility ────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container-narrow { max-width: 860px; }

.section {
  padding: 5rem 0;
  position: relative;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  text-align: center;
}

.body-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 1.25rem;
}
.body-text-center { text-align: center; margin: 0 auto 1.25rem; }

/* ── Glow Text ──────────────────────────── */
.glow-text {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px var(--blue-glow));
}

/* ── Buttons ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  box-shadow: 0 0 20px var(--blue-glow), 0 4px 20px rgba(0,0,0,0.4);
}
.btn-primary:hover, .btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 32px var(--blue-glow), 0 8px 30px rgba(0,0,0,0.5);
  filter: brightness(1.1);
}
.btn-outline {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 20px var(--blue-glow);
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8rem; }

/* ── Glass Card ─────────────────────────── */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  box-shadow: 0 0 30px rgba(0,180,255,0.08);
  transform: translateY(-3px);
}

/* ── Fade-In Animation ──────────────────── */
.fade-in-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   HEADER / NAV
   ========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(4,6,15,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(4,6,15,0.97);
  box-shadow: 0 2px 30px rgba(0,0,0,0.6);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 1rem;
}

.nav-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(0,180,255,0.1);
}
.nav-link.active { color: var(--blue); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav ─────────────────────────── */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(4,6,15,0.98);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem 1.5rem;
    backdrop-filter: blur(20px);
  }
  .nav-links.open { display: flex; }
  .nav-link {
    width: 100%;
    padding: 0.75rem 0.5rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-link:last-child { border-bottom: none; }
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh; /* 16:9 */
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(4,6,15,0.55) 0%,
    rgba(4,6,15,0.7) 60%,
    rgba(4,6,15,0.95) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 1.25rem;
}

/* Left-aligned stacked hero layout (matching live site) */
.hero-content-left {
  text-align: left;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-headline {
  font-size: clamp(2.8rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 40px rgba(0,0,0,0.8);
}

.hero-headline-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
}

.hero-line-1 {
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  display: block;
}

.hero-line-2 {
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 900;
  color: var(--blue);
  line-height: 1.0;
  display: block;
  text-shadow: 0 0 40px rgba(0,180,255,0.5);
}

.hero-line-3 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  display: block;
  min-height: 1.2em;
}

.typed-cursor {
  color: var(--blue);
  animation: typed-blink 0.7s infinite;
}
@keyframes typed-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-cta-bottom {
  align-self: flex-start;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.85);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  text-shadow: 0 1px 10px rgba(0,0,0,0.7);
}

@media (max-width: 768px) {
  .hero-content-left {
    text-align: left;
  }
  .hero-cta-bottom {
    align-self: flex-start;
  }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-arrow {
  display: block;
  width: 28px;
  height: 28px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg);
  animation: bounce 1.8s ease infinite;
  opacity: 0.7;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(8px); }
}

/* =========================================
   STATS BAR
   ========================================= */
.stats-bar {
  background: linear-gradient(135deg, rgba(0,180,255,0.08), rgba(139,92,246,0.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 3rem;
  gap: 0.2rem;
}

.stat-main {
  display: flex;
  align-items: baseline;
  gap: 0.1em;
  line-height: 1;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-suffix {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

@media (max-width: 600px) {
  .stat-divider { display: none; }
  .stat-item { padding: 1rem 2rem; }
  .stats-grid { gap: 0.5rem; }
}

/* =========================================
   WHAT ARE DRONE SHOWS
   ========================================= */
.about-drone-shows {
  background: radial-gradient(ellipse at 50% 0%, rgba(0,180,255,0.07) 0%, transparent 65%);
  text-align: center;
}
.about-drone-shows .section-title { margin: 0 auto 1.5rem; }
.about-drone-shows .body-text { margin: 0 auto 1.25rem; text-align: center; }

/* =========================================
   GALLERY / CAROUSEL
   ========================================= */
.gallery-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-deep) 100%);
  overflow: hidden;
}
.gallery-section .section-title { text-align: center; }
.gallery-section .section-label { display: block; text-align: center; }

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 2.5rem;
  gap: 0;
}

.carousel-track-container {
  flex: 1;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 1.25rem;
  padding: 1rem 1.5rem;
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
  cursor: grab;
}
.carousel-track:active { cursor: grabbing; }

.carousel-card {
  flex: 0 0 280px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.carousel-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 0 30px var(--blue-glow);
  transform: scale(1.02);
}

.card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.carousel-card:hover .card-thumb img { transform: scale(1.06); }

.card-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity var(--transition);
}
.carousel-card:hover .card-play-btn { opacity: 1; }

.card-title {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0,180,255,0.15);
  border: 1px solid var(--blue);
  color: var(--blue);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  flex-shrink: 0;
  transition: all var(--transition);
  margin: 0 0.5rem;
}
.carousel-btn:hover {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 20px var(--blue-glow);
}
.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  padding: 0 1rem;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.carousel-dot.active {
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue-glow);
  width: 24px;
  border-radius: 4px;
}

/* =========================================
   GIFS SHOWCASE
   ========================================= */
.gifs-section {
  background: radial-gradient(ellipse at 50% 50%, rgba(139,92,246,0.07) 0%, transparent 70%);
  text-align: center;
}
.gifs-section .section-title,
.gifs-section .section-label { display: block; }

.gifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.gif-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.gif-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 0 30px var(--blue-glow);
  transform: translateY(-4px);
}
.gif-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 100%);
  text-align: center;
}
.testimonials-section .section-title,
.testimonials-section .section-label { display: block; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}

.testimonial-card {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-glow);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stars {
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
}

/* =========================================
   ABOUT US
   ========================================= */
.about-section {
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,180,255,0.06) 0%, transparent 65%);
}
.about-section .section-title { display: block; }

.featured-on {
  margin-top: 3.5rem;
}
.featured-on-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.media-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.media-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.7) grayscale(0.5);
  transition: filter var(--transition);
}
.media-logo:hover { filter: brightness(1) grayscale(0); }

/* =========================================
   MARKETS
   ========================================= */
.markets-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-deep) 100%);
}
.markets-section .section-title { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.markets-section .section-label { display: block; text-align: center; }

.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.market-card {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.market-card-link {
  text-decoration: none;
  color: inherit;
}
.market-card-link:hover { color: var(--white); }

.market-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}

.market-name {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}

.market-arrow {
  margin-top: 0.5rem;
  color: var(--blue);
  font-size: 1.2rem;
  transition: transform var(--transition);
}
.market-card-link:hover .market-arrow { transform: translateX(4px); }

/* =========================================
   WHITE LABEL
   ========================================= */
.whitelabel-section {
  background: linear-gradient(135deg, rgba(0,180,255,0.06) 0%, rgba(139,92,246,0.06) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.whitelabel-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.whitelabel-content { flex: 1; min-width: 280px; }
.whitelabel-content .section-title { margin-bottom: 1.25rem; }

.whitelabel-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-glow {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,180,255,0.15), rgba(139,92,246,0.15));
  border: 2px solid var(--blue);
  box-shadow: 0 0 40px var(--blue-glow), 0 0 80px var(--purple-glow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  animation: pulse-glow 3s ease infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 40px var(--blue-glow), 0 0 80px var(--purple-glow); }
  50%       { box-shadow: 0 0 60px var(--blue-glow), 0 0 120px var(--purple-glow); }
}
.badge-icon { font-size: 2rem; }
.badge-text { font-size: 0.8rem; font-weight: 700; color: var(--blue); line-height: 1.3; }

/* =========================================
   SAFETY
   ========================================= */
.safety-section {
  text-align: center;
  background: radial-gradient(ellipse at 50% 50%, rgba(139,92,246,0.06) 0%, transparent 70%);
}
.safety-section .section-title { display: block; }
.safety-section .section-label { display: block; }

.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
  text-align: left;
}

.safety-item {
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.safety-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1.4;
}
.safety-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.safety-item-highlight {
  border-color: var(--blue) !important;
  background: rgba(0,180,255,0.06) !important;
}
.safety-item-highlight p { color: var(--white); font-weight: 500; }

/* =========================================
   PROCESS
   ========================================= */
.process-section {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 100%);
  text-align: center;
}
.process-section .section-title { display: block; }
.process-section .section-label { display: block; }

.process-steps {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
}

.step-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
  min-width: 54px;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.process-connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, var(--blue), var(--purple));
  margin: 0 0 0 3rem;
  opacity: 0.4;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a:not(.btn) {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:not(.btn):hover { color: var(--blue); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* =========================================
   FLOATING CTA (Mobile)
   ========================================= */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  box-shadow: 0 4px 30px rgba(0,180,255,0.5), 0 2px 20px rgba(0,0,0,0.5);
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: all var(--transition);
  animation: float-in 0.5s ease forwards;
}
.floating-cta:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 8px 40px rgba(0,180,255,0.6), 0 4px 30px rgba(0,0,0,0.6);
}

@keyframes float-in {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@media (max-width: 768px) {
  .floating-cta { display: flex; }
  .section { padding: 3.5rem 0; }
  .carousel-btn { width: 36px; height: 36px; font-size: 1rem; margin: 0 0.25rem; }
  .carousel-card { flex: 0 0 240px; }
  .process-connector { margin-left: 2.5rem; }
  .whitelabel-inner { justify-content: center; text-align: center; }
  .whitelabel-badge { margin: 0 auto; }
}

/* =========================================
   RESPONSIVE TWEAKS
   ========================================= */
@media (max-width: 480px) {
  .stat-item { padding: 0.75rem 1.25rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gifs-grid { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: 1fr; }
  .markets-grid { grid-template-columns: 1fr; }
  .carousel-card { flex: 0 0 220px; }
}

/* =========================================
   SCROLLBAR
   ========================================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: rgba(0,180,255,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* =========================================
   FOCUS STYLES (Accessibility)
   ========================================= */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================
   NEW CINEMATIC HERO (v2)
   ========================================= */

/* ── New Nav ── */
.new-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 1000;
  transition: background 0.5s;
}
.new-nav.scrolled {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(18px);
}
.new-nav .logo { display:flex; align-items:center; text-decoration:none; }
.new-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.new-nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
}
.new-nav-links a:hover { color: #fff; }
.new-nav-cta a {
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 2px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.new-nav-cta a:hover {
  background: #00c8f0;
  border-color: #00c8f0;
  color: #000;
}
.new-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.new-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: #fff;
  transition: all 0.3s;
}
.new-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.new-hamburger.open span:nth-child(2) { opacity: 0; }
.new-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav */
.mob-menu {
  display: none;
  position: fixed;
  top: 76px;
  left: 0; right: 0;
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(20px);
  flex-direction: column;
  padding: 32px 48px 40px;
  gap: 24px;
  z-index: 999;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 16px;
  transition: color 0.2s;
}
.mob-menu a:hover { color: #00c8f0; }
.mob-menu .mob-cta-link {
  border-bottom: none;
  color: #00c8f0;
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ── Hero Section ── */
.hero-new {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 76px 60px 100px;
  overflow: hidden;
}

/* Video layer */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
#yt-player-hero {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
#yt-player-hero iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: none;
  opacity: 0;
  transition: opacity 1.5s ease;
}
#yt-player-hero iframe.loaded { opacity: 1; }

/* Cinematic overlay — clear center, dark edges */
.hero-cinematic-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.5) 0%,
    transparent 22%,
    transparent 65%,
    rgba(0,0,0,0.85) 100%
  );
}

/* Drone dots placeholder */
.video-placeholder {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(0,30,60,0.9) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(0,10,30,0.95) 0%, transparent 60%),
    #05080f;
  z-index: 1;
  transition: opacity 1.5s;
}
/* Video sits behind placeholder initially; placeholder fades out via JS */
#hero-video { z-index: 0; }
.drone-dots { position: absolute; inset: 0; overflow: hidden; }
.ddot {
  position: absolute;
  border-radius: 50%;
  animation: ddotPulse 3s ease-in-out infinite;
}
@keyframes ddotPulse {
  0%,100% { opacity:0.8; transform:scale(1); }
  50% { opacity:0.2; transform:scale(0.6); }
}

/* Hero content */
.hero-new-content {
  position: relative;
  z-index: 2;
  text-align: left;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  animation: fadeUp 0.8s 0.7s both;
}
.hero-new-headline {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: clamp(52px, 7vw, 100px);
  line-height: 0.92;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeUp 0.8s 0.85s both;
  max-width: 700px;
  font-weight: 900;
}
.hero-cyan { color: #00c8f0; }
.hero-new-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
  margin-top: 14px;
  animation: fadeUp 0.8s 1s both;
}
.hero-new-cta {
  margin-top: 32px;
  animation: fadeUp 0.8s 1.15s both;
}
.hero-new-cta a {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  text-decoration: none;
  padding: 14px 40px;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: 2px;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.hero-new-cta a:hover {
  background: #00c8f0;
  border-color: #00c8f0;
  color: #000;
}

/* Bottom stats bar */
.hero-stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 20px 48px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  animation: fadeUp 0.8s 1.4s both;
}
.hstat { display:flex; flex-direction:column; align-items:center; gap:2px; }
.hstat-n {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: 28px;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1;
  font-weight: 900;
}
.hstat-l {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.hstat-sep {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.15);
  align-self: center;
}

/* Scroll indicator */
.hero-scroll-ind {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 0.8s 1.6s both;
}
.hero-scroll-ind span {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.scroll-line-anim {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%,100% { opacity:1; }
  50% { opacity:0.2; }
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}

/* Load Bebas Neue */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* Responsive */
@media (max-width: 860px) {
  .new-nav { padding: 0 24px; }
  .new-nav-links, .new-nav-cta { display: none; }
  .new-hamburger { display: flex; }
  .hero-new { padding: 76px 28px 110px; }
  .hero-stats-bar { gap: 32px; padding: 20px 24px; }
  .hero-scroll-ind { display: none; }
}
@media (max-width: 480px) {
  .hero-new { padding: 76px 20px 120px; }
  .hstat-sep { display: none; }
  .hero-stats-bar { gap: 20px; }
  .hstat-n { font-size: 22px; }
}

/* Hide old header/hero styles on new design */
.site-header { display: none !important; }

/* =========================================
   CREATIVE SKIES INTRO SECTION
   ========================================= */
.cs-intro-section {
  padding: 5rem 0 4rem;
}
.cs-intro-inner {
  max-width: 800px;
}
.cs-intro-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.cs-intro-divider {
  width: 60px;
  height: 3px;
  background: var(--blue);
  margin: 1rem 0 1.5rem;
  border-radius: 2px;
}
.cs-intro-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 680px;
}

/* =========================================
   DRONE SHOWS — SPLIT LAYOUT
   ========================================= */
.drone-shows-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.drone-shows-text {
  text-align: left;
}
.drone-shows-text .section-title {
  text-align: left;
}
.drone-shows-text .body-text {
  text-align: left;
}

/* Video thumbnail */
.drone-shows-video {
  position: relative;
}
.video-thumb-link {
  display: block;
  text-decoration: none;
}
.video-thumb-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-thumb-wrap:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 60px rgba(0,180,255,0.25), 0 0 0 1px rgba(0,180,255,0.2);
}
.video-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  transition: transform 0.2s ease;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.6));
}
.video-thumb-wrap:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}
.video-play-btn svg { width: 100%; height: 100%; }

@media (max-width: 768px) {
  .drone-shows-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .cs-intro-inner { max-width: 100%; }
}

/* =========================================
   VIDEO MODAL
   ========================================= */
.vmodal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.vmodal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.vmodal-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  background: #0a0e1a;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.08);
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { opacity:0; transform:scale(0.95); }
  to   { opacity:1; transform:scale(1); }
}
.vmodal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 2;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.vmodal-close:hover { background: rgba(255,255,255,0.25); }
.vmodal-iframe-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.vmodal-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
/* Fix button reset for thumb */
button.video-thumb-link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: block;
  width: 100%;
}

/* =========================================
   USE CASES GRID
   ========================================= */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.use-case-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.use-case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,180,255,0.15);
  border-color: var(--border-glow);
}

.uc-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.uc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.use-case-card:hover .uc-img-wrap img {
  transform: scale(1.05);
}
.uc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,6,15,0.7) 0%, transparent 60%);
}

.uc-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.uc-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--blue);
}
.uc-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.uc-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.uc-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 0.5rem;
  transition: letter-spacing 0.2s;
}
.use-case-card:hover .uc-link {
  letter-spacing: 0.05em;
}

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

/* =========================================
   REVIEWS BAR
   ========================================= */
.reviews-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0 2rem;
  font-size: 0.95rem;
}
.reviews-bar-stars { color: #facc15; font-size: 1.1rem; }
.reviews-bar-score { font-weight: 700; color: #fff; }
.reviews-bar-count { color: var(--text-muted); }
.reviews-bar-link {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}
.reviews-bar-link:hover { text-decoration: underline; }

/* =========================================
   TESTIMONIALS CAROUSEL
   ========================================= */
.t-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.t-carousel-viewport {
  overflow: hidden;
  flex: 1;
}
.t-carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.t-carousel-track .testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 0;
}
.t-carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.t-carousel-btn:hover {
  background: rgba(0,180,255,0.15);
  border-color: var(--blue);
}
.t-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.t-dot.active {
  background: var(--blue);
  transform: scale(1.3);
}
/* Responsive: 1 card on mobile, 2 on tablet */
@media (max-width: 900px) {
  .t-carousel-track .testimonial-card { flex: 0 0 calc(50% - 0.75rem); }
}
@media (max-width: 580px) {
  .t-carousel-track .testimonial-card { flex: 0 0 100%; }
  .t-carousel-wrap { gap: 0.5rem; }
}
