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

  :root {
    --white: #FFFFFF;
    --dark: #292929;
    --blue: #1E90FF;
    --blue-glow: rgba(30,144,255,0.25);
    --blue-dim: rgba(30,144,255,0.08);
    --mid: #3a3a3a;
    --light-gray: #f0f0f0;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--dark);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR — uniquement sur appareils avec souris */
.cursor,
.cursor-ring {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block;
    position: fixed;
    width: 12px; height: 12px;
    background: var(--blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%,-50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
    mix-blend-mode: normal;
  }

  .cursor-ring {
    display: block;
    position: fixed;
    width: 40px; height: 40px;
    border: 1px solid rgba(30,144,255,0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%,-50%);
    transition: transform 0.15s ease, width 0.4s ease, height 0.4s ease, opacity 0.3s ease;
  }

  body:has(a:hover) .cursor, body:has(button:hover) .cursor {
    width: 20px; height: 20px;
  }

  body:has(a:hover) .cursor-ring,
  body:has(button:hover) .cursor-ring {
    width: 60px; height: 60px;
    opacity: 0.3;
  }
}

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 24px 60px;
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(to bottom, rgba(41,41,41,0.95) 0%, transparent 100%);
    backdrop-filter: blur(0px);
    transition: backdrop-filter 0.4s, background 0.4s;
  }
  nav.scrolled {
    backdrop-filter: blur(20px);
    background: rgba(41,41,41,0.9);
    border-bottom: 1px solid rgba(30,144,255,0.1);
  }
  .nav-logo {
    display: flex; align-items: center; gap: 14px;
    text-decoration: none;
  }
  /* Logo image styling */
  .logo-image {
    height: 40px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1); /* rend le logo blanc, s'adapte au fond */
    transition: transform 0.2s ease;
  }
  .nav-logo:hover .logo-image {
    transform: scale(1.03);
  }
  .nav-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }
  .nav-brand-top {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--white);
  }
  .nav-brand-top span {
    color: var(--blue);
  }
  .nav-brand-bottom {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-top: -2px;
  }
  .nav-links {
    display: flex; gap: 40px; list-style: none; margin-bottom: 0; align-items: center;
  }
  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
    background: var(--blue);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s ease;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dark);
    background: var(--blue);
    border: none;
    padding: 12px 28px;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  }
  .nav-cta:hover {
    background: #4aa8ff;
    box-shadow: 0 0 30px var(--blue-glow);
  }
  
  
  
  
  
  
  /* ================================================
   MENU DESKTOP — dropdown autonome (hors Bootstrap)
   ================================================ */
@media (min-width: 992px) {

  .nav-links { align-items: center; }

  .nav-item-sub { position: relative; }

  .nav-item-sub > .nav-sub-trigger {
    display: inline-flex;
    align-items: center;
    gap: 7px;
  }
 

  /* Panneau déroulant */
  .nav-subnav {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 240px;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    background: #252626;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    box-shadow: 0 18px 44px rgba(0,0,0,.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    z-index: 1200;
  }

  /* Pont invisible : évite la fermeture en traversant le vide */
  .nav-subnav::before {
    content: '';
    position: absolute;
    top: -10px; left: 0; right: 0;
    height: 10px;
  }

  .nav-item-sub:hover > .nav-subnav,
  .nav-item-sub:focus-within > .nav-subnav,
  .nav-item-sub.is-open > .nav-subnav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .nav-subnav li { list-style: none; }

  .nav-subnav a {
    display: block;
    padding: 10px 20px;
    color: rgba(255,255,255,.72);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    letter-spacing: .5px;
    white-space: nowrap;
    border-left: 2px solid transparent;
    transition: color .18s, background .18s, border-color .18s, padding-left .18s;
  }
  .nav-subnav a:hover,
  .nav-subnav a:focus-visible {
    color: #fff;
    background: rgba(30,144,255,.10);
    border-left-color: var(--cm);
    padding-left: 24px;
  }
  .nav-subnav a.active {
    color: var(--cm);
    border-left-color: var(--cm);
  }
}

/* Sur mobile : on masque toute la nav desktop (l'ID est bien "nav") */
@media (max-width: 991px) {
  #nav .nav-links { display: none !important; }
}
  
  
  
  
  
  
  
  
  

  /* HERO */

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
  background: #08080a;
}

