:root {
    --primary:      #8B3A2A;   /* Terracotta brique — RAL 2001 */
    --primary-dark: #5C1F12;   /* Terracotta foncé (dégradés) */
    --secondary:    #C9A87C;   /* Sable doré */
    --cta:          #1B3A5C;   /* Bleu marine (boutons CTA) */
    --cta-hover:    #142D48;   /* Bleu marine foncé */
    --dark:         #1C1209;   /* Brun quasi-noir */
    --light:        #FBF8F3;   /* Ivoire chaud */
    --white:        #FFFFFF;
    --gray:         #7C6B5A;   /* Gris-brun chaud */
    --border:       #E8DDD0;   /* Beige clair */
    --radius:       12px;
    --shadow:       0 4px 6px -1px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
.main-header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(139, 58, 42, 0.07);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 68px;
}

.logo {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 9px;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.logo i {
    color: var(--primary);
    width: 22px;
    height: 22px;
}

.logo em {
    color: var(--primary);
    font-style: normal;
}

.logo-footer {
    color: #fff;
}

.logo-footer em {
    color: var(--secondary);
}

.logo-footer i {
    color: var(--secondary);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 6px;
    align-items: center;
}

.nav-links > li > a {
    font-weight: 500;
    color: var(--dark);
    font-size: 0.9rem;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--primary);
    background: rgba(139, 58, 42, 0.06);
}

/* Nav CTA Button */
.nav-cta {
    background: var(--cta);
    color: #fff !important;
    padding: 9px 18px !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    font-size: 0.875rem !important;
    display: flex !important;
    align-items: center;
    gap: 6px;
    box-shadow: 0 3px 10px rgba(27, 58, 92, 0.35);
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--cta-hover) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(27, 58, 92, 0.45);
}

.nav-cta i {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.burger,
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--dark);
    padding: 4px;
}

/* Mobile Menu Overlay */
.mobile-nav,
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 2000;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
    padding: 60px 20px 40px;
}

.mobile-nav.active,
.mobile-overlay.active {
    transform: translateY(0);
}

.mobile-nav a,
.mobile-overlay a {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 12px 24px;
    min-width: 200px;
    text-align: center;
    border-radius: var(--radius);
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--dark);
    cursor: pointer;
}

/* Sections */
section {
    padding: 4rem 0;
}

.hero {
    background: linear-gradient(135deg, #8B3A2A 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 6rem 0;
    clip-path: ellipse(150% 100% at 50% 0%);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
    margin-top: 2rem;
}

.bento-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-5px);
}

.bento-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-card.medium {
    grid-column: span 2;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.service-grid.modern {
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    display: grid;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: auto -40% -60% 40%;
    height: 120px;
    background: radial-gradient(circle at center, rgba(139, 58, 42, 0.15), transparent 70%);
}

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(139, 58, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.1rem;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Form Widget ViteUndevis */
.widget-container {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 2px solid var(--primary);
    margin: 2rem 0;
    min-height: 400px;
}

/* Footer Form Section */
.footer-form {
    background: var(--light);
    padding: 4rem 0;
    border-top: 1px solid var(--border);
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 3rem;
}

.footer-col h4,
.footer-col-title {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #CBD5E1;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #1E293B;
    padding-top: 2rem;
    text-align: center;
    color: #94A3B8;
    font-size: 0.9rem;
}

/* Cities List */
.cities-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.city-link {
    background: var(--white);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.city-link:hover {
    border-color: var(--primary);
    background: var(--secondary);
    color: var(--primary);
}

.tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2rem;
}

.tab-link {
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--white);
    font-weight: 600;
}

.tab-link.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.chip-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 1rem 0 2rem;
}

.chip {
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--white);
    font-size: 0.85rem;
}

.chip.active {
    background: var(--secondary);
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
}

.dept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.dept-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dept-card h3 {
    font-size: 1.1rem;
}

.dept-meta {
    font-size: 0.85rem;
    color: var(--gray);
}

.dept-cities {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 1rem;
}

.dept-cities a {
    font-size: 0.9rem;
    color: var(--dark);
}

.dept-cities a:hover {
    color: var(--primary);
}

.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 2rem;
}

.page-link {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
}

.page-link.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.notice {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    text-align: center;
}

/* Dropdown Nav */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    user-select: none;
}

.dropdown-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 10px 40px -5px rgb(0 0 0 / 0.18);
    min-width: 220px;
    padding: 8px 0;
    z-index: 1100;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    /* Zone tampon invisible au-dessus pour éviter le gap */
    margin-top: 0;
}

