/* =========================================================
   BTE PACA — Feuille de style de la refonte (SOURCE UNIQUE)
   ---------------------------------------------------------
   • Fichier CSS custom unique, édité à la main.
   • Utilisation rigoureuse de la charte graphique :
     - Bleu sombre (#00275c) : Structure, textes, titres
     - Bleu moyen  (#0062ac) : Éléments d'information, boutons standard
     - Bleu clair  (#00aae9) : Accents, survols (hover), icônes secondaires
     - Rouge       (#da3744) : Urgences, Call-to-Action prioritaires
   ========================================================= */

/* 1. VARIABLES & UTILITAIRES DE MARQUE -------------------- */
:root {
  /* Couleurs de la charte */
  --primary-blue: #00275c;   /* Bleu sombre */
  --medium-blue: #0062ac;    /* Bleu moyen */
  --light-blue: #00aae9;     /* Bleu clair */
  --accent-red: #da3744;     /* Rouge */

  /* Variantes pour les survols (hovers) */
  --primary-blue-hover: #001b40;
  --medium-blue-hover: #004d88;
  --light-blue-hover: #008ebf;
  --accent-red-hover: #b92d3a;

  /* Couleurs neutres */
  --text-dark: #333333;
  --text-gray: #666666;
  --bg-light: #f0f7fb;       /* Légèrement teinté de bleu clair */
  --bg-gray: #f9f9f9;
}

/* Utilitaires */
.text-brand { color: var(--primary-blue) !important; }
.text-brand-red { color: var(--accent-red) !important; }

/* 2. BASE & TYPOGRAPHIE ----------------------------------- */
.v2 { overflow-x: hidden; }
.v2 .topbar, .v2 .middle-header, .v2 .nav-wrapper, .v2 .footer,
.v2 .partners-section, .home-v2 { font-family: 'Open Sans', sans-serif; }
.v2 .footer h3, .home-v2 h1, .home-v2 h2, .home-v2 h3, .home-v2 h4,
.home-v2 h5, .home-v2 h6 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
.home-v2 h1, .home-v2 h2, .home-v2 h3, .home-v2 h4, .home-v2 h5, .home-v2 h6 { color: var(--primary-blue); }

.home-v2 { color: var(--text-gray); }
.home-v2 .section-padding { padding: 100px 0; }
.home-v2 .sub-title, .v2 .sub-title { color: var(--medium-blue); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 10px; font-size: 14px; }

