/*
 * info-perdu.css — Feuille de styles principale Info Perdu
 * Refonte UX 2026 — CMULTIMEDIA
 * Auteur : miss-design / Neurablue
 * Date   : 2026-04-23
 *
 * Table des matières
 * ------------------
 * 01. Variables & reset
 * 02. Typographie de base
 * 03. Layout commun (container, section, section-header)
 * 04. Composants partagés (boutons, badges, listes check)
 * 05. Navigation (header fixe, nav desktop, menu mobile)
 * 06. Hero
 * 07. Prix en évidence (price-highlight)
 * 08. Section "Idéal pour" (use-cases)
 * 09. Section Fonctionnalités (features)
 * 10. Section "Comment ça marche" (summary-flow)
 * 11. Section Caractéristiques techniques (tech-specs)
 * 12. Mini-tunnel commande natif (order-tunnel)
 * 13. Footer
 * 14. Animation au scroll
 * 15. Responsive (768 px et 480 px)
 */


/* ============================================================
   01. Variables & reset
   ============================================================ */

:root {
  /* Palette principale */
  --clr-brand-primary:   #667eea;
  --clr-brand-secondary: #764ba2;
  --clr-brand-dark:      #1a1d3a;
  --clr-brand-mid:       #2d1b69;

  /* Neutres */
  --clr-bg-light:  #f8fafc;
  --clr-bg-white:  #ffffff;
  --clr-border:    #e2e8f0;
  --clr-text-dark: #1a202c;
  --clr-text-mid:  #4a5568;
  --clr-text-mute: #64748b;

  /* Feedback */
  --clr-success: #10b981;

  /* Gradients */
  --grad-brand:  linear-gradient(135deg, var(--clr-brand-primary) 0%, var(--clr-brand-secondary) 100%);
  --grad-hero:   linear-gradient(135deg, var(--clr-brand-dark) 0%, var(--clr-brand-mid) 50%, var(--clr-brand-secondary) 100%);

  /* Typographie */
  --font-base: 'Inter Variable', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Espacements */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Rayons */
  --radius-sm:  8px;
  --radius-md:  15px;
  --radius-lg:  20px;
  --radius-pill: 50px;

  /* Ombres */
  --shadow-sm: 0 5px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
  --shadow-brand: 0 8px 30px rgba(102, 126, 234, 0.30);
  --shadow-brand-lg: 0 15px 40px rgba(102, 126, 234, 0.40);

  /* Transitions */
  --transition: 0.3s ease;

  /* Nav height */
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--clr-text-dark);
  overflow-x: hidden;
  font-weight: 400;
  background: var(--clr-bg-white);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}


/* ============================================================
   02. Typographie de base
   ============================================================ */

h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--clr-text-dark);
}

p {
  color: var(--clr-text-mid);
  line-height: 1.7;
}


/* ============================================================
   03. Layout commun
   ============================================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-2xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header .section-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-sm);
  color: var(--clr-brand-primary);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--clr-text-dark);
  margin-bottom: 0.75rem;
}

.section-title--light {
  color: #ffffff;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--clr-text-mute);
  max-width: 580px;
  margin: 0 auto;
  font-weight: 400;
}

.section-subtitle--light {
  color: rgba(255,255,255,0.75);
}


/* ============================================================
   04. Composants partagés
   ============================================================ */

/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--grad-brand);
  color: #ffffff;
  box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-brand-lg);
}

.btn-outline {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-3px);
}

.btn-light {
  background: var(--clr-bg-white);
  color: var(--clr-brand-primary);
  border-color: var(--clr-border);
}

.btn-light:hover {
  border-color: var(--clr-brand-primary);
  box-shadow: var(--shadow-brand);
  transform: translateY(-2px);
}

/* Pill badge */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
}

.badge-pill--brand {
  background: rgba(102,126,234,0.15);
  color: var(--clr-brand-primary);
  border: 1px solid rgba(102,126,234,0.25);
}

/* Check list */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--clr-text-mid);
  font-size: 0.95rem;
  line-height: 1.5;
}

.check-list li .check-icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--clr-brand-primary);
  width: 18px;
  height: 18px;
}

