/* ═══ RESET & VARS ═══ */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --navy:      #08112a;
      --navy-2:    #0d1e42;
      --navy-3:    #162952;
      --sky:       #0ea5e9;
      --sky-light: #38bdf8;
      --sky-dark:  #0284c7;
      --sky-glow:  rgba(14,165,233,.25);
      --mint:      #10b981;
      --mint-light:#d1fae5;
      --gold:      #f59e0b;

      --gray-950:  #030712;
      --gray-900:  #111827;
      --gray-800:  #1f2937;
      --gray-700:  #374151;
      --gray-600:  #4b5563;
      --gray-500:  #6b7280;
      --gray-400:  #9ca3af;
      --gray-300:  #d1d5db;
      --gray-200:  #e5e7eb;
      --gray-100:  #f3f4f6;
      --gray-50:   #f9fafb;
      --white:     #ffffff;

      --font-body:    'Plus Jakarta Sans', sans-serif;
      --font-display: 'Bricolage Grotesque', sans-serif;

      --r-sm:  6px;
      --r-md: 10px;
      --r-lg: 16px;
      --r-xl: 20px;
      --r-2xl:28px;

      --shadow-sm:  0 1px 4px rgba(0,0,0,.06);
      --shadow-md:  0 4px 20px rgba(0,0,0,.09);
      --shadow-lg:  0 12px 48px rgba(0,0,0,.13);
      --shadow-xl:  0 24px 64px rgba(0,0,0,.18);
      --shadow-sky: 0 8px 32px rgba(14,165,233,.32);
    }

    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: var(--font-body); background: #fafafa; color: var(--gray-900); line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
    ::selection { background: #bae6fd; }
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--gray-100); }
    ::-webkit-scrollbar-thumb { background: var(--sky); border-radius: 3px; }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }

    /* ═══ UTILS ═══ */
    .container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
    .section { padding: 100px 0; }
    .section--alt { background: var(--gray-50); }
    .section--dark { background: var(--navy); color: var(--white); }

    .chip {
      display: inline-flex; align-items: center; gap: 7px;
      font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
      color: var(--sky-dark); background: rgba(14,165,233,.08); border: 1px solid rgba(14,165,233,.2);
      padding: 5px 14px; border-radius: 100px;
    }
    .chip--white { color: var(--sky-light); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); }
    .chip--green { color: var(--mint); background: rgba(16,185,129,.08); border-color: rgba(16,185,129,.25); }
    .chip svg { width: 13px; height: 13px; }

    .section-header { text-align: center; margin-bottom: 72px; }
    .section-header .chip { margin-bottom: 18px; }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 2.9rem);
      font-weight: 800; line-height: 1.12;
      color: var(--gray-900); letter-spacing: -.02em;
    }
    .section-title--white { color: var(--white); }
    .section-sub {
      margin-top: 16px; font-size: 1.05rem;
      color: var(--gray-500); max-width: 540px; margin-inline: auto;
    }
    .section-sub--white { color: rgba(255,255,255,.55); }

    .btn {
      display: inline-flex; align-items: center; gap: 9px;
      font-family: var(--font-body); font-size: .92rem; font-weight: 700;
      padding: 13px 26px; border-radius: var(--r-lg);
      border: none; cursor: pointer; transition: all .22s cubic-bezier(.4,0,.2,1);
      white-space: nowrap; letter-spacing: .01em;
    }
    .btn--primary { background: var(--sky); color: var(--white); box-shadow: var(--shadow-sky); }
    .btn--primary:hover { background: var(--sky-dark); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(14,165,233,.42); }
    .btn--outline { background: transparent; color: var(--sky); border: 2px solid var(--sky); }
    .btn--outline:hover { background: var(--sky); color: var(--white); transform: translateY(-1px); }
    .btn--white { background: var(--white); color: var(--navy); font-weight: 700; }
    .btn--white:hover { background: var(--gray-100); transform: translateY(-2px); }
    .btn--ghost { background: rgba(255,255,255,.1); color: var(--white); border: 1px solid rgba(255,255,255,.22); }
    .btn--ghost:hover { background: rgba(255,255,255,.2); }
    .btn--lg { padding: 16px 34px; font-size: 1rem; }
    .btn svg { flex-shrink: 0; }

    /* ═══ NAVBAR ═══ */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 0 28px;
      transition: all .35s cubic-bezier(.4,0,.2,1);
    }
    .nav__inner {
      max-width: 1180px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      height: 76px;
    }
    .nav {
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(20px) saturate(1.8);
      -webkit-backdrop-filter: blur(20px) saturate(1.8);
      border-bottom: 1px solid rgba(0,0,0,0.07);
      box-shadow: 0 2px 16px rgba(0,0,0,0.06);
      isolation: isolate;
    }
    .nav.scrolled {
      background: rgba(255,255,255,.88);
      backdrop-filter: blur(20px) saturate(1.8);
      -webkit-backdrop-filter: blur(20px) saturate(1.8);
      border-bottom: 1px solid rgba(0,0,0,.07);
      box-shadow: 0 4px 24px rgba(0,0,0,.07);
    }
    .nav__logo {
      display: flex; align-items: center; gap: 12px;
      font-family: var(--font-display); font-size: 1.15rem; font-weight: 800;
      color: var(--navy); letter-spacing: -.02em; transition: color .3s;
      text-decoration: none;
    }
    .nav__logo-img-wrap {
      width: 64px; height: 64px;
      border-radius: 14px;
      background: white;
      border: 2px solid rgba(14,165,233,.15);
      box-shadow: 0 2px 12px rgba(14,165,233,.18), 0 1px 4px rgba(0,0,0,.06);
      display: flex; align-items: center; justify-content: center;
      overflow: hidden; flex-shrink: 0;
      transition: box-shadow .25s, transform .25s;
    }
    .nav__logo:hover .nav__logo-img-wrap {
      box-shadow: 0 4px 20px rgba(14,165,233,.32), 0 2px 8px rgba(0,0,0,.08);
      transform: scale(1.04);
    }
    .nav__logo img {
      width: 60px; height: 60px; object-fit: contain;
      mix-blend-mode: multiply;
    }
    .nav__logo-text {
      display: flex; flex-direction: column; line-height: 1.1;
    }
    .nav__logo-name {
      font-family: var(--font-display); font-size: 1.22rem; font-weight: 800;
      color: var(--navy); letter-spacing: -.03em;
    }
    .nav__logo-tagline {
      font-size: .66rem; font-weight: 600; color: var(--sky-dark);
      text-transform: uppercase; letter-spacing: .1em; opacity: .85;
    }
    .nav__links { display: flex; align-items: center; gap: 2px; list-style: none; }
    .nav__links a {
      font-size: .82rem; font-weight: 600; color: var(--gray-600);
      padding: 8px 10px; border-radius: var(--r-md);
      transition: all .2s; white-space: nowrap;
    }
    .nav__links a:hover { color: var(--sky); background: rgba(14,165,233,.08); }
    .nav__right { display: flex; align-items: center; gap: 10px; }
    .nav__tel {
      display: flex; align-items: center; gap: 7px;
      font-size: .85rem; font-weight: 700; color: var(--sky-dark);
      padding: 8px 14px; border-radius: var(--r-md);
      transition: all .2s; white-space: nowrap;
    }
    .nav__tel:hover { background: rgba(14,165,233,.08); color: var(--sky-dark); }
    .nav__burger {
      display: none; flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer; padding: 6px;
    }
    .nav__burger span {
      display: block; width: 22px; height: 2px;
      background: var(--gray-800); border-radius: 2px; transition: all .3s;
    }
    .nav__mobile {
      position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
      background: var(--white); padding: 24px 20px;
      flex-direction: column; gap: 4px; z-index: 999; overflow-y: auto;
      display: flex;
      transform: translateX(100%);
      transition: transform .35s cubic-bezier(.4,0,.2,1);
      box-shadow: -4px 0 24px rgba(0,0,0,.08);
    }
    .nav__mobile.open { transform: translateX(0); }
    .nav__mobile a {
      font-size: 1rem; font-weight: 600; color: var(--gray-700);
      padding: 13px 16px; border-radius: var(--r-md); transition: all .2s;
    }
    .nav__mobile a:hover { background: var(--gray-100); color: var(--sky); }
    .nav__mobile .btn { margin-top: 12px; justify-content: center; }
    .nav__mobile-sep { height: 1px; background: var(--gray-200); margin: 8px 0; }

    /* ═══ HERO ═══ */
    .hero {
      min-height: 100vh;
      background: var(--navy);
      display: flex; align-items: center;
      position: relative; overflow: hidden;
      padding-top: 76px;
    }
    .hero__bg { position: absolute; inset: 0; pointer-events: none; }
    .hero__orb {
      position: absolute; border-radius: 50%;
      filter: blur(80px); opacity: .45;
      animation: drift 12s ease-in-out infinite alternate;
    }
    .hero__orb--1 { width: 700px; height: 700px; top: -200px; right: -150px; background: radial-gradient(circle, rgba(14,165,233,.6), transparent 70%); animation-delay: 0s; }
    .hero__orb--2 { width: 500px; height: 500px; bottom: -100px; left: -100px; background: radial-gradient(circle, rgba(16,185,129,.4), transparent 70%); animation-delay: -4s; }
    .hero__orb--3 { width: 300px; height: 300px; top: 40%; left: 40%; background: radial-gradient(circle, rgba(14,165,233,.3), transparent 70%); animation-delay: -8s; }
    @keyframes drift { from { transform: translate(0,0) scale(1); } to { transform: translate(30px,-30px) scale(1.08); } }
    .hero__grid {
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: radial-gradient(ellipse at 50% 50%, black 40%, transparent 80%);
    }

    .hero__content {
      position: relative; z-index: 2;
      display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
    }
    .hero__live {
      display: inline-flex; align-items: center; gap: 9px;
      background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
      padding: 7px 16px; border-radius: 100px; margin-bottom: 30px;
      font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.85); letter-spacing: .08em; text-transform: uppercase;
    }
    .hero__live-dot {
      width: 7px; height: 7px; border-radius: 50%; background: var(--mint);
      box-shadow: 0 0 0 0 rgba(16,185,129,.4);
      animation: livepulse 2s ease infinite;
    }
    @keyframes livepulse { 0%,100%{box-shadow:0 0 0 0 rgba(16,185,129,.4)} 50%{box-shadow:0 0 0 6px rgba(16,185,129,0)} }

    .hero__h1 {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 4.5vw, 3.6rem);
      font-weight: 800; line-height: 1.1; letter-spacing: -.03em;
      color: var(--white); margin-bottom: 22px;
    }
    .hero__h1 em { font-style: normal; color: var(--sky-light); }
    .hero__desc {
      font-size: 1.02rem; color: rgba(255,255,255,.65);
      max-width: 520px; margin-bottom: 38px; line-height: 1.75;
    }
    .hero__desc strong { color: rgba(255,255,255,.85); font-weight: 600; }
    .hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }
    .hero__metrics { display: flex; gap: 36px; }
    .hero__metric-val {
      font-family: var(--font-display); font-size: 1.85rem; font-weight: 800;
      color: var(--white); letter-spacing: -.02em;
    }
    .hero__metric-label { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: 2px; font-weight: 500; }
    .hero__metric-divider { width: 1px; background: rgba(255,255,255,.12); }

    .hero__cards { display: flex; flex-direction: column; gap: 16px; animation: slideUp .9s cubic-bezier(.4,0,.2,1) both .2s; }
    @keyframes slideUp { from{opacity:0;transform:translateY(40px)} to{opacity:1;transform:translateY(0)} }
    .hero__card {
      background: rgba(255,255,255,.06);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--r-xl); padding: 26px 28px;
      transition: all .3s;
    }
    .hero__card:hover { background: rgba(255,255,255,.1); transform: translateX(-4px); }
    .hero__card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
    .hero__card-icon {
      width: 44px; height: 44px; border-radius: var(--r-md);
      background: var(--sky); display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .hero__card-icon--dim { background: rgba(255,255,255,.1); }
    .hero__card-name { font-weight: 700; font-size: .95rem; color: var(--white); }
    .hero__card-desc { font-size: .83rem; color: rgba(255,255,255,.55); line-height: 1.55; }

    .hero__trust {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--r-xl); padding: 18px 24px;
      display: flex; align-items: center; gap: 14px;
    }
    .hero__trust-stars { display: flex; gap: 3px; }
    .hero__trust-stars svg { width: 18px; height: 18px; fill: var(--gold); }
    .hero__trust-txt strong { font-size: .92rem; color: var(--white); display: block; font-weight: 700; }
    .hero__trust-txt span { font-size: .76rem; color: rgba(255,255,255,.45); }

    /* ═══ TICKER BAND ═══ */
    .band {
      background: var(--sky); padding: 0;
      overflow: hidden;
    }
    .band__track {
      display: flex; gap: 0;
      animation: ticker 35s linear infinite;
      width: max-content;
    }
    @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    .band__item {
      display: flex; align-items: center; gap: 10px;
      color: rgba(255,255,255,.95); font-size: .85rem; font-weight: 600;
      padding: 14px 32px; white-space: nowrap; border-right: 1px solid rgba(255,255,255,.2);
    }
    .band__item svg { width: 16px; height: 16px; opacity: .9; }

    /* ═══ SERVICES ═══ */
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .svc-card {
      background: var(--white); border: 1px solid var(--gray-200);
      border-radius: var(--r-xl); padding: 34px 30px;
      transition: all .3s cubic-bezier(.4,0,.2,1); position: relative; overflow: hidden;
    }
    .svc-card::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--sky), var(--mint));
      transform: scaleX(0); transform-origin: left; transition: transform .35s cubic-bezier(.4,0,.2,1);
    }
    .svc-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-6px); border-color: transparent; }
    .svc-card:hover::after { transform: scaleX(1); }
    .svc-badge {
      position: absolute; top: 16px; right: 16px;
      font-size: .68rem; font-weight: 700; letter-spacing: .02em;
      padding: 5px 10px; border-radius: 999px;
      background: linear-gradient(90deg, rgba(14,165,233,.10), rgba(16,185,129,.10));
      color: var(--sky); border: 1px solid rgba(14,165,233,.18);
      white-space: nowrap; line-height: 1;
    }
    .svc-icon {
      width: 54px; height: 54px; border-radius: var(--r-lg);
      background: rgba(14,165,233,.08); color: var(--sky);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 22px; transition: all .3s;
    }
    .svc-card:hover .svc-icon { background: var(--sky); color: var(--white); }
    .svc-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--gray-900); margin-bottom: 10px; letter-spacing: -.01em; }
    .svc-desc { font-size: .87rem; color: var(--gray-500); line-height: 1.65; margin-bottom: 20px; }
    .svc-link {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: .85rem; font-weight: 700; color: var(--sky);
      transition: gap .2s; background: none; border: none; cursor: pointer;
      font-family: var(--font-body);
    }
    .svc-card:hover .svc-link { gap: 10px; }

    /* ═══ POURQUOI NOUS ═══ */
    .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .why__chip { margin-bottom: 18px; }
    .why__h2 {
      font-family: var(--font-display); font-size: clamp(1.9rem, 3.2vw, 2.6rem);
      font-weight: 800; line-height: 1.1; letter-spacing: -.025em; margin-bottom: 18px;
    }
    .why__p { font-size: 1rem; color: var(--gray-500); margin-bottom: 36px; line-height: 1.75; }
    .why__p strong { color: var(--gray-700); }
    .why__features { display: flex; flex-direction: column; gap: 22px; margin-bottom: 40px; }
    .why__feat { display: flex; gap: 14px; align-items: flex-start; }
    .why__feat-icon {
      width: 42px; height: 42px; border-radius: 10px;
      background: rgba(14,165,233,.08); color: var(--sky);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .why__feat-title { font-weight: 700; font-size: .93rem; color: var(--gray-900); margin-bottom: 3px; }
    .why__feat-desc { font-size: .84rem; color: var(--gray-500); line-height: 1.55; }

    .why__visual { position: relative; }
    .why__panel {
      background: linear-gradient(145deg, var(--navy-2), var(--navy-3));
      border-radius: var(--r-2xl); padding: 40px;
      box-shadow: var(--shadow-xl);
      border: 1px solid rgba(255,255,255,.05);
      display: flex; flex-direction: column; gap: 16px;
    }
    .why__stat-card {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--r-lg); padding: 22px 24px;
      backdrop-filter: blur(10px);
    }
    .why__stat-val {
      font-family: var(--font-display); font-size: 2.2rem; font-weight: 800;
      color: var(--white); letter-spacing: -.03em;
    }
    .why__stat-label { font-size: .82rem; color: rgba(255,255,255,.5); margin-top: 4px; }
    .why__quote-card {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.09);
      border-radius: var(--r-lg); padding: 22px 24px;
    }
    .why__quote-text { font-size: .9rem; color: rgba(255,255,255,.75); line-height: 1.65; font-style: italic; margin-bottom: 12px; }
    .why__quote-by { font-size: .78rem; color: rgba(255,255,255,.4); font-weight: 600; }

    /* ═══ REVIEWS CAROUSEL ═══ */
    .reviews-wrap { position: relative; overflow: hidden; }
    .reviews-wrap::before,
    .reviews-wrap::after {
      content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
    }
    .reviews-wrap::before { left: 0; background: linear-gradient(to right, var(--gray-50), transparent); }
    .reviews-wrap::after  { right: 0; background: linear-gradient(to left, var(--gray-50), transparent); }

    .reviews-track {
      display: flex; gap: 20px;
      animation: scrollReviews 32s linear infinite;
      width: max-content;
    }
    .reviews-track:hover { animation-play-state: paused; }
    @keyframes scrollReviews { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    .rev-card {
      background: var(--white); border: 1px solid var(--gray-200);
      border-radius: var(--r-xl); padding: 28px 28px 24px;
      width: 340px; flex-shrink: 0;
      box-shadow: var(--shadow-sm);
      transition: box-shadow .3s, transform .3s;
    }
    .rev-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

    .rev-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
    .rev-stars { display: flex; gap: 3px; }
    .rev-stars svg { width: 16px; height: 16px; fill: var(--gold); }
    .rev-google { display: flex; align-items: center; gap: 5px; font-size: .72rem; font-weight: 700; color: var(--gray-400); letter-spacing: .04em; }
    .rev-google svg { width: 14px; height: 14px; }
    .rev-verified {
      display: inline-flex; align-items: center; gap: 4px;
      font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
      color: var(--mint); background: var(--mint-light); padding: 3px 8px; border-radius: 100px;
      margin-bottom: 12px;
    }
    .rev-verified svg { width: 11px; height: 11px; }
    .rev-text { font-size: .875rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 18px; }
    .rev-author { display: flex; align-items: center; gap: 10px; }
    .rev-avatar {
      width: 38px; height: 38px; border-radius: 50%;
      background: linear-gradient(135deg, var(--sky), var(--sky-dark));
      color: white; font-weight: 700; font-size: .88rem;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .rev-name { font-weight: 700; font-size: .88rem; color: var(--gray-800); }
    .rev-role { font-size: .76rem; color: var(--gray-400); }

    .reviews-summary { text-align: center; margin-top: 52px; }
    .reviews-pill {
      display: inline-flex; align-items: center; gap: 20px;
      background: var(--white); border: 1px solid var(--gray-200);
      border-radius: var(--r-2xl); padding: 20px 40px;
      box-shadow: var(--shadow-md);
    }
    .reviews-pill__score {
      font-family: var(--font-display); font-size: 2.6rem; font-weight: 800;
      color: var(--gray-900); letter-spacing: -.03em;
    }
    .reviews-pill__sep { width: 1px; height: 40px; background: var(--gray-200); }
    .reviews-pill__label { font-size: .82rem; color: var(--gray-500); margin-top: 3px; }
    .reviews-pill__label strong { display: block; color: var(--gray-800); font-size: .92rem; }

    /* ═══ ZONE D'INTERVENTION (NOUVEAU) ═══ */
    .zone-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    .zone-card {
      background: var(--white); border: 1px solid var(--gray-200);
      border-radius: var(--r-xl); padding: 30px 28px;
      transition: all .3s cubic-bezier(.4,0,.2,1);
    }
    .zone-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(14,165,233,.3); }
    .zone-card__city {
      font-family: var(--font-display); font-size: 1.15rem; font-weight: 800;
      color: var(--gray-900); margin-bottom: 10px; letter-spacing: -.01em;
    }
    .zone-card__desc {
      font-size: .87rem; color: var(--gray-500); line-height: 1.65;
    }
    .zone-card__desc strong { color: var(--sky-dark); }
    .zone-card__desc a { color: var(--sky); font-weight: 600; }
    .zone-card__desc a:hover { text-decoration: underline; }

    /* ═══ A PROPOS ═══ */
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .about__h2 {
      font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 800; line-height: 1.1; letter-spacing: -.025em;
      color: var(--white); margin: 18px 0 18px;
    }
    .about__p { font-size: .97rem; color: rgba(255,255,255,.6); line-height: 1.78; margin-bottom: 16px; }
    .about__p strong { color: rgba(255,255,255,.85); }
    .about__values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
    .about__val {
      background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--r-lg); padding: 18px;
    }
    .about__val-icon {
      width: 36px; height: 36px; border-radius: 9px;
      background: rgba(14,165,233,.2); color: var(--sky-light);
      display: flex; align-items: center; justify-content: center; margin-bottom: 10px;
    }
    .about__val-title { font-weight: 700; font-size: .88rem; color: white; margin-bottom: 3px; }
    .about__val-desc { font-size: .78rem; color: rgba(255,255,255,.45); line-height: 1.5; }

    .about__stats-panel {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--r-2xl); padding: 40px; display: flex; flex-direction: column; gap: 20px;
    }
    .about__stat { text-align: center; }
    .about__stat-num {
      font-family: var(--font-display); font-size: 2.8rem; font-weight: 800;
      color: var(--white); letter-spacing: -.03em; line-height: 1;
    }
    .about__stat-lbl { font-size: .82rem; color: rgba(255,255,255,.45); margin-top: 5px; }
    .about__sep { height: 1px; background: rgba(255,255,255,.08); }
    .about__contact {
      background: var(--sky); border-radius: var(--r-lg); padding: 22px;
      text-align: center;
    }
    .about__contact-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.7); margin-bottom: 6px; }
    .about__contact-phone {
      font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
      color: white; display: block; margin-bottom: 3px; letter-spacing: -.02em;
    }
    .about__contact-hours { font-size: .8rem; color: rgba(255,255,255,.7); }

    /* ═══ FAQ ═══ */
    .faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
    .faq-item {
      border: 1px solid var(--gray-200); border-radius: var(--r-lg); overflow: hidden;
      transition: border-color .2s, box-shadow .2s;
    }
    .faq-item.open { border-color: var(--sky); box-shadow: 0 0 0 3px rgba(14,165,233,.1); }
    .faq-q {
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
      padding: 20px 26px; cursor: pointer;
      font-weight: 700; font-size: .93rem; color: var(--gray-900);
      background: var(--white); border: none; width: 100%; text-align: left;
      transition: color .2s; font-family: var(--font-body);
    }
    .faq-item.open .faq-q { color: var(--sky); }
    .faq-icon {
      width: 28px; height: 28px; border-radius: 50%;
      background: var(--gray-100); display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; transition: all .3s; color: var(--gray-600);
    }
    .faq-item.open .faq-icon { background: rgba(14,165,233,.1); color: var(--sky); transform: rotate(45deg); }
    .faq-a {
      padding: 0 26px; max-height: 0; overflow: hidden;
      transition: max-height .35s ease, padding .3s;
    }
    .faq-item.open .faq-a { max-height: 400px; padding-bottom: 20px; }
    .faq-a p { font-size: .88rem; color: var(--gray-500); line-height: 1.72; }
    .faq-a a { color: var(--sky); font-weight: 600; }
    .faq-a a:hover { text-decoration: underline; }

    /* ═══ CTA ═══ */
    .cta-section {
      background: linear-gradient(130deg, var(--navy) 0%, #071830 60%, #0c2545 100%);
      padding: 100px 0; text-align: center; position: relative; overflow: hidden;
    }
    .cta-section::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at 30% 60%, rgba(14,165,233,.25), transparent 60%),
                  radial-gradient(ellipse at 75% 30%, rgba(16,185,129,.12), transparent 55%);
    }
    .cta-section .container { position: relative; z-index: 2; }
    .cta-title {
      font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.2rem);
      font-weight: 800; color: white; margin: 16px 0 18px; letter-spacing: -.03em;
    }
    .cta-desc { font-size: 1.05rem; color: rgba(255,255,255,.6); margin-bottom: 40px; max-width: 520px; margin-inline: auto; }
    .cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

    /* ═══ CONTACT ═══ */
    .contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
    .contact-info__h2 {
      font-family: var(--font-display); font-size: 2rem; font-weight: 800;
      line-height: 1.12; letter-spacing: -.025em; margin: 14px 0 12px;
    }
    .contact-info__p { font-size: .93rem; color: var(--gray-500); line-height: 1.72; margin-bottom: 32px; }
    .contact-info__p strong { color: var(--gray-700); }
    .contact-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
    .contact-item { display: flex; gap: 14px; align-items: flex-start; }
    .contact-item__icon {
      width: 44px; height: 44px; border-radius: var(--r-md);
      background: rgba(14,165,233,.08); color: var(--sky);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .contact-item__lbl { font-size: .75rem; text-transform: uppercase; letter-spacing: .07em; color: var(--gray-400); font-weight: 700; }
    .contact-item__val { font-size: .93rem; font-weight: 700; color: var(--gray-800); }
    .contact-item__val a { color: var(--sky); }
    .contact-callbtn {
      display: flex; align-items: center; gap: 12px;
      background: var(--sky); color: white;
      border-radius: var(--r-lg); padding: 16px 22px;
      font-weight: 700; font-size: .95rem;
      box-shadow: var(--shadow-sky); transition: all .22s;
    }
    .contact-callbtn:hover { background: var(--sky-dark); transform: translateY(-2px); }
    .contact-callbtn__sub { font-size: .77rem; font-weight: 500; opacity: .78; }

    .cf-box {
      background: var(--white); border: 1px solid var(--gray-200);
      border-radius: var(--r-2xl); padding: 44px;
      box-shadow: var(--shadow-lg);
    }
    .cf-box__h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 5px; }
    .cf-box__sub { font-size: .85rem; color: var(--gray-400); margin-bottom: 30px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
    .form-label { font-size: .82rem; font-weight: 700; color: var(--gray-700); }
    .form-input, .form-select, .form-textarea {
      width: 100%; padding: 12px 15px;
      border: 1.5px solid var(--gray-200); border-radius: var(--r-md);
      font-family: var(--font-body); font-size: .88rem; color: var(--gray-900);
      background: var(--white); transition: border-color .2s, box-shadow .2s; outline: none;
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      border-color: var(--sky); box-shadow: 0 0 0 3px rgba(14,165,233,.12);
    }
    .form-textarea { resize: vertical; min-height: 110px; }
    .form-submit {
      width: 100%; padding: 15px;
      background: var(--sky); color: white;
      border: none; border-radius: var(--r-lg);
      font-family: var(--font-body); font-size: .95rem; font-weight: 700;
      cursor: pointer; transition: all .2s;
      display: flex; align-items: center; justify-content: center; gap: 8px;
      box-shadow: var(--shadow-sky);
    }
    .form-submit:hover { background: var(--sky-dark); transform: translateY(-1px); }
    .form-note { font-size: .77rem; color: var(--gray-400); text-align: center; margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 5px; flex-wrap: wrap; }
    .form-note a { color: var(--sky); font-weight: 600; }
    .form-success {
      display: none; background: var(--mint-light); border: 1px solid rgba(16,185,129,.3);
      border-radius: var(--r-lg); padding: 14px 18px;
      color: var(--mint); font-size: .88rem; font-weight: 700;
      align-items: center; gap: 9px; margin-top: 14px;
    }
    .form-success.visible { display: flex; }

    /* ═══ FOOTER ═══ */
    .footer { background: var(--gray-950); color: var(--gray-400); padding: 64px 0 0; }
    .footer__grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
    .footer__logo {
      display: flex; align-items: center; gap: 10px;
      font-family: var(--font-display); font-size: 1.2rem; font-weight: 800;
      color: white; margin-bottom: 14px; letter-spacing: -.02em;
    }
    .footer__brand-name {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 800;
      color: white;
      letter-spacing: -.04em;
      line-height: 1;
    }
    .footer__brand-dot { color: var(--sky); }
    .footer__brand-desc { font-size: .85rem; line-height: 1.7; max-width: 300px; margin-bottom: 22px; }
    .footer__brand-desc strong { color: var(--gray-300); }
    .footer__contact-line { display: flex; align-items: center; gap: 8px; font-size: .85rem; margin-bottom: 8px; color: var(--gray-400); }
    .footer__contact-line a { color: var(--gray-400); transition: color .2s; }
    .footer__contact-line a:hover { color: var(--sky); }
    .footer__contact-line svg { color: var(--sky); flex-shrink: 0; width: 14px; height: 14px; }
    .footer__col-title { font-weight: 800; font-size: .78rem; text-transform: uppercase; letter-spacing: .09em; color: var(--gray-300); margin-bottom: 18px; }
    .footer__links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .footer__links a { font-size: .85rem; color: var(--gray-500); transition: color .2s; }
    .footer__links a:hover { color: var(--sky); }
    .footer__rating-box {
      margin-top: 22px; padding: 14px; background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.07); border-radius: var(--r-lg);
    }
    .footer__rating-lbl { font-size: .75rem; font-weight: 700; color: var(--gray-400); margin-bottom: 4px; display: flex; align-items: center; gap: 5px; }
    .footer__rating-lbl svg { width: 12px; height: 12px; fill: var(--gold); }
    .footer__rating-score { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: white; letter-spacing: -.02em; }
    .footer__rating-sub { font-size: .75rem; color: var(--gray-600); }
    .footer__bottom {
      border-top: 1px solid rgba(255,255,255,.05);
      padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
    }
    .footer__copy { font-size: .8rem; }
    .footer__bottom-links { display: flex; gap: 22px; }
    .footer__bottom-links a { font-size: .8rem; color: var(--gray-600); transition: color .2s; }
    .footer__bottom-links a:hover { color: var(--sky); }

    /* ═══ GALLERY AVANT/APRÈS ═══ */
    .gallery-section {
      padding: 100px 0; background: linear-gradient(180deg, #f0f4f8 0%, #f7f8fa 100%);
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }
    .av-card {
      background: var(--white);
      border-radius: var(--r-xl);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--gray-200);
      transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s;
    }
    .av-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
    .av-card__label {
      padding: 14px 18px 10px;
      display: flex; align-items: center; gap: 8px;
    }
    .av-card__badge {
      font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
      color: var(--sky-dark); background: rgba(14,165,233,.1);
      border: 1px solid rgba(14,165,233,.2);
      padding: 4px 11px; border-radius: 100px;
    }
    .av-card__title {
      font-family: var(--font-display); font-size: .95rem; font-weight: 800;
      color: var(--gray-800); letter-spacing: -.01em;
    }
    .av-card--single { cursor: zoom-in; }
    .av-card__single-wrap { position: relative; overflow: hidden; }
    .av-card__single-wrap img {
      width: 100%; height: 280px; object-fit: cover;
      display: block;
      transition: transform .45s cubic-bezier(.4,0,.2,1);
    }
    .av-card--single:hover .av-card__single-wrap img { transform: scale(1.04); }
    .av-card__zoom-hint {
      position: absolute; top: 10px; right: 10px;
      background: rgba(0,0,0,.55); backdrop-filter: blur(6px);
      color: white; font-size: .65rem; font-weight: 700;
      padding: 4px 10px; border-radius: 100px;
      opacity: 0; transition: opacity .25s;
    }
    .av-card--single:hover .av-card__zoom-hint { opacity: 1; }
    .av-card__images {
      display: grid; grid-template-columns: 1fr 1fr;
      position: relative;
    }
    .av-card__side { position: relative; overflow: hidden; }
    .av-card__side img {
      width: 100%; height: 280px; object-fit: cover;
      display: block;
      transition: transform .45s cubic-bezier(.4,0,.2,1);
    }
    .av-card:hover .av-card__side img { transform: scale(1.04); }
    .av-card__tag {
      position: absolute; top: 10px; left: 10px;
      font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em;
      padding: 4px 10px; border-radius: 100px;
    }
    .av-card__tag--avant { background: rgba(0,0,0,.62); color: #f87171; backdrop-filter: blur(6px); }
    .av-card__tag--apres { background: rgba(0,0,0,.62); color: #4ade80; backdrop-filter: blur(6px); }
    /* Split-line divider for single-image before/after cards */
    .av-card__split-line {
      position: absolute; left: 50%; top: 0; bottom: 0;
      width: 2px;
      background: rgba(255,255,255,.7);
      z-index: 2;
      transform: translateX(-50%);
      pointer-events: none;
    }
    .av-card__split-line::after {
      content: '⇆';
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 26px; height: 26px; border-radius: 50%;
      background: white; box-shadow: 0 2px 10px rgba(0,0,0,.25);
      display: flex; align-items: center; justify-content: center;
      font-size: .65rem; font-weight: 900; color: var(--gray-700);
      line-height: 26px; text-align: center;
    }
    .av-card__divider {
      position: absolute; left: 50%; top: 0; bottom: 0;
      width: 3px; background: white;
      z-index: 2;
      display: flex; align-items: center; justify-content: center;
      transform: translateX(-50%);
    }
    .av-card__divider-icon {
      width: 28px; height: 28px; border-radius: 50%;
      background: white; box-shadow: 0 2px 10px rgba(0,0,0,.22);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      font-size: .7rem; font-weight: 900; color: var(--gray-700);
    }

    .gallery-lightbox {
      position: fixed; inset: 0; background: rgba(0,0,0,.88); backdrop-filter: blur(12px);
      z-index: 3000; display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none; transition: opacity .3s;
    }
    .gallery-lightbox.open { opacity: 1; pointer-events: all; }
    .gallery-lightbox img { max-width: 92vw; max-height: 90vh; border-radius: var(--r-lg); object-fit: contain; }
    .gallery-lightbox__close {
      position: fixed; top: 20px; right: 20px;
      background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
      color: white; width: 44px; height: 44px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; font-size: 1.2rem; transition: background .2s;
    }
    .gallery-lightbox__close:hover { background: rgba(255,255,255,.25); }

    /* ═══ SCROLL REVEAL ═══ */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }

    /* ═══ MODALS ═══ */
    .modal-overlay {
      position: fixed; inset: 0; background: rgba(0,0,0,.65);
      backdrop-filter: blur(5px); z-index: 2000;
      display: flex; align-items: center; justify-content: center;
      padding: 20px; opacity: 0; pointer-events: none; transition: opacity .3s;
    }
    .modal-overlay.open { opacity: 1; pointer-events: all; }
    .modal {
      background: white; border-radius: var(--r-2xl); padding: 44px;
      max-width: 560px; width: 100%;
      transform: translateY(16px); transition: transform .3s;
      max-height: 90vh; overflow-y: auto;
    }
    .modal-overlay.open .modal { transform: none; }
    .modal-header { margin-bottom: 24px; }
    .modal-header .chip { margin-bottom: 10px; }
    .modal-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; letter-spacing: -.02em; }
    .modal-close {
      position: absolute; top: 14px; right: 14px;
      background: var(--gray-100); border: none; cursor: pointer;
      width: 34px; height: 34px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--gray-500); transition: background .2s;
    }
    .modal-close:hover { background: var(--gray-200); }
    .legal-content h2 { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin: 20px 0 6px; }
    .legal-content p { font-size: .86rem; color: var(--gray-500); line-height: 1.7; }
    .legal-content a { color: var(--sky); }

    /* ═══ RESPONSIVE ═══ */
    @media (max-width: 1024px) {
      .hero__content { grid-template-columns: 1fr; gap: 56px; padding-top: 36px; }
      .hero__cards { flex-direction: row; flex-wrap: wrap; }
      .hero__card { flex: 1; min-width: 240px; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .why-grid, .about-grid { grid-template-columns: 1fr; gap: 48px; }
      .contact-grid { grid-template-columns: 1fr; gap: 44px; }
      .footer__grid { grid-template-columns: 1fr 1fr; }
      .gallery-grid { grid-template-columns: 1fr; gap: 24px; }
      .zone-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 900px) {
      .gallery-grid { grid-template-columns: 1fr; gap: 22px; }
      .av-card__side img { height: 180px; }
      .av-card__single-wrap img { height: 220px; }
    }
    @media (max-width: 768px) {
      .section { padding: 72px 0; }
      .nav__links, .nav__right .btn, .nav__tel { display: none; }
      .nav__burger { display: flex; }
      .services-grid { grid-template-columns: 1fr; }
      .zone-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .cf-box { padding: 28px 20px; }
      .footer__grid { grid-template-columns: 1fr; gap: 30px; }
      .footer__bottom { flex-direction: column; text-align: center; }
      .about__values { grid-template-columns: 1fr; }
      .hero__metrics { gap: 20px; }
      .why__badge-circle { display: none; }
      .modal { padding: 28px 20px; }
      .reviews-wrap::before, .reviews-wrap::after { width: 60px; }
    }
    @media (max-width: 480px) {
      .av-card__side img { height: 140px; }
      .av-card__single-wrap img { height: 180px; }
    }

    /* ═══ CONTENT VISIBILITY (PERFORMANCE) ═══ */
    #services, #galerie, #pourquoi-nous, #avis, #zone, #a-propos, #faq, .cta-section, #reservation {
      content-visibility: auto;
      contain-intrinsic-size: auto 800px;
    }

    /* CTA + Booking: seamlessly joined — same dark background */
    .cta-section {
      margin-bottom: -2px;
      position: relative;
      z-index: 2;
    }
    .booking-section {
      position: relative;
      z-index: 1;
    }

    /* ═══ GENERAL POLISH ═══ */

    /* Softer svc-link (now an <a> tag) */
    .svc-link {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: .83rem; font-weight: 700; color: var(--sky-dark);
      background: none; border: none; cursor: pointer;
      padding: 0; margin-top: auto;
      transition: gap .2s ease, color .2s ease;
      text-decoration: none;
    }
    .svc-link:hover { color: var(--sky); gap: 10px; }

    /* Smooth underline hover on all anchor inside zone-card */
    .zone-card__desc a:hover { text-decoration: underline; }

    /* Better button hover for about contact */
    .about__contact-phone:hover { color: var(--sky-light) !important; }

    /* Subtle border on booking form inputs on mobile */
    @media (max-width: 600px) {
      .bfc-body { padding: 1rem 1rem 1.25rem; }
      .bf-services { grid-template-columns: repeat(2, 1fr); }
    }

    /* ═══ BOOKING / RESERVATION SECTION ═══ */
    .booking-section {
      padding: 80px 0 100px;
      background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
      position: relative;
      overflow: hidden;
    }
    .booking-section::before {
      content: '';
      position: absolute;
      top: -300px; right: -200px;
      width: 700px; height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(14,165,233,.18) 0%, transparent 65%);
      pointer-events: none;
    }
    .booking-section::after {
      content: '';
      position: absolute;
      bottom: -200px; left: -150px;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(16,185,129,.12) 0%, transparent 65%);
      pointer-events: none;
    }

    .booking-head { text-align: center; margin-bottom: 3.5rem; position: relative; z-index: 1; }
    .booking-head .chip { color: var(--mint); background: rgba(16,185,129,.12); border-color: rgba(16,185,129,.25); justify-content: center; margin-bottom: 1rem; }
    .booking-head h2 { font-family: var(--font-display); font-size: clamp(1.9rem,4vw,2.8rem); font-weight: 800; color: var(--white); margin-bottom: .75rem; line-height: 1.15; letter-spacing: -.02em; }
    .booking-head p { color: rgba(255,255,255,.6); font-size: 1rem; max-width: 500px; margin: 0 auto; line-height: 1.75; }

    .booking-wrapper { display: grid; grid-template-columns: 340px 1fr; gap: 2.5rem; align-items: start; position: relative; z-index: 1; }

    /* Panneau gauche */
    .booking-info-panel { color: var(--white); }
    .bip-title { font-weight: 700; font-size: 1.05rem; margin-bottom: 1.25rem; color: rgba(255,255,255,.9); letter-spacing: .01em; }
    .bip-schedule { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); padding: 1.25rem 1.5rem; margin-bottom: 1.5rem; backdrop-filter: blur(8px); }
    .bip-schedule h4 { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--mint); margin-bottom: 1rem; }
    .bip-day { display: flex; justify-content: space-between; align-items: center; padding: .5rem 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: .875rem; }
    .bip-day:last-child { border-bottom: none; padding-bottom: 0; }
    .bip-day-name { color: rgba(255,255,255,.65); font-weight: 500; }
    .bip-day-hours { color: var(--white); font-weight: 700; font-size: .8rem; background: rgba(255,255,255,.08); padding: 2px 8px; border-radius: 20px; }
    .bip-day.closed .bip-day-hours { background: transparent; color: rgba(255,255,255,.25); font-weight: 400; }
    .bip-features { display: flex; flex-direction: column; gap: .65rem; }
    .bip-feat { display: flex; align-items: center; gap: .75rem; font-size: .875rem; color: rgba(255,255,255,.75); padding: .5rem .75rem; border-radius: var(--r-md); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); }
    .bip-feat-icon { width: 26px; height: 26px; background: rgba(16,185,129,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

    /* Carte formulaire */
    .booking-form-card { background: var(--white); border-radius: var(--r-2xl); overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.04); }
    .bfc-header { background: linear-gradient(135deg, var(--sky-dark), var(--navy-3)); padding: 1.5rem 2rem; display: flex; align-items: center; gap: 1rem; }
    .bfc-header-steps { display: flex; align-items: center; gap: .5rem; flex: 1; }
    .bfc-step-dot { display: flex; align-items: center; gap: .4rem; font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.5); letter-spacing: .04em; text-transform: uppercase; }
    .bfc-step-dot.active { color: var(--white); }
    .bfc-step-num { width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 800; color: rgba(255,255,255,.5); }
    .bfc-step-dot.active .bfc-step-num { background: var(--white); color: var(--sky-dark); }
    .bfc-step-sep { width: 24px; height: 1px; background: rgba(255,255,255,.2); flex-shrink: 0; }
    .bfc-body { padding: 1.75rem 2rem 2rem; }

    /* Step titles */
    .bf-step-header { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--gray-200); }
    .bf-step-num { width: 26px; height: 26px; border-radius: 50%; background: var(--sky); color: var(--white); font-size: .72rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .bf-step-label { font-weight: 700; color: var(--gray-900); font-size: .975rem; }

    /* Services grid */
    .bf-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; margin-bottom: 1.5rem; }
    .bf-svc { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 3px; padding: .7rem .75rem; border: 2px solid var(--gray-200); border-radius: var(--r-md); cursor: pointer; transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease; background: var(--white); text-align: left; user-select: none; -webkit-user-select: none; }
    .bf-svc::after { content: '✓'; position: absolute; top: 5px; right: 6px; width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--gray-200); background: var(--white); display: flex; align-items: center; justify-content: center; font-size: .55rem; font-weight: 900; color: transparent; transition: all .18s ease; line-height: 1; }
    .bf-svc:hover { border-color: var(--sky-light); background: rgba(14,165,233,.04); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
    .bf-svc.selected { border-color: var(--sky); background: rgba(14,165,233,.05); box-shadow: 0 0 0 3px rgba(14,165,233,.14), var(--shadow-sm); }
    .bf-svc.selected .bf-svc-name { color: var(--sky-dark); }
    .bf-svc.selected::after { background: var(--sky); border-color: var(--sky); color: var(--white); }
    .bf-svc-ico { font-size: 1.25rem; line-height: 1; margin-bottom: 2px; }
    .bf-svc-name { font-weight: 700; color: var(--gray-900); font-size: .78rem; line-height: 1.3; }
    .bf-svc-desc { font-size: .68rem; color: var(--gray-500); line-height: 1.3; }
    .bf-hidden-radio { display: none; }

    /* Divider */
    .bf-divider { height: 1px; background: var(--gray-200); margin: 1.5rem 0; }

    /* Date & Slots */
    .bf-field { margin-bottom: 1rem; }
    .bf-field:last-child { margin-bottom: 0; }
    .bf-field label { display: flex; align-items: center; gap: .4rem; font-weight: 600; font-size: .78rem; color: var(--gray-600); margin-bottom: .45rem; letter-spacing: .02em; text-transform: uppercase; }
    .bf-field input, .bf-field select, .bf-field textarea { width: 100%; padding: .8rem 1rem; border: 1.5px solid var(--gray-200); border-radius: var(--r-md); font-family: var(--font-body); font-size: .9rem; color: var(--gray-900); background: var(--white); transition: border-color .2s, box-shadow .2s; -webkit-appearance: none; appearance: none; }
    .bf-field input:focus, .bf-field select:focus, .bf-field textarea:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(14,165,233,.1); }
    .bf-field input[type="date"] { cursor: pointer; }
    .bf-field textarea { min-height: 80px; resize: vertical; line-height: 1.6; }

    .bf-slots-label { font-weight: 600; font-size: .78rem; color: var(--gray-600); margin-bottom: .45rem; letter-spacing: .02em; text-transform: uppercase; }
    .bf-slots { display: grid; grid-template-columns: repeat(5, 1fr); gap: .4rem; margin-bottom: .25rem; }
    .bf-slot { padding: .65rem .3rem; border: 2px solid var(--gray-200); border-radius: var(--r-md); font-size: .75rem; font-weight: 700; text-align: center; cursor: pointer; transition: all .18s ease; color: var(--gray-400); line-height: 1.3; background: var(--white); }
    .bf-slot:hover:not(.unavailable):not(.booked) { border-color: var(--sky); color: var(--sky-dark); background: rgba(14,165,233,.05); transform: translateY(-1px); }
    .bf-slot.selected { border-color: var(--sky); background: var(--sky); color: var(--white); box-shadow: 0 4px 12px rgba(14,165,233,.35); transform: translateY(-1px); }
    .bf-slot.unavailable { opacity: .3; cursor: not-allowed; background: var(--gray-50); }
    .bf-slot-hint { font-size: .7rem; color: var(--gray-400); margin-top: .35rem; font-style: italic; }

    /* Coordonnées */
    .bf-coords-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

    /* Submit */
    .bf-submit { display: flex; align-items: center; justify-content: center; gap: .65rem; width: 100%; padding: 1.05rem; margin-top: 1.5rem; background: linear-gradient(135deg, var(--sky) 0%, var(--sky-dark) 100%); color: var(--white); border: none; border-radius: var(--r-md); font-family: var(--font-body); font-size: 1rem; font-weight: 700; cursor: pointer; transition: all .3s ease; letter-spacing: .02em; position: relative; overflow: hidden; }
    .bf-submit::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--sky-dark), var(--navy-3)); opacity: 0; transition: opacity .3s ease; }
    .bf-submit:hover:not(:disabled)::before { opacity: 1; }
    .bf-submit:hover:not(:disabled) { box-shadow: 0 8px 28px rgba(14,165,233,.4); transform: translateY(-2px); }
    .bf-submit:active:not(:disabled) { transform: translateY(0); }
    .bf-submit:disabled { opacity: .55; cursor: not-allowed; transform: none; }
    .bf-submit span, .bf-submit svg { position: relative; z-index: 1; }
    .bf-submit-arrow { transition: transform .3s ease; }
    .bf-submit:hover:not(:disabled) .bf-submit-arrow { transform: translateX(4px); }

    .bf-notice { font-size: .74rem; color: var(--gray-400); text-align: center; margin-top: .75rem; line-height: 1.55; display: flex; align-items: flex-start; justify-content: center; gap: .3rem; }

    /* Toast succès */
    .booking-toast { display: none; align-items: flex-start; gap: .9rem; padding: 1.1rem 1.25rem; background: linear-gradient(135deg, #065f46, #047857); color: var(--white); border-radius: var(--r-md); margin-bottom: 1.25rem; border: 1px solid rgba(255,255,255,.1); }
    .booking-toast.visible { display: flex; animation: toastIn .35s cubic-bezier(.34,1.56,.64,1) forwards; }
    @keyframes toastIn { from { opacity: 0; transform: scale(.95) translateY(-6px); } to { opacity: 1; transform: scale(1) translateY(0); } }
    .booking-toast-icon { width: 34px; height: 34px; background: rgba(255,255,255,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
    .booking-toast-text strong { display: block; font-weight: 700; font-size: .95rem; margin-bottom: 2px; }
    .booking-toast-text span { font-size: .82rem; opacity: .85; line-height: 1.5; }

    /* Erreur */
    .booking-error { display: none; padding: .8rem 1rem; background: rgba(220,38,38,.06); border: 1.5px solid rgba(220,38,38,.18); border-radius: var(--r-md); color: #b91c1c; font-size: .83rem; margin-bottom: 1rem; align-items: center; gap: .5rem; }
    .booking-error.visible { display: flex; }

    /* Responsive */
    @media(max-width: 1024px) {
      .booking-wrapper { grid-template-columns: 1fr; }
      .booking-info-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
      .bip-title { grid-column: 1 / -1; }
    }
    @media(max-width: 768px) {
      .booking-section { padding: 60px 0 80px; }
      .booking-info-panel { display: block; }
      .bfc-body { padding: 1.25rem 1.25rem 1.5rem; }
      .bfc-header { padding: 1.1rem 1.25rem; }
      .bf-services { grid-template-columns: repeat(2, 1fr); }
      .bf-slots { grid-template-columns: repeat(3, 1fr); }
      .bf-coords-grid { grid-template-columns: 1fr; }
      .bfc-step-sep { display: none; }
      .bfc-step-dot span:not(.bfc-step-num) { display: none; }
    }
    @media(max-width: 400px) {
      .bf-services { grid-template-columns: 1fr 1fr; }
      .bf-slots { grid-template-columns: repeat(2, 1fr); }
    }
