/* ==========================================================================
   PRIVATE MAIL - DESIGN SYSTEM
   ==========================================================================
   
   Table des matières :
   1. Variables (couleurs, typographie, espacements)
   2. Reset & Base
   3. Typographie (titres, textes)
   4. Composants (boutons, cartes, etc.)
   5. Layout (conteneurs, grilles)
   6. Header
   7. Footer
   8. Sections spécifiques
   9. Utilitaires
   10. Responsive
   ========================================================================== */

/* ==========================================================================
   1. VARIABLES
   ========================================================================== */
:root {
    /* Couleurs */
    --color-background: #f4f0eb;
    --color-white: #ffffff;
    --color-dark: #000000;
    --color-text-primary: #000000;
    --color-text-secondary: #666666;
    --color-accent: #ae946f;
    --color-accent-hover: #9a8362;
    --color-overlay: rgba(0, 0, 0, 0.4);
    --color-border: rgba(102, 102, 102, 0.2);
    
    /* Typographie */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Open Sans', Arial, sans-serif;
    
    /* Tailles de police */
    --text-xs: 0.75rem;      /* 12px */
    --text-sm: 0.875rem;     /* 14px */
    --text-base: 1rem;       /* 16px */
    --text-lg: 1.125rem;     /* 18px */
    --text-xl: 1.25rem;      /* 20px */
    --text-2xl: 1.5rem;      /* 24px */
    --text-3xl: 2rem;        /* 32px */
    --text-4xl: 2.5rem;      /* 40px */
    --text-5xl: 3rem;        /* 48px */
    
    /* Espacements */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 80px;
    
    /* Largeurs */
    --max-width: 1200px;
    --max-width-tablet: 810px;
    --max-width-mobile: 390px;
    
    /* Bordures */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 50%;
    
    /* Ombres */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.2s ease;
    --transition-slow: 0.3s ease;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-background);
    color: var(--color-text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--color-accent);
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ==========================================================================
   3. TYPOGRAPHIE
   ========================================================================== */

/* Titres */
.heading-1 {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.heading-2 {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.heading-3 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 400;
    line-height: 1.3;
}

.heading-4 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    line-height: 1.4;
}

/* Textes */
.text-body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.75;
}

.text-lead {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    line-height: 1.6;
}

.text-small {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    line-height: 1.5;
}

.text-caps {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.38em;
    text-transform: uppercase;
}

/* Couleurs de texte */
.text-primary { color: var(--color-text-primary); }
.text-secondary { color: var(--color-text-secondary); }
.text-accent { color: var(--color-accent); }
.text-light { color: var(--color-background); }
.text-white { color: var(--color-white); }

/* Alignements */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* ==========================================================================
   4. COMPOSANTS
   ========================================================================== */

/* Boutons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

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

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

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
}

.btn-outline:hover {
    background-color: var(--color-accent);
    color: var(--color-background);
}

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

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

/* Cards */
.card {
    background-color: var(--color-white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    padding: var(--space-xl);
}

/* Dividers */
.divider {
    width: 40px;
    height: 4px;
    background-color: var(--color-accent);
}

/* ==========================================================================
   5. LAYOUT
   ========================================================================== */

/* Conteneur principal */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* Sections */
.section {
    padding: var(--space-4xl) var(--space-xl);
}

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

.section-gray {
    background-color: var(--color-text-secondary);
}

/* Flexbox utilitaires */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }

/* Gaps */
.gap-xs { gap: var(--space-xs); }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }
.gap-2xl { gap: var(--space-2xl); }

/* Grid */
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }

/* ==========================================================================
   6. HEADER
   ========================================================================== */
.header {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    width: 100%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-md) var(--space-xl);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    height: 82px;
}

.logo-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.logo-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 400;
    line-height: 1;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.38em;
}

/* Navigation */
.nav-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--space-lg);
}

.nav-info {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 24px;
}

.nav-info-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 13px;
    color: var(--color-text-secondary);
}

.nav-info-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-primary);
}

.nav-link:hover {
    color: var(--color-accent);
}

.nav-link.active {
    color: var(--color-accent);
}

.nav-text {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-primary);
}

