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

        :root {
            --silver: #c8c8c8;
            --silver-dim: rgba(200,200,200,0.55);
            --white: #f0f0f0;
            --dark: #060606;
            --grey: #141414;
            --grey2: #222;
            --accent: #909090;
        }

        html { scroll-behavior: smooth; }

        body {
            background: #000;
            color: var(--white);
            font-family: 'Rajdhani', sans-serif;
            overflow-x: hidden;
        }

        ::-webkit-scrollbar { width: 2px; }
        ::-webkit-scrollbar-track { background: #000; }
        ::-webkit-scrollbar-thumb { background: var(--accent); }

        /* ══ NAV ══ */
        nav {
            position: fixed; top: 0; left: 0; right: 0;
            padding: 22px 52px;
            display: flex; justify-content: space-between; align-items: center;
            z-index: 1000;
            background: linear-gradient(180deg, rgba(0,0,0,.92) 0%, transparent 100%);
            backdrop-filter: blur(10px);
        }
        .nav-logo {
            font-family: 'Orbitron', monospace;
            font-size: .85rem; font-weight: 900;
            letter-spacing: 7px; color: var(--silver);
            text-decoration: none;
        }
        .nav-links { display: flex; gap: 40px; list-style: none; }
        .nav-links a {
            color: rgba(255,255,255,.38);
            text-decoration: none;
            font-size: .7rem; letter-spacing: 4px; text-transform: uppercase;
            transition: color .3s;
        }
        .nav-links a:hover { color: var(--silver); }

        /* Hamburger mobile */
        .nav-toggle {
            display: none; flex-direction: column; gap: 5px;
            cursor: pointer; padding: 4px;
            background: none; border: none;
        }
        .nav-toggle span {
            display: block; width: 24px; height: 1.5px;
            background: var(--silver-dim); transition: all .3s;
        }
        .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
        .nav-toggle.open span:nth-child(2) { opacity: 0; }
        .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

        .mobile-nav {
            display: none;
            position: fixed; top: 64px; left: 0; right: 0;
            background: rgba(0,0,0,.97);
            backdrop-filter: blur(20px);
            z-index: 999;
            max-height: 0; overflow: hidden;
            transition: max-height .4s ease, padding .4s;
        }
        .mobile-nav.open { max-height: 400px; padding: 8px 0 20px; }
        .mobile-nav ul { list-style: none; }
        .mobile-nav ul li a {
            display: block; padding: 14px 32px;
            color: rgba(255,255,255,.5); text-decoration: none;
            font-size: .75rem; letter-spacing: 5px; text-transform: uppercase;
            border-bottom: 1px solid rgba(255,255,255,.04);
            transition: color .2s, background .2s;
        }
        .mobile-nav ul li a:hover { color: var(--silver); background: rgba(255,255,255,.03); }

        /* ══ HERO ══ */
        #hero {
            height: 100vh;
            position: relative; overflow: hidden;
            display: flex; flex-direction: column;
            align-items: center; justify-content: center;
        }

        /* === HERO BG IMAGE — sharp & cinematic === */
        .hero-bg {
            position: absolute; inset: 0; z-index: 0;
            overflow: hidden;
        }
        .hero-bg img {
            width: 100%; height: 100%;
            object-fit: cover;
            object-position: center 30%;
            opacity: 0;
            transform: scale(1.06);
            animation: heroBgIn 2.2s cubic-bezier(.4,0,.2,1) .05s forwards;
            /* NO grayscale, NO blur — keep photo sharp */
            filter: brightness(.38) contrast(1.2) saturate(.9);
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }
        @keyframes heroBgIn {
            0%   { opacity: 0; transform: scale(1.12); filter: brightness(0) contrast(1.2) saturate(.9); }
            35%  { filter: brightness(.18) contrast(1.2) saturate(.9); }
            100% { opacity: 1; transform: scale(1.02); filter: brightness(.38) contrast(1.2) saturate(.9); }
        }

        /* Vignette */
        .hero-vignette {
            position: absolute; inset: 0; z-index: 1;
            background:
                radial-gradient(ellipse 80% 80% at 50% 50%, transparent 35%, rgba(0,0,0,.72) 100%),
                linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.1) 45%, rgba(0,0,0,.65) 100%);
        }

        /* Subtle scanlines for cinematic feel */
        .hero-scanlines {
            position: absolute; inset: 0; z-index: 2; pointer-events: none;
            background: repeating-linear-gradient(
                0deg, transparent, transparent 2px,
                rgba(0,0,0,.06) 2px, rgba(0,0,0,.06) 3px
            );
        }

        /* ══ HERO CONTENT ══ */
        .hero-content {
            position: relative; z-index: 3;
            display: flex; flex-direction: column; align-items: center;
            text-align: center;
        }

        /* Logo — fix artefact carré sur mobile */
        .logo-wrap {
            width: 120px; height: 120px;
            margin-bottom: 30px;
            border-radius: 50%;
            overflow: visible;
            clip-path: circle(50%);
            position: relative;
            opacity: 0;
            animation: logoIn 1s cubic-bezier(.22,1,.36,1) 2.3s forwards,
                       logoPulse 4s ease-in-out 3.4s infinite;
            flex-shrink: 0;
        }
        .logo-wrap img {
            position: absolute;
            width: 165%; height: 165%;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            object-fit: cover;
            border-radius: 50%;
        }
        @keyframes logoIn {
            from { opacity: 0; transform: scale(.45) rotate(-14deg); filter: blur(18px); }
            to   { opacity: 1; transform: scale(1)   rotate(0deg);   filter: blur(0); }
        }
        @keyframes logoPulse {
            0%,100% { filter: drop-shadow(0 0 10px rgba(200,200,200,.4)); }
            50%      { filter: drop-shadow(0 0 30px rgba(200,200,200,.9)) drop-shadow(0 0 60px rgba(200,200,200,.25)); }
        }

        /* ── BRAND NAME ── */
        .brand-name {
            display: flex; gap: 20px; align-items: center;
            font-family: 'Orbitron', monospace;
            font-size: clamp(2rem, 6vw, 5.2rem); font-weight: 900;
            letter-spacing: 10px;
            overflow: visible;
        }

        /* Letter-by-letter containers */
        .word-wrap {
            display: inline-flex; gap: 0;
            overflow: visible;
        }

        /* Each letter */
        .letter {
            display: inline-block;
            opacity: 0;
            transform: translateY(30px);
            animation: letterDrop .35s cubic-bezier(.22,1,.36,1) forwards;
        }

        /* MYLTA — comes after logo (delay base 3.2s), from right overall */
        .brand-mylta .letter { color: #fff; }
        .brand-mylta .letter:nth-child(1) { animation-delay: 3.20s; }
        .brand-mylta .letter:nth-child(2) { animation-delay: 3.28s; }
        .brand-mylta .letter:nth-child(3) { animation-delay: 3.36s; }
        .brand-mylta .letter:nth-child(4) { animation-delay: 3.44s; }
        .brand-mylta .letter:nth-child(5) { animation-delay: 3.52s; }

        /* CREATIVE — starts right after MYLTA finishes */
        .brand-creative .letter {
            background: linear-gradient(135deg, #888 0%, #fff 50%, #bbb 100%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }
        .brand-creative .letter:nth-child(1) { animation-delay: 3.65s; }
        .brand-creative .letter:nth-child(2) { animation-delay: 3.73s; }
        .brand-creative .letter:nth-child(3) { animation-delay: 3.81s; }
        .brand-creative .letter:nth-child(4) { animation-delay: 3.89s; }
        .brand-creative .letter:nth-child(5) { animation-delay: 3.97s; }
        .brand-creative .letter:nth-child(6) { animation-delay: 4.05s; }
        .brand-creative .letter:nth-child(7) { animation-delay: 4.13s; }
        .brand-creative .letter:nth-child(8) { animation-delay: 4.21s; }

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

        .hero-line {
            width: 0; height: 1px;
            background: linear-gradient(90deg, transparent, rgba(200,200,200,.65), transparent);
            margin: 20px auto;
            animation: lineGrow 1.1s ease 4.4s forwards;
        }
        @keyframes lineGrow { to { width: 300px; } }

        .hero-slogan {
            font-size: clamp(.78rem, 1.8vw, .95rem);
            letter-spacing: 5px; text-transform: uppercase;
            color: rgba(255,255,255,.42);
            opacity: 0;
            animation: fadeUp .7s ease 4.85s forwards;
        }
        .hero-location {
            margin-top: 10px;
            font-size: .72rem; letter-spacing: 8px;
            color: var(--silver-dim); opacity: 0;
            animation: fadeUp .7s ease 5.1s forwards;
        }
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(14px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .scroll-cue {
            position: absolute; bottom: 30px; left: 50%;
            transform: translateX(-50%);
            display: flex; flex-direction: column; align-items: center; gap: 8px;
            opacity: 0; animation: fadeUp .7s ease 5.5s forwards; z-index: 3;
        }
        .scroll-cue span { font-size: .6rem; letter-spacing: 6px; color: rgba(255,255,255,.22); }
        .scroll-line {
            width: 1px; height: 48px;
            background: linear-gradient(180deg, rgba(200,200,200,.55), transparent);
            animation: pulseLine 2.2s ease-in-out infinite;
        }
        @keyframes pulseLine {
            0%,100% { opacity: .28; } 50% { opacity: 1; }
        }

        /* ══ SECTION BASE ══ */
        .sec {
            position: relative; min-height: 100vh;
            display: flex; align-items: center; overflow: hidden;
        }
        .sec-bg {
            position: absolute; inset: 0;
            background-size: cover; background-position: center;
            background-attachment: fixed;
            filter: brightness(.22) contrast(1.15) saturate(.7);
            transition: transform 8s ease;
            transform: scale(1.02);
        }
        .sec:hover .sec-bg { transform: scale(1.05); }
        .sec-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(0,0,0,.9) 0%, rgba(5,5,5,.65) 50%, rgba(0,0,0,.92) 100%);
        }
        .sec-inner {
            position: relative; z-index: 2;
            max-width: 1100px; margin: 0 auto;
            padding: 100px 32px; width: 100%;
        }

        .tag {
            font-size: .68rem; letter-spacing: 7px; text-transform: uppercase;
            color: var(--accent); margin-bottom: 16px;
            opacity: 0; transform: translateY(22px);
            transition: opacity .65s ease, transform .65s ease;
        }
        .tag.vis { opacity: 1; transform: translateY(0); }

        .sec-title {
            font-family: 'Orbitron', monospace;
            font-size: clamp(1.8rem, 4vw, 3.2rem); font-weight: 700;
            line-height: 1.1; margin-bottom: 30px;
            opacity: 0; transform: translateY(22px);
            transition: opacity .65s ease .12s, transform .65s ease .12s;
        }
        .sec-title.vis { opacity: 1; transform: translateY(0); }
        .sil { color: var(--silver); }

        /* ══ MARQUEE ══ */
        #marquee {
            background: #000;
            overflow: hidden;
            padding: 0;
            line-height: 1;
        }
        .marquee-row {
            overflow: hidden;
            padding: 11px 0;
            border-top: 1px solid rgba(200,200,200,.06);
        }
        .marquee-row:last-child { border-bottom: 1px solid rgba(200,200,200,.06); }
        .marquee-track {
            display: inline-flex;
            white-space: nowrap;
            font-family: 'Orbitron', monospace;
            font-size: .75rem;
            letter-spacing: 6px;
            text-transform: uppercase;
            color: rgba(200,200,200,.55);
            will-change: transform;
        }
        .marquee-row--left  .marquee-track { animation: mqLeft  35s linear infinite; }
        .marquee-row--right .marquee-track { animation: mqRight 40s linear infinite; }
        @keyframes mqLeft  { from { transform: translateX(0);    } to { transform: translateX(-50%); } }
        @keyframes mqRight { from { transform: translateX(-50%); } to { transform: translateX(0);    } }

        /* ══ ABOUT ══ */
        .about-layout {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 72px; align-items: center;
        }
        .about-body p {
            font-size: 1.08rem; line-height: 2;
            color: rgba(255,255,255,.58);
            opacity: 0; transform: translateY(20px);
            transition: opacity .65s ease .25s, transform .65s ease .25s;
        }
        .about-body p.vis { opacity: 1; transform: translateY(0); }

        .filmmaker-badge {
            display: inline-flex; align-items: center; gap: 10px;
            margin-top: 26px; padding: 10px 20px;
            border: 1px solid rgba(200,200,200,.18); border-radius: 3px;
            font-size: .75rem; letter-spacing: 4px; text-transform: uppercase;
            color: var(--accent);
            opacity: 0; transform: translateY(20px);
            transition: opacity .65s ease .4s, transform .65s ease .4s;
        }
        .filmmaker-badge.vis { opacity: 1; transform: translateY(0); }
        .badge-dot {
            width: 5px; height: 5px; border-radius: 50%;
            background: var(--silver); animation: dotBlink 2s infinite;
        }
        @keyframes dotBlink { 0%,100%{opacity:1} 50%{opacity:.15} }

        .stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
        .stat-card {
            border: 1px solid rgba(200,200,200,.1); border-radius: 5px;
            padding: 26px 18px; text-align: center;
            background: rgba(255,255,255,.025);
            transition: border-color .3s, box-shadow .3s, transform .35s;
            opacity: 0; transform: translateY(20px);
        }
        .stat-card.vis { opacity: 1; transform: translateY(0); }
        .stat-card:hover {
            border-color: rgba(200,200,200,.38);
            box-shadow: 0 0 20px rgba(200,200,200,.07);
            transform: translateY(-4px) !important;
        }
        .stat-num {
            font-family: 'Orbitron', monospace;
            font-size: 2.5rem; font-weight: 900;
            color: var(--white); display: block;
        }
        .stat-lbl {
            font-size: .68rem; letter-spacing: 4px; text-transform: uppercase;
            color: rgba(255,255,255,.3); margin-top: 6px; display: block;
        }

        /* ══ VISION ══ */
        .vision-layout {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 64px; align-items: center;
        }
        .lens-art {
            display: flex; align-items: center; justify-content: center;
            opacity: 0; transform: translateX(-36px);
            transition: opacity 1s ease, transform 1s ease;
        }
        .lens-art.vis { opacity: 1; transform: translateX(0); }
        .lens-photo-wrap {
            width: 320px; height: 400px;
            position: relative; border-radius: 10px; overflow: hidden;
            border: 1px solid rgba(200,200,200,.14);
            box-shadow: 0 0 60px rgba(0,0,0,.85), 0 0 100px rgba(0,0,0,.5);
        }
        .lens-photo-wrap img {
            width: 100%; height: 100%;
            object-fit: cover; object-position: center;
            filter: brightness(.88) contrast(1.1) saturate(.85);
            transition: transform 7s ease;
        }
        .lens-photo-wrap:hover img { transform: scale(1.05); }
        .lens-photo-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.65) 100%);
        }

        .vision-text {
            opacity: 0; transform: translateX(36px);
            transition: opacity .8s ease .25s, transform .8s ease .25s;
        }
        .vision-text.vis { opacity: 1; transform: translateX(0); }
        .vision-text p {
            font-size: 1.05rem; line-height: 2;
            color: rgba(255,255,255,.58); margin-bottom: 24px;
        }
        .spec-list {
            list-style: none;
            border-top: 1px solid rgba(200,200,200,.1);
            padding-top: 22px;
            display: flex; flex-direction: column; gap: 13px;
        }
        .spec-list li {
            display: flex; align-items: center; gap: 14px;
            font-size: .85rem; letter-spacing: 2px;
            color: rgba(255,255,255,.42);
        }
        .spec-list li::before {
            content: ''; display: block;
            width: 22px; height: 1px;
            background: var(--accent); flex-shrink: 0;
        }

        /* ══ DRONE FLOTTANT ══ */
        .drone-wrap {
            position: absolute;
            right: 4%;
            top: 50%;
            transform: translateY(-50%);
            z-index: 4;
            pointer-events: none;
        }
        .drone-wrap img {
            width: 280px;
            display: block;
            filter: drop-shadow(0 0 20px rgba(200,200,200,.15));
            animation: droneFloat 4s ease-in-out infinite;
        }
        @keyframes droneFloat {
            0%, 100% { transform: translateY(0)     rotate(-3deg); }
            50%       { transform: translateY(-20px) rotate(3deg);  }
        }

        /* ══ WORK — vidéos locales 9:16 ══ */
        #work { background: var(--dark); }
        .work-inner { max-width: 1100px; margin: 0 auto; padding: 100px 32px; }
        .video-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px; margin-top: 50px;
        }
        .video-card {
            border-radius: 8px; overflow: hidden;
            border: 1px solid rgba(200,200,200,.1);
            background: #000;
            aspect-ratio: 9/16; position: relative;
            opacity: 0; transform: translateY(30px);
            transition: opacity .8s ease, transform .8s ease, border-color .4s, box-shadow .4s;
        }
        .video-card.vis { opacity: 1; transform: translateY(0); }
        .video-card:hover {
            border-color: rgba(200,200,200,.5);
            box-shadow: 0 24px 64px rgba(0,0,0,.75), 0 0 40px rgba(200,200,200,.07);
            transform: translateY(-10px) scale(1.012) !important;
        }
        .video-card video {
            width: 100%; height: 100%;
            object-fit: cover; display: block;
        }
        .vid-sound-btn {
            position: absolute; top: 12px; right: 12px;
            width: 36px; height: 36px; border-radius: 50%;
            background: rgba(0,0,0,.62);
            border: 1px solid rgba(200,200,200,.2);
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; z-index: 10;
            font-size: 15px; line-height: 1;
            backdrop-filter: blur(6px);
            transition: background .25s, border-color .25s;
        }
        .vid-sound-btn:hover {
            background: rgba(0,0,0,.88);
            border-color: rgba(200,200,200,.5);
        }

        /* ══ ACADEMY FORM ══ */
        .academy-intro {
            font-size: 1.05rem; line-height: 2;
            color: rgba(255,255,255,.55); margin-bottom: 40px;
            opacity: 0; transform: translateY(20px);
            transition: opacity .65s ease .2s, transform .65s ease .2s;
        }
        .academy-intro.vis { opacity: 1; transform: translateY(0); }
        .form-grid {
            display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
            opacity: 0; transform: translateY(24px);
            transition: opacity .65s ease .3s, transform .65s ease .3s;
        }
        .form-grid.vis { opacity: 1; transform: translateY(0); }
        .form-group { display: flex; flex-direction: column; gap: 8px; }
        .form-group.full { grid-column: 1 / -1; }
        .form-label {
            font-size: .65rem; letter-spacing: 4px; text-transform: uppercase;
            color: var(--accent);
        }
        .form-input, .form-select, .form-textarea {
            background: rgba(255,255,255,.04);
            border: 1px solid rgba(200,200,200,.14);
            border-radius: 4px; padding: 13px 16px;
            color: var(--white);
            font-family: 'Rajdhani', sans-serif;
            font-size: .95rem; letter-spacing: 1px;
            transition: border-color .3s, background .3s;
            width: 100%; -webkit-appearance: none;
        }
        .form-input::placeholder { color: rgba(255,255,255,.22); }
        .form-input:focus, .form-select:focus, .form-textarea:focus {
            outline: none;
            border-color: rgba(200,200,200,.48);
            background: rgba(255,255,255,.07);
        }
        .form-select {
            cursor: pointer;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%23909090' stroke-width='1.5' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
            background-repeat: no-repeat; background-position: right 14px center;
            padding-right: 36px;
        }
        .form-select option { background: #141414; color: var(--white); }
        .form-textarea { resize: vertical; min-height: 110px; }
        .rgpd-row {
            display: flex; align-items: flex-start; gap: 14px;
            grid-column: 1 / -1; padding: 6px 0;
        }
        .rgpd-check {
            width: 17px; height: 17px; flex-shrink: 0;
            margin-top: 3px; accent-color: var(--silver); cursor: pointer;
        }
        .rgpd-label {
            font-size: .82rem; line-height: 1.7;
            color: rgba(255,255,255,.38); cursor: pointer;
        }
        .rgpd-label a { color: var(--silver-dim); text-decoration: underline; }
        .submit-btn {
            grid-column: 1 / -1;
            display: inline-flex; align-items: center; gap: 10px;
            padding: 15px 38px;
            background: rgba(200,200,200,.06);
            border: 1px solid rgba(200,200,200,.28);
            border-radius: 4px; color: var(--silver);
            font-family: 'Rajdhani', sans-serif;
            font-size: .82rem; letter-spacing: 5px; text-transform: uppercase;
            cursor: pointer; transition: all .3s;
            justify-self: start;
        }
        .submit-btn:hover {
            background: rgba(200,200,200,.14);
            border-color: rgba(200,200,200,.55);
            color: var(--white); transform: translateY(-2px);
        }
        .submit-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }
        .form-status {
            grid-column: 1 / -1;
            font-size: .8rem; letter-spacing: 2px;
            padding: 10px 0; display: none; opacity: 0; transition: opacity .3s;
        }
        .form-status.show { display: block; opacity: 1; }
        .form-status.ok  { color: #6ee7b7; }
        .form-status.err { color: #fca5a5; }

        /* ══ CONTACT ══ */
        #contact { background: #000; position: relative; overflow: hidden; }
        .s-btn svg { color: var(--silver-dim); transition: color .3s; flex-shrink: 0; }
        .s-btn:hover svg { color: var(--silver); }
        .phone-row svg { color: var(--silver-dim); }
        .contact-inner {
            max-width: 900px; margin: 0 auto;
            padding: 100px 32px; text-align: center;
            position: relative; z-index: 1;
        }
        .social-row {
            display: flex; flex-wrap: wrap; gap: 14px;
            justify-content: center; margin-top: 50px;
        }
        .s-btn {
            display: flex; align-items: center; gap: 10px;
            padding: 13px 24px; border-radius: 4px;
            background: rgba(255,255,255,.025);
            border: 1px solid rgba(200,200,200,.16);
            color: rgba(255,255,255,.7); text-decoration: none;
            font-size: .82rem; letter-spacing: 3px; text-transform: uppercase;
            transition: all .3s ease;
            opacity: 0; transform: translateY(16px);
        }
        .s-btn.vis { opacity: 1; transform: translateY(0); }
        .s-btn:hover {
            background: rgba(255,255,255,.06);
            border-color: rgba(200,200,200,.48);
            color: #fff; transform: translateY(-3px) !important;
        }
        .phone-row {
            margin-top: 42px;
            display: inline-flex; align-items: center; gap: 14px;
            padding: 15px 34px; border-radius: 4px;
            border: 1px solid rgba(200,200,200,.14);
            opacity: 0; transform: translateY(16px);
            transition: opacity .65s ease .5s, transform .65s ease .5s;
        }
        .phone-row.vis { opacity: 1; transform: translateY(0); }
        .phone-num {
            font-family: 'Orbitron', monospace;
            font-size: .88rem; letter-spacing: 4px; color: var(--silver);
        }

        /* ══ TESTIMONIALS BG ══ */
        .testi-bg {
            position: absolute; inset: 0;
            display: flex; gap: 20px; padding: 0 20px;
            overflow: hidden; pointer-events: none;
            z-index: 0; opacity: .35; filter: blur(1px);
            align-items: flex-start;
        }
        .testi-col {
            flex: 1; display: flex; flex-direction: column; gap: 14px;
            animation: testiScroll 30s linear infinite;
            will-change: transform;
        }
        .testi-col:nth-child(2) { animation-delay: -10s; }
        .testi-col:nth-child(3) { animation-delay: -20s; }
        @keyframes testiScroll {
            from { transform: translateY(0);    }
            to   { transform: translateY(-50%); }
        }
        .testi-card {
            border: 1px solid rgba(200,200,200,.08);
            border-radius: 6px; padding: 14px 16px;
            background: rgba(0,0,0,.85); flex-shrink: 0;
        }
        .tc-name {
            font-family: 'Orbitron', monospace;
            font-size: .58rem; letter-spacing: 3px; text-transform: uppercase;
            color: rgba(200,200,200,.9); margin-bottom: 3px;
        }
        .tc-role {
            font-size: .65rem; letter-spacing: 2px; text-transform: uppercase;
            color: rgba(200,200,200,.5); margin-bottom: 8px;
        }
        .tc-text {
            font-size: .78rem; line-height: 1.6;
            color: rgba(255,255,255,.75); font-style: italic;
        }

        /* ══ FOOTER ══ */
        footer {
            padding: 24px 16px; text-align: center;
            border-top: 1px solid rgba(255,255,255,.05);
            font-size: .68rem; letter-spacing: 5px;
            color: rgba(255,255,255,.16); text-transform: uppercase;
        }
        .footer-legal {
            margin-top: 12px;
            display: flex; justify-content: center; gap: 28px;
        }
        .footer-legal a {
            color: rgba(255,255,255,.2); text-decoration: none;
            font-size: .62rem; letter-spacing: 4px; transition: color .3s;
        }
        .footer-legal a:hover { color: rgba(200,200,200,.6); }

        /* ══ WHATSAPP FLOTTANT ══ */
        .wa-float {
            position: fixed; bottom: 28px; right: 28px;
            width: 56px; height: 56px; border-radius: 50%;
            background: #25D366;
            display: flex; align-items: center; justify-content: center;
            z-index: 9999; text-decoration: none;
            animation: waPulse 2.8s ease-in-out infinite;
            transition: transform .2s, box-shadow .2s;
        }
        .wa-float:hover {
            transform: scale(1.12);
            box-shadow: 0 8px 30px rgba(37,211,102,.65);
            animation: none;
        }
        @keyframes waPulse {
            0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,.42), 0 0 0 0 rgba(37,211,102,.3); }
            60%      { box-shadow: 0 4px 18px rgba(37,211,102,.42), 0 0 0 14px rgba(37,211,102,0); }
        }

        /* ══ EQUIPMENT ORBIT ══ */
        #equipment {
            background: #000;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .equipment-scene {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 660px;
            height: 660px;
            flex-shrink: 0;
        }

        .equipment-center-text {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .equip-subtitle {
            font-size: 1rem;
            letter-spacing: 6px;
            text-transform: uppercase;
            color: rgba(255,255,255,.38);
            margin-top: 10px;
        }

        .orbit-item {
            position: absolute;
            top: 50%; left: 50%;
            margin-top: -90px; margin-left: -70px;
            width: 140px; height: 180px;
            animation: equipOrbit 28s linear infinite;
            z-index: 1;
        }
        .orbit-item:nth-child(2) { animation-delay:   0s; }
        .orbit-item:nth-child(3) { animation-delay:  -7s; }
        .orbit-item:nth-child(4) { animation-delay: -14s; }
        .orbit-item:nth-child(5) { animation-delay: -21s; }

        .orbit-item img {
            width: 100%; height: 100%;
            border-radius: 16px;
            border: 1px solid rgba(200,200,200,.2);
            object-fit: cover;
            display: block;
            transition: transform .35s ease, box-shadow .35s ease;
        }
        .orbit-item img:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 32px rgba(0,0,0,.7);
        }

        @keyframes equipOrbit {
            from { transform: rotate(0deg)   translateX(240px) rotate(0deg); }
            to   { transform: rotate(360deg) translateX(240px) rotate(-360deg); }
        }

        /* ══ RESPONSIVE ══ */
        @media (max-width: 768px) {
            nav { padding: 16px 20px; }
            .nav-links { display: none; }
            .nav-toggle { display: flex; }
            .mobile-nav { display: block; }
            .brand-name { font-size: 1.6rem; letter-spacing: 4px; gap: 8px; }
            .about-layout, .vision-layout { grid-template-columns: 1fr; gap: 40px; }
            .lens-photo-wrap { width: 100%; height: 280px; }
            .sec-bg { background-attachment: scroll; }
            .video-grid {
                grid-template-columns: 1fr;
                max-width: 360px; margin-left: auto; margin-right: auto;
            }
            .form-grid { grid-template-columns: 1fr; }
            .form-group.full, .rgpd-row, .form-status { grid-column: 1; }
            .submit-btn { grid-column: 1; justify-self: stretch; }
            .sec-inner, .work-inner, .contact-inner { padding: 80px 20px; }
            .wa-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
            .wa-float svg { width: 24px; height: 24px; }
            .equipment-scene { transform: scale(0.52); }

            /* Drone — en flux sous le contenu vision sur mobile */
            .drone-wrap {
                position: relative;
                right: auto;
                top: auto;
                transform: none;
                display: flex;
                justify-content: center;
                margin-top: 32px;
                pointer-events: none;
            }
            .drone-wrap img { width: 180px; }

            /* Testimonials — 2 colonnes sur mobile */
            .testi-bg { gap: 10px; padding: 0 10px; }
            .testi-col:nth-child(3) { display: none; }

            /* Marquee — espacement réduit sur petit écran */
            .marquee-track { font-size: .65rem; letter-spacing: 3px; }
        }
