/* ===========================
   KUCK — CAPTATION DRONE
   Page-specific styles only
   =========================== */

/* ========================================================================== 
   HERO DRONE MODERNE
   ========================================================================== */

/* Structure hero optimisée */
.hero-drone-modern {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Overlay gradient pour améliorer la lisibilité du texte */
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 15, 26, 0.5) 0%,
    rgba(10, 15, 26, 0.3) 30%,
    rgba(10, 15, 26, 0.1) 70%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none; /* Évite d'intercepter les clics */
}

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

.hero-drone-modern .container {
  position: relative;
  z-index: 3; /* Au-dessus de l'overlay (z-index: 1) */
  margin-left: 0;
  padding-left: 15px;
  max-width: none;
}

/* Amélioration du contraste pour le texte */
.hero-content-text {
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
  padding-right: 80px; /* Plus d'espace pour la vidéo */
  padding: 2rem;
}

.hero-title {
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.7);
  color: #ffffff !important;
}

.hero-subtitle {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 1px 4px rgba(0, 0, 0, 0.6);
  color: #f0f0f0 !important;
}

.eyebrow {
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 16px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff !important;
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

/* Ajustement des colonnes pour plus d'espace vidéo */
@media (min-width: 992px) {
  .hero-drone-modern .container {
    margin-left: 0;
    padding-left: 80px;
    max-width: 50%;
  }

  .hero-drone-modern .col-lg-6:first-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Assure que la vidéo est visible sur mobile aussi */
@media (max-width: 991.98px) {
  .hero-drone-modern {
    background: none !important;
  }

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

/* Desktop : la vidéo est toujours visible */
@media (min-width: 992px) {
  .video-background {
    display: block;
  }
}

/* Accessibilité : si l'utilisateur réduit les animations */
@media (prefers-reduced-motion: reduce) {
  .video-background {
    animation: none;
  }
}

/* ---------- BODY OVERRIDE ---------- */
body {
  background-color: #1b2333 !important;
}

/* ---------- SECTION CONTAINER ---------- */

/* ---------- HERO MODERNE ---------- */

.hero-drone-modern {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding-top: 50px;
  background: #0a0f1a;
}

.hero-drone-modern .container {
  position: relative;
  z-index: 2;
}

.hero-drone-modern .row {
  position: relative;
  z-index: 2;
}

.hero-drone-modern::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(0, 240, 255, 0.03) 0%,
    transparent 70%
  );
  z-index: 1;
}

.hero-content-text {
  position: relative;
  z-index: 2;
  padding-right: 2rem;
}

.hero-content-text .eyebrow {
  display: inline-block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.875rem;
  color: #9fc9ff;
  background: rgba(77, 177, 255, 0.08);
  border: 1px solid rgba(77, 177, 255, 0.25);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero-content-text .hero-title {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  color: #eaf2fb;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.hero-content-text .hero-subtitle {
  color: #c9d6e6;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-image-container {
  position: relative;
  z-index: 2;
}

.drone-showcase {
  position: relative;
  text-align: center;
}

.drone-hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.eyebrow {
  display: inline-block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.875rem;
  color: #9fc9ff;
  background: rgba(77, 177, 255, 0.08);
  border: 1px solid rgba(77, 177, 255, 0.25);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.lead {
  color: #cfd8e3;
}

/* ---------- VARIABLES GALERIE ---------- */
:root {
  --gal-gap: clamp(12px, 2vw, 24px);
  --gal-radius: 16px;
  --gal-brd: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---------- GRILLE ---------- */
.drone-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-auto-rows: 1fr;
  gap: var(--gal-gap);
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--gal-radius);
  border: var(--gal-brd);
  isolation: isolate;
  background: #2a3444;
  transition: transform 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.gallery-main {
  grid-row: 1 / span 2;
}

.gallery-image-container {
  position: relative;
  aspect-ratio: 16/10;
  height: 100%;
}

.gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.06);
}

.gallery-link {
  position: absolute;
  inset: 0;
  z-index: 3;
  cursor: pointer;
}

/* ---------- OVERLAY ---------- */
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(12px, 2.5vw, 20px);
  color: #fff;
  background: linear-gradient(
    180deg,
    rgba(6, 10, 16, 0) 45%,
    rgba(6, 10, 16, 0.75) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-content h4 {
  font-size: clamp(1rem, 1.2vw + 0.6rem, 1.25rem);
  margin: 0 0 0.25rem;
  font-weight: 700;
}

.gallery-content p {
  font-size: clamp(0.9rem, 0.9vw + 0.55rem, 1rem);
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 0.6rem;
}

/* ---------- BADGES ---------- */
.gallery-specs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
}

.gallery-specs span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  line-height: 1;
  padding: 0.5rem 0.6rem;
  border-radius: 999px;
  background: rgba(125, 200, 255, 0.12);
  border: 1px solid rgba(125, 200, 255, 0.25);
  backdrop-filter: blur(6px);
}

