/* L'ARTISAN PAR EXCELLENCE - Design Urgence Premium */
:root {
    --red: #c41e3a;
    --red-dark: #9a1830;
    --red-light: #e8394a;
    --black: #1a1a1a;
    --black-light: #2d2d2d;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #e9ecef;
    --gray-600: #495057;
    --gray-700: #343a40;
    --gray-800: #212529;
    --text: #1a1a1a;
    --text-muted: #495057;
    --font: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 8px;
    --radius-lg: 16px;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--font);font-size:16px;line-height:1.7;color:var(--text);background:var(--white)}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}
button{font-family:inherit;cursor:pointer;border:none;background:none}
ul,ol{list-style:none}
.container{max-width:1200px;margin:0 auto;padding:0 24px}

/* HEADER - Bandeau rouge urgence */
.header{background:var(--white);box-shadow:var(--shadow);position:sticky;top:0;z-index:1000}
.alert-bar{background:var(--red);color:var(--white);padding:10px 0;font-size:14px;font-weight:600;text-align:center}
.alert-bar i{margin-right:8px}
.header-main{padding:16px 0}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:24px}

/* LOGO - Bouclier avec éclair */
.logo{display:flex;align-items:center;gap:12px}
.logo-icon{width:48px;height:48px;background:linear-gradient(135deg,var(--red),var(--red-dark));border-radius:var(--radius);display:flex;align-items:center;justify-content:center;position:relative}
.logo-icon i{color:var(--white);font-size:24px}
.logo-icon::after{content:'';position:absolute;inset:2px;border:2px solid rgba(255,255,255,0.3);border-radius:6px}
.logo-text{line-height:1.2}
.logo-name{font-size:20px;font-weight:800;color:var(--black);letter-spacing:-0.5px}
.logo-tagline{font-size:11px;color:var(--gray-700);text-transform:uppercase;letter-spacing:1.5px;font-weight:600}

/* NAV */
.nav{display:none;align-items:center;gap:4px}
@media(min-width:1024px){.nav{display:flex}}
.nav-link{padding:10px 16px;font-size:14px;font-weight:500;color:var(--gray-700);border-radius:var(--radius);transition:all 0.2s}
.nav-link:hover{background:var(--gray-50);color:var(--red)}
.header-cta{display:flex;align-items:center;gap:12px}
.btn-red{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:14px 28px;background:var(--red);color:var(--white);font-size:14px;font-weight:700;border-radius:var(--radius);transition:all 0.3s;box-shadow:0 4px 12px rgba(196,30,58,0.3)}
.btn-red:hover{background:var(--red-dark);transform:translateY(-2px);box-shadow:0 6px 20px rgba(196,30,58,0.4)}
.btn-outline-dark{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:14px 28px;background:transparent;color:var(--black);font-size:14px;font-weight:600;border-radius:var(--radius);border:2px solid var(--black);transition:all 0.3s}
.btn-outline-dark:hover{background:var(--black);color:var(--white)}
.btn-white{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:14px 28px;background:var(--white);color:var(--red);font-size:14px;font-weight:700;border-radius:var(--radius);transition:all 0.3s}
.btn-white:hover{background:var(--gray-50)}
.hide-mobile{display:none}
@media(min-width:768px){.hide-mobile{display:inline-flex}}

/* MENU MOBILE */
.menu-btn{display:flex;width:44px;height:44px;align-items:center;justify-content:center;background:var(--gray-50);border-radius:var(--radius)}
@media(min-width:1024px){.menu-btn{display:none}}
.menu-btn i{font-size:20px;color:var(--black)}
.mobile-menu{display:none;position:fixed;inset:0;background:var(--white);z-index:1001;flex-direction:column}
.mobile-menu.open{display:flex}
.mobile-menu-header{display:flex;justify-content:space-between;align-items:center;padding:16px 24px;border-bottom:1px solid var(--gray-100)}
.mobile-menu-close{width:44px;height:44px;display:flex;align-items:center;justify-content:center;font-size:24px}
.mobile-menu-nav{flex:1;padding:24px;display:flex;flex-direction:column;gap:8px}
.mobile-menu-link{display:flex;align-items:center;gap:12px;padding:16px;font-size:16px;font-weight:500;color:var(--black);border-radius:var(--radius);transition:background 0.2s}
.mobile-menu-link:hover{background:var(--gray-50)}
.mobile-menu-link i{width:24px;color:var(--red)}
.mobile-menu-footer{padding:24px;border-top:1px solid var(--gray-100)}
.mobile-menu-footer .btn-red{width:100%;padding:18px}