/* Divider */
.divider {
  height: 1px;
  background: var(--clr-border);
  margin: var(--space-xl) 0;
}


/* ============================================================
   05. Navigation
   ============================================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26,29,58,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  transition: background var(--transition);
}

.header--scrolled {
  background: rgba(26,29,58,0.99);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--nav-height);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--grad-brand);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 20px;
  height: 20px;
  color: #ffffff;
}

/* Nav desktop */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-item a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-brand-primary);
  transition: width var(--transition);
}

.nav-item a:hover,
.nav-item a.active {
  color: var(--clr-brand-primary);
}

.nav-item a:hover::after,
.nav-item a.active::after {
  width: 100%;
}

/* Nav CTA */
.nav-cta .btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
}

/* Burger mobile */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Overlay mobile */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--grad-hero);
  z-index: 999;
}

.mobile-menu-overlay.active {
  display: flex;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  gap: var(--space-md);
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: var(--space-md);
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 280px;
}

.mobile-menu-nav .nav-item a {
  display: block;
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-md);
  transition: background var(--transition);
}

.mobile-menu-nav .nav-item a:hover,
.mobile-menu-nav .nav-item a.active {
  background: rgba(102,126,234,0.2);
  color: var(--clr-brand-primary);
}

.mobile-cta {
  width: 100%;
  max-width: 280px;
  margin-top: var(--space-sm);
}

.mobile-cta .btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 0.9rem 1.5rem;
}

/* Offset contenu sous nav fixe */
.main-content {
  margin-top: var(--nav-height);
}


/* ============================================================
   06. Hero
   ============================================================ */

.hero {
  background: var(--grad-hero);
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-2xl) 0;
}

.hero::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(102,126,234,0.08) 0%, transparent 65%);
  top: -50%;
  left: -50%;
  animation: hero-glow 22s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hero-glow {
  0%,100% { transform: rotate(0deg) translate(-20px,-10px); }
  33%      { transform: rotate(120deg) translate(-20px,-10px); }
  66%      { transform: rotate(240deg) translate(-20px,-10px); }
}

.hero-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-tagline {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-brand-primary);
  margin-bottom: var(--space-sm);
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: var(--space-md);
}

.hero-title .highlight {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: var(--space-lg);
  font-weight: 400;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero-pills {
  display: flex;
  gap: var(--space-xs);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

/* Prix hero — objectif n°3 */
.hero-price {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  margin-bottom: var(--space-lg);
  backdrop-filter: blur(12px);
}

.hero-price__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.25rem;
}

.hero-price__amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.hero-price__details {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.25rem;
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================================
   07. Bloc prix visible en section dédiée (objectif n°3)
   ============================================================ */

.price-highlight {
  background: var(--clr-bg-white);
}

.price-highlight-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.price-card-main {
  background: var(--clr-bg-light);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.price-card-main:hover {
  border-color: var(--clr-brand-primary);
  box-shadow: 0 20px 50px rgba(102,126,234,0.12);
}

.price-card-main .price-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-brand);
  color: #ffffff;
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-card-main .price-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: var(--space-sm);
}

.price-card-main .price-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--clr-brand-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-card-main .price-unit {
  font-size: 0.9rem;
  color: var(--clr-text-mute);
  margin-bottom: var(--space-md);
}

.price-card-main .check-list {
  text-align: left;
  margin-bottom: var(--space-md);
}

.price-options {
  text-align: left;
  border-top: 1px solid var(--clr-border, rgba(15, 23, 42, 0.08));
  padding-top: var(--space-md);
  margin: var(--space-md) 0 var(--space-md);
}

.price-options__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-text, #0f172a);
  margin: 0 0 0.75rem;
  letter-spacing: 0.01em;
}

.price-options__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}

.price-options__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--clr-text-mute, #475569);
  padding: 0.35rem 0;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.06);
}

.price-options__list li:last-child {
  border-bottom: 0;
}

