:root {
    --navy-deep: #080E1C;
    --navy: #0C1529;
    --navy-mid: #12203B;
    --navy-light: #1A3050;
    --steel: #2A3E5F;
    --steel-light: #9DAFC8;
    --blue: #1E6FD9;
    --blue-bright: #3D96FF;
    --blue-deep: #0E4A9C;
    --orange: #F5A623;
    --orange-light: #FFD080;
    --orange-deep: #C77B00;
    --text: #E8EEF5;
    --text-muted: #7A8DA8;
    --line: rgba(160,180,210,0.12);
    --line-bright: rgba(160,180,210,0.22);
  }

  * { margin:0; padding:0; box-sizing:border-box; }
  img { max-width:100%; display:block; }
  a { text-decoration:none; color:inherit; }

  body {
    background: var(--navy-deep);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* ═══ FOND TEXTURÉ ACIER BROSSÉ ═══ */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
      /* Lignes diagonales acier brossé */
      repeating-linear-gradient(
        135deg,
        transparent 0, transparent 1px,
        rgba(180,200,230,0.04) 1px,
        rgba(180,200,230,0.04) 2px,
        transparent 2px, transparent 4px
      ),
      /* Dégradé bleu fort du haut */
      radial-gradient(ellipse 130% 60% at 50% 0%, rgba(30,111,217,0.30), transparent 70%),
      /* Bleu central diffus */
      radial-gradient(ellipse 100% 50% at 50% 40%, rgba(30,111,217,0.12), transparent 60%),
      /* Bleu en bas */
      radial-gradient(ellipse 130% 50% at 50% 100%, rgba(30,111,217,0.22), transparent 65%);
    pointer-events: none;
    z-index: 0;
  }

  body > * { position: relative; z-index: 1; }

  .container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }

  /* ═══ HEADER ═══ */
  header {
    /* au-dessus des contrôles Leaflet (z-index 1000) de la page Zone */
    position: sticky; top: 0; z-index: 2000;
    background: linear-gradient(180deg, rgba(8,14,28,0.95), rgba(8,14,28,0.85));
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--line);
    /* Reflet métallique en bas du header */
    box-shadow:
      0 1px 0 rgba(245,166,35,0.08),
      0 4px 20px rgba(0,0,0,0.5);
    /* Stabilise la couche de rendu : supprime le clignotement du flou au scroll */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.85rem 2rem; max-width: 1180px; margin: 0 auto;
  }

  .brand { display: flex; align-items: center; gap: 0.7rem; }
  .brand-text {
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #fff 20%, var(--steel-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  nav { display: flex; gap: 0.3rem; }
  nav a {
    font-size: 0.82rem; font-weight: 400; color: var(--steel-light);
    padding: 0.5rem 0.85rem; border-radius: 8px; transition: all 0.2s;
    letter-spacing: 0.02em;
  }
  nav a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
  nav a.active { color: var(--orange); }

  .cta-call {
    display: inline-flex; align-items: center; gap: 0.55rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-deep));
    color: #1a1408; border-radius: 999px;
    font-weight: 600; font-size: 0.88rem;
    box-shadow:
      0 0 20px rgba(245,166,35,0.35),
      0 0 60px rgba(245,166,35,0.15),
      inset 0 1px 0 rgba(255,255,255,0.25);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .cta-call:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 28px rgba(245,166,35,0.5), 0 0 80px rgba(245,166,35,0.2), inset 0 1px 0 rgba(255,255,255,0.3);
  }
  .cta-call svg { width: 15px; height: 15px; }

  /* Voyant d'indisponibilité dans la barre du haut */
  .header-availability {
    display: inline-flex; align-items: center; gap: 0.45rem;
    margin-right: 0.9rem;
    font-size: 0.78rem; font-weight: 500;
    letter-spacing: 0.02em;
    color: #FCA5A5;
    white-space: nowrap;
  }
  .header-availability .ha-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #EF4444;
    box-shadow: 0 0 12px #EF4444;
    animation: pulse 2s infinite;
    flex-shrink: 0;
  }
  @media (max-width: 880px) {
    .header-availability .ha-text { display: none; }
    .header-availability { margin-right: 0.6rem; }
  }


  /* ═══ BOUTON MENU MOBILE ═══ */
  .menu-toggle{
    display:none; flex-direction:column; justify-content:center; gap:5px;
    width:42px; height:42px; margin-left:0.7rem; padding:0 9px;
    background:rgba(255,255,255,0.04);
    border:1px solid var(--line-bright); border-radius:11px;
    cursor:pointer; flex-shrink:0; transition:background .2s, border-color .2s;
    -webkit-tap-highlight-color:transparent;
  }
  .menu-toggle:hover{ background:rgba(255,255,255,0.07); border-color:var(--orange); }
  .menu-toggle span{
    display:block; height:2px; width:100%; border-radius:2px;
    background:var(--steel-light);
    transition:transform .28s cubic-bezier(.16,1,.3,1), opacity .2s, background .2s;
    transform-origin:center;
  }
  .menu-toggle.open{ border-color:var(--orange); }
  .menu-toggle.open span{ background:var(--orange); }
  .menu-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2){ opacity:0; }
  .menu-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

  /* ═══ HERO ═══ */
  .hero {
    padding: 5rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 94vh;
    display: flex;
    align-items: center;
  }

  /* Halo bleu structurel */
  .hero::before {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 80%; height: 140%;
    background: radial-gradient(circle, rgba(30,111,217,0.14), transparent 55%);
    pointer-events: none;
  }

  /* Halo orange complémentaire */
  .hero::after {
    content: '';
    position: absolute;
    bottom: -20%; left: -5%;
    width: 50%; height: 60%;
    background: radial-gradient(circle, rgba(245,166,35,0.08), transparent 50%);
    pointer-events: none;
  }

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

  .hero-meta {
    display: flex; align-items: center; gap: 0.8rem;
    margin-bottom: 2.2rem;
    font-size: 0.72rem; text-transform: uppercase;
    letter-spacing: 0.22em; color: var(--text-muted); font-weight: 500;
  }
  .hero-meta .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #4ADE80;
    box-shadow: 0 0 12px #4ADE80;
    animation: pulse 2s infinite;
  }
  .hero-meta .dot.off {
    background: #EF4444;
    box-shadow: 0 0 12px #EF4444;
  }
  .hero-meta.unavailable {
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    color: var(--text);
    font-weight: 600;
  }
  .hero-meta.unavailable .sep { width: 32px; background: var(--steel-light); }
  @keyframes pulse {
    0%,100% { opacity:1; transform:scale(1); }
    50% { opacity:0.4; transform:scale(1.5); }
  }
  .hero-meta .sep { width: 24px; height: 1px; background: var(--steel); }

  .hero-display {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-variation-settings: "SOFT" 50;
    font-size: clamp(3.2rem, 7.5vw, 6rem);
    line-height: 0.95;
    letter-spacing: -0.025em;
    margin-bottom: 2rem;
    /* Dégradé texte métallique */
    background: linear-gradient(180deg, #FFFFFF 0%, #C8D4E2 60%, #8A9AB8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hero-display .accent {
    font-style: italic;
    font-weight: 300;
    font-variation-settings: "SOFT" 100;
    background: linear-gradient(135deg, var(--orange) 10%, var(--orange-light) 50%, var(--orange) 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(245,166,35,0.3));
    position: relative;
    display: inline-block;
  }

  .hero-display .accent::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -0.05em;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light), transparent);
    animation: drawLine 1.5s 0.6s cubic-bezier(0.16,1,0.3,1) both;
  }
  @keyframes drawLine { from { transform: scaleX(0); transform-origin: left; } to { transform: scaleX(1); transform-origin: left; } }

  .hero-lead {
    font-size: 1.15rem; color: var(--steel-light); line-height: 1.65;
    max-width: 54ch; margin-bottom: 2.5rem;
  }
  .hero-lead strong { color: var(--text); font-weight: 500; }

  .hero-cta {
    display: flex; gap: 1rem; flex-wrap: wrap; align-items: center;
    margin-bottom: 4rem;
  }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-deep));
    color: #1a1408; border-radius: 999px; font-weight: 600; font-size: 1rem;
    box-shadow:
      0 4px 16px rgba(245,166,35,0.4),
      0 0 60px rgba(245,166,35,0.15),
      inset 0 1px 0 rgba(255,255,255,0.3);
    transition: all 0.2s;
    text-shadow: 0 1px 0 rgba(255,255,255,0.2);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245,166,35,0.5), 0 0 80px rgba(245,166,35,0.2), inset 0 1px 0 rgba(255,255,255,0.4);
  }
  .btn-primary svg { width: 18px; height: 18px; }

  .btn-secondary {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 1rem 1.8rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--line-bright);
    color: var(--text); border-radius: 999px; font-size: 1rem;
    transition: all 0.2s;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  }
  .btn-secondary:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--orange);
    box-shadow: 0 0 20px rgba(245,166,35,0.15), inset 0 1px 0 rgba(255,255,255,0.08);
  }
  .btn-secondary svg { width: 16px; height: 16px; }

  .availability {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.85rem; color: var(--text-muted);
  }
  .availability .live-dot {
    width: 8px; height: 8px; background: #4ADE80; border-radius: 50%;
    box-shadow: 0 0 14px #4ADE80; animation: pulse 2s infinite;
  }
  .availability.off .live-dot {
    background: #EF4444;
    box-shadow: 0 0 14px #EF4444;
  }

  /* ═══ STATS BAR ═══ */
  .stats-bar {
    display: grid; grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line-bright);
    padding-top: 2rem;
    position: relative;
  }

  /* Reflet métallique sur la barre */
  .stats-bar::before {
    content: '';
    position: absolute;
    top: -1px; left: 5%; right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue), var(--orange), transparent);
  }

  .stat-item { padding: 0 1.5rem; }
  .stat-item:not(:first-child) { border-left: 1px solid var(--line); }

  .stat-value {
    font-family: 'Fraunces', serif;
    font-style: italic; font-weight: 300;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    line-height: 1; margin-bottom: 0.35rem; display: block;
    color: var(--orange);
    text-shadow: 0 0 20px rgba(245,166,35,0.2);
  }
  .stat-label {
    font-size: 0.68rem; text-transform: uppercase;
    letter-spacing: 0.14em; color: var(--text-muted); font-weight: 500; line-height: 1.4;
  }

  /* ═══ MANIFESTO ═══ */
  .manifesto {
    padding: 5rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    background: linear-gradient(180deg, rgba(12,21,41,0.5), rgba(8,14,28,0.5));
  }

  /* Ligne de lumière en haut */
  .manifesto::before {
    content: '';
    position: absolute;
    top: -1px; left: 20%; right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30,111,217,0.4), transparent);
  }

  .manifesto-text {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    line-height: 1.45; text-align: center;
    max-width: 24ch; margin: 0 auto;
    background: linear-gradient(180deg, #FFFFFF 0%, #A0B0C8 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }
  .manifesto-text strong {
    color: var(--orange);
    font-style: normal; font-weight: 500;
  }
  .manifesto-attr {
    text-align: center; margin-top: 1.8rem;
    font-size: 0.68rem; text-transform: uppercase;
    letter-spacing: 0.25em; color: var(--text-muted); font-weight: 500;
  }

  /* ═══ SECTION HEAD ÉDITORIAL ═══ */
  .section-head-ed {
    display: grid; grid-template-columns: 1fr 2.2fr;
    gap: 4rem; align-items: end;
    margin-bottom: 4rem; padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--line);
    position: relative;
  }

  /* Reflet */
  .section-head-ed::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; width: 180px; height: 1px;
    background: linear-gradient(90deg, var(--blue), var(--orange), transparent);
  }

  .section-num {
    font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
    font-size: 4.5rem; line-height: 0.85; display: block;
    background: linear-gradient(180deg, var(--blue-bright) 0%, rgba(30,111,217,0.3) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }
  .section-tag {
    display: block; font-size: 0.68rem; text-transform: uppercase;
    letter-spacing: 0.22em; color: var(--text-muted); font-weight: 500; margin-top: 0.5rem;
  }

  .section-head-ed h2 {
    font-family: 'Fraunces', serif; font-weight: 400;
    font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.15;
    margin-bottom: 0.8rem;
    background: linear-gradient(180deg, #fff, #B0BFD4);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }
  .section-head-ed p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; max-width: 58ch; }

  /* ═══ CARDS PREMIUM ═══ */
  .card-premium {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  /* Bordure avec dégradé */
  .card-premium::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(
      135deg,
      rgba(30,111,217,0.3) 0%, rgba(160,180,210,0.08) 30%, rgba(245,166,35,0.2) 70%, rgba(30,111,217,0.25) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
  }

  .card-premium-inner {
    background:
      /* Texture acier brossé */
      repeating-linear-gradient(
        135deg,
        transparent 0, transparent 1px,
        rgba(180,200,230,0.03) 1px,
        rgba(180,200,230,0.03) 2px,
        transparent 2px, transparent 5px
      ),
      /* Reflet haut-gauche */
      radial-gradient(ellipse 50% 40% at 20% 10%, rgba(255,255,255,0.04), transparent 50%),
      /* Fond */
      linear-gradient(145deg, var(--navy-mid) 0%, var(--navy) 40%, var(--navy-deep) 100%);
    padding: 2.2rem 2rem;
    border-radius: 20px;
    /* Embossage */
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.06),
      inset 0 -1px 0 rgba(0,0,0,0.4),
      0 8px 32px rgba(0,0,0,0.4);
  }

  .card-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  }

  .card-premium:hover::before {
    background: linear-gradient(
      135deg,
      rgba(245,166,35,0.4) 0%,
      rgba(160,180,210,0.12) 30%,
      rgba(245,166,35,0.25) 70%,
      rgba(160,180,210,0.3) 100%
    );
  }

  /* Card icon */
  .card-icon-sq {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.4rem;
    background: linear-gradient(135deg, var(--blue), var(--blue-deep));
    box-shadow:
      0 4px 16px rgba(30,111,217,0.4),
      inset 0 1px 0 rgba(255,255,255,0.15),
      inset 0 -1px 0 rgba(0,0,0,0.3);
    position: relative;
  }
  .card-icon-sq svg { width: 22px; height: 22px; color: white; }

  .card-premium h3 {
    font-family: 'Fraunces', serif; font-weight: 400;
    font-size: 1.3rem; margin-bottom: 0.5rem;
    background: linear-gradient(180deg, #fff, #C0CDE0);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }

  .card-premium p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }

  .card-premium .price-tag {
    font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 300;
    margin-top: 1.2rem; display: inline-block;
    color: var(--blue-bright);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(245,166,35,0.2));
  }

  .services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
    gap: 1.5rem;
  }

  /* ═══ PROCESS TIMELINE ═══ */
  section.process { padding: 5rem 0; }

  .timeline-row {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; margin-top: 3rem; position: relative;
  }

  /* Ligne connectrice avec effet lumineux */
  .timeline-row::before {
    content: '';
    position: absolute;
    top: 38px; left: 8%; right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(245,166,35,0.4) 15%, rgba(245,166,35,0.4) 85%, transparent 100%);
  }
  .timeline-row::after {
    content: '';
    position: absolute;
    top: 37px; left: 8%; right: 8%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(245,166,35,0.1) 15%, rgba(245,166,35,0.1) 85%, transparent 100%);
    filter: blur(2px);
  }

  .step { text-align: center; position: relative; z-index: 1; padding: 0 1rem; }

  .step-marker {
    width: 76px; height: 76px;
    border-radius: 50%;
    margin: 0 auto 1.4rem;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    background:
      radial-gradient(circle at 30% 30%, rgba(255,255,255,0.06), transparent 50%),
      linear-gradient(145deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
    border: 1px solid var(--line-bright);
    box-shadow:
      0 0 20px rgba(245,166,35,0.1),
      0 8px 24px rgba(0,0,0,0.5),
      inset 0 1px 0 rgba(255,255,255,0.08),
      inset 0 -1px 0 rgba(0,0,0,0.3);
  }

  .step-marker::after {
    content: '';
    position: absolute; inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(245,166,35,0.15);
    transition: all 0.3s;
  }
  .step:hover .step-marker::after {
    inset: -10px;
    border-color: rgba(245,166,35,0.35);
    box-shadow: 0 0 30px rgba(245,166,35,0.1);
  }

  .step-marker svg { width: 28px; height: 28px; color: var(--orange); }

  .step-tag {
    font-family: 'Fraunces', serif; font-style: italic;
    font-size: 0.82rem; color: var(--orange); margin-bottom: 0.3rem; display: block;
  }
  .step h4 {
    font-family: 'Fraunces', serif; font-size: 1.05rem;
    font-weight: 400; margin-bottom: 0.4rem; color: var(--text);
  }
  .step p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; max-width: 22ch; margin: 0 auto; }

  /* ═══ VS COMPARISON ═══ */
  .versus {
    display: grid; grid-template-columns: 1fr auto 1fr;
    border-radius: 24px; overflow: hidden;
    position: relative;
  }

  .versus::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(160,180,210,0.2), rgba(160,180,210,0.06), rgba(245,166,35,0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }

  .vs-col {
    padding: 2.5rem 2.2rem;
    background:
      repeating-linear-gradient(135deg, transparent 0, transparent 2px, rgba(180,200,230,0.02) 2px, rgba(180,200,230,0.02) 3px, transparent 3px, transparent 6px),
      linear-gradient(145deg, var(--navy-mid), var(--navy-deep));
  }

  .vs-col.win {
    background:
      repeating-linear-gradient(135deg, transparent 0, transparent 2px, rgba(245,166,35,0.02) 2px, rgba(245,166,35,0.02) 3px, transparent 3px, transparent 6px),
      radial-gradient(ellipse 80% 60% at 60% 20%, rgba(245,166,35,0.06), transparent),
      linear-gradient(145deg, var(--navy-mid), var(--navy-deep));
  }

  .vs-badge-col {
    display: flex; align-items: center; justify-content: center;
    padding: 0 1rem;
    background: linear-gradient(180deg, var(--navy-mid), var(--navy-deep));
    position: relative;
  }
  .vs-badge-col::before {
    content: '';
    position: absolute;
    top: 8%; bottom: 8%;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--line-bright), transparent);
  }

  .vs-badge {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-deep));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Fraunces', serif; font-style: italic;
    font-size: 1.4rem; color: #1a1408; font-weight: 300;
    box-shadow:
      0 0 24px rgba(245,166,35,0.4),
      0 4px 16px rgba(0,0,0,0.3),
      inset 0 1px 0 rgba(255,255,255,0.3);
    position: relative; z-index: 1;
  }

  .vs-tag {
    display: inline-block;
    font-size: 0.65rem; text-transform: uppercase;
    letter-spacing: 0.2em; font-weight: 600;
    padding: 0.35rem 0.9rem; border-radius: 999px; margin-bottom: 1.2rem;
  }
  .vs-col:not(.win) .vs-tag {
    background: rgba(231,76,60,0.08); color: #E78580;
    border: 1px solid rgba(231,76,60,0.2);
  }
  .vs-col.win .vs-tag {
    background: rgba(245,166,35,0.1); color: var(--orange);
    border: 1px solid rgba(245,166,35,0.3);
  }

  .vs-col h3 {
    font-family: 'Fraunces', serif; font-size: 1.25rem;
    font-weight: 400; margin-bottom: 1.5rem; color: var(--text);
  }

  .vs-list { list-style: none; }
  .vs-list li {
    padding: 0.65rem 0 0.65rem 1.8rem;
    position: relative; font-size: 0.9rem; color: var(--steel-light);
    line-height: 1.5; border-bottom: 1px solid var(--line);
  }
  .vs-list li:last-child { border-bottom: none; }
  .vs-col:not(.win) .vs-list li::before {
    content: '✕'; position: absolute; left: 0; top: 0.65rem;
    color: #E78580; font-weight: 700; font-size: 0.9rem;
  }
  .vs-col.win .vs-list li::before {
    content: '✓'; position: absolute; left: 0; top: 0.65rem;
    color: var(--orange); font-weight: 700; font-size: 1rem;
  }

  /* ═══ CTA BANNER ═══ */
  .cta-banner {
    position: relative; border-radius: 28px;
    padding: 4.5rem 3rem; text-align: center;
    overflow: hidden;
    background:
      repeating-linear-gradient(135deg, transparent 0, transparent 3px, rgba(180,200,230,0.03) 3px, rgba(180,200,230,0.03) 4px, transparent 4px, transparent 8px),
      radial-gradient(ellipse 50% 80% at 0% 50%, rgba(45,110,200,0.28), transparent 65%),
      radial-gradient(ellipse 40% 60% at 15% 40%, rgba(30,90,180,0.22), transparent 55%),
      radial-gradient(ellipse 55% 70% at 100% 50%, rgba(245,166,35,0.10), transparent 65%),
      linear-gradient(to right, #163668, #0E2448, #1A1410);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.08),
      inset 0 -1px 0 rgba(0,0,0,0.3),
      0 20px 60px rgba(0,0,0,0.5);
  }

  .cta-banner::before {
    content: '';
    position: absolute; inset: 0; border-radius: 28px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(30,111,217,0.45), rgba(160,180,210,0.1), rgba(245,166,35,0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }

  .cta-banner-bg { display: none; }
  .cta-banner > * { position: relative; z-index: 1; }

  .cta-banner .eyebrow {
    font-size: 0.7rem; text-transform: uppercase;
    letter-spacing: 0.22em; color: var(--orange); font-weight: 500;
  }

  .cta-banner h2 {
    font-family: 'Fraunces', serif; font-weight: 400;
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 1rem 0; line-height: 1.15;
    background: linear-gradient(180deg, #fff, #B0BFD4);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }
  .cta-banner h2 em {
    font-style: italic; font-weight: 400;
    color: var(--blue-bright);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }

  .cta-banner p { color: var(--steel-light); margin-bottom: 2rem; max-width: 45ch; margin-left: auto; margin-right: auto; }

  /* ═══ FOOTER ═══ */
  footer {
    border-top: 1px solid var(--line);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    background: linear-gradient(180deg, var(--navy), var(--navy-deep));
    position: relative;
  }
  footer::before {
    content: '';
    position: absolute;
    top: -1px; left: 15%; right: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245,166,35,0.3), transparent);
  }

  .footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem; margin-bottom: 3rem;
  }
  .footer-brand-text {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, var(--steel-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }
  .footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; max-width: 30ch; }
  .footer-col h4 {
    font-size: 0.68rem; text-transform: uppercase;
    letter-spacing: 0.2em; font-weight: 600;
    color: var(--blue-bright);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 0.6rem; }
  .footer-col a { color: var(--steel-light); font-size: 0.9rem; transition: color 0.2s; }
  .footer-col a:hover { color: var(--orange); }

  .footer-bottom {
    border-top: 1px solid var(--line);
    padding-top: 2rem;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.78rem; color: var(--text-muted);
    flex-wrap: wrap; gap: 1rem;
  }
  .baseline { display: flex; gap: 1.5rem; }
  .baseline span {
    text-transform: uppercase; letter-spacing: 0.18em;
    font-size: 0.68rem; font-weight: 500; color: var(--text-muted);
  }
  .baseline span:not(:last-child)::after {
    content: '·'; color: var(--orange); margin-left: 1.5rem;
  }

  /* ═══ PROMESSES ═══ */
  .promesses-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem; margin-top: 3rem;
  }

  .promesse {
    position: relative;
    padding: 2.5rem 1.5rem 2rem;
    border-top: 2px solid;
    border-image: linear-gradient(90deg, var(--orange), var(--orange-light)) 1;
  }

  .promesse::before {
    content: '"';
    position: absolute; top: 0.5rem; left: 0;
    font-family: 'Fraunces', serif; font-size: 5rem; font-weight: 300;
    background: linear-gradient(180deg, var(--orange), rgba(245,166,35,0.2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    line-height: 1;
  }

  .promesse-quote {
    font-family: 'Fraunces', serif; font-style: italic;
    font-weight: 300; font-variation-settings: "SOFT" 70;
    font-size: 1.35rem; line-height: 1.35;
    margin-bottom: 1.2rem;
    background: linear-gradient(180deg, #fff, #C0CDE0);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }
  .promesse-body { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.2rem; }
  .promesse-label {
    font-size: 0.68rem; text-transform: uppercase;
    letter-spacing: 0.22em; font-weight: 600;
    color: var(--blue-bright);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }

  /* ═══ ZONES ═══ */
  .zones-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 0.5rem; margin-top: 2rem;
  }
  .zone-item {
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem; color: var(--steel-light);
    display: flex; align-items: center; gap: 0.6rem;
    background: rgba(255,255,255,0.015);
    border: 1px solid var(--line);
    transition: all 0.2s;
  }
  .zone-item::before {
    content: ''; width: 5px; height: 5px;
    border-radius: 50%; background: var(--orange);
    box-shadow: 0 0 8px var(--orange);
  }
  .zone-item:hover { border-color: var(--orange); color: var(--text); }

  @media (max-width: 880px) {
    .hero { min-height: auto; padding: 3rem 0 4rem; }
    .stats-bar { grid-template-columns: 1fr 1fr; gap: 1.5rem 0; }
    .stat-item:nth-child(3) { border-left: none; }
    .section-head-ed { grid-template-columns: 1fr; gap: 1.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .timeline-row { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .timeline-row::before, .timeline-row::after { display: none; }
    .versus { grid-template-columns: 1fr; }
    .vs-badge-col { padding: 1rem; }
    .vs-badge-col::before { display: none; }
    .promesses-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    nav { display: none; }
  }

  @keyframes fadeUp {
    from { opacity:0; transform:translateY(16px); }
    to { opacity:1; transform:translateY(0); }
  }
  .reveal { animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) both; }
  .r1 { animation-delay: 0.05s; }
  .r2 { animation-delay: 0.15s; }
  .r3 { animation-delay: 0.25s; }
  .r4 { animation-delay: 0.35s; }
  .r5 { animation-delay: 0.5s; }
  /* ═══ TARIFS ═══ */
  .tarif-block{
    border-radius:20px;overflow:hidden;margin-bottom:2rem;position:relative;
  }
  .tarif-block::before{
    content:'';position:absolute;inset:0;border-radius:20px;padding:1px;
    background:linear-gradient(135deg,rgba(30,111,217,0.3),rgba(160,180,210,0.08),rgba(245,166,35,0.2));
    -webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;mask-composite:exclude;pointer-events:none;z-index:1;
  }
  .tarif-header{
    padding:1.5rem 2rem;
    background:
      repeating-linear-gradient(135deg,transparent 0,transparent 1px,rgba(180,200,230,0.025) 1px,rgba(180,200,230,0.025) 2px,transparent 2px,transparent 5px),
      radial-gradient(ellipse 50% 40% at 20% 10%,rgba(255,255,255,0.03),transparent 50%),
      linear-gradient(145deg,var(--navy-mid),var(--navy));
    border-bottom:1px solid var(--line);
  }
  .tarif-header h3{
    font-family:'Fraunces',serif;font-weight:400;font-size:1.25rem;color:var(--text);margin:0;
  }
  .tarif-list{
    background:
      repeating-linear-gradient(135deg,transparent 0,transparent 1px,rgba(180,200,230,0.02) 1px,rgba(180,200,230,0.02) 2px,transparent 2px,transparent 5px),
      linear-gradient(145deg,var(--navy-mid),var(--navy),var(--navy-deep));
  }
  .tarif-row{
    display:flex;justify-content:space-between;align-items:baseline;
    padding:1.1rem 2rem;border-bottom:1px solid var(--line);gap:1rem;
  }
  .tarif-row:last-child{border-bottom:none}
  .tarif-label{font-size:.98rem;color:var(--text);line-height:1.5;display:block}
  .tarif-detail{font-size:.83rem;color:var(--text-muted);margin-top:.2rem;display:block}
  .tarif-price{
    font-family:'Fraunces',serif;font-size:1.2rem;font-weight:400;
    color:var(--orange);white-space:nowrap;text-shadow:0 0 12px rgba(245,166,35,0.15);
  }
  @media(max-width:640px){
    .tarif-header{padding:1.2rem 1.3rem}
    .tarif-row{padding:.85rem 1.3rem;flex-direction:column;gap:.3rem}
    .tarif-price{align-self:flex-start}
  }

  /* ═══ SECTION TAG (pages internes) ═══ */
  .section-tag{
    font-size:.68rem;text-transform:uppercase;letter-spacing:.22em;
    color:var(--text-muted);font-weight:500;
  }

  /* ═══ RESPONSIVE NAV ═══ */
  @media(max-width:880px){
    .header-inner{ position:relative; padding:0.7rem 1.1rem; gap:0.5rem; }
    .menu-toggle{ display:flex; width:40px; height:40px; margin-left:0.45rem; flex-shrink:0; }

    /* Le logo porte un style inline (height:52px) : surcharge nécessaire */
    .brand{ min-width:0; flex-shrink:1; }
    .brand svg{ height:38px !important; }

    /* Le numéro ne doit jamais casser sur deux lignes */
    .cta-call{
      padding:0.55rem 0.95rem; font-size:0.8rem;
      white-space:nowrap; flex-shrink:0;
      box-shadow:0 0 14px rgba(245,166,35,0.32), inset 0 1px 0 rgba(255,255,255,0.25);
    }
    .cta-call svg{ width:14px; height:14px; }
    nav{
      display:none;
      position:absolute; top:100%; left:0; right:0;
      flex-direction:column; gap:0;
      padding:0.5rem 1.2rem 1rem;
      background:linear-gradient(180deg, rgba(10,17,33,0.99), rgba(8,14,28,0.99));
      -webkit-backdrop-filter:blur(24px) saturate(180%);
      backdrop-filter:blur(24px) saturate(180%);
      border-bottom:1px solid var(--line-bright);
      box-shadow:0 18px 40px rgba(0,0,0,0.55);
    }
    nav.open{ display:flex; animation:navDrop .26s cubic-bezier(.16,1,.3,1) both; }
    nav a{
      font-size:1rem; padding:0.95rem 0.6rem; border-radius:10px;
      border-bottom:1px solid var(--line);
    }
    nav a:last-child{ border-bottom:none; }
    nav a.active{ color:var(--orange); background:rgba(245,166,35,0.06); }
    @keyframes navDrop{ from{opacity:0; transform:translateY(-10px);} to{opacity:1; transform:translateY(0);} }
    .hero{min-height:auto;padding:3rem 0 4rem}
    .stats-bar{grid-template-columns:1fr 1fr;gap:1.5rem 0}
    .stat-item:nth-child(3){border-left:none}
    .section-head-ed{grid-template-columns:1fr;gap:1.5rem}
    .services-grid{grid-template-columns:1fr}
    .timeline-row{grid-template-columns:1fr 1fr;gap:2rem}
    .timeline-row::before,.timeline-row::after{display:none}
    .promesses-grid{grid-template-columns:1fr}
    .footer-grid{grid-template-columns:1fr 1fr;gap:2rem}
  }

  /* ═══ TRÈS PETITS ÉCRANS ═══ */
  @media(max-width:400px){
    .header-inner{ padding:0.6rem 0.9rem; }
    .brand svg{ height:32px !important; }
    .cta-call{ font-size:0.74rem; padding:0.5rem 0.8rem; gap:0.4rem; }
    .menu-toggle{ width:38px; height:38px; margin-left:0.35rem; }
  }

  /* ═══ BANDEAU HERO EN MOBILE ═══ */
  @media(max-width:640px){
    .hero-meta{
      flex-wrap:wrap; gap:0.45rem 0.7rem;
      font-size:0.68rem; letter-spacing:0.16em;
      margin-bottom:1.8rem;
    }
    .hero-meta span{ white-space:nowrap; }
    .hero-meta .sep{ display:none; }
  }
