/* Variables */
:root {
    --primary: #0D47A1; /* Bleu professionnel */
    --secondary: #FFC107; /* Jaune vif */
    --accent: #2196F3; /* Bleu clair */
    --light: #FFFFFF;
    --dark: #212121;
    --gray: #F5F5F5;
    --text: #333333;
    --text-light: #757575;
    --success: #4CAF50;
    --spacing-unit: 16px;
}

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

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--light);
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight {
    color: var(--secondary);
        font-weight: 700;
}

/* Header */
.main-header {
    background-color: var(--light);
    padding: 20px 0; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-part1 {
    color: var(--primary);
}

.logo-part2 {
    color: var(--dark);
}

.logo-part3 {
    color: var(--secondary);
}

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

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: var(--primary);
    color: var(--light) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.nav-cta:hover {
    background-color: var(--accent) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(33, 150, 243, 0.3);
}

.nav-cta::after {
    display: none !important;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    margin: 4px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--light);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

/* CTA Buttons */
.cta-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-btn svg {
    margin-right: 0.5rem;
}

.cta-btn.primary {
    background-color: var(--secondary);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.cta-btn.primary:hover {
    background-color: #FFD54F;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.cta-btn.secondary {
    background-color: transparent;
    color: var(--light);
    border: 2px solid var(--light);
}

.cta-btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 500;
}

.badge-icon {
    font-size: 1.2rem;
}

/* Avantages Section */
.avantages {
    padding: 5rem 0;
    background-color: var(--light);
}

.avantages h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.avantage-card {
    background-color: var(--light);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.avantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.avantage-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.avantage-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Témoignages Section */
.temoignages {
    padding: 5rem 0;
    background-color: var(--primary);
    color: var(--light);
}

.temoignages h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.temoignages-slider {
    max-width: 800px;
    margin: 0 auto;
}

.temoignage {
    text-align: center;
    padding: 2rem;
}

.temoignage-text {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.temoignage-author {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.rating {
    color: var(--secondary);
    font-size: 1.25rem;
    letter-spacing: 2px;
}

/* Process Section */
.process {
    padding: 5rem 0;
    background-color: var(--gray);
}

.process h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.step {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
}

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

/* Footer */
.main-footer {
    background-color: var(--dark);
    color: #e0e0e0; /* Texte un peu plus clair */
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem; /* Espace grille */
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-col {
    display: flex;
    flex-direction: column;
}
.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--light);
}
.footer-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}
.footer-title {
    color: var(--light);
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    font-weight: 600; /* Moins gras */
}
.footer-links {
    list-style: none;
    padding: 0; /* Reset padding */
}
.footer-links li {
    margin-bottom: 0.8rem;
}
.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}
.footer-links a:hover { color: var(--secondary); }
.footer-address {
    font-style: normal;
}
.footer-address p {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}
.footer-address i.fa-fw { /* Icônes FontAwesome Fixed Width */
    margin-right: 10px;
    color: var(--secondary);
    margin-top: 4px;
    width: 1.2em;
    text-align: center;
    flex-shrink: 0; /* Empêche l'icône de rétrécir */
}
.footer-address a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-address a:hover { color: var(--secondary); }
.footer-bottom {
    padding: 1.5rem 0; /* Moins de padding */
    text-align: center;
}
.copyright {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.85rem; /* Plus petit */
}
.legal-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}
.legal-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.85rem;
}
.legal-links a:hover {
    color: var(--secondary);
    text-decoration: underline;
}
/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--light);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}