/* ================================================
   ADOUCISSEUR-FRANCE.EU - Styles globaux
   ================================================ */

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a56db;
    --primary-hover: #1e429f;
    --primary-light: #eff6ff;
    --secondary-color: #0ea5e9;
    --text-color: #111827;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 12px 28px rgba(0,0,0,0.12);
    --radius: 12px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-light);
}

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

/* Header */
.site-header {
    background: var(--bg-white);
    box-shadow: 0 1px 0 var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.logo-icon {
    flex-shrink: 0;
}

.main-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.btn-header {
    background: var(--primary-color);
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    transition: background 0.3s;
}

.btn-header:hover {
    background: var(--primary-hover);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 40px 0;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--text-light);
}

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

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

/* Boutons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 1px 2px rgba(26,86,219,0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(26,86,219,0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* CTA Boxes */
.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
    box-shadow: var(--shadow);
}

.cta-box.secondary {
    background: var(--bg-white);
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.cta-box h2 {
    margin-bottom: 15px;
    font-size: 28px;
}

.cta-box p {
    margin-bottom: 25px;
    font-size: 18px;
    opacity: 0.9;
}

.cta-box.secondary p {
    opacity: 1;
}

.cta-mentions {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
}

/* Hero Section */
.hero-ville h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Info Cards */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.info-card {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.info-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.info-card h3 {
    margin-bottom: 10px;
    color: var(--text-color);
}

.info-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* Content Section */
.content-section {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: var(--shadow);
}

.content-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.content-section h3 {
    font-size: 22px;
    margin: 30px 0 15px 0;
    color: var(--text-color);
}

.content-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-section ul, .content-section ol {
    margin: 15px 0 15px 30px;
}

.content-section li {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* Problèmes Grid */
.problemes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.probleme-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.probleme-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

.probleme-card h4 {
    margin-bottom: 10px;
    color: var(--text-color);
}

/* Avantages List */
.avantages-list {
    list-style: none;
    margin: 20px 0;
}

.avantages-list li {
    padding: 12px;
    margin-bottom: 10px;
    background: var(--bg-light);
    border-radius: 6px;
}

/* Types d'adoucisseurs */
.types-adoucisseurs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.type-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

.type-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.type-description {
    margin-bottom: 20px;
    color: var(--text-light);
}

.type-prix {
    background: var(--primary-color);
    color: white;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

.type-details {
    margin-top: 20px;
}

.avantages h4, .inconvenients h4 {
    margin: 15px 0 10px 0;
    font-size: 16px;
}

.type-details ul {
    margin-left: 25px;
}

.type-details li {
    margin-bottom: 8px;
    font-size: 14px;
}

/* Conseil Box */
.conseil-box, .note-box, .info-box {
    background: #e8f5e9;
    border-left: 4px solid var(--success-color);
    padding: 20px;
    margin: 25px 0;
    border-radius: 6px;
}

.note-box {
    background: #fff3e0;
    border-left-color: var(--warning-color);
}

.info-box {
    background: #e3f2fd;
    border-left-color: var(--primary-color);
}

/* Prix Table */
.prix-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.prix-table th, .prix-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.prix-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-color);
}

.prix-table tr:hover {
    background: var(--bg-light);
}

/* Critères Grid */
.criteres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.critere-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.critere-card h3 {
    margin: 15px 0;
    font-size: 18px;
}

/* Villes Proches */
.villes-proches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.ville-proche-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.ville-proche-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.ville-proche-card a {
    display: flex;
    flex-direction: column;
    padding: 20px;
    text-decoration: none;
    color: var(--text-color);
    gap: 8px;
}

.ville-icon {
    font-size: 24px;
}

.ville-proche-card strong {
    color: var(--primary-color);
    font-size: 16px;
}

.ville-distance {
    color: var(--text-light);
    font-size: 14px;
}

.ville-population {
    color: var(--text-light);
    font-size: 12px;
}

/* FAQ */
.faq-item {
    margin-bottom: 25px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.faq-item h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 18px;
}

.faq-item p {
    margin: 0;
    line-height: 1.8;
}

/* Formulaire Devis */
.devis-page {
    max-width: 1000px;
    margin: 0 auto;
}

.devis-header {
    text-align: center;
    margin-bottom: 40px;
}

.devis-avantages {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.avantage {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.avantage-icon {
    font-size: 20px;
}

.devis-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.devis-form-container {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.devis-form fieldset {
    border: none;
    margin-bottom: 30px;
}

.devis-form legend {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    margin: 25px 0;
}

.checkbox-label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: auto;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-note {
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
}

/* Devis Sidebar */
.devis-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-box {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.sidebar-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
}

.sidebar-box.highlight {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding-left: 0;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary-color);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Page Merci */
.merci-page {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.merci-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.merci-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--success-color);
}

.prochaines-etapes {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin: 40px 0;
    text-align: left;
}

.etapes-list {
    margin-top: 30px;
}

.etape {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.etape-numero {
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.etape-contenu h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.etape-delai {
    display: inline-block;
    background: #e3f2fd;
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
}

.merci-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

/* Footer */
.site-footer {
    background: #0f172a;
    color: white;
    padding: 56px 0 24px 0;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 15px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #b2bec3;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #636e72;
    padding-top: 20px;
    text-align: center;
    color: #b2bec3;
    font-size: 14px;
}

.disclaimer {
    margin-top: 10px;
    font-size: 13px;
}

/* Responsive */
/* ================================================
   STYLES PAGE D'ACCUEIL (HOME)
   ================================================ */

/* Hero Home */
.hero-home {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #0f2460 0%, #1a56db 55%, #0ea5e9 100%);
    border-radius: 16px;
    margin-bottom: 72px;
    position: relative;
    overflow: hidden;
}

.hero-home::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.07) 0%, transparent 60%);
    pointer-events: none;
}

.hero-home h1 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 19px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    font-weight: 400;
}

/* Search Form */
.hero-search {
    max-width: 580px;
    margin: 0 auto 40px;
}

.search-form {
    display: flex;
    gap: 0;
    margin-bottom: 14px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    overflow: hidden;
}

.search-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-family: inherit;
    transition: none;
    background: transparent;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.search-form .btn-primary {
    border-radius: 0 10px 10px 0;
    white-space: nowrap;
    padding: 16px 24px;
    font-size: 15px;
}

.search-note {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 48px;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 4px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255,255,255,0.15);
}

.hero-stats .stat {
    text-align: center;
    flex: 1;
    padding: 16px 20px;
    border-right: 1px solid rgba(255,255,255,0.15);
}

.hero-stats .stat:last-child {
    border-right: none;
}

.hero-stats .stat strong {
    display: block;
    font-size: 26px;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 3px;
    letter-spacing: -0.5px;
}

.hero-stats .stat span {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Avantages Section */
.avantages-section {
    margin: 72px 0;
}

.section-label {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.avantages-section h2 {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-color);
    letter-spacing: -0.5px;
}

.avantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.avantage-card {
    background: var(--bg-white);
    padding: 32px 28px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    text-align: left;
    transition: transform 0.25s, box-shadow 0.25s;
    border: 1px solid var(--border-color);
}

.avantage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.avantage-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.avantage-icon-wrap svg {
    width: 26px;
    height: 26px;
    color: var(--primary-color);
}

.avantage-icon-large {
    display: none; /* remplacé par avantage-icon-wrap */
}

.avantage-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.avantage-card p {
    color: var(--text-light);
    line-height: 1.65;
    font-size: 14px;
    margin: 0;
}

/* How It Works */
.how-it-works {
    margin: 72px 0;
    text-align: center;
}

.how-it-works h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 56px;
    color: var(--text-color);
    letter-spacing: -0.5px;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr 48px 1fr 48px 1fr;
    gap: 0;
    align-items: center;
    margin: 0 0 48px;
}

.step-card {
    background: var(--bg-white);
    padding: 32px 28px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    text-align: left;
    border: 1px solid var(--border-color);
}

.step-number {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.step-card p {
    color: var(--text-light);
    line-height: 1.65;
    font-size: 14px;
    margin: 0;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border-color);
}

.step-arrow svg {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
    opacity: 0.4;
}

.cta-center {
    text-align: center;
    margin: 48px 0 0;
}

/* Types Section */
.types-section {
    margin: 60px 0;
}

.types-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text-color);
}

