/* ========== HERO PRESTATION ========== */
    .hero-presta {
      position: relative;
      min-height: 540px;
      display: flex;
      align-items: stretch;
      overflow: hidden;
    }
    .hero-presta-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.2) 65%, transparent 100%),
        url('https://drive.google.com/thumbnail?id=1iDerHK4bj0d9VKSQF6DPifaUGy56i31L&sz=w2000') center/cover no-repeat;
    }
    .hero-presta-figure {
      position: absolute;
      right: 5%;
      bottom: 0;
      top: 0;
      width: 48%;
      overflow: hidden;
      display: none;
    }
    .hero-presta-figure .fig-body {
      position: absolute;
      right: 10%;
      bottom: 0;
      width: 280px;
      height: 92%;
      background: linear-gradient(180deg, rgba(90,70,50,0.3) 0%, rgba(60,45,30,0.5) 60%, rgba(40,25,15,0.6) 100%);
      border-radius: 30% 30% 0 0 / 15% 15% 0 0;
    }
    .hero-presta-figure .fig-arm {
      position: absolute;
      right: 35%;
      top: 15%;
      width: 120px;
      height: 200px;
      background: rgba(70,50,35,0.25);
      border-radius: 50% 50% 30% 30%;
      transform: rotate(-15deg);
    }
    .hero-presta-figure .fig-glass {
      position: absolute;
      left: 5%;
      top: 20%;
      width: 55%;
      height: 50%;
      background: linear-gradient(135deg, rgba(173,216,230,0.08) 0%, rgba(200,220,240,0.04) 100%);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 8px;
      transform: perspective(400px) rotateY(10deg);
    }
    .hero-presta-content {
      position: relative;
      z-index: 2;
      padding: 80px 56px 64px;
      max-width: 600px;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .hero-presta-breadcrumb {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      opacity: 0.65;
      margin-bottom: 20px;
    }
    .hero-presta-breadcrumb a {
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .hero-presta h1 {
      font-size: 54px;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1.04;
      margin-bottom: 24px;
      letter-spacing: -1px;
    }
    .hero-presta h1 span { color: var(--orange); }
    .hero-presta .hero-desc {
      font-size: 15px;
      line-height: 1.7;
      opacity: 0.8;
      margin-bottom: 36px;
      max-width: 470px;
    }
    .hero-presta .btn-rdv-hero {
      display: inline-block;
      background: var(--orange);
      color: #fff;
      padding: 16px 32px;
      border-radius: 30px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: background .2s;
      width: fit-content;
    }
    .hero-presta .btn-rdv-hero:hover { background: #d9551a; }

    /* ========== 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%); }
    }

    /* ========== MAIN CONTENT TWO COLUMN ========== */
    .main-content {
      padding: 80px 56px;
      background: #fff;
    }
    .main-content-inner {
      display: flex;
      gap: 60px;
      align-items: flex-start;
    }
    .content-left {
      flex: 1;
    }
    .content-right {
      flex: 1;
    }

    /* Info Cards */
    .info-cards {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .info-card {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      padding: 28px;
      border-radius: 14px;
      transition: transform .3s ease, box-shadow .3s ease;
    }
    .info-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    }
    .info-card.light {
      background: var(--gray);
      color: var(--dark);
    }
    .info-card.orange {
      background: var(--orange);
      color: #fff;
    }
    .info-card-icon {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .info-card.light .info-card-icon svg {
      stroke: var(--orange);
    }
    .info-card.orange .info-card-icon svg {
      stroke: #fff;
    }
    .info-card-text h3 {
      font-size: 16px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 8px;
    }
    .info-card-text p {
      font-size: 13px;
      line-height: 1.6;
      opacity: 0.8;
    }

    /* Right column */
    .right-section {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    .image-block {
      border-radius: 16px;
      overflow: hidden;
      aspect-ratio: 4/5;
      background: url('https://drive.google.com/thumbnail?id=12Rb1X0FCubEb0scA5QIC2pnj-0ytcGr0&sz=w2000') center/cover no-repeat;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 400px;
    }
    .image-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.2);
      font-size: 14px;
    }
    .badge-engagement {
      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;
      letter-spacing: 0.5px;
      margin-bottom: 16px;
    }
    .right-section h2 {
      font-size: 38px;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1.08;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }
    .right-section p {
      font-size: 15px;
      line-height: 1.8;
      color: #555;
    }
    .right-section p strong {
      color: var(--orange);
      font-weight: 700;
    }

    /* ========== EDITORIAL CONTENT ========== */
    .editorial {
      padding: 80px 56px;
      background: #fff;
    }
    .editorial-intro {
      max-width: 860px;
      margin: 0 auto 56px;
    }
    .editorial-intro p {
      font-size: 16px;
      line-height: 1.85;
      color: #444;
    }
    /* Le saviez-vous callout */
    .callout-box {
      background: var(--orange-light);
      border-left: 5px solid var(--orange);
      border-radius: 0 14px 14px 0;
      padding: 36px 40px;
      margin: 44px auto;
      max-width: 860px;
      position: relative;
    }
    .callout-icon {
      position: absolute;
      top: -18px;
      left: 24px;
      width: 44px;
      height: 44px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
      font-size: 20px;
    }
    .callout-box h3 {
      font-size: 18px;
      font-weight: 800;
      color: var(--orange);
      text-transform: uppercase;
      margin-bottom: 4px;
    }
    .callout-box .callout-subtitle {
      font-size: 15px;
      font-weight: 700;
      font-style: italic;
      color: var(--dark);
      margin-bottom: 16px;
    }
    .callout-box p {
      font-size: 14px;
      line-height: 1.75;
      color: #555;
    }
    /* Stats editorial */
    .editorial-stats {
      max-width: 860px;
      margin: 0 auto 56px;
      display: flex;
      gap: 24px;
      align-items: stretch;
    }
    .editorial-stat-block {
      flex: 1;
      background: var(--gray);
      border-radius: 16px;
      padding: 36px 32px;
      text-align: center;
    }
    .editorial-stat-block .big-number {
      font-size: 52px;
      font-weight: 900;
      color: var(--orange);
      line-height: 1;
      margin-bottom: 10px;
    }
    .editorial-stat-block .stat-desc {
      font-size: 14px;
      line-height: 1.65;
      color: #555;
    }
    .editorial-stat-block .stat-desc strong { color: var(--dark); }
    /* Safety section */
    .editorial-safety {
      max-width: 860px;
      margin: 0 auto 64px;
      background: var(--dark);
      border-radius: 20px;
      padding: 48px 44px;
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .editorial-safety::after {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 200px;
      height: 200px;
      background: var(--orange);
      opacity: 0.08;
      border-radius: 50%;
    }
    .editorial-safety h3 {
      font-size: 24px;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 20px;
      position: relative;
    }
    .editorial-safety h3::after {
      content: '';
      display: block;
      width: 50px;
      height: 4px;
      background: var(--orange);
      border-radius: 2px;
      margin-top: 12px;
    }
    .editorial-safety p {
      font-size: 15px;
      line-height: 1.8;
      opacity: 0.82;
      position: relative;
    }
    .editorial-safety .safety-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 20px;
      position: relative;
    }
    .editorial-safety .safety-list li {
      font-size: 14px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 10px;
      list-style: none;
    }
    .editorial-safety .safety-list li::before {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--orange);
      flex-shrink: 0;
    }
    /* Nos valeurs */
    .editorial-values {
      max-width: 860px;
      margin: 0 auto;
    }
    .editorial-values .section-badge { margin-bottom: 12px; }
    .editorial-values h2 {
      font-size: 38px;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1.08;
      margin-bottom: 40px;
      letter-spacing: -0.5px;
    }
    .value-item {
      margin-bottom: 40px;
      padding-left: 28px;
      border-left: 4px solid var(--orange);
    }
    .value-item:last-child { margin-bottom: 0; }
    .value-item h4 {
      font-size: 20px;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 10px;
    }
    .value-item h4 span { color: var(--orange); }
    .value-item p {
      font-size: 14px;
      line-height: 1.8;
      color: #555;
    }
    /* CTA closing */
    .editorial-closing {
      max-width: 860px;
      margin: 64px auto 0;
      background: linear-gradient(135deg, var(--orange) 0%, #e05515 100%);
      border-radius: 20px;
      padding: 48px 44px;
      color: #fff;
      text-align: center;
    }
    .editorial-closing h3 {
      font-size: 22px;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .editorial-closing p {
      font-size: 14px;
      line-height: 1.75;
      opacity: 0.9;
      max-width: 650px;
      margin: 0 auto 28px;
    }
    .editorial-closing .btn-cta-white {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      color: var(--orange);
      padding: 14px 28px;
      border-radius: 30px;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: transform .2s, box-shadow .2s;
    }
    .editorial-closing .btn-cta-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }

    /* ========== TROUVER VOTRE CENTRE ========== */
    .find-center {
      padding: 80px 56px;
      background: var(--orange);
      color: #fff;
    }
    .find-center-inner {
      max-width: 900px;
      margin: 0 auto;
    }
    .find-center h2 {
      font-size: 38px;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1.08;
      margin-bottom: 44px;
      text-align: center;
      letter-spacing: -0.5px;
      color: #fff;
    }
    .map-placeholder {
      border-radius: 16px;
      overflow: hidden;
      aspect-ratio: 16/9;
      background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.1) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.6);
      font-size: 16px;
      min-height: 300px;
    }
    .map-placeholder svg {
      opacity: 0.7;
      color: rgba(255,255,255,0.8);
    }

    /* ========== 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; }

    /* ========== 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; }
    .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; }
    .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; }
    .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; }
    .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; }

    /* ========== ANIMATIONS ========== */
    .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; }

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

    /* ========== RESPONSIVE — TABLET ========== */
    @media (max-width: 1100px) {
      .header { padding: 10px 32px; }
      .header-nav { gap: 18px; }
      .header-nav a { font-size: 13px; }
      .hero-presta h1 { font-size: 42px; }
      .hero-presta-content { padding: 60px 36px 48px; }
      .main-content { padding: 60px 36px; }
      .main-content-inner { gap: 36px; }
      .right-section h2 { font-size: 32px; }
      .find-center { padding: 60px 36px; }
      .find-center h2 { font-size: 32px; }
      .reviews { padding: 60px 36px; }
      .reviews-header-left h2 { font-size: 36px; }
      .media { padding: 48px 36px 56px; }
      .footer { padding: 48px 36px 24px; }
      .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
    }

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

      .hero-presta { min-height: 420px; }
      .hero-presta-content { padding: 48px 24px 40px; max-width: 100%; }
      .hero-presta h1 { font-size: 32px; line-height: 1.1; }
      .hero-presta .hero-desc { font-size: 13px; }
      .hero-presta-figure { display: none; }

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

      .main-content { padding: 48px 20px; }
      .main-content-inner { flex-direction: column; gap: 32px; align-items: stretch; }
      .content-left { flex: 1; }
      .content-right { flex: 1; }
      .info-cards { display: flex; flex-direction: column; gap: 24px; }
      .info-card { padding: 24px; display: flex; flex-direction: row; align-items: flex-start; }
      .info-card-icon { width: 48px; height: 48px; flex-shrink: 0; }
      .info-card-text h3 { font-size: 15px; text-transform: uppercase; }
      .info-card-text p { font-size: 12px; }
      .right-section { flex-direction: column; gap: 24px; }
      .right-section h2 { font-size: 28px; margin-bottom: 16px; }
      .right-section p { font-size: 14px; }
      .image-block { min-height: 320px; }

      /* Editorial mobile */
      .editorial { padding: 48px 20px; }
      .editorial-intro { margin-bottom: 40px; }
      .editorial-intro p { font-size: 14px; line-height: 1.75; }
      .callout-box { padding: 32px 20px; margin: 36px auto; }
      .callout-box h3 { font-size: 16px; }
      .callout-box .callout-subtitle { font-size: 14px; }
      .callout-box p { font-size: 13px; }
      .callout-icon { top: -16px; left: 16px; width: 38px; height: 38px; font-size: 17px; }
      .editorial-stats { flex-direction: column; gap: 16px; margin-bottom: 40px; }
      .editorial-stat-block { padding: 28px 24px; }
      .editorial-stat-block .big-number { font-size: 40px; }
      .editorial-stat-block .stat-desc { font-size: 13px; }
      .editorial-safety { padding: 36px 24px; border-radius: 14px; margin-bottom: 48px; }
      .editorial-safety h3 { font-size: 20px; }
      .editorial-safety p { font-size: 14px; }
      .editorial-safety .safety-list { grid-template-columns: 1fr; gap: 10px; }
      .editorial-safety .safety-list li { font-size: 13px; }
      .editorial-values h2 { font-size: 26px; margin-bottom: 32px; }
      .value-item { padding-left: 20px; margin-bottom: 32px; }
      .value-item h4 { font-size: 17px; }
      .value-item p { font-size: 13px; }
      .editorial-closing { padding: 36px 24px; border-radius: 14px; margin-top: 48px; }
      .editorial-closing h3 { font-size: 18px; }
      .editorial-closing p { font-size: 13px; }
      .editorial-closing .btn-cta-white { padding: 14px 28px; font-size: 11px; }

      .find-center { padding: 48px 20px; }
      .find-center h2 { font-size: 28px; margin-bottom: 32px; }
      .map-placeholder { min-height: 240px; font-size: 14px; }

      .reviews { padding: 48px 20px; }
      .reviews-header { flex-direction: column; align-items: flex-start; gap: 20px; }
      .reviews-header-left h2 { font-size: 30px; }
      .reviews-header-right .big-score { font-size: 52px; }
      .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
      .review-card { padding: 22px 20px; }
      .reviews-scroll-btn { display: none; }
      .media { padding: 40px 20px 48px; }
      .media-logos { gap: 28px; }

      .footer { padding: 36px 20px 20px; }
      .footer-main { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
      .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
    }

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

      .hero-presta { min-height: 360px; }
      .hero-presta-content { padding: 36px 18px 32px; max-width: 100%; }
      .hero-presta h1 { font-size: 26px; line-height: 1.1; }
      .hero-presta .hero-desc { font-size: 12px; margin-bottom: 28px; }
      .hero-presta .btn-rdv-hero { padding: 14px 24px; font-size: 11px; }

      .main-content { padding: 36px 16px; }
      .main-content-inner { gap: 28px; }
      .info-card { padding: 20px; }
      .info-card-text h3 { font-size: 14px; }
      .info-card-text p { font-size: 11px; }
      .right-section h2 { font-size: 24px; margin-bottom: 14px; }
      .right-section p { font-size: 13px; line-height: 1.6; }
      .badge-engagement { font-size: 10px; padding: 6px 14px; }

      .find-center { padding: 36px 16px; }
      .find-center h2 { font-size: 24px; margin-bottom: 24px; }
      .map-placeholder { min-height: 220px; font-size: 13px; }

      .reviews { padding: 36px 16px; }
      .reviews-header-left h2 { font-size: 26px; }
      .reviews-header-right .big-score { font-size: 44px; }
      .review-card { padding: 20px 16px; }
      .review-card-header h4 { font-size: 12px; }
      .review-card p { font-size: 12px; }
      .media { padding: 32px 16px 40px; }
      .media h2 { font-size: 22px; margin-bottom: 32px; }
      .media-logos { gap: 20px; }
      .media-logo-item { min-width: 100px; height: 50px; }

      .footer { padding: 28px 16px 16px; }
      .footer-main { gap: 24px; }
      .footer-col h4 { font-size: 11px; margin-bottom: 16px; }
      .footer-col ul li { margin-bottom: 10px; }
      .footer-col ul li a { font-size: 12px; }
    }