.price-options__plus {
  font-weight: 700;
  color: var(--clr-brand-primary, #2563eb);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.price-card-main .btn {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 1rem;
}

.price-subtext {
  margin-top: var(--space-sm);
  font-size: 0.85rem;
  color: var(--clr-text-mute);
}


/* ============================================================
   08. Section "Idéal pour" (use-cases)
   ============================================================ */

.ideal-for {
  background: var(--clr-bg-light);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

.use-case {
  background: var(--clr-bg-white);
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.use-case:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.use-case-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  background: var(--grad-brand);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.use-case-icon svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
}

.use-case h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.use-case p {
  font-size: 0.9rem;
  color: var(--clr-text-mute);
  line-height: 1.6;
}


/* ============================================================
   09. Section Fonctionnalités
   ============================================================ */

.features {
  background: var(--clr-bg-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: var(--space-md);
}

.feature-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius-lg);
  border: 2px solid var(--clr-border);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  border-color: var(--clr-brand-primary);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(102,126,234,0.10);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  background: var(--grad-brand);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--clr-text-mute);
  line-height: 1.65;
}


/* ============================================================
   10. Section "Comment ça marche" (summary-flow)
   ============================================================ */

.summary {
  background: var(--grad-hero);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.summary::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.summary-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
  position: relative;
  z-index: 2;
}

.summary-card {
  background: rgba(255,255,255,0.05);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}

.summary-card:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-4px);
}

.summary-number {
  width: 52px;
  height: 52px;
  background: var(--grad-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 auto var(--space-md);
  box-shadow: var(--shadow-brand);
}

.summary-step-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto var(--space-sm);
  color: var(--clr-brand-primary);
}

.summary-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.summary-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}


/* ============================================================
   11. Section Caractéristiques techniques
   ============================================================ */

.tech-specs {
  background: var(--clr-bg-light);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

.spec-card {
  background: var(--clr-bg-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--clr-brand-primary);
  transition: transform var(--transition), box-shadow var(--transition);
}

.spec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.spec-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 0.9rem;
}

.spec-title svg {
  width: 20px;
  height: 20px;
  color: var(--clr-brand-primary);
  flex-shrink: 0;
}

.spec-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--clr-text-mid);
  line-height: 1.5;
}

.spec-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-brand-primary);
  margin-top: 0.45em;
}


/* ============================================================
   12. Mini-tunnel commande natif (objectif n°4)
   ============================================================ */

.order-tunnel {
  background: var(--clr-bg-white);
}

.tunnel-cta-external {
  max-width: 760px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--clr-brand-primary, #2563eb), var(--clr-brand-secondary, #4f46e5));
  border-radius: 18px;
  padding: clamp(1.25rem, 3vw, 2rem);
  color: #fff;
  box-shadow: 0 18px 40px -16px rgba(37, 99, 235, 0.5);
}

.tunnel-cta-external__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.tunnel-cta-external__text {
  flex: 1 1 280px;
}

.tunnel-cta-external__title {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.tunnel-cta-external__sub {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.92;
}

.tunnel-cta-external__sub strong {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tunnel-cta-external .btn.btn-primary {
  background: #fff;
  color: var(--clr-brand-primary, #2563eb);
  border: 0;
  white-space: nowrap;
}

.tunnel-cta-external .btn.btn-primary:hover,
.tunnel-cta-external .btn.btn-primary:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
}

.tunnel-preview-label {
  max-width: 640px;
  margin: 0 auto 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--clr-text-mute, #64748b);
  font-style: italic;
  letter-spacing: 0.01em;
}

.tunnel-wrapper {
  max-width: 640px;
  margin: 0 auto;
}

.tunnel-wrapper--preview {
  opacity: 0.78;
  position: relative;
}

.tunnel-wrapper--preview::before {
  content: "Aperçu";
  position: absolute;
  top: -0.75rem;
  right: 1rem;
  background: var(--clr-text, #0f172a);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  z-index: 2;
}

/* Steps indicator */
.tunnel-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: var(--space-xl);
}

.tunnel-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  max-width: 140px;
  position: relative;
}

.tunnel-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: var(--clr-border);
  z-index: 0;
}

.tunnel-step.active:not(:last-child)::after,
.tunnel-step.done:not(:last-child)::after {
  background: var(--clr-brand-primary);
}