/* Menu déroulant Services */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    transition: color var(--transition-base);
}

.nav-dropdown-trigger:hover {
    color: var(--color-accent);
}

.nav-dropdown-trigger svg {
    transition: transform var(--transition-base);
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 280px;
    padding: var(--space-sm);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
    z-index: 1000;
    margin-top: var(--space-sm);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    transition: background-color var(--transition-base);
}

.nav-dropdown-item:hover {
    background-color: var(--color-background);
    color: inherit;
}

.nav-dropdown-item-title {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-text-primary);
}

.nav-dropdown-item-desc {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

/* Burger Menu */
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    color: var(--color-text-primary);
    flex-shrink: 0;
}

.burger-menu:hover {
    color: var(--color-accent);
}

/* ==========================================================================
   7. SERVICE CTA (Composant réutilisable)
   ========================================================================== */
.service-cta {
    padding: var(--space-4xl) var(--space-xl);
    background-color: var(--color-background);
}

.service-cta--light {
    background-color: var(--color-white);
}

.service-cta-container {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.service-cta-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 400;
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
}

.service-cta-text {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
}

.service-cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

@media (max-width: 809px) {
    .service-cta-title {
        font-size: var(--text-xl);
    }
}

/* ==========================================================================
   8. FOOTER
   ========================================================================== */
.footer {
    background-color: var(--color-text-secondary);
}

.footer-main {
    display: flex;
    max-width: 100%;
}

.footer-map {
    flex: 0 0 40%;
    min-height: 300px;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.footer-columns {
    flex: 1;
    display: flex;
    gap: var(--space-xl);
    padding: var(--space-2xl) var(--space-xl);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    flex: 1;
}

.footer-col-about {
    max-width: 280px;
}

.footer-logo {
    width: 60px;
    height: 60px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-desc {
    font-size: var(--text-sm);
    color: var(--color-background);
    line-height: 1.6;
}

.footer-badge {
    width: 80px;
    height: auto;
}

.footer-badge img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-background);
    margin-bottom: var(--space-sm);
}

.footer-text {
    font-size: var(--text-sm);
    color: var(--color-background);
    line-height: 1.6;
}

.footer-bottom {
    background-color: #1a1a1a;
    padding: var(--space-md) var(--space-xl);
}

.footer-bottom-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-copyright,
.footer-credits {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    color: var(--color-background);
}

.footer-credits a {
    color: var(--color-accent);
    font-weight: 600;
}

/* ==========================================================================
   8. SECTIONS SPÉCIFIQUES
   ========================================================================== */

/* Hero */
.hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-overlay);
    z-index: 2;
}

.hero-wrapper {
    position: relative;
    z-index: 4;
    max-width: var(--max-width);
    margin: 0 auto;
    height: 100%;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: var(--space-xl);
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-lg);
    max-width: 650px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--color-background);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    color: var(--color-background);
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

/* Services */
.services {
    padding: var(--space-4xl) var(--space-xl);
    max-width: var(--max-width);
    margin: 0 auto;
}

.services-grid {
    display: flex;
    gap: var(--space-xl);
}

.service-card {
    flex: 1;
    background-color: var(--color-white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-lg);
}

.service-card-img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    overflow: hidden;
}

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

.service-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 400;
    color: var(--color-text-secondary);
}

.service-card-desc {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.75;
}

/* Why Us */
.why-us {
    background-color: var(--color-white);
    padding: var(--space-4xl) var(--space-xl);
}

.why-us-container {
    display: flex;
    gap: var(--space-xl);
    max-width: var(--max-width);
    margin: 0 auto;
}

.why-us-image {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.why-us-content {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.why-us-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 400;
    color: var(--color-text-primary);
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.why-us-item {
    display: flex;
    gap: var(--space-md);
}

.why-us-item-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.why-us-item-icon svg {
    width: 100%;
    height: 100%;
    color: var(--color-accent);
}

.why-us-item-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.why-us-item-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-text-primary);
}

.why-us-item-desc {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-overlay);
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-4xl) var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
}

.cta-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 400;
    color: var(--color-background);
}

.cta-subtitle {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-background);
}

