        /* ===== HERO SIMPLE & EFFICACE ===== */
.hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--clr-green) 0%, hsl(158, 39%, 30%) 100%);
    color: var(--clr-white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero__badge {
    display: inline-block;
    background-color: var(--clr-yellowgreen);
    color: var(--clr-txt);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__title {
    font-size: clamp(2rem, 2.5vw + 1rem, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--clr-white);
}

.hero__title span {
    color: var(--clr-yellowgreen);
    display: block;
    margin-top: 0.5rem;
}

.hero__description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero__highlight {
    color: var(--clr-yellowgreen);
    font-weight: bold;
}

/* Boutons améliorés */
.hero__cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero__btn {
    padding: 1rem 2.5rem;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    min-width: 200px;
    justify-content: center;
}

.hero__btn--primary {
    background-color: var(--clr-yellowgreen);
    color: var(--clr-txt);
    border: 2px solid var(--clr-yellowgreen);
}

.hero__btn--primary:hover {
    background-color: transparent;
    color: var(--clr-yellowgreen);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero__btn--secondary {
    background-color: transparent;
    color: var(--clr-white);
    border: 2px solid var(--clr-white);
}

.hero__btn--secondary:hover {
    background-color: var(--clr-white);
    color: var(--clr-green);
    transform: translateY(-3px);
}

.hero__btn-icon {
    font-size: 1.2em;
}

/* Stats simplifiées */
.hero__stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat {
    text-align: center;
    min-width: 120px;
}

.hero__stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--clr-yellowgreen);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero__stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 5rem 0 3rem;
    }
    
    .hero__cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .hero__btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero__stats {
        gap: 2rem;
    }
    
    .hero__stat {
        min-width: 100px;
    }
}

/* ===== SECTION SERVICES ===== */
.services {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.services--bg {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-green), var(--clr-yellowgreen));
    z-index: 1;
}

/* En-tête de section */
.services__header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.services__title {
    font-size: clamp(2rem, 3vw, 3rem);
    color: var(--clr-green);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.services__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--clr-yellowgreen);
    border-radius: 2px;
}

.services__intro {
    font-size: 1.2rem;
    color: var(--clr-txtlight);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid layout */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Animation des cartes dans la grille */
.services__grid .service-card {
    animation: fadeInUp 0.6s ease forwards;
}

.services__grid .service-card:nth-child(1) { animation-delay: 0.1s; }
.services__grid .service-card:nth-child(2) { animation-delay: 0.2s; }
.services__grid .service-card:nth-child(3) { animation-delay: 0.3s; }
.services__grid .service-card:nth-child(4) { animation-delay: 0.4s; }

/* ===== RESPONSIVE SERVICES ===== */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 15px;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 40px auto 0;
    }
    
    .service-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .services__title {
        font-size: 1.8rem;
    }
    
    .services__intro {
        font-size: 1rem;
    }
    
    .service-card__icon-container {
        width: 80px;
        height: 80px;
    }
    
    .service-card__icon {
        width: 40px;
        height: 40px;
    }
}

/* ===== SECTION CONTACT ===== */
.contact {
    background-color: var(--clr-white);
    text-align: center;
    padding: 60px 20px;
}

.contact__title {
    margin-bottom: 10px;
    color: var(--clr-green);
}

.contact__intro {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.contact__info {
    width: calc(30% - 10px);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.contact__form {
    width: calc(70% - 10px);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.contact__info-title {
    color: var(--clr-green);
    margin-bottom: 30px;
}

.contact__info-text {
    margin: 0;
}

.contact__info-highlight {
    color: var(--clr-yellowgreen);
}

/* Formulaire de soumission */
.submission-form {
    margin: 0 auto;
    width: 70%;
}

@media (width < 768px) {
    .contact__inner {
        flex-direction: column;
    }
    
    .contact__info, 
    .contact__form,
    .submission-form {
        width: 100%;
    }
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--clr-txtlight);
    color: #fff;
    padding: 20px;
    text-align: center;
}

.footer__text {
    font-size: 0.9rem;
}

.footer__social {
    margin-top: 10px;
}

.footer__social-link {
    display: inline-block;
    margin: 0 10px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer__social-link:hover {
    opacity: 1;
}

/* ===== ARTICLE SERVICES ===== */
.page-services {
    background-color: #f4f4f4;
}

.article-services {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid hsl(0%, 0%, 87%);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: var(--clr-white);
}

.article-services__title,
.article-services__subtitle {
    color: var(--clr-green);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--clr-whitehr);
    padding-bottom: 5px;
}

.article-services__text:not(.helpbar__message) {
    margin-bottom: 20px;
}

.article-services__image {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

.article-services__intro {
    padding: 20px 0;
    margin-bottom: 20px;
    color: var(--clr-txtlight);
}

.article-services__list {
    list-style-type: none;
    padding-left: 0;
}

.article-services__item,
.article-services__list ol {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.article-services__list ol li {
    margin-bottom: 10px;
}

.article-services__item::before {
    content: "•";
    position: absolute;
    left: 0;
}