.tunnel-step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--clr-border);
  background: var(--clr-bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-text-mute);
  position: relative;
  z-index: 1;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.tunnel-step.active .tunnel-step__num {
  border-color: var(--clr-brand-primary);
  background: var(--clr-brand-primary);
  color: #ffffff;
}

.tunnel-step.done .tunnel-step__num {
  border-color: var(--clr-success);
  background: var(--clr-success);
  color: #ffffff;
}

.tunnel-step__label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--clr-text-mute);
  text-align: center;
}

.tunnel-step.active .tunnel-step__label {
  color: var(--clr-brand-primary);
  font-weight: 600;
}

/* Panels */
.tunnel-panel {
  display: none;
  animation: panel-in 0.3s ease;
}

.tunnel-panel.active {
  display: block;
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Formulaire */
.tunnel-form {
  background: var(--clr-bg-light);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.tunnel-form__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: var(--space-sm);
}

.tunnel-form__subtitle {
  font-size: 0.9rem;
  color: var(--clr-text-mute);
  margin-bottom: var(--space-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.form-grid .form-group--full {
  grid-column: 1 / -1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text-dark);
}

.form-group label .optional {
  font-weight: 400;
  color: var(--clr-text-mute);
  font-size: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-base);
  font-size: 0.95rem;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  background: var(--clr-bg-white);
  color: var(--clr-text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-brand-primary);
  box-shadow: 0 0 0 3px rgba(102,126,234,0.15);
}

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

/* Upload photo */
.photo-upload {
  border: 2px dashed var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  background: var(--clr-bg-white);
}

.photo-upload:hover {
  border-color: var(--clr-brand-primary);
  background: rgba(102,126,234,0.03);
}

.photo-upload input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.photo-upload__icon {
  width: 32px;
  height: 32px;
  color: var(--clr-text-mute);
  margin: 0 auto 0.5rem;
}

.photo-upload__text {
  font-size: 0.85rem;
  color: var(--clr-text-mute);
}

.photo-upload__text strong {
  color: var(--clr-brand-primary);
}

/* Récapitulatif commande */
.tunnel-recap {
  background: var(--clr-bg-light);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.recap-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--clr-border);
}

.recap-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--clr-text-mid);
}

.recap-row + .recap-row {
  border-top: 1px solid var(--clr-border);
}

.recap-row--total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  padding-top: var(--space-sm);
  margin-top: var(--space-xs);
  border-top: 2px solid var(--clr-border) !important;
}

.recap-row--total .recap-price {
  color: var(--clr-brand-primary);
  font-size: 1.5rem;
}

/* Paiement placeholder */
.payment-placeholder {
  background: var(--clr-bg-light);
  border: 1.5px dashed var(--clr-brand-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
}

.payment-placeholder__icon {
  width: 40px;
  height: 40px;
  color: var(--clr-brand-primary);
  margin: 0 auto var(--space-sm);
}

.payment-placeholder__text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-text-dark);
  margin-bottom: 0.35rem;
}

.payment-placeholder__sub {
  font-size: 0.85rem;
  color: var(--clr-text-mute);
}

.payment-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  opacity: 0.5;
  filter: grayscale(1);
}

/* Navigation entre panels */
.tunnel-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-md);
  gap: var(--space-sm);
}

.tunnel-nav .btn {
  min-width: 140px;
  justify-content: center;
}

/* Garanties sous le tunnel */
.tunnel-guarantees {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--clr-text-mute);
}

.guarantee-item svg {
  width: 16px;
  height: 16px;
  color: var(--clr-success);
  flex-shrink: 0;
}


/* ============================================================
   13. Footer
   ============================================================ */

.footer {
  background: var(--clr-brand-dark);
  color: #ffffff;
  padding: var(--space-2xl) 0 var(--space-md);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.footer-brand .logo {
  margin-bottom: var(--space-md);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact-item:hover {
  color: var(--clr-brand-primary);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-section h3 {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--clr-brand-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.50);
}

.footer-bottom a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--clr-brand-primary);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.50);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--clr-brand-primary);
}


