/* Polices auto-hébergées (Sora + Inter, variables, latin + latin-ext) */
@font-face{font-family:'Sora';font-style:normal;font-weight:100 900;font-display:swap;src:url('../fonts/sora-latin.woff2') format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD}
@font-face{font-family:'Sora';font-style:normal;font-weight:100 900;font-display:swap;src:url('../fonts/sora-latin-ext.woff2') format('woff2');unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF}
@font-face{font-family:'Inter';font-style:normal;font-weight:100 900;font-display:swap;src:url('../fonts/inter-latin.woff2') format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD}
@font-face{font-family:'Inter';font-style:normal;font-weight:100 900;font-display:swap;src:url('../fonts/inter-latin-ext.woff2') format('woff2');unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF}

/* ============================================
   Le dépanneur IDF - Styles du site
   Plombier & serrurier à Courbevoie (92)
   ============================================ */

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

:root {
  /* Bleu profond (confiance, eau, sécurité) */
  --primary: #0b3d91;
  --primary-dark: #082b6b;
  --primary-bright: #2563eb;   /* liens vifs sur fond clair */
  --primary-light: #e6eefa;    /* tint clair = fonds de badges/icônes */
  --primary-lighter: #f2f6fc;  /* tint très clair = fonds de sections */
  --navy: #0a2540;             /* header/footer/héros sombres */
  --navy-light: #14365c;
  /* Accent urgence — réservé au CTA "Appeler" */
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --accent-contrast: #0a2540;  /* texte navy sur fond ambre (7,2:1) */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --success: #16a34a;
  --gold: #f6bb05;
  --red: #ef4444;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 40px rgba(11,61,145,0.15);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  /* Premium v3 */
  --font-display: 'Sora', 'Inter', system-ui, sans-serif;
  --shadow-brand: 0 24px 50px -16px rgba(11,61,145,0.42);
  --shadow-card: 0 1px 2px rgba(16,24,40,0.04), 0 16px 32px -14px rgba(13,32,64,0.18);
  --shadow-soft: 0 10px 30px -10px rgba(13,32,64,0.12);
  --ring: 0 0 0 4px rgba(37,99,235,0.16);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-900);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; color: var(--gray-900); }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px; border: none; border-radius: 50px; font-size: 1rem;
  font-weight: 700; cursor: pointer; transition: var(--transition);
}
.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 4px 14px rgba(44,115,255,0.35); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(44,115,255,0.45); }
.btn-white { background: var(--white); color: var(--primary); font-weight: 800; box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-outline-primary { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: var(--white); }
.btn-phone { background: var(--primary); color: var(--white); font-size: 1.1rem; padding: 16px 36px; box-shadow: 0 4px 14px rgba(44,115,255,0.35); }
.btn-phone:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-full { width: 100%; }
.btn svg { width: 18px; height: 18px; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white); height: 70px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06); transition: var(--transition);
}
.header .container, .header-inner {
  display: flex; align-items: center; justify-content: space-between; height: 70px;
}
.header-logo img, .logo img { height: 52px; width: auto; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: flex; align-items: center; gap: 8px; color: var(--gray-900);
  font-weight: 800; font-size: 1.05rem; padding: 10px 20px; border-radius: 50px;
  border: 2px solid var(--gray-900); transition: var(--transition);
}
.header-phone:hover { background: var(--gray-100); }
.header-phone svg { width: 18px; height: 18px; }
.header-btn, .btn-header {
  background: var(--primary); color: var(--white); padding: 10px 24px;
  border-radius: 50px; font-weight: 700; font-size: 0.9rem; transition: var(--transition);
  box-shadow: 0 4px 14px rgba(44,115,255,0.3);
}
.header-btn:hover, .btn-header:hover { background: var(--primary-dark); }

/* ============================================
   HERO — Style Alain Couverture
   ============================================ */
.hero {
  padding: 130px 0 60px;
  background: linear-gradient(to right, rgba(15,27,45,0.82) 0%, rgba(15,27,45,0.65) 100%),
    url('../images/plombier-serrurier-courbevoie-depannage-24h.webp') center/cover no-repeat;
  color: var(--white); position: relative; overflow: hidden; min-height: 550px;
}
.hero .container {
  position: relative; z-index: 1; display: grid;
  grid-template-columns: 1fr 420px; gap: 48px; align-items: center;
}
.hero-content h1 { font-size: 2.6rem; margin-bottom: 16px; line-height: 1.1; color: var(--white); }
.hero-content h1 span { color: var(--primary); }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 24px; line-height: 1.6; }

/* Google badge in hero — single line like Alain Couverture */
.hero-google-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); padding: 12px 20px; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); color: var(--gray-900); font-weight: 700; font-size: 0.9rem;
  margin-top: 12px;
}
.hero-google-badge .badge-label { font-weight: 800; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; }
.hero-google-badge .stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; line-height: 1; }
.hero-google-badge .badge-count { font-size: 0.85rem; color: var(--gray-500); font-weight: 600; }
.hero-google-badge .google-logo-img { height: 22px; width: auto; }

/* Hero Form — Style Alain Couverture */
.hero-form-wrapper {
  background: var(--white); border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-form-header {
  background: var(--primary); padding: 24px 28px; text-align: center; color: var(--white);
}
.hero-form-header .hero-form-title { color: var(--white); font-size: 1.3rem; font-weight: 700; margin: 0 0 4px; text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.2; }
.hero-form-header .stars,
.hero-form-stars { display: block; margin-top: 6px; font-size: 1.2rem; letter-spacing: 3px; color: var(--gold); }
.hero-form-offer {
  display: inline-block; margin-top: 10px; background: rgba(0,0,0,0.15);
  padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 600;
}
.hero-form-offer s { opacity: 0.7; }
.hero-form-body { padding: 28px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--gray-700); margin-bottom: 5px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; border: 2px solid var(--gray-200);
  border-radius: var(--radius); font-size: 1rem; font-family: inherit;
  transition: var(--transition); background: var(--gray-50);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(44,115,255,0.1); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit { margin-top: 8px; }
.form-legal { font-size: 0.75rem; color: var(--gray-500); margin-top: 10px; text-align: center; }
.form-sub { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 20px; }

/* ============================================
   GOOGLE REVIEWS SECTION — Style Alain Couverture
   ============================================ */
/* --- Google Reviews Section --- */
.google-reviews-section { padding: 50px 0 40px; background: var(--white); }

/* Header — tight spacing like Alain Couverture */
.google-reviews-header {
  text-align: center; margin-bottom: 28px;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.google-reviews-header h2 {
  font-size: 1.6rem; margin-bottom: 2px; text-transform: uppercase;
  letter-spacing: 2px; font-weight: 900; color: var(--gray-900);
}
.google-reviews-header .stars {
  font-size: 2rem; color: var(--gold); letter-spacing: 4px;
  margin: 4px 0 6px; line-height: 1.2;
}
.google-reviews-header .review-count {
  color: var(--gray-500); font-size: 0.9rem; margin-bottom: 6px;
}
.google-reviews-header .review-count strong { color: var(--gray-900); font-weight: 800; }
.google-reviews-header .google-logo-img { height: 32px; }

/* Carousel */
.reviews-carousel-wrapper { position: relative; }
.reviews-carousel {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 4px 2px 12px;
  cursor: grab;
}
.reviews-carousel:active { cursor: grabbing; }
.reviews-carousel::-webkit-scrollbar { display: none; }

/* Review Card — premium quality */
.review-card {
  flex: 0 0 270px; min-width: 270px; scroll-snap-align: start;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 20px; transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); border-color: var(--gray-300); }

/* Card header: avatar + name/date + G icon */
.review-card-header {
  display: flex; align-items: center; margin-bottom: 10px;
}
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.78rem; letter-spacing: 0.5px;
  text-transform: uppercase; user-select: none;
}
.review-meta { flex: 1; margin-left: 10px; }
.review-name { font-weight: 700; font-size: 0.88rem; color: var(--gray-900); line-height: 1.2; }
.review-date { font-size: 0.7rem; color: var(--gray-500); font-weight: 400; line-height: 1.3; }
.review-google-icon { flex-shrink: 0; margin-left: 8px; }
.review-google-icon img { width: 18px; height: 18px; display: block; }