/* Zone invisible qui comble le gap entre trigger et menu */
.dropdown-menu::after {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--white);
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
    z-index: 1;
}

.nav-dropdown.open .dropdown-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(8px);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
    white-space: nowrap;
}

.dropdown-menu li a i {
    width: 14px;
    height: 14px;
    color: var(--primary);
    flex-shrink: 0;
}

.dropdown-menu li a:hover {
    background: var(--light);
    color: var(--primary);
}

.dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 6px 12px;
}

/* Mobile Dropdown */
.mobile-dropdown-btn {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    width: 100%;
    justify-content: center;
}

.mobile-dropdown-btn i {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
}

.mobile-dropdown-btn.open i {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding-bottom: 8px;
}

.mobile-submenu.open {
    display: flex;
}

.mobile-submenu li a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gray);
    padding: 6px 16px;
}

.mobile-submenu li a:hover {
    color: var(--primary);
}

/* Guide Article */
.guide-hero {
    background: linear-gradient(135deg, #8B3A2A 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 5rem 0 3rem;
    margin-top: 0;
}

.guide-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.guide-lead {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 720px;
}

.guide-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding-top: 3rem;
    padding-bottom: 4rem;
    align-items: start;
}

.guide-body {
    min-width: 0;
}

.guide-section {
    padding: 0 0 2.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2.5rem;
}

.guide-section:last-child {
    border-bottom: none;
}

.guide-section h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.guide-section p {
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.guide-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 1rem;
}

.guide-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #374151;
}

.guide-list li i {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 1.25rem;
}

.price-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.price-label {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
}

.price-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
}

/* Guide Sidebar */
.guide-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-cta {
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.sidebar-cta i {
    width: 36px;
    height: 36px;
    color: var(--primary);
    margin: 0 auto;
}

.sidebar-cta h3 {
    font-size: 1.1rem;
    color: var(--dark);
}

.sidebar-cta p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.sidebar-cta .btn-primary {
    background: var(--cta);
    color: var(--white) !important;
    padding: 12px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    display: block;
    text-align: center;
}

.sidebar-cta .btn-primary:hover {
    background: var(--cta-hover);
}

.sidebar-link {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
    text-align: center;
}

.sidebar-related {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.sidebar-related h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray);
    margin-bottom: 0.75rem;
}

.sidebar-related ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-related li a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--dark);
    padding: 5px 0;
}

.sidebar-related li a i {
    width: 14px;
    height: 14px;
    color: var(--primary);
    flex-shrink: 0;
}

.sidebar-related li a:hover {
    color: var(--primary);
}

/* ============================================================
   DESIGN SYSTEM — classes unifiées (pages migrées volet.org)
   ============================================================ */

/* --- Page Hero (toutes les pages intérieures) --- */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 4.5rem 0 3.5rem;
    text-align: center;
}
.page-hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 0.875rem;
    letter-spacing: -0.025em;
}
.page-hero p {
    font-size: 1.05rem;
    opacity: 0.88;
    max-width: 620px;
    margin: 0 auto 1.5rem;
}
.page-hero .nav-cta {
    display: inline-flex;
    margin-top: 0.5rem;
}

/* --- Section Header (h2 centré + sous-titre) --- */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section-header h2 {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}
.section-header p {
    color: var(--gray);
    max-width: 640px;
    margin: 0 auto;
}

/* --- Section Title (volet.org legacy) --- */
.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section-title h2 {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.section-title p {
    color: var(--gray);
}

/* --- Bento Grid (volet.org pages) --- */
.bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 2rem;
}
.bento-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow);
    transition: transform 0.25s;
}
.bento-item:hover { transform: translateY(-4px); }
.bento-item.large { grid-column: span 2; } /* Pleine largeur ligne 1 */
.bento-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary);
}
.bento-item p { color: var(--gray); font-size: 0.95rem; }

/* --- Utilities --- */
.py-80 { padding: 80px 0; }
.hidden { display: none !important; }
.text-primary { color: var(--primary); }
.italic { font-style: italic; }

/* --- Primary button amélioré --- */
.primary-btn {
    background: #1B3A5C;
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 3px 10px rgba(27, 58, 92,0.35);
    transition: all 0.2s;
}
.primary-btn:hover {
    background: #142D48;
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(27, 58, 92,0.45);
}

