/* ========== 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;
    }
    .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;
    }
    .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;
    }
    .hero-photo {
      width: 100%;
      height: 100%;
      /* Simulated warm photo of OuiGlass storefront */
      background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.55) 100%), url('https://drive.google.com/thumbnail?id=1lBrR4DRg__q8vp6LmWNF0NlG3ETQRKnL&sz=w2000') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .store-sim {
      width: 70%;
      height: 55%;
      position: relative;
      margin-top: -40px;
      display: none;
    }
    /* Store building simulation */
    .store-body {
      width: 100%;
      height: 100%;
      background: transparent;
      border-radius: 4px 4px 0 0;
      position: relative;
      overflow: hidden;
    }
    .store-body::before {
      content: '';
      position: absolute;
      right: 0; top: 0; bottom: 0;
      width: 35%;
      background: var(--orange);
      opacity: 0.85;
    }
    .store-windows {
      display: flex;
      gap: 4px;
      padding: 20% 8% 10%;
      position: relative;
      z-index: 1;
    }
    .store-window {
      flex: 1;
      aspect-ratio: 1;
      background: rgba(173,216,230,0.25);
      border: 2px solid rgba(255,255,255,0.15);
      border-radius: 2px;
    }
    .store-sign {
      position: absolute;
      top: 8%;
      right: 4%;
      background: var(--orange);
      color: #fff;
      font-size: 11px;
      font-weight: 800;
      padding: 4px 12px;
      border-radius: 2px;
      font-style: italic;
      letter-spacing: 0.5px;
      z-index: 2;
    }
    .store-sign-left {
      position: absolute;
      top: 6%;
      left: 25%;
      color: rgba(255,255,255,0.6);
      font-size: 10px;
      font-weight: 600;
      z-index: 2;
    }
    /* 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: underline;
      text-underline-offset: 3px;
      text-transform: uppercase;
    }
    .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);
    }
    .carousel-dots span.active { background: #fff; }

    /* ========== 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 */
    .review-card {
      transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    }
    .review-card:hover {
      transform: translateY(-4px);
      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('https://drive.google.com/thumbnail?id=1IDcX0wKcIVdNLNl66Cp_LH9Cq6OFZo_h&sz=w2000') 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('https://drive.google.com/thumbnail?id=1LC5IQDS2goQ5HsYxM3pytHdVx3IKxkMg&sz=w2000') 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('https://drive.google.com/thumbnail?id=1kGTzrzTBX7JMX_hj-_lXYO-NKIlFWAhY&sz=w2000') 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('https://drive.google.com/thumbnail?id=1Xf_l_jaFnIqTgqsCEYOC6iJf-1JZSxoY&sz=w2000') 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;
    }

    /* 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('https://drive.google.com/thumbnail?id=1dQSw5ekAnK0yRAQdBhfH6TXeyHIY3y4O&sz=w2000') 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); }

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

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

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