/* Stars + verified */
.review-stars {
  color: var(--gold); font-size: 0.85rem; letter-spacing: 1px; margin-bottom: 8px;
  display: flex; align-items: center; gap: 2px;
}
.review-stars .verified-check,
.review-stars .verified { margin-left: 3px; }

/* Review text */
.review-text {
  color: var(--gray-600); font-size: 0.84rem; line-height: 1.55; margin-bottom: 0;
}

/* CTA under reviews */
.reviews-cta { display: flex; justify-content: center; gap: 16px; margin-top: 28px; flex-wrap: wrap; }

/* ============================================
   SERVICES — Full Illustration Cards
   ============================================ */
.services-section { padding: 70px 0; background: var(--white); }
.services-section .section-title h2 span { color: var(--primary); }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}

.service-block {
  position: relative; display: block; border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 4/5; text-decoration: none;
  transition: var(--transition);
}
.service-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15,27,45,0.2);
}

.service-block-illus {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
.service-block-illus img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.service-block:hover .service-block-illus img { transform: scale(1.05); }

/* Gradient overlay bottom for text */
.service-block::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 55%; z-index: 1;
  background: linear-gradient(to top, rgba(10,20,40,0.9) 0%, rgba(10,20,40,0.5) 50%, transparent 100%);
  pointer-events: none;
}

.service-block-content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 22px;
}
.service-block-content h3 {
  font-size: 1.15rem; font-weight: 800; color: var(--white); margin: 0 0 4px;
  line-height: 1.2;
}
.service-block-content p {
  font-size: 0.8rem; color: rgba(255,255,255,0.7); margin: 0;
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .service-block { aspect-ratio: 3/4; }
  .service-block-content { padding: 16px; }
  .service-block-content h3 { font-size: 1rem; }
  .service-block-content p { font-size: 0.75rem; }
}

@media (max-width: 480px) {
  .services-grid { gap: 10px; }
  .service-block-content { padding: 14px; }
  .service-block-content h3 { font-size: 0.9rem; }
}

/* ============================================
   ABOUT / QUI SOMMES-NOUS
   ============================================ */