/* ---------- STATS ---------- */
.drone-tech-stats {
  margin-top: clamp(24px, 4vw, 48px);
  padding: clamp(16px, 3vw, 32px);
  background: rgba(42, 52, 68, 0.4);
  border-radius: 20px;
  border: 1px solid rgba(125, 200, 255, 0.1);
}

.stat-item {
  text-align: center;
  padding: 1.25rem 1rem;
  background: rgba(15, 21, 34, 0.8);
  border-radius: 15px;
  border: 1px solid rgba(125, 200, 255, 0.1);
  transition: transform 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  border-color: rgba(125, 200, 255, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(
    135deg,
    rgba(125, 200, 255, 0.1),
    rgba(125, 200, 255, 0.05)
  );
  border: 1px solid rgba(125, 200, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7ec3ff;
  font-size: 1.5rem;
}

.stat-number {
  font-family: "Orbitron", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: #eaf2fb;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.25);
}

.stat-label {
  color: #c9d6e6;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------- LIGHTBOX SIMPLE ---------- */
/* Lightbox simple — propre, sans scrollbars visibles */
#simple-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  overscroll-behavior: contain; /* évite les rebonds */
}

#simple-lightbox.is-open {
  display: flex !important;
}

.slb-backdrop {
  position: absolute;
  inset: 0;
}

.slb-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 96vw;
  max-height: 90vh;
  padding: 8px;
  box-sizing: border-box;

  /* plus de barres */
  overflow: hidden;
  scrollbar-width: none; /* Firefox */
}

.slb-content::-webkit-scrollbar {
  /* Chrome/Safari */
  width: 0;
  height: 0;
}

.slb-content img {
  display: block; /* supprime la ligne de base qui dépasse */
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  touch-action: pinch-zoom; /* zoom tactile ok, sans scrollbar */
}

.slb-close {
  position: absolute;
  top: 3px;
  right: 11px;
  z-index: 2;
  font-size: 28px;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.slb-close:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: scale(1.04);
}

.gallery-image {
  cursor: zoom-in;
}

.gallery-link {
  cursor: pointer;
}

/* ---------- CARDS PREMIUM (Avantages + Cas d’usage) ---------- */

/* =========================
   CARD PREMIUM (centrée)
   ========================= */
.card-premium {
  background: rgba(15, 21, 34, 0.8);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 16px;
  padding: 18px;
  min-height: 120px; /* confort visuel (optionnel) */
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

  /* centrage propre */
  display: flex;
  flex-direction: column;
  align-items: center; /* centre horizontal */
  justify-content: center; /* centre vertical */
  text-align: center;
  gap: 0.6rem;

  /* transitions */
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  border-color: rgba(125, 200, 255, 0.25);
}

/* Badge / icône en tête de carte */
.card-premium .icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin: 0 auto 0.6rem;

  background: linear-gradient(
    180deg,
    rgba(125, 200, 255, 0.16),
    rgba(125, 200, 255, 0.06)
  );
  border: 1px solid rgba(125, 200, 255, 0.25);
  color: #7ec3ff;
  font-size: 1.2rem;
}

/* Titre */
.card-premium h3 {
  color: #eaf2fb;
  font-weight: 600;
  font-size: 1.12rem;
  line-height: 1.2;
  margin: 0;
  display: block;
}

/* Texte */
.card-premium p {
  color: #c9d6e6;
  margin: 0;
}

/* ---------- CTA (reprend tes styles globaux avec boost lumineux) ---------- */

