/* ============================================
   1. RESET, VARIABLES ET BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

:root {
    /* --- Couleurs --- */
    --primary-color: #2E86AB;
    --secondary-color: #A5D8DD;
    --accent-color: #6CBF84;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --white: #FFFFFF;
    --light-bg: #F8FBFC;
    --border-color: #E1E8ED;

    /* --- Variables Structurelles --- */
    --radius-sm: 8px;
    --radius-md: 10px;
    --radius-lg: 15px;
    --radius-pill: 50px;
    
    --transition-std: all 0.3s ease;

    /* --- Ombres Standardisées --- */
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.1); 
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

img, video {
    max-width: 100%;
    height: auto;
}

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

/* ============================================
   2. COMPOSANTS (NAVIGATION, UI, ETC.)
   ============================================ */

/* --- Navigation --- */
nav {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
    width: 100%;
}

nav.nav-hidden { transform: translateY(-100%); }
nav.nav-visible { transform: translateY(0); }

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    cursor: pointer;
    white-space: nowrap;
}

/* Accessibilité Focus */
.nav-links a:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--primary-color);
}

/* --- Dropdown Menu --- */
.dropdown { position: relative; }

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.dropdown-toggle::after {
    content: "▼";
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle { color: var(--primary-color); }
.dropdown:hover .dropdown-toggle::after { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 280px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-std);
    z-index: 1000;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li { list-style: none; }

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark) !important;
    background: transparent !important;
    text-decoration: none;
    transition: var(--transition-std);
    font-weight: 500;
}

.dropdown-menu a.active {
    color: var(--white) !important;
    background: var(--primary-color) !important;
    font-weight: 600;
}

.dropdown-menu a:not(.active):hover {
    background: var(--light-bg) !important;
    color: var(--primary-color) !important;
    padding-left: 2rem;
}

/* --- Boutons --- */
.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-std);
    display: inline-block;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: #2470A0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 134, 171, 0.3);
}

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

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

/* ============================================
   3. SECTIONS PRINCIPALES
   ============================================ */

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 4rem 0;
    color: var(--white);
    overflow: hidden;
    background: linear-gradient(rgba(46, 134, 171, 0.85), rgba(46, 134, 171, 0.85));
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content > div:first-child { order: 1; }
.hero-content > .hero-image { order: 2; }

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image { text-align: right; }

.hero-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
}

/* --- Trust Indicators --- */
.trust-indicators {
    background: var(--white);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    min-width: 200px;
    justify-content: center;
}

.trust-item .icon {
    color: var(--accent-color);
    font-size: 1.5rem;
}

/* --- Services Section --- */
.services {
    padding: 4rem 0;
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card-content { padding: 1.5rem; }

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* --- Zones Section --- */
.zones {
    padding: 4rem 0;
    background: var(--white);
}

.zones-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.zones-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.zone-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--light-bg);
    border-radius: var(--radius-md);
    transition: background 0.3s;
}

.zone-item:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.zone-item .icon { color: var(--accent-color); }

/* --- CTA Section --- */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e5b7e 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.9);
}

/* --- Form Section --- */
.form-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

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

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group label:has(input[type="checkbox"]) {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
    font-size: 0.95rem;
    line-height: 1.4;
}

.form-group input[type="checkbox"] {
    width: auto !important;
    margin-top: 4px;
    flex-shrink: 0;
    cursor: pointer;
}

/* --- Detail Sections --- */
.detail-section {
    padding: 3rem 0;
    background: var(--white);
}

.detail-section:nth-child(even) { background: var(--light-bg); }

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.detail-content.reverse { direction: rtl; }
.detail-content.reverse > * { direction: ltr; }

.detail-text h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.detail-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.detail-text ul {
    list-style: none;
    color: var(--text-light);
}

.detail-text li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-text li::before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    flex-shrink: 0;
}

.detail-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

/* --- Frequency Cards --- */
.frequency-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.frequency-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
    transition: var(--transition-std);
}

.frequency-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.frequency-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.frequency-card .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin: 0.5rem 0;
}