.about-section { padding: 70px 0; background: var(--gray-50); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.about-image { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.about-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-image-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--primary); color: var(--white); padding: 10px 20px;
  border-radius: var(--radius); font-weight: 800; font-size: 0.85rem;
  box-shadow: var(--shadow-md);
}
.about-content { }
.about-content .about-tag {
  display: inline-block; background: var(--primary-light); color: var(--primary);
  padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.about-content h2 { font-size: 1.8rem; margin-bottom: 16px; line-height: 1.2; }
.about-content h2 span { color: var(--primary); }
.about-content p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; margin-bottom: 14px; }
.about-highlights {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px;
}
.about-highlight {
  display: flex; align-items: center; gap: 10px; padding: 12px 16px;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.about-highlight svg { width: 20px; height: 20px; fill: var(--primary); flex-shrink: 0; }
.about-highlight span { font-weight: 700; font-size: 0.88rem; color: var(--gray-900); }

@media (max-width: 968px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-width: 500px; margin: 0 auto; }
  .about-highlights { grid-template-columns: 1fr; }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar { padding: 40px 0; background: var(--navy); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item .stat-number { font-size: 2.2rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 6px; }
.stat-item .stat-number span { color: var(--primary); }
.stat-item .stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.6); }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar { background: var(--white); padding: 28px 0; border-bottom: 1px solid var(--gray-200); }
.trust-bar .container { display: flex; justify-content: center; flex-wrap: wrap; gap: 32px; }
.trust-item { display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--gray-900); font-size: 0.95rem; }
.trust-item .icon {
  width: 48px; height: 48px; background: var(--primary-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-item .icon svg { width: 22px; height: 22px; fill: var(--primary); stroke: var(--primary); }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 70px 0; }
.section-alt { background: var(--gray-50); }
.section-blue { background: var(--primary-light); }
.section-dark { background: var(--navy); color: var(--white); }

.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { margin-bottom: 12px; }
.section-title .accent-bar { display: flex; justify-content: center; gap: 4px; margin-bottom: 16px; }
.section-title .accent-bar span { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }
.section-title .accent-bar span:nth-child(2) { width: 40px; border-radius: 4px; }
.section-title p { color: var(--gray-500); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.section-dark .section-title h2 { color: var(--white); }
.section-dark .section-title p { color: rgba(255,255,255,0.7); }
.section-title .accent-line { width: 50px; height: 3px; background: var(--primary); margin: 12px auto 0; border-radius: 2px; }

/* ============================================
   TRUST LOGOS — Infinite Scroll Carousel
   ============================================ */
.trust-section { padding: 50px 0; background: var(--gray-50); overflow: hidden; }
.trust-section .section-title { margin-bottom: 32px; }
.trust-section .section-title h2 span { color: var(--primary); }

.trust-carousel {
  display: flex; align-items: center; gap: 48px;
  animation: scrollLogos 12s linear infinite;
  width: max-content;
  pointer-events: none;
  -webkit-user-select: none; user-select: none;
  will-change: transform;
}

.trust-carousel img {
  height: 40px; width: auto; opacity: 0.7;
  flex-shrink: 0; -webkit-user-drag: none; draggable: false;
  pointer-events: none;
}

@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Legacy fallback */
.trust-logos { display: flex; justify-content: center; flex-wrap: wrap; align-items: center; gap: 40px; }
.trust-logos img { height: 40px; opacity: 0.6; filter: grayscale(100%); transition: var(--transition); }
.trust-logos img:hover { opacity: 1; filter: none; }

/* ============================================
   PROCESS SECTION — Timeline style concurrent
   ============================================ */
.process-section { padding: 70px 0; background: var(--gray-50); }
.process-section .section-title h2 span { color: var(--primary); }

.process-timeline {
  display: flex; align-items: flex-start; justify-content: center;
  position: relative; padding: 0 10px;
}

/* Horizontal track line */
.process-track {
  position: absolute; top: 130px; left: 8%; right: 8%;
  height: 6px; background: var(--primary); border-radius: 3px; z-index: 0;
}

.process-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  flex: 1; position: relative; z-index: 1; padding: 0 8px;
}

/* Arrow between steps — hidden on desktop */
.process-arrow { display: none; }

.process-icon {
  width: 80px; height: 80px; background: var(--primary-light);
  border-radius: var(--radius-lg); display: flex; align-items: center;
  justify-content: center; margin-bottom: 12px;
  border: 2px solid var(--primary);
  transition: var(--transition);
}
.process-step:hover .process-icon {
  background: var(--primary); transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(44,115,255,0.25);
}
.process-icon svg {
  width: 36px; height: 36px; stroke: var(--primary); transition: var(--transition);
}
.process-step:hover .process-icon svg { stroke: var(--white); }

.process-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 800; margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.process-step h4 {
  font-size: 0.88rem; font-weight: 500; color: var(--gray-700); line-height: 1.4;
}
.process-step h4 strong { font-weight: 800; color: var(--gray-900); }

@media (max-width: 768px) {
  .process-timeline { flex-wrap: wrap; justify-content: center; gap: 6px 12px; }
  .process-track { display: none; }
  .process-step { flex: 0 0 calc(33.33% - 12px); }
  .process-icon { width: 56px; height: 56px; }
  .process-icon svg { width: 24px; height: 24px; }
  .process-num { width: 24px; height: 24px; font-size: 0.7rem; margin-bottom: 8px; }
  .process-step h4 { font-size: 0.72rem; }

  .process-arrow {
    display: block; flex: 0 0 100%; height: 24px;
    text-align: center; line-height: 24px;
  }
  .process-arrow svg {
    width: 60px; height: 24px; stroke: var(--primary); fill: none;
    stroke-width: 2; opacity: 0.4;
  }
}

@media (max-width: 380px) {
  .process-step { flex: 0 0 calc(33.33% - 8px); }
  .process-icon { width: 48px; height: 48px; }
  .process-icon svg { width: 20px; height: 20px; }
  .process-step h4 { font-size: 0.68rem; }
}

@media (max-width: 480px) {
  .process-step { flex: 0 0 calc(33.33% - 8px); padding: 0 4px; }
  .process-icon { width: 52px; height: 52px; }
  .process-icon svg { width: 24px; height: 24px; }
}

/* ============================================
   PRICING
   ============================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px;
  text-align: center; box-shadow: var(--shadow-sm); border: 2px solid var(--gray-200);
  transition: var(--transition); position: relative;
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pricing-card.featured { border-color: var(--primary); box-shadow: var(--shadow-md); transform: scale(1.03); }
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-card.featured::before {
  content: 'Le + demandé'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: var(--white); padding: 5px 20px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700; white-space: nowrap;
}
.pricing-card .pricing-icon {
  width: 64px; height: 64px; background: var(--primary-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
}
.pricing-card.featured .pricing-icon { background: var(--primary); }
.pricing-card.featured .pricing-icon svg { fill: var(--white); }
.pricing-card .pricing-icon svg { width: 28px; height: 28px; fill: var(--primary); }
.pricing-card h3 { margin-bottom: 10px; }
.pricing-card p { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 24px; }
.pricing-card .price-tag { font-size: 1.6rem; font-weight: 800; color: var(--primary); margin-bottom: 24px; }

/* ============================================
   BEFORE/AFTER — PREMIUM REALISATIONS
   ============================================ */
.realisations-section {
  padding: 80px 0; background: var(--white); position: relative;
}
.realisations-header { text-align: center; margin-bottom: 48px; }
.realisations-header .tag {
  display: inline-block; background: var(--primary-light); color: var(--primary);
  padding: 6px 18px; border-radius: 50px; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px;
}
.realisations-header h2 { color: var(--gray-900); font-size: 2rem; margin-bottom: 8px; }
.realisations-header p { color: var(--gray-500); font-size: 1rem; }
.realisations-header p svg { vertical-align: middle; margin-right: 4px; stroke: var(--gray-400); }

.ba-slider-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  position: relative; z-index: 1;
}

.ba-slider-card {
  border-radius: var(--radius-lg); overflow: hidden; background: var(--white);
  transition: var(--transition); box-shadow: var(--shadow-md); border: 1px solid var(--gray-200);
}
.ba-slider-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.ba-slider {
  position: relative; width: 100%; aspect-ratio: 4/5; overflow: hidden;
  cursor: ew-resize; user-select: none; -webkit-user-select: none;
}
.ba-slider img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-slider .ba-after { clip-path: inset(0 0 0 50%); z-index: 2; }
.ba-slider .ba-before { z-index: 1; }

.ba-slider-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px;
  background: var(--white); z-index: 3; transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
}
.ba-slider-handle::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 48px; height: 48px; background: var(--white); border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25); border: 3px solid var(--primary);
}
.ba-slider-handle::after {
  content: '◀ ▶'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: 0.65rem; color: var(--primary); z-index: 4; letter-spacing: 4px; white-space: nowrap; font-weight: 800;
}

.ba-slider-label {
  position: absolute; top: 14px; padding: 6px 16px; border-radius: 50px; font-size: 0.7rem;
  font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: 1px; z-index: 5;
}
.ba-slider-label.before { left: 14px; background: var(--navy); }
.ba-slider-label.after { right: 14px; background: var(--primary); }

.ba-slider-card-content {
  padding: 18px 22px; display: flex; align-items: center; justify-content: space-between;
}
.ba-slider-card-info h4 { font-size: 0.95rem; margin-bottom: 2px; color: var(--gray-900); }
.ba-slider-card-info p { font-size: 0.82rem; color: var(--gray-500); margin-bottom: 0; }
.ba-slider-card-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--primary-light); color: var(--primary); padding: 5px 12px;
  border-radius: 50px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; white-space: nowrap;
}
.ba-slider-card-badge svg { width: 12px; height: 12px; fill: var(--primary); }

.realisations-cta { text-align: center; margin-top: 40px; position: relative; z-index: 1; }

@media (max-width: 968px) {
  .ba-slider-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

/* ============================================
   TESTIMONIALS (legacy)
   ============================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--gray-100);
  position: relative;
}
.testimonial-card::before { content: '"'; position: absolute; top: 16px; right: 24px; font-size: 4rem; color: var(--primary-light); font-family: Georgia, serif; line-height: 1; }
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--gold); font-size: 1.05rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { color: var(--gray-600); font-size: 0.92rem; font-style: italic; margin-bottom: 20px; line-height: 1.7; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), #5b9def);
  display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--white); font-size: 0.95rem;
}
.testimonial-name { font-weight: 700; font-size: 0.95rem; }
.testimonial-location { font-size: 0.8rem; color: var(--gray-500); }

/* ============================================
   PRICING / CE QUI CONSTITUE LE PRIX
   ============================================ */
.pricing-explain { padding: 70px 0; background: var(--white); }
.pricing-explain-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.pricing-explain-content h2 { font-size: 1.8rem; margin-bottom: 8px; line-height: 1.2; }
.pricing-explain-content h2 span { color: var(--primary); text-decoration: underline; text-underline-offset: 4px; }
.pricing-explain-intro { color: var(--gray-600); font-size: 0.95rem; line-height: 1.6; margin-bottom: 28px; }

.pricing-point {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px;
}
.pricing-point-icon {
  width: 44px; height: 44px; min-width: 44px; flex-shrink: 0;
}
.pricing-point-icon img { width: 100%; height: 100%; object-fit: contain; }
.pricing-point-text h4 { font-size: 0.95rem; margin-bottom: 3px; color: var(--gray-900); }
.pricing-point-text p { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 0; line-height: 1.5; }

.pricing-explain-image {
  border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg);
}
.pricing-explain-image img { width: 100%; height: auto; object-fit: contain; display: block; }