/* ============================================================
   13b. Assets réels — photos produit, vidéo, section personnalisation
   Ajouté le 2026-04-23 lors de l'intégration des vraies photos
   ============================================================ */

/* --- Hero split layout (texte + vidéo) --- */

.hero-container--split {
  max-width: 1160px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  text-align: left;
}

.hero-text {
  /* Hérite le style du hero-container d'origine */
}

.hero-text .hero-pills {
  justify-content: flex-start;
}

.hero-text .hero-price {
  align-items: flex-start;
}

.hero-text .hero-buttons {
  justify-content: flex-start;
}

/* Wrapper vidéo */
.hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-video-wrapper {
  width: 100%;
  max-width: 460px;
}

.hero-video {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  display: block;
  object-fit: cover;
  background: #0f0f1a;
}

.hero-video-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.50);
  font-style: italic;
}

.hero-video-fallback {
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
}

.hero-video-fallback img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.hero-video-fallback p {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* --- Photos produit côte à côte (section prix) --- */

.product-photos {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.product-photo-item {
  flex: 1;
  max-width: 260px;
  text-align: center;
}

.product-photo-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 3px solid var(--clr-border);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: block;
}

.product-photo-item img:hover {
  border-color: var(--clr-brand-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-brand-lg);
}

.product-photo-item figcaption {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text-mute);
  letter-spacing: 0.03em;
}

/* --- Section personnalisation (custom-examples) --- */

.custom-examples {
  background: var(--clr-bg-white);
}

.custom-example-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.custom-example-figure {
  text-align: center;
}

.custom-example-figure img {
  width: 100%;
  max-width: 420px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--clr-border);
  display: block;
  margin: 0 auto;
}

.custom-example-figure figcaption {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--clr-text-mute);
  font-style: italic;
}

.custom-example-text h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--clr-text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.custom-example-text p {
  margin-bottom: var(--space-md);
  font-size: 1rem;
  color: var(--clr-text-mid);
  line-height: 1.7;
}

/* --- Variant picker (tunnel panel 1) --- */

.variant-picker {
  margin-bottom: var(--space-md);
}

.variant-picker__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text-dark);
  margin-bottom: 0.6rem;
}

.variant-picker__options {
  display: flex;
  gap: var(--space-sm);
}

.variant-option {
  flex: 1;
  cursor: pointer;
}

.variant-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.variant-option__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  background: var(--clr-bg-white);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
  gap: 0.5rem;
}

.variant-option__card:hover {
  border-color: var(--clr-brand-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102,126,234,0.12);
}

.variant-option input[type="radio"]:checked + .variant-option__card {
  border-color: var(--clr-brand-primary);
  box-shadow: 0 0 0 3px rgba(102,126,234,0.18);
  background: rgba(102,126,234,0.04);
}

.variant-option input[type="radio"]:focus-visible + .variant-option__card {
  outline: 2px solid var(--clr-brand-primary);
  outline-offset: 2px;
}

.variant-option__card img {
  width: 100%;
  max-width: 160px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
}

.variant-option__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-text-dark);
}

.variant-option__desc {
  font-size: 0.78rem;
  color: var(--clr-text-mute);
}


/* ============================================================
   14. Animation au scroll
   ============================================================ */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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