.section-accent {
  background: radial-gradient(
    80% 120% at 50% -20%,
    #112343 0%,
    #0c1322 60%,
    #0a0f1a 100%
  );
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.btn-primary-glow {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.9), rgba(0, 150, 255, 0.9));
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #ffffff !important;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  box-shadow:
    0 4px 15px rgba(0, 240, 255, 0.4),
    0 2px 8px rgba(0, 150, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.btn-primary-glow:hover {
  background: linear-gradient(135deg, rgba(0, 240, 255, 1), rgba(0, 150, 255, 1));
  border-color: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow:
    0 8px 25px rgba(0, 240, 255, 0.6),
    0 4px 15px rgba(0, 150, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* ---------- Typo micro-ajustements ---------- */

#benefits h3 {
  color: #eaf2fb;
  font-weight: 600;
}

#benefits p {
  color: #c9d6e6;
}

/* ---------- Section Titles ---------- */

/* Styles des titres h2 pour correspondre aux autres pages */
.display-5 {
  font-size: 2.5rem;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.05em;
  font-weight: 900;
  color: var(--light-color);
  text-align: center;
  margin-bottom: 1.5rem;
}

/* ===== SECTIONS HARMONISÉES ===== */

.section-standard,
.section-accent,
.section-dark {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.section-standard::after,
.section-accent::after,
.section-dark::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(27, 35, 51, 0.3);
  z-index: -1;
  pointer-events: none;
}

.section-standard::before,
.section-accent::before,
.section-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 240, 255, 0.5),
    transparent
  );
  z-index: 1;
}

.section-container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 240, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  background: rgba(42, 52, 68, 0.4);
  transition: all 0.3s ease;
}

.section-container:hover {
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 15px 40px rgba(0, 240, 255, 0.1);
}

/* ===== Spacing fix: rythme vertical des sections ===== */
:root {
  --section-pad-min: 56px;
  --section-pad-max: 108px;
}

/* Applique un padding vertical généreux à chaque section de la page */
.section-standard,
.section-dark,
.section-accent {
  padding-block: clamp(var(--section-pad-min), 8vw, var(--section-pad-max));
}

/* Séparation visuelle douce entre blocs (optionnel) */
.section-dark {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Ultra-wide screens: give a bit more room */
@media (min-width: 1600px) {
  .section-container {
    max-width: 1400px;
  }
}

/* En-têtes: supprime les marges qui s’écrasent avec le parent */
.section-header {
  margin: 0 0 1.25rem;
}
.section-header h2 {
  margin: 0 0 0.5rem;
}

/* Évite les collisions de marges internes des premiers/derniers éléments */
.section-standard > *:first-child,
.section-dark > *:first-child,
.section-accent > *:first-child {
  margin-top: 0;
}
.section-standard > *:last-child,
.section-dark > *:last-child,
.section-accent > *:last-child {
  margin-bottom: 0;
}

/* Petits écrans: resserrer un peu pour éviter le scroll à rallonge */
@media (max-width: 576px) {
  :root {
    --section-pad-min: 44px;
    --section-pad-max: 80px;
  }
}

/* ===== NOUVEAUX STYLES POUR CONTENU ENRICHI ===== */

/* Economic Benefits Styles */
#economic-benefits .row.g-5 {
  align-items: stretch;
}
#economic-benefits .col-lg-6 {
  display: flex;
}
.economic-content,
.economic-stats {
  display: flex;
  width: 100%;
  flex: 1 1 auto;
}
.economic-content {
  flex-direction: column;
}

/* Hide the left panel title inside economic content only */
#economic-benefits .economic-content > h2,
#economic-benefits .economic-content > h3,
#economic-benefits .economic-content > .section-header {
  display: none !important;
}

#economic-benefits .economic-content,
#economic-benefits .economic-stats {
  background: rgba(42, 52, 68, 0.4);
  border-radius: 15px;
  padding: 2.25rem;
  border: 1px solid rgba(0, 240, 255, 0.1);
  height: 100%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  flex-direction: column;
}

@media (max-width: 992px) {
  #economic-benefits .row.g-5 {
    align-items: flex-start;
  }
  #economic-benefits .col-lg-6 {
    display: block;
  }
}