.hero-video-el {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%,
      rgba(8,8,10,.55) 0%, rgba(8,8,10,.28) 55%, rgba(8,8,10,0) 100%),
    linear-gradient(to bottom,
      rgba(8,8,10,.42) 0%, rgba(8,8,10,.12) 40%,
      rgba(8,8,10,.20) 70%, rgba(8,8,10,.60) 100%);
}

.hero-bg-grid, .hero-bg-grad { z-index: 2; opacity: .35; }

.filmstrip, .hero-content, .scroll-indicator { z-index: 3; }
.hero-content { position: relative; }
  
  
  
  .hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }

  /* Cinematic film grain */
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
    z-index: 2;
    animation: grain 0.5s steps(2) infinite;
  }
  @keyframes grain {
    0%,100%{ transform: translate(0,0); }
    10%{ transform: translate(-1%,-2%); }
    20%{ transform: translate(2%,1%); }
    30%{ transform: translate(-2%,2%); }
    40%{ transform: translate(1%,-1%); }
    50%{ transform: translate(-1%,2%); }
    60%{ transform: translate(2%,-2%); }
    70%{ transform: translate(-2%,1%); }
    80%{ transform: translate(1%,2%); }
    90%{ transform: translate(-1%,-1%); }
  }

  /* Video BG layers */
  .hero-bg {
    position: absolute; inset: 0;
    z-index: 0;
  }
  .hero-bg-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(30,144,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(30,144,255,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridMove 20s linear infinite;
  }
  @keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(80px); }
  }

  .hero-bg-grad {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 50% 50%, rgba(30,144,255,0.06) 0%, transparent 70%),
      linear-gradient(180deg, rgba(41,41,41,0.3) 0%, rgba(41,41,41,0.0) 40%, rgba(41,41,41,0.8) 100%);
  }

  /* Filmstrip top/bottom */
  .filmstrip {
    position: absolute; left: 0; right: 0; z-index: 3;
    height: 28px;
    display: flex;
    overflow: hidden;
  }
  .filmstrip.top { top: 0; }
  .filmstrip.bottom { bottom: 0; }
  .filmstrip-inner {
    display: flex;
    animation: strip 8s linear infinite;
    gap: 4px;
  }
  .filmstrip-hole {
    width: 20px; height: 28px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
    border-radius: 2px;
  }
  @keyframes strip { 0%{ transform: translateX(0); } 100%{ transform: translateX(-240px); } }

  /* Vertical lines accent */
  .hero-lines {
    position: absolute; inset: 0; z-index: 1;
    pointer-events: none;
  }
  .hero-line {
    position: absolute; top: 0; bottom: 0; width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(30,144,255,0.15), transparent);
    animation: lineFlicker 3s ease-in-out infinite;
  }
  .hero-line:nth-child(1) { left: 15%; animation-delay: 0s; }
  .hero-line:nth-child(2) { left: 30%; animation-delay: 0.7s; }
  .hero-line:nth-child(3) { right: 30%; animation-delay: 1.4s; }
  .hero-line:nth-child(4) { right: 15%; animation-delay: 2.1s; }
  @keyframes lineFlicker {
    0%,100%{ opacity: 0.3; }
    50%{ opacity: 1; }
  }

  .hero-content {
    position: relative; z-index: 5;
    text-align: center;
    padding: 0 20px;
  }

  .hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 0.3s;
    display: flex; align-items: center; justify-content: center; gap: 16px;
  }
  .hero-eyebrow::before, .hero-eyebrow::after {
    content: '';
    display: block; width: 40px; height: 1px;
    background: var(--blue);
  }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(70px, 12vw, 160px);
    line-height: 0.9;
    letter-spacing: -2px;
    color: var(--white);
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards 0.5s;
  }
  .hero-title .accent { color: var(--blue); }
  .hero-title .outline {
    -webkit-text-stroke: 1px rgba(255,255,255,0.3);
    color: #FFF;
  }

  .hero-subtitle {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: clamp(16px, 2vw, 22px);
    color: rgba(255,255,255,0.6);
    margin-top: 24px;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 0.8s;
  }

  .hero-ctas {
    display: flex; align-items: center; justify-content: center;
    gap: 20px; margin-top: 48px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 1s;
    flex-wrap: wrap;
  }
  .btn-primary {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--dark);
    background: var(--blue);
    border: none;
    padding: 18px 44px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .btn-primary::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
  }
  .btn-primary:hover::before { transform: translateX(100%); }
  .btn-primary:hover { box-shadow: 0 0 40px var(--blue-glow), 0 0 80px rgba(30,144,255,0.1); }

  .btn-secondary {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 18px 44px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    transition: all 0.3s;
  }
  .btn-secondary:hover { color: var(--white); border-color: var(--blue); background: rgba(30,144,255,0.05); }
  .play-icon {
    width: 20px; height: 20px;
    border: 1px solid currentColor;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .play-icon::after {
    content: '';
    border-left: 6px solid currentColor;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    margin-left: 2px;
  }

  /* Scroll indicator */
  .scroll-indicator {
    position: absolute; bottom: 60px; left: 50%; transform: translateX(-50%);
    z-index: 5;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 1.5s;
  }
  .scroll-indicator span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
    color: rgba(255,255,255,0.3);
  }
  .scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, rgba(30,144,255,0.8), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%,100%{ transform: scaleY(0); transform-origin: top; }
    50%{ transform: scaleY(1); transform-origin: top; }
  }

  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

  /* SECTION BASE */
  section { padding: 120px 60px; }
  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
  }
  .section-label::before {
    content: '';
    display: block; width: 24px; height: 1px;
    background: var(--blue);
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 6vw, 80px);
    line-height: 0.95;
    letter-spacing: 1px;
  }

  /* FORMATS SECTION */
  .formats {
    background: var(--dark);
    position: relative;
    overflow: hidden;
  }
  .formats-bg {
    position: absolute; top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30,144,255,0.04) 0%, transparent 70%);
    pointer-events: none;
  }
  .formats-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 80px;
    flex-wrap: wrap; gap: 20px;
  }
  .formats-intro {
    max-width: 500px;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin-top: 20px;
  }

  .formats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2px;
  }

  .format-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #1f1f1f;
  }
  .format-card.cinema { grid-row: 1 / 3; }

  .format-card-inner {
    padding: 60px 50px;
    height: 100%;
    min-height: 320px;
    display: flex; flex-direction: column; justify-content: flex-end;
    position: relative;
    transition: transform 0.5s ease;
  }
  .format-card:hover .format-card-inner { transform: translateY(-4px); }

  .format-card-bg {
    position: absolute; inset: 0;
    transition: opacity 0.5s ease;
  }

  .format-card.cinema .format-card-bg {
    background: linear-gradient(135deg, #0d1117 0%, #1a2030 50%, rgba(30,144,255,0.08) 100%);
  }
  .format-card.social-short .format-card-bg {
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
  }
  .format-card.social-long .format-card-bg {
    background: linear-gradient(135deg, #181818 0%, #1e1e2a 100%);
  }

  /* Aspect ratio visual */
  .format-ratio-visual {
    position: absolute; top: 30px; right: 30px;
    opacity: 0.15;
    transition: opacity 0.4s;
  }
  .format-card:hover .format-ratio-visual { opacity: 0.35; }

  .ratio-cinema { width: 90px; height: 50px; border: 1px solid var(--white); }
  .ratio-short { width: 28px; height: 50px; border: 1px solid var(--white); }
  .ratio-social { width: 50px; height: 50px; border: 1px solid var(--white); }

  .format-icon {
    margin-bottom: 24px;
  }
  .format-icon svg { width: 40px; height: 40px; }

  .format-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
  }
  .format-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1;
    color: var(--white);
    margin-bottom: 16px;
  }
  .format-desc {
    font-weight: 300;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    max-width: 380px;
  }

  .format-card-hover-bar {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s ease;
    box-shadow: 0 0 20px var(--blue);
  }
  .format-card:hover .format-card-hover-bar { transform: scaleX(1); }

  /* Clients / Who section */
  .who {
    background: #202020;
    position: relative;
    overflow: hidden;
  }
  .who-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
  }
  .who-text .section-title { margin-bottom: 30px; }
  .who-desc {
    font-weight: 300; font-size: 18px; line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
  }

  .who-tags {
    display: flex; flex-wrap: wrap; gap: 10px;
  }
  .who-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 20px;
    transition: all 0.3s;
    cursor: default;
  }
  .who-tag:hover {
    color: var(--blue);
    border-color: var(--blue);
    background: rgba(30,144,255,0.05);
  }

  .who-visual {
    position: relative;
  }
  .who-stats-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
  .who-stat {
    background: #1a1a1a;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
  }
  .who-stat::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 2px; height: 0;
    background: var(--blue);
    transition: height 0.6s ease;
  }
  .who-stat:hover::before { height: 100%; }
  .who-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    color: var(--white);
    line-height: 1;
  }
  .who-stat-num span { color: var(--blue); }
  .who-stat-label {
    font-size: 13px; font-weight: 300;
    color: rgba(255,255,255,0.4);
    margin-top: 8px;
    letter-spacing: 1px;
  }

  /* Process section */
  .process {
    background: var(--dark);
    position: relative;
  }
  .process-header { margin-bottom: 80px; }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }
  .process-steps::after {
    content: '';
    position: absolute;
    top: 28px; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30,144,255,0.3) 20%, rgba(30,144,255,0.3) 80%, transparent);
    z-index: 0;
  }
  .process-step {
    padding: 0 30px 0 0;
    position: relative; z-index: 1;
  }
  .step-number {
    width: 56px; height: 56px;
    border: 1px solid rgba(30,144,255,0.3);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--blue);
    margin-bottom: 32px;
    background: var(--dark);
    position: relative;
    transition: all 0.4s;
  }
  .process-step:hover .step-number {
    background: var(--blue);
    color: var(--dark);
    box-shadow: 0 0 30px var(--blue-glow);
  }
  .step-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 12px;
  }
  .step-desc {
    font-weight: 300; font-size: 14px; line-height: 1.7;
    color: rgba(255,255,255,0.4);
  }

  /* Location section */
  .location-section {
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
  }
  .location-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }
  .location-map {
    position: relative;
    aspect-ratio: 1;
    max-width: 500px;
  }
  /* Stylized map */
  .map-visual {
    width: 100%; height: 100%;
    border: 1px solid rgba(30,144,255,0.1);
    position: relative;
    background: #0f0f0f;
    overflow: hidden;
  }
  .map-grid-lines {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(30,144,255,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(30,144,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  .map-zones {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
  }
  /* Seine-et-Marne zone */
  .zone-77 {
    position: absolute;
    width: 65%; height: 65%;
    border: 1px solid rgba(30,144,255,0.2);
    background: rgba(30,144,255,0.03);
    border-radius: 30% 40% 35% 45%;
    top: 25%; left: 20%;
    animation: zonePulse 4s ease-in-out infinite;
  }
  /* Paris zone */
  .zone-paris {
    position: absolute;
    width: 22%; height: 22%;
    border: 1px solid rgba(30,144,255,0.4);
    background: rgba(30,144,255,0.07);
    border-radius: 40%;
    top: 35%; left: 35%;
  }
  .zone-dot {
    position: absolute;
    width: 10px; height: 10px;
    background: var(--blue);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--blue);
  }
  .zone-dot.main { top: 50%; left: 45%; transform: translate(-50%,-50%); }
  .zone-dot.paris { top: 40%; left: 40%; transform: translate(-50%,-50%); }
  .zone-pulse {
    position: absolute;
    border: 1px solid rgba(30,144,255,0.4);
    border-radius: 50%;
    animation: dotPulse 2s ease-out infinite;
  }
  .zone-dot.main .zone-pulse { width: 30px; height: 30px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
  @keyframes dotPulse {
    0%{ transform: translate(-50%,-50%) scale(0.8); opacity: 1; }
    100%{ transform: translate(-50%,-50%) scale(2.5); opacity: 0; }
  }
  @keyframes zonePulse {
    0%,100%{ background: rgba(30,144,255,0.03); }
    50%{ background: rgba(30,144,255,0.06); }
  }
  .map-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    position: absolute;
  }
  .label-77 { bottom: 15%; right: 18%; }
  .label-paris { top: 30%; left: 28%; color: rgba(30,144,255,0.7); }
  .map-corner {
    position: absolute;
    width: 16px; height: 16px;
    border-color: rgba(30,144,255,0.5);
    border-style: solid;
    border-width: 0;
  }
  .map-corner.tl { top: 12px; left: 12px; border-top-width: 1px; border-left-width: 1px; }
  .map-corner.tr { top: 12px; right: 12px; border-top-width: 1px; border-right-width: 1px; }
  .map-corner.bl { bottom: 12px; left: 12px; border-bottom-width: 1px; border-left-width: 1px; }
  .map-corner.br { bottom: 12px; right: 12px; border-bottom-width: 1px; border-right-width: 1px; }

  .location-info .section-title { margin-bottom: 24px; }
  .location-desc {
    font-weight: 300; font-size: 17px; line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
  }
  .location-items {
    display: flex; flex-direction: column; gap: 20px;
  }
  .location-item {
    display: flex; align-items: flex-start; gap: 20px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: border-color 0.3s;
  }
  .location-item:hover { border-color: rgba(30,144,255,0.3); }
  .location-item-icon {
    width: 40px; height: 40px;
    border: 1px solid rgba(30,144,255,0.3);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--blue);
  }
  .location-item-text strong {
    display: block; font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--white); margin-bottom: 4px;
  }
  .location-item-text span {
    font-weight: 300; font-size: 14px;
    color: rgba(255,255,255,0.4);
  }

  /* CTA SECTION */
  .cta-section {
    background: var(--dark);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 160px 60px;
  }
  .cta-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(30,144,255,0.06) 0%, transparent 70%);
  }
  .cta-bg-lines {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(30,144,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(30,144,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(50px, 8vw, 110px);
    line-height: 0.9;
    position: relative; z-index: 1;
  }
  .cta-title .outline {
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
    color: #FFF;
  }
  .cta-sub {
    font-weight: 300; font-size: 18px;
    color: rgba(255,255,255,0.5);
    margin: 24px 0 48px;
    position: relative; z-index: 1;
  }
  .cta-btns { position: relative; z-index: 1; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

  /* FOOTER */
  footer {
    background: #111;
    padding: 60px;
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.05);
    flex-wrap: wrap; gap: 24px;
  }
  .footer-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px; letter-spacing: 4px;
    color: var(--white);
  }
  .footer-brand span { color: var(--blue); }
  .footer-links {
    display: flex; gap: 32px; list-style: none;
  }
  .footer-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--blue); }
  .footer-copy {
    font-size: 12px; color: rgba(255,255,255,0.2);
    font-weight: 300;
  }

  /* Reveal animations */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Ticker tape */
  .ticker {
    background: var(--blue);
    overflow: hidden;
    padding: 12px 0;
    position: relative;
    z-index: 10;
  }
  .ticker-inner {
    display: flex;
    animation: ticker 20s linear infinite;
    white-space: nowrap;
    gap: 0;
  }
  .ticker-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px; letter-spacing: 3px;
    color: var(--dark);
    padding: 0 40px;
    flex-shrink: 0;
  }
  .ticker-item .sep {
    display: inline-block;
    margin: 0 8px;
    opacity: 0.5;
  }
  @keyframes ticker {
    0%{ transform: translateX(0); }
    100%{ transform: translateX(-50%); }
  }

  /* Responsive */
  @media(max-width: 900px) {
    nav { padding: 20px 24px; }
    .nav-links { display: none; }
    section { padding: 80px 24px; }
    .formats-grid { grid-template-columns: 1fr; }
    .format-card.cinema { grid-row: auto; }
    .who-layout, .location-layout { grid-template-columns: 1fr; gap: 40px; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
    .process-steps::after { display: none; }
    footer { flex-direction: column; align-items: flex-start; gap: 20px; }
    .footer-links { flex-wrap: wrap; gap: 16px; }
  }
  @media(max-width: 600px) {
    .process-steps { grid-template-columns: 1fr; }
    .who-stats-grid { grid-template-columns: 1fr 1fr; }
    .hero-ctas { flex-direction: column; align-items: center; }
  }