/* HERO - Split diagonal */
.hero{position:relative;min-height:90vh;display:flex;align-items:center;background:var(--black);overflow:hidden}
.hero::before{content:'';position:absolute;top:0;right:0;width:50%;height:100%;background:var(--red);clip-path:polygon(20% 0,100% 0,100% 100%,0 100%)}
@media(max-width:1024px){.hero::before{display:none}}
.hero-content{position:relative;z-index:2;max-width:600px}
.hero-badge{display:inline-flex;align-items:center;gap:8px;padding:8px 16px;background:var(--red);color:var(--white);font-size:12px;font-weight:700;border-radius:50px;margin-bottom:24px;text-transform:uppercase;letter-spacing:1px}
.hero-badge i{font-size:8px;animation:pulse 1.5s infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:0.5}}
.hero-title{font-size:clamp(40px,6vw,72px);font-weight:800;line-height:1.05;color:var(--white);margin-bottom:24px}
.hero-title span{color:var(--red-light)}
.hero-subtitle{font-size:18px;line-height:1.8;color:rgba(255,255,255,0.8);margin-bottom:36px;max-width:500px}
.hero-cta{display:flex;flex-wrap:wrap;gap:16px;margin-bottom:48px}
.hero-phone{font-size:32px;font-weight:800;color:var(--white);display:flex;align-items:center;gap:12px}
.hero-phone i{color:var(--red-light)}
.hero-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;padding-top:40px;border-top:1px solid rgba(255,255,255,0.1)}
.hero-stat-value{font-size:36px;font-weight:800;color:var(--white)}
.hero-stat-label{font-size:13px;color:rgba(255,255,255,0.6);margin-top:4px}

/* GARANTIES - Bandeau horizontal */
.guarantees{background:var(--gray-50);padding:32px 0;border-bottom:1px solid var(--gray-100)}
.guarantees-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
@media(min-width:768px){.guarantees-grid{grid-template-columns:repeat(4,1fr)}}
.guarantee{display:flex;align-items:center;gap:16px}
.guarantee-icon{width:52px;height:52px;background:var(--white);border:2px solid var(--gray-100);border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--red);font-size:20px;flex-shrink:0}
.guarantee-text{font-size:14px;font-weight:600;color:var(--black);line-height:1.4}

/* SECTIONS */
.section{padding:100px 0}
.section-alt{background:var(--gray-50)}
.section-dark{background:var(--black);color:var(--white)}
.section-header{text-align:center;margin-bottom:64px}
.section-badge{display:inline-flex;align-items:center;gap:8px;padding:8px 20px;background:rgba(196,30,58,0.1);color:var(--red);font-size:12px;font-weight:700;border-radius:50px;margin-bottom:16px;text-transform:uppercase;letter-spacing:2px}
.section-dark .section-badge{background:rgba(255,255,255,0.1);color:var(--white)}
.section-title{font-size:clamp(32px,4vw,48px);font-weight:800;color:var(--black);line-height:1.2;margin-bottom:16px}
.section-dark .section-title{color:var(--white)}
.section-subtitle{font-size:17px;color:var(--text-muted);max-width:600px;margin:0 auto}
.section-dark .section-subtitle{color:rgba(255,255,255,0.7)}

/* SERVICES - Grandes cartes avec hover rouge */
.services-grid{display:grid;gap:24px}
@media(min-width:768px){.services-grid{grid-template-columns:repeat(3,1fr)}}
.service-card{background:var(--white);border-radius:var(--radius-lg);padding:40px 32px;border:2px solid var(--gray-100);transition:all 0.4s;position:relative;overflow:hidden}
.service-card::before{content:'';position:absolute;bottom:0;left:0;right:0;height:4px;background:var(--red);transform:scaleX(0);transition:transform 0.4s}
.service-card:hover{border-color:var(--red);transform:translateY(-8px);box-shadow:var(--shadow-lg)}
.service-card:hover::before{transform:scaleX(1)}
.service-icon{width:72px;height:72px;background:linear-gradient(135deg,var(--red),var(--red-dark));border-radius:var(--radius-lg);display:flex;align-items:center;justify-content:center;font-size:28px;color:var(--white);margin-bottom:24px}
.service-card h3{font-size:24px;font-weight:700;color:var(--black);margin-bottom:12px}
.service-card>p{font-size:15px;color:var(--text-muted);margin-bottom:24px;line-height:1.7}
.service-features{margin-bottom:24px}
.service-features li{padding:10px 0;font-size:14px;color:var(--gray-700);display:flex;align-items:center;gap:12px;border-bottom:1px solid var(--gray-100)}
.service-features li:last-child{border-bottom:none}
.service-features li i{color:var(--red);font-size:12px}
.service-price{display:flex;align-items:baseline;gap:4px}
.service-price-value{font-size:32px;font-weight:800;color:var(--red)}
.service-price-label{font-size:14px;color:var(--text-muted)}