/* --- TOPBAR --- */
.v2 .topbar { background-color: var(--primary-blue); color: #fff; padding: 10px 0; font-size: 13px; }
.v2 .topbar a { color: #fff; text-decoration: none; margin-left: 15px; transition: color 0.3s; }
.v2 .topbar a:hover { color: var(--light-blue); }

/* --- MIDDLE HEADER --- */
.v2 .middle-header { padding: 20px 0; background-color: #fff; }
.v2 .logo-placeholder { font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 800; color: var(--primary-blue); text-decoration: none; display: inline-flex; align-items: center; gap: 10px; }
.v2 .logo-placeholder span { color: var(--light-blue); }
.v2 .logo-img { max-height: 44px; }
.v2 .contact-info-blocks { display: flex; justify-content: flex-end; gap: 30px; }
.v2 .info-block { display: flex; align-items: center; gap: 15px; }
.v2 .info-block i { font-size: 24px; color: var(--light-blue); }
.v2 .info-block .title { font-size: 12px; font-weight: 600; color: var(--text-gray); margin-bottom: 2px; text-transform: uppercase; }
.v2 .info-block .desc { font-size: 14px; font-weight: 700; color: var(--primary-blue); }
.v2 .info-block a { color: var(--primary-blue); text-decoration: none; transition: color 0.3s; }
.v2 .info-block a:hover { color: var(--medium-blue); }

/* --- NAVIGATION --- */
.v2 .nav-wrapper { background-color: #fff; border-top: 1px solid #eee; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.v2 .main-menu { display: flex; justify-content: space-between; align-items: center; }
.v2 .nav-links { list-style: none; padding: 0; margin: 0; display: flex; gap: 25px; }
.v2 .nav-links a { color: var(--primary-blue); font-weight: 600; font-size: 15px; text-decoration: none; padding: 20px 0; display: inline-block; transition: color 0.3s; }
.v2 .nav-links a:hover { color: var(--light-blue); }
.v2 .header-ctas { display: flex; gap: 15px; margin-left: auto; }
.v2 .btn-header { padding: 10px 20px; border-radius: 5px; font-weight: 700; font-size: 14px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s ease; border: none; }
.v2 .btn-header-devis { background-color: var(--medium-blue); color: #fff; }
.v2 .btn-header-devis:hover { background-color: var(--primary-blue); color: #fff; transform: translateY(-2px); }
.v2 .btn-header-entretien { background-color: var(--accent-red); color: #fff; }
.v2 .btn-header-entretien:hover { background-color: var(--accent-red-hover); color: #fff; transform: translateY(-2px); }
.v2 .mobile-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--primary-blue); cursor: pointer; padding: 15px 0; }
.v2 .nav-mobile-logo { display: none; align-items: center; }
.v2 .nav-mobile-logo img { max-height: 40px; }

/* --- MENU MOBILE OFF-CANVAS --- */
.v2 .mobile-overlay { position: fixed; inset: 0; background: rgba(0,39,92,0.55); opacity: 0; visibility: hidden; transition: opacity 0.3s ease; z-index: 1090; }
.v2 .mobile-overlay.open { opacity: 1; visibility: visible; }
.v2 .mobile-panel { position: fixed; top: 0; right: 0; width: 310px; max-width: 85%; height: 100%; background: #fff; z-index: 1100; transform: translateX(100%); transition: transform 0.35s ease; overflow-y: auto; box-shadow: -6px 0 24px rgba(0,0,0,0.18); display: flex; flex-direction: column; }
.v2 .mobile-panel.open { transform: translateX(0); }
.v2 .mobile-panel-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid #eee; }
.v2 .mobile-panel-head img { max-height: 40px; }
.v2 .mobile-close { background: none; border: none; font-size: 26px; line-height: 1; color: var(--primary-blue); cursor: pointer; transition: 0.3s; }
.v2 .mobile-close:hover { color: var(--accent-red); }
.v2 .mobile-nav { list-style: none; margin: 0; padding: 8px 0; }
.v2 .mobile-nav > li > a { display: block; padding: 13px 22px; color: var(--primary-blue); font-weight: 600; font-size: 15px; text-decoration: none; border-bottom: 1px solid #f3f3f3; transition: all 0.2s ease; }
.v2 .mobile-nav > li > a:hover { background: var(--bg-light); color: var(--medium-blue); padding-left: 28px; }
.v2 .mobile-nav .mobile-subhead { padding: 14px 22px 6px; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-gray); font-weight: 700; }
.v2 .mobile-nav .mobile-sublink a { padding-left: 34px; font-weight: 400; }
.v2 .mobile-cta { padding: 18px 22px; display: flex; flex-direction: column; gap: 12px; border-top: 1px solid #eee; }
.v2 .mobile-cta .btn-header { justify-content: center; padding: 13px; }
.v2 .mobile-contact { padding: 18px 22px; background: var(--bg-light); margin-top: auto; font-size: 14px; }
.v2 .mobile-contact .mc-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; color: var(--text-gray); }
.v2 .mobile-contact .mc-item:last-child { margin-bottom: 0; }
.v2 .mobile-contact .mc-item i { color: var(--medium-blue); margin-top: 3px; }
.v2 .mobile-contact a { color: var(--primary-blue); text-decoration: none; font-weight: 600; }
body.mobile-menu-open { overflow: hidden; }

/* --- HERO : 2 COLONNES (intro + panneau à onglets) --- */
.home-v2 .hero-section { position: relative; background: linear-gradient(rgba(0, 39, 92, 0.65), rgba(0, 39, 92, 0.85)), url('/assets/images/fond_form5.jpg') center/cover; padding: 90px 0; }

/* Colonne gauche : proposition de valeur */
.home-v2 .hero-intro { color: #fff; }
.home-v2 .hero-intro h1 { color: #fff; font-size: 44px; line-height: 1.15; margin-bottom: 22px; }
.home-v2 .hero-title-accent { color: var(--light-blue); }
.home-v2 .hero-intro .badge.bg-danger { background-color: var(--accent-red) !important; }
.home-v2 .hero-intro p { font-size: 18px; color: #d1d5db; max-width: 560px; margin-bottom: 32px; }
.home-v2 .hero-trust { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 22px; }
.home-v2 .hero-trust li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; color: #e8eef5; }
.home-v2 .hero-trust-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.10); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.home-v2 .hero-trust-icon i { font-size: 16px; color: var(--light-blue); }

/* Colonne droite : carte à onglets */
.home-v2 .hero-panel { background: #fff; border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.3); position: relative; z-index: 10; overflow: hidden; }
.home-v2 .hero-panel-tabs { border-bottom: 1px solid #e5e7eb; display: flex; background: #f9fafb; border-radius: 12px 12px 0 0; overflow: hidden; margin: 0; padding: 0; list-style: none; }
.home-v2 .hero-panel-tabs .nav-item { flex: 1; }
.home-v2 .hero-panel-tabs .nav-link { width: 100%; border: none; border-bottom: 3px solid transparent; border-radius: 0; padding: 18px 10px; font-weight: 800; font-size: 14px; font-family: 'Montserrat', sans-serif; color: var(--text-gray); background: transparent; transition: all 0.2s ease; text-transform: uppercase; letter-spacing: 0.3px; cursor: pointer; }
.home-v2 .hero-panel-tabs .nav-link:hover:not(.active) { background: #f0f3f7; color: var(--primary-blue); }
.home-v2 .hero-panel-tabs .nav-link.tab-devis.active { background: #fff; color: var(--medium-blue); border-bottom-color: var(--medium-blue); }
.home-v2 .hero-panel-tabs .nav-link.tab-entretien.active { background: #fff; color: var(--accent-red); border-bottom-color: var(--accent-red); }
.home-v2 .hero-panel-body { padding: 32px; }
.home-v2 .hero-pane-head { margin-bottom: 22px; }
.home-v2 .hero-pane-head h3 { margin-bottom: 8px; }
.home-v2 .hero-pane-head p { font-size: 14px; margin-bottom: 0; }
.home-v2 .hero-panel .form-control, .home-v2 .hero-panel .form-select { padding: 12px 15px; border-radius: 5px; border: 1px solid #ddd; font-size: 14px; background-color: #fcfcfc; transition: 0.3s; }
.home-v2 .hero-panel .form-control:hover, .home-v2 .hero-panel .form-select:hover { border-color: var(--light-blue); }
.home-v2 .hero-panel .form-control:focus, .home-v2 .hero-panel .form-select:focus { border-color: var(--medium-blue); box-shadow: none; background-color: #fff; }
.home-v2 .hero-panel form ul { list-style: none; padding: 0; margin: 6px 0 0; }
.home-v2 .hero-panel form ul li { color: var(--accent-red); font-size: 13px; font-weight: 600; }
.home-v2 .btn-submit { background-color: var(--medium-blue); color: #fff; padding: 15px 30px; border: none; border-radius: 5px; font-weight: 700; width: 100%; transition: 0.3s; text-transform: uppercase; letter-spacing: 1px; }
.home-v2 .btn-submit:hover { background-color: var(--primary-blue); color: #fff; }
.home-v2 .btn-universe { display: inline-block; padding: 15px 30px; font-size: 16px; font-weight: 700; border-radius: 5px; text-decoration: none; transition: all 0.3s; width: 100%; text-transform: uppercase; background-color: var(--accent-red); color: #fff; text-align: center; }
.home-v2 .btn-universe:hover { background-color: var(--accent-red-hover); color: #fff; }
.home-v2 .hero-rdv-icon { font-size: 48px; color: var(--accent-red); }

/* Onglet entretien : liste d'arguments + note */
.home-v2 .hero-entretien-list { list-style: none; padding: 0; margin: 0 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; }
.home-v2 .hero-entretien-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; color: var(--primary-blue); }
.home-v2 .hero-entretien-list i { color: var(--light-blue); font-size: 16px; }
.home-v2 .hero-entretien-legal { grid-column: 1 / -1; margin-top: 4px; padding-top: 12px; border-top: 1px solid #eee; }
.home-v2 .hero-entretien-note { font-size: 12px; color: #999; margin: 14px 0 0; }

/* --- A PROPOS --- */
.home-v2 .about-img-wrapper { position: relative; border-radius: 8px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.home-v2 .about-img-wrapper img { width: 100%; height: auto; display: block; }
.home-v2 .about-badge { position: absolute; bottom: 0; right: 0; background: var(--medium-blue); color: #fff; padding: 20px; font-weight: 700; font-family: 'Montserrat'; border-top-left-radius: 8px; text-align: center; }
.home-v2 .about-badge span { font-size: 32px; display: block; line-height: 1; color: #fff; }
.home-v2 .check-list { list-style: none; padding: 0; margin-top: 30px; }
.home-v2 .check-list li { margin-bottom: 15px; font-weight: 600; display: flex; align-items: center; gap: 10px; color: var(--primary-blue); }
.home-v2 .check-list i { color: var(--light-blue); font-size: 20px; }
.home-v2 .about-urgence-icon { font-size: 30px; color: var(--accent-red); }
.home-v2 .about-phone { color: var(--primary-blue); font-weight: 700; font-size: 18px; text-decoration: none; transition: 0.3s; }
.home-v2 .about-phone:hover { color: var(--medium-blue); }

/* --- SERVICES --- */
.home-v2 .services-section { background-color: var(--bg-gray); }
.home-v2 .service-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; height: 100%; display: flex; flex-direction: column; }
.home-v2 .service-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.home-v2 .service-img { height: 200px; overflow: hidden; }
.home-v2 .service-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.home-v2 .service-card:hover .service-img img { transform: scale(1.1); }
.home-v2 .service-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.home-v2 .service-content h4 a { color: var(--primary-blue); text-decoration: none; transition: 0.3s; }
.home-v2 .service-content h4 a:hover { color: var(--medium-blue); }
.home-v2 .service-content p { margin-bottom: 20px; flex-grow: 1; font-size: 14px; }
.home-v2 .read-more { color: var(--primary-blue); font-weight: 700; text-decoration: none; font-size: 14px; text-transform: uppercase; transition: 0.3s; }
.home-v2 .read-more:hover { color: var(--light-blue); }

/* --- PROCESS --- */
.home-v2 .process-item { text-align: center; position: relative; padding: 20px; z-index: 1; }
.home-v2 .process-item::after { content: ''; position: absolute; top: 40px; right: -50%; width: 100%; height: 2px; border-top: 2px dashed #ccc; z-index: -1; }
.home-v2 .row > div:last-child .process-item::after { display: none; }
.home-v2 .process-icon-wrap { width: 80px; height: 80px; background: #fff; border: 2px solid var(--light-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; position: relative; transition: 0.3s; }
.home-v2 .process-num { position: absolute; top: -10px; right: -10px; background: var(--medium-blue); color: #fff; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; }
.home-v2 .process-item:hover .process-icon-wrap { border-color: var(--medium-blue); }
.home-v2 .process-item h3 { font-size: 18px; margin-bottom: 15px; color: var(--primary-blue); }
.home-v2 .process-item p { font-size: 14px; }
.home-v2 .process-icon-wrap i { color: var(--primary-blue); transition: 0.3s; }
.home-v2 .process-item:hover .process-icon-wrap i { color: var(--medium-blue); }

/* --- TEMOIGNAGES --- */
.home-v2 .testimonials-section { background-color: var(--bg-light); }
.home-v2 .testi-card { background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); margin-bottom: 30px; position: relative; height: calc(100% - 30px); }
.home-v2 .testi-card .quote-mark { position: absolute; top: 20px; right: 30px; font-size: 40px; color: var(--bg-light); }
.home-v2 .testi-card p { font-style: italic; margin-bottom: 20px; position: relative; z-index: 2; }
.home-v2 .testi-author { display: flex; align-items: center; gap: 15px; }
.home-v2 .testi-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.home-v2 .testi-info h5 { margin: 0; font-size: 16px; color: var(--primary-blue); }
.home-v2 .testi-info span { font-size: 12px; color: #999; }

/* --- PARTENAIRES (global) --- */
.v2 .partners-section { padding: 60px 0; border-top: 1px solid #eee; background: #fff; }
.v2 .partner-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 55px; }
.v2 .partner-logos img { max-height: 85px; max-width: 170px; filter: grayscale(100%); opacity: 0.6; transition: 0.3s; }
.v2 .partner-logos img:hover { filter: grayscale(0%); opacity: 1; }

/* --- FOOTER (global) --- */
.v2 .footer { background-color: var(--primary-blue); color: #b0c4de; padding: 80px 0 20px; }
.v2 .footer p { color: #b0c4de; }
.v2 .footer-logo { max-height: 50px; margin-bottom: 20px; }
.v2 .footer h3 { color: #fff; font-size: 20px; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.v2 .footer h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--light-blue); }
.v2 .footer-links { list-style: none; padding: 0; }
.v2 .footer-links li { margin-bottom: 12px; }
.v2 .footer-links a { color: #b0c4de; text-decoration: none; transition: 0.3s; }
.v2 .footer-links a:hover { color: var(--light-blue); padding-left: 5px; }
.v2 .footer-contact li { display: flex; gap: 15px; margin-bottom: 15px; }
.v2 .footer-contact i { color: var(--light-blue); font-size: 18px; margin-top: 4px; }
.v2 .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 50px; padding-top: 20px; font-size: 14px; }
.v2 .footer-copyright { margin-bottom: 0; }
.v2 .footer-credit-link { color: inherit; text-decoration: none; transition: color 0.3s; }
.v2 .footer-credit-link:hover { color: var(--light-blue); }
.v2 .footer-credit-logo { box-sizing: content-box; height: 16px; width: auto; background: #fff; padding: 4px 6px; border-radius: 5px; vertical-align: middle; margin: -3px 6px 0 4px; }

/* Pourquoi nous choisir */
.home-v2 .why-list { display: flex; flex-direction: column; gap: 26px; }
.home-v2 .why-item { display: flex; gap: 18px; align-items: flex-start; }
.home-v2 .why-icon { flex-shrink: 0; width: 54px; height: 54px; border-radius: 12px; background: #eef4fb; color: var(--medium-blue); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.home-v2 .why-item h3 { font-size: 19px; margin-bottom: 6px; }
.home-v2 .why-item p { margin-bottom: 0; color: #6b7280; }
.v2 .social-links a { display: inline-flex; width: 40px; height: 40px; background: rgba(255,255,255,0.1); color: #fff; align-items: center; justify-content: center; border-radius: 50%; margin-right: 10px; transition: 0.3s; text-decoration: none; }
.v2 .social-links a:hover { background: var(--medium-blue); }

/* --- CTA URGENCE ACCUEIL (motif + photo) --- */
.home-v2 .home-urgence { background: url('/assets/images/motif.jpg') center/cover; }
.home-v2 .home-urgence-content { padding: 70px 0; }
.home-v2 .home-urgence-content .sub-title { color: #fff; opacity: 0.85; }
.home-v2 .home-urgence h2 { color: #fff; font-size: 40px; margin-bottom: 24px; }
.home-v2 .home-urgence-phone { display: inline-flex; align-items: center; gap: 14px; color: #fff; font-size: 28px; font-weight: 800; text-decoration: none; transition: 0.2s; }
.home-v2 .home-urgence-phone i { font-size: 22px; color: var(--accent-red); }
.home-v2 .home-urgence-phone:hover { color: var(--light-blue); }
.home-v2 .home-urgence-img { max-width: 100%; display: block; margin: 0 auto; }

/* =========================================================
 PAGES INTERNES (.page-v2) — design system des pages de contenu
 ========================================================= */
.page-v2 { color: var(--text-gray); font-family: 'Open Sans', sans-serif; }
.page-v2 h1, .page-v2 h2, .page-v2 h3, .page-v2 h4, .page-v2 h5 { font-family: 'Montserrat', sans-serif; color: var(--primary-blue); font-weight: 700; }

/* Hero de page */
.v2 .page-hero { background: linear-gradient(rgba(0,39,92,0.9), rgba(0,39,92,0.94)), url('/assets/images/fond_form5.jpg') center/cover; padding: 64px 0; text-align: center; }
.v2 .page-hero h1 { color: #fff; font-size: 40px; margin-bottom: 14px; }
.v2 .page-hero .page-hero-sub { color: var(--light-blue); max-width: 760px; margin: 0 auto 22px; font-size: 17px; }
.v2 .page-hero-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; list-style: none; padding: 0; margin: 0; }
.v2 .page-hero-links a { display: inline-block; padding: 7px 16px; border-radius: 50px; background: rgba(255,255,255,0.12); color: #fff; text-decoration: none; font-size: 14px; font-weight: 600; transition: 0.2s; }
.v2 .page-hero-links a:hover { background: var(--medium-blue); }

/* Corps d'article */
.page-v2 .article > h2 { font-size: 28px; margin: 38px 0 16px; }
.page-v2 .article > *:first-child { margin-top: 0; }
.page-v2 .article h3 { font-size: 20px; margin: 22px 0 12px; }
.page-v2 .article p { line-height: 1.8; margin-bottom: 16px; }
.page-v2 .article .lead-text { font-size: 17px; color: var(--text-dark); }
.page-v2 .article ul.check { list-style: none; padding-left: 0; margin: 0 0 18px; }
.page-v2 .article ul.check li { position: relative; padding-left: 28px; margin-bottom: 10px; line-height: 1.7; }
.page-v2 .article ul.check li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--light-blue); position: absolute; left: 0; top: 3px; font-size: 13px; }
.page-v2 .article ol { padding-left: 18px; }
.page-v2 .article ol li { margin-bottom: 14px; line-height: 1.7; }

/* Bandeau d'atouts */
.page-v2 .stat-band { background: var(--medium-blue); border-radius: 12px; padding: 34px 16px; }
.page-v2 .stat-item { text-align: center; color: #fff; padding: 10px; }
.page-v2 .stat-item i { font-size: 40px; color: #fff; margin-bottom: 14px; display: block; }
.page-v2 .stat-item span { display: block; font-weight: 600; font-size: 15px; }

/* Cartes info */
.page-v2 .info-card { background: #fff; border: 1px solid #eee; border-radius: 10px; overflow: hidden; height: 100%; transition: 0.3s; }
.page-v2 .info-card:hover { box-shadow: 0 12px 28px rgba(0,0,0,0.1); transform: translateY(-4px); border-color: var(--light-blue); }
.page-v2 .info-card img { width: 100%; height: 175px; object-fit: cover; background: var(--bg-light); }
.page-v2 .info-card .info-card-body { padding: 14px 18px; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.page-v2 .info-card .info-card-body strong { color: var(--primary-blue); }
.page-v2 .info-card .info-card-body a { color: var(--medium-blue); font-weight: 600; text-decoration: none; font-size: 14px; white-space: nowrap; transition: 0.3s; }
.page-v2 .info-card .info-card-body a:hover { color: var(--light-blue); }

/* Bande CTA colorée */
.page-v2 .cta-band { border-radius: 12px; padding: 46px 30px; text-align: center; color: #fff; }
.page-v2 .cta-band.cta-blue { background: linear-gradient(135deg, var(--primary-blue), var(--medium-blue)); }
.page-v2 .cta-band.cta-red { background: linear-gradient(135deg, var(--accent-red), var(--accent-red-hover)); }
.page-v2 .cta-band .cta-kicker { text-transform: uppercase; letter-spacing: 1px; font-weight: 700; font-size: 13px; opacity: 0.85; display: block; margin-bottom: 8px; }
.page-v2 .cta-band h2 { color: #fff; font-size: 26px; margin-bottom: 14px; }
.page-v2 .cta-band p { max-width: 680px; margin: 0 auto 22px; opacity: 0.95; }
.page-v2 .cta-band .btn-cta { display: inline-block; background: #fff; color: var(--primary-blue); font-weight: 700; padding: 12px 28px; border-radius: 6px; text-decoration: none; transition: 0.2s; }
.page-v2 .cta-band.cta-red .btn-cta { color: var(--accent-red); }
.page-v2 .cta-band .btn-cta:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }

/* Lien inline de réservation d'entretien */
.page-v2 .link-rdv { color: var(--medium-blue); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.page-v2 .link-rdv:hover { color: var(--light-blue); }
.page-v2 .link-rdv .fa-calendar-check { font-size: 0.9em; margin-right: 4px; color: var(--accent-red); }

/* Sidebar */
.page-v2 .sidebar-widget { background: #fff; border: 1px solid #eee; border-radius: 10px; padding: 24px; margin-bottom: 28px; }
.page-v2 .sidebar-widget .widget-heading { font-size: 18px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--bg-light); color: var(--primary-blue); }
.page-v2 .service-nav { list-style: none; padding: 0; margin: 0; }
.page-v2 .service-nav li a { display: block; padding: 11px 16px; border-radius: 6px; color: var(--primary-blue); font-weight: 600; text-decoration: none; margin-bottom: 6px; transition: 0.2s; background: var(--bg-light); }
.page-v2 .service-nav li a:hover, .page-v2 .service-nav li a.active { background: var(--medium-blue); color: #fff; }
.page-v2 .widget-post { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.page-v2 .widget-post img { width: 64px; height: 64px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.page-v2 .widget-post a { color: var(--primary-blue); font-weight: 600; text-decoration: none; font-size: 14px; line-height: 1.4; transition: 0.3s; }
.page-v2 .widget-post a:hover { color: var(--medium-blue); }
.page-v2 .highlight-box { background: var(--bg-light); border-left: 4px solid var(--light-blue); border-radius: 8px; padding: 22px; margin-bottom: 28px; }
.page-v2 .highlight-box h3 { font-size: 18px; margin-bottom: 12px; color: var(--primary-blue); }
.page-v2 .highlight-box img { max-width: 70px; }

/* Encart urgence sidebar */
.page-v2 .urgence-box { background: var(--primary-blue); color: #fff; border-radius: 10px; padding: 28px 24px; text-align: center; }
.page-v2 .urgence-box i { font-size: 34px; color: var(--accent-red); margin-bottom: 12px; }
.page-v2 .urgence-box h3 { color: #fff; font-size: 18px; margin-bottom: 14px; }
.page-v2 .urgence-box a { color: #fff; font-size: 22px; font-weight: 800; text-decoration: none; transition: 0.3s; }
.page-v2 .urgence-box a:hover { color: var(--light-blue); }

/* Accordéon (Bootstrap) restylé */
.page-v2 .accordion-button { font-family: 'Montserrat', sans-serif; font-weight: 600; color: var(--primary-blue); }
.page-v2 .accordion-button:not(.collapsed) { background: var(--bg-light); color: var(--medium-blue); box-shadow: none; }
.page-v2 .accordion-button:focus { box-shadow: none; border-color: #eee; }

/* Modales : titres aux couleurs de marque */
.page-v2 .modal-title, .v2 .modal-title { font-family: 'Montserrat', sans-serif; color: var(--primary-blue); }

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
  .v2 .contact-info-blocks { display: none; }
  .v2 .nav-links { display: none; }
  .v2 .mobile-toggle { display: block; }
  .v2 .header-ctas { display: none; }
  .v2 .middle-header { display: none; }
  .v2 .nav-mobile-logo { display: inline-flex; }
  .v2 .nav-wrapper { border-top: none; }
  .home-v2 .process-item::after { display: none; }
  .home-v2 .hero-intro { text-align: center; margin-bottom: 16px; }
  .home-v2 .hero-intro h1 { font-size: 32px; }
  .home-v2 .hero-intro p { margin-left: auto; margin-right: auto; }
  .home-v2 .hero-trust { justify-content: center; }
  .home-v2 .hero-panel-body { padding: 26px 20px; }
  .v2 .page-hero h1 { font-size: 30px; }
}

@media (max-width: 575px) {
  .home-v2 .hero-intro h1 { font-size: 28px; }
  .home-v2 .hero-entretien-list { grid-template-columns: 1fr; }
}
```eof