/* --- FAQ --- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    padding: 1.5rem 1.75rem;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}
.faq-item:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 24px rgba(139, 58, 42,0.1);
}
.faq-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}
.faq-item p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}
.cta-box {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
}
.cta-box p {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--dark);
}

/* --- Conseils Cards --- */
.conseil-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 24px;
}
.conseil-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}
.conseil-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(139, 58, 42,0.12);
}
.conseil-card-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.conseil-card-img i {
    width: 52px;
    height: 52px;
    color: white;
    opacity: 0.85;
}
.conseil-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.conseil-card-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}
.conseil-card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--dark);
    transition: color 0.2s;
    flex: 1;
}
.conseil-card:hover .conseil-card-body h3 { color: var(--primary); }
.conseil-card-body p {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}
.conseil-card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}
.conseil-card:hover .conseil-card-link { gap: 10px; }
.conseil-card-link i { width: 14px; height: 14px; }

/* --- Configurateur --- */
.config-box {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 48px rgba(139, 58, 42,0.1);
    overflow: hidden;
    max-width: 780px;
    margin: 0 auto;
}
.config-steps-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: var(--light);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 2rem;
}
.step {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray);
    padding: 7px 16px;
    border-radius: 999px;
    transition: all 0.2s;
    white-space: nowrap;
}
.step.active { background: var(--primary); color: var(--white); }
.step-sep { flex: 1; max-width: 48px; height: 1px; background: var(--border); }
.config-step { padding: 2.5rem; }
.config-step h3 {
    font-size: 1.4rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}
.choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}
.choice-card {
    background: var(--light);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    font-family: inherit;
}
.choice-card:hover {
    border-color: var(--primary);
    background: rgba(139, 58, 42,0.04);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 58, 42,0.12);
}
.choice-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(139, 58, 42,0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.choice-card-icon i { width: 28px; height: 28px; color: var(--primary); }
.choice-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 0.25rem; }
.choice-card p { font-size: 0.8rem; color: var(--gray); font-style: italic; }
.config-back-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 1.75rem;
    color: var(--gray);
    font-weight: 600;
    font-size: 0.875rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    transition: color 0.2s;
}
.config-back-btn:hover { color: var(--primary); }
.config-back-btn i { width: 14px; height: 14px; }
.config-form-group { margin-bottom: 1.5rem; }
.config-form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.config-form-group select {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--light);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--dark);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}
.config-form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 58, 42,0.1);
}
.color-picker { display: flex; gap: 12px; flex-wrap: wrap; }
.color-swatch {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}
.color-swatch:hover, .color-swatch.active {
    transform: scale(1.2);
    box-shadow: 0 0 0 3px rgba(139, 58, 42,0.25);
}

/* Services Catalog (pages villes) */
.services-catalog {
    columns: 2;
    column-gap: 2.5rem;
}
.services-catalog-section {
    break-inside: avoid;
    margin-bottom: 1.75rem;
}
.services-catalog-section h3 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--primary);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 5px;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--border);
}
.services-catalog-section h3 i {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}
.services-catalog-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 0.5rem;
}
.services-catalog-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 11px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--dark);
    transition: all 0.15s;
    white-space: nowrap;
}
.services-catalog-link i {
    width: 10px;
    height: 10px;
    color: var(--primary);
    flex-shrink: 0;
}
.services-catalog-link:hover {
    border-color: var(--primary);
    background: var(--light);
    color: var(--primary);
    transform: translateY(-1px);
}

/* Service Card Link */
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 0.5rem;
    transition: gap 0.2s, color 0.2s;
}
.service-card-link i { width: 13px; height: 13px; }
.service-card:hover .service-card-link { gap: 8px; color: var(--cta); }

/* ============================================================
   FIN DESIGN SYSTEM
   ============================================================ */

/* Responsive */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .burger,
    .mobile-menu-btn {
        display: block;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-card.large, .bento-card.medium {
        grid-column: span 1;
        grid-row: span 1;
    }
    .dept-cities {
        grid-template-columns: 1fr;
    }
    .guide-layout {
        grid-template-columns: 1fr;
    }
    .guide-sidebar {
        position: static;
        order: -1;
    }
    .guide-hero h1 {
        font-size: 1.8rem;
    }
    .price-grid {
        grid-template-columns: 1fr 1fr;
    }
    .bento { grid-template-columns: 1fr; }
    .bento-item.large { grid-column: span 1; }
    .page-hero h1 { font-size: 1.8rem; }
    .config-step { padding: 1.5rem; }
    .conseil-grid { grid-template-columns: 1fr; }
    .services-catalog { columns: 1; }
}

/* Utils */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1rem; }
.mt-4 { margin-top: 1rem; }