.types-comparaison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.type-card-home {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
}

.type-card-home h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.type-prix-home {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.type-card-home p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.type-points {
    margin-top: 20px;
}

.points-positifs strong {
    display: block;
    margin-bottom: 10px;
    color: var(--text-color);
}

.points-positifs ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.points-positifs li {
    padding: 5px 0;
    color: var(--text-light);
}

.conseil-home {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
}

.conseil-home p {
    color: var(--text-color);
    margin: 0;
}

/* Regions Section */
.regions-section {
    margin: 72px 0;
}

.regions-section h2 {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 48px;
    color: var(--text-color);
    letter-spacing: -0.5px;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin: 0;
}

.region-card {
    background: var(--bg-white);
    padding: 22px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--primary-color);
}

.region-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    color: var(--primary-color);
}

.region-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 3px;
}

.region-card p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.region-arrow {
    color: var(--primary-color);
    opacity: 0.5;
    font-size: 18px;
}

/* Villes Section */
.villes-section {
    margin: 60px 0;
}

.villes-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text-color);
}

.villes-populaires {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 40px 0;
}

.villes-populaires a {
    background: var(--bg-white);
    padding: 8px 18px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--text-color);
    border: 1.5px solid var(--border-color);
    transition: all 0.2s;
    font-weight: 500;
    font-size: 14px;
}