/* --- Image Gallery --- */
.image-gallery {
    padding: 3rem 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

.gallery-item:hover { transform: scale(1.05); }

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* --- Footer --- */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section p,
.footer-section li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   4. NOUVELLES CLASSES UTILITAIRES 
   (Pour remplacer les styles inline HTML)
   ============================================ */

/* Pour les titres des pages légales (CGV, CGU, Mentions) */
.page-title-center {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.page-subtitle-center {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
}

/* Pour la section "Nos critères de sélection" (Index) */
.criteria-list {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.criteria-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-color);
}

.criteria-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.criteria-content p {
    margin: 0.5rem 0 0 0;
    color: var(--text-light);
}

/* Pour la section "Comment ça marche" (Index) */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-badge {
    min-width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-content h4 { margin-bottom: 0.5rem; }
.step-content p { color: var(--text-light); margin: 0; }

/* Note d'information (utilisé dans Politique de Confidentialité) */
.alert-box {
    background: var(--light-bg);
    padding: 1rem;
    border-left: 4px solid var(--accent-color);
    margin: 1.5rem 0;
}

/* Container de texte centré (utilisé dans Rejoindre & Merci) */
.text-center-container {
    max-width: 600px; 
    margin: 0 auto; 
    text-align: center;
}

/* ============================================
   5. PAGES LÉGALES & ZONES
   ============================================ */

.legal-container {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.legal-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    line-height: 1.8;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.legal-box h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.3;
}

.legal-box ul, .legal-box ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-box li { margin-bottom: 0.5rem; }

/* Zones : Grille 4x2 */
.zones-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
}

.zone-card-item {
    background: var(--light-bg);
    padding: 1.5rem 1rem;
    border-radius: var(--radius-sm);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.zone-card-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--white);
    border-color: var(--secondary-color);
}

.zone-card-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.zone-card-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.zone-card-item.plus-zone {
    background: var(--primary-color);
    color: white;
    border: none;
}
.zone-card-item.plus-zone strong { color: white; }
.zone-card-item.plus-zone p { color: rgba(255, 255, 255, 0.9); }

/* Divers */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    padding: 0.5rem;
    z-index: 1001;
}

/* Image Slider */
.image-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-image.active {
    opacity: 1;
    z-index: 1;
}

/* =======================================================
   6. RESPONSIVE DESIGN UNIFIÉ
   ======================================================= */

/* --- Tablettes Paysage (992px - 1199px) --- */
@media (max-width: 1199px) {
    .container { padding: 0 30px; }
    .hero h1 { font-size: 2.2rem; }
    .section-header h2 { font-size: 1.8rem; }
}

/* --- Tablettes Portrait (768px - 992px) --- */
@media (max-width: 992px) {
    .logo img { height: 50px; }
    .nav-links { gap: 1.5rem; }
    .nav-links a { font-size: 0.9rem; }
    .hero-content { grid-template-columns: 1fr; gap: 2rem; }
    
    .hero-content > div:first-child { order: 2; }
    .hero-content > .hero-image { order: 1; }
    .hero-image { text-align: center; }
    
    .zones-content { grid-template-columns: 1fr; }
    .detail-content { grid-template-columns: 1fr; gap: 2rem; }
    .detail-content.reverse { direction: ltr; }
    
    .zones-grid-container { grid-template-columns: repeat(2, 1fr); }
}