.economic-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(42, 52, 68, 0.6);
  border-radius: 15px;
  border: 1px solid rgba(0, 240, 255, 0.1);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-card .stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(0, 240, 255, 0.1),
    rgba(0, 240, 255, 0.05)
  );
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7ec3ff;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.stat-card .stat-number {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  color: #eaf2fb;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
  /* Align digits consistently across cards */
  font-variant-numeric: tabular-nums;
  -moz-font-feature-settings: "tnum" 1;
  -webkit-font-feature-settings: "tnum" 1;
  font-feature-settings: "tnum" 1;
}

.stat-card .stat-label {
  color: #c9d6e6;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

/* Economic Benefits — layout & hierarchy improvements */
#economic-benefits .section-header {
  font-size: 3.2rem;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

#economic-benefits .section-header .lead {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.15rem;
}

.economic-content h3 {
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.economic-content h3 i {
  color: #7ec3ff;
}

/* KPI emphasis */
.stat-card {
  min-height: 120px;
}
.stat-card .stat-number {
  font-size: 2.25rem;
  letter-spacing: 0.02em;
}
.stat-card .stat-label {
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.25;
}

/* ---------- Accessibility & UX enhancements (minimal) ---------- */
/* Ensure anchored sections are not hidden under fixed navbar */
[id] {
  scroll-margin-top: 80px;
}

/* Clear focus indicator for keyboard users on interactive items */
.gallery-link:focus-visible,
.slb-close:focus-visible,
.btn-primary-glow:focus-visible,
.navbar-toggler:focus-visible {
  outline: 2px solid rgba(0, 240, 255, 0.8);
  outline-offset: 2px;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Drone Responsive ----------

@media (max-width: 992px) {
  .kpi-band .container {
    grid-template-columns: 1fr;
  }
  .flow-timeline {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .hero-content-text {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .drone-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    height: auto;
    gap: 1rem;
  }

  .gallery-main {
    grid-row: auto;
    height: 400px;
  }

  .gallery-secondary {
    grid-column: auto;
    height: 300px;
  }

  .drone-tech-stats {
    margin-top: 2rem;
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-drone-modern {
    padding: 100px 0 60px;
  }

  .gallery-overlay {
    padding: 1.5rem;
  }

  .gallery-content h4 {
    font-size: 1.1rem;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .hero-content-text .hero-title {
    font-size: 2.5rem;
  }

  .hero-content-text .hero-subtitle {
    font-size: 1.1rem;
  }

  .drone-gallery-grid {
    gap: 0.75rem;
  }

  .gallery-main,
  .gallery-secondary {
    height: 250px;
  }

  .gallery-overlay {
    padding: 1rem;
  }

  .drone-tech-stats {
    padding: 1rem;
  }

  .stat-item {
    padding: 1rem 0.5rem;
  }

  .flow-timeline {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 992px) {
  .economic-stats {
    margin-top: 0;
  }

  .stat-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: center;
    gap: 1.5rem;
  }
  .stat-card .stat-content {
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: center;
    gap: 1.25rem;
  }
  .stat-card .stat-number {
    font-size: 2.4rem;
    min-width: unset;
    width: 100%;
    text-align: right;
    line-height: 1;
  }
  .stat-card .stat-label {
    font-size: 0.85rem;
  }

  .stat-card .stat-number {
    font-variant-numeric: tabular-nums;
    -moz-font-feature-settings: "tnum" 1;
    -webkit-font-feature-settings: "tnum" 1;
    font-feature-settings: "tnum" 1;
  }
}

@media (min-width: 992px) {
  .economic-stats {
    margin-top: 0;
  }
}

@media (max-width: 992px) {
  #economic-benefits .section-header .display-5 {
    font-size: 2.6rem;
  }
  .economic-content h3 {
    font-size: 1.4rem;
  }
  #economic-benefits .section-header .lead {
    font-size: 1.05rem;
  }
  .stat-card {
    padding: 1.25rem;
  }
  #economic-benefits .economic-content,
  #economic-benefits .economic-stats {
    padding: 1.75rem;
  }
}
@media (max-width: 576px) {
  #economic-benefits .section-header .display-5 {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .economic-stats {
    margin-top: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .card-premium,
  .flow-timeline li {
    transition: none;
  }
}

@media (max-width: 992px) {
  .drone-gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-main {
    grid-row: auto;
  }
}
 */
