/* Palette : Bleu ardoise + Bleu ciel (Toiture / Étanchéité / Eau) */
        :root {
            --primary-dark: #334155;
            --primary: #475569;
            --primary-light: #64748b;
            --primary-pale: #f1f5f9;
            --accent: #0284c7;
            --accent-hover: #0369a1;
            --accent-light: #e0f2fe;
            --cta: #ea580c;
            --cta-hover: #c2410c;
            --text-dark: #1e293b;
            --text-light: #94a3b8;
            --footer-bg: #1e293b;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif; color: var(--text-dark); line-height: 1.6; background: #f8f9fa; }

        header { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); color: #fff; padding: 15px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
        header .container { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 1.4rem; font-weight: 700; }
        .logo span { color: var(--text-light); }
        .header-cta { background: var(--cta); color: #fff; padding: 12px 28px; border-radius: 5px; text-decoration: none; font-weight: 700; transition: background 0.3s; font-size: 0.95rem; }
        .header-cta:hover { background: var(--cta-hover); }
        .header-phone { color: #fff; text-decoration: none; font-size: 0.95rem; font-weight: 600; display: flex; align-items: center; gap: 5px; }
        .header-phone:hover { color: var(--text-light); }
        .header-phone svg { width: 16px; height: 16px; fill: currentColor; }
        .header-right { display: flex; align-items: center; gap: 15px; }
        .container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

        .hero { background: linear-gradient(135deg, var(--primary-dark) 0%, #3d4f63 50%, var(--primary) 100%); color: #fff; padding: 50px 0; position: relative; overflow: hidden; }
        .hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
        .hero-left { text-align: left; }
        .hero-left h1 { font-size: 2.8rem; margin-bottom: 15px; line-height: 1.15; }
        .hero-left h1 span { color: #38bdf8; }
        .hero-left p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 20px; }
        .hero-badges { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
        .hero-badge { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; }
        .hero-badge svg { width: 22px; height: 22px; fill: var(--text-light); }
        .hero-right { background: #fff; border-radius: 10px; padding: 30px; box-shadow: 0 10px 40px rgba(0,0,0,0.2); }
        .form-step-indicator { text-align: center; font-size: 0.78rem; color: #16a34a; font-weight: 600; margin-bottom: 10px; display: flex; align-items: center; justify-content: center; gap: 5px; background: #f0fdf4; padding: 5px 10px; border-radius: 4px; border: 1px solid #bbf7d0; }
        .hero-right h2 { color: var(--primary-dark); font-size: 1.3rem; margin-bottom: 5px; text-align: center; }
        .hero-right .form-subtitle { color: #666; font-size: 0.9rem; text-align: center; margin-bottom: 15px; }
        .hero-trust { display: flex; justify-content: center; gap: 15px; margin-top: 12px; flex-wrap: wrap; }
        .hero-trust span { font-size: 0.75rem; color: #888; display: flex; align-items: center; gap: 4px; }
        .hero-trust svg { width: 14px; height: 14px; fill: var(--accent); }
        .hero-counter { text-align: center; margin-top: 10px; font-size: 0.8rem; color: var(--primary-dark); font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 6px; background: #fef3c7; padding: 6px 12px; border-radius: 5px; }
        .counter-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; display: inline-block; animation: pulse-dot 1.5s ease-in-out infinite; }
        @keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }

        .trust-bar { background: #fff; padding: 20px 0; border-bottom: 1px solid #e0e0e0; }
        .trust-items { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
        .trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: #555; }
        .trust-item strong { color: var(--primary-dark); }

        .advantages { padding: 60px 0; background: #fff; }
        .advantages h2 { text-align: center; font-size: 1.8rem; margin-bottom: 40px; color: var(--primary-dark); }
        .advantages-intro { display: flex; align-items: center; gap: 30px; margin-bottom: 40px; }
        .advantages-intro img { width: 350px; max-width: 100%; height: auto; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
        .advantages-intro-text { flex: 1; color: #555; font-size: 1.05rem; line-height: 1.7; }
        .advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .advantage-card { background: var(--primary-pale); padding: 30px; border-radius: 10px; border-left: 4px solid var(--accent); }
        .advantage-card h3 { color: var(--primary-dark); margin-bottom: 10px; font-size: 1.15rem; }
        .advantage-card p { color: #555; font-size: 0.95rem; }

        .realisations { padding: 60px 0; background: var(--accent-light); }
        .realisations h2 { text-align: center; font-size: 1.8rem; margin-bottom: 10px; color: var(--primary-dark); }
        .realisations .section-subtitle { text-align: center; color: #666; margin-bottom: 40px; font-size: 1.05rem; }
        .realisations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; max-width: 1000px; margin: 0 auto; }
        .realisation-card { border-radius: 10px; overflow: hidden; box-shadow: 0 3px 15px rgba(0,0,0,0.08); background: #fff; }
        .realisation-card img { width: 100%; height: 200px; object-fit: cover; }
        .realisation-card .caption { padding: 15px; }
        .realisation-card .caption h3 { font-size: 0.95rem; color: var(--primary-dark); margin-bottom: 5px; }
        .realisation-card .caption p { font-size: 0.82rem; color: #777; }
        .realisation-card .caption .tag { display: inline-block; background: var(--accent); color: #fff; font-size: 0.7rem; padding: 2px 8px; border-radius: 3px; font-weight: 600; margin-top: 8px; }

        .testimonials { padding: 60px 0; background: var(--primary-pale); }
        .testimonials h2 { text-align: center; font-size: 1.8rem; margin-bottom: 10px; color: var(--primary-dark); }
        .testimonials .section-subtitle { text-align: center; color: #666; margin-bottom: 40px; font-size: 1.05rem; }
        .rating-aggregate { text-align: center; margin-bottom: 35px; }
        .rating-stars { font-size: 2rem; color: #f59e0b; letter-spacing: 3px; }
        .rating-score { font-size: 2.5rem; font-weight: 800; color: var(--primary-dark); line-height: 1; margin: 5px 0; }
        .rating-score span { font-size: 1.2rem; font-weight: 400; color: var(--primary-light); }
        .rating-count { font-size: 0.9rem; color: #888; }
        .rating-count strong { color: var(--primary-dark); }
        .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; max-width: 1000px; margin: 0 auto; }
        .testimonial-card { background: #fff; padding: 25px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
        .testimonial-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 10px; }
        .testimonial-card blockquote { color: #555; font-size: 0.93rem; line-height: 1.6; font-style: italic; margin-bottom: 15px; }
        .testimonial-author { display: flex; align-items: center; gap: 10px; }
        .testimonial-author .initials { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; }
        .testimonial-author .info { font-size: 0.85rem; }
        .testimonial-author .info strong { color: var(--primary-dark); }
        .testimonial-author .info span { color: #999; }

        .how-it-works { padding: 60px 0; background: #fff; }
        .how-it-works h2 { text-align: center; font-size: 1.8rem; margin-bottom: 40px; color: var(--primary-dark); }
        .steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; max-width: 900px; margin: 0 auto; }
        .step { text-align: center; padding: 25px; }
        .step-number { width: 50px; height: 50px; background: var(--accent); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 700; margin: 0 auto 15px; }
        .step h3 { color: var(--primary-dark); margin-bottom: 8px; }
        .step p { color: #666; font-size: 0.9rem; }

        .faq { padding: 60px 0; background: var(--accent-light); }
        .faq h2 { text-align: center; font-size: 1.8rem; margin-bottom: 40px; color: var(--primary-dark); }
        .faq-list { max-width: 800px; margin: 0 auto; }
        .faq-item { border-bottom: 1px solid #e0e0e0; padding: 20px 0; }
        .faq-item h3 { color: var(--text-dark); font-size: 1.05rem; margin-bottom: 8px; cursor: pointer; }
        .faq-item p { color: #555; font-size: 0.95rem; line-height: 1.7; }

        .team { padding: 60px 0; background: var(--primary-pale); }
        .team h2 { text-align: center; font-size: 1.8rem; margin-bottom: 10px; color: var(--primary-dark); }
        .team .section-subtitle { text-align: center; color: #666; margin-bottom: 40px; font-size: 1.05rem; max-width: 700px; margin-left: auto; margin-right: auto; }
        .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 25px; max-width: 900px; margin: 0 auto; }
        .team-member { text-align: center; background: #fff; padding: 25px 15px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
        .team-member img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin-bottom: 12px; border: 3px solid var(--accent); }
        .team-member h3 { font-size: 1rem; color: var(--primary-dark); margin-bottom: 3px; }
        .team-member .role { font-size: 0.85rem; color: var(--accent); font-weight: 600; margin-bottom: 6px; }
        .team-member p { font-size: 0.82rem; color: #777; line-height: 1.4; }

        .guide { padding: 60px 0; background: #fff; }
        .guide h2 { text-align: center; font-size: 1.8rem; margin-bottom: 40px; color: var(--primary-dark); }
        .guide-content { max-width: 850px; margin: 0 auto; }
        .guide-content h3 { font-size: 1.2rem; color: var(--primary-dark); margin: 30px 0 12px; padding-left: 15px; border-left: 4px solid var(--accent); }
        .guide-content p { color: #555; font-size: 0.95rem; line-height: 1.8; margin-bottom: 12px; }
        .guide-content ul { margin: 10px 0 20px 25px; color: #555; font-size: 0.95rem; line-height: 1.8; }
        .guide-content li { margin-bottom: 6px; }

        .comparatif { padding: 60px 0; background: var(--accent-light); }
        .comparatif h2 { text-align: center; font-size: 1.8rem; margin-bottom: 10px; color: var(--primary-dark); }
        .comparatif .section-subtitle { text-align: center; color: #666; margin-bottom: 30px; font-size: 1.05rem; }
        .comparatif-table { max-width: 900px; margin: 0 auto; overflow-x: auto; }
        .comparatif-table table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 15px rgba(0,0,0,0.06); }
        .comparatif-table th { background: var(--primary-dark); color: #fff; padding: 14px 18px; text-align: left; font-size: 0.9rem; }
        .comparatif-table td { padding: 12px 18px; border-bottom: 1px solid #eee; font-size: 0.9rem; color: #555; }
        .comparatif-table tr:last-child td { border-bottom: none; }
        .comparatif-table tr:hover td { background: var(--primary-pale); }
        .comparatif-note { max-width: 900px; margin: 20px auto 0; font-size: 0.85rem; color: #888; text-align: center; }

        .final-cta { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); color: #fff; padding: 50px 0; text-align: center; }
        .final-cta h2 { font-size: 1.8rem; margin-bottom: 15px; }
        .final-cta-benefits { display: flex; flex-direction: column; gap: 10px; align-items: center; margin-bottom: 25px; }
        .final-cta-benefit { display: flex; align-items: center; gap: 8px; font-size: 1rem; opacity: 0.95; }
        .final-cta-benefit svg { fill: #38bdf8; flex-shrink: 0; }
        .final-cta-phone { margin-top: 20px; font-size: 0.95rem; opacity: 0.85; }
        .final-cta-phone span { display: block; margin-bottom: 5px; }
        .final-cta-phone a { color: #fff; font-size: 1.3rem; font-weight: 700; text-decoration: none; letter-spacing: 1px; }
        .final-cta-phone a:hover { color: #38bdf8; }
        .cta-button { display: inline-block; background: var(--cta); color: #fff; padding: 16px 44px; border-radius: 6px; text-decoration: none; font-weight: 700; font-size: 1.15rem; transition: background 0.3s, transform 0.2s; box-shadow: 0 4px 14px rgba(234,88,12,0.3); }
        .cta-button:hover { background: var(--cta-hover); transform: translateY(-2px); }

        .mid-cta { text-align: center; padding: 40px 0; background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); }
        .mid-cta p { color: #fff; font-size: 1.1rem; margin-bottom: 18px; opacity: 0.95; }
        .mid-cta .cta-button { font-size: 1.05rem; padding: 14px 36px; }

        /* Sticky CTA mobile */
        .sticky-cta-mobile { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 99; background: var(--primary-dark); padding: 10px 15px; box-shadow: 0 -3px 15px rgba(0,0,0,0.2); }
        .sticky-cta-mobile .sticky-inner { display: flex; align-items: center; justify-content: center; gap: 10px; max-width: 500px; margin: 0 auto; }
        .sticky-cta-mobile .sticky-btn { flex: 1; background: var(--cta); color: #fff; text-align: center; padding: 12px 15px; border-radius: 5px; text-decoration: none; font-weight: 700; font-size: 0.95rem; }
        .sticky-cta-mobile .sticky-phone { width: 48px; height: 48px; background: #22c55e; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; flex-shrink: 0; }
        .sticky-cta-mobile .sticky-phone svg { width: 22px; height: 22px; fill: #fff; }
        @media (max-width: 768px) { .sticky-cta-mobile { display: block; } footer { padding-bottom: 80px; } }

        footer { background: var(--footer-bg); color: #999; padding: 30px 0; text-align: center; font-size: 0.85rem; }
        footer a { color: var(--text-light); text-decoration: none; }
        footer a:hover { text-decoration: underline; }
        .footer-links { margin-bottom: 10px; }
        .footer-links a { margin: 0 15px; }

        @media (max-width: 768px) {
            .hero-layout { grid-template-columns: 1fr; gap: 25px; }
            .hero-left { text-align: center; }
            .hero-left h1 { font-size: 2rem; }
            .hero-left p { font-size: 1rem; }
            .hero-badges { flex-direction: row; flex-wrap: wrap; justify-content: center; }
            .hero-right { padding: 20px; }
            .trust-items { gap: 20px; }
            header .container { flex-direction: column; gap: 10px; }
            .advantages-intro { flex-direction: column; } .advantages-intro img { width: 100%; }
            .team-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 15px; }
            .comparatif-table { font-size: 0.8rem; } .header-phone { display: none; }
        }

.page-body{max-width:920px;margin:0 auto;padding:44px 20px;background:#fff}.page-body h1{font-size:2rem;color:#334155;margin-bottom:24px}.page-body h2{font-size:1.25rem;color:#334155;margin:28px 0 10px}.page-body p,.page-body li{font-size:.98rem;margin-bottom:10px}.page-body ul{margin-left:22px;margin-bottom:16px}.page-body a{color:#0284c7}.page-body .breadcrumb{font-size:.85rem;margin-bottom:18px;color:#64748b}