/* ==========================================================================
   9. UTILITAIRES
   ========================================================================== */

/* Marges */
.m-0 { margin: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

/* Padding */
.p-0 { padding: 0; }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }
.p-xl { padding: var(--space-xl); }

/* Width */
.w-full { width: 100%; }
.w-auto { width: auto; }

/* Display */
.hidden { display: none; }
.block { display: block; }

/* ==========================================================================
   10. RESPONSIVE
   ========================================================================== */

/* Tablet (810px - 1199px) */
@media (min-width: 810px) and (max-width: 1199px) {
    .header-container {
        max-width: 100%;
    }

    .nav-info {
        display: none;
    }

    .nav-wrap {
        justify-content: flex-end;
        gap: 0;
    }

    .hero-content {
        max-width: 500px;
    }

    .services {
        max-width: 100%;
        padding: 60px var(--space-xl);
    }

    .services-grid {
        gap: var(--space-lg);
    }

    .why-us {
        padding: 60px var(--space-xl);
    }

    .why-us-container {
        max-width: 100%;
        flex-direction: column;
    }

    .why-us-image {
        height: 350px;
    }

    .footer-main {
        flex-direction: column;
    }

    .footer-map {
        flex: none;
        width: 100%;
        height: 300px;
    }

    .footer-columns {
        flex-wrap: wrap;
    }
}

/* Mobile (≤ 809px) */
@media (max-width: 809px) {
    /* Header Mobile */
    .header-container {
        flex-wrap: wrap;
        padding: var(--space-md);
        gap: 0;
    }

    .logo {
        flex: 1;
    }

    .logo-img {
        width: 60px;
        height: 60px;
    }

    .logo-title {
        font-size: var(--text-3xl);
    }

    .logo-subtitle {
        font-size: var(--text-xs);
        letter-spacing: 0.33em;
    }

    /* Burger visible */
    .burger-menu {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Navigation cachée par défaut */
    .nav-wrap {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-slow);
        align-items: center;
        padding: 0;
    }

    .nav-wrap.active {
        max-height: 800px;
        padding: var(--space-lg) 0;
    }

    .nav-info {
        display: none;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: var(--space-md);
        align-items: center;
    }

    /* Menu déroulant Mobile - Services */
    .nav-dropdown {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: var(--space-sm);
    }

    .nav-dropdown-trigger {
        justify-content: center;
        font-weight: 600;
        color: var(--color-text-secondary);
        font-size: var(--text-sm);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        pointer-events: none;
    }

    .nav-dropdown-trigger svg {
        display: none;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background-color: transparent;
        min-width: auto;
        padding: 0;
        margin-top: 0;
        display: flex;
        flex-direction: column;
        gap: var(--space-xs);
    }

    .nav-dropdown-item {
        text-align: center;
        align-items: center;
        padding: var(--space-sm);
    }

    .nav-dropdown-item-title {
        font-size: var(--text-base);
    }

    .nav-dropdown-item-desc {
        display: none;
    }

    .nav-menu .btn {
        margin-top: var(--space-sm);
    }

    /* Hero Mobile */
    .hero-content {
        width: 85%;
        max-width: none;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }

    /* Services Mobile */
    .services {
        padding: 60px var(--space-xl);
    }

    .services-grid {
        flex-direction: column;
    }

    /* Why Us Mobile */
    .why-us {
        padding: 60px var(--space-xl);
    }

    .why-us-container {
        flex-direction: column;
    }

    .why-us-image {
        height: 350px;
        order: 1;
    }

    .why-us-content {
        order: 0;
    }

    .why-us-title {
        text-align: center;
    }

    .why-us-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .why-us-item-content {
        align-items: center;
    }

    /* CTA Mobile */
    .cta-title {
        font-size: 1.6rem;
        text-align: center;
    }

    .cta-subtitle {
        text-align: center;
    }

    /* Footer Mobile */
    .footer-columns {
        flex-direction: column;
        gap: var(--space-xl);
        padding: var(--space-xl);
    }

    .footer-col-about {
        max-width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    /* Utilitaires responsive */
    .text-center-mobile {
        text-align: center;
    }
}