/* POURQUOI NOUS - Grille icônes */
.why-grid{display:grid;gap:32px}
@media(min-width:768px){.why-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.why-grid{grid-template-columns:repeat(4,1fr)}}
.why-card{text-align:center;padding:32px 24px}
.why-icon{width:80px;height:80px;margin:0 auto 20px;background:rgba(196,30,58,0.1);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:32px;color:var(--red)}
.why-card h3{font-size:18px;font-weight:700;color:var(--black);margin-bottom:8px}
.why-card p{font-size:14px;color:var(--text-muted);line-height:1.6}

/* TARIFS - Cards empilées */
.pricing-grid{display:grid;gap:24px;max-width:1000px;margin:0 auto}
@media(min-width:768px){.pricing-grid{grid-template-columns:repeat(3,1fr)}}
.pricing-card{background:var(--white);border-radius:var(--radius-lg);padding:32px;border:2px solid var(--gray-100);text-align:center;transition:all 0.3s}
.pricing-card.featured{border-color:var(--red);position:relative}
.pricing-card.featured::before{content:'POPULAIRE';position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:var(--red);color:var(--white);font-size:11px;font-weight:700;padding:4px 16px;border-radius:50px}
.pricing-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.pricing-label{font-size:13px;font-weight:600;color:var(--text-muted);text-transform:uppercase;letter-spacing:1px;margin-bottom:8px}
.pricing-value{font-size:48px;font-weight:800;color:var(--black);margin-bottom:8px}
.pricing-card.featured .pricing-value{color:var(--red)}
.pricing-desc{font-size:14px;color:var(--text-muted);margin-bottom:20px}
.pricing-details{text-align:left;margin-bottom:24px}
.pricing-details li{padding:8px 0;font-size:14px;color:var(--gray-700);display:flex;align-items:center;gap:10px;border-bottom:1px dashed var(--gray-100)}
.pricing-details li:last-child{border-bottom:none}
.pricing-details li i{color:var(--red);font-size:10px}

/* ZONES - Pills cliquables */
.zones-intro{text-align:center;margin-bottom:48px}
.zones-intro p{font-size:17px;color:var(--text-muted)}
.zones-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:12px;margin-bottom:48px}
.zone-pill{display:inline-flex;align-items:center;gap:8px;padding:12px 24px;background:var(--white);border:2px solid var(--gray-100);border-radius:50px;font-size:14px;font-weight:600;color:var(--gray-700);transition:all 0.3s}
.zone-pill:hover{border-color:var(--red);color:var(--red)}
.zone-pill.main{background:var(--red);border-color:var(--red);color:var(--white)}
.zone-pill i{font-size:12px}
.zones-depts{display:grid;gap:16px}
@media(min-width:768px){.zones-depts{grid-template-columns:repeat(4,1fr)}}
.zone-dept{background:var(--white);border-radius:var(--radius);padding:24px;border:1px solid var(--gray-100);text-align:center;transition:all 0.3s}
.zone-dept:hover{border-color:var(--red);box-shadow:var(--shadow)}
.zone-dept h4{font-size:16px;font-weight:700;color:var(--black);margin-bottom:4px}
.zone-dept p{font-size:13px;color:var(--text-muted)}

/* TÉMOIGNAGES - Cartes sur fond sombre */
.testimonials-grid{display:grid;gap:24px}
@media(min-width:768px){.testimonials-grid{grid-template-columns:repeat(3,1fr)}}
.testimonial-card{background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.1);border-radius:var(--radius-lg);padding:32px}
.testimonial-stars{display:flex;gap:4px;color:var(--red-light);margin-bottom:16px}
.testimonial-text{font-size:15px;line-height:1.8;color:rgba(255,255,255,0.9);margin-bottom:24px}
.testimonial-author{display:flex;align-items:center;gap:12px;padding-top:16px;border-top:1px solid rgba(255,255,255,0.1)}
.testimonial-avatar{width:44px;height:44px;background:var(--red);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:16px;font-weight:700;color:var(--white)}
.testimonial-name{font-size:15px;font-weight:600;color:var(--white)}
.testimonial-location{font-size:13px;color:rgba(255,255,255,0.5)}

