/* =========================
   HERO SECTION
========================= */
.hero-home {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0a2463, #3e92cc);
    color: #fff;
}

.hero-home .hero-content {
    flex: 1 1 45%;
    max-width: 600px;
    margin-bottom: 30px;
}

.hero-home h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 20px;
    color: white !important;
    line-height: 1.2;
}

.hero-home .tagline {
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.85) !important;
    line-height: 1.6;
}

.hero-home .btn-primary-large {
    display: inline-block;
    background-color: #fb8500;
    color: #fff;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.hero-home .btn-primary-large:hover {
    background-color: #ffb703;
    color: #0a2463;
}

/* =========================
   FEATURES / CARDS
========================= */
.features-section {
    padding: 60px 20px;
}

.features-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 50px;
    color: #0a2463;
}

.features-section .methods-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.features-section .method-card {
    flex: 1 1 280px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-section .method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* =========================
   TEXTES GÉNÉRAUX
========================= */
.section h2 {
    color: #000;
}

.section h3 {
    font-family: 'Playfair Display', serif;
    color: #fb8500;
    margin-bottom: 15px;
}

.section p {
    font-family: 'Work Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* =========================
   CTA FINAL
========================= */
.cta-final {
    background: linear-gradient(135deg, #0a2463, #3e92cc);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.cta-final h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-final p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-final .btn-primary-large {
    background-color: #fb8500;
}

.cta-final .btn-primary-large:hover {
    background-color: #ffb703;
    color: #0a2463;
}

/* =========================
   RESPONSIVE MOBILE
========================= */
@media (max-width: 992px) {

    .hero-home {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

    .hero-home .hero-content {
        max-width: 100%;
    }

    .hero-home h1 {
        font-size: 32px;
    }

    .hero-home .tagline {
        font-size: 16px;
    }

    .hero-home .btn-primary-large {
        width: 100%;
        max-width: 300px;
    }

    .features-section .methods-grid {
        flex-direction: column;
        gap: 20px;
    }
}