/* --- Mobiles (Max 767px) --- */
@media (max-width: 767px) {
    body { font-size: 16px; }
    html { font-size: 95%; }
    p { line-height: 1.7; }
    
    .mobile-menu-toggle { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-md);
        gap: 0.5rem;
    }
    .nav-links.active { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 0.75rem 1rem; width: 100%; }
    
    .dropdown-menu {
        position: static; opacity: 1; visibility: visible;
        transform: none; box-shadow: none;
        padding-left: 0; background: var(--light-bg);
        min-width: 100%;
        margin-top: 0.5rem;
    }
    .dropdown-toggle::after { content: "▼"; }
    
    .hero { padding: 2rem 0; }
    .hero h1 { font-size: 1.6rem !important; margin-bottom: 1rem; line-height: 1.3; }
    .hero p { font-size: 1rem !important; line-height: 1.5; }
    
    /* MODIFICATION BOUTONS MOBILES : TAILLE MOYENNE */
    .hero-buttons {
        flex-direction: column; 
        width: 100%; 
        align-items: center;
        gap: 0.5rem;
    }
    
    .btn-primary, 
    .btn-secondary {
        width: 100%; 
        max-width: 280px; /* Plus compact */
        margin: 0.5rem auto; 
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.8rem 1.5rem; /* Padding moyen */
        font-size: 1rem;        /* Taille standard */
        min-height: 48px;       /* Hauteur tactile standard */
    }
    
    .trust-content { flex-direction: column; gap: 1rem; }
    .trust-item { justify-content: flex-start; min-width: auto; }
    
    .services, .zones, .cta-section, .form-section { padding: 2rem 0; }
    .services-grid, .gallery-grid, .footer-content { grid-template-columns: 1fr; gap: 1.5rem; }
    
    .section-header h2, .cta-section h2, .legal-box h2 { font-size: 1.4rem !important; line-height: 1.3; }
    .section-header p { font-size: 1rem; }
    
    .form-container { padding: 1.5rem; }
    .form-group input, .form-group select, .form-group textarea { font-size: 0.95rem; }
    
    .legal-container { padding: 2rem 1rem; }
    .legal-box { padding: 1.25rem; font-size: 0.95rem; }
    .legal-box h2 { margin-top: 1.5rem; }
    h1 { font-size: 1.8rem !important; word-wrap: break-word; }

    p, li { font-size: 0.95rem; }

    /* Ajustements Grilles & Listes */
    .zones-list { gap: 0.5rem !important; grid-template-columns: 1fr; }
    .zone-item { font-size: 0.85rem !important; padding: 0.5rem !important; justify-content: center; }
    .zone-item .icon { font-size: 1rem !important; }
    
    .zones-grid-container { grid-template-columns: repeat(2, 1fr) !important; gap: 0.5rem !important; }
    .zone-card-item { padding: 0.75rem 0.25rem !important; min-height: auto !important; }
    .zone-card-item strong { font-size: 0.9rem !important; margin-bottom: 0.2rem !important; }
    .zone-card-item p { font-size: 0.75rem !important; line-height: 1.2; }
    
    .frequency-cards { grid-template-columns: 1fr; gap: 0.75rem !important; margin-top: 1rem !important; }
    .frequency-card { padding: 1rem !important; border-radius: 8px !important; }
    .frequency-card h4 { font-size: 1.1rem !important; margin-bottom: 0.25rem !important; }
    .frequency-card .price { font-size: 1rem !important; margin: 0.25rem 0 !important; font-weight: 700 !important; }
    .frequency-card p { font-size: 0.9rem !important; line-height: 1.4 !important; margin-bottom: 0.5rem !important; }
    .frequency-card p:last-child { margin-bottom: 0 !important; }

    .detail-section { padding: 2rem 0; }
    .detail-text h3 { font-size: 1.5rem; }
    
    /* Nouvelles classes mobiles */
    .criteria-item { flex-direction: column; text-align: center; padding: 1rem; }
    .step-item { flex-direction: column; align-items: center; text-align: center; gap: 0.5rem; }
    
    .image-slider { height: 250px; }
}

@media (max-width: 576px) {
    .container { padding: 0 15px; }
    .zones-grid-container { grid-template-columns: 1fr !important; }
    
    .service-card-content { padding: 1rem; }
    .service-card h3 { font-size: 1.15rem; }
    .detail-text h3 { font-size: 1.3rem; }
}

@media (max-width: 380px) {
    .hero h1 { font-size: 1.3rem !important; }
    .section-header h2 { font-size: 1.25rem !important; }
    .cta-section h2 { font-size: 1.3rem; }
    .form-container { padding: 1rem; }
}

/* =======================================================
   7. STYLE D'IMPRESSION (NOUVEAU)
   ======================================================= */
@media print {
    nav, footer, .hero-buttons, .cta-section, .mobile-menu-toggle {
        display: none !important;
    }
    body { background: white; color: black; }
    .container { max-width: 100%; padding: 0; }
    .legal-box { box-shadow: none; padding: 0; }
    a { text-decoration: underline; color: black; }
    a[href]::after { content: " (" attr(href) ")"; font-size: 0.8rem; }
}