*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Montserrat', Arial, sans-serif;
      color: #1a1a1a;
      background: #fff;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    :root {
      --orange: #F26522;
      --orange-light: #FFF0E8;
      --dark: #1a1a1a;
      --gray: #F4F4F4;
      --white: #ffffff;
    }

    /* ========== HEADER ========== */
    .header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 48px;
      background: #fff;
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid #eee;
    }
    .logo-wrap img { display: block; }
    .header-nav {
      display: flex;
      align-items: center;
      gap: 28px;
    }
    .header-nav a {
      font-size: 14px;
      font-weight: 600;
      color: var(--dark);
      transition: color .2s;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .header-nav a:hover { color: var(--orange); }
    .nav-dropdown {
      position: relative;
    }
    .nav-dropdown > a {
      cursor: pointer;
    }
    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.12);
      padding: 10px 0;
      min-width: 240px;
      z-index: 200;
    }
    .nav-dropdown:hover .dropdown-menu {
      display: block;
    }
    .dropdown-menu a {
      display: block;
      padding: 10px 20px;
      font-size: 13px;
      font-weight: 600;
      color: var(--dark);
      transition: background .2s, color .2s;
    }
    .dropdown-menu a:hover {
      background: var(--orange-light);
      color: var(--orange);
    }
    .header-nav .arrow { font-size: 8px; }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    /* Burger button — hidden on desktop */
    .burger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 32px;
      height: 32px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
      z-index: 200;
    }
    .burger span {
      display: block;
      width: 100%;
      height: 2.5px;
      background: var(--dark);
      border-radius: 2px;
      transition: transform .3s ease, opacity .3s ease;
      transform-origin: center;
    }
    .burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    .burger.open span:nth-child(2) { opacity: 0; }
    .burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

    /* Mobile drawer */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: #fff;
      z-index: 150;
      padding: 90px 28px 40px;
      flex-direction: column;
      gap: 0;
      overflow-y: auto;
      transform: translateX(100%);
      transition: transform .35s cubic-bezier(.4,0,.2,1);
    }
    .mobile-menu.open {
      display: flex;
      transform: translateX(0);
    }
    /* Force display so transition works */
    .mobile-menu.animating { display: flex; }
    .mobile-menu a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 0;
      border-bottom: 1px solid #f0f0f0;
      font-size: 16px;
      font-weight: 700;
      color: var(--dark);
      transition: color .2s;
    }
    .mobile-menu a:last-child { border-bottom: none; }
    .mobile-menu a:hover { color: var(--orange); }
    .mobile-menu a .arrow { font-size: 10px; color: #bbb; }
    .mobile-menu .mobile-ctas {
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .mobile-menu .mobile-ctas .btn-rdv {
      text-align: center;
      display: block;
      padding: 16px 28px;
      font-size: 14px;
    }
    .mobile-menu .mobile-ctas .btn-find-center {
      justify-content: center;
      font-size: 14px;
      padding: 14px 0;
    }
    /* Backdrop */
    .mobile-backdrop {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.4);
      z-index: 140;
      opacity: 0;
      transition: opacity .3s ease;
    }
    .mobile-backdrop.open { display: block; opacity: 1; }
    .btn-find-center {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 14px;
      font-weight: 700;
      color: var(--orange);
    }
    .btn-rdv {
      background: var(--orange);
      color: #fff;
      padding: 12px 28px;
      border-radius: 30px;
      font-size: 14px;
      font-weight: 700;
      display: inline-block;
    }
    .btn-rdv:hover { background: #d9551a; }

@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: 320px; }
      .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; }
      .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; }

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

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

@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: 280px; }
      .hero-article h3 { font-size: 16px; }

      .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; }
      .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; }

      .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; }
    }

@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: 240px; }
      .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; }
    }