/* ========== HERO ========== */
    .hero {
      display: flex;
      align-items: stretch;
      min-height: 580px;
      background: #fff;
    }
    .hero-left {
      flex: 0 0 55%;
      padding: 56px 56px 48px 56px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--orange-light);
      color: var(--orange);
      font-size: 11px;
      font-weight: 700;
      padding: 7px 18px;
      border-radius: 20px;
      margin-bottom: 28px;
      width: fit-content;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .hero-badge .dot {
      width: 8px; height: 8px;
      background: var(--orange);
      border-radius: 50%;
      display: inline-block;
    }
    .hero-title {
      font-size: 50px;
      font-weight: 900;
      line-height: 1.06;
      color: var(--dark);
      text-transform: uppercase;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }
    .hero-title .accent {
      color: var(--orange);
      font-style: italic;
    }
    .hero-subtitle {
      font-size: 15px;
      color: #666;
      line-height: 1.65;
      margin-bottom: 36px;
      max-width: 460px;
    }
    .hero-ctas {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 36px;
      flex-wrap: wrap;
    }
    .cta-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--orange);
      color: #fff;
      padding: 16px 30px;
      border-radius: 30px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      border: none;
      cursor: pointer;
      font-family: inherit;
      text-decoration: none;
      transition: background 0.2s;
    }
    .cta-primary:hover { background: #d9551a; }
    .cta-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      color: var(--dark);
      padding: 16px 30px;
      border-radius: 30px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      border: 2px solid #ddd;
      cursor: pointer;
      font-family: inherit;
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s;
    }
    .cta-secondary:hover { border-color: var(--orange); color: var(--orange); }
    .cta-primary svg, .cta-secondary svg { width: 18px; height: 18px; flex-shrink: 0; }

    /* Google rating */
    .google-rating {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 14px 22px;
      border: 1.5px solid #e8e8e8;
      border-radius: 14px;
      background: #fff;
      width: fit-content;
    }
    .google-rating .g-icon { width: 40px; height: 40px; flex-shrink: 0; }
    .g-rating-text { display: flex; flex-direction: column; gap: 2px; }
    .g-rating-row { display: flex; align-items: center; gap: 6px; }
    .g-rating-row .stars { color: #FBBC05; font-size: 16px; letter-spacing: 1px; }
    .g-rating-row .score { font-size: 15px; font-weight: 800; }
    .g-rating-row .sep { color: #ccc; font-size: 12px; }
    .g-rating-text .count { font-size: 10px; font-weight: 700; color: #777; text-transform: uppercase; letter-spacing: 0.5px; }

    /* Hero right */
    .hero-right {
      flex: 0 0 45%;
      position: relative;
      overflow: hidden;
      background: #333;
    }
    .hero-carousel {
      width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    /* Slide */
    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.6s ease, visibility 0.6s;
      z-index: 0;
    }
    .hero-slide.is-active {
      opacity: 1;
      visibility: visible;
      z-index: 1;
    }

    .hero-photo {
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: top center;
      background-repeat: no-repeat;
      background-color: #1a1a1a;
    }
    /* Carousel arrows */
    .carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: none;
      background: rgba(255,255,255,0.85);
      color: var(--dark);
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 5;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
    .carousel-arrow.left { left: 14px; }
    .carousel-arrow.right { right: 14px; }
    /* Article overlay */
    .hero-article {
      position: absolute;
      bottom: 28px;
      left: 28px;
      right: 80px;
      color: #fff;
      z-index: 5;
    }
    .hero-article-badge {
      display: inline-block;
      background: var(--orange);
      color: #fff;
      font-size: 10px;
      font-weight: 800;
      padding: 5px 16px;
      border-radius: 20px;
      text-transform: uppercase;
      margin-bottom: 8px;
      letter-spacing: 0.5px;
    }
    .hero-article h3 {
      font-size: 20px;
      font-weight: 900;
      font-style: italic;
      text-transform: uppercase;
      line-height: 1.2;
      margin-bottom: 4px;
      text-shadow: 0 1px 6px rgba(0,0,0,0.4);
    }
    .hero-article a {
      font-size: 12px;
      font-weight: 700;
      text-decoration: none;
      text-transform: uppercase;
    }
    .hero-article-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 6px;
      padding: 6px 14px 6px 0;
      color: #fff;
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 0.3px;
      text-transform: uppercase;
      text-decoration: none;
      border-bottom: 1.5px solid rgba(255,255,255,0.5);
      transition: border-color 0.25s, gap 0.25s;
    }
    .hero-article-link:hover {
      border-color: #fff;
      gap: 10px;
    }
    .hero-article-link svg {
      flex-shrink: 0;
      transition: transform 0.25s;
    }
    .hero-article-link:hover svg {
      transform: translateX(3px);
    }
    .carousel-dots {
      position: absolute;
      bottom: 16px;
      right: 28px;
      display: flex;
      gap: 7px;
      z-index: 5;
    }
    .carousel-dots span {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: rgba(255,255,255,0.4);
      cursor: pointer;
      transition: background 0.3s, transform 0.2s;
    }
    .carousel-dots span:hover { background: rgba(255,255,255,0.7); transform: scale(1.2); }
    .carousel-dots span.active { background: #fff; transform: scale(1.15); }

    /* ========== SCROLL BANNER ========== */
    .scroll-banner {
      background: var(--orange);
      color: #fff;
      padding: 13px 0;
      overflow: hidden;
      white-space: nowrap;
    }
    .scroll-banner-track {
      display: inline-flex;
      animation: scrollBanner 25s linear infinite;
    }
    .scroll-banner-item {
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      padding: 0 20px;
      display: inline-flex;
      align-items: center;
      gap: 16px;
    }
    .scroll-banner-item::after {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #fff;
      flex-shrink: 0;
    }
    @keyframes scrollBanner {
      0% { transform: translateX(0); }
      100% { transform: translateX(-16.666%); }
    }

    /* ========== ENGAGEMENTS ========== */
    .engagements {
      padding: 80px 56px;
      background: #fff;
    }
    .section-badge {
      display: inline-block;
      background: var(--orange-light);
      color: var(--orange);
      font-size: 11px;
      font-weight: 700;
      padding: 7px 18px;
      border-radius: 20px;
      text-transform: uppercase;
      margin-bottom: 16px;
      letter-spacing: 0.5px;
    }
    .engagements h2 {
      font-size: 46px;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1.05;
      margin-bottom: 48px;
      max-width: 700px;
      letter-spacing: -0.5px;
    }
    .engagements-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    }
    .engagement-card {
      padding: 44px 28px 40px;
      text-align: center;
      background: var(--gray);
    }
    .engagement-card + .engagement-card { border-left: 1px solid #e8e8e8; }
    .engagement-icon {
      width: 72px;
      height: 72px;
      margin: 0 auto 22px;
      position: relative;
    }
    .engagement-icon svg { width: 72px; height: 72px; }
    .engagement-card h3 {
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 14px;
      line-height: 1.3;
    }
    .engagement-card p {
      font-size: 13px;
      line-height: 1.6;
      opacity: 0.8;
    }
    /* Card hover */
    .engagement-card {
      transition: transform .35s cubic-bezier(.25,.46,.45,.94), box-shadow .35s ease, background .3s ease, color .3s ease;
    }
    .engagement-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 32px rgba(242,101,34,0.25);
      background: var(--orange);
      color: #fff;
      z-index: 2;
      position: relative;
    }
    .engagement-card:hover svg * {
      stroke: #fff !important;
      transition: stroke .3s ease, fill .3s ease;
    }
    .engagement-card:hover svg *[fill="#FFF0E8"] { fill: rgba(255,255,255,0.15) !important; }
    .engagement-card:hover svg *[fill="#F26522"] { fill: #fff !important; }
    .engagement-card:hover svg *[fill="#fff"] { fill: #fff !important; }
    .engagement-card:hover svg *[fill="#43A047"] { fill: #fff !important; }
    .engagement-card:hover svg *[fill="#43A047"] + path { stroke: var(--orange) !important; }
    .engagement-card:hover svg *[fill="none"] { fill: none !important; }
    .engagement-card:hover svg line { stroke: #fff !important; }
    .engagement-card:hover p { opacity: 0.95; }

    /* ========== ANIMATIONS ========== */
    /* Fade-in on scroll */
    .anim-fade-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity .7s cubic-bezier(.25,.46,.45,.94), transform .7s cubic-bezier(.25,.46,.45,.94);
    }
    .anim-fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .anim-fade-up.delay-1 { transition-delay: .1s; }
    .anim-fade-up.delay-2 { transition-delay: .2s; }
    .anim-fade-up.delay-3 { transition-delay: .3s; }
    .anim-fade-up.delay-4 { transition-delay: .4s; }

    /* Scale-in for icons */
    .anim-scale {
      opacity: 0;
      transform: scale(0.5);
      transition: opacity .5s ease, transform .5s cubic-bezier(.34,1.56,.64,1);
    }
    .anim-scale.visible {
      opacity: 1;
      transform: scale(1);
    }

    /* Stat counter glow */
    .stat-item .number {
      transition: color .3s ease;
    }
    .stat-item:hover .number {
      text-shadow: 0 0 20px rgba(242,101,34,0.4);
    }

    /* Prestation card hover */
    .prestation-card {
      transition: transform .4s cubic-bezier(.25,.46,.45,.94), box-shadow .4s ease;
    }
    .prestation-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 16px 40px rgba(0,0,0,0.3);
      z-index: 2;
    }

    /* Review card hover (pas de déplacement, uniquement shadow + border) */
    .review-card {
      transition: box-shadow .3s ease, border-color .3s ease;
    }
    .review-card:hover {
      transform: none;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      border-color: var(--orange);
    }

    /* CTA pulse */
    .cta-primary {
      position: relative;
      overflow: hidden;
    }
    .cta-primary::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
      transform: translateX(-100%);
      transition: none;
    }
    .cta-primary:hover::after {
      animation: shimmer .8s ease forwards;
    }
    @keyframes shimmer {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }

    /* Hero fade-in */
    .hero-left > * {
      opacity: 0;
      transform: translateY(25px);
      animation: heroFadeIn .7s cubic-bezier(.25,.46,.45,.94) forwards;
    }
    .hero-left > *:nth-child(1) { animation-delay: .1s; }
    .hero-left > *:nth-child(2) { animation-delay: .25s; }
    .hero-left > *:nth-child(3) { animation-delay: .4s; }
    .hero-left > *:nth-child(4) { animation-delay: .55s; }
    .hero-left > *:nth-child(5) { animation-delay: .7s; }
    @keyframes heroFadeIn {
      to { opacity: 1; transform: translateY(0); }
    }

    /* Hero right slide-in */
    .hero-right {
      animation: slideInRight .8s cubic-bezier(.25,.46,.45,.94) .2s both;
    }
    @keyframes slideInRight {
      from { opacity: 0; transform: translateX(60px); }
      to { opacity: 1; transform: translateX(0); }
    }

    /* ========== PRESTATIONS ========== */
    .prestations {
      background: var(--dark);
      padding: 80px 56px;
      color: #fff;
      position: relative;
    }
    .prestations .section-badge {
      background: rgba(242,101,34,0.2);
    }
    .prestations h2 {
      font-size: 46px;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1.05;
      margin-bottom: 40px;
      max-width: 600px;
      letter-spacing: -0.5px;
    }
    .prestations-wrapper {
      position: relative;
    }
    .prestations-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-bottom: 60px;
    }
    .prestation-card {
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      aspect-ratio: 3/4;
      cursor: pointer;
    }
    .prestation-card .card-bg {
      position: absolute;
      inset: 0;
    }
    .prestation-card .card-bg.bg1 {
      background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%), url('../images/site/prestation-remplacement-pare-brise.png') center/cover no-repeat;
    }
    .prestation-card .card-bg.bg2 {
      background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%), url('../images/site/prestation-reparation-impact.png') center/cover no-repeat;
    }
    .prestation-card .card-bg.bg3 {
      background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%), url('../images/site/prestation-vitrage-divers.png') center/cover no-repeat;
    }
    .prestation-card .card-bg.bg4 {
      background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%), url('../images/site/prestation-renovation-optique.png') center/cover no-repeat;
    }
    .prestation-card .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.05) 55%);
      z-index: 1;
    }
    .prestation-card h3 {
      position: absolute;
      bottom: 22px;
      left: 22px;
      right: 22px;
      font-size: 15px;
      font-weight: 800;
      text-transform: uppercase;
      line-height: 1.35;
      z-index: 2;
    }
    .prestation-card h3::before {
      content: '';
      display: block;
      width: 28px;
      height: 3px;
      background: var(--orange);
      margin-bottom: 10px;
      border-radius: 2px;
    }
    .presta-scroll-btn {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.5);
      background: transparent;
      color: #fff;
      font-size: 22px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 5;
    }

    /* ============ CAROUSEL PRESTATIONS (homepage, fond sombre) ============ */
    .prestations .prestations-carousel { position: relative; margin-bottom: 60px; }
    .prestations .prestations-viewport { overflow: hidden; width: 100%; }
    .prestations .prestations-track { display: flex; gap: 18px; transition: transform .45s cubic-bezier(.22,.61,.36,1); will-change: transform; }
    .prestations .presta-card { flex: 0 0 calc((100% - 54px) / 4); box-sizing: border-box; border-radius: 14px; overflow: hidden; position: relative; aspect-ratio: 3/4; cursor: pointer; transition: transform .3s, box-shadow .3s; text-decoration: none; color: inherit; display: block; }
    .prestations .presta-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.35); }
    .prestations .presta-card .presta-bg { position: absolute; inset: 0; }
    .prestations .presta-card .presta-bg.p1 { background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.6) 100%), url('../images/site/prestation-vitrage-divers.png') center/cover no-repeat; }
    .prestations .presta-card .presta-bg.p2 { background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.6) 100%), url('../images/site/prestation-decalaminage-moteur.png') center/cover no-repeat; }
    .prestations .presta-card .presta-bg.p3 { background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.6) 100%), url('../images/site/prestation-renovation-optique.png') center/cover no-repeat; }
    .prestations .presta-card .presta-bg.p4 { background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.6) 100%), url('../images/site/prestation-remplacement-pare-brise.png') center/cover no-repeat; }
    .prestations .presta-card .presta-bg.p5 { background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.6) 100%), url('../images/site/prestation-reparation-impact.png') center/cover no-repeat; }
    .prestations .presta-card .presta-bg.p6 { background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.6) 100%), url('../images/site/prestation-adas.png') center/cover no-repeat; }
    .prestations .presta-card .presta-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 55%); z-index: 1; }
    .prestations .presta-card h3 { position: absolute; bottom: 22px; left: 22px; right: 22px; font-size: 15px; font-weight: 800; text-transform: uppercase; line-height: 1.35; color: #fff; z-index: 2; margin: 0; }
    .prestations .presta-card h3::before { content: ''; display: block; width: 28px; height: 3px; background: var(--orange); margin-bottom: 10px; border-radius: 2px; }
    .prestations .presta-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.08); backdrop-filter: blur(4px); cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 5; transition: border-color .2s, background .2s, opacity .2s, box-shadow .2s; }
    .prestations .presta-nav svg { stroke: #fff !important; pointer-events: none; }
    .prestations .presta-nav-prev { left: -22px; }
    .prestations .presta-nav-next { right: -22px; }
    .prestations .presta-nav:hover:not(:disabled) { border-color: var(--orange); background: var(--orange); box-shadow: 0 6px 18px rgba(242,101,34,0.35); }
    .prestations .presta-nav:disabled { opacity: 0.3; cursor: not-allowed; }

    /* Carousel dots (mobile) — hidden on desktop, shown on mobile */
    .carousel-dots-mobile {
      display: none;
      justify-content: center;
      gap: 8px;
      padding: 16px 0 0;
    }
    .carousel-dots-mobile span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.35);
      cursor: pointer;
      transition: background .2s, transform .2s;
    }
    .carousel-dots-mobile span.active {
      background: var(--orange);
      transform: scale(1.25);
    }
    .carousel-dots-mobile span:hover {
      background: rgba(255,255,255,0.6);
    }
    .carousel-dots-mobile span.active:hover {
      background: var(--orange);
    }
    /* Reviews section has light background — dots need dark colors */
    .reviews-carousel .carousel-dots-mobile span {
      background: #ddd;
    }
    .reviews-carousel .carousel-dots-mobile span.active {
      background: var(--orange);
    }
    .reviews-carousel .carousel-dots-mobile span:hover {
      background: #bbb;
    }

    /* Stats */
    .stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      text-align: center;
      padding-top: 10px;
    }
    .stat-item .number {
      font-size: 58px;
      font-weight: 900;
      color: var(--orange);
      line-height: 1;
      margin-bottom: 6px;
    }
    .stat-item .label {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      opacity: 0.6;
    }

    /* ========== TROUVER CENTRE ========== */
    .find-center {
      position: relative;
      padding: 90px 48px;
      text-align: center;
      color: #fff;
      overflow: hidden;
      /* Simulated warm image of OuiGlass storefront */
      background: linear-gradient(135deg, rgba(194,99,42,0.85) 0%, rgba(168,82,31,0.9) 30%, rgba(139,65,24,0.92) 60%, rgba(110,52,18,0.95) 100%), url('../images/site/section-texture-background.png') center/cover no-repeat;
    }
    .find-center::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.35);
      z-index: 1;
    }
    /* Fake store elements in background */
    .find-bg-deco {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }
    .find-bg-deco .stripe {
      position: absolute;
      background: rgba(255,255,255,0.04);
    }
    .find-bg-deco .stripe:nth-child(1) {
      top: 10%; left: 5%; width: 200px; height: 120px; border-radius: 4px;
      background: rgba(242,101,34,0.15);
    }
    .find-bg-deco .stripe:nth-child(2) {
      top: 5%; right: 8%; width: 180px; height: 80px; border-radius: 4px;
      background: rgba(242,101,34,0.2);
    }
    .find-bg-deco .stripe:nth-child(3) {
      bottom: 15%; right: 15%; width: 100px; height: 60px;
      background: rgba(255,255,255,0.05);
    }
    .find-center-content {
      position: relative;
      z-index: 2;
      max-width: 540px;
      margin: 0 auto;
    }
    .find-center .section-badge {
      background: rgba(255,255,255,0.2);
      color: #fff;
      font-size: 10px;
      letter-spacing: 2px;
    }
    .find-center h2 {
      font-size: 50px;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 12px;
      letter-spacing: -0.5px;
    }
    .find-center .desc {
      font-size: 14px;
      opacity: 0.85;
      margin-bottom: 32px;
      line-height: 1.5;
    }
    .search-box {
      background: rgba(255,255,255,0.18);
      backdrop-filter: blur(12px);
      border: 1.5px solid rgba(255,255,255,0.35);
      border-radius: 16px;
      padding: 28px 26px;
    }
    .search-box label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 14px;
      text-align: left;
    }
    .search-box input {
      width: 100%;
      padding: 15px 18px;
      border-radius: 8px;
      border: 1.5px solid rgba(255,255,255,0.35);
      background: rgba(255,255,255,0.12);
      color: #fff;
      font-size: 14px;
      font-family: 'Montserrat', sans-serif;
      margin-bottom: 14px;
      outline: none;
    }
    .search-box input::placeholder { color: rgba(255,255,255,0.55); }
    .search-box input:focus { border-color: rgba(255,255,255,0.7); }
    .search-box .btn-search {
      width: 100%;
      padding: 15px;
      border-radius: 8px;
      border: 2px solid #fff;
      background: transparent;
      color: #fff;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      cursor: pointer;
      font-family: 'Montserrat', sans-serif;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    .search-box .btn-search:hover { background: rgba(255,255,255,0.12); }

    /* ==========================================================
       MODAL CENTRES — Trouver un centre
    ========================================================== */
    .center-modal {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding: 24px 16px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .center-modal.is-open {
      opacity: 1;
      visibility: visible;
    }

    /* Backdrop */
    .center-modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(10, 10, 20, 0.55);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }

    /* Dialog container */
    .center-modal-dialog {
      position: relative;
      width: 100%;
      max-width: 520px;
      max-height: calc(100vh - 48px);
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.04);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transform: translateY(16px) scale(0.97);
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .center-modal.is-open .center-modal-dialog {
      transform: translateY(0) scale(1);
    }

    /* Header */
    .center-modal-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      padding: 20px 20px 16px;
      border-bottom: 1px solid #f0f0f0;
      background: #fff;
      flex-shrink: 0;
    }
    .center-modal-header-text {
      min-width: 0;
    }
    .center-modal-header h3 {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 0 0 4px;
      font-size: 18px;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--dark, #1a1a1a);
      letter-spacing: -0.2px;
      line-height: 1.2;
    }
    .center-modal-header h3 svg {
      flex-shrink: 0;
    }
    .center-modal-header p {
      margin: 0;
      color: #888;
      font-size: 12.5px;
      font-weight: 500;
      line-height: 1.4;
    }
    .center-modal-header p strong {
      color: var(--dark, #1a1a1a);
      font-weight: 700;
    }
    .center-modal-header p em {
      font-style: normal;
      color: var(--orange, #F26522);
      font-weight: 600;
    }

    /* Close button */
    .center-modal-close {
      flex-shrink: 0;
      width: 36px;
      height: 36px;
      border: none;
      border-radius: 10px;
      background: var(--gray, #F4F4F4);
      color: #555;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s, color 0.2s, transform 0.15s;
    }
    .center-modal-close:hover {
      background: #eaeaea;
      color: var(--dark, #1a1a1a);
      transform: scale(1.05);
    }

    /* Scrollable body */
    .center-modal-body {
      padding: 16px;
      overflow-y: auto;
      flex: 1 1 auto;
      overscroll-behavior: contain;
    }
    .center-modal-body::-webkit-scrollbar { width: 6px; }
    .center-modal-body::-webkit-scrollbar-thumb { background: #ddd; border-radius: 999px; }
    .center-modal-body::-webkit-scrollbar-track { background: transparent; }

    /* ======= Hero Modal (Prendre RDV) ======= */
    .hero-modal-dialog {
      max-width: 560px;
    }

    .hero-modal-top {
      padding: 24px 24px 20px;
      border-bottom: 1px solid #f0f0f0;
      background: #fff;
      flex-shrink: 0;
    }

    .hero-modal-title-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }

    .hero-modal-badge {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: var(--orange, #F26522);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .hero-modal-title-text {
      flex: 1;
      min-width: 0;
    }
    .hero-modal-title-text h3 {
      margin: 0 0 2px;
      font-size: 17px;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--dark, #1a1a1a);
      letter-spacing: -0.2px;
      line-height: 1.2;
    }
    .hero-modal-title-text p {
      margin: 0;
      font-size: 12.5px;
      font-weight: 500;
      color: #888;
      line-height: 1.4;
    }
    .hero-modal-title-text p strong {
      color: var(--dark, #1a1a1a);
      font-weight: 700;
    }
    .hero-modal-title-text p em {
      font-style: normal;
      color: var(--orange, #F26522);
      font-weight: 600;
    }

    /* Close button is already styled by .center-modal-close — positioned inside title-row flex */

    /* Search row */
    .hero-modal-search-row {
      display: flex;
      width: 100%;
    }
    .hero-modal-search-wrap {
      flex: 1;
      position: relative;
      display: flex;
      align-items: center;
    }
    .hero-modal-search-ico {
      position: absolute;
      left: 14px;
      pointer-events: none;
      flex-shrink: 0;
    }
    .hero-modal-search-wrap input {
      width: 100%;
      height: 50px;
      padding: 0 16px 0 44px;
      font-size: 14.5px;
      font-family: inherit;
      font-weight: 500;
      color: var(--dark, #1a1a1a);
      border: 2px solid #e8e8e8;
      border-radius: 14px;
      background: #f8f8f9;
      outline: none;
      transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
    }
    .hero-modal-search-wrap input:focus {
      border-color: var(--orange, #F26522);
      box-shadow: 0 0 0 4px rgba(242, 101, 34, 0.10);
      background: #fff;
    }
    .hero-modal-search-wrap input::placeholder {
      color: #b5b5b5;
      font-weight: 400;
      font-size: 13.5px;
    }
    /* Google Places autocomplete dropdown above modal */
    .pac-container {
      z-index: 100001 !important;
      border-radius: 12px !important;
      border: none !important;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04) !important;
      margin-top: 4px !important;
      font-family: inherit !important;
    }
    .pac-item {
      padding: 10px 14px !important;
      font-size: 13px !important;
      cursor: pointer !important;
      border-top: 1px solid #f5f5f5 !important;
    }
    .pac-item:first-child {
      border-top: none !important;
    }
    .pac-item:hover {
      background: #fef6f1 !important;
    }
    .pac-item-selected {
      background: #fef6f1 !important;
    }
    .pac-icon {
      margin-top: 2px !important;
    }
    .pac-item-query {
      font-size: 13px !important;
      font-weight: 600 !important;
      color: var(--dark, #1a1a1a) !important;
    }

    /* Empty state */
    .hero-modal-empty {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      padding: 40px 24px;
      text-align: center;
    }
    .hero-modal-empty-circle {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: rgba(242, 101, 34, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-modal-empty-msg {
      margin: 0;
      font-size: 13px;
      color: #888;
      font-weight: 500;
      line-height: 1.6;
      max-width: 320px;
    }
    .hero-modal-all-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 2px;
      font-size: 12.5px;
      font-weight: 700;
      color: var(--orange, #F26522);
      text-decoration: none;
      transition: color 0.2s;
    }
    .hero-modal-all-link:hover {
      color: #d85a1e;
    }
    .hero-modal-all-link svg {
      transition: transform 0.2s;
    }
    .hero-modal-all-link:hover svg {
      transform: translateX(3px);
    }

    /* Loading spinner */
    .center-loading {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      padding: 48px 10px;
      color: #999;
      font-size: 13px;
      font-weight: 500;
    }
    .center-loading-spinner {
      width: 36px;
      height: 36px;
      border: 3px solid #f0f0f0;
      border-top-color: var(--orange, #F26522);
      border-radius: 50%;
      animation: modal-spin 0.7s linear infinite;
    }
    @keyframes modal-spin {
      to { transform: rotate(360deg); }
    }

    /* Empty state */
    .center-empty {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      padding: 40px 16px;
      text-align: center;
    }
    .center-empty p {
      margin: 0;
      font-size: 15px;
      font-weight: 600;
      color: #555;
    }
    .center-empty span {
      font-size: 13px;
      color: #aaa;
      font-weight: 400;
    }

    /* Results grid */
    .center-results-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 14px;
    }

    /* ---- Card ---- */
    .center-card {
      background: #fff;
      border: 1px solid #ebebeb;
      border-radius: 16px;
      padding: 18px;
      transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
      animation: card-slide-up 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
    }
    .center-card:hover {
      border-color: rgba(242, 101, 34, 0.25);
      box-shadow: 0 8px 24px rgba(242, 101, 34, 0.08), 0 2px 8px rgba(0,0,0,0.04);
      transform: translateY(-2px);
    }
    @keyframes card-slide-up {
      from { opacity: 0; transform: translateY(12px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Card head */
    .center-card-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 14px;
    }
    .center-card-title {
      margin: 0;
      font-size: 16px;
      line-height: 1.15;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--dark, #1a1a1a);
      letter-spacing: -0.2px;
    }
    .center-card-distance {
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: var(--orange-light, #FFF0E8);
      color: var(--orange, #F26522);
      border: 1px solid rgba(242, 101, 34, 0.15);
      border-radius: 999px;
      padding: 4px 10px;
      font-size: 11px;
      font-weight: 700;
      white-space: nowrap;
    }

    /* Info rows */
    .center-card-infos {
      display: grid;
      gap: 10px;
      margin-bottom: 16px;
      padding-bottom: 16px;
      border-bottom: 1px solid #f3f3f3;
    }
    .center-info-row {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    .center-info-icon {
      width: 32px;
      height: 32px;
      flex: 0 0 32px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--orange-light, #FFF0E8);
      color: var(--orange, #F26522);
      border-radius: 8px;
    }
    .center-info-icon svg {
      width: 16px;
      height: 16px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .center-info-text { min-width: 0; }
    .center-info-label {
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      color: #b0b0b0;
      letter-spacing: 0.4px;
      margin-bottom: 2px;
    }
    .center-info-value {
      color: #444;
      font-size: 13.5px;
      line-height: 1.35;
      font-weight: 500;
      word-break: break-word;
    }
    .center-phone-link {
      display: inline-block;
      color: var(--orange, #F26522);
      font-size: 14px;
      line-height: 1.2;
      font-weight: 700;
      text-decoration: none;
      transition: color 0.2s;
    }
    .center-phone-link:hover {
      color: #d85a1e;
      text-decoration: underline;
    }

    /* Action buttons */
    .centre-card-actions {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 10px;
    }
    .btn-discover {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      height: 44px;
      padding: 0 16px;
      background: var(--dark, #1a1a1a);
      color: #fff;
      border-radius: 12px;
      text-decoration: none;
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 0.3px;
      text-transform: uppercase;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-discover:hover {
      background: #333;
      transform: translateY(-1px);
    }
    .btn-discover svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
    }
    .btn-rdv-card {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      height: 44px;
      padding: 0 16px;
      background: var(--orange, #F26522);
      color: #fff;
      border-radius: 12px;
      text-decoration: none;
      font-size: 11.5px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-rdv-card:hover {
      background: #d85a1e;
      transform: translateY(-1px);
    }
    .btn-rdv-card svg { flex-shrink: 0; }

    /* ---- Modal responsive ---- */
    @media (max-width: 640px) {
      .center-modal {
        padding: 24px 12px;
        align-items: flex-start;
      }
      .center-modal-dialog {
        max-height: calc(100vh - 48px);
        border-radius: 20px;
      }
      .center-modal.is-open .center-modal-dialog {
        transform: translateY(0) scale(1);
      }
      .center-modal-header {
        padding: 16px 16px 12px;
      }
      .center-modal-header h3 {
        font-size: 16px;
      }
      .center-modal-body {
        padding: 12px;
      }
      .hero-modal-top {
        padding: 18px 16px 16px;
      }
      .hero-modal-title-row {
        margin-bottom: 14px;
      }
      .hero-modal-title-text h3 {
        font-size: 15px;
      }
      .hero-modal-search-wrap input {
        height: 46px;
        font-size: 13.5px;
      }
      .hero-modal-empty {
        padding: 28px 16px;
      }
      .center-card {
        padding: 14px;
        border-radius: 14px;
      }
      .center-card-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }
      .center-card-title { font-size: 15px; }
      .centre-card-actions {
        grid-template-columns: 1fr;
      }
    }

    /* ========== AVIS CLIENTS ========== */
    .reviews {
      padding: 80px 56px;
      background: #fff;
      position: relative;
    }
    .reviews-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 40px;
    }
    .reviews-header-left .section-badge { margin-bottom: 12px; }
    .reviews-header-left h2 {
      font-size: 46px;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1.05;
      letter-spacing: -0.5px;
    }
    .reviews-header-right {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .reviews-header-right .big-score {
      font-size: 68px;
      font-weight: 900;
      color: var(--dark);
      line-height: 1;
    }
    .google-side {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 2px;
    }
    .google-side svg { width: 32px; height: 32px; }
    .google-side .stars-row { color: #FBBC05; font-size: 20px; letter-spacing: 2px; }
    .google-side .avis-count { font-size: 11px; color: #999; }

    .reviews-content { position: relative; }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    .review-card {
      border: 1.5px solid #eee;
      border-radius: 12px;
      padding: 26px 24px;
    }
    .review-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 2px;
    }
    .review-card-header h4 {
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
    }
    .review-card-header .stars { color: #FBBC05; font-size: 14px; letter-spacing: 1px; }
    .review-card .center-name {
      font-size: 12px;
      color: #aaa;
      margin-bottom: 16px;
    }
    .review-card p {
      font-size: 13px;
      line-height: 1.65;
      color: #555;
      margin-bottom: 18px;
    }
    .review-card .date {
      font-size: 12px;
      color: #ccc;
    }
    .reviews-scroll-btn {
      position: absolute;
      right: -20px;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 2px solid #ddd;
      background: #fff;
      color: var(--dark);
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      z-index: 5;
    }

    /* ============ AVIS CLIENTS — homepage (cartes alignées page centre, header d'origine conservé avec logo Google) ============ */
    .reviews.reviews-home .reviews-carousel { position: relative; margin-top: 8px; }
    .reviews.reviews-home .reviews-viewport { overflow: hidden; width: 100%; }
    .reviews.reviews-home .reviews-track { display: flex; gap: 18px; transition: transform .45s cubic-bezier(.22,.61,.36,1); will-change: transform; }
    .reviews.reviews-home .review-card { flex: 0 0 calc((100% - 36px) / 3); box-sizing: border-box; background: #fff; border: 1px solid #eee; border-radius: 14px; padding: 24px; transition: box-shadow .3s, border-color .3s; display: flex; flex-direction: column; transform: none !important; }
    .reviews.reviews-home .review-card:hover { transform: none !important; box-shadow: 0 8px 24px rgba(242,101,34,0.18); border-color: var(--orange); }
    .reviews.reviews-home .review-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
    .reviews.reviews-home .review-card-header h4 { font-size: 13px; font-weight: 800; text-transform: uppercase; color: var(--dark); margin: 0; }
    .reviews.reviews-home .review-card-header .card-stars { display: flex; gap: 2px; }
    .reviews.reviews-home .review-card-header .card-stars svg { width: 12px; height: 12px; }
    .reviews.reviews-home .review-card .review-subtitle { font-size: 10px; color: #aaa; margin-bottom: 12px; }
    .reviews.reviews-home .review-card p { font-size: 12px; line-height: 1.7; color: #555; margin: 0; display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; }
    .reviews.reviews-home .review-card .review-date { font-size: 10px; color: #bbb; margin-top: 12px; font-weight: 600; }

    .reviews.reviews-home .reviews-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; border: 2px solid #ddd; background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 5; transition: border-color .2s, background .2s, opacity .2s, box-shadow .2s; box-shadow: 0 4px 14px rgba(0,0,0,0.08); }
    .reviews.reviews-home .reviews-nav-prev { left: -22px; }
    .reviews.reviews-home .reviews-nav-next { right: -22px; }
    .reviews.reviews-home .reviews-nav:hover:not(:disabled) { border-color: var(--orange); background: var(--orange-light); box-shadow: 0 6px 18px rgba(242,101,34,0.18); }
    .reviews.reviews-home .reviews-nav:disabled { opacity: 0.35; cursor: not-allowed; }
    .reviews.reviews-home .reviews-nav svg { pointer-events: none; }

    /* ========== ILS PARLENT DE NOUS ========== */
    .media {
      padding: 64px 56px 72px;
      background: var(--gray);
      text-align: center;
    }
    .media h2 {
      font-size: 26px;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 44px;
      display: inline-block;
      border-bottom: 3px solid var(--dark);
      padding-bottom: 8px;
    }
    .media-logos {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
    }
    .media-logo-item {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 60px;
      min-width: 130px;
    }
    /* BFM TV */
    .logo-bfm {
      font-family: 'Arial Black', Arial, sans-serif;
      font-weight: 900;
      display: flex;
      align-items: flex-end;
      gap: 0;
    }
    .logo-bfm .bfm-text {
      font-size: 30px;
      color: #000;
      line-height: 1;
    }
    .logo-bfm .tv-box {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .logo-bfm .tv-text {
      font-size: 18px;
      font-weight: 900;
      color: #fff;
      background: #0055A4;
      padding: 2px 5px 4px;
      line-height: 1;
    }
    /* CNEWS */
    .logo-cnews {
      display: flex;
      align-items: center;
      font-family: 'Arial', sans-serif;
      font-weight: 900;
      font-size: 24px;
    }
    .logo-cnews .c-letter {
      color: #000;
      margin-right: 1px;
    }
    .logo-cnews .news-box {
      background: #E3000B;
      color: #fff;
      padding: 6px 12px;
      border-radius: 3px;
      font-size: 20px;
      letter-spacing: 1px;
    }
    /* RMC */
    .logo-rmc {
      background: #E3000B;
      color: #fff;
      font-family: 'Arial Black', Arial, sans-serif;
      font-size: 26px;
      font-weight: 900;
      padding: 8px 20px;
      border-radius: 4px;
      letter-spacing: 3px;
    }
    /* Le Point */
    .logo-lepoint {
      background: #BE1622;
      color: #fff;
      font-family: Georgia, 'Times New Roman', serif;
      font-size: 22px;
      font-weight: 700;
      font-style: italic;
      padding: 10px 22px;
      border-radius: 4px;
    }

    /* ========== FOOTER ========== */
    .footer {
      background: var(--dark);
      color: #fff;
      padding: 56px 56px 28px;
    }
    .footer-main {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-logo-text {
      font-size: 30px;
      font-weight: 900;
      font-style: italic;
      margin-bottom: 14px;
      letter-spacing: -0.5px;
    }
    .footer-brand p {
      font-size: 13px;
      line-height: 1.6;
      opacity: 0.6;
      margin-bottom: 22px;
      max-width: 280px;
    }
    .btn-rdv-footer {
      display: inline-block;
      background: var(--orange);
      color: #fff;
      padding: 14px 26px;
      border-radius: 30px;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .btn-rdv-footer:hover { background: #d9551a; }
    .footer-col h4 {
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 20px;
    }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a {
      font-size: 13px;
      opacity: 0.55;
      transition: opacity .2s;
    }
    .footer-col ul li a:hover { opacity: 1; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .footer-bottom .copyright {
      font-size: 12px;
      opacity: 0.4;
    }
    .footer-bottom-links {
      display: flex;
      gap: 28px;
    }
    .footer-bottom-links a {
      font-size: 12px;
      opacity: 0.45;
      transition: opacity .2s;
    }
    .footer-bottom-links a:hover { opacity: 1; }

    /* ========== RESPONSIVE — TABLET (≤1100px) ========== */
    @media (max-width: 1100px) {
      .header { padding: 10px 32px; }
      .header-nav { gap: 18px; }
      .header-nav a { font-size: 13px; }
      .btn-find-center { font-size: 13px; }
      .btn-rdv { padding: 10px 22px; font-size: 13px; }

      .hero { flex-direction: column; }
      .hero-left { flex: auto; max-width: 100%; padding: 48px 36px 40px; }
      .hero-right { flex: auto; max-width: 100%; min-height: 360px; height: 360px; }
      .hero-title { font-size: 40px; }

      .engagements, .prestations, .reviews { padding: 60px 36px; }
      .engagements h2, .prestations h2, .reviews-header-left h2 { font-size: 36px; }
      .find-center h2 { font-size: 38px; }

      .engagements-grid { grid-template-columns: repeat(2, 1fr); }
      .engagement-card:nth-child(1),
      .engagement-card:nth-child(2) { border-bottom: 1px solid #e8e8e8; }
      .engagement-card:hover { border-bottom-color: var(--orange); }

      .prestations-grid { grid-template-columns: repeat(2, 1fr); }
      .presta-scroll-btn { display: none; }
      .prestations .presta-card { flex: 0 0 calc((100% - 18px) / 2); }
      .stats-row { grid-template-columns: repeat(2, 1fr); gap: 28px; }
      .stat-item .number { font-size: 48px; }

      .reviews-grid { grid-template-columns: 1fr 1fr; }
      .reviews-scroll-btn { display: none; }
      .reviews.reviews-home .review-card { flex: 0 0 calc((100% - 18px) / 2); }

      .media { padding: 48px 36px; }
      .media-logos { gap: 32px; }

      .footer { padding: 48px 36px 24px; }
      .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
    }

    /* ========== RESPONSIVE — MOBILE LARGE (≤768px) ========== */
    @media (max-width: 768px) {
      .header { padding: 10px 20px; }
      .header-nav { display: none; }
      .header-actions { display: none; }
      .burger { display: flex; }
      .logo-wrap img { width: 90px; height: 54px; }

      .hero-left { padding: 36px 24px 32px; }
      .hero-title { font-size: 34px; }
      .hero-subtitle { font-size: 14px; }
      .hero-badge { font-size: 10px; padding: 6px 14px; }
      .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
      .cta-primary, .cta-secondary {
        justify-content: center;
        padding: 15px 24px;
        font-size: 11px;
        width: 100%;
        text-align: center;
      }
      .google-rating { width: 100%; justify-content: center; }
      .hero-right { min-height: 320px; height: 320px; }
      .hero-carousel { height: 100%; }
      .hero-slide { position: absolute; inset: 0; }
      .hero-slide .hero-photo { width: 100%; height: 100%; min-height: 320px; }
      .hero-article { bottom: 16px; left: 16px; right: 16px; }
      .hero-article h3 { font-size: 16px; }

      /* Hide arrows, show dots on mobile */
      .carousel-arrow { display: none !important; }
      .prestations .presta-nav { display: none !important; }
      .reviews.reviews-home .reviews-nav { display: none !important; }
      .carousel-dots-mobile { display: flex !important; }

      .scroll-banner-item { font-size: 11px; padding: 0 14px; letter-spacing: 1px; }

      .engagements, .prestations, .reviews { padding: 48px 20px; }
      .engagements h2, .prestations h2 { font-size: 30px; }
      .reviews-header-left h2 { font-size: 30px; }
      .engagements-grid { grid-template-columns: 1fr; }
      .engagement-card + .engagement-card { border-left: none; border-top: 1px solid #e8e8e8; }
      .engagement-card:hover { border-top-color: var(--orange); }
      .engagement-card { padding: 32px 24px; }

      .prestations-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .prestation-card { aspect-ratio: 2/3; }
      .prestation-card h3 { font-size: 13px; bottom: 16px; left: 16px; right: 16px; }
      .prestations .prestations-track { gap: 12px; }
      .prestations .presta-card { flex: 0 0 calc((100% - 12px) / 2); aspect-ratio: 2/3; }
      .prestations .presta-card h3 { font-size: 13px; bottom: 16px; left: 16px; right: 16px; }
      .prestations .presta-nav { width: 40px; height: 40px; }
      .prestations .presta-nav-prev { left: -8px; }
      .prestations .presta-nav-next { right: -8px; }
      .stats-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
      .stat-item .number { font-size: 40px; }
      .stat-item .label { font-size: 10px; }

      .find-center { padding: 60px 20px; }
      .find-center h2 { font-size: 32px; }
      .find-center .desc { font-size: 13px; }
      .search-box { padding: 22px 18px; }

      .reviews-header { flex-direction: column; align-items: flex-start; gap: 20px; }
      .reviews-header-right .big-score { font-size: 52px; }
      .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
      .review-card { padding: 22px 20px; }
      .reviews.reviews-home .review-card { flex: 0 0 100%; padding: 22px 20px; }
      .reviews.reviews-home .reviews-nav { width: 40px; height: 40px; }
      .reviews.reviews-home .reviews-nav-prev { left: -10px; }
      .reviews.reviews-home .reviews-nav-next { right: -10px; }

      .media { padding: 40px 20px 48px; }
      .media h2 { font-size: 22px; }
      .media-logos { flex-direction: column; gap: 20px; align-items: center; }
      .media-logo-item { min-width: 160px; }

      .footer { padding: 36px 20px 20px; }
      .footer-main { grid-template-columns: 1fr; gap: 28px; }
      .footer-brand p { max-width: 100%; }
      .footer-col h4 { margin-bottom: 14px; }
      .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
      }
      .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
    }

    /* ========== RESPONSIVE — MOBILE SMALL (≤420px) ========== */
    @media (max-width: 420px) {
      .header { padding: 8px 16px; }
      .logo-wrap img { width: 80px; height: 48px; }

      .hero-left { padding: 28px 18px 28px; }
      .hero-title { font-size: 28px; margin-bottom: 14px; }
      .hero-subtitle { font-size: 13px; margin-bottom: 24px; }
      .hero-badge { margin-bottom: 20px; }
      .cta-primary, .cta-secondary { padding: 14px 20px; font-size: 10.5px; }
      .google-rating { padding: 12px 16px; }
      .g-rating-row .stars { font-size: 14px; }
      .g-rating-row .score { font-size: 13px; }
      .g-rating-text .count { font-size: 9px; }

      .hero-right { min-height: 260px; height: 260px; }
      .hero-slide .hero-photo { min-height: 260px; }
      .carousel-arrow { width: 36px; height: 36px; font-size: 16px; }
      .hero-article h3 { font-size: 14px; }
      .hero-article-badge { font-size: 9px; padding: 4px 12px; }

      .engagements, .prestations, .reviews { padding: 36px 16px; }
      .engagements h2, .prestations h2, .reviews-header-left h2 { font-size: 26px; }
      .section-badge { font-size: 10px; padding: 5px 14px; }
      .engagement-card { padding: 28px 20px; }
      .engagement-card h3 { font-size: 12px; }
      .engagement-card p { font-size: 12px; }
      .engagement-icon { width: 60px; height: 60px; }
      .engagement-icon svg { width: 60px; height: 60px; }

      .prestations-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
      .prestation-card h3 { font-size: 11px; bottom: 12px; left: 12px; right: 12px; }
      .prestation-card h3::before { width: 20px; height: 2px; margin-bottom: 6px; }
      .stat-item .number { font-size: 34px; }
      .stat-item .label { font-size: 9px; letter-spacing: 1px; }

      .find-center { padding: 48px 16px; }
      .find-center h2 { font-size: 26px; }
      .search-box { padding: 20px 14px; }
      .search-box label { font-size: 10px; }
      .search-box input { padding: 13px 14px; font-size: 13px; }
      .search-box .btn-search { padding: 13px; font-size: 11px; letter-spacing: 1px; }

      .reviews-header-right .big-score { font-size: 44px; }
      .google-side .stars-row { font-size: 16px; }
      .review-card { padding: 20px 16px; }
      .review-card-header h4 { font-size: 12px; }
      .review-card p { font-size: 12px; }

      .media h2 { font-size: 20px; margin-bottom: 28px; }
      .logo-bfm .bfm-text { font-size: 24px; }
      .logo-cnews { font-size: 20px; }
      .logo-cnews .news-box { font-size: 16px; padding: 5px 10px; }
      .logo-rmc { font-size: 22px; padding: 6px 16px; }
      .logo-lepoint { font-size: 18px; padding: 8px 18px; }

      .footer { padding: 32px 16px 16px; }
      .footer-logo-text img { width: 130px; height: 38px; }
      .footer-brand p { font-size: 12px; }
      .footer-col h4 { font-size: 11px; }
      .footer-col ul li a { font-size: 12px; }
      .footer-bottom .copyright { font-size: 11px; }
      .footer-bottom-links a { font-size: 11px; }
    }