@media (max-width: 768px) {
  .pricing-explain-grid { grid-template-columns: 1fr; }
  .pricing-explain-image { max-width: 450px; margin: 0 auto; }
}

/* ============================================
   FAQ
   ============================================ */
/* ============================================
   ZONE D'INTERVENTION — Map style
   ============================================ */
/* --- Zone d'intervention --- */
.zone-section {
  padding: 80px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--gray-50) 0%, #e8edf5 100%);
}
.zone-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  position: relative; z-index: 1;
}
.zone-content h2 {
  font-size: 2rem; margin-bottom: 16px; line-height: 1.25;
  color: var(--primary);
}
.zone-content h2 strong { color: var(--navy); }
.zone-content .zone-intro {
  color: var(--gray-500); font-size: 0.95rem; line-height: 1.7; margin-bottom: 32px;
}
.zone-content .zone-intro strong { color: var(--gray-700); }

.zone-agencies {
  display: flex; flex-direction: column; gap: 12px;
}
.zone-agency {
  display: flex; align-items: center; gap: 16px; padding: 18px 22px;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); transition: var(--transition);
  position: relative;
}
.zone-agency:hover { border-color: var(--gray-300); box-shadow: var(--shadow-md); }
.zone-agency--primary {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--white) 0%, var(--primary-lighter) 100%);
  box-shadow: 0 4px 16px rgba(44,115,255,0.1);
}
.zone-agency--primary:hover { border-color: var(--primary); box-shadow: 0 6px 24px rgba(44,115,255,0.15); }
.zone-agency-marker {
  width: 14px; height: 14px; min-width: 14px; border-radius: 50%;
  background: var(--navy); border: 3px solid var(--primary);
  box-shadow: 0 0 0 3px rgba(44,115,255,0.15);
}
.zone-agency--primary .zone-agency-marker {
  background: var(--primary); border-color: var(--primary-dark);
  box-shadow: 0 0 0 4px rgba(44,115,255,0.2), 0 0 12px rgba(44,115,255,0.3);
}
.zone-agency-badge {
  display: inline-block; font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--primary); background: rgba(44,115,255,0.08);
  padding: 3px 8px; border-radius: 4px; margin-bottom: 4px;
}
.zone-agency-info h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; color: var(--gray-900); }
.zone-agency-info p { font-size: 0.8rem; color: var(--gray-500); margin: 0; line-height: 1.4; }

/* France map */
.zone-map {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.zone-map img {
  width: 100%; max-width: 440px; height: auto;
  filter: drop-shadow(0 8px 32px rgba(15,27,45,0.15));
}

@media (max-width: 768px) {
  .zone-section { padding: 50px 0; }
  .zone-grid { grid-template-columns: 1fr; gap: 32px; }
  .zone-map { order: -1; }
  .zone-map img { max-width: 280px; }
}

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; background: var(--white); }
.faq-item:hover { border-color: var(--primary-light); }
.faq-question {
  width: 100%; padding: 20px 24px; background: none; border: none; text-align: left;
  font-size: 1rem; font-weight: 700; color: var(--gray-900); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; font-family: inherit;
}
.faq-question:hover { background: var(--gray-50); }
.faq-question .faq-icon { font-size: 1.3rem; transition: transform 0.3s ease; color: var(--primary); }
.faq-item.active { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(44,115,255,0.08); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 24px 20px; color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; }

/* ============================================
   CTA FINAL + FORMULAIRE
   ============================================ */
.cta-section {
  padding: 80px 0; position: relative; overflow: hidden;
  background: linear-gradient(145deg, var(--navy) 0%, #162240 50%, var(--navy-light) 100%);
  color: var(--white);
}
.cta-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.cta-content h2 { color: var(--white); font-size: 2rem; margin-bottom: 12px; }
.cta-subtitle { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 32px; }
.cta-promises { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.cta-promises li {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.9); font-size: 0.95rem;
}
.cta-promises li svg { color: var(--success); min-width: 20px; }
.cta-phone { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; }
.cta-phone-label { display: block; color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 8px; }
.cta-phone-number {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--white); font-size: 1.4rem; font-weight: 800;
  text-decoration: none; transition: var(--transition);
}
.cta-phone-number:hover { color: var(--primary); }
.cta-phone-number svg { color: var(--primary); }

.cta-form-wrapper {
  background: var(--white); border-radius: var(--radius-xl); padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.cta-form .form-group label { color: var(--gray-700); }
.cta-form .form-group input,
.cta-form .form-group select,
.cta-form .form-group textarea {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 12px 14px; font-size: 0.9rem;
  width: 100%; transition: var(--transition); color: var(--gray-900);
}
.cta-form .form-group input:focus,
.cta-form .form-group select:focus,
.cta-form .form-group textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(44,115,255,0.1);
}
.cta-form textarea { resize: vertical; font-family: inherit; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy); color: rgba(255,255,255,0.6); padding: 60px 0 0; font-size: 0.85rem;
}
.footer a { color: rgba(255,255,255,0.6); text-decoration: none; transition: var(--transition); }
.footer a:hover { color: var(--white); }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1.1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: auto; width: 220px; margin-bottom: 24px; display: block; }
.footer-about p { line-height: 1.7; margin-bottom: 20px; color: rgba(255,255,255,0.5); }
.footer-google {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 16px; border-radius: 50px; font-size: 0.8rem;
  text-decoration: none; color: rgba(255,255,255,0.6); transition: var(--transition);
}
.footer-google:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.footer-google strong { color: var(--white); }
.footer-google .stars { color: var(--gold); letter-spacing: 1px; font-size: 0.75rem; }
.footer-map { margin-top: 32px; padding-top: 0; }
.footer-gmb-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  color: rgba(255,255,255,0.5); font-size: 0.8rem; text-decoration: none;
  transition: var(--transition); padding: 6px 14px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.04);
}
.footer-gmb-link:hover { color: var(--white); background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
.footer-gmb-link svg { min-width: 14px; }
.footer-links h4, .footer-contact h4 {
  color: var(--white); font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 20px; font-weight: 700;
}
.footer-links ul, .footer-contact ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links ul li { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-links ul a { color: inherit; transition: var(--transition); }
.footer-links ul a:hover { color: var(--white); }
.footer-contact ul li {
  display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-contact ul li svg { color: var(--primary); min-width: 16px; margin-top: 2px; }
.footer-contact ul li a { color: var(--white); font-weight: 600; font-size: 0.95rem; }
.footer-hours { color: var(--success) !important; font-weight: 600; }
.footer-social { margin-top: 20px; }
.footer-social span { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.4); margin-bottom: 10px; }
.footer-social-icons { display: flex; gap: 10px; }
.footer-social-icons a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: var(--transition);
}
.footer-social-icons a:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 0.78rem; color: rgba(255,255,255,0.35);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-links { display: flex; align-items: center; gap: 10px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); font-size: 0.78rem; }
.footer-bottom-links a:hover { color: var(--white); }
.footer-bottom-links span { color: rgba(255,255,255,0.2); }

.mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--white); padding: 10px 16px; box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.mobile-cta-inner {
  display: flex; gap: 10px; max-width: 500px; margin: 0 auto;
}
.mobile-cta .btn {
  flex: 1; padding: 13px 16px; font-size: 0.9rem; font-weight: 700;
  text-align: center; border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-outline-dark {
  background: var(--white); color: var(--gray-900);
  border: 2px solid var(--gray-900); text-decoration: none;
}
.btn-outline-dark:hover { background: var(--gray-100); }

/* ============================================
   ZONE
   ============================================ */
.zone-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 24px; }
.zone-tag {
  background: rgba(255,255,255,0.1); padding: 10px 20px; border-radius: 50px;
  font-size: 0.9rem; border: 1px solid rgba(255,255,255,0.2); transition: var(--transition);
}
.zone-tag:hover { background: rgba(255,255,255,0.2); }

.checklist li { padding: 6px 0 6px 28px; position: relative; color: var(--gray-700); }
.checklist li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 800; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12); padding: 8px 16px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; color: var(--white);
  backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2);
}
.badge svg { width: 16px; height: 16px; fill: var(--primary); stroke: var(--primary); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.hero-trust { display: flex; align-items: center; gap: 8px; margin-top: 16px; }
.stars { color: var(--gold); letter-spacing: 1px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-badges { justify-content: center; }
  .hero-form-wrapper { max-width: 500px; margin: 0 auto; }
  h1 { font-size: 2rem; } h2 { font-size: 1.6rem; }
  .features-grid, .why-grid { grid-template-columns: 1fr; }
  .pricing-grid, .testimonials-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured { transform: none; }
  .ba-slider-grid { grid-template-columns: 1fr; max-width: 450px; margin-left: auto; margin-right: auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card { flex: 0 0 280px; }
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-content { text-align: center; }
  .cta-promises { align-items: center; }
  .cta-phone { text-align: center; }
  .cta-form-wrapper { max-width: 500px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .footer-google { justify-content: center; }
  .footer-links ul, .footer-contact ul { align-items: center; }
  .footer-contact ul li { justify-content: center; }
  .footer-social { display: flex; flex-direction: column; align-items: center; }
  .footer-social-icons { justify-content: center; }
  .footer-bottom { justify-content: center; text-align: center; flex-direction: column; }
}
@media (max-width: 768px) {
  .header-phone span { display: none; }
  .header-devis { display: none; }
  .steps-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .mobile-cta { display: block; }
  body { padding-bottom: 80px; }
  .section { padding: 50px 0; }
  .hero { padding: 100px 0 40px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-section { padding: 50px 0; }
  .cta-form-wrapper { padding: 24px; }
  .footer { padding: 40px 0 0; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.7rem; } h2 { font-size: 1.4rem; }
  .hero-content h1 { font-size: 1.8rem; }
  .hero .container { gap: 24px; }
  .cta-phone-number { font-size: 1.2rem; }
}

/* ============================================
   BRAND WORDMARK LOGO (placeholder texte)
   ============================================ */
.brand-logo {
  display: flex; align-items: center; gap: 9px;
  font-weight: 900; font-size: 1.25rem; letter-spacing: -0.02em;
  color: var(--navy); line-height: 1;
}
.brand-logo .brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--primary); color: var(--white); flex-shrink: 0;
}
.brand-logo .brand-mark svg { width: 22px; height: 22px; stroke: var(--white); }
.brand-logo .brand-idf { color: var(--primary); }
/* Footer variant — texte clair sur fond navy */
.brand-logo--footer { color: var(--white); margin-bottom: 24px; }
.brand-logo--footer .brand-idf { color: var(--primary); }

/* ============================================
   ZONE — Communes desservies (SEO local 92)
   ============================================ */
.zone-communes {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; list-style: none;
}
.zone-communes li {
  background: var(--white); border: 1px solid var(--gray-200);
  color: var(--gray-700); font-size: 0.8rem; font-weight: 600;
  padding: 7px 14px; border-radius: 50px; transition: var(--transition);
}
.zone-communes li:hover { border-color: var(--primary); color: var(--primary); }

/* ============================================
   v2 — MULTI-PAGES : NAV, ACCENT CTA, COMPOSANTS
   ============================================ */

/* Accent CTA "Appeler" (ambre, texte navy) */
.btn-accent {
  background: var(--accent); color: var(--accent-contrast); font-weight: 800;
  box-shadow: 0 4px 14px rgba(245,158,11,0.35);
}
.btn-accent:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(217,119,6,0.45); }
.btn-accent svg { stroke: currentColor; }

/* Footer : "IDF" lisible sur navy */
.brand-logo--footer .brand-idf { color: var(--primary-bright); }

/* Header : navigation multi-pages */
.header-inner { gap: 18px; }
.main-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.main-nav a {
  color: var(--gray-700); font-weight: 600; font-size: 0.95rem;
  padding: 6px 2px; border-bottom: 2px solid transparent; transition: var(--transition);
}
.main-nav a:hover { color: var(--primary); }
.main-nav a.active { color: var(--primary); border-bottom-color: var(--primary); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone-accent {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--accent-contrast); font-weight: 800; font-size: 0.95rem;
  padding: 10px 18px; border-radius: 50px; box-shadow: 0 4px 14px rgba(245,158,11,0.3);
  transition: var(--transition);
}
.header-phone-accent:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-1px); }
.header-phone-accent svg { width: 17px; height: 17px; stroke: currentColor; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 42px; height: 42px; align-items: center; justify-content: center;
  color: var(--navy);
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 920px) {
  .main-nav {
    position: fixed; top: 70px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    padding: 8px 0; margin: 0;
    transform: translateY(-130%); transition: transform 0.3s ease;
    max-height: calc(100vh - 70px); overflow-y: auto; z-index: 999;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 14px 24px; border-bottom: 1px solid var(--gray-100); }
  .main-nav a.active { border-bottom-color: var(--gray-100); background: var(--primary-lighter); }
  .nav-toggle { display: inline-flex; order: 3; }
  .header-phone-accent span { display: none; }
  .header-phone-accent { padding: 10px 12px; }
}

/* Barre de réassurance (sous le héro) */
.reassurance-bar { background: var(--primary-lighter); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.reassurance-bar .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 36px; padding-top: 18px; padding-bottom: 18px; }
.reassurance-item { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 0.92rem; color: var(--navy); }
.reassurance-item svg { width: 22px; height: 22px; stroke: var(--primary); flex-shrink: 0; }
@media (max-width: 600px) { .reassurance-bar .container { gap: 12px 22px; } .reassurance-item { font-size: 0.82rem; } }

