/* Full extracted CSS from index.html (kept original rules and selectors) */
:root {
    --black: #0B0B0B;
    --gray-dark: #161616;
    --anthracite: #0B0B0B;
    --anthracite-mid: #161616;
    --anthracite-light: #222222;
    --yellow: #F4C400;
    --yellow-dark: #d4a900;
    --yellow-light: #ffe168;
    --white: #f5f5f0;
    --gray: #888;
    --gray-light: #bbb;
    --border: rgba(255,255,255,0.08);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
  }

  body {
    font-family: 'Barlow', sans-serif;
    background: var(--anthracite);
    color: var(--white);
    overflow-x: hidden;
    max-width: 100%;
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }

  img, video, iframe, svg {
    max-width: 100%;
    height: auto;
  }

  /* ====== UTILITY ====== */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; }
  a { color: var(--yellow); text-decoration: none; transition: color 0.2s; }
  a:hover, a:focus { color: var(--yellow-light); }
  a:visited { color: var(--yellow); }
  .yellow { color: var(--yellow); }
  .btn-primary {
    display: inline-block;
    background: var(--yellow);
    color: var(--anthracite);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background 0.2s, transform 0.15s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  }
  .btn-primary:hover { background: var(--yellow-light); color: var(--anthracite); transform: translateY(-2px); }
  .btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--yellow);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 30px;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid var(--yellow);
    transition: all 0.2s;
  }
  .btn-outline:hover { background: var(--yellow); color: var(--anthracite); }

  section { padding: 80px 0; }
  h2.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 12px;
  }
  .section-sub {
    font-weight: 300;
    color: var(--gray-light);
    font-size: 1.05rem;
    margin-bottom: 48px;
    max-width: 520px;
  }

  /* ====== NAV ====== */
  nav:not(.mobile-sticky-bar) {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: var(--black);
    border-bottom: none;
    backdrop-filter: blur(12px);
    pointer-events: auto;
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 64px; padding: 0 24px; max-width: 1200px; margin: 0 auto;
  }
  .nav-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: 1.6rem; letter-spacing: 0.04em;
    text-decoration: none; color: var(--white);
  }
  .nav-logo span { color: var(--yellow); }
  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a {
    color: var(--gray-light); text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600; font-size: 0.95rem; letter-spacing: 0.06em;
    text-transform: uppercase; transition: color 0.2s;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 2;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--yellow); }
  .nav-cta {
    display: flex; align-items: center; gap: 12px;
  }
  .nav-tel {
    color: var(--yellow); font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700; font-size: 1rem; letter-spacing: 0.04em;
    text-decoration: none; transition: color 0.2s;
  }
  .nav-tel:hover { color: var(--yellow-light); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
  .hamburger span { width: 26px; height: 2px; background: var(--yellow); display: block; transition: all 0.3s; }

  /* ====== PAGES ====== */
  .page { display: none; }
  .page.active { display: block; }
  html.preview-mobile .page:not(.active),
  html.mobile-view .page:not(.active) { display: none !important; }
  html.preview-mobile .page.active,
  html.mobile-view .page.active {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  html.preview-mobile #page-home.page.active,
  html.mobile-view #page-home.page.active { min-height: 0 !important; }
  html.preview-mobile .page.active:not(#page-home),
  html.mobile-view .page.active:not(#page-home) {
    padding-top: 45px;
    min-height: 100vh;
  }

  /* ====== HERO ====== */
  #hero {
    min-height: 100vh;
    background: var(--anthracite);
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding-top: 64px;
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(245,196,0,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(245,196,0,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-accent {
    position: absolute; right: -120px; top: 50%; transform: translateY(-50%);
    width: min(700px, 90vw); height: min(700px, 90vw);
    background: radial-gradient(circle, rgba(245,196,0,0.08) 0%, transparent 65%);
    pointer-events: none;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(245,196,0,0.1); border: 1px solid var(--border);
    padding: 6px 16px; margin-bottom: 24px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow);
  }
  .hero-badge::before { content: ''; width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; animation: pulse 1.5s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
  .hero-content { position: relative; z-index: 2; }
  .hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: clamp(3.5rem, 8vw, 7rem);
    text-transform: uppercase; line-height: 0.9;
    margin-bottom: 24px;
  }
  .hero-title em { font-style: normal; color: var(--yellow); }
  .hero-sub {
    font-size: 1.15rem; font-weight: 300; color: var(--gray-light);
    max-width: 520px; line-height: 1.7; margin-bottom: 40px;
  }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
  .hero-stats {
    display: flex; gap: 40px; flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.08); padding-top: 32px;
  }
  .stat-item { text-align: center; }
  .stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: 2.4rem; color: var(--yellow); line-height: 1;
  }
  .stat-label { font-size: 0.78rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

  /* ====== SERVICES ====== */
  #services-section { background: var(--anthracite-mid); }
  .services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2px;
  }
  .service-card {
    background: var(--anthracite); padding: 36px 28px;
    border-left: 3px solid transparent;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s;
    text-decoration: none; color: inherit;
    display: block;
  }
  .service-card:hover { border-left-color: var(--yellow); background: var(--anthracite-light); }
  .service-icon {
    width: 48px; height: 48px; margin-bottom: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
  }
  .service-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700; font-size: 1.3rem; text-transform: uppercase;
    letter-spacing: 0.04em; margin-bottom: 10px;
  }
  .service-desc { font-size: 0.88rem; color: var(--gray-light); line-height: 1.6; }
  .service-arrow {
    display: inline-block; margin-top: 16px; color: var(--yellow);
    font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
    font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
    transition: gap 0.2s;
  }

  /* ====== WHY US ====== */
  #why { background: var(--anthracite); }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .why-visual {
    position: relative;
    background: var(--anthracite-mid);
    border: 1px solid var(--border);
    padding: 48px 40px;
  }
  .why-visual::before {
    content: 'OJ AUTO 77';
    position: absolute; top: -1px; left: -1px; right: -1px;
    background: var(--yellow); color: var(--anthracite);
    font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
    font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase;
    padding: 8px 20px; text-align: center;
  }
  .why-visual-content { margin-top: 20px; }
  .why-guarantee {
    display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px;
    padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .why-guarantee:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .why-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
  .why-guarantee h4 {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.04em;
    margin-bottom: 4px;
  }
  .why-guarantee p { font-size: 0.85rem; color: var(--gray-light); line-height: 1.5; }
  .why-points { }
  .why-point {
    display: flex; align-items: flex-start; gap: 16px; margin-bottom: 32px;
  }
  .why-num {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
    font-size: 3rem; color: var(--border); line-height: 1; flex-shrink: 0; width: 50px;
  }
  .why-point h3 {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px;
  }
  .why-point p { font-size: 0.88rem; color: var(--gray-light); line-height: 1.6; }

  /* ====== RESERVATION ====== */
  #reservation-section { background: var(--anthracite-mid); }
  .resa-wrapper {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start;
  }
  .resa-info h2 { margin-bottom: 8px; }
  .resa-step {
    display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start;
  }
  .resa-step-num {
    width: 36px; height: 36px; background: var(--yellow); color: var(--anthracite);
    font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem;
  }
  .resa-step-text h4 {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 1rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px;
  }
  .resa-step-text p { font-size: 0.85rem; color: var(--gray-light); }
  .resa-contact-box {
    margin-top: 32px; padding: 24px;
    background: rgba(245,196,0,0.06); border: 1px solid var(--border);
  }
  .resa-contact-box p { font-size: 0.88rem; color: var(--gray-light); margin-bottom: 12px; }
  .resa-contact-links { display: flex; flex-direction: column; gap: 8px; }
  .resa-link {
    display: flex; align-items: center; gap: 10px;
    color: var(--yellow); text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 1.05rem; letter-spacing: 0.04em; transition: color 0.2s;
  }
  .resa-link:hover { color: var(--yellow-light); }
  .form-box {
    background: var(--anthracite); border: 1px solid var(--border); padding: 40px;
  }
  .form-title {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
    font-size: 1.4rem; text-transform: uppercase; letter-spacing: 0.05em;
    margin-bottom: 28px; color: var(--yellow);
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { margin-bottom: 18px; }
  .form-group label {
    display: block; font-size: 0.78rem; color: var(--gray-light);
    text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px;
    font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; background: var(--anthracite-mid); border: 1px solid rgba(255,255,255,0.1);
    color: var(--white); font-family: 'Barlow', sans-serif; font-size: 0.95rem;
    padding: 12px 16px; outline: none; transition: border-color 0.2s;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--yellow);
  }
  .form-group select option { background: var(--anthracite-mid); }
  .plate-field {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 1.1rem; letter-spacing: 0.12em; text-transform: uppercase;
  }
  .plate-wrapper { position: relative; }
  .plate-flag {
    position: absolute; left: 0; top: 0; bottom: 0; width: 40px;
    background: var(--anthracite); display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; flex-direction: column; gap: 1px;
  }
  .plate-flag span { color: #fff; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.05em; }
  .plate-input { padding-left: 52px !important; }
  .rgpd { font-size: 0.75rem; color: var(--gray); line-height: 1.5; margin-top: 12px; }
  .form-success {
    display: none; text-align: center; padding: 32px;
    background: rgba(245,196,0,0.06); border: 1px solid var(--yellow);
  }
  .form-success .check { font-size: 3rem; margin-bottom: 12px; }
  .form-success h3 {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
    font-size: 1.4rem; text-transform: uppercase; margin-bottom: 8px; color: var(--yellow);
  }

  /* ====== TESTIMONIALS ====== */
  #temoignages, #avis-google { background: var(--anthracite); }
  .testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
  .testi-card {
    background: var(--anthracite-mid); border-left: 3px solid var(--yellow);
    padding: 28px 24px;
  }
  .stars { color: var(--yellow); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
  .testi-text { font-size: 0.92rem; color: var(--gray-light); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
  .testi-author {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em;
    color: var(--white);
  }
  .testi-vehicle { font-size: 0.78rem; color: var(--gray); }
  .google-badge {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    margin-top: 48px; padding: 20px;
    border: 1px solid var(--border); max-width: 380px; margin-left: auto; margin-right: auto;
    cursor: pointer; transition: border-color 0.2s; text-decoration: none; color: inherit;
  }
  .google-badge:hover { border-color: var(--yellow); }
  .google-badge-icon {
    width: 40px; height: 40px; border-radius: 50%; background: #fff; color: #4285F4;
    font-weight: 700; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .google-badge-arrow { color: var(--gray); font-size: 0.8rem; margin-left: 8px; }
  .google-actions {
    display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: center; margin-top: 48px;
  }
  .google-actions .google-badge { margin-top: 0; margin-left: 0; margin-right: 0; }
  .google-review-btn { margin: 0; }
  .google-rating { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2rem; color: var(--yellow); }
  .google-label { font-size: 0.78rem; color: var(--gray-light); text-transform: uppercase; letter-spacing: 0.08em; }

  /* ====== ARTICLES ====== */
  #articles-section { background: var(--anthracite-mid); }
  .articles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
  .article-card {
    background: var(--anthracite); cursor: pointer;
    transition: transform 0.2s; text-decoration: none; color: inherit; display: block;
  }
  .article-card:hover { transform: translateY(-4px); }
  .article-img {
    height: 200px; background: var(--anthracite-light);
    position: relative; overflow: hidden;
  }
  .article-img img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
    transition: transform 0.25s;
  }
  .article-card:hover .article-img img { transform: scale(1.04); }
  .article-cat {
    position: absolute; bottom: 0; left: 0;
    background: var(--yellow); color: var(--anthracite);
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 4px 12px;
  }
  .article-body { padding: 24px 20px; }
  .article-date { font-size: 0.75rem; color: var(--gray); margin-bottom: 8px; }
  .article-title {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 1.15rem; text-transform: uppercase; letter-spacing: 0.03em;
    margin-bottom: 8px; line-height: 1.2;
  }
  .article-excerpt { font-size: 0.83rem; color: var(--gray-light); line-height: 1.6; }
  .article-icon {
    width: 40px; height: 40px; margin-right: 10px; flex-shrink: 0;
    fill: var(--yellow);
  }
  .faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 28px; }
  .faq-card {
    background: var(--anthracite-mid); border: 1px solid var(--border);
    border-radius: 18px; padding: 24px; transition: transform 0.2s;
  }
  .faq-card:hover { transform: translateY(-3px); }
  .faq-card h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 10px; color: var(--white); }
  .faq-card p { color: var(--gray-light); line-height: 1.7; font-size: 0.94rem; }
  @media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; } }

  /* ====== CONTACT / MAP ====== */
  #contact-page { background: var(--anthracite); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; }
  .contact-info-block {
    padding: 36px 28px; background: var(--anthracite-mid); border-top: 3px solid var(--yellow);
    margin-bottom: 24px;
  }
  .contact-info-block h3 {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--yellow); margin-bottom: 16px;
  }
  .info-row {
    display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px;
  }
  .info-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
  .info-text { font-size: 0.9rem; color: var(--gray-light); line-height: 1.5; }
  .info-text a { color: var(--yellow); text-decoration: none; }
  .map-placeholder {
    background: var(--anthracite-mid); border: 1px solid var(--border);
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    min-height: 320px; text-align: center; overflow: hidden;
  }
  .map-placeholder iframe {
    width: 100%; min-height: 260px; border: 0;
  }
  .map-placeholder .map-content {
    padding: 24px; display: flex; flex-direction: column; align-items: center; gap: 16px;
  }
  .map-icon { font-size: 3rem; }
  .map-address {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--yellow);
  }
  .horaires-table { width: 100%; border-collapse: collapse; }
  .horaires-table td { padding: 8px 0; font-size: 0.88rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .horaires-table td:first-child { color: var(--gray-light); }
  .horaires-table td:last-child { text-align: right; font-weight: 600; }
  .ferme { color: var(--gray) !important; }

  /* ====== FOOTER ====== */
  footer {
    background: #111; border-top: 1px solid rgba(255,255,255,0.06);
    padding: 48px 0 24px;
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
  .footer-brand .nav-logo { font-size: 1.4rem; display: block; margin-bottom: 12px; }
  .footer-desc { font-size: 0.83rem; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
  .social-links { display: flex; gap: 10px; }
  .social-btn {
    width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; text-decoration: none; color: var(--gray-light);
    transition: border-color 0.2s, color 0.2s;
  }
  .social-btn:hover { border-color: var(--yellow); color: var(--yellow); }
  .footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--yellow); margin-bottom: 16px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 8px; }
  .footer-col a {
    color: var(--gray); text-decoration: none; font-size: 0.85rem;
    transition: color 0.2s; cursor: pointer;
  }
  .footer-col a:hover { color: var(--white); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  }
  .footer-bottom p { font-size: 0.78rem; color: var(--gray); }

  /* ====== CONTACT FAB (appel / SMS / WhatsApp) ====== */
  .contact-fab-stack,
  .float-vertical,
  .float-buttons-group {
    position: fixed;
    right: max(12px, env(safe-area-inset-right, 0px));
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
    pointer-events: none;
  }

  .contact-fab-stack > *,
  .float-vertical > *,
  .float-buttons-group > * {
    pointer-events: auto;
  }

  .contact-fab,
  .float-vertical a,
  .float-buttons-group .float-btn,
  .float-buttons-group a {
    position: relative;
    right: auto;
    bottom: auto;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 1.35rem;
    line-height: 1;
    flex-shrink: 0;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    -webkit-tap-highlight-color: transparent;
  }

  .contact-fab:hover,
  .float-vertical a:hover,
  .float-buttons-group a:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.42);
  }

  .contact-fab--call,
  .call-float { background: linear-gradient(135deg, #1877ff, #005eff); }
  .contact-fab--sms,
  .sms-float { display: none !important; }
  .contact-fab--wa,
  .wa-float,
  .wa-float-square { background: #25D366; }

  .float-vertical svg,
  .contact-fab svg { width: 26px; height: 26px; display: block; }

  @media (min-width: 768px) {
    .contact-fab,
    .float-vertical a,
    .float-buttons-group a { width: 58px; height: 58px; }
  }

  /* ====== SERVICE PAGE ====== */
  .service-detail {
    padding: 80px 0;
    background: var(--anthracite);
  }
  .service-hero-bar {
    background: var(--yellow); padding: 16px 24px;
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 48px;
  }
  .service-hero-bar h1, .service-hero-bar h2 {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
    font-size: 2rem; text-transform: uppercase; color: var(--anthracite);
  }
  .service-hero-bar span { font-size: 2rem; }
  .service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
  .service-detail-text h2 {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
    font-size: 1.8rem; text-transform: uppercase; margin-bottom: 20px;
  }
  .service-detail-text p { color: var(--gray-light); line-height: 1.8; margin-bottom: 16px; font-size: 0.93rem; }
  .service-list { list-style: none; margin: 20px 0; }
  .service-list li {
    padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.9rem; color: var(--gray-light); display: flex; align-items: center; gap: 10px;
  }
  .service-list li::before { content: '→'; color: var(--yellow); font-weight: 700; }

  /* ====== ARTICLE DETAIL ====== */
  .article-detail { padding: 80px 0; background: var(--anthracite); }
  .article-detail-hero {
    width: 100%; max-height: 420px; aspect-ratio: 16 / 9;
    object-fit: cover; object-position: center;
    border-radius: 18px; border: 1px solid var(--border);
    margin-bottom: 32px; display: block;
  }
  .article-detail .article-header { margin-bottom: 32px; }
  .article-detail h1, .article-detail h2 {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; line-height: 1.1;
    margin-bottom: 12px;
  }
  .article-content { max-width: 760px; }
  .article-content p { color: var(--gray-light); line-height: 1.9; margin-bottom: 20px; font-size: 0.95rem; }
  .article-content h2 {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
    font-size: 1.5rem; text-transform: uppercase; margin: 32px 0 12px; color: var(--yellow);
  }
  .article-content ul { margin: 0 0 20px 20px; }
  .article-content ul li { color: var(--gray-light); line-height: 1.8; font-size: 0.93rem; margin-bottom: 6px; }

  /* ====== RESPONSIVE ====== */
  @media (max-width: 900px) {
    .why-grid, .resa-wrapper, .contact-grid, .service-detail-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-links.open {
      display: flex; flex-direction: column;
      position: absolute; top: 45px; left: 0; width: 100%;
      background: var(--black);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding: 0; gap: 0;
    }
    .nav-links.open li { border-bottom: 1px solid rgba(255,255,255,0.1); }
    .nav-links.open li:last-child { border-bottom: none; }
    .nav-links.open a {
      padding: 14px 20px;
      min-height: 48px;
      display: flex;
      align-items: center;
      box-sizing: border-box;
      font-size: 1.1rem;
    }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { gap: 24px; }
  }
  @media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .form-box { padding: 24px 16px; }
    .container { padding: 0 16px; }
    section { padding: 48px 0; }
    .hero { padding: 72px 0 36px; }
    .hero-accent { display: none; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
      text-align: center;
      width: 100%;
      box-sizing: border-box;
    }
    .contact-channel-btns { flex-direction: column; }
    .contact-channel-btns a { min-width: 0; width: 100%; flex: none; }
  }

  /* ====== MOBILE PREMIUM — homepage conversion ====== */
  .nav-phone-mobile {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-dark);
    border: none;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: background 0.2s;
  }
  .nav-phone-mobile:active { background: var(--anthracite-light); }

  .mobile-cta-grid {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 14px 20px;
    max-width: 480px;
    margin: 0 auto;
    background: var(--black);
  }
  .mobile-cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 58px;
    height: 58px;
    padding: 8px 10px;
    border-radius: 12px;
    border: 2px solid #f5c400;
    background: var(--black);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    text-align: center;
    line-height: 1.15;
    box-shadow: none;
    transition: background 0.15s, border-color 0.15s;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-cta-btn:active {
    background: rgba(245, 196, 0, 0.08);
    border-color: var(--yellow-light);
  }
  .mobile-cta-icon { font-size: 1.45rem; line-height: 1; }
  .mobile-cta-call,
  .mobile-cta-wa,
  .mobile-cta-map,
  .mobile-cta-devis {
    background: var(--black);
    color: var(--white);
  }

  .mobile-services-principaux {
    display: none;
    padding: 20px 0;
    background: var(--black);
  }
  .mobile-section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.05rem;
    text-transform: uppercase;
    margin-bottom: 14px;
    line-height: 1.1;
    letter-spacing: 0.02em;
  }
  .mobile-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .mobile-service-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    min-height: 90px;
    max-height: none;
    height: auto;
    padding: 18px;
    background: var(--gray-dark);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    text-decoration: none;
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-align: left;
    line-height: 1.15;
    transition: background 0.2s, border-color 0.2s;
  }
  .mobile-service-card:active {
    background: var(--anthracite-light);
    border-color: rgba(245, 196, 0, 0.2);
  }
  .mobile-service-icon {
    font-size: 1.65rem;
    line-height: 1;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
  }
  .mobile-services-all {
    display: block;
    margin-top: 14px;
    padding: 14px;
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--yellow);
    text-decoration: none;
    border: 1px solid rgba(244,196,0,0.3);
    border-radius: 14px;
    transition: background 0.2s;
  }
  .mobile-services-all:active { background: rgba(244,196,0,0.08); }

  .home-hero-premium {
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
  }
  .hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      180deg,
      rgba(11,11,11,0.72) 0%,
      rgba(11,11,11,0.88) 45%,
      rgba(11,11,11,0.98) 100%
    );
    pointer-events: none;
  }

  .hero-trust {
    display: none;
  }
  .hero-stats-row {
    display: none;
    flex-wrap: wrap;
    gap: 6px 10px;
    margin: 6px 0 6px;
  }
  .hero-stat {
    font-size: 0.72rem;
    line-height: 1.25;
    color: var(--gray-light);
    white-space: nowrap;
  }

  .mobile-trust-bullets {
    display: none;
    list-style: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    padding: 0 20px 20px;
    max-width: 480px;
    margin: 0 auto;
    background: var(--black);
  }
  .mobile-trust-bullets li {
    font-size: 0.72rem;
    line-height: 1.35;
    color: var(--gray-light);
    padding-left: 16px;
    position: relative;
  }
  .mobile-trust-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: 700;
  }

  .mobile-garage-photos {
    display: none;
    padding: 4px 0 10px;
    background: var(--black);
  }
  .mobile-garage-photos .container {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .mobile-garage-photo {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    background: var(--gray-dark);
    border: 1px solid rgba(255,255,255,0.06);
  }
  .mobile-garage-photo img {
    width: 100%;
    height: 170px;
    min-height: 160px;
    max-height: 180px;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .mobile-garage-photo--diagnostic img { object-position: center 18%; }
  .mobile-garage-photo--pont img { object-position: center 12%; }
  .mobile-garage-photo--depannage img { object-position: center 55%; }
  .mobile-garage-photo figcaption {
    padding: 6px 10px;
    font-size: 0.65rem;
    color: var(--gray);
    text-align: center;
    line-height: 1.25;
  }

  .hero-trust-row {
    font-size: 0.78rem;
    line-height: 1.35;
    color: var(--gray-light);
    margin: 0;
  }
  .hero-trust-stars {
    color: var(--yellow);
    letter-spacing: 1px;
  }
  .hero-trust-google strong { color: var(--white); font-weight: 600; }
  .hero-local-seo {
    display: none;
    margin: 6px 0 0;
  }
  .hero-local-seo-short {
    font-size: 0.75rem;
    line-height: 1.35;
    color: var(--gray-light);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hero-local-seo-more {
    margin-top: 4px;
  }
  .hero-local-seo-more summary {
    list-style: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--yellow);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .hero-local-seo-more summary::-webkit-details-marker { display: none; }
  .hero-local-seo-more[open] summary { margin-bottom: 6px; }
  .hero-local-seo-more p {
    font-size: 0.68rem;
    line-height: 1.45;
    color: var(--gray);
    margin: 0;
  }

  /* Avis Google premium */
  .reviews-premium {
    padding: 48px 0;
    background: var(--gray-dark);
  }
  .reviews-summary {
    text-align: center;
    margin-bottom: 16px;
  }
  .reviews-stars {
    color: var(--yellow);
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 6px;
  }
  .reviews-score {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 4px;
  }
  .reviews-count {
    font-size: 0.82rem;
    color: var(--gray);
  }
  .reviews-carousel {
    position: relative;
    min-height: 110px;
    margin-bottom: 14px;
  }
  .reviews-slide {
    display: none;
    background: var(--black);
    border-radius: 14px;
    padding: 18px 16px;
    text-align: center;
  }
  .reviews-slide.is-active { display: block; }
  .reviews-quote {
    font-size: 0.88rem;
    color: var(--gray-light);
    line-height: 1.55;
    font-style: italic;
    margin-bottom: 10px;
  }
  .reviews-meta {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gray);
  }
  .reviews-all-link {
    display: block;
    text-align: center;
    padding: 12px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--yellow);
    text-decoration: none;
  }

  /* Sticky footer mobile */
  nav.mobile-sticky-bar,
  .mobile-sticky-bar {
    display: none;
    position: fixed;
    top: auto !important;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: auto !important;
    max-height: 65px;
    min-height: 0 !important;
    z-index: 9999;
    grid-template-columns: repeat(4, 1fr);
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 4px 4px calc(4px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
  }
  .sticky-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 6px 2px;
    min-height: 48px;
    max-height: 58px;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.58rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--gray-light);
    border-radius: 8px;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.15s;
  }
  .sticky-bar-item span:first-child { font-size: 1.15rem; line-height: 1; }
  .sticky-bar-item.sticky-bar-call,
  .sticky-bar-item.sticky-bar-call span { color: #ef4444; }
  .sticky-bar-item.sticky-bar-wa,
  .sticky-bar-item.sticky-bar-wa span { color: #25D366; }
  .sticky-bar-item.sticky-bar-map,
  .sticky-bar-item.sticky-bar-map span { color: #f97316; }
  .sticky-bar-item.sticky-bar-devis,
  .sticky-bar-item.sticky-bar-devis span { color: #f5c400; }
  .sticky-bar-call { background: rgba(239, 68, 68, 0.1); }
  .sticky-bar-wa { background: rgba(37, 211, 102, 0.1); }
  .sticky-bar-map { background: rgba(249, 115, 22, 0.1); }
  .sticky-bar-devis { background: rgba(245, 196, 0, 0.1); }
  .sticky-bar-call:active { background: rgba(239, 68, 68, 0.2); }
  .sticky-bar-wa:active { background: rgba(37, 211, 102, 0.2); }
  .sticky-bar-map:active { background: rgba(249, 115, 22, 0.2); }
  .sticky-bar-devis:active { background: rgba(245, 196, 0, 0.2); }

  /* CTA téléphone hero — mobile uniquement */
  .hero-mobile-callout { display: none; }
  .hero-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .hero-phone-icon { font-size: 1.25rem; line-height: 1; }
  .hero-availability {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--gray-light);
    line-height: 1.4;
  }
  .hero-call-now-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    padding: 14px 24px;
    background: var(--yellow);
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 20px rgba(244, 196, 0, 0.25);
    transition: background 0.2s, transform 0.15s;
    -webkit-tap-highlight-color: transparent;
  }
  .hero-call-now-btn:hover { color: var(--black); }
  .hero-call-now-btn:active {
    background: var(--yellow-light);
    transform: scale(0.98);
  }

  /* Bandeau urgence hero mobile */
  .hero-urgency-bar {
    display: none;
  }
  .hero-urgency-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    text-align: center;
    font-size: 0.6875rem;
    font-weight: 500;
    line-height: 1.25;
    color: var(--gray-light);
  }
  .hero-urgency-icon {
    font-size: 1.35rem;
    line-height: 1;
  }

  /* Badges villes hero */
  .hero-location-badges {
    display: none;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .hero-location-badges li {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    background: var(--gray-dark);
    border: 1px solid rgba(245, 196, 0, 0.28);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--white);
    white-space: nowrap;
  }
  .hero-local-seo-short { display: none; }

  @media (max-width: 900px) {
    .nav-phone-mobile { display: inline-flex; }
    .nav-inner {
      height: 45px;
      max-height: 45px;
      padding: 0 14px;
    }
    .nav-inner .btn-outline,
    .nav-inner .nav-tel { display: none; }
    .nav-logo { font-size: 1.28rem; }
    nav:not(.mobile-sticky-bar) { background: var(--black); border-bottom: none; }
    .hamburger span { background: var(--white); }
    .nav-links.open {
      top: 45px;
      background: var(--black);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    /* Accueil mobile toujours visible */
    #page-home.page.active {
      display: block !important;
      min-height: 0 !important;
    }
    #page-home #hero.home-hero-premium .hero-title,
    #page-home #hero.home-hero-premium .hero-sub,
    #page-home #hero.home-hero-premium .hero-badge {
      opacity: 1;
      visibility: visible;
    }

    .mobile-cta-grid { display: grid !important; }
    .mobile-trust-bullets { display: grid !important; }
    .mobile-services-principaux { display: block !important; }
    .mobile-garage-photos { display: block !important; }
    .reviews-premium { display: block !important; }
    .mobile-sticky-bar { display: grid !important; }

    #page-home { padding-top: 45px; }
    #page-home .container {
      max-width: 480px;
      padding-left: 20px;
      padding-right: 20px;
    }

    /* Hero mobile — colonne : image → texte → CTA (CTA hors section) */
    #page-home #hero.home-hero-premium {
      display: flex;
      flex-direction: column;
      min-height: 0;
      max-height: none;
      height: auto;
      padding: 0;
      margin: 0;
      position: relative;
      overflow: visible;
      background: var(--black);
    }
    #page-home #hero .hero-bg {
      position: relative;
      inset: auto;
      order: 1;
      width: 100%;
      height: 160px;
      flex-shrink: 0;
    }
    #page-home #hero .hero-bg-overlay { display: none; }
    #page-home #hero .hero-content {
      order: 2;
      position: relative;
      z-index: 2;
      padding: 20px 0 18px;
      width: 100%;
      background: var(--black);
    }
    #page-home #hero .hero-bg img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      object-position: center 50%;
    }
    #page-home #hero .hero-stats-row {
      display: flex;
    }
    #page-home #hero .hero-local-seo {
      display: block;
    }
    #page-home #hero .hero-grid,
    #page-home #hero .hero-accent { display: none; }
    #page-home #hero .hero-badge {
      margin-bottom: 12px;
      padding: 0;
      background: none;
      border: none;
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      color: var(--yellow);
    }
    #page-home #hero .hero-badge::before { display: none; }
    #page-home #hero .hero-title {
      font-size: 1.75rem;
      line-height: 1.2;
      margin-bottom: 0;
      max-width: 17.5rem;
      color: var(--white);
      text-transform: none;
      letter-spacing: -0.01em;
    }
    #page-home #hero .hero-title-city {
      white-space: nowrap;
    }
    #page-home #hero .hero-title br { display: inline; }
    #page-home #hero .hero-title em { display: none; }
    #page-home #hero .hero-mobile-callout {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin: 14px 0 0;
    }
    #page-home #hero .hero-urgency-bar {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
      margin: 16px 0 18px;
      padding: 14px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    #page-home #hero .hero-sub {
      font-size: 1rem;
      line-height: 1.5;
      margin-bottom: 12px;
      color: var(--gray-light);
      display: block;
      -webkit-line-clamp: unset;
      overflow: visible;
    }
    #page-home #hero .hero-location-badges {
      display: flex;
    }
    #page-home #hero .hero-local-seo-more summary {
      font-size: 0.72rem;
      color: var(--gray);
      padding: 8px 0 0;
    }
    #page-home #hero .hero-stats-row {
      margin: 8px 0 0;
      gap: 6px 12px;
    }
    #page-home #hero .hero-stat {
      font-size: 0.8125rem;
    }
    #page-home #hero .hero-local-seo {
      margin-top: 6px;
    }
    #page-home #hero .hero-local-seo details summary {
      font-size: 0.68rem;
      padding: 4px 0;
    }

    /* Espacement sections accueil mobile */
    .mobile-cta-grid {
      padding: 20px 20px 24px;
      gap: 12px;
    }
    .mobile-trust-bullets {
      padding: 0 20px 24px;
    }
    .mobile-services-principaux {
      padding: 28px 0 32px;
    }
    .mobile-garage-photos {
      padding: 8px 0 32px;
    }
    .reviews-premium {
      padding: 36px 0 44px;
    }

    #page-home #hero .seo-text,
    #page-home #hero .hero-actions,
    #page-home #hero .hero-stats { display: none; }

    /* Masquer le contenu SEO long sur mobile accueil */
    #page-home #seo-services-hub,
    #page-home #premium-marques,
    #page-home #seo-local-authority,
    #page-home #local-seo,
    #page-home #expertises-moteur,
    #page-home #atelier-galerie,
    #page-home #symptomes-pannes-section,
    #page-home #depannage-section,
    #page-home #faq-section,
    #page-home #services-section,
    #page-home #why,
    #page-home #articles-section,
    #page-home #page-services,
    #page-home #page-service-detail,
    #page-home #page-reservation,
    #page-home #reservation-section,
    #page-home #page-articles,
    #page-home #page-article-detail,
    #page-home #page-contact,
    #page-home #contact-page {
      display: none !important;
    }

    /* FAB flottant → remplacé par sticky bar */
    .contact-fab-stack { display: none !important; }

    /* Pages SPA hors accueil — barre sticky mobile */
    .page.active:not(#page-home) {
      display: block !important;
      opacity: 1 !important;
      visibility: visible !important;
      min-height: 100vh;
      padding-top: 45px;
    }
    #page-reservation .resa-wrapper {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    #page-reservation [style*="padding-top:64px"] {
      padding-top: 0 !important;
    }

    body {
      padding-bottom: calc(65px + env(safe-area-inset-bottom, 0px));
      background: var(--black);
    }

    /* Footer compact mobile */
    footer {
      padding: 20px 0 calc(20px + env(safe-area-inset-bottom, 0px));
      background: var(--black);
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    footer .footer-grid {
      grid-template-columns: 1fr;
      gap: 0;
      margin-bottom: 16px;
    }
    footer .footer-col { display: none; }
    footer .footer-brand .footer-desc { display: none; }
    footer .social-links { margin-top: 8px; }
    footer .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 8px;
      padding-top: 12px;
    }
    section { padding: 20px 0; }
  }

  @media (max-width: 380px) {
    .mobile-cta-btn { min-height: 56px; height: 56px; font-size: 0.72rem; }
    .mobile-cta-icon { font-size: 1.35rem; }
    .sticky-bar-item { font-size: 0.52rem; }
    #page-home #hero .hero-title { font-size: 1.625rem; max-width: 16rem; }
  }

  /* ====== DESKTOP — reset padding mobile sticky bar ====== */
  @media (min-width: 901px) {
    body { padding-bottom: 0 !important; }
  }

  /* Legacy mobile classes — masquées */
  .mobile-quick-nav,
  .mobile-cta-bar { display: none !important; }

  /* Fallback iframe / preview : classe mobile-view (innerWidth ≤ 900) */
  html.mobile-view .mobile-cta-grid { display: grid !important; }
  html.mobile-view .mobile-trust-bullets { display: grid !important; }
  html.mobile-view .mobile-services-principaux { display: block !important; }
  html.mobile-view .mobile-garage-photos { display: block !important; }
  html.mobile-view .reviews-premium { display: block !important; }
  html.mobile-view .mobile-sticky-bar { display: grid !important; }
  html.mobile-view .contact-fab-stack { display: none !important; }
  html.mobile-view .nav-phone-mobile { display: inline-flex !important; }
  html.mobile-view .nav-links { display: none !important; }
  html.mobile-view .hamburger { display: flex !important; }
  html.mobile-view .nav-inner { height: 45px; max-height: 45px; padding: 0 14px; max-width: 100%; }
  html.mobile-view .nav-inner .btn-outline,
  html.mobile-view .nav-inner .nav-tel { display: none !important; }
  html.mobile-view .hero-accent,
  html.mobile-view .hero-grid { display: none !important; }
  html.mobile-view #page-home { padding-top: 45px; }
  html.mobile-view #page-home.page.active { display: block !important; }
  html.mobile-view #page-home #hero.home-hero-premium {
    display: flex !important;
    flex-direction: column !important;
    min-height: 0;
    max-height: none;
    height: auto;
    padding: 0;
    position: relative;
    overflow: visible;
    background: var(--black);
  }
  html.mobile-view #page-home #hero .hero-bg {
    position: relative;
    inset: auto;
    order: 1;
    width: 100%;
    height: 160px;
    flex-shrink: 0;
  }
  html.mobile-view #page-home #hero .hero-bg-overlay { display: none; }
  html.mobile-view #page-home #hero .hero-grid,
  html.mobile-view #page-home #hero .hero-accent { display: none; }
  html.mobile-view #page-home #hero .hero-content {
    order: 2;
    position: relative;
    z-index: 2;
    padding: 20px 0 18px;
    background: var(--black);
  }
  html.mobile-view #page-home #hero .hero-bg img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    object-position: center 40%;
  }
  html.mobile-view #page-home #hero .hero-stats-row {
    display: flex;
  }
  html.mobile-view #page-home #hero .hero-local-seo { display: block; }
  html.mobile-view #page-home #hero .hero-badge::before { display: none; }
  html.mobile-view #page-home #hero .hero-badge {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.72rem;
    color: var(--yellow);
  }
  html.mobile-view #page-home #hero .hero-title {
    font-size: 1.75rem;
    line-height: 1.2;
    max-width: 17.5rem;
    color: var(--white);
    text-transform: none;
  }
  html.mobile-view #page-home #hero .hero-title-city {
    white-space: nowrap;
  }
  html.mobile-view #page-home #hero .hero-urgency-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  html.mobile-view #page-home #hero .hero-location-badges {
    display: flex;
  }
  html.mobile-view #page-home #hero .hero-mobile-callout {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 14px 0 18px;
  }
  html.mobile-view #page-home #hero .hero-sub {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--gray-light);
    display: block;
    overflow: visible;
  }
  html.mobile-view #page-home #hero .seo-text,
  html.mobile-view #page-home #hero .hero-actions,
  html.mobile-view #page-home #hero .hero-stats { display: none !important; }
  html.mobile-view #page-home #seo-services-hub,
  html.mobile-view #page-home #premium-marques,
  html.mobile-view #page-home #seo-local-authority,
  html.mobile-view #page-home #local-seo,
  html.mobile-view #page-home #expertises-moteur,
  html.mobile-view #page-home #atelier-galerie,
  html.mobile-view #page-home #symptomes-pannes-section,
  html.mobile-view #page-home #depannage-section,
  html.mobile-view #page-home #faq-section,
  html.mobile-view #page-home #services-section,
  html.mobile-view #page-home #why,
  html.mobile-view #page-home #articles-section,
  html.mobile-view #page-home #page-services,
  html.mobile-view #page-home #page-service-detail,
  html.mobile-view #page-home #page-reservation,
  html.mobile-view #page-home #reservation-section,
  html.mobile-view #page-home #page-articles,
  html.mobile-view #page-home #page-article-detail,
  html.mobile-view #page-home #page-contact,
  html.mobile-view #page-home #contact-page { display: none !important; }
  html.mobile-view body { padding-bottom: calc(65px + env(safe-area-inset-bottom, 0px)); }

  /* Mode aperçu iframe (mobile-preview.html) */
  html.preview-mobile,
  html.preview-mobile body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    background: var(--black) !important;
    margin: 0;
    opacity: 1 !important;
    visibility: visible !important;
  }
  html.preview-mobile main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  html.preview-mobile #page-home.page.active {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    min-height: 0 !important;
    padding-top: 45px !important;
  }
  html.preview-mobile .page.active:not(#page-home),
  html.mobile-view .page.active:not(#page-home) {
    padding-top: 45px !important;
    min-height: 100vh;
  }
  html.preview-mobile #page-home #hero,
  html.preview-mobile #page-home #hero.home-hero-premium,
  html.mobile-view #page-home #hero,
  html.mobile-view #page-home #hero.home-hero-premium {
    min-height: 0 !important;
    max-height: none !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    overflow: visible !important;
    background: var(--black) !important;
  }
  html.preview-mobile #page-home #hero .hero-bg,
  html.mobile-view #page-home #hero .hero-bg {
    position: relative !important;
    inset: auto !important;
    order: 1 !important;
    width: 100% !important;
    height: 160px !important;
    flex-shrink: 0 !important;
  }
  html.preview-mobile #page-home #hero .hero-bg-overlay,
  html.mobile-view #page-home #hero .hero-bg-overlay {
    display: none !important;
  }
  html.preview-mobile #page-home #hero .hero-content,
  html.mobile-view #page-home #hero .hero-content {
    order: 2 !important;
    background: var(--black) !important;
  }
  html.preview-mobile #page-home #hero .hero-bg img,
  html.mobile-view #page-home #hero .hero-bg img {
    width: 100% !important;
    height: 160px !important;
    object-fit: cover !important;
    object-position: center 40% !important;
  }
  html.preview-mobile #page-home #hero .hero-title,
  html.preview-mobile #page-home #hero .hero-badge,
  html.preview-mobile #page-home #hero .hero-sub,
  html.mobile-view #page-home #hero .hero-title,
  html.mobile-view #page-home #hero .hero-badge,
  html.mobile-view #page-home #hero .hero-sub {
    opacity: 1 !important;
    visibility: visible !important;
    color: #f5f5f0 !important;
  }
  html.preview-mobile #page-home #hero .hero-badge,
  html.mobile-view #page-home #hero .hero-badge { color: #F4C400 !important; }
  html.preview-mobile #page-home #hero .hero-sub,
  html.mobile-view #page-home #hero .hero-sub { color: #bbb !important; }
  html.preview-mobile nav,
  html.mobile-view nav {
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
  }
  html.preview-mobile .nav-links,
  html.mobile-view .nav-links { display: none !important; }
  html.preview-mobile .hamburger,
  html.mobile-view .hamburger { display: flex !important; }
  html.preview-mobile .hero-accent,
  html.preview-mobile .hero-grid {
    display: none !important;
  }
  html.preview-mobile img,
  html.preview-mobile video,
  html.preview-mobile iframe,
  html.preview-mobile svg {
    max-width: 100%;
  }
  html.preview-mobile .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  html.preview-mobile .mobile-cta-grid { display: grid !important; }
  html.preview-mobile .mobile-trust-bullets { display: grid !important; }
  html.preview-mobile .mobile-services-principaux { display: block !important; }
  html.preview-mobile .mobile-garage-photos { display: block !important; }
  html.preview-mobile .reviews-premium { display: block !important; }
  html.preview-mobile .mobile-sticky-bar { display: grid !important; }
  html.preview-mobile .contact-fab-stack { display: none !important; }
  html.preview-mobile #page-home #hero.home-hero-premium {
    min-height: 0;
    max-height: 350px;
    display: block;
    position: relative;
    padding: 0;
    overflow: hidden;
  }
  html.preview-mobile #page-home #hero .hero-stats-row,
  html.preview-mobile #page-home #hero .hero-local-seo { display: block; }
  html.preview-mobile #page-home #hero .hero-stats-row {
    display: flex;
  }
  html.preview-mobile #page-home #hero .hero-content {
    position: relative;
    z-index: 2;
    padding: 16px 0 12px;
  }
  html.preview-mobile #page-home #hero .seo-text,
  html.preview-mobile #page-home #hero .hero-actions,
  html.preview-mobile #page-home #hero .hero-stats { display: none !important; }
  html.preview-mobile #page-home #seo-services-hub,
  html.preview-mobile #page-home #premium-marques,
  html.preview-mobile #page-home #seo-local-authority,
  html.preview-mobile #page-home #local-seo,
  html.preview-mobile #page-home #expertises-moteur,
  html.preview-mobile #page-home #atelier-galerie,
  html.preview-mobile #page-home #symptomes-pannes-section,
  html.preview-mobile #page-home #depannage-section,
  html.preview-mobile #page-home #faq-section,
  html.preview-mobile #page-home #services-section,
  html.preview-mobile #page-home #why,
  html.preview-mobile #page-home #articles-section { display: none !important; }

  /* back btn */
  .back-btn {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--yellow); font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600; font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase;
    cursor: pointer; background: none; border: none; margin-bottom: 24px;
    transition: gap 0.2s;
  }
  .back-btn:hover { gap: 12px; }

  /* ====== SEO / STANDALONE PAGES ====== */
  .hero {
    padding: 88px 0 48px;
    background: var(--anthracite);
  }
  .hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 16px;
  }
  .hero p {
    color: var(--gray-light);
    line-height: 1.7;
    max-width: 720px;
    margin-bottom: 24px;
  }
  .content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
  }
  .card {
    background: var(--anthracite-mid);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 24px;
  }
  .card h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: var(--yellow);
  }
  .card p, .card li { color: var(--gray-light); line-height: 1.7; font-size: 0.94rem; }
  .card ul { margin: 12px 0 0 18px; }
  .internal-links {
    display: flex; flex-wrap: wrap; gap: 12px;
  }
  .internal-links a {
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.82rem;
  }
  .footer-inner {
    display: flex; flex-wrap: wrap; justify-content: space-between;
    align-items: center; gap: 16px;
  }
  .footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
  .footer-links a { font-size: 0.82rem; color: var(--gray); }

  .work-photo {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    max-height: min(52vw, 440px);
    border-radius: 14px;
    border: 1px solid var(--border);
    object-fit: cover;
  }
  .container > .work-photo { margin-top: 0; }
  .content-grid > .work-photo,
  .content-grid > .work-photo-sm {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .work-photos-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 24px;
  }
  @media (max-width: 900px) {
    .content-grid,
    .work-photos-row { grid-template-columns: 1fr; }
  }

  .service-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 18px;
    display: block;
    /* Préserve l'espace d'image pour réduire le layout shift */
    aspect-ratio: 2 / 1;
  }

  .service-detail-hero-img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 32px;
    display: block;
    aspect-ratio: 2 / 1;
  }

  /* ====== ATELIER GALLERY ====== */
  .photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin-top: 32px;
    width: 100%;
    max-width: 100%;
  }
  .photo-gallery figure {
    margin: 0;
    min-width: 0;
  }
  .photo-gallery img {
    width: 100%;
    aspect-ratio: 3 / 4;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: transform .2s;
    display: block;
  }
  .photo-gallery a:hover img { transform: scale(1.02); }
  .photo-gallery figcaption {
    font-size: 0.78rem;
    color: var(--gray);
    margin-top: 8px;
    line-height: 1.4;
  }

  /* Contact blocks (index) */
  .contact-channels { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
  .contact-channel {
    display: flex; flex-direction: column; gap: 4px;
    padding: 14px 16px; border: 1px solid var(--border);
    background: var(--anthracite-mid); text-decoration: none; color: inherit;
    transition: border-color 0.2s, background 0.2s;
  }
  .contact-channel:hover { border-color: var(--yellow); background: rgba(245,196,0,0.06); }
  .contact-channel-label {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--gray);
  }
  .contact-channel-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem; font-weight: 700; color: var(--white);
  }
  .contact-channel-tel .contact-channel-value { color: var(--yellow); }
  .contact-channel-sms .contact-channel-value { color: #a78bfa; }
  .contact-channel-wa .contact-channel-value { color: #25D366; }
  .contact-channel-btns { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }
  .contact-channel-btns a { flex: 1; min-width: 120px; text-align: center; }
  .contact-btn-sms {
    background: linear-gradient(145deg, #5b21b6, #7c3aed);
    border-color: #7c3aed; color: #fff;
  }
  .contact-btn-sms:hover { filter: brightness(1.08); }
  .contact-btn-wa { background: #25D366; border-color: #25D366; color: #fff; }
  .contact-btn-wa:hover { filter: brightness(1.08); }
  .skip-link {
    position: absolute; left: -9999px; top: auto; width: 1px; height: 1px;
    overflow: hidden; z-index: 10000;
  }
  .skip-link:focus {
    left: 16px; top: 16px; width: auto; height: auto;
    padding: 12px 16px; background: var(--yellow); color: var(--anthracite);
    font-weight: 600; text-decoration: none; border-radius: 4px;
  }
