/* ────────────────────────────────────────────────
       1. VARIABLES & RESET
       ──────────────────────────────────────────────── */
    :root {
      /* Couleurs primaires */
      --primary:       #0284c7;
      --primary-dark:  #0369a1;
      --primary-light: #38bdf8;
      --primary-pale:  #e0f2fe;

      /* Couleurs secondaires */
      --secondary:    #f59e0b;
      --secondary-lt: #fbbf24;

      /* Neutres */
      --white:    #ffffff;
      --gray-50:  #f8fafc;
      --gray-100: #f1f5f9;
      --gray-200: #e2e8f0;
      --gray-300: #cbd5e1;
      --gray-500: #64748b;
      --gray-600: #475569;
      --gray-700: #334155;
      --gray-800: #1e293b;
      --gray-900: #0f172a;

      /* Sémantiques */
      --red:   #dc2626;
      --green: #16a34a;

      /* Design tokens supplémentaires (effects) */
      --cyan:        #06b6d4;
      --cyan-lt:     #67e8f9;
      --rose:        #f43f5e;
      --rose-lt:     #fda4af;
      --emerald:     #10b981;
      --emerald-lt:  #6ee7b7;

      /* Glows */
      --glow-cyan:    0 0 22px rgba(6,182,212,.45), 0 0 60px rgba(6,182,212,.18);
      --glow-rose:    0 0 22px rgba(244,63,94,.45),  0 0 60px rgba(244,63,94,.18);
      --glow-emerald: 0 0 22px rgba(16,185,129,.45), 0 0 60px rgba(16,185,129,.18);

      /* Glass */
      --glass-bg:     rgba(255,255,255,0.52);
      --glass-border: rgba(255,255,255,0.72);
      --glass-blur:   saturate(180%) blur(20px);

      /* Easing */
      --cb-apple:  cubic-bezier(.23,1,.32,1);
      --cb-spring: cubic-bezier(.34,1.56,.64,1);

      /* Layout */
      --r:    16px;
      --r-lg: 24px;

      /* Ombres */
      --shadow:    0 10px 40px rgba(0,0,0,0.08);
      --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      background: var(--white);
      color: var(--gray-800);
      line-height: 1.65;
      overflow-x: hidden;
    }

    img { max-width: 100%; display: block; }
    a   { color: inherit; text-decoration: none; }
    ul  { list-style: none; }
    button { font-family: inherit; cursor: pointer; }

    /* ────────────────────────────────────────────────
       2. UTILITAIRES GLOBAUX
       ──────────────────────────────────────────────── */
    .wrap {
      width: min(90%, 1240px);
      margin-inline: auto;
      padding-inline: 20px;
    }

    .accent-bar {
      display: block;
      width: 0 !important;  /* animé via JS */
      height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--cyan), var(--emerald)) !important;
      border-radius: 2px;
      margin: .75rem 0 0;
      box-shadow: 0 0 8px rgba(6,182,212,.4) !important;
      animation: growBar .9s .5s var(--cb-apple) forwards;
    }
    .accent-bar.c { margin-inline: auto; }

    .sec-tag {
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--primary);
      /* Gradient animé via JS après typewriter */
      overflow: hidden;
      white-space: nowrap;
    }

    .sec-h {
      font-size: clamp(1.75rem, 3.5vw, 2.5rem);
      font-weight: 700;
      line-height: 1.2;
      color: var(--gray-900);
      letter-spacing: -.02em;
    }
    .sec-h.lt { color: #fff; }

    .sec-sub {
      font-size: 1rem;
      color: var(--gray-600);
      line-height: 1.7;
      max-width: 600px;
    }

    /* ────────────────────────────────────────────────
       3. ANIMATIONS D'ENTRÉE (Intersection Observer)
       ──────────────────────────────────────────────── */
    .rv {
      opacity: 0;
      transform: translateY(40px) scale(.96);
      transition: opacity .9s var(--cb-apple), transform .9s var(--cb-apple);
    }
    .rvl {
      opacity: 0;
      transform: translateX(-50px);
      transition: opacity .9s var(--cb-apple), transform .9s var(--cb-apple);
    }
    .rvr {
      opacity: 0;
      transform: translateX(50px);
      transition: opacity .9s var(--cb-apple), transform .9s var(--cb-apple);
    }
    .rv.on              { opacity: 1; transform: none; }
    .rvl.on, .rvr.on    { opacity: 1; transform: none; }

    /* Stagger sur les grilles de cards */
    .val-grid   .val-card:nth-child(1),
    .specs-grid .sp-card:nth-child(1),
    .prep-grid  .prep-card:nth-child(1),
    .mention-card:nth-child(1) { --sd: .00s; }

    .val-grid   .val-card:nth-child(2),
    .specs-grid .sp-card:nth-child(2),
    .prep-grid  .prep-card:nth-child(2),
    .mention-card:nth-child(2) { --sd: .13s; }

    .val-grid   .val-card:nth-child(3),
    .specs-grid .sp-card:nth-child(3),
    .prep-grid  .prep-card:nth-child(3),
    .mention-card:nth-child(3) { --sd: .26s; }

    .specs-grid .sp-card:nth-child(4),
    .mention-card:nth-child(4) { --sd: .39s; }

    .mention-card:nth-child(5) { --sd: .52s; }

    .val-grid .val-card,
    .specs-grid .sp-card,
    .prep-grid  .prep-card,
    .mention-card { transition-delay: var(--sd, 0s); }

    .faq-item:nth-child(1) { --sd: .00s; }
    .faq-item:nth-child(2) { --sd: .07s; }
    .faq-item:nth-child(3) { --sd: .14s; }
    .faq-item:nth-child(4) { --sd: .21s; }
    .faq-item:nth-child(5) { --sd: .28s; }
    .faq-item:nth-child(6) { --sd: .35s; }
    .faq-item:nth-child(7) { --sd: .42s; }
    .faq-item { transition-delay: var(--sd, 0s); }

    /* ────────────────────────────────────────────────
       4. HEADER & NAVIGATION
       ──────────────────────────────────────────────── */
    .hdr {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: .85rem 0;
      transition: all .4s;
    }

    .hdr-bg {
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0);
      backdrop-filter: blur(0);
      border-bottom: 1px solid transparent;
      transition: all .4s;
    }

    .hdr.up .hdr-bg {
      background: rgba(255,255,255,.65) !important;
      backdrop-filter: saturate(200%) blur(24px) !important;
      -webkit-backdrop-filter: saturate(200%) blur(24px) !important;
      border-bottom-color: rgba(255,255,255,.8) !important;
      box-shadow: 0 4px 32px rgba(6,182,212,.08), 0 2px 12px rgba(0,0,0,.04) !important;
    }

    .hdr-inner {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    /* Logo */
    .logo {
      display: flex;
      align-items: center;
      gap: .8rem;
      transition: transform .35s var(--cb-apple);
    }
    .logo:hover { transform: scale(1.05) rotate(-1.5deg); }

    .logo-img {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid var(--primary-pale);
      flex-shrink: 0;
      background: #fff;
      transition: box-shadow .4s, filter .4s;
    }
    .logo:hover .logo-img {
      box-shadow: 0 0 0 3px var(--primary-light), 0 0 30px rgba(2,132,199,.4);
      filter: brightness(1.1);
    }
    .logo-img img { width: 100%; height: 100%; object-fit: cover; }

    .logo-txt {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }
    .logo-name {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--gray-900);
      letter-spacing: -.01em;
    }
    .logo-tagline {
      font-size: .65rem;
      font-weight: 500;
      color: var(--primary);
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    /* Nav desktop */
    .nav {
      display: flex;
      gap: 2rem;
      align-items: center;
    }
    .nav a {
      font-size: .82rem;
      font-weight: 500;
      letter-spacing: .03em;
      color: var(--gray-700);
      transition: color .2s;
      position: relative;
    }
    .nav a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 50%;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--primary), var(--primary-light));
      border-radius: 2px;
      transition: width .4s var(--cb-apple), left .4s var(--cb-apple);
    }
    .nav a:hover { color: var(--primary); }
    .nav a:hover::after { width: 100%; left: 0; }

    /* CTA rendez-vous */
    .btn-rdv {
      background: var(--primary);
      color: #fff;
      padding: .6rem 1.4rem;
      border-radius: 999px;
      font-size: .8rem;
      font-weight: 600;
      border: none;
      transition: all .3s;
      box-shadow: 0 4px 12px rgba(2,132,199,.25);
      position: relative;
      overflow: hidden;
    }
    .btn-rdv:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: var(--glow-cyan), 0 12px 28px rgba(2,132,199,.4) !important;
    }
    .btn-rdv::before {
      content: '';
      position: absolute;
      bottom: -60px; left: 50%;
      transform: translateX(-50%);
      width: 150%; height: 120px;
      border-radius: 50%;
      background: rgba(255,255,255,.15);
      transition: bottom .5s var(--cb-apple);
    }
    .btn-rdv:hover::before { bottom: -20px; }

    /* Bouton menu mobile */
    .menu-btn {
      display: none;
      background: none;
      border: 1px solid var(--gray-300);
      color: var(--gray-700);
      width: 40px; height: 40px;
      border-radius: 10px;
      font-size: 1rem;
      align-items: center;
      justify-content: center;
    }

    /* Navigation mobile */
    .mob-nav {
      display: none;
      position: fixed;
      inset: 0;
      background: #fff;
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
    }
    .mob-nav.open { display: flex; }
    .mob-nav a {
      font-size: 1.8rem;
      font-weight: 600;
      color: var(--gray-900);
    }
    .mob-nav a:hover { color: var(--primary); }
    .mob-close {
      position: absolute;
      top: 1.5rem; right: 1.5rem;
      background: none;
      border: none;
      color: var(--gray-700);
      font-size: 1.5rem;
    }

    /* ────────────────────────────────────────────────
       5. HERO
       ──────────────────────────────────────────────── */
    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    /* Slideshow */
    .hero-slides { position: absolute; inset: 0; }

    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1.5s ease;
      background-size: cover;
      background-position: center;
    }
    .slide.on { opacity: 1; }

    .slide-1  { background-image: url('../assets/imgA1.jpeg');  }
    .slide-2  { background-image: url('../assets/imgA2.jpeg');  }
    .slide-3  { background-image: url('../assets/imgA3.jpeg');  }
    .slide-4  { background-image: url('../assets/imgA4.jpeg');  }
    .slide-5  { background-image: url('../assets/imgA5.jpeg');  }
    .slide-6  { background-image: url('../assets/imgA6.jpeg');  }
    .slide-7  { background-image: url('../assets/imgA7.jpeg');  }
    .slide-8  { background-image: url('../assets/imgA8.jpeg');  }
    .slide-9  { background-image: url('../assets/imgA9.jpeg');  }
    .slide-10 { background-image: url('../assets/imgA10.jpeg'); }

    .hero-ov {
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, rgba(2,26,51,.72) 0%, rgba(2,26,51,.35) 45%, rgba(2,26,51,.18) 100%);
      z-index: 1;
      animation: ovBreath 7s ease-in-out infinite;
    }

    .hero-body {
      position: relative;
      z-index: 2;
      max-width: 720px;
      will-change: transform;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--primary-light);
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fu .8s .2s forwards;
    }
    .hero-eyebrow::before,
    .hero-eyebrow::after {
      content: '';
      display: block;
      width: 26px; height: 2px;
      background: var(--primary-light);
    }
    .hero-eyebrow::before { animation: shimmerBar 3s 1.2s ease-in-out infinite; }
    .hero-eyebrow::after  { animation: shimmerBar 3s 2.1s ease-in-out infinite; }

    .hero h1 {
      font-size: clamp(2.2rem, 5.5vw, 3.8rem);
      font-weight: 700;
      color: #fff;
      line-height: 1.1;
      letter-spacing: -.03em;
      margin-bottom: 1.4rem;
      opacity: 0;
      animation: fu .8s .35s forwards;
    }
    .hero h1 em {
      background: linear-gradient(90deg, #67e8f9, #38bdf8, #6ee7b7, #34d399, #67e8f9) !important;
      background-size: 400% 100% !important;
      -webkit-background-clip: text !important;
      -webkit-text-fill-color: transparent !important;
      background-clip: text !important;
      animation: gradientShift 3.5s ease infinite !important;
      filter: drop-shadow(0 0 12px rgba(6,182,212,.6)) !important;
      font-style: normal;
    }

    .hero-p {
      font-size: 1.05rem;
      color: rgba(255,255,255,.88);
      line-height: 1.7;
      max-width: 520px;
      margin-bottom: 2.4rem;
      opacity: 0;
      animation: fu .8s .5s forwards;
    }

    .hero-btns {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      opacity: 0;
      animation: fu .8s .65s forwards;
    }

    /* Stats hero */
    .hero-stats {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      z-index: 2;
      border-top: 1px solid rgba(255,255,255,.15);
      background: rgba(2,8,24,.48) !important;
      backdrop-filter: saturate(180%) blur(18px) !important;
      -webkit-backdrop-filter: saturate(180%) blur(18px) !important;
      box-shadow: 0 -8px 40px rgba(6,182,212,.12) !important;
    }

    .stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }

    .stat {
      padding: 1.2rem 0;
      text-align: center;
      border-right: 1px solid rgba(255,255,255,.15);
      position: relative;
      overflow: hidden;
    }
    .stat:last-child { border-right: none; }
    .stat::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(transparent, rgba(255,255,255,.04));
      animation: statShimmer 3s ease-in-out infinite alternate;
    }

    .stat-n {
      font-size: clamp(.9rem, 1.8vw, 1.75rem) !important;
      font-weight: 700 !important;
      line-height: 1.1 !important;
      white-space: nowrap;
      background: linear-gradient(135deg, var(--cyan-lt), var(--cyan), #38bdf8) !important;
      -webkit-background-clip: text !important;
      -webkit-text-fill-color: transparent !important;
      background-clip: text !important;
      filter: drop-shadow(0 0 8px rgba(6,182,212,.5)) !important;
    }

    .stat-l {
      font-size: .7rem;
      font-weight: 500;
      color: rgba(255,255,255,.7);
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    /* Contrôles slideshow */
    .s-dots {
      position: absolute;
      right: 2rem; top: 50%;
      transform: translateY(-50%);
      z-index: 3;
      display: flex;
      flex-direction: column;
      gap: .6rem;
    }
    .s-dot {
      width: 6px; height: 6px;
      border-radius: 3px;
      background: rgba(255,255,255,.4);
      cursor: pointer;
      transition: all .35s;
      border: none;
    }
    .s-dot.on {
      background: var(--primary-light);
      height: 24px;
    }

    .s-arrows {
      position: absolute;
      left: 2rem; bottom: 8rem;
      z-index: 3;
      display: flex;
      gap: .5rem;
    }
    .s-arr {
      width: 42px; height: 42px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.3);
      background: rgba(255,255,255,.1);
      color: #fff;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all .3s;
      backdrop-filter: blur(6px);
    }
    .s-arr:hover {
      border-color: var(--primary-light);
      background: rgba(255,255,255,.2);
      color: var(--primary-light);
    }

    /* ────────────────────────────────────────────────
       6. BOUTONS GÉNÉRIQUES
       ──────────────────────────────────────────────── */
    .btn-primary,
    .btn-rdv,
    .btn-sub,
    .btn-urg,
    .btn-port,
    .btn-outline,
    .btn-wa,
    .s-arr,
    .faq-wa {
      position: relative;
      overflow: hidden;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: var(--primary);
      color: #fff;
      padding: .9rem 2rem;
      border-radius: 999px;
      font-size: .9rem;
      font-weight: 600;
      border: none;
      transition: all .35s;
      box-shadow: 0 6px 18px rgba(2,132,199,.3);
      animation: btnGlow 2.8s ease-in-out infinite;
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      bottom: -60px; left: 50%;
      transform: translateX(-50%);
      width: 150%; height: 120px;
      border-radius: 50%;
      background: rgba(255,255,255,.15);
      transition: bottom .5s var(--cb-apple);
    }
    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: var(--glow-cyan), 0 12px 28px rgba(2,132,199,.4) !important;
      animation: none;
    }
    .btn-primary:hover::before { bottom: -20px; }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: rgba(255,255,255,.10) !important;
      backdrop-filter: blur(12px) saturate(180%) !important;
      -webkit-backdrop-filter: blur(12px) saturate(180%) !important;
      color: #fff;
      padding: .9rem 2rem;
      border-radius: 999px;
      font-size: .9rem;
      font-weight: 500;
      border: 1.5px solid rgba(255,255,255,.28) !important;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 4px 20px rgba(0,0,0,.12) !important;
      transition: all .4s var(--cb-apple) !important;
    }
    .btn-outline:hover {
      background: rgba(255,255,255,.2) !important;
      border-color: rgba(103,232,249,.6) !important;
      color: #fff;
      transform: translateY(-2px);
      box-shadow: var(--glow-cyan), inset 0 1px 0 rgba(255,255,255,.3) !important;
    }

    /* Shimmer sur btn-sub */
    .btn-sub::after {
      content: '';
      position: absolute;
      top: 0; left: -120%;
      width: 60%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
      animation: shimmerBtn 2.2s ease-in-out 1s infinite;
    }

    /* Ripple générique */
    .ripple-wave {
      position: absolute;
      border-radius: 50%;
      background: rgba(255,255,255,.4);
      transform: scale(0);
      animation: rippleAnim .7s ease-out;
      pointer-events: none;
    }

    /* ────────────────────────────────────────────────
       7. MARQUEE
       ──────────────────────────────────────────────── */
    .marquee-wrap {
      overflow: hidden;
      background: linear-gradient(90deg, var(--primary-dark), var(--primary), rgba(6,182,212,.9), var(--primary), var(--primary-dark)) !important;
      padding: .6rem 0;
      position: relative;
      box-shadow: 0 4px 24px rgba(6,182,212,.2) !important;
    }
    .marquee-wrap::before,
    .marquee-wrap::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 80px;
      z-index: 1;
      pointer-events: none;
    }
    .marquee-wrap::before {
      left: 0;
      background: linear-gradient(90deg, var(--primary-dark), transparent);
    }
    .marquee-wrap::after {
      right: 0;
      background: linear-gradient(-90deg, var(--primary-dark), transparent);
    }

    .marquee-track {
      display: flex;
      width: max-content;
      animation: marqScroll 30s linear infinite;
    }
    .marquee-track:hover { animation-play-state: paused; }

    .marquee-item {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .13em;
      text-transform: uppercase;
      color: #fff;
      padding: 0 2.4rem;
      white-space: nowrap;
      opacity: .9;
    }
    .marquee-item::before {
      content: '✦';
      font-size: .5rem;
      opacity: .7;
      color: var(--cyan-lt) !important;
      filter: drop-shadow(0 0 4px var(--cyan));
      animation: starSpin 4s linear infinite;
    }

    /* ────────────────────────────────────────────────
       8. SECTIONS COMMUNES
       ──────────────────────────────────────────────── */
    .valeurs, .a-propos, .specs, .preparation,
    .urgences, .faq, .resa, .portail, .contact, .mentions {
      padding: 6rem 0;
    }

    .val-hdr {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    /* ────────────────────────────────────────────────
       9. VALEURS (3 piliers)
       ──────────────────────────────────────────────── */
    .valeurs { background: var(--white); }

    .val-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .val-card {
      background: var(--white);
      border-radius: var(--r-lg);
      padding: 2.5rem;
      border: 1px solid var(--gray-200);
      transition: transform .5s var(--cb-apple), box-shadow .5s, border-color .3s;
      box-shadow: var(--shadow);
      transform-style: preserve-3d;
      will-change: transform;
      position: relative;
      overflow: hidden;
    }
    .val-card > * { position: relative; z-index: 1; }
    .val-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      z-index: 0;
      background: radial-gradient(380px at var(--mx, 50%) var(--my, 50%), rgba(2,132,199,.13), transparent 70%);
      opacity: 0;
      transition: opacity .4s;
    }
    .val-card:hover::after { opacity: 1; }
    .val-card:hover {
      border-color: transparent !important;
      background: var(--glass-bg) !important;
      backdrop-filter: var(--glass-blur) !important;
      -webkit-backdrop-filter: var(--glass-blur) !important;
      box-shadow: 0 20px 60px rgba(6,182,212,.14), 0 0 0 1px var(--glass-border) !important;
    }

    .val-ico {
      width: 56px; height: 56px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(6,182,212,.15), rgba(16,185,129,.12), rgba(244,63,94,.08)) !important;
      border: 1px solid rgba(6,182,212,.2);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 4px 12px rgba(6,182,212,.12);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      animation: blobMorph 9s ease-in-out infinite;
      transition: transform .5s var(--cb-spring), box-shadow .4s !important;
    }
    .val-card:hover .val-ico {
      transform: scale(1.18) rotate(-6deg) !important;
      box-shadow: 0 8px 24px rgba(6,182,212,.22) !important;
    }
    .val-ico svg { width: 28px; height: 28px; stroke: var(--primary); stroke-width: 1.5; }

    .val-card h3 {
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--gray-900);
      margin-bottom: .7rem;
    }
    .val-card p {
      font-size: .9rem;
      color: var(--gray-600);
      line-height: 1.7;
    }

    .val-tags {
      display: flex;
      gap: .5rem;
      flex-wrap: wrap;
      margin-top: 1.2rem;
    }
    .vtag {
      font-size: .7rem;
      font-weight: 500;
      color: var(--cyan) !important;
      background: linear-gradient(90deg, rgba(6,182,212,.12), rgba(16,185,129,.1)) !important;
      border: 1px solid rgba(6,182,212,.2) !important;
      padding: .25rem .8rem;
      border-radius: 999px;
    }

    /* ────────────────────────────────────────────────
       10. À PROPOS
       ──────────────────────────────────────────────── */
    .a-propos {
      background: var(--gray-50);
      border-top: 1px solid var(--gray-200);
      border-bottom: 1px solid var(--gray-200);
    }

    .histoire-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      margin: 2.5rem 0;
    }
    .histoire-content p {
      font-size: .95rem;
      color: var(--gray-700);
      line-height: 1.8;
      margin-bottom: 1.2rem;
    }
    .histoire-content strong { color: var(--gray-900); }
    .histoire-image img {
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-lg);
      width: 100%;
    }
    .histoire-image video {
      width: 100%;
      height: auto;
      display: block;
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-lg);
      object-fit: cover;
      max-height: 420px;
    }

    .equipement-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      margin: 1.5rem 0;
    }
    .equip-item {
      background: var(--white);
      border-radius: var(--r);
      padding: 1rem;
      border: 1px solid var(--gray-200);
      display: flex;
      align-items: center;
      gap: .8rem;
      transition: transform .35s var(--cb-apple), box-shadow .35s, border-color .3s;
    }
    .equip-item:hover {
      transform: translateX(6px);
      box-shadow: var(--shadow-lg);
      border-color: var(--primary-light);
    }
    .equip-item svg { width: 24px; height: 24px; stroke: var(--primary); flex-shrink: 0; }
    .equip-item span { font-size: .85rem; font-weight: 500; color: var(--gray-800); }

    /* ────────────────────────────────────────────────
       11. SPÉCIALITÉS
       ──────────────────────────────────────────────── */
    .specs { background: var(--white); }

    .specs-top {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .specs-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.2rem;
    }

    .sp-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--r);
      padding: 1.8rem;
      transition: all .35s;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }
    .sp-card > * { position: relative; z-index: 1; }
    .sp-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      z-index: 0;
      background: radial-gradient(380px at var(--mx, 50%) var(--my, 50%), rgba(2,132,199,.13), transparent 70%);
      opacity: 0;
      transition: opacity .4s;
    }
    .sp-card:hover::after { opacity: 1; }
    .sp-card:hover {
      border-color: transparent !important;
      box-shadow: 0 20px 50px rgba(6,182,212,.15), 0 0 0 1px rgba(103,232,249,.35), inset 0 1px 0 rgba(255,255,255,.5) !important;
      transform: translateY(-4px);
    }

    .sp-icon {
      margin-bottom: 1.2rem;
      width: 54px; height: 54px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(6,182,212,.08), rgba(16,185,129,.06));
      border: 1px solid rgba(6,182,212,.15);
      transition: transform .5s var(--cb-spring), box-shadow .4s, background .3s !important;
    }
    .sp-card:hover .sp-icon {
      transform: scale(1.15) rotate(-8deg) !important;
      background: linear-gradient(135deg, rgba(6,182,212,.18), rgba(16,185,129,.14)) !important;
      box-shadow: 0 8px 20px rgba(6,182,212,.2) !important;
    }
    .sp-card:hover .sp-icon svg { animation: iconBounce .5s var(--cb-apple); }
    .sp-icon svg { width: 32px; height: 32px; }

    .sp-card h3 { font-size: 1rem; font-weight: 600; color: var(--gray-900); margin-bottom: .6rem; }
    .sp-card p  { font-size: .8rem; color: var(--gray-600); line-height: 1.55; }

    /* ────────────────────────────────────────────────
       12. PRÉPARATION
       ──────────────────────────────────────────────── */
    .preparation { background: var(--gray-50); }

    .prep-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin: 2.5rem 0;
    }

    .prep-card {
      background: var(--white);
      border-radius: var(--r);
      padding: 1.8rem;
      border: 1px solid var(--gray-200);
      transition: all .35s;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }
    .prep-card > * { position: relative; z-index: 1; }
    .prep-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      z-index: 0;
      background: radial-gradient(380px at var(--mx, 50%) var(--my, 50%), rgba(2,132,199,.13), transparent 70%);
      opacity: 0;
      transition: opacity .4s;
    }
    .prep-card:hover::after { opacity: 1; }
    .prep-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

    .prep-card.important {
      border-left: 5px solid var(--rose) !important;
      background: linear-gradient(145deg, #fff 0%, rgba(244,63,94,.04) 40%, rgba(245,158,11,.06) 100%) !important;
      box-shadow: 0 4px 24px rgba(244,63,94,.10), inset 0 1px 0 rgba(255,255,255,.9) !important;
    }
    .prep-card.important:hover {
      box-shadow: 0 12px 40px rgba(244,63,94,.18), 0 0 0 1px rgba(244,63,94,.2) !important;
      animation: importantShake .6s ease-in-out;
    }

    .prep-icon { margin-bottom: 1rem; }
    .prep-icon svg { width: 28px; height: 28px; stroke: var(--primary); }

    .prep-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--gray-900); margin-bottom: .75rem; }
    .prep-card p  { font-size: .85rem; color: var(--gray-600); line-height: 1.65; margin-bottom: .5rem; }
    .prep-card ul { margin-top: .5rem; }
    .prep-card li {
      font-size: .8rem;
      color: var(--gray-600);
      padding: .2rem 0;
      display: flex;
      align-items: center;
      gap: .4rem;
    }

    .prep-cta {
      background: var(--white);
      border-radius: var(--r-lg);
      padding: 2.5rem;
      text-align: center;
      border: 1px solid var(--gray-200);
      box-shadow: var(--shadow);
    }
    .prep-cta p { font-size: 1.2rem; font-weight: 600; color: var(--gray-900); margin-bottom: 1.5rem; }

    .prep-btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ────────────────────────────────────────────────
       13. URGENCES
       ──────────────────────────────────────────────── */
    .urgences { background: var(--white); }

    .urg-inner {
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 4rem;
      align-items: center;
    }

    .urg-list {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .urg-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--r);
      padding: 1.2rem;
      transition: transform .4s var(--cb-apple), border-color .3s, box-shadow .3s, background .3s;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }
    .urg-item > * { position: relative; z-index: 1; }
    .urg-item::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      z-index: 0;
      background: radial-gradient(380px at var(--mx, 50%) var(--my, 50%), rgba(2,132,199,.13), transparent 70%);
      opacity: 0;
      transition: opacity .4s;
    }
    .urg-item:hover::after { opacity: 1; }
    .urg-item:hover {
      transform: translateX(10px) scale(1.01);
      border-color: var(--primary-light);
      box-shadow: var(--shadow-lg);
      background: var(--primary-pale);
    }

    .urg-ico {
      width: 44px; height: 44px;
      border-radius: 10px;
      background: var(--primary-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .urg-ico svg { width: 22px; height: 22px; stroke: var(--primary); }
    .urg-item h4 { font-size: .9rem; font-weight: 600; color: var(--gray-900); margin-bottom: .2rem; }
    .urg-item p  { font-size: .8rem; color: var(--gray-600); }

    .urg-cta {
      border-radius: var(--r-lg);
      padding: 2.5rem;
      text-align: center;
      color: #fff;
      background: linear-gradient(145deg, rgba(15,23,42,1) 0%, rgba(2,26,51,1) 40%, rgba(3,32,55,1) 100%) !important;
      box-shadow: 0 0 0 1px rgba(6,182,212,.2), 0 30px 80px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.06) !important;
      position: relative;
      overflow: hidden;
    }
    .urg-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(6,182,212,.14), transparent 65%),
        radial-gradient(ellipse 50% 40% at 100% 100%, rgba(16,185,129,.08), transparent 55%);
      pointer-events: none;
      z-index: 0;
    }
    .urg-cta > * { position: relative; z-index: 1; }
    .urg-cta h3  { font-size: 1.5rem; font-weight: 700; margin-bottom: .65rem; }
    .urg-cta .sub { font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 1.5rem; }

    .pulse-ring {
      width: 76px; height: 76px;
      border-radius: 50%;
      background: rgba(220,38,38,.15);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.4rem;
      animation: ringOut3 2.2s ease-out infinite;
    }
    .pulse-inner {
      width: 52px; height: 52px;
      border-radius: 50%;
      background: rgba(220,38,38,.25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      animation: floatEmoji 3.2s ease-in-out infinite !important;
    }

    .btn-urg {
      display: block;
      background: var(--red);
      color: #fff;
      padding: 1rem 1.5rem;
      border-radius: 999px;
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: .75rem;
      transition: all .3s;
    }
    .btn-urg:hover {
      background: #b91c1c;
      transform: scale(1.02);
      box-shadow: var(--glow-rose), 0 12px 28px rgba(220,38,38,.35) !important;
    }
    .btn-urg::before {
      content: '';
      position: absolute;
      bottom: -60px; left: 50%;
      transform: translateX(-50%);
      width: 150%; height: 120px;
      border-radius: 50%;
      background: rgba(255,255,255,.15);
      transition: bottom .5s var(--cb-apple);
    }
    .btn-urg:hover::before { bottom: -20px; }

    .btn-wa {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: transparent;
      border: 1px solid rgba(37,211,102,.4);
      color: #4ade80;
      padding: .7rem 1.4rem;
      border-radius: 999px;
      font-size: .85rem;
      transition: all .3s;
    }
    .btn-wa:hover {
      background: rgba(37,211,102,.1);
      border-color: #4ade80;
      box-shadow: var(--glow-emerald) !important;
    }

    .urg-note { font-size: .75rem; color: rgba(255,255,255,.4); margin-top: 1rem; }

    /* ────────────────────────────────────────────────
       14. FAQ
       ──────────────────────────────────────────────── */
    .faq { background: var(--gray-50); }

    .faq-list { max-width: 860px; margin: 2.5rem auto 0; }

    .faq-item {
      background: var(--white);
      border-radius: var(--r);
      margin-bottom: .7rem;
      border: 1px solid var(--gray-200);
      overflow: hidden;
      transition: transform .4s var(--cb-apple), box-shadow .4s, border-color .3s;
    }
    .faq-item:hover { transform: scale(1.005); box-shadow: var(--shadow-lg); }
    .faq-item.open  { box-shadow: var(--shadow-lg); border-color: var(--primary-light); transform: scale(1.008); }

    .faq-q {
      width: 100%;
      background: none;
      border: none;
      padding: 1.3rem 1.6rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      cursor: pointer;
      text-align: left;
      font-size: 1rem;
      font-weight: 500;
      color: var(--gray-900);
      transition: background .2s;
    }
    .faq-q:hover { background: var(--gray-50); }
    .faq-q-text  { flex: 1; }

    .faq-icon {
      flex-shrink: 0;
      width: 28px; height: 28px;
      border-radius: 50%;
      border: 2px solid var(--gray-300);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform .35s, border-color .3s, background .3s, color .3s;
      color: var(--gray-600);
      font-size: 1rem;
    }
    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      border-color: var(--primary);
      background: var(--primary-pale);
      color: var(--primary);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .45s ease, padding .35s;
      padding: 0 1.6rem;
    }
    .faq-item.open .faq-a { max-height: 650px; padding: 0 1.6rem 1.5rem; }

    .faq-a-inner {
      border-top: 1px solid var(--gray-200);
      padding-top: 1.2rem;
      color: var(--gray-700);
      font-size: .9rem;
      line-height: 1.7;
    }

    .faq-wa {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      margin-top: 1rem;
      padding: .6rem 1.3rem;
      background: #25D366;
      color: #fff !important;
      border-radius: 999px;
      font-size: .8rem;
      font-weight: 500;
      transition: all .3s;
    }
    .faq-wa:hover {
      transform: translateY(-2px);
      box-shadow: var(--glow-emerald) !important;
    }

    .faq-cta {
      margin-top: 3rem;
      padding: 2.5rem;
      background: var(--white);
      border-radius: var(--r-lg);
      text-align: center;
      border: 1px solid var(--gray-200);
      box-shadow: var(--shadow);
    }
    .faq-cta p { font-size: 1.2rem; font-weight: 600; color: var(--gray-900); margin-bottom: 1.5rem; }
    .faq-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    /* ────────────────────────────────────────────────
       15. RÉSERVATION
       ──────────────────────────────────────────────── */
    .resa { background: var(--white); }

    .resa-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }

    .resa-promises { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }

    .promise {
      display: flex;
      align-items: center;
      gap: .8rem;
      font-size: .9rem;
      color: var(--gray-700);
    }
    .promise-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--primary);
      flex-shrink: 0;
      animation: dotPulse 2s ease-in-out infinite;
    }
    .promise:nth-child(2) .promise-dot { animation-delay: .4s; }
    .promise:nth-child(3) .promise-dot { animation-delay: .8s; }

    /* Formulaire */
    .form-card {
      background: rgba(255,255,255,.82) !important;
      backdrop-filter: saturate(180%) blur(16px) !important;
      -webkit-backdrop-filter: saturate(180%) blur(16px) !important;
      border: 1px solid rgba(255,255,255,.9) !important;
      border-radius: var(--r-lg);
      padding: 2.5rem;
      box-shadow: 0 24px 64px rgba(6,182,212,.10), 0 2px 8px rgba(0,0,0,.04), inset 0 1px 0 rgba(255,255,255,1) !important;
    }

    .form-g { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

    .fg { display: flex; flex-direction: column; gap: .4rem; }
    .fg.full { grid-column: 1 / -1; }

    .fg label {
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--gray-700);
      transition: color .3s, letter-spacing .3s;
    }
    .fg:focus-within label { color: var(--primary); letter-spacing: .08em; }

    .fg input,
    .fg select,
    .fg textarea {
      padding: .8rem 1rem;
      border: 1.5px solid var(--gray-200);
      border-radius: 12px;
      font-size: .9rem;
      color: var(--gray-800);
      background: #fff;
      transition: border-color .3s, box-shadow .3s, transform .3s var(--cb-apple), background .3s;
      outline: none;
      font-family: inherit;
    }
    .fg input:focus,
    .fg select:focus,
    .fg textarea:focus {
      border-color: var(--cyan) !important;
      box-shadow: 0 0 0 4px rgba(6,182,212,.18), 0 4px 16px rgba(6,182,212,.12) !important;
      transform: translateY(-3px);
      background: var(--gray-50);
    }
    .fg textarea { resize: vertical; min-height: 88px; }
    .fg select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23475569' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
    }

    /* Zone upload */
    .upload-area {
      border: 2px dashed var(--gray-300);
      border-radius: 12px;
      padding: 1.2rem;
      text-align: center;
      cursor: pointer;
      transition: all .2s;
      background: var(--gray-50);
    }
    .upload-area:hover { border-color: var(--primary); background: var(--primary-pale); }
    .upload-area input { display: none; }

    .upload-label {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .4rem;
      cursor: pointer;
    }
    .upload-label svg { width: 28px; height: 28px; stroke: var(--primary); }
    .upload-label span { font-size: .8rem; color: var(--gray-600); }
    .upload-label .filename { font-size: .75rem; color: var(--primary); font-weight: 500; }

    /* Bouton submit */
    .btn-sub {
      width: 100%;
      background: var(--primary);
      color: #fff;
      padding: 1rem;
      border-radius: 999px;
      font-size: .95rem;
      font-weight: 600;
      border: none;
      transition: all .35s;
      margin-top: 1rem;
    }
    .btn-sub:hover:not(:disabled) {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(2,132,199,.35);
    }
    .btn-sub:disabled { opacity: .6; cursor: not-allowed; }

    .form-note { text-align: center; font-size: .75rem; color: var(--gray-500); margin-top: .8rem; }

    /* Alertes formulaire */
    .alert {
      padding: .9rem 1rem;
      border-radius: 10px;
      font-size: .85rem;
      display: none;
      margin-bottom: 1rem;
    }
    .alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
    .alert-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

    /* ────────────────────────────────────────────────
       16. PORTAIL PATIENT
       ──────────────────────────────────────────────── */
    .portail { background: var(--gray-50); }

    .portail-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .port-feats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 2rem;
    }

    .port-feat {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 12px;
      padding: .8rem 1rem;
      transition: transform .4s var(--cb-apple), background .3s, box-shadow .35s;
    }
    .port-feat:hover {
      transform: translateY(-4px) scale(1.04);
      background: var(--primary-pale);
      box-shadow: var(--shadow);
    }
    .port-feat h4 { font-size: .9rem; font-weight: 600; color: var(--gray-900); margin-bottom: .3rem; }
    .port-feat p  { font-size: .8rem; color: var(--gray-600); }

    .btn-port {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      margin-top: 2rem;
      border: 1.5px solid var(--primary);
      color: var(--primary);
      padding: .9rem 2rem;
      border-radius: 999px;
      font-size: .9rem;
      font-weight: 600;
      transition: all .35s;
    }
    .btn-port:hover {
      background: var(--primary);
      color: #fff;
    }

    /* Mockup portail */
    .mockup {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--r-lg);
      padding: 1.8rem;
      box-shadow: 0 24px 60px rgba(6,182,212,.14), 0 4px 20px rgba(0,0,0,.08), 0 0 0 1px rgba(56,189,248,.15) !important;
      transition: transform .7s var(--cb-apple), box-shadow .5s;
      position: relative;
    }
    .mockup:hover {
      transform: translateY(-10px) rotate(.8deg) scale(1.02);
      box-shadow: 0 40px 90px rgba(0,0,0,.2);
    }
    .mockup::after {
      content: '';
      position: absolute;
      left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, transparent, rgba(6,182,212,.6), var(--cyan-lt), rgba(16,185,129,.4), transparent) !important;
      animation: scanLine 4s ease-in-out infinite;
      pointer-events: none;
      z-index: 10;
    }

    .mock-hdr {
      display: flex;
      align-items: center;
      gap: .8rem;
      padding-bottom: 1.2rem;
      border-bottom: 1px solid var(--gray-200);
      margin-bottom: 1.5rem;
    }
    .mock-av {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      color: #fff;
    }
    .mock-name { font-size: .9rem; color: var(--gray-900); font-weight: 600; }
    .mock-url  { font-size: .7rem; color: var(--gray-500); }
    .mock-badge {
      margin-left: auto;
      font-size: .65rem;
      background: var(--primary-pale);
      color: var(--primary-dark);
      padding: .2rem .6rem;
      border-radius: 999px;
      font-weight: 500;
      animation: badgePulse 2s ease-in-out infinite;
    }

    .mock-row {
      background: var(--gray-50);
      border-radius: 10px;
      padding: 1rem;
      margin-bottom: .7rem;
    }
    .mock-row-top { display: flex; justify-content: space-between; margin-bottom: .5rem; }
    .mock-label { font-size: .8rem; color: var(--gray-700); font-weight: 500; }
    .mock-date  { font-size: .7rem; color: var(--gray-500); }

    .mock-prog { height: 5px; background: var(--gray-200); border-radius: 3px; }
    .mock-prog-fill {
      height: 5px;
      border-radius: 3px;
      background: var(--primary);
      transition: width 1.8s var(--cb-apple);
    }
    .mock-status { font-size: .7rem; color: var(--primary-dark); margin-top: .4rem; font-weight: 500; }

    /* ────────────────────────────────────────────────
       17. CONTACT
       ──────────────────────────────────────────────── */
    .contact { background: var(--white); }
    .contact-hdr { text-align: center; margin-bottom: 3.5rem; }

    .contact-grid {
      display: grid;
      grid-template-columns: 380px 1fr;
      gap: 2rem;
      align-items: stretch;
    }
    .contact-col { display: flex; flex-direction: column; gap: 1.5rem; }

    .map-wrapper { display: flex; flex-direction: column; height: 100%; }
    .map-box {
      border-radius: var(--r-lg);
      overflow: hidden;
      flex: 1;
      min-height: 520px;
      border: 1px solid var(--gray-200);
      box-shadow: var(--shadow);
      width: 100%;
    }
    .map-box iframe { width: 100%; height: 100%; border: 0; display: block; }

    .map-link { text-align: right; margin-top: 0.75rem; }
    .map-link a {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8rem;
      color: var(--primary);
      font-weight: 500;
      transition: color 0.2s;
    }
    .map-link a:hover { color: var(--primary-dark); text-decoration: underline; }
    .map-link svg { stroke: var(--primary); fill: none; stroke-width: 1.8; }

    .ccard {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--r-lg);
      padding: 2rem;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }
    .ccard > * { position: relative; z-index: 1; }
    .ccard::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      z-index: 0;
      background: radial-gradient(380px at var(--mx, 50%) var(--my, 50%), rgba(2,132,199,.13), transparent 70%);
      opacity: 0;
      transition: opacity .4s;
    }
    .ccard:hover::after { opacity: 1; }
    .ccard h3 {
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--gray-900);
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--gray-200);
    }

    .citem {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: .8rem;
      border-radius: 10px;
      transition: transform .35s var(--cb-apple), background .3s, box-shadow .3s;
    }
    .citem:hover {
      transform: translateX(10px) scale(1.01);
      background: var(--gray-50);
      box-shadow: var(--shadow);
    }
    .citem-ico {
      width: 42px; height: 42px;
      border-radius: 10px;
      background: var(--primary-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .citem-ico svg { width: 20px; height: 20px; stroke: var(--primary); }
    .citem-body strong {
      display: block;
      font-size: .7rem;
      font-weight: 600;
      color: var(--gray-500);
      text-transform: uppercase;
      letter-spacing: .05em;
    }
    .citem-body span { font-size: .9rem; color: var(--gray-800); font-weight: 500; }

    .h-grid { display: flex; flex-direction: column; gap: .4rem; margin-top: .5rem; }
    .h-row {
      display: flex;
      justify-content: space-between;
      padding: .5rem 0;
      border-bottom: 1px solid var(--gray-100);
      font-size: .85rem;
      transition: background .3s, padding-left .3s, letter-spacing .3s;
      border-radius: 8px;
      padding: .4rem .6rem;
      margin: -.4rem -.6rem;
    }
    .h-row:hover { background: var(--primary-pale); padding-left: 1.2rem; }
    .h-row span:first-child { color: var(--gray-600); }
    .h-row span:last-child  { font-weight: 500; color: var(--gray-900); }

    /* ────────────────────────────────────────────────
       18. MENTIONS LÉGALES
       ──────────────────────────────────────────────── */
    .mentions { background: var(--gray-50); }

    .mentions-grid { max-width: 900px; margin: 0 auto; }

    .mention-card {
      background: var(--white);
      border-radius: var(--r);
      padding: 2rem;
      margin-bottom: 1.5rem;
      border: 1px solid var(--gray-200);
      box-shadow: var(--shadow);
      transition: transform .5s var(--cb-apple), box-shadow .5s, border-color .35s;
      position: relative;
      overflow: hidden;
    }
    .mention-card > * { position: relative; z-index: 1; }
    .mention-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      z-index: 0;
      background: radial-gradient(380px at var(--mx, 50%) var(--my, 50%), rgba(2,132,199,.13), transparent 70%);
      opacity: 0;
      transition: opacity .4s;
    }
    .mention-card:hover::after { opacity: 1; }
    .mention-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
    .mention-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--gray-900); margin-bottom: 1.2rem; }
    .mention-card p  { font-size: .85rem; color: var(--gray-700); line-height: 1.7; }

    /* ────────────────────────────────────────────────
       19. FOOTER
       ──────────────────────────────────────────────── */
    .footer {
      padding: 5rem 0 2rem;
      color: #fff;
      background:
        radial-gradient(ellipse 60% 40% at 10% 20%, rgba(6,182,212,.06), transparent 55%),
        radial-gradient(ellipse 50% 35% at 90% 80%, rgba(16,185,129,.05), transparent 55%),
        var(--gray-900) !important;
      position: relative;
    }
    .footer::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--cyan), var(--emerald), transparent);
      opacity: .35;
    }

    .footer .container {
      width: min(90%, 1240px);
      margin-inline: auto;
      padding-inline: 20px;
    }

    .footer-container {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-logo p { margin-top: 1rem; color: rgba(255,255,255,0.7); }

    .footer-links h4 {
      font-size: .9rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--primary-light);
      margin-bottom: 1.5rem;
    }
    .footer-links ul li { margin-bottom: .7rem; position: relative; }
    .footer-links ul a {
      font-size: .9rem;
      color: rgba(255,255,255,.6);
      transition: color .3s, padding-left .3s;
      position: relative;
    }
    .footer-links ul li a::before {
      content: '›';
      position: absolute;
      left: -14px;
      opacity: 0;
      color: var(--primary-light);
      transition: opacity .3s, left .3s;
    }
    .footer-links ul a:hover { color: var(--primary-light); padding-left: 16px; }
    .footer-links ul li a:hover::before { opacity: 1; left: 0; }
    .footer-links p { margin-bottom: .5rem; color: rgba(255,255,255,.7); }

    .footer-social { display: flex; gap: .8rem; margin-top: 1.2rem; }
    .footer-social a {
      width: 38px; height: 38px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,.5);
      transition: transform .35s var(--cb-apple), box-shadow .35s, border-color .3s, color .3s;
    }
    .footer-social a:hover { transform: translateY(-4px) scale(1.15); }
    .footer-social svg { width: 20px; height: 20px; fill: currentColor; }

    .social-fb:hover { color: #1877f2 !important; box-shadow: 0 0 16px rgba(24,119,242,.5) !important; border-color: rgba(24,119,242,.5) !important; }
    .social-wa:hover { color: #25D366 !important; box-shadow: 0 0 16px rgba(37,211,102,.5) !important; border-color: rgba(37,211,102,.5) !important; }
    .social-ig:hover { color: #e1306c !important; box-shadow: 0 0 16px rgba(225,48,108,.5) !important; border-color: rgba(225,48,108,.4) !important; }

    .footer-copyright {
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,.1);
      text-align: center;
    }
    .footer-copyright p { font-size: .8rem; color: rgba(255,255,255,.4); margin-bottom: .3rem; }

    /* ────────────────────────────────────────────────
       20. ÉLÉMENTS FLOTTANTS
       ──────────────────────────────────────────────── */
    .back-top {
      position: fixed;
      bottom: 1.5rem; right: 1.5rem;
      width: 44px; height: 44px;
      border: none;
      border-radius: 50%;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity .4s, background .3s, box-shadow .3s;
      z-index: 800;
      cursor: pointer;
      background: linear-gradient(135deg, var(--primary), var(--cyan)) !important;
    }
    .back-top.on {
      opacity: 1;
      pointer-events: auto;
      animation: rocketLift 1.6s ease-in-out infinite;
      box-shadow: var(--glow-cyan), 0 10px 30px rgba(6,182,212,.4) !important;
    }

    .wa-btn {
      position: fixed;
      bottom: 5rem; right: 1.5rem;
      width: 52px; height: 52px;
      background: linear-gradient(135deg, #128c7e, #25D366) !important;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 800;
      box-shadow: 0 4px 24px rgba(37,211,102,.5), 0 0 0 3px rgba(37,211,102,.15) !important;
      animation: waPulse 2.5s ease-in-out infinite;
      font-size: 1.3rem;
      color: #fff;
    }

    /* Cookie */
    .cookie {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      background: var(--gray-900);
      border-top: 1px solid rgba(255,255,255,.1);
      padding: 1rem 0;
      z-index: 999;
      display: none;
      transform: translateY(110%);
      transition: transform .7s var(--cb-apple);
    }
    .cookie.visible { transform: translateY(0); }
    .cookie-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      flex-wrap: wrap;
    }
    .cookie p { font-size: .8rem; color: rgba(255,255,255,.7); }
    .c-accept {
      background: var(--primary);
      color: #fff;
      border: none;
      padding: .5rem 1.4rem;
      border-radius: 999px;
      font-size: .8rem;
      font-weight: 500;
      cursor: pointer;
      min-height: 44px;
    }
    .c-refuse {
      background: transparent;
      color: rgba(255,255,255,.5);
      border: 1px solid rgba(255,255,255,.2);
      padding: .5rem 1.4rem;
      border-radius: 999px;
      font-size: .8rem;
      cursor: pointer;
      min-height: 44px;
    }

    /* Loader */
    #page-loader {
      position: fixed;
      inset: 0;
      z-index: 99999;
      background: var(--gray-900);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity .7s var(--cb-apple), transform .7s var(--cb-apple);
    }
    #page-loader.out {
      opacity: 0;
      transform: translateY(-100%);
      pointer-events: none;
    }
    .loader-inner { text-align: center; }
    .loader-logo {
      margin-bottom: 1.5rem;
      display: flex;
      justify-content: center;
      animation: loaderSpin 1.2s ease-in-out infinite alternate;
    }
    .loader-bar {
      width: 220px; height: 3px;
      background: rgba(255,255,255,.1);
      border-radius: 2px;
      margin: .8rem auto;
      overflow: hidden;
    }
    .loader-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--primary), var(--primary-light));
      border-radius: 2px;
      animation: loaderProgress 1.4s var(--cb-apple) forwards;
    }
    .loader-txt {
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(255,255,255,.5);
    }

    /* Skip link accessibilité */
    .skip-link {
      position: absolute;
      top: -100px; left: 1rem;
      background: var(--primary);
      color: #fff;
      padding: .6rem 1.2rem;
      border-radius: 0 0 8px 8px;
      font-size: .85rem;
      font-weight: 600;
      z-index: 9999;
      transition: top .2s;
    }
    .skip-link:focus { top: 0; }

    /* Progress bar scroll */
    #scroll-prog {
      position: fixed;
      top: 0; left: 0;
      height: 3px !important;
      z-index: 9999;
      width: 0%;
      border-radius: 0 3px 3px 0;
      background: linear-gradient(90deg, var(--primary), var(--cyan), var(--emerald), var(--rose-lt), var(--cyan-lt)) !important;
      background-size: 200% 100% !important;
      animation: progShimmer 2s linear infinite !important;
      box-shadow: 0 0 14px rgba(6,182,212,.7), 0 0 28px rgba(6,182,212,.3) !important;
      transition: width .08s linear;
    }

    /* Canvas hero */
    #hero-canvas {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
    }

    /* Split text animation */
    .split-char {
      display: inline-block;
      opacity: 0;
      transform: translateY(30px) rotate(3deg);
      transition: opacity .5s var(--cb-apple), transform .5s var(--cb-apple);
    }
    .split-char.on { opacity: 1; transform: none; }
    .split-word { display: inline-block; overflow: hidden; padding-bottom: 4px; }

    /* Typewriter sec-tag */
    .sec-tag.typing {
      border-right: 2px solid var(--cyan) !important;
      animation: tagGradient 5s ease-in-out infinite, blinkCaret .7s step-end infinite !important;
    }
    .sec-tag:not(.typing) {
      background: linear-gradient(90deg, var(--primary), var(--cyan), var(--emerald), var(--primary));
      background-size: 300% 100%;
      -webkit-background-clip: text !important;
      -webkit-text-fill-color: transparent !important;
      background-clip: text !important;
      animation: tagGradient 5s ease-in-out infinite !important;
      border-right: none !important;
    }

    /* Orbs ambiants */
    .orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(70px); opacity: .1; animation: orbDrift var(--dur, 20s) ease-in-out infinite alternate; }
    .orb-ambient {
      position: fixed;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
      mix-blend-mode: screen;
      opacity: 0;
      animation: orbAppear 3s ease forwards, orbFloat var(--of-dur, 18s) ease-in-out var(--of-delay, 0s) infinite alternate;
    }

    /* Fond aurora global */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background:
        radial-gradient(ellipse 90% 55% at -8% 25%,  rgba(6,182,212,.07)  0%, transparent 55%),
        radial-gradient(ellipse 70% 45% at 108% 65%, rgba(16,185,129,.06) 0%, transparent 55%),
        radial-gradient(ellipse 55% 35% at 52% 110%, rgba(244,63,94,.04)  0%, transparent 55%),
        radial-gradient(ellipse 40% 30% at 80% 10%,  rgba(6,182,212,.04)  0%, transparent 60%),
        radial-gradient(ellipse 30% 25% at 20% 85%,  rgba(16,185,129,.04) 0%, transparent 60%) !important;
      animation: auroraFull 22s ease-in-out infinite alternate !important;
    }

    /* Grain de fond */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 9998;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      opacity: .028;
      animation: grainShift .18s steps(1) infinite;
    }

    /* Hero extras */
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      z-index: 0;
      pointer-events: none;
      background: radial-gradient(ellipse 55% 45% at 82% 55%, rgba(56,189,248,.14), transparent 65%);
      animation: heroGlow 10s ease-in-out infinite alternate;
    }
    .hero::after {
      content: '';
      position: absolute; inset: 0;
      z-index: 1;
      pointer-events: none;
      background:
        radial-gradient(ellipse 40% 30% at 15% 85%, rgba(16,185,129,.12), transparent 55%),
        radial-gradient(ellipse 35% 25% at 90% 15%, rgba(244,63,94,.08),  transparent 55%);
      animation: heroReflet 14s ease-in-out infinite alternate;
    }

    /* ────────────────────────────────────────────────
       21. ANIMATIONS @keyframes
       ──────────────────────────────────────────────── */
    @keyframes fu          { from { opacity: 0; transform: translateY(22px); }  to { opacity: 1; transform: none; } }
    @keyframes growBar     { to { width: 48px; } }
    @keyframes gradientShift { 0%,100% { background-position: 0% 50%; }  50% { background-position: 100% 50%; } }
    @keyframes shimmerBar  { 0%,100% { opacity: .3; width: 12px; } 50% { opacity: 1; width: 44px; } }
    @keyframes btnGlow     { 0%,100% { box-shadow: 0 6px 20px rgba(2,132,199,.35); } 50% { box-shadow: 0 6px 50px rgba(2,132,199,.9), 0 0 80px rgba(2,132,199,.25), 0 0 120px rgba(56,189,248,.1); } }
    @keyframes ovBreath    { 0%,100% { opacity: .85; }  50% { opacity: .65; } }
    @keyframes heroGlow    { from { opacity: .5; transform: scale(1); } to { opacity: 1; transform: scale(1.12) translateX(20px); } }
    @keyframes heroReflet  { 0% { opacity: .6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.06) translateX(-10px); } 100% { opacity: .7; transform: scale(.97) translateX(10px); } }
    @keyframes marqScroll  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    @keyframes starSpin    { to { transform: rotate(360deg); } }
    @keyframes loaderSpin  { from { transform: scale(.8) rotate(-10deg); } to { transform: scale(1.1) rotate(10deg); } }
    @keyframes loaderProgress { from { width: 0; } to { width: 100%; } }
    @keyframes blobMorph   { 0%,100% { border-radius: 14px; } 20% { border-radius: 50% 20% 60% 15% / 20% 60% 15% 50%; } 40% { border-radius: 20% 60% 15% 50% / 60% 15% 50% 20%; } 60% { border-radius: 60% 15% 50% 20% / 15% 50% 20% 60%; } 80% { border-radius: 15% 50% 20% 60% / 50% 20% 60% 15%; } }
    @keyframes floatEmoji  { 0%,100% { transform: translateY(0) rotate(-5deg) scale(1); } 50% { transform: translateY(-14px) rotate(6deg) scale(1.05); } }
    @keyframes ringOut3    { 0% { box-shadow: 0 0 0 0 rgba(220,38,38,.5), 0 0 0 0 rgba(220,38,38,.25), 0 0 0 0 rgba(220,38,38,.1); } 100% { box-shadow: 0 0 0 18px rgba(220,38,38,0), 0 0 0 36px rgba(220,38,38,0), 0 0 0 54px rgba(220,38,38,0); } }
    @keyframes importantShake { 0%,100% { transform: none; } 10% { transform: rotate(-1deg); } 20% { transform: rotate(1deg); } 30% { transform: rotate(-.5deg); } 40% { transform: rotate(.5deg); } 50% { transform: none; } }
    @keyframes statPop     { 0% { transform: scale(.7) translateY(10px); opacity: 0; } 60% { transform: scale(1.15) translateY(-2px); } 100% { transform: none; opacity: 1; } }
    @keyframes statShimmer { from { opacity: 0; } to { opacity: 1; } }
    @keyframes rocketLift  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
    @keyframes waPulse     { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); } 50% { box-shadow: 0 4px 40px rgba(37,211,102,.7), 0 0 0 10px rgba(37,211,102,.1); } }
    @keyframes rippleAnim  { to { transform: scale(5); opacity: 0; } }
    @keyframes shimmerBtn  { 0% { left: -120%; } 100% { left: 220%; } }
    @keyframes scanLine    { 0%,100% { top: -10%; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { top: 110%; opacity: 0; } }
    @keyframes badgePulse  { 0%,100% { opacity: 1; } 50% { opacity: .5; } }
    @keyframes iconBounce  { 0%,100% { transform: none; } 40% { transform: scale(1.3) rotate(-8deg); } 70% { transform: scale(.9) rotate(4deg); } }
    @keyframes dotPulse    { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.8); opacity: .5; } }
    @keyframes orbDrift    { from { transform: translate(0,0) scale(1); } to { transform: translate(var(--tx,40px), var(--ty,-50px)) scale(1.1); } }
    @keyframes orbAppear   { to { opacity: var(--of-op, .09); } }
    @keyframes orbFloat    { 0% { transform: translate(0,0) scale(1); } 33% { transform: translate(var(--of-tx,40px), var(--of-ty,-30px)) scale(1.08); } 66% { transform: translate(calc(var(--of-tx,40px) * -0.6), calc(var(--of-ty,-30px) * 0.4)) scale(.95); } 100% { transform: translate(var(--of-tx,40px), var(--of-ty,-30px)) scale(1.04); } }
    @keyframes tagGradient { 0%,100% { background-position: 0% 50%; }  50% { background-position: 100% 50%; } }
    @keyframes blinkCaret  { 0%,100% { border-color: transparent; } 50% { border-color: var(--cyan); } }
    @keyframes progShimmer { 0% { background-position: 0% 0; } 100% { background-position: 200% 0; } }
    @keyframes auroraFull  { 0% { opacity: .7; filter: hue-rotate(0deg); } 33% { opacity: 1; filter: hue-rotate(8deg); } 66% { opacity: .8; filter: hue-rotate(-5deg); } 100% { opacity: 1; filter: hue-rotate(12deg); } }
    @keyframes grainShift  { 0%{background-position:0 0}10%{background-position:-5% -10%}20%{background-position:-15% 5%}30%{background-position:7% -25%}40%{background-position:20% 25%}50%{background-position:-25% 10%}60%{background-position:15% 5%}70%{background-position:0 15%}80%{background-position:25% 35%}90%{background-position:-10% 10%}100%{background-position:0 0}}
    @keyframes glitch1     { 0%,90%,100% { transform: none; opacity: 1; } 92% { transform: translateX(-3px); opacity: .8; } 94% { transform: translateX(3px); opacity: .9; } 96% { transform: translateX(-2px); opacity: .7; } 98% { transform: translateX(1px); opacity: .9; } }
    @keyframes confFall    { 0% { transform: translateY(0) rotate(0) scale(1); opacity: 1; } 100% { transform: translateY(110vh) rotate(720deg) scale(.5); opacity: 0; } }

    /* ────────────────────────────────────────────────
       22. RESPONSIVE
       ──────────────────────────────────────────────── */
    @media (max-width: 1100px) {
      .specs-grid      { grid-template-columns: repeat(2, 1fr); }
      .histoire-grid   { gap: 2.5rem; }
      .contact-grid    { grid-template-columns: 340px 1fr; }
    }

    @media (max-width: 1024px) {
      .urg-inner       { grid-template-columns: 1fr; gap: 2rem; }
      .urg-cta         { max-width: 480px; margin: 0 auto; }
      .resa-inner, .portail-inner, .histoire-grid { gap: 2.5rem; }
      .valeurs, .a-propos, .specs, .preparation,
      .urgences, .faq, .resa, .portail, .contact, .mentions { padding: 4.5rem 0; }
    }

    @media (max-width: 900px) {
      .hero-body       { max-width: 100%; }
      .val-grid        { grid-template-columns: repeat(2, 1fr); }
      .histoire-grid   { grid-template-columns: 1fr; }
      .histoire-image  { order: -1; width: 100%; overflow: visible; }
      .histoire-image img { max-height: 320px; object-fit: cover; }
      .histoire-image video { max-height: 260px; width: 100% !important; height: auto; }
      .contact-grid, .resa-inner, .portail-inner { grid-template-columns: 1fr; gap: 2rem; }
      .sec-h           { font-size: clamp(1.5rem, 3vw, 2.2rem); }
    }

    @media (max-width: 768px) {
      .nav, .btn-rdv   { display: none; }
      .menu-btn        { display: flex; }
      .wrap            { padding-inline: 16px; }
      .valeurs, .a-propos, .specs, .preparation,
      .urgences, .faq, .resa, .portail, .contact, .mentions { padding: 3rem 0; }
      .hdr             { padding: .65rem 0; }
      .hero            { min-height: 100svh; }
      .hero-body       { padding: 0 0 6rem; }
      .hero h1         { font-size: clamp(1.85rem, 7vw, 2.8rem); }
      .hero-p          { font-size: .9rem; max-width: 100%; }
      .stats-row       { display: grid; grid-template-columns: repeat(3, 1fr); }
      .stat            { padding: .9rem .3rem; }
      .stat-n          { font-size: clamp(.85rem, 4vw, 1.3rem) !important; }
      .stat-l          { font-size: .6rem; letter-spacing: .03em; }
      .val-grid, .specs-grid, .prep-grid { grid-template-columns: 1fr; gap: 1rem; }
      .equipement-list { grid-template-columns: 1fr; gap: .7rem; }
      .port-feats      { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
      .form-g          { grid-template-columns: 1fr; gap: .8rem; }
      .footer-container { grid-template-columns: 1fr; gap: 2rem; }
      .val-card        { padding: 1.8rem; }
      .sp-card         { padding: 1.4rem; }
      .prep-card       { padding: 1.4rem; }
      .form-card       { padding: 1.5rem; }
      .urg-cta         { padding: 1.8rem; max-width: 100%; }
      .ccard           { padding: 1.5rem; }
      .contact-grid    { grid-template-columns: 1fr; gap: 1.5rem; }
      .map-box         { min-height: 280px; }
      .mob-nav a       { font-size: 1.5rem; }
      .back-top        { bottom: 1rem; right: 1rem; width: 40px; height: 40px; }
      .wa-btn          { bottom: 4.5rem; right: 1rem; width: 48px; height: 48px; font-size: 1.2rem; }
      .cookie-row      { flex-direction: column; gap: 1rem; text-align: center; }
      .marquee-item    { font-size: .65rem; padding: 0 1.5rem; }
      .urg-list        { gap: .8rem; }
      .faq-list        { margin: 1.5rem auto 0; }
      .faq-q           { padding: 1rem 1.2rem; font-size: .9rem; }
      .faq-cta         { padding: 1.8rem; }
      .mention-card    { padding: 1.5rem; }
      .s-arrows, .s-dots { display: none; }
      /* Touch targets accessibles ≥ 44px */
      .btn-primary, .btn-outline, .btn-rdv, .btn-sub, .btn-urg,
      .btn-wa, .btn-port, .faq-q, .citem, .s-arr, .mob-nav a,
      .footer-links ul a, .c-accept, .c-refuse { min-height: 44px; }
      .faq-q           { min-height: 52px; }
    }

    @media (max-width: 600px) {
      .wrap            { padding-inline: 14px; }
      .sec-h           { font-size: clamp(1.4rem, 6vw, 1.9rem); }
      .sec-sub         { font-size: .88rem; }
      .hero-eyebrow    { font-size: .62rem; gap: .4rem; }
      .hero-eyebrow::before, .hero-eyebrow::after { width: 18px; }
      .hero h1         { font-size: clamp(1.7rem, 7.5vw, 2.3rem); margin-bottom: 1rem; }
      .hero-p          { font-size: .85rem; margin-bottom: 1.8rem; }
      .btn-primary, .btn-outline { font-size: .82rem; padding: .75rem 1.3rem; }
      .stat-n          { font-size: clamp(.8rem, 4.5vw, 1.15rem) !important; }
      .stat            { padding: .8rem .25rem; }
      .val-card        { padding: 1.5rem; border-radius: 16px; }
      .val-card h3     { font-size: 1.15rem; }
      .sp-card         { padding: 1.2rem; }
      .sp-card h3      { font-size: .9rem; }
      .sp-card p       { font-size: .78rem; }
      .prep-card       { padding: 1.2rem; }
      .prep-card h3    { font-size: 1rem; }
      .valeurs, .a-propos, .specs, .preparation,
      .urgences, .faq, .resa, .portail, .contact, .mentions { padding: 2.5rem 0; }
      .port-feats      { grid-template-columns: 1fr 1fr; gap: .6rem; }
      .port-feat       { padding: .9rem; }
      .urg-ico         { width: 38px; height: 38px; }
      .urg-item        { padding: 1rem; }
      .faq-q           { padding: .9rem 1rem; font-size: .85rem; }
      .form-card       { padding: 1.2rem; border-radius: 16px; }
      .fg input, .fg select, .fg textarea { padding: .7rem .85rem; font-size: .85rem; }
      .btn-sub         { padding: .9rem; font-size: .88rem; }
      .marquee-item    { font-size: .6rem; padding: 0 1.2rem; letter-spacing: .09em; }
    }

    @media (max-width: 400px) {
      .wrap            { padding-inline: 12px; }
      .hero h1         { font-size: 1.6rem; letter-spacing: -.02em; }
      .hero-p          { font-size: .82rem; }
      .btn-primary, .btn-outline { font-size: .8rem; padding: .7rem 1.1rem; }
      .stat-n          { font-size: clamp(.75rem, 5vw, 1rem) !important; }
      .stat-l          { font-size: .55rem; letter-spacing: .02em; }
      .sec-h           { font-size: 1.35rem; }
      .port-feats      { grid-template-columns: 1fr; }
      .val-grid, .specs-grid, .prep-grid { gap: .8rem; }
      .logo-name       { font-size: .95rem; }
      .logo-tagline    { font-size: .55rem; }
      .logo-img        { width: 34px; height: 34px; }
      .footer-social   { gap: .6rem; }
      .footer-social a { width: 34px; height: 34px; }
      .valeurs, .a-propos, .specs, .preparation,
      .urgences, .faq, .resa, .portail, .contact, .mentions { padding: 2rem 0; }
    }

    @media (max-width: 360px) {
      .hero h1         { font-size: 1.45rem; }
      .stat            { padding: .7rem .15rem; }
      .stat-n          { font-size: .75rem !important; }
      .stat-l          { display: none; }
      .hero-stats      { padding: .3rem 0; }
    }

    @media (max-width: 768px) and (orientation: landscape) {
      .hero            { min-height: 100vw; }
      .hero-body       { padding-top: 5rem; padding-bottom: 8rem; }
      .hero h1         { font-size: clamp(1.4rem, 4.5vw, 2.2rem); }
      .hero-stats      { position: relative; }
    }

    @media (max-width: 768px) {
      body::after      { opacity: .016; animation: none; }
      .orb-ambient     { display: none; }
    }

    @media (prefers-reduced-motion: reduce) {
      .orb-ambient, body::after { display: none; }
      body::before     { animation: none !important; }
    }

    @media print {
      .hdr, .mob-nav, .wa-btn, .back-top, .cookie,
      .s-dots, .s-arrows, .hero-slides, .hero-ov,
      #page-loader, #scroll-prog, .marquee-wrap,
      .orb-ambient { display: none !important; }
      .hero        { min-height: auto; padding: 2rem 0; }
      .hero-body   { color: #000; }
      body         { background: #fff; }
      section      { padding: 1.5rem 0 !important; }
    }