/* Fil d'Ariane */
.breadcrumb { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 88px 0 0; }
.breadcrumb .container { padding-top: 14px; padding-bottom: 14px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; font-size: 0.85rem; color: var(--gray-500); }
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li:not(:last-child)::after { content: '›'; color: var(--gray-400); }
.breadcrumb a { color: var(--primary); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--gray-600); }

/* Héro de page service (plus compact que l'accueil) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary-dark) 100%);
  color: var(--white); padding: 54px 0 50px; position: relative;
}
.page-hero h1 { color: var(--white); font-size: 2.2rem; line-height: 1.15; margin-bottom: 14px; max-width: 760px; }
.page-hero h1 span { color: var(--accent); }
.page-hero .page-hero-sub { color: rgba(255,255,255,0.82); font-size: 1.08rem; max-width: 640px; margin-bottom: 24px; }
.page-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.page-hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.page-hero-badges span {
  display: inline-flex; align-items: center; gap: 7px; font-size: 0.85rem; font-weight: 600;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  padding: 7px 14px; border-radius: 50px; color: #fff;
}
.page-hero-badges svg { width: 15px; height: 15px; stroke: var(--accent); }
@media (max-width: 600px) { .page-hero h1 { font-size: 1.7rem; } }

/* Corps de page service (texte long) */
.page-content { padding: 56px 0; }
.page-content .container { max-width: 920px; }
.page-content h2 { font-size: 1.6rem; margin: 40px 0 14px; color: var(--navy); }
.page-content h2:first-child { margin-top: 0; }
.page-content h3 { font-size: 1.2rem; margin: 26px 0 8px; color: var(--primary); }
.page-content p { color: var(--gray-700); margin-bottom: 14px; line-height: 1.75; }
.page-content ul:not(.reset) { margin: 0 0 18px; padding-left: 0; list-style: none; }
.page-content ul:not(.reset) li { position: relative; padding: 5px 0 5px 30px; color: var(--gray-700); line-height: 1.6; }
.page-content ul:not(.reset) li::before {
  content: ''; position: absolute; left: 0; top: 11px; width: 16px; height: 16px;
  background: var(--primary-light); border-radius: 50%;
}
.page-content ul:not(.reset) li::after {
  content: ''; position: absolute; left: 5px; top: 15px; width: 6px; height: 6px;
  background: var(--primary); border-radius: 50%;
}
.page-content strong { color: var(--navy); }

/* Cartes "situations d'urgence" */
.situations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin: 8px 0 8px; }
.situation-card {
  background: var(--white); border: 1px solid var(--gray-200); border-left: 4px solid var(--accent);
  border-radius: var(--radius); padding: 18px 18px 16px; transition: var(--transition);
}
.situation-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.situation-card h3 { margin: 0 0 6px; font-size: 1.02rem; color: var(--navy); }
.situation-card p { font-size: 0.88rem; color: var(--gray-500); margin: 0 0 12px; }
.situation-card a { color: var(--primary); font-weight: 700; font-size: 0.88rem; }

/* Tableau de tarifs */
.pricing-table { width: 100%; border-collapse: collapse; margin: 10px 0 14px; font-size: 0.92rem; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.pricing-table th { background: var(--navy); color: var(--white); text-align: left; padding: 14px 16px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }
.pricing-table td { padding: 13px 16px; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); }
.pricing-table td:last-child { font-weight: 800; color: var(--primary); white-space: nowrap; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(even) td { background: var(--gray-50); }
.pricing-note { font-size: 0.82rem; color: var(--gray-500); margin-top: 8px; }

/* Encart CTA dans le corps */
.inline-cta {
  background: linear-gradient(135deg, var(--navy), var(--primary-dark)); color: #fff;
  border-radius: var(--radius-lg); padding: 26px 28px; margin: 30px 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
}
.inline-cta p { color: rgba(255,255,255,0.85); margin: 0; font-weight: 600; }
.inline-cta strong { color: #fff; }
.inline-cta .inline-cta-phone { font-size: 1.5rem; font-weight: 900; color: #fff; }

/* Bloc "Pourquoi nous choisir" sur fond clair */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.why-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; }
.why-card .why-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.why-card .why-icon svg { width: 24px; height: 24px; stroke: var(--primary); }
.why-card h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--navy); }
.why-card p { font-size: 0.9rem; color: var(--gray-600); margin: 0; }
.why-card a { color: var(--primary); font-weight: 700; font-size: 0.9rem; display: inline-block; margin-top: 12px; }
.why-card a:hover { color: var(--primary-dark); text-decoration: underline; }
.why-card .why-icon svg path, .why-card .why-icon svg circle, .why-card .why-icon svg line, .why-card .why-icon svg polyline, .why-card .why-icon svg rect { stroke: var(--primary); }

/* Services home : intitulé de groupe métier */
.service-group-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.service-group-head h2 { margin: 0; }
.service-group-head .service-group-link { color: var(--primary); font-weight: 700; font-size: 0.92rem; white-space: nowrap; }

/* ============================================================
   PREMIUM v3 — Identité de marque & profondeur (visuel only)
   ============================================================ */

/* — Typographie de marque — */
h1, h2, h3, h4, h5, .brand-logo, .btn, .eyebrow, .stat-number, .cta-phone-number,
.error-code, .hero-form-title, .process-step h4 strong, .pricing-table th {
  font-family: var(--font-display);
}
h1, h2, h3, h4 { letter-spacing: -0.025em; }
.section-title h2 { font-size: 2.2rem; }
.about-content h2, .zone-content h2, .pricing-explain-content h2, .realisations-header h2, .cta-content h2 { font-size: 2.05rem; }
body { font-feature-settings: "ss01","cv01"; }

/* — Eyebrow (sur-titre de section) — */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.76rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--primary); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: #9db8e8; }
.section-title .eyebrow { margin-bottom: 10px; }

