
  /* ===== VARIABLES ===== */
  :root {
    /* Palette alignée sur le logo (jaune / noir / rouge) */
    --yellow: #FFD700;
    --yellow-dark: #E6B800;
    --yellow-light: #FFF9CC;
    --red: #E50914;
    --red-dark: #B8070F;
    --black: #0a0a0a;
    --black-2: #1C1C1C;
    --black-3: #2A2A2A;
    --white: #FFFFFF;
    --light-gray: #F8F8F5;
    --mid-gray: #E8E8E0;
    --text-body: #333;
    --text-light: #666;
    --radius: 10px;
    --shadow: 0 4px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.22);
    --glass: rgba(255, 255, 255, 0.78);
    --glass-border: rgba(10, 10, 10, 0.06);
  }

  /* ===== RESET ===== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Barlow', sans-serif;
    color: var(--text-body);
    background: transparent;
    overflow-x: hidden;
    min-height: 100vh;
  }
  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }
  ul { list-style: none; }

  /* ===== UTILITIES ===== */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--black);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: .5px;
  }
  .section-title span { color: var(--yellow); }
  .section-title em { font-style: normal; color: var(--red); }
  .btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    overflow: hidden;
    background: linear-gradient(165deg, #fff4a3 0%, var(--yellow) 38%, var(--yellow-dark) 100%);
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    padding: 15px 32px;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.2s ease;
    cursor: pointer;
    border: 2px solid rgba(10, 10, 10, 0.12);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.65) inset,
      0 4px 0 rgba(180, 140, 0, 0.35),
      0 12px 36px rgba(255, 215, 0, 0.38);
  }
  .btn-primary::after {
    content: "🚁";
    font-size: 0.95rem;
    display: inline-block;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.55) 50%, transparent 65%);
    transform: translateX(-120%);
    transition: transform 0.55s ease;
    pointer-events: none;
  }
  .btn-primary:hover {
    transform: translateY(-3px);
    filter: brightness(1.03);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.65) inset,
      0 5px 0 rgba(180, 140, 0, 0.4),
      0 18px 44px rgba(255, 215, 0, 0.48);
  }
  .btn-primary:hover::before {
    transform: translateX(120%);
  }
  .btn-primary:hover::after {
    transform: translate(4px, -6px) rotate(-12deg);
  }
  .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 0 rgba(180, 140, 0, 0.45), 0 6px 20px rgba(255, 215, 0, 0.3);
  }
  .btn-red {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    background: linear-gradient(165deg, #ff5a5a 0%, var(--red) 45%, var(--red-dark) 100%);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    padding: 15px 32px;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.2s ease;
    cursor: pointer;
    border: 2px solid rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.2) inset,
      0 4px 0 rgba(100, 0, 0, 0.45),
      0 14px 36px rgba(229, 9, 20, 0.35);
  }
  .btn-red:hover {
    transform: translateY(-3px);
    filter: brightness(1.06);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.22) inset,
      0 5px 0 rgba(100, 0, 0, 0.5),
      0 20px 44px rgba(229, 9, 20, 0.42);
  }
  .btn-red:active {
    transform: translateY(0);
  }
  .btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 999px;
    border: 2px solid rgba(255, 215, 0, 0.45);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 24px rgba(255, 215, 0, 0.08);
  }
  .btn-outline-white:hover {
    background: rgba(255, 215, 0, 0.12);
    border-color: var(--yellow);
    transform: translateY(-2px);
    box-shadow: 0 0 32px rgba(255, 215, 0, 0.2);
  }
  .tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--yellow-light) 0%, var(--yellow) 100%);
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 14px;
    border: 1px solid rgba(10, 10, 10, 0.08);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
  }
  .tag-red {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 14px;
    border-radius: 2px;
    margin-bottom: 14px;
  }
  .section-header { text-align: center; margin-bottom: 50px; }
  .section-header .section-title { margin-bottom: 14px; }
  .section-header p { max-width: 640px; margin: 0 auto; font-size: 1rem; color: var(--text-body); line-height: 1.7; }
  .stars { color: var(--yellow); font-size: 1.1rem; }

  /* TOP BAR removed */

  /* ===== HEADER ===== */
  #header {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--yellow) 0%, var(--yellow-dark) 45%, var(--red) 100%) 1;
  }
  #header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; padding-bottom: 10px; gap: 16px; flex-wrap: nowrap; }
  .logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
  .logo-img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
  .logo-text { font-family: 'Barlow Condensed', sans-serif; }
  .logo-text .name { font-weight: 900; font-size: 1.2rem; color: var(--black); line-height: 1; text-transform: uppercase; letter-spacing: 1px; }
  .logo-text .name span { color: var(--red); }
  .logo-text .sub { font-weight: 600; font-size: .62rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1.5px; }
  nav { display: flex; align-items: center; gap: 16px; }
  nav a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: .82rem;
    color: var(--black);
    transition: color .2s;
    text-transform: uppercase;
    letter-spacing: .5px;
    position: relative;
    white-space: nowrap;
  }
  nav a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px; background: var(--yellow); transition: width .2s; }
  nav a:hover::after { width: 100%; }
  nav a:hover { color: var(--black); }
  .header-phone {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 0.82rem;
    color: var(--black);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(165deg, #fff4a3 0%, var(--yellow) 50%, var(--yellow-dark) 100%);
    border: 2px solid rgba(10, 10, 10, 0.1);
    border-radius: 999px;
    padding: 10px 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
    white-space: nowrap;
    box-shadow: 0 3px 0 rgba(180, 140, 0, 0.35), 0 8px 22px rgba(255, 215, 0, 0.25);
  }
  .header-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 0 rgba(180, 140, 0, 0.4), 0 12px 28px rgba(255, 215, 0, 0.32);
  }
  .header-devis {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 0.82rem;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(165deg, #ff5a5a 0%, var(--red) 50%, var(--red-dark) 100%);
    border: 2px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;
    padding: 10px 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
    white-space: nowrap;
    box-shadow: 0 3px 0 rgba(100, 0, 0, 0.45), 0 8px 24px rgba(229, 9, 20, 0.28);
  }
  .header-devis:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 0 rgba(100, 0, 0, 0.5), 0 12px 30px rgba(229, 9, 20, 0.35);
  }
  .burger { display: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
  .burger span { display: block; width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: all .3s; }

  /* ===== MOBILE NAV ===== */
  #mobile-nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--black);
    z-index: 500;
    padding: 24px;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    /* Hors écran : ne pas intercepter les clics (footer, mailto, etc.) */
    pointer-events: none;
  }
  #mobile-nav.active {
    transform: translateX(0);
    pointer-events: auto;
  }
  .mobile-nav-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
  .mobile-close {
    width: 40px; height: 40px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 1.2rem;
    border: 1px solid rgba(255,255,255,.1);
  }
  .mobile-nav-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 32px; }
  .mobile-nav-links a {
    color: rgba(255,255,255,.85);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    padding: 12px 16px;
    border-radius: 4px;
    transition: background .2s, color .2s;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .mobile-nav-links a:hover { background: rgba(255,255,255,.06); color: var(--yellow); }
  .mobile-nav-cta { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
  .mobile-nav-cta a { text-align: center; font-size: 1.05rem; padding: 16px; }

  /* ===== HERO ===== */
  #hero {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(248, 246, 240, 0.35) 100%);
    display: block;
    position: relative;
    overflow: hidden;
    padding: 56px 0 0;
  }
  #hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 70% 55% at 85% 20%, rgba(255, 215, 0, 0.18) 0%, transparent 55%),
      radial-gradient(ellipse 50% 40% at 10% 80%, rgba(229, 9, 20, 0.06) 0%, transparent 50%),
      repeating-linear-gradient(
        -18deg,
        transparent,
        transparent 48px,
        rgba(10, 10, 10, 0.018) 48px,
        rgba(10, 10, 10, 0.018) 49px
      );
    pointer-events: none;
  }
  .hero-accent-bar {
    position: absolute;
    top: 0; left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--yellow) 0%, var(--red) 100%);
  }
  #hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch; position: relative; z-index: 2; }
  .hero-content h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    color: var(--black);
    line-height: 1.08;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: .5px;
  }
  .hero-content h1 .highlight {
    color: var(--yellow-dark);
    display: block;
  }
  .hero-content p { color: var(--text-body); font-size: 1.05rem; line-height: 1.7; margin-bottom: 36px; }
  .hero-cta-group { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
  .hero-phone-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    background: linear-gradient(165deg, #ff5a5a 0%, var(--red) 45%, var(--red-dark) 100%);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 16px 34px;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(0, 0, 0, 0.12);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.18) inset,
      0 4px 0 rgba(100, 0, 0, 0.45),
      0 14px 36px rgba(229, 9, 20, 0.32);
  }
  .hero-phone-cta:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.2) inset,
      0 5px 0 rgba(100, 0, 0, 0.5),
      0 18px 44px rgba(229, 9, 20, 0.4);
  }
  .hero-badges { display: flex; align-items: stretch; gap: 14px; flex-wrap: wrap; padding-bottom: 80px; }
  .hero-badge {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, border-color 0.25s ease;
  }
  .hero-badge:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.45);
  }
  .hero-badge .icon { font-size: 1.7rem; }
  .hero-badge .text { font-family: 'Barlow Condensed', sans-serif; }
  .hero-badge .text strong { display: block; font-weight: 800; font-size: .9rem; color: var(--black); text-transform: uppercase; letter-spacing: .5px; }
  .hero-badge .text span { font-size: .72rem; color: var(--text-light); }

  /* Hero visual */
  .hero-visual { position: relative; padding-bottom: 80px; }
  .hero-drone-box--float {
    animation: drone-hover 7s ease-in-out infinite;
  }
  @keyframes drone-hover {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    35% { transform: translateY(-10px) rotate(0.35deg); }
    70% { transform: translateY(-4px) rotate(-0.25deg); }
  }
  .hero-drone-box {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-3) 100%);
    border: 1px solid rgba(255, 215, 0, 0.28);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,.25), 0 0 0 1px rgba(255, 215, 0, 0.12);
    min-height: 380px;
  }
  .hero-drone-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 40%, rgba(255, 215, 0, 0.14) 0%, transparent 65%);
    z-index: 1;
  }
  .hero-stat-strip {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: var(--yellow);
    padding: 14px 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 3;
  }
  .hero-stat { text-align: center; }
  .hero-stat .num { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 900; color: var(--black); display: block; line-height: 1; }
  .hero-stat .lbl { font-size: .7rem; font-weight: 700; color: rgba(0,0,0,.65); text-transform: uppercase; letter-spacing: 1px; }
  .hero-stat-divider { width: 1px; height: 36px; background: rgba(0,0,0,.15); }

  /* ===== BANNER STRIP ===== */
  #banner-strip { background: var(--red); padding: 18px 0; }
  #banner-strip .container { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
  .strip-item { display: flex; align-items: center; gap: 10px; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1rem; color: #fff; text-transform: uppercase; letter-spacing: .8px; }
  .strip-item .icon { font-size: 1.3rem; }
  .strip-divider { width: 1px; height: 28px; background: rgba(255,255,255,.3); }

  /* ===== SECTION: PROCESS ===== */
  #process {
    background: rgba(248, 248, 245, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 90px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    border-bottom: 1px solid rgba(10, 10, 10, 0.04);
  }
  .process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 50px; position: relative; }
  .process-connector {
    position: absolute;
    top: 52px;
    left: calc(10% + 24px);
    right: calc(10% + 24px);
    height: 3px;
    background: linear-gradient(90deg, var(--yellow) 0%, var(--red) 100%);
    z-index: 0;
  }
  .process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
    position: relative;
    z-index: 1;
  }
  .process-num {
    width: 60px; height: 60px;
    background: var(--black);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--yellow);
    margin-bottom: 20px;
    flex-shrink: 0;
    border: 3px solid var(--yellow);
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
    transition: transform .3s;
  }
  .process-step:hover .process-num { transform: scale(1.1); }
  .process-icon { font-size: 2rem; margin-bottom: 10px; }
  .process-step h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
  }
  .process-step p { font-size: .82rem; color: var(--text-light); line-height: 1.6; }
  .process-duration {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 2px;
    margin-top: 8px;
  }

  /* ===== SECTION: SERVICES ===== */
  #services {
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 90px 0;
    border-bottom: 1px solid rgba(10, 10, 10, 0.04);
  }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 36px; }
  .service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .3s, box-shadow .3s;
    border-top: 4px solid var(--yellow);
  }
  .service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
  .service-card-img {
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    position: relative;
    overflow: hidden;
  }
  .service-card-img.c1 { background: linear-gradient(135deg, var(--black) 0%, var(--black-3) 100%); }
  .service-card-img.c2 { background: linear-gradient(135deg, #1a1a0a 0%, #2a2a1a 100%); }
  .service-card-img.c3 { background: linear-gradient(135deg, #1a0a0a 0%, #2a1a1a 100%); }
  .service-card-img::after {
    content: '';
    position: absolute;
    bottom: -20px; right: -20px;
    width: 100px; height: 100px;
    background: rgba(255,215,0,.06);
    border-radius: 50%;
  }
  .service-card-body { padding: 24px; }
  .service-card-body h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--black); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .5px; }
  .service-card-body ul li { padding: 6px 0; border-bottom: 1px solid var(--mid-gray); font-size: .88rem; color: var(--text-body); display: flex; align-items: center; gap: 8px; }
  .service-card-body ul li::before { content: '→'; color: var(--red); font-weight: 900; flex-shrink: 0; }
  .service-card-body ul li:last-child { border-bottom: none; }
  .services-cta-row { text-align: center; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

  /* ===== SECTION: AVANTAGES DRONE ===== */
  #avantages {
    background: rgba(240, 236, 228, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 90px 0;
  }
  #avantages .section-title { color: var(--black); }
  .avantages-intro { color: var(--text-body); font-size: 1rem; max-width: 580px; margin-bottom: 52px; line-height: 1.7; }
  .avantages-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: stretch; }
  .avantages-col-left { display: flex; flex-direction: column; }
  .avantages-col-left .avantages-header { margin-bottom: 28px; }
  .avantages-col-right { display: flex; flex-direction: column; gap: 14px; justify-content: center; }
  .avantages-col-right .avantage-pt { flex: 0 0 auto; }
  .comparison-table { margin-bottom: 32px; }
  .comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    margin-bottom: 4px;
  }
  .comparison-header div {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 16px;
    text-align: center;
  }
  .comparison-header .col-label { color: var(--text-light); }
  .comparison-header .col-drone { background: var(--yellow); color: var(--black); border-radius: 4px 4px 0 0; }
  .comparison-header .col-classic { background: var(--mid-gray); color: var(--text-light); border-radius: 4px 4px 0 0; }
  .comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid var(--mid-gray);
  }
  .comparison-row:last-child { border-bottom: none; }
  .comparison-row > div { padding: 11px 16px; font-size: .85rem; display: flex; align-items: center; }
  .comparison-row .c-label { color: var(--text-body); font-weight: 600; background: #fff; }
  .comparison-row .c-drone { background: rgba(255,215,0,.15); color: var(--black); font-weight: 700; justify-content: center; }
  .comparison-row .c-classic { background: #fff; color: var(--text-light); justify-content: center; }
  .check-yes::before { content: '✓ '; color: var(--yellow-dark); font-weight: 900; }
  .check-no::before { content: '✗ '; color: var(--red); font-weight: 900; }

  /* Video placeholder */
  .video-placeholder {
    background: #fff;
    border: 1px solid var(--mid-gray);
    border-radius: 12px;
    overflow: hidden;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow);
  }
  .video-placeholder-header {
    background: var(--yellow);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .video-placeholder-header span {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: .5px;
  }
  .video-inner {
    padding: 0;
    position: relative;
    background: #000;
  }
  /* Insert your video embed here: replace the iframe src with your YouTube/Vimeo link */
  .video-embed {
    width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  .video-embed::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,215,0,.08) 0%, transparent 60%);
  }
  .video-play-btn {
    width: 70px; height: 70px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    color: var(--black);
    position: relative;
    z-index: 2;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 8px 30px rgba(255,215,0,.4);
  }
  .video-embed:hover .video-play-btn { transform: scale(1.1); box-shadow: 0 12px 40px rgba(255,215,0,.6); }
  .video-embed-label {
    position: absolute;
    bottom: 12px; left: 0; right: 0;
    text-align: center;
    color: rgba(255,255,255,.5);
    font-size: .78rem;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .video-caption { padding: 16px 20px; }
  .video-caption p { font-size: .82rem; color: var(--text-light); line-height: 1.5; }
  /* For actual embed: replace .video-embed div with:
     <iframe src="https://www.youtube.com/embed/YOUR_VIDEO_ID" allowfullscreen style="width:100%;aspect-ratio:16/9;border:0;"></iframe>
  */

  .avantage-points { display: flex; flex-direction: column; gap: 16px; }
  .avantage-pt {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--mid-gray);
    border-radius: 8px;
    padding: 16px 18px;
    transition: background .2s, border-color .2s;
    box-shadow: var(--shadow);
  }
  .avantage-pt:hover { background: var(--yellow-light); border-color: var(--yellow); }
  .avantage-pt .apt-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }
  .avantage-pt h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1rem; color: var(--black); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
  .avantage-pt p { font-size: .84rem; color: var(--text-body); line-height: 1.5; }

  /* ===== SECTION: MAXIME ===== */
  #maxime {
    background: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 90px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.12);
  }
  .maxime-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

  /* Photo column */
  .maxime-photo-col { display: flex; flex-direction: column; gap: 16px; }
  .maxime-photo-frame {
    background: var(--light-gray);
    border: 2px dashed var(--mid-gray);
    border-radius: 14px;
    height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: border-color .2s;
  }
  .maxime-photo-frame:hover { border-color: var(--yellow); }
  .maxime-photo-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,215,0,.07) 0%, transparent 70%);
  }
  .maxime-photo-icon { font-size: 3.5rem; opacity: .4; }
  .maxime-photo-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
  }
  .maxime-photo-badge {
    position: absolute;
    bottom: 20px; left: 20px;
    background: var(--yellow);
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 3px;
  }

  /* Content column */
  .maxime-content { }
  .maxime-content .section-title { margin-bottom: 10px; }
  .maxime-content .maxime-role {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
  }
  .maxime-content p { font-size: 1rem; line-height: 1.8; color: var(--text-body); margin-bottom: 18px; }
  .maxime-values { display: flex; flex-direction: column; gap: 12px; margin: 28px 0 32px; }
  .maxime-value {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--yellow);
  }
  .maxime-value .mv-icon { font-size: 1.5rem; flex-shrink: 0; }
  .maxime-value .mv-text strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: .95rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 2px;
  }
  .maxime-value .mv-text span { font-size: .85rem; color: var(--text-light); }
  #professionnels {
    background: rgba(248, 248, 245, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 90px 0;
  }
  .pro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 36px; }
  .pro-cta-row { text-align: center; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
  .pro-card {
    background: #fff;
    border-radius: 10px;
    padding: 24px 28px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--yellow);
    transition: transform .2s, box-shadow .2s;
  }
  .pro-card:hover { transform: translateX(4px); box-shadow: var(--shadow-lg); }
  .pro-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
  .pro-card-head .pch-icon { font-size: 2.2rem; }
  .pro-card-head h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--black); text-transform: uppercase; letter-spacing: .5px; }
  .pro-card ul li { padding: 5px 0; font-size: .88rem; color: var(--text-body); display: flex; align-items: center; gap: 8px; }
  .pro-card ul li::before { content: '✓'; color: var(--red); font-weight: 900; flex-shrink: 0; }

  /* ===== SECTION: ZONE ===== */
  #zone {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 90px 0;
  }
  #zone .section-title { color: var(--black); margin-bottom: 14px; }
  #zone .zone-intro { color: var(--text-body); font-size: 1rem; line-height: 1.7; max-width: 560px; margin-bottom: 48px; }
  #zone .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .zone-map {
    background: #fff;
    border: 1px solid var(--mid-gray);
    border-radius: 12px;
    padding: 40px;
    display: flex; flex-direction: column; gap: 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  .zone-map::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(255,215,0,.15) 0%, transparent 70%);
    border-radius: 50%;
  }
  .zone-icon { font-size: 4rem; margin-bottom: 20px; }
  .zone-map h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.8rem; color: var(--black); text-transform: uppercase; margin-bottom: 16px; }
  .zone-tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
  .zone-tag {
    background: var(--yellow);
    border: 1px solid var(--yellow-dark);
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    padding: 6px 16px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: .5px;
  }
  .zone-note { font-size: .82rem; color: var(--text-light); line-height: 1.6; font-style: italic; }

  /* ===== SECTION: AVIS ===== */
  #avis {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 90px 0;
  }
  .avis-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
  .avis-scores { display: flex; gap: 28px; flex-wrap: wrap; }
  .avis-score-box { text-align: center; }
  .avis-score-box .score { font-family: 'Barlow Condensed', sans-serif; font-size: 2.8rem; font-weight: 900; color: var(--black); line-height: 1; }
  .avis-score-box .score-source { font-size: .72rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
  .avis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .avis-card {
    background: var(--light-gray);
    border-radius: 10px;
    padding: 24px;
    border-left: 4px solid var(--yellow);
    transition: transform .2s;
  }
  .avis-card:hover { transform: translateY(-4px); }
  .avis-card-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
  .avis-author strong { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1rem; color: var(--black); text-transform: uppercase; display: block; }
  .avis-author span { font-size: .78rem; color: var(--text-light); }
  .avis-card p { font-size: .9rem; color: var(--text-body); line-height: 1.65; font-style: italic; }

  /* ===== SECTION: FAQ ===== */
  #faq {
    background: rgba(238, 234, 226, 0.62);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 90px 0;
  }
  .faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
  .faq-item { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
  .faq-question {
    padding: 18px 22px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: background .2s;
    text-transform: uppercase;
    letter-spacing: .3px;
  }
  .faq-question:hover { background: var(--yellow-light); }
  .faq-item.open .faq-question { background: var(--yellow); }
  .faq-arrow { font-size: 1.2rem; transition: transform .3s; flex-shrink: 0; }
  .faq-item.open .faq-arrow { transform: rotate(180deg); }
  .faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; padding: 0 22px; font-size: .9rem; line-height: 1.7; color: var(--text-body); }
  .faq-item.open .faq-answer { max-height: 400px; padding: 0 22px 20px; }

  /* ===== CTA BAND ===== */
  #cta-band {
    background: linear-gradient(110deg, var(--yellow) 0%, #fff4a3 35%, var(--yellow) 55%, var(--yellow-dark) 100%);
    background-size: 220% 100%;
    animation: cta-shimmer 16s ease-in-out infinite;
    padding: 50px 0;
    border-top: 2px solid rgba(10, 10, 10, 0.06);
    border-bottom: 2px solid rgba(10, 10, 10, 0.06);
  }
  @keyframes cta-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }
  #cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
  #cta-band h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 2.2rem; font-weight: 900; color: var(--black); text-transform: uppercase; letter-spacing: .5px; line-height: 1.1; }
  #cta-band p { color: rgba(0,0,0,.65); font-size: 1rem; margin-top: 6px; }

  /* ===== SECTION: CONTACT ===== */
  #contact {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 90px 0;
    border-top: 1px solid rgba(229, 9, 20, 0.12);
  }
  #contact .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  .contact-info { }
  .contact-info .section-title { margin-bottom: 18px; }
  .contact-info p { font-size: 1rem; line-height: 1.8; color: var(--text-body); margin-bottom: 32px; }
  .contact-details { display: flex; flex-direction: column; gap: 14px; }
  .contact-detail {
    display: flex; align-items: center; gap: 14px;
    font-size: .95rem; color: var(--text-body);
  }
  .contact-detail .cd-icon {
    width: 44px; height: 44px;
    background: var(--yellow);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
  }
  .contact-detail strong { font-weight: 700; display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; text-transform: uppercase; letter-spacing: .5px; color: var(--black); }
  .contact-form { background: var(--light-gray); border-radius: 12px; padding: 36px 32px; }
  .contact-form h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.5rem; color: var(--black); text-transform: uppercase; margin-bottom: 24px; }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group.full { grid-column: 1 / -1; }
  .form-group label { font-size: .78rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); }
  .form-group input, .form-group select, .form-group textarea {
    border: 2px solid var(--mid-gray);
    border-radius: 4px;
    padding: 12px 14px;
    font-family: 'Barlow', sans-serif;
    font-size: .9rem;
    color: var(--text-body);
    background: #fff;
    transition: border-color .2s;
    outline: none;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--yellow); }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-submit { margin-top: 6px; }
  .form-submit button { width: 100%; font-size: 1.05rem; padding: 16px; }
  .form-note { font-size: .74rem; color: var(--text-light); margin-top: 10px; text-align: center; }

  /* ===== FOOTER ===== */
  footer {
    position: relative;
    z-index: 120;
    background: rgba(18, 18, 22, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 60px 0 0;
    border-top: 3px solid var(--yellow);
    color: rgba(255, 255, 255, 0.88);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .footer-brand .logo-wrap { margin-bottom: 20px; }
  .footer-brand .logo-text .name { color: #fff; }
  .footer-brand .logo-text .sub { color: rgba(255, 255, 255, 0.55); }
  .footer-brand p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    max-width: 300px;
    margin-bottom: 24px;
  }
  .social-links { display: flex; gap: 10px; position: relative; z-index: 5; }
  .social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    text-decoration: none;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(255, 215, 0, 0.25);
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
    border: 1px solid rgba(255, 215, 0, 0.25);
  }
  .social-link:hover {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
    transform: translateY(-2px);
  }
  /* Bouton « e-mail » pied de page : même look que les liens sociaux */
  button.social-link {
    margin: 0;
    padding: 0;
    font: inherit;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    text-align: center;
    line-height: 1;
  }
  .footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
  }
  .footer-col ul li { margin-bottom: 8px; }
  .footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: var(--yellow); }
  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
  }
  .footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-bottom-links a {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
  }
  .footer-bottom-links a:hover {
    color: var(--yellow);
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .process-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .process-connector { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .avantages-layout { grid-template-columns: 1fr; }
    .pro-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 768px) {
    /* Encoches iPhone / tablettes : éviter le contenu sous la barre d’état ou le bord courbe */
    .container {
      padding-left: max(16px, calc(12px + env(safe-area-inset-left, 0px)));
      padding-right: max(16px, calc(12px + env(safe-area-inset-right, 0px)));
    }
    nav, .header-phone, .header-devis { display: none; }
    .burger { display: flex; }
    #hero .container, #zone .container, #contact .container, .maxime-layout { grid-template-columns: 1fr; }
    .hero-drone-box { height: 260px; }
    .hero-content h1 { font-size: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .avis-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    #cta-band .container { flex-direction: column; text-align: center; }
    .comparison-header, .comparison-row { font-size: .78rem; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .top-bar-left { display: none; }
    .avis-header { flex-direction: column; }
    .avis-scores { justify-content: flex-start; }
    .section-title { font-size: 1.9rem; }
    .hero-drone-box--float {
      animation-duration: 11s;
    }
  }
  @media (max-width: 480px) {
    .process-grid { grid-template-columns: 1fr; }
    #hero { padding: 50px 0 40px; }
    .hero-badges { gap: 10px; }
    .pro-cards { gap: 12px; }
  }

  /* ===== Galerie « Qui suis-je » + formulaire (surcouche design) ===== */
  .maxime-photo-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-content: start;
  }
  .maxime-photo-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    background: var(--black);
    border: 2px solid rgba(255, 215, 0, 0.35);
    box-shadow: var(--shadow-lg);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  }
  .maxime-photo-card:hover {
    transform: translateY(-4px);
    border-color: var(--yellow);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
  }
  .maxime-photo-card img {
    width: 100%;
    height: min(52vh, 420px);
    object-fit: cover;
    display: block;
  }
  .maxime-photo-card figcaption {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
    padding: 10px 14px;
    background: linear-gradient(180deg, var(--black-3) 0%, var(--black) 100%);
  }

  .contact-form-lead {
    font-size: 0.92rem;
    color: var(--text-body);
    margin: -12px 0 20px;
    line-height: 1.55;
    padding-left: 14px;
    border-left: 3px solid var(--red);
  }
  .contact-form-success {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0d5c2d;
    margin: -8px 0 18px;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(34, 160, 80, 0.12);
    border: 1px solid rgba(34, 160, 80, 0.35);
  }
  .contact-form {
    position: relative;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--mid-gray);
    overflow: hidden;
  }
  .contact-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow) 0%, var(--yellow-dark) 45%, var(--red) 100%);
  }
  .contact-form h3 {
    position: relative;
  }

  @media (max-width: 768px) {
    .maxime-photo-gallery {
      grid-template-columns: 1fr;
    }
    .maxime-photo-card img {
      height: min(55vh, 380px);
    }
  }

  @media (min-width: 769px) {
    .hero-drone-box {
      min-height: 420px;
    }
  }

  /* ===== Fond global + animations « drone » (couche fixe) ===== */
  .page-atmosphere {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
  }
  .atm-gradient {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 90% 60% at 50% -18%, rgba(255, 215, 0, 0.22) 0%, transparent 55%),
      radial-gradient(ellipse 65% 50% at 100% 25%, rgba(229, 9, 20, 0.1) 0%, transparent 50%),
      radial-gradient(ellipse 50% 42% at 0% 100%, rgba(10, 10, 10, 0.12) 0%, transparent 52%),
      linear-gradient(168deg, #ece8df 0%, #e4dfd4 24%, #d5dde8 52%, #eef2f7 100%);
  }
  .atm-noise {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }
  .atm-gridlines {
    position: absolute;
    inset: -40px;
    background-image:
      linear-gradient(rgba(10, 10, 10, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(10, 10, 10, 0.035) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(ellipse 88% 72% at 50% 42%, black 12%, transparent 72%);
    animation: atm-grid-drift 90s linear infinite;
  }
  @keyframes atm-grid-drift {
    to {
      transform: translate(52px, 52px);
    }
  }
  .atm-flight-path {
    position: absolute;
    width: 130%;
    min-width: 900px;
    height: 100%;
    left: -15%;
    top: 0;
    opacity: 0.9;
  }
  .atm-trail-a {
    animation: atm-dash 24s linear infinite;
  }
  .atm-trail-b {
    animation: atm-dash 32s linear infinite reverse;
  }
  @keyframes atm-dash {
    to {
      stroke-dashoffset: -480;
    }
  }
  .atm-prop {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(255, 215, 0, 0.38);
    animation: atm-prop-spin 7s linear infinite;
  }
  .atm-prop--1 {
    width: 76px;
    height: 76px;
    top: 11%;
    right: 7%;
  }
  .atm-prop--2 {
    width: 118px;
    height: 118px;
    bottom: 16%;
    left: 4%;
    opacity: 0.55;
    animation-duration: 11s;
    animation-direction: reverse;
  }
  .atm-prop--3 {
    width: 44px;
    height: 44px;
    top: 52%;
    right: 20%;
    animation-duration: 5s;
    border-color: rgba(229, 9, 20, 0.28);
  }
  @keyframes atm-prop-spin {
    to {
      transform: rotate(360deg);
    }
  }
  .atm-scanline {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 4px,
      rgba(255, 215, 0, 0.028) 4px,
      rgba(255, 215, 0, 0.028) 5px
    );
    animation: atm-scan 18s linear infinite;
    opacity: 0.45;
  }
  @keyframes atm-scan {
    to {
      transform: translateY(36px);
    }
  }

  .reveal-section {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(3px);
    transition:
      opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      filter 0.55s ease;
  }
  .reveal-section--visible {
    opacity: 1;
    transform: translateY(0);
    filter: none;
  }

  .form-submit .btn-primary::after {
    display: none;
  }

  @media (prefers-reduced-motion: reduce) {
    .hero-drone-box--float,
    .atm-trail-a,
    .atm-trail-b,
    .atm-prop,
    .atm-gridlines,
    .atm-scanline,
    #cta-band {
      animation: none !important;
    }
    .reveal-section,
    .reveal-section--visible {
      opacity: 1;
      transform: none;
      filter: none;
      transition: none;
    }
  }
