    /* ── GLOBAL STYLES ── */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    .mobile-stars-bar {
      display: none;
    }
    .desktop-phone-num {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .mobile-phone-txt {
      display: none;
    }
    body {
      font-family: 'Inter', sans-serif;
      color: #0F172A;
      background: #FFFFFF;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      --accent: #EAB308;
      --heroBg: url('IMG-PLOM/hero-bg-2.webp');
      --accentText: #0F172A;
      --accentLight: #FEF08A;
      --heroAccentColor: #EAB308;
    }
    .container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

    /* ── BUTTONS ── */
    .btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--accent); color: #0F172A; font-weight: 700; font-size: 16px;
      padding: 16px 32px; border: none; border-radius: 4px; cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-primary:hover { background: color-mix(in srgb, var(--accent) 85%, black); transform: translateY(-2px); }
    .btn-primary:active { transform: translateY(0); }

    .btn-secondary {
      display: inline-flex; align-items: center; gap: 10px;
      background: transparent; color: #0F172A; font-weight: 600; font-size: 15px;
      padding: 16px 32px; border: 2px solid #0F172A; border-radius: 4px;
      cursor: pointer; text-decoration: none; transition: background 0.2s, transform 0.15s;
    }
    .btn-secondary:hover { background: #0F172A; color: #FFFFFF; transform: translateY(-2px); }

    .section-label {
      font-size: 12px; font-weight: 600; text-transform: uppercase;
      letter-spacing: 0.08em; color: var(--accent); margin-bottom: 8px;
    }
    .section-title { font-size: 30px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 12px; }
    .section-desc { color: #64748B; font-size: 16px; max-width: 520px; margin-bottom: 48px; }

    @keyframes pulse-ring {
      0%   { box-shadow: 0 0 0 0 rgba(0,0,0,0.2); }
      70%  { box-shadow: 0 0 0 12px rgba(0,0,0,0); }
      100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
    }
    .btn-pulse { animation: pulse-ring 2s ease-out infinite; }

    /* ── ANIMATIONS D'APPARITION AU SCROLL ── */
    .reveal {
      opacity: 0;
      transform: translateY(24px) scale(0.99);
      transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
      transition-delay: calc(var(--index) * 0.08s);
      will-change: transform, opacity;
    }
    .reveal.active {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    @media (max-width: 768px) {
      .reveal {
        transform: translateY(16px) scale(0.99);
        transition: opacity 1.4s cubic-bezier(0.1, 0.9, 0.15, 1), transform 1.4s cubic-bezier(0.1, 0.9, 0.15, 1);
        transition-delay: calc(var(--index) * 0.06s);
      }
    }

    /* ── HEADER ── */
    header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(255,255,255,0.96); backdrop-filter: blur(8px);
      border-bottom: 4px solid var(--accent);
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    /* header.header-hidden {
      transform: translateY(-100%);
    } */
    header nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
    .logo {
      display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px;
      color: #0F172A; text-decoration: none; white-space: nowrap;
    }
    .logo-text { display: flex; align-items: center; }
    .logo-icon {
      width: 54px; height: 54px; background: var(--accent); border-radius: 8px;
      display: flex; align-items: center; justify-content: center; color: #0F172A;
    }
    .logo-accent { color: var(--accent); }
    .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
    .nav-links a { color: #0F172A; text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
    .nav-links a:hover { color: var(--accent); }

    @keyframes phone-vibrate {
      0%, 100% { transform: rotate(0deg); }
      25% { transform: rotate(-15deg); }
      50% { transform: rotate(0deg); }
      75% { transform: rotate(15deg); }
    }
    .btn-primary:hover .phone-icon,
    .nav-cta:hover .phone-icon {
      display: inline-block;
      animation: phone-vibrate 0.3s ease-in-out infinite;
    }
    .nav-cta {
      display: inline-flex; align-items: center; gap: 8px; background: var(--accent);
      color: #0F172A; font-weight: 700; font-size: 14px; padding: 10px 20px;
      border-radius: 4px; text-decoration: none;
      transition: opacity 0.2s;
    }
    .nav-cta:hover { opacity: 0.85; }
    .mobile-toggle { display: none; background: none; border: none; cursor: pointer; color: #0F172A; }
    .menu-close-icon { display: none; }
    .mobile-menu.open ~ * .menu-close-icon,
    body.mobile-menu-open .menu-close-icon { display: inline-block; }
    body.mobile-menu-open .menu-burger-icon { display: none; }



    /* ── HERO ── */
    .hero { padding: 180px 0 120px; background: #FFFFFF; background-image: var(--heroBg); background-size: cover; background-position: center; background-attachment: fixed; position: relative; }
    .hero-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.60); z-index: 1; }
    .hero-grid { display: grid; grid-template-columns: 1.6fr 0.4fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
    .hero-surtitre {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(245, 158, 11, 0.15); color: #FCD34D; font-size: 13px; font-weight: 600;
      padding: 6px 14px; border-radius: 20px; margin-bottom: 16px; border: 1px solid rgba(245, 158, 11, 0.3);
    }
    .hero h1 { font-size: 42px; font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 18px; color: #FFFFFF; }
    .hero-accent { color: var(--heroAccentColor); }
    .hero-sub { font-size: 17px; color: #CBD5E1; line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
    .hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
    .hero-badges { display: flex; gap: 24px; flex-wrap: wrap; }
    .hero-badge { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: #E2E8F0; }
    .hero-badge .iconify { color: var(--accent); font-size: 18px; }

    /* ── URGENCE ── */
    .urgence { background: #0F172A; padding: 22px 0; }
    .urgence-inner { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
    .urgence-text { color: #FFFFFF; font-size: 15px; font-weight: 500; }
    .urgence-text strong { color: var(--accent); }

    /* ── MARQUEE ── */
    .marquee-section { background: var(--accent); padding: 14px 0; overflow: hidden; }
    .marquee-track {
      display: flex; white-space: nowrap;
      animation: marquee-scroll 20s linear infinite;
      font-size: 14px; font-weight: 600; color: #0F172A;
    }
    @keyframes marquee-scroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* ── SERVICES ── */
    .services { padding: 80px 0; background: #F8FAFC; }
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .service-card {
      background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 4px;
      overflow: hidden;
    }
    .service-card-img { width: 100%; height: 180px; overflow: hidden; }
    .service-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
    .service-card:hover .service-card-img img { transform: scale(1.08); }
    .service-card-body { padding: 24px; }
    .service-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: #0F172A; }
    .service-card p { font-size: 14px; color: #64748B; line-height: 1.6; margin-bottom: 16px; }
    .service-cta {
      display: inline-flex; align-items: center; gap: 6px; font-size: 13px;
      font-weight: 600; color: var(--accent); text-decoration: none;
    }

    /* ── À PROPOS ── */
    .apropos { padding: 80px 0; background: #FFFFFF; }
    .apropos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .apropos-image {
      position: relative;
      max-width: 440px;
      width: 100%;
      margin: 0 auto;
      padding: 0 0 20px 20px;
    }
    .apropos-img-wrapper {
      position: relative;
      z-index: 2;
      border-radius: 0;
      overflow: hidden;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    }
    .apropos-img-wrapper img {
      width: 100%;
      height: auto;
      max-height: 560px;
      object-fit: cover;
      display: block;
    }
    .apropos-image::after {
      content: "";
      position: absolute;
      top: 20px;
      left: 0;
      width: calc(100% - 20px);
      height: calc(100% - 20px);
      border: 5px solid var(--accent);
      border-radius: 0;
      z-index: 1;
      pointer-events: none;
    }
    .apropos-content h2 { margin-bottom: 16px; }
    .apropos-text { font-size: 15px; color: #475569; line-height: 1.8; margin-bottom: 20px; }
    .apropos-list { list-style: none; margin-bottom: 28px; }
    .apropos-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #475569; padding: 6px 0; }
    .apropos-list .iconify { color: var(--accent); font-size: 18px; flex-shrink: 0; margin-top: 2px; }

    /* ── ZONES ── */
    .zones { padding: 80px 0; background: #FFFFFF; }
    .zones-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
    .zones-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 24px; }
    .zone-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #475569; padding: 8px 0; }
    .zone-item .iconify { color: var(--accent); font-size: 16px; flex-shrink: 0; }
    .zones-map {
      position: relative;
      width: 100%;
      aspect-ratio: 4 / 3;
      border-radius: 0;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 0;
    }
    .zones-map-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      border-radius: 0;
    }
    .zones-map-overlay {
      position: relative;
      z-index: 2;
      background: rgba(15, 23, 42, 0.75);
      backdrop-filter: blur(8px);
      border-top: 1px solid rgba(255, 255, 255, 0.15);
      padding: 20px;
      width: 100%;
      text-align: center;
      box-sizing: border-box;
    }
    .zones-map-title {
      font-size: 15px;
      font-weight: 500;
      color: #FFFFFF;
      margin-bottom: 4px;
    }
    .zones-map-desc {
      font-size: 13px;
      color: #CBD5E1;
      margin: 0;
    }

    /* ── PROCESSUS ── */
    .processus { padding: 80px 0; background: #0F172A; color: #FFFFFF; text-align: center; }
    .processus .section-desc { color: #94A3B8; margin-left: auto; margin-right: auto; }
    .processus .section-title { color: #FFFFFF; }
    .processus-accent { color: var(--accent); }
    .processus-timeline {
      position: relative;
      margin-top: 60px;
    }
    .timeline-line {
      position: absolute;
      top: 24px;
      left: 12.5%;
      right: 12.5%;
      height: 2px;
      background: #334155;
      z-index: 1;
    }
    .processus-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      position: relative;
      z-index: 2;
    }
    .processus-step {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .step-number {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #1E293B;
      color: #FFFFFF;
      font-size: 18px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      border: 3px solid #0F172A;
      box-shadow: 0 0 0 2px var(--accent);
      transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    }
    .processus-step:hover .step-number {
      transform: scale(1.1);
      background: var(--accent);
      color: #0F172A;
    }
    .processus-step h3 {
      font-size: 16px;
      font-weight: 700;
      color: #FFFFFF;
      margin-bottom: 12px;
    }
    .processus-step p {
      font-size: 13.5px;
      color: #94A3B8;
      line-height: 1.6;
      max-width: 240px;
      margin: 0 auto;
    }

    /* ── FAQ ── */
    .faq-section {
      background-color: #F8FAFC;
      padding: 100px 0 110px;
      position: relative;
      overflow: hidden;
    }
    .faq-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        repeating-linear-gradient(90deg,
          transparent 0px,
          transparent 119px,
          rgba(15, 23, 42, 0.025) 120px);
      pointer-events: none;
    }
    .faq-header {
      text-align: center;
      max-width: 680px;
      margin: 0 auto 72px;
      position: relative;
    }
    .faq-eyebrow {
      display: inline-flex;
      align-items: center,
      gap: 8px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }
    .faq-title {
      font-size: clamp(1.65rem, 3.2vw, 2.35rem);
      font-weight: 800;
      color: #0F172A;
      line-height: 1.22;
      margin-bottom: 18px;
      letter-spacing: -0.02em;
    }
    .faq-title-accent {
      color: var(--accent);
    }
    .faq-subtitle {
      font-size: 1.0rem;
      color: #64748B;
      line-height: 1.7;
    }
    .faq-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 64px;
      align-items: start;
      position: relative;
    }
    .faq-list {
      display: flex;
      flex-direction: column;
    }
    .faq-item {
      border-bottom: 1px solid #E2E8F0;
    }
    .faq-item:first-child {
      border-top: 1px solid #E2E8F0;
    }
    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      width: 100%;
      background: none;
      border: none;
      padding: 22px 0;
      cursor: pointer;
      text-align: left;
      font-size: 0.975rem;
      font-weight: 600;
      color: #0F172A;
      line-height: 1.5;
      border-radius: 0;
      transition: color 0.2s ease;
      outline: none;
    }
    .faq-question:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }
    .faq-question:hover {
      color: var(--accent);
    }
    .faq-question[aria-expanded="true"] {
      color: var(--accent);
    }
    .faq-q-inner {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
    .faq-q-num {
      flex-shrink: 0;
      width: 26px;
      height: 26px;
      border: 1.5px solid currentColor;
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.68rem;
      font-weight: 700;
      color: var(--accent);
      opacity: 0.55;
      margin-top: 1px;
      transition: opacity 0.2s, background 0.2s;
    }
    .faq-question[aria-expanded="true"] .faq-q-num {
      background: var(--accent);
      color: #fff;
      opacity: 1;
      border-color: var(--accent);
    }
    .faq-icon {
      flex-shrink: 0;
      color: #94A3B8;
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.2s ease;
    }
    .faq-question[aria-expanded="true"] .faq-icon {
      transform: rotate(180deg);
      color: var(--accent);
    }
    .faq-answer {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .faq-answer p {
      font-size: 0.925rem;
      line-height: 1.8;
      color: #475569;
      padding: 0 0 22px 40px;
    }

    /* ── COLONNE 2 — Image stylisée ── */
    .faq-visual {
      position: sticky;
      top: 96px;
    }

    .faq-image-wrapper {
      position: relative;
      display: block;
    }

    /* Cadre décoratif décalé */
    .faq-image-wrapper::before {
      content: "";
      position: absolute;
      inset: 0;
      border: 2px solid var(--accent);
      border-radius: 0;
      transform: translate(14px, 14px);
      z-index: 0;
      pointer-events: none;
      transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .faq-image-wrapper:hover::before {
      transform: translate(20px, 20px);
    }

    /* Bande accent verticale gauche */
    .faq-image-wrapper::after {
      content: "";
      position: absolute;
      left: -6px;
      top: 20%;
      height: 40%;
      width: 3px;
      background: var(--accent);
      z-index: 2;
      pointer-events: none;
      transition: height 0.4s ease, top 0.4s ease;
    }

    .faq-image-wrapper:hover::after {
      height: 60%;
      top: 10%;
    }

    .faq-image {
      position: relative;
      z-index: 1;
      width: 100%;
      aspect-ratio: 4 / 5;
      object-fit: cover;
      border-radius: 0;
      filter: brightness(0.9) saturate(1.1);
      transition: filter 0.4s ease, transform 0.45s ease;
      background: linear-gradient(145deg, #1e3a5f 0%, #2563EB 60%, #0f172a 100%);
    }

    .faq-image-wrapper:hover .faq-image {
      filter: brightness(1) saturate(1.2);
      transform: scale(1.02);
    }

    /* Badge glassmorphism */
    .faq-badge {
      position: absolute;
      bottom: 28px;
      left: -24px;
      z-index: 3;
      display: flex;
      align-items: center;
      gap: 12px;
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.6);
      border-radius: 0;
      padding: 14px 20px;
      max-width: 252px;
      box-shadow:
        0 8px 32px rgba(15, 23, 42, 0.14),
        0 2px 8px rgba(15, 23, 42, 0.06);
      animation: badge-float 3.5s ease-in-out infinite;
    }

    @keyframes badge-float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-5px); }
    }

    .faq-badge-icon {
      color: var(--accent);
      flex-shrink: 0;
    }

    .faq-badge-text {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .faq-badge-text strong {
      font-size: 0.8rem;
      font-weight: 700;
      color: #0F172A;
      line-height: 1.3;
    }

    .faq-badge-text span {
      font-size: 0.71rem;
      color: #64748B;
      font-weight: 400;
    }

    /* Pastille "en ligne" */
    .faq-badge-dot {
      display: inline-block;
      width: 7px;
      height: 7px;
      background: #22C55E;
      border-radius: 50%;
      margin-right: 5px;
      flex-shrink: 0;
      animation: pulse-dot 2s ease-in-out infinite;
    }

    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.6; transform: scale(0.8); }
    }

    /* Compteur de questions sous l'image */
    .faq-image-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 0 0;
      border-top: 1px solid #E2E8F0;
      margin-top: 18px;
    }

    .faq-image-meta-left {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .faq-image-meta strong {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--accent);
      line-height: 1;
    }

    .faq-image-meta span {
      font-size: 0.75rem;
      color: #94A3B8;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 600;
    }

    .faq-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent);
      color: #0F172A;
      font-size: 0.8rem;
      font-weight: 700;
      padding: 10px 18px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s ease, transform 0.15s ease;
      letter-spacing: 0.02em;
    }

    .faq-cta-btn:hover {
      background: color-mix(in srgb, var(--accent) 85%, black);
      transform: translateY(-2px);
    }

    .faq-cta-btn .iconify {
      transition: transform 0.2s ease;
    }

    .faq-cta-btn:hover .iconify {
      transform: translateX(3px);
    }

    /* ── Responsive FAQ ── */
    @media (max-width: 1024px) {
      .faq-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
      }
    }

    @media (max-width: 768px) {
      .faq-section {
        padding: 64px 0 72px;
      }

      .faq-grid {
        grid-template-columns: 1fr;
      }

      .faq-visual {
        order: -1;
        margin-bottom: 48px;
      }

      .faq-image-wrapper::before {
        transform: translate(10px, 10px);
      }

      .faq-image-wrapper:hover::before {
        transform: translate(14px, 14px);
      }

      .faq-badge {
        left: -12px;
        max-width: 200px;
        padding: 12px 16px;
      }
    }

    /* ── CTA ── */
    .cta-section { padding: 80px 0; background: #F8FAFC; }
    .cta-box {
      background: #0F172A; border-radius: 16px; padding: 64px; color: #FFFFFF;
      display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center;
    }
    .cta-box-left { text-align: left; }
    .cta-box-left h2 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
    .cta-box-left p { color: #94A3B8; font-size: 16px; margin-bottom: 36px; max-width: 480px; }
    .cta-buttons { display: flex; gap: 14px; justify-content: flex-start; flex-wrap: wrap; }
    .cta-info { display: flex; flex-direction: column; gap: 24px; border-left: 1px solid rgba(255,255,255,0.1); padding-left: 48px; }
    .cta-info-item { display: flex; align-items: center; gap: 16px; }
    .cta-info-icon { width: 48px; height: 48px; background: rgba(255,255,255,0.06); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--accentLight); }
    .cta-info-text p { font-size: 12px; color: #94A3B8; margin: 0; text-transform: uppercase; letter-spacing: 0.05em; }
    .cta-info-text h4 { font-size: 15px; font-weight: 600; color: #FFFFFF; margin: 0; }
    .cta-info-text a { font-size: 18px; font-weight: 700; color: var(--accentLight); text-decoration: none; transition: opacity 0.2s; }
    .cta-info-text a:hover { opacity: 0.85; }

    /* ── MODAL ── */
    .modal-overlay {
      display: none; position: fixed; inset: 0; z-index: 200;
      background: rgba(15,23,42,0); backdrop-filter: blur(0px);
      align-items: center; justify-content: center;
      transition: background 0.3s ease, backdrop-filter 0.3s ease;
    }
    .modal-overlay.open {
      display: flex;
      background: rgba(15,23,42,0.6); backdrop-filter: blur(4px);
    }
    .modal-overlay.visible { background: rgba(15,23,42,0.6); backdrop-filter: blur(4px); }
    .modal-box {
      background: #FFFFFF; border-radius: 16px; padding: 40px; max-width: 480px;
      width: 90%; position: relative; margin-top: 10vh;
      transform: translateY(24px) scale(0.97); opacity: 0;
      transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    }
    .modal-overlay.visible .modal-box { transform: translateY(0) scale(1); opacity: 1; }
    .modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; cursor: pointer; color: #94A3B8; }
    .modal-box h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
    .modal-box > p { color: #64748B; font-size: 14px; margin-bottom: 24px; }
    .form-group { margin-bottom: 16px; }
    .form-group label { font-size: 13px; font-weight: 500; display: block; margin-bottom: 6px; }
    .form-group input, .form-group select, .form-group textarea {
      width: 100%; padding: 12px 16px; border: 1px solid #E2E8F0; border-radius: 8px;
      font-size: 14px; font-family: Inter, sans-serif; outline: none;
      transition: border-color 0.2s; background: #FFFFFF; color: #0F172A;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
    .form-group textarea { resize: vertical; }

    /* ── FOOTER ── */
    footer {
      background: #0F172A;
      color: #FFFFFF;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 64px 0 32px;
    }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
    footer .logo { color: #FFFFFF; }
    .footer-about p { font-size: 13.5px; color: #94A3B8; line-height: 1.7; margin-top: 16px; max-width: 280px; }
    .footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; color: #FFFFFF; }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 10px; }
    .footer-col a { font-size: 13.5px; color: #94A3B8; text-decoration: none; transition: color 0.2s; }
    .footer-col a:hover { color: var(--accent); }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12.5px;
      color: #64748B;
    }

    /* ── TOAST ── */
    .toast {
      position: fixed; bottom: 24px; right: 24px; background: #0F172A; color: #FFFFFF;
      padding: 16px 24px; border-radius: 10px; font-size: 14px; font-weight: 500;
      transform: translateY(100px); opacity: 0; transition: all 0.4s; z-index: 1000;
      display: flex; align-items: center; gap: 8px;
    }
    .toast.show { transform: translateY(0); opacity: 1; }

    /* ── MOBILE MENU ── */
    .mobile-menu-overlay {
      position: fixed;
      top: 68px;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(15, 23, 42, 0);
      z-index: 98;
      pointer-events: none;
      transition: background-color 0.35s ease;
    }
    .mobile-menu-overlay.open {
      background: rgba(15, 23, 42, 0.4);
      pointer-events: auto;
    }
    .mobile-menu {
      position: fixed;
      top: 68px;
      left: 0;
      right: 0;
      background: #FFFFFF;
      border-bottom: 4px solid var(--accent);
      padding: 32px 24px;
      z-index: 99;
      transform: translateY(-20px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s;
      box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .mobile-menu.open {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
    .mobile-link {
      display: block;
      width: 100%;
      padding: 14px 0;
      font-size: 15px;
      font-weight: 600;
      color: #0F172A;
      text-decoration: none;
      border-bottom: 1px solid #F1F5F9;
      text-align: center;
      transition: color 0.2s;
    }
    .mobile-link:hover {
      color: var(--accent);
    }
    .mobile-phone-btn {
      display: inline-flex !important;
      align-items: center;
      justify-content: center;
      width: 280px !important;
      margin: 24px auto 0;
      padding: 16px 32px;
      font-size: 15px;
      font-weight: 700;
      border-radius: 4px;
      text-decoration: none;
      color: #0F172A;
    }
    body.mobile-menu-open > :not(header):not(.mobile-menu):not(.mobile-menu-overlay):not(style):not(script) {
      filter: blur(5px);
      transition: filter 0.35s ease;
      pointer-events: none;
    }

    /* ── HERO ANIMATIONS ── */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .animate-fade-in-up {
      opacity: 0;
      animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    .animate-delay-1 { animation-delay: 0.15s; }
    .animate-delay-2 { animation-delay: 0.3s; }
    .animate-delay-3 { animation-delay: 0.45s; }
    .animate-delay-4 { animation-delay: 0.6s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .hero { background-attachment: scroll; }
      .hero-grid, .apropos-grid { grid-template-columns: 1fr; gap: 40px; }
      .hero h1 { font-size: 34px; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .processus-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
      .timeline-line { display: none; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .cta-box { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px; }
      .cta-box-left { text-align: center; }
      .cta-box-left p { margin-left: auto; margin-right: auto; }
      .cta-buttons { justify-content: center; }
      .cta-info {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-left: 0;
        padding-top: 40px;
        align-items: flex-start;
        max-width: 340px;
        width: 100%;
        margin: 0 auto;
      }
      .cta-info-item {
        justify-content: flex-start;
        text-align: left;
        width: 100%;
      }
    }

    @media (max-width: 768px) {
      header {
        position: sticky !important;
        top: 0 !important;
      }
      .nav-links { display: none; }
      .nav-cta {
        display: flex !important; /* On l'affiche sur mobile */
        background: var(--accent) !important;
        color: #0F172A !important;
        padding: 8px 12px !important;
        border-radius: 4px !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        align-items: center !important;
        gap: 0 !important;
        white-space: nowrap !important;
        margin-right: 12px !important;
      }
      .nav-cta .desktop-phone-num {
        display: none !important;
      }
      .nav-cta .mobile-phone-txt {
        display: inline !important;
      }
      .mobile-stars-bar {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 6px;
        background-color: var(--accent);
        padding: 4px 0 !important;
        width: 100%;
        position: relative !important;
        z-index: 99;
        margin-top: -1px !important;
      }
      .mobile-stars-bar svg {
        fill: #0F172A !important;
      }
      .mobile-toggle { display: block; }
      .logo-text {
        font-size: 14px;
        flex-direction: column !important;
        align-items: flex-start !important;
        line-height: 1.0 !important;
        gap: 0 !important;
      }
      .logo-icon { width: 44px; height: 44px; }
      .hero-surtitre {
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        font-size: 11.5px;
        line-height: 1.4;
        padding: 6px 12px;
      }
      .hero { padding: 120px 0 60px; background-attachment: scroll; }
      .marquee-section { padding: 8px 0; }
      .marquee-track { font-size: 12px; animation-duration: 12s; }
      .hero h1 { font-size: 28px; }
      .services-grid { grid-template-columns: 1fr; }
      .zones-grid { grid-template-columns: 1fr; }
      .processus-grid { grid-template-columns: 1fr; gap: 32px; }
      .cta-box { padding: 40px 24px; }
      .cta-box h2 { font-size: 22px; }
      .footer-grid { grid-template-columns: 1fr; gap: 24px; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

      .hero-buttons,
      .services-buttons,
      .apropos-buttons,
      .zones-buttons,
      .cta-buttons {
        flex-direction: column !important;
        align-items: center !important;
        width: 100%;
        gap: 12px !important;
      }

      .hero-buttons .btn-primary,
      .hero-buttons .btn-secondary,
      .services-buttons .btn-primary,
      .services-buttons .btn-secondary,
      .apropos-buttons .btn-primary,
      .apropos-buttons .btn-secondary,
      .zones-buttons .btn-primary,
      .zones-buttons .btn-secondary,
      .cta-buttons .btn-primary,
      .cta-buttons .btn-secondary {
        width: 100% !important;
        max-width: 340px;
        justify-content: center;
        text-align: center;
      }
    }
    /* ── BOUTON FLOTTANT D'APPEL ── */
    .btn-flottant {
      position: fixed;
      bottom: 25px;
      right: 25px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--accent);
      color: var(--accentText);
      font-weight: 700;
      font-size: 16px;
      padding: 14px 20px;
      border-radius: 50px;
      text-decoration: none;
      z-index: 1000;
      transition: all 0.3s ease;
      border: 1px solid rgba(234, 179, 8, 0.2);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0px rgba(234, 179, 8, 0.7);
      }
      70% {
        box-shadow: 0 0 0 15px rgba(234, 179, 8, 0);
      }
      100% {
        box-shadow: 0 0 0 0px rgba(234, 179, 8, 0);
      }
    }

    .btn-flottant:hover {
      background: color-mix(in srgb, var(--accent) 85%, black);
      transform: translateY(-3px);
      box-shadow: 0 6px 30px rgba(234, 179, 8, 0.5);
      animation: none;
    }
    .btn-flottant .iconify {
      animation: ring 1.5s ease-in-out infinite;
    }
    @keyframes ring {
      0%, 100% { transform: rotate(0deg); }
      10%, 30% { transform: rotate(-10deg); }
      20%, 40% { transform: rotate(10deg); }
      50% { transform: rotate(0deg); }
    }
    @media (max-width: 768px) {
      .btn-flottant {
        bottom: 20px;
        right: 20px;
        padding: 12px 18px;
      }
      .btn-flottant span:not(.iconify) {
        display: none; /* Cache le numéro textuel sur mobile pour un bouton plus compact */
      }
    }

    /* CALLBACK POPUP */
    .callback-popup {
      position: fixed;
      right: 20px;
      top: 150px;
      background: #ffffff;
      border-right: 4px solid var(--accent, #EAB308);
      box-shadow: 0 8px 32px rgba(0,0,0,0.15);
      border-radius: 0;
      padding: 20px;
      z-index: 1000;
      min-width: 260px;
      display: none;
    }
    .close-popup {
      position: absolute;
      top: 8px;
      right: 10px;
      background: none;
      border: none;
      font-size: 20px;
      color: #64748b;
      cursor: pointer;
      padding: 5px;
      line-height: 1;
    }
    .close-popup:hover {
      color: var(--accent, #EAB308);
    }
    .callback-content h3 {
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: #0F172A;
      margin-bottom: 8px;
    }
    .callback-content p {
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      color: #64748b;
      margin-bottom: 15px;
    }
    .callback-input {
      width: 100%;
      padding: 10px;
      border: 1px solid #cbd5e1;
      border-radius: 0;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      margin-bottom: 12px;
    }
    .callback-btn {
      width: 100%;
      padding: 10px;
      background: var(--accent, #EAB308);
      color: var(--accentText, #0F172A);
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 700;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      text-transform: uppercase;
      transition: background-color 0.2s ease;
    }
    .callback-btn:hover {
      background: color-mix(in srgb, var(--accent) 85%, black);
    }

    @media (max-width: 768px) {
      .callback-popup {
        left: 10px;
        right: 10px;
        top: auto;
        bottom: 20px;
        transform: none;
        min-width: auto;
        border-right: 4px solid var(--accent, #EAB308);
        border-left: none;
      }
    }

    /* ── HERO TRUST ELEMENTS ── */
    .hero-trust-elements {
      display: flex;
      gap: 15px;
      align-items: center;
      margin-top: 24px;
    }
    @media (max-width: 1024px) {
      .hero-trust-elements {
        justify-content: center;
      }
    }
