/**
 * Styles - Installation de Fenêtres France
 * Mobile-first, lightweight design
 */

:root {
    --primary-color: #1b3a6b;      /* Navy professionnel */
    --primary-dark: #122850;       /* Hover navy */
    --secondary-color: #e07b39;    /* Amber CTA (Leroy Merlin, Amazon) */
    --secondary-dark: #c46830;     /* Hover amber */
    --text-color: #2d3748;         /* Charcoal doux */
    --text-light: #64748b;         /* Gris secondaire */
    --border-color: #e2e8f0;       /* Bordure subtile */
    --bg-light: #f8fafc;           /* Fond légèrement bleuté */
    --bg-white: #ffffff;
}

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

html {
    scroll-padding-top: 110px; /* Compense le header sticky (~85px) + marge visuelle */
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

h1, h2, h3, h4 { font-family: 'Libre Baskerville', serif; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: white;
    border-top: 4px solid var(--primary-color);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    margin-bottom: 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1,
header .logo {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

.contact-phone {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-phone:hover {
    text-decoration: underline;
}

.tagline {
    color: #666;
    margin-top: 5px;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Hero 2 colonnes */
.hero-two-columns {
    background: linear-gradient(135deg, rgba(27,58,107,0.88) 0%, rgba(15,36,68,0.93) 100%),
                url('/assets/images/fenetre-maison-pierre.jpg') center/cover no-repeat;
    border-radius: 0;
    margin-bottom: 0;
    padding: 50px 0;
}

.hero-two-columns .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.hero-left h1 {
    color: white;
    font-size: 32px;
    margin-bottom: 15px;
}

.hero-left h2 {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
    font-weight: normal;
}

.arguments {
    margin: 25px 0;
}

.argument {
    font-size: 16px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.reviews-widget {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fffbf0;
    border: 1px solid #fcd34d;
    border-radius: 8px;
    padding: 10px 16px;
    margin-top: 20px;
}
.reviews-stars { color: #f59e0b; font-size: 16px; letter-spacing: 1px; line-height: 1; }
.reviews-text { font-size: 13px; color: var(--text-light); margin-top: 2px; }
.reviews-text strong { color: var(--text-color); }

/* Formulaire */
.form-container {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-container h3 {
    text-align: center;
    color: white;
    background: var(--secondary-color);
    margin: -30px -30px 20px -30px;
    padding: 14px 20px;
    border-radius: 8px 8px 0 0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-errors {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    border-radius: 6px;
    padding: 10px 15px;
    margin-bottom: 15px;
}

.form-errors p {
    color: #dc2626;
    font-size: 0.9rem;
    margin: 3px 0;
}

.lead-form input,
.lead-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cta-button {
    width: 100%;
    padding: 15px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button:hover {
    background: var(--primary-dark);
}

/* Badges de confiance */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 30px 0;
    margin-bottom: 40px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.badge {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    line-height: 1.4;
}

/* Hero homepage */
.hero {
    background: linear-gradient(135deg, rgba(27,58,107,0.88) 0%, rgba(15,36,68,0.93) 100%),
                url('/assets/images/fenetre-maison-pierre.jpg') center/cover no-repeat;
    color: white;
    padding: 60px 0;
    border-radius: 0;
    margin-bottom: 0;
}

.hero h1,
.hero h2 {
    color: white;
    border-bottom: none;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}

.hero .lead-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin: 20px 0;
}

.hero .lead-form input,
.hero .lead-form select,
.hero .lead-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    color: var(--text-color);
}

.hero .lead-form button {
    width: 100%;
    padding: 15px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.hero .lead-form button:hover {
    background: var(--secondary-dark);
}

/* Bénéfices */
.benefits {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.benefit {
    flex: 1;
    min-width: 150px;
    text-align: center;
    font-weight: 500;
}

/* Grilles villes / départements */
.city-grid,
.dept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

/* Grille établissements (2 colonnes max) */
.business-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 20px 0;
}

.city-card,
.dept-card {
    display: block;
    padding: 15px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-color);
    text-align: center;
    transition: all 0.3s;
}

.city-card:hover,
.dept-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.dept-card strong {
    display: block;
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 5px;
}

/* Cartes établissements */
.business-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-top: 3px solid var(--primary-color);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s;
}

.business-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.business-card h3 {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.business-card .address,
.business-card .phone,
.business-card .website {
    margin: 7px 0;
    font-size: 14px;
    color: #374151;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}
.business-card .biz-icon {
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--primary-color);
}

.business-card .address a,
.business-card .website a {
    color: var(--primary-color);
    text-decoration: none;
    word-break: break-word;
}

.business-card .address a:hover,
.business-card .website a:hover {
    text-decoration: underline;
}

/* Sections */
section {
    margin-bottom: 50px;
}

section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

/* Section SEO avec image */
.seo-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.seo-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 24px;
}

.seo-text h3 {
    color: var(--text-color);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 20px;
}

.seo-text h4 {
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
}

.seo-text p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.seo-image {
    position: sticky;
    top: 20px;
    align-self: start;
}

.seo-image img {
    width: 100%;
    height: 340px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* CTA final */
.final-cta {
    background: linear-gradient(135deg, #1b3a6b 0%, #0f2444 100%);
    color: white;
    text-align: center;
    padding: 50px 40px;
    border-radius: 10px;
    margin-bottom: 50px;
}

.final-cta h2 {
    color: white;
    border-bottom: none;
    font-size: 28px;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 25px;
}

.cta-button-large {
    display: inline-block;
    padding: 18px 40px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 20px;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button-large:hover {
    background: var(--secondary-dark);
}

/* Section contenu (homepage) */
.content {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

.content h3 {
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.content ul {
    margin-left: 20px;
    margin-top: 10px;
}

.content li {
    margin-bottom: 8px;
}

/* Footer */
footer {
    background: #1e293b;
    border-top: none;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h4 {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-column a {
    display: block;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-column a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}

footer .container > p {
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    margin-bottom: 6px;
}

.footer-bottom a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
}

/* Responsive établissements */
@media (max-width: 600px) {
    .business-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .trust-badges { grid-template-columns: repeat(2, 1fr); }
}

/* Responsive mobile */
@media (max-width: 640px) {
    .hero-two-columns {
        padding: 30px 0;
    }
    .hero-two-columns .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-left h1 {
        font-size: 24px;
    }

    .hero-left h2 {
        font-size: 16px;
    }

    .form-container {
        padding: 20px;
    }
    .form-container h3 {
        margin: -20px -20px 20px -20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        gap: 15px;
    }

    .seo-content {
        grid-template-columns: 1fr;
        padding: 25px 20px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero {
        padding: 25px 20px;
    }

    .hero .lead-form {
        padding: 20px;
    }

    .benefits {
        flex-direction: column;
    }

    .city-grid,
    .dept-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .final-cta {
        padding: 30px 20px;
    }

    .cta-button-large {
        padding: 15px 30px;
        font-size: 18px;
    }
}

/* =============================================================
   Navigation (header sticky)
   ============================================================= */
.main-nav { display: flex; align-items: center; gap: 24px; }
.nav-link { color: var(--text-color); text-decoration: none; font-weight: 500; font-size: 15px; }
.nav-link:hover { color: var(--primary-color); }
.nav-cta {
    background: var(--secondary-color); color: white;
    padding: 12px 28px; border-radius: 6px; font-size: 18px;
    font-weight: 400; text-decoration: none;
    transition: background 0.2s;
}
.nav-cta:hover { background: var(--secondary-dark); color: white; text-decoration: none; }

/* Hamburger mobile */
.mobile-menu-btn {
    display: none; background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; padding: 8px;
    border-radius: 6px; transition: background 0.15s;
}
.mobile-menu-btn:hover { background: var(--bg-light); }
.mobile-menu-btn span { display: block; width: 22px; height: 2px; background: var(--text-color); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }

/* Hamburger → X quand ouvert */
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Dropdown flottant */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: white;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 999;
    padding: 8px 0;
}
.mobile-menu.active { display: block; }
.mobile-menu a {
    display: block;
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 20px;
    border-bottom: 1px solid var(--bg-light);
    transition: background 0.15s, color 0.15s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { background: var(--bg-light); color: var(--primary-color); }

@media (max-width: 768px) {
    .main-nav { display: none; }
    .mobile-menu-btn { display: flex; }
}

/* =============================================================
   Section Services
   ============================================================= */
.services-section { margin-bottom: 50px; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 20px;
}
.service-card {
    background: white; border-radius: 12px;
    overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.service-image { width: 100%; aspect-ratio: 16/9; object-fit: cover; height: auto; }
.service-content { padding: 24px; }
.service-content h3 { color: var(--primary-color); margin-bottom: 10px; font-size: 18px; }
.service-content p { color: var(--text-light); line-height: 1.6; }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

/* =============================================================
   Bannière CTA intermédiaire
   ============================================================= */
.mid-cta {
    background: #0f172a;
    border-left: 5px solid var(--secondary-color);
    padding: 50px 40px; border-radius: 10px;
    text-align: center; margin-bottom: 50px;
    position: relative; overflow: hidden;
}
.mid-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='100' viewBox='0 0 120 100' fill='none'%3E%3Crect x='10' y='8' width='100' height='84' rx='4' stroke='white' stroke-width='3' stroke-opacity='0.06'/%3E%3Crect x='10' y='8' width='46' height='38' rx='2' stroke='white' stroke-width='2' stroke-opacity='0.06'/%3E%3Crect x='64' y='8' width='46' height='38' rx='2' stroke='white' stroke-width='2' stroke-opacity='0.06'/%3E%3Crect x='10' y='54' width='46' height='38' rx='2' stroke='white' stroke-width='2' stroke-opacity='0.06'/%3E%3Crect x='64' y='54' width='46' height='38' rx='2' stroke='white' stroke-width='2' stroke-opacity='0.06'/%3E%3Cline x1='10' y1='46' x2='110' y2='46' stroke='white' stroke-width='2' stroke-opacity='0.06'/%3E%3Cline x1='57' y1='8' x2='57' y2='92' stroke='white' stroke-width='2' stroke-opacity='0.06'/%3E%3C/svg%3E") right 40px center / 160px no-repeat;
    pointer-events: none;
}
.mid-cta h2 { color: white; border-bottom: none; font-size: 26px; margin-bottom: 12px; position: relative; }
.mid-cta p { color: rgba(255,255,255,0.75); font-size: 16px; margin-bottom: 25px; position: relative; }
.btn-white {
    display: inline-block; padding: 16px 36px;
    background: var(--secondary-color); color: white;
    border-radius: 6px; font-size: 17px; font-weight: 700;
    text-decoration: none; transition: background 0.2s, transform 0.15s;
    position: relative;
}
.btn-white:hover { background: var(--secondary-dark); color: white; transform: scale(1.02); }

/* =============================================================
   Section FAQ (accordion <details>)
   ============================================================= */
.faq-section { margin-bottom: 50px; }
.faq-list {
    margin-top: 20px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}
.faq-item {
    background: white;
    border-bottom: 1px solid var(--border-color);
}
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
    padding: 18px 24px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-color);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    transition: background 0.15s;
    user-select: none;
}
.faq-item summary:hover { background: var(--bg-light); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 16px;
    line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] > summary {
    color: var(--primary-color);
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}
.faq-answer {
    padding: 18px 24px 20px;
    color: var(--text-light);
    line-height: 1.75;
    font-size: 15px;
    background: white;
}

/* =============================================================
   Page légale (mentions légales / confidentialité)
   ============================================================= */
.hero-legal {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: 50px 0;
    text-align: center;
    margin-bottom: 0;
}
.hero-legal h1 {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    border-bottom: none;
    margin-bottom: 0;
}
.legal-breadcrumb {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
}
.legal-breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
.legal-breadcrumb a:hover { color: white; }
.legal-content {
    background: white;
    padding: 60px 0 80px;
}
.legal-text {
    max-width: 860px;
    margin: 0 auto;
    line-height: 1.8;
}
.legal-text h2 {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 14px;
    font-size: 1.35rem;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-color);
}
.legal-text h2:first-child { margin-top: 0; }
.legal-text h3 {
    color: var(--text-color);
    margin-top: 20px;
    margin-bottom: 8px;
    font-size: 1.05rem;
    font-weight: 600;
}
.legal-text p { margin-bottom: 12px; color: var(--text-color); }
.legal-text strong { color: var(--primary-dark); }
.legal-text a { color: var(--primary-color); }
.legal-text a:hover { text-decoration: underline; }
.legal-text ul { margin: 0 0 14px 22px; }
.legal-text ul li { margin-bottom: 5px; color: var(--text-color); }
@media (max-width: 768px) {
    .hero-legal h1 { font-size: 1.7rem; }
    .legal-content { padding: 40px 0 60px; }
}

/* =============================================================
   Formulaire 2 étapes
   ============================================================= */
.form-step { display: none; }
.form-step.active { display: block; }

.step-progress { margin-bottom: 18px; }
.step-progress-track {
    height: 4px; background: var(--border-color); border-radius: 2px; margin-bottom: 8px;
}
.step-progress-fill {
    height: 100%; width: 50%; background: var(--secondary-color);
    border-radius: 2px; transition: width 0.4s ease;
}
.step-progress-labels { display: flex; justify-content: space-between; }
.step-label { font-size: 12px; color: var(--text-light); font-weight: 500; }
.step-label.active { color: var(--primary-color); font-weight: 700; }

/* Labels visibles sur fond sombre (hero homepage) */
.hero .step-progress-track { background: rgba(255,255,255,0.25); }
.hero .step-label { color: rgba(255,255,255,0.65); }
.hero .step-label.active { color: white; font-weight: 700; }

.form-back-btn {
    display: inline-block;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    margin-bottom: 12px;
    font-weight: 500;
}
.form-back-btn:hover { text-decoration: underline; }

.form-next-btn {
    width: 100%;
    padding: 15px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.form-next-btn:hover { background: var(--secondary-dark); }

.contact-slots {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 15px;
}
.contact-slots legend {
    font-size: 13px;
    color: var(--text-light);
    padding: 0 5px;
}
.slots-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 5px;
}
.lead-form .slots-row label,
.slots-row label {
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 0;
}
.slots-row input[type="checkbox"] {
    width: 16px !important;
    min-width: 16px;
    height: 16px;
    margin: 0 !important;
    padding: 0 !important;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 15px;
    cursor: pointer;
}
.consent-label input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px !important;
    min-width: 16px;
    height: 16px;
    margin-bottom: 0;
    padding: 0;
}

.lead-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 4px;
}

/* =============================================================
   Page Merci + Spinner ViteUnDevis
   ============================================================= */
.merci-container {
    max-width: 650px;
    margin: 40px auto;
    text-align: center;
    padding: 40px 20px;
}
.merci-container h1 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 15px;
}
.merci-container p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.merci-check {
    width: 70px; height: 70px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: white;
}
.vud-spinner-wrap {
    margin: 30px auto;
    max-width: 500px;
    background: var(--bg-light);
    border-radius: 8px;
    padding: 25px;
    border: 1px solid var(--border-color);
}

/* =============================================================
   Focus inputs — accent amber
   ============================================================= */
.lead-form input:focus,
.lead-form select:focus {
    border-color: var(--secondary-color);
    border-left-width: 3px;
    outline: none;
    box-shadow: 0 0 0 3px rgba(224,123,57,0.12);
}

/* =============================================================
   CTA — micro-animation scale
   ============================================================= */
.form-next-btn,
.hero .lead-form button,
.cta-button,
.cta-button-large,
.btn-white {
    transition: background 0.2s, transform 0.15s;
}
.form-next-btn:hover,
.hero .lead-form button:hover,
.cta-button:hover,
.cta-button-large:hover {
    transform: scale(1.02);
}

/* =============================================================
   Service card — badge "Populaire" + améliorations
   ============================================================= */
.service-card { position: relative; overflow: hidden; }
.service-badge {
    position: absolute;
    top: 14px; right: -26px;
    background: var(--secondary-color);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 32px;
    transform: rotate(35deg);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.service-card:hover { border-bottom: 3px solid var(--secondary-color); }