/* FAQ - Accordéon minimaliste */
.faq-container{max-width:800px;margin:0 auto}
.faq-item{border-bottom:1px solid var(--gray-100)}
.faq-question{width:100%;padding:24px 0;display:flex;justify-content:space-between;align-items:center;font-size:17px;font-weight:600;color:var(--black);text-align:left;background:transparent}
.faq-question:hover{color:var(--red)}
.faq-question i{color:var(--red);transition:transform 0.3s}
.faq-item.open .faq-question i{transform:rotate(180deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height 0.4s ease}
.faq-answer-content{padding-bottom:24px;font-size:15px;color:var(--text-muted);line-height:1.8}

/* CTA FINAL */
.cta-section{padding:100px 0;background:linear-gradient(135deg,var(--red) 0%,var(--red-dark) 100%);text-align:center;position:relative;overflow:hidden}
.cta-section::before{content:'';position:absolute;top:-50%;right:-20%;width:600px;height:600px;background:rgba(255,255,255,0.05);border-radius:50%}
.cta-content{position:relative;z-index:2}
.cta-icon{width:100px;height:100px;margin:0 auto 32px;background:rgba(255,255,255,0.1);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:40px;color:var(--white)}
.cta-title{font-size:clamp(32px,5vw,52px);font-weight:800;color:var(--white);margin-bottom:16px}
.cta-subtitle{font-size:18px;color:rgba(255,255,255,0.9);margin-bottom:32px;max-width:500px;margin-left:auto;margin-right:auto}
.cta-phone{font-size:clamp(28px,4vw,44px);font-weight:800;color:var(--white);margin-bottom:32px}
.cta-phone a{color:var(--white);display:inline-flex;align-items:center;gap:16px}
.cta-buttons{display:flex;flex-wrap:wrap;justify-content:center;gap:16px}

/* FOOTER */
.footer{background:var(--black);color:var(--white);padding:80px 0 0}
.footer-grid{display:grid;gap:48px;padding-bottom:48px;border-bottom:1px solid rgba(255,255,255,0.1)}
@media(min-width:768px){.footer-grid{grid-template-columns:1.5fr 1fr 1fr 1fr}}
.footer-brand .logo{margin-bottom:20px}
.footer-brand .logo-name{color:var(--white)}
.footer-brand .logo-tagline{color:rgba(255,255,255,0.5)}
.footer-brand>p{font-size:14px;line-height:1.8;color:rgba(255,255,255,0.6);max-width:280px}
.footer-title{font-size:14px;font-weight:700;color:var(--white);margin-bottom:20px;text-transform:uppercase;letter-spacing:1px}
.footer-links{display:flex;flex-direction:column;gap:12px}
.footer-links a{font-size:14px;color:rgba(255,255,255,0.6);transition:color 0.2s}
.footer-links a:hover{color:var(--red-light)}
.footer-contact-item{display:flex;align-items:flex-start;gap:12px;margin-bottom:16px}
.footer-contact-item i{color:var(--red-light);margin-top:3px;width:16px}
.footer-contact-item span{font-size:14px;color:rgba(255,255,255,0.6)}
.footer-contact-item a{color:var(--white)}
.footer-contact-item a:hover{color:var(--red-light)}
.footer-bottom{padding:24px 0;display:flex;flex-direction:column;gap:12px;text-align:center}
@media(min-width:768px){.footer-bottom{flex-direction:row;justify-content:space-between;text-align:left}}
.footer-bottom p{font-size:13px;color:rgba(255,255,255,0.7)}
.footer-bottom-links{display:flex;gap:24px;justify-content:center}
@media(min-width:768px){.footer-bottom-links{justify-content:flex-start}}
.footer-bottom-links a{font-size:13px;color:rgba(255,255,255,0.7)}
.footer-bottom-links a:hover{color:var(--red-light)}

/* STICKY CTA - Bouton rouge pulsant */
.sticky-cta{position:fixed;bottom:24px;right:24px;display:flex;align-items:center;gap:10px;padding:16px 24px;background:var(--red);color:var(--white);font-weight:700;font-size:15px;border-radius:50px;box-shadow:0 4px 20px rgba(196,30,58,0.4);z-index:100;transition:all 0.3s;animation:pulse-shadow 2s infinite}
@keyframes pulse-shadow{0%,100%{box-shadow:0 4px 20px rgba(196,30,58,0.4)}50%{box-shadow:0 4px 30px rgba(196,30,58,0.6)}}
.sticky-cta:hover{transform:scale(1.05)}
.sticky-cta .cta-text{display:none}
@media(min-width:640px){.sticky-cta .cta-text{display:inline}}

/* PAGES INTERNES */
.page-hero{padding:140px 0 80px;background:var(--black);text-align:center;position:relative}
.page-hero::before{content:'';position:absolute;top:0;right:0;width:40%;height:100%;background:var(--red);clip-path:polygon(30% 0,100% 0,100% 100%,0 100%);opacity:0.1}
.page-hero-content{position:relative;z-index:2}
.page-breadcrumb{display:flex;align-items:center;justify-content:center;gap:8px;font-size:14px;color:rgba(255,255,255,0.5);margin-bottom:16px}
.page-breadcrumb a{color:var(--red-light)}
.page-hero h1{font-size:clamp(32px,5vw,52px);font-weight:800;color:var(--white);margin-bottom:16px}
.page-hero p{font-size:18px;color:rgba(255,255,255,0.7);max-width:600px;margin:0 auto}

/* CITY PAGE */
.city-section{padding:80px 0}
.city-grid{display:grid;gap:48px}
@media(min-width:1024px){.city-grid{grid-template-columns:2fr 1fr}}
.city-content h2{font-size:28px;font-weight:700;color:var(--black);margin-bottom:20px}
.city-content p{font-size:16px;color:var(--text-muted);line-height:1.8;margin-bottom:20px}
.city-content ul{margin:20px 0}
.city-content li{padding:12px 0;font-size:15px;color:var(--gray-700);display:flex;align-items:center;gap:12px;border-bottom:1px solid var(--gray-100)}
.city-content li:last-child{border-bottom:none}
.city-content li i{color:var(--red);font-size:12px}
.city-sidebar{display:flex;flex-direction:column;gap:24px}
.sidebar-card{background:var(--white);border-radius:var(--radius-lg);padding:28px;border:1px solid var(--gray-100)}
.sidebar-card.urgent{background:var(--red);border:none}
.sidebar-card h3{font-size:18px;font-weight:700;color:var(--black);margin-bottom:16px;display:flex;align-items:center;gap:10px}
.sidebar-card h3 i{color:var(--red)}
.sidebar-card.urgent h3{color:var(--white)}
.sidebar-card.urgent h3 i{color:var(--white)}
.sidebar-row{display:flex;justify-content:space-between;padding:12px 0;border-bottom:1px solid var(--gray-100);font-size:14px;color:var(--gray-700)}
.sidebar-row:last-child{border-bottom:none}
.sidebar-value{font-weight:700;color:var(--red)}
.sidebar-card.urgent .btn-white{width:100%;margin-top:16px}

/* BLOG */
.blog-grid{display:grid;gap:24px}
@media(min-width:768px){.blog-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.blog-grid{grid-template-columns:repeat(3,1fr)}}
.blog-card{background:var(--white);border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--gray-100);transition:all 0.3s}
.blog-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-lg);border-color:var(--red)}
.blog-card-img{height:180px;background:var(--black);display:flex;align-items:center;justify-content:center}
.blog-card-img i{font-size:48px;color:var(--red);opacity:0.5}
.blog-card-body{padding:24px}
.blog-card h3{font-size:18px;font-weight:700;color:var(--black);margin-bottom:8px;line-height:1.3}
.blog-card p{font-size:14px;color:var(--text-muted)}
.blog-article{padding:140px 0 80px}
.blog-article-header{max-width:800px;margin:0 auto 48px;text-align:center}
.blog-article-header h1{font-size:clamp(28px,4vw,40px);font-weight:800;color:var(--black);margin-bottom:16px}
.blog-article-content{max-width:800px;margin:0 auto}
.blog-article-content h2{font-size:24px;font-weight:700;color:var(--black);margin:40px 0 20px}
.blog-article-content p{font-size:16px;color:var(--text-muted);line-height:1.9;margin-bottom:20px}
.blog-article-content ul{margin:20px 0;padding-left:24px}
.blog-article-content li{font-size:16px;color:var(--text-muted);margin-bottom:10px;list-style:disc}
.blog-cta{background:var(--gray-50);padding:32px;border-radius:var(--radius-lg);text-align:center;margin-top:48px}
.blog-cta h3{font-size:20px;font-weight:700;color:var(--black);margin-bottom:12px}
.blog-cta p{font-size:15px;color:var(--text-muted);margin-bottom:20px}

/* RESPONSIVE */
@media(max-width:768px){.hero{min-height:auto;padding:60px 0}.hero-stats{grid-template-columns:repeat(3,1fr);gap:16px}.hero-stat-value{font-size:24px}.section{padding:60px 0}}