.villes-populaires a:hover {
    background: var(--primary-light);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

/* CTA Final */
.cta-final {
    margin: 72px 0;
    text-align: center;
}

.cta-final-content {
    background: linear-gradient(135deg, #0f2460 0%, #1a56db 60%, #0ea5e9 100%);
    color: white;
    padding: 72px 48px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(26,86,219,0.3);
    position: relative;
    overflow: hidden;
}

.cta-final-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

.cta-stars svg {
    width: 18px;
    height: 18px;
    fill: #fbbf24;
}

.cta-final-content h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.cta-final-content > p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.85;
}

.cta-final-note {
    margin-top: 18px;
    font-size: 13px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* FAQ Home */
.faq-home {
    margin: 72px 0;
}

.faq-home h2 {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 48px;
    color: var(--text-color);
    letter-spacing: -0.5px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 0;
}

.faq-item-home {
    background: var(--bg-white);
    padding: 24px 28px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--primary-color);
}

.faq-item-home h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.faq-item-home p {
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-ville h1 {
        font-size: 28px;
    }
    
    .lead {
        font-size: 18px;
    }
    
    .info-grid, .problemes-grid, .types-adoucisseurs, .criteres-grid, .villes-proches-grid {
        grid-template-columns: 1fr;
    }
    
    .content-section {
        padding: 25px;
    }
    
    .devis-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .devis-form-container {
        padding: 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .merci-actions {
        flex-direction: column;
    }
    
    .hero-home h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stats .stat strong {
        font-size: 24px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-arrow {
        display: none !important;
    }
    
    .regions-grid {
        grid-template-columns: 1fr;
    }
    
    .villes-populaires {
        justify-content: flex-start;
    }
    
    .cta-final-content {
        padding: 40px 20px;
    }
    
    .cta-final-content h2 {
        font-size: 28px;
    }
}

@media print {
    .site-header, .site-footer, .cta-box, .devis-sidebar {
        display: none;
    }
}

/* ===========================================
   ARTISANS LOCAUX
=========================================== */
.artisans-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 1.5rem 0;
}

.artisan-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    transition: box-shadow .2s ease, border-color .2s ease;
}

.artisan-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    border-color: #2980b9;
}

.artisan-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.artisan-nom {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.artisan-adresse {
    font-size: .85rem;
    color: #6b7280;
}

.badge-rge {
    display: inline-block;
    background: #d1fae5;
    color: #065f46;
    font-size: .72rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: .04em;
    width: fit-content;
    margin-top: 2px;
}

.btn-devis {
    flex-shrink: 0;
    background: #1a5276;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: .6rem 1.1rem;
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s ease, transform .15s ease;
    white-space: nowrap;
}

.btn-devis:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

.artisans-note {
    font-size: .88rem;
    color: #6b7280;
    margin-top: .75rem;
}

.artisans-note a {
    color: #2980b9;
    text-decoration: underline;
}

/* Notice artisan sélectionné dans le formulaire */
.artisan-selected-notice {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: .75rem 1rem;
    font-size: .92rem;
    color: #1e40af;
    margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
    .artisan-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .btn-devis {
        width: 100%;
        text-align: center;
    }
}