/* — Boutons premium — */
.btn { font-weight: 700; letter-spacing: -0.01em; border-radius: 14px; padding: 15px 28px; }
.btn-accent { background: linear-gradient(135deg, #f9ad24, #f59e0b); color: var(--accent-contrast); box-shadow: 0 12px 24px -8px rgba(245,158,11,0.55); }
.btn-accent:hover { background: linear-gradient(135deg, #f59e0b, #e0890a); color: #fff; box-shadow: 0 16px 30px -8px rgba(217,119,6,0.6); }
.btn-primary { background: linear-gradient(135deg, var(--primary), #1559cc); box-shadow: 0 12px 26px -8px rgba(11,61,145,0.55); }
.btn-primary:hover { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn-outline { border-width: 2px; backdrop-filter: blur(4px); }

/* — Header translucide premium — */
.header { background: rgba(255,255,255,0.82); -webkit-backdrop-filter: saturate(180%) blur(14px); backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid rgba(13,32,64,0.08); }
.brand-logo .brand-mark { background: linear-gradient(140deg, #0b3d91, #2563eb); box-shadow: 0 8px 16px -6px rgba(11,61,145,0.55); }
.main-nav a { font-weight: 600; }
.header-phone-accent { background: linear-gradient(135deg, #f9ad24, #f59e0b); box-shadow: 0 8px 18px -6px rgba(245,158,11,0.5); }

/* — HÉRO premium : voile + halo + motif blueprint — */
.hero {
  background: linear-gradient(120deg, rgba(7,26,51,0.95) 0%, rgba(10,37,64,0.85) 42%, rgba(11,61,145,0.72) 100%),
              url('../images/plombier-serrurier-courbevoie-depannage-24h.webp') center/cover no-repeat;
  padding: 150px 0 84px;
}
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(1100px 460px at 82% 16%, rgba(37,99,235,0.30), transparent 62%); pointer-events: none; }
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(80% 60% at 70% 30%, #000, transparent 75%);
  mask-image: radial-gradient(80% 60% at 70% 30%, #000, transparent 75%);
}
.hero-content h1 { font-size: 3rem; line-height: 1.07; }
.hero-content h1 span { background: linear-gradient(120deg, #5b9cff, var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-subtitle { font-size: 1.12rem; color: rgba(225,234,250,0.86); max-width: 540px; }
.hero-trust-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; margin-top: 8px; }
.hero-chip { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: #dbe6fb; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); padding: 8px 14px; border-radius: 50px; }
.hero-chip svg { width: 16px; height: 16px; stroke: var(--accent); }
.hero-rating { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 700; font-size: 0.9rem; }
.hero-rating .stars { color: var(--gold); letter-spacing: 1px; font-size: 1rem; }

/* — Carte formulaire héro premium — */
.hero-form-wrapper { box-shadow: 0 34px 70px -24px rgba(2,12,30,0.75); border: 1px solid rgba(255,255,255,0.5); }
.hero-form-header { background: linear-gradient(135deg, var(--navy), var(--primary-dark)); position: relative; overflow: hidden; }
.hero-form-header::after { content: ''; position: absolute; inset: 0; background: radial-gradient(300px 120px at 80% 0%, rgba(37,99,235,0.4), transparent 70%); }
.hero-form-header > * { position: relative; z-index: 1; }

/* — Réassurance en pastilles — */
.reassurance-bar { background: #fff; border-top: none; border-bottom: 1px solid var(--gray-200); }
.reassurance-bar .container { gap: 12px 16px; padding-top: 22px; padding-bottom: 22px; }
.reassurance-item { background: var(--gray-50); border: 1px solid var(--gray-200); padding: 10px 18px; border-radius: 50px; box-shadow: var(--shadow-soft); font-size: 0.88rem; }

/* — Bandeau de statistiques premium — */
.stats-bar { background: linear-gradient(135deg, var(--navy) 0%, #0b2d57 55%, var(--primary-dark) 100%); position: relative; overflow: hidden; padding: 50px 0; }
.stats-bar::after { content: ''; position: absolute; inset: 0; opacity: 0.4; background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 44px 44px; -webkit-mask-image: radial-gradient(70% 100% at 50% 0%, #000, transparent); mask-image: radial-gradient(70% 100% at 50% 0%, #000, transparent); }
.stats-grid { position: relative; z-index: 1; }
.stat-item { position: relative; }
.stat-item:not(:last-child)::after { content: ''; position: absolute; right: -12px; top: 12%; height: 76%; width: 1px; background: rgba(255,255,255,0.12); }
.stat-item .stat-number { font-size: 2.7rem; font-weight: 800; background: linear-gradient(135deg, #ffffff, #aecbf5); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-item .stat-number span { color: var(--accent); -webkit-text-fill-color: var(--accent); }
.stat-item .stat-label { color: rgba(255,255,255,0.68); font-weight: 500; font-size: 0.92rem; }
@media (max-width: 600px) { .stat-item:not(:last-child)::after { display: none; } .stat-item .stat-number { font-size: 2.1rem; } }

/* — Cartes premium (services / pourquoi / engagements) — */
.why-card { border: 1px solid var(--gray-200); border-radius: var(--radius-xl); padding: 26px; box-shadow: var(--shadow-card); position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-brand); border-color: rgba(11,61,145,0.18); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon { width: 54px; height: 54px; border-radius: 16px; background: linear-gradient(140deg, var(--primary), #2563eb); box-shadow: 0 12px 22px -8px rgba(11,61,145,0.6); }
.why-icon svg, .why-card .why-icon svg path, .why-card .why-icon svg circle, .why-card .why-icon svg line, .why-card .why-icon svg polyline, .why-card .why-icon svg rect { stroke: #fff; }
.why-icon svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 1.08rem; }

/* — Cartes situation (pages service) — */
.situation-card { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.situation-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-brand); }

/* — Galerie "en images" — */
.gallery-section { padding: 84px 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow-card); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.2,0.7,0.2,1); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,28,54,0.9) 0%, rgba(8,28,54,0.15) 55%, transparent 100%); }
.gallery-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 18px 20px; color: #fff; }
.gallery-cap strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; }
.gallery-cap span { font-size: 0.82rem; color: rgba(255,255,255,0.75); }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* — Cadre média premium (about) — */
.about-image { border-radius: var(--radius-2xl); box-shadow: var(--shadow-brand); border: 1px solid var(--gray-200); }
.about-image-badge { background: linear-gradient(135deg, var(--primary), #2563eb); border-radius: 12px; box-shadow: 0 10px 22px -8px rgba(11,61,145,0.55); }

/* — Process premium — */
.process-track { background: linear-gradient(90deg, var(--primary), var(--accent)); height: 4px; }
.process-icon { border-radius: 18px; background: #fff; border: 1.5px solid var(--gray-200); box-shadow: var(--shadow-soft); }
.process-step:hover .process-icon { background: linear-gradient(140deg, var(--primary), #2563eb); border-color: transparent; box-shadow: 0 14px 26px -10px rgba(11,61,145,0.55); }
.process-num { background: linear-gradient(135deg, var(--accent), #e0890a); box-shadow: 0 6px 14px -4px rgba(245,158,11,0.55); }

/* — Avis premium — */
.google-reviews-section { background: var(--gray-50); }
.review-card { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); border-color: var(--gray-200); }
.review-card:hover { box-shadow: var(--shadow-brand); transform: translateY(-4px); }

/* — Zone premium — */
.zone-agency { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.zone-map iframe { box-shadow: var(--shadow-brand) !important; }

/* — FAQ premium — */
.faq-item { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); border-color: var(--gray-200); }
.faq-question { font-family: var(--font-display); font-weight: 700; }
.faq-item.active { box-shadow: var(--shadow-card); }

/* — Tarifs premium — */
.pricing-table { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); border: 1px solid var(--gray-200); }
.pricing-table th { background: linear-gradient(135deg, var(--navy), var(--primary-dark)); }

/* — CTA finale premium — */
.cta-section { background: linear-gradient(135deg, #071a33 0%, #0a2540 45%, #0e3a78 100%); position: relative; overflow: hidden; }
.cta-section::after { content: ''; position: absolute; inset: 0; opacity: 0.4; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 46px 46px; -webkit-mask-image: radial-gradient(70% 80% at 20% 30%, #000, transparent); mask-image: radial-gradient(70% 80% at 20% 30%, #000, transparent); }
.cta-grid { position: relative; z-index: 1; }
.cta-form-wrapper { box-shadow: 0 34px 70px -24px rgba(2,12,30,0.6); border: 1px solid rgba(255,255,255,0.5); }
.inline-cta { box-shadow: var(--shadow-brand); position: relative; overflow: hidden; }
.inline-cta::after { content: ''; position: absolute; inset: 0; background: radial-gradient(400px 160px at 85% 20%, rgba(37,99,235,0.35), transparent 65%); pointer-events: none; }
.inline-cta > * { position: relative; z-index: 1; }

/* — Pages service : héro premium — */
.page-hero { padding: 58px 0 60px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.45; background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 44px 44px; -webkit-mask-image: radial-gradient(80% 70% at 75% 30%, #000, transparent); mask-image: radial-gradient(80% 70% at 75% 30%, #000, transparent); }
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: 2.5rem; }
.page-hero-badges span { backdrop-filter: blur(4px); }

/* — Breadcrumb premium — */
.breadcrumb { background: #fff; border-bottom: 1px solid var(--gray-200); }

/* — Footer premium — */
.footer { background: linear-gradient(180deg, #0a2540 0%, #07182f 100%); position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary)); }
.footer-links h4, .footer-contact h4 { font-family: var(--font-display); }

/* — Section sombre réutilisable — */
.section-band { background: linear-gradient(135deg, var(--navy), var(--primary-dark)); color: #fff; position: relative; overflow: hidden; }

/* — Responsive titres — */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.1rem; }
  .section-title h2 { font-size: 1.7rem; }
  .page-hero h1 { font-size: 1.85rem; }
  .hero { padding: 120px 0 56px; }
}

/* v3.1 — Logo image + icônes de services */
.brand-mark img{width:100%;height:100%;object-fit:cover;border-radius:10px;display:block;}
.svc-icon{width:64px;height:64px;border-radius:16px;overflow:hidden;margin-bottom:14px;box-shadow:0 12px 24px -8px rgba(11,61,145,0.45);}
.svc-icon img{width:100%;height:100%;object-fit:cover;display:block;}

/* ============================================================
   PREMIUM POLISH v4 — DESIGN UNIQUEMENT (contenu & SEO inchangés)
   ============================================================ */

/* — Corps de page service : rythme, mesure, lisibilité — */
.page-content { padding: 76px 0; }
.page-content .container { max-width: 884px; }
.page-content p { max-width: 68ch; color: var(--gray-700); }
.page-content > .container > p:first-of-type { font-size: 1.14rem; line-height: 1.7; color: #1e293b; }
.page-content h2 {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -.02em;
  font-size: 1.75rem; color: var(--navy); margin: 58px 0 18px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content h2::before {
  content: ''; display: block; width: 48px; height: 4px; border-radius: 4px; margin-bottom: 18px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.page-content h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--navy);
  margin: 34px 0 12px; padding-left: 16px; position: relative;
}
.page-content h3::before {
  content: ''; position: absolute; left: 0; top: .2em; bottom: .2em; width: 4px; border-radius: 4px;
  background: linear-gradient(var(--primary), var(--accent));
}

/* — Listes : puces "check" premium — */
.page-content ul:not(.reset) li { padding: 6px 0 6px 34px; }
.page-content ul:not(.reset) li::before {
  content: ''; left: 0; top: 5px; width: 21px; height: 21px; border-radius: 50%;
  background: rgba(11,61,145,.09) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230b3d91' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center no-repeat;
}
.page-content ul:not(.reset) li::after { content: none; }

/* — Cartes "situations" : suppression du liseré orange, look agence — */
.situations-grid { gap: 18px; margin: 20px 0; }
.situation-card {
  border: 1px solid var(--gray-200); border-left: 1px solid var(--gray-200);
  border-radius: 16px; padding: 24px 22px 20px; background: #fff;
  box-shadow: 0 1px 2px rgba(10,37,64,.04), 0 14px 30px -22px rgba(10,37,64,.22);
  position: relative; overflow: hidden;
  transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s, border-color .28s;
}
.situation-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.situation-card:hover { transform: translateY(-5px); border-color: rgba(11,61,145,.22); box-shadow: 0 2px 4px rgba(10,37,64,.05), 0 26px 46px -24px rgba(10,37,64,.33); }
.situation-card:hover::before { transform: scaleX(1); }
.situation-card h3 { display: flex; align-items: center; gap: 10px; margin: 0 0 8px; font-family: var(--font-display); font-size: 1.05rem; color: var(--navy); }
.situation-card h3::before { content: ''; width: 9px; height: 9px; border-radius: 3px; flex-shrink: 0; background: linear-gradient(135deg, var(--primary), var(--accent)); }
.situation-card p { color: var(--gray-600); line-height: 1.6; }
.situation-card a { display: inline-block; transition: color .2s; }
.situation-card a:hover { color: var(--accent-dark); }

/* — Formulaires en carte : ombre plus douce + bord — */
.cta-form-wrapper { border: 1px solid var(--gray-200); padding: 30px; box-shadow: 0 30px 60px -30px rgba(10,37,64,.3); }

/* — Coordonnées sur fond clair (corrige le n° de téléphone invisible en page Contact) — */
.page-content .cta-phone { border-top-color: var(--gray-200); }
.page-content .cta-phone-label { color: var(--gray-500); }
.page-content .cta-phone-number { color: var(--navy); }
.page-content .cta-phone-number:hover { color: var(--primary); }

/* — Carte Google Maps : cadre premium — */
.page-content iframe { border: 1px solid var(--gray-200) !important; box-shadow: 0 26px 50px -28px rgba(10,37,64,.4); margin: 8px 0 4px; }

/* — Tableau de tarifs : surbrillance de ligne — */
.pricing-table tr:hover td { background: var(--primary-lighter); }

/* — Héro de page : titre Sora + fine texture blueprint (cohérent avec l'accueil) — */
.page-hero { padding: 66px 0; }
.page-hero h1 { font-family: var(--font-display); letter-spacing: -.02em; }
.page-hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .55;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(85% 100% at 82% 0%, #000, transparent);
  mask-image: radial-gradient(85% 100% at 82% 0%, #000, transparent);
}

/* — CTA finale : centrage élégant quand une seule colonne (corrige le "mal centré") — */
.cta-grid:has(> .cta-content:only-child) { grid-template-columns: 1fr; justify-items: center; text-align: center; max-width: 680px; margin-inline: auto; }
.cta-grid:has(> .cta-content:only-child) .cta-phone { border-top: none; padding-top: 4px; margin-top: 4px; }
.cta-grid:has(> .cta-content:only-child) .cta-phone-number {
  background: linear-gradient(135deg, #f9ad24, #f59e0b); color: var(--accent-contrast);
  padding: 14px 30px; border-radius: 50px; margin-top: 12px;
  box-shadow: 0 14px 26px -10px rgba(245,158,11,.55); transition: transform .2s, box-shadow .2s;
}
.cta-grid:has(> .cta-content:only-child) .cta-phone-number:hover { color: var(--accent-contrast); transform: translateY(-2px); box-shadow: 0 18px 32px -10px rgba(245,158,11,.6); }