/* ============================================================
   15. Responsive
   ============================================================ */

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

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .nav-menu,
  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-container {
    padding: 0 var(--space-sm);
  }

  /* Hero */
  .hero {
    padding: var(--space-xl) 0;
    min-height: unset;
  }

  /* Hero split : empilement vertical sur mobile */
  .hero-container--split {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-lg);
  }

  .hero-text .hero-pills {
    justify-content: center;
  }

  .hero-text .hero-price {
    align-items: center;
  }

  .hero-text .hero-buttons {
    justify-content: center;
  }

  .hero-media {
    order: -1; /* Vidéo en premier sur mobile */
  }

  .hero-video-wrapper {
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-price__amount {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* Photos produit : empilement 1 colonne */
  .product-photos {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }

  .product-photo-item {
    max-width: 240px;
  }

  /* Section personnalisation */
  .custom-example-block {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .custom-example-figure img {
    max-width: 300px;
  }

  .custom-example-text h3 {
    font-size: 1.3rem;
  }

  /* Variant picker tunnel */
  .variant-picker__options {
    flex-direction: column;
  }

  .variant-option__card img {
    max-width: 120px;
  }

  /* Grilles */
  .use-cases-grid,
  .features-grid,
  .summary-flow,
  .specs-grid {
    grid-template-columns: 1fr;
  }

  /* Tunnel */
  .form-grid {
    grid-template-columns: 1fr;
  }

  .tunnel-step__label {
    font-size: 0.7rem;
  }

  .tunnel-guarantees {
    flex-direction: column;
    align-items: center;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
    gap: var(--space-sm);
  }
}

@media (max-width: 480px) {
  .section {
    padding: var(--space-xl) 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .tunnel-nav {
    flex-direction: column;
  }

  .tunnel-nav .btn {
    width: 100%;
  }
}


/* ============================================================
   === DRONES (12/05/2026) ===
   Page drones.php + section drone-tease sur index.php
   ============================================================ */

/* --- Hero drone : variante de fond (dégradé bleu-ciel) --- */
.hero-drone {
  background: linear-gradient(135deg, #0f2c5c 0%, #1a4a8a 50%, #2563eb 100%);
}

/* --- Section drone-tease (home) --- */
.drone-tease {
  background: var(--clr-bg-light);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.drone-tease-inner {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  background: var(--clr-bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
}

.drone-tease-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--grad-brand);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.drone-tease-icon svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
}

.drone-tease-text {
  flex: 1;
}

.drone-tease-text .section-title {
  margin-bottom: 0.5rem;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

.drone-tease-text p {
  font-size: 0.95rem;
  color: var(--clr-text-mute);
  margin: 0;
}

/* --- Bloc produit drone (drones.php) --- */
.drone-product-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: center;
}

.drone-product-figure img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 400px;
}

.drone-product-figure figcaption {
  font-size: 0.85rem;
  color: var(--clr-text-mute);
  text-align: center;
  margin-top: 0.6rem;
  font-style: italic;
}

.drone-product-text p {
  margin-bottom: var(--space-md);
}

/* --- Section réglementation DGAC --- */
.reglementation-dgac {
  background: var(--clr-bg-light);
}

.drone-reglementation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.drone-reglementation-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--clr-text-mute);
  margin-top: var(--space-md);
}

.drone-reglementation-note a {
  color: var(--clr-brand-primary);
  text-decoration: underline;
  font-weight: 600;
}

/* --- Comment ça marche drone : fond dégradé hero (réutilise .summary) --- */
.comment-ca-marche-drone {
  background: var(--grad-hero);
  color: #ffffff;
}

/* --- FAQ drone --- */
.faq-drone {
  background: var(--clr-bg-white);
}

.drone-faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.drone-faq-item {
  background: var(--clr-bg-light);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  border-left: 4px solid var(--clr-brand-primary);
}

.drone-faq-question {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.drone-faq-answer {
  font-size: 0.9rem;
  color: var(--clr-text-mute);
  line-height: 1.65;
  margin: 0;
}

/* --- CTA final drone --- */
.cta-drone {
  background: var(--grad-brand);
  color: #ffffff;
  text-align: center;
}

.drone-cta-wrapper {
  text-align: center;
}

.drone-btn-mt {
  margin-top: 1.25rem;
  display: inline-flex;
}

.drone-cta-sub {
  margin-top: var(--space-sm);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.drone-cta-sub a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 600;
}

/* --- Responsive drones --- */
@media (max-width: 768px) {
  .drone-tease-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-md);
    gap: var(--space-md);
    text-align: left;
  }

  .drone-tease-inner .btn {
    align-self: flex-start;
  }

  .drone-product-block {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .drone-product-figure img {
    max-width: 100%;
  }

  .drone-reglementation-grid {
    grid-template-columns: 1fr;
  }

  .drone-faq-item {
    padding: var(--space-md);
  }
}

@media (max-width: 480px) {
  .drone-tease-icon {
    display: none;
  }
}
