/* ================================================================
    APV-TOGO - STYLE PRINCIPAL
    Template base : Gardon / Kakaye-Group
    Adapté & enrichi pour Les Amis de la Planète Vivable
    ================================================================ */

    /* ---- VARIABLES ---- */
    :root {
    --apv-green:       #2ab939;
    --apv-dark-green:  #1a8a26;
    --apv-forest:      #192919;
    --apv-forest-2:    #1e3a1e;
    --apv-light-green: #e8f0e5;
    --apv-earth:       #5c7a29;
    --apv-gray:        #6d756d;
    --apv-white:       #ffffff;
    --apv-font:        'Lexend', sans-serif;
    --apv-shadow:      0 8px 32px rgba(25,41,25,0.12);
    --apv-shadow-lg:   0 20px 60px rgba(25,41,25,0.18);
    --apv-radius:      10px;
    --apv-transition:  all 0.38s cubic-bezier(0.25,0.46,0.45,0.94);
    /* Gardon original colors */
    --gardon-base:     #2ab939;
    --gardon-black:    #192919;
    --gardon-white:    #ffffff;
    }

    /* ---- RESET & BASE ---- */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: var(--apv-font); color: var(--apv-gray); background: #fff; overflow-x: hidden; line-height: 1.8; }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; transition: var(--apv-transition); }
    ul { list-style: none; padding: 0; margin: 0; }
    button { font-family: var(--apv-font); cursor: pointer; border: none; background: none; }
    ::selection { background: var(--apv-green); color: #fff; }
    :focus-visible { outline: 3px solid var(--apv-green); outline-offset: 3px; border-radius: 4px; }

    /* ---- SKIP LINK ---- */
    .skip-link {
    position: absolute; top: -100px; left: 16px;
    background: var(--apv-green); color: #fff;
    padding: 10px 18px; border-radius: 0 0 8px 8px;
    font-size: 14px; font-weight: 600; z-index: 99999;
    transition: top 0.3s;
    }
    .skip-link:focus { top: 0; }

    /* ---- COOKIE ---- */
    #cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9997;
    background: rgba(25,41,25,0.97);
    border-top: 2px solid var(--apv-green);
    padding: 16px 28px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; flex-wrap: wrap;
    transform: translateY(100%); transition: transform 0.4s ease;
    backdrop-filter: blur(8px);
    }
    #cookie-banner.visible { transform: translateY(0); }
    #cookie-banner p { color: #ccd8c4; font-size: 13px; flex: 1; min-width: 200px; margin: 0; }
    #cookie-banner a { color: var(--apv-green); }
    .cookie-actions { display: flex; gap: 8px; }
    .cookie-btn { padding: 8px 20px; border-radius: 6px; font-size: 13px; font-weight: 600; transition: var(--apv-transition); }
    .cookie-btn:not(.outline) { background: var(--apv-green); color: #fff; }
    .cookie-btn:not(.outline):hover { background: var(--apv-dark-green); }
    .cookie-btn.outline { border: 1px solid rgba(255,255,255,0.3); color: #ccd8c4; }
    .cookie-btn.outline:hover { border-color: var(--apv-green); color: var(--apv-green); }

    /* ---- SECTION COMMONS ---- */
    .section-tagline {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--apv-green); font-size: 13px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    margin-bottom: 14px;
    }
    .section-tagline img { width: 22px; height: auto; }
    .section-tagline.light { color: rgba(255,255,255,0.75); }
    .section-title {
    font-size: clamp(1.6rem,3vw,2.3rem);
    font-weight: 800; color: var(--apv-forest);
    letter-spacing: -0.04em; line-height: 1.2;
    margin-bottom: 20px;
    }
    .section-title span { color: var(--apv-green); }
    .section-title.white { color: #fff; }
    .section-desc { max-width: 580px; margin: 0 auto; font-size: 15px; }

    /* ---- BUTTONS ---- */
    .btn-apv {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--apv-green); color: #fff;
    padding: 13px 30px; border-radius: 50px;
    font-weight: 700; font-size: 14px;
    border: 2px solid var(--apv-green);
    transition: var(--apv-transition);
    white-space: nowrap;
    }
    .btn-apv:hover { background: transparent; color: var(--apv-green); transform: translateY(-2px); box-shadow: var(--apv-shadow); }
    .btn-apv.w-100 { width: 100%; justify-content: center; }
    .btn-apv-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--apv-green);
    padding: 12px 28px; border-radius: 50px;
    font-weight: 700; font-size: 14px;
    border: 2px solid var(--apv-green);
    transition: var(--apv-transition);
    }
    .btn-apv-outline:hover { background: var(--apv-green); color: #fff; transform: translateY(-2px); }
    .btn-apv-outline-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: #fff;
    padding: 12px 28px; border-radius: 50px;
    font-weight: 700; font-size: 14px;
    border: 2px solid rgba(255,255,255,0.7);
    transition: var(--apv-transition);
    }
    .btn-apv-outline-white:hover { background: #fff; color: var(--apv-forest); transform: translateY(-2px); }
    .mt-3 { margin-top: 1rem !important; }
    .mt-4 { margin-top: 1.5rem !important; }

    /* ================================================================
    TOPBAR
    ================================================================ */
    .apv-topbar {
    background: var(--apv-forest); padding: 8px 0;
    }
    .apv-topbar__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
    .apv-topbar__left { display: flex; gap: 20px; flex-wrap: wrap; }
    .apv-topbar__left li { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: #9aab9a; }
    .apv-topbar__left i { color: var(--apv-green); font-size: 13px; }
    .apv-topbar__left a:hover { color: var(--apv-green); }
    .apv-topbar__social { display: flex; gap: 6px; }
    .apv-topbar__social a {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: #9aab9a; font-size: 11px;
    transition: var(--apv-transition);
    }
    .apv-topbar__social a:hover { background: var(--apv-green); color: #fff; }

    /* ================================================================
    NAVBAR
    ================================================================ */
    .apv-nav {
    background: #fff;
    box-shadow: 0 2px 16px rgba(25,41,25,0.07);
    position: sticky; top: 0; z-index: 1000;
    transition: var(--apv-transition);
    }
    .apv-nav.scrolled { box-shadow: 0 4px 28px rgba(25,41,25,0.14); }
    .apv-nav__inner { display: flex; align-items: center; justify-content: space-between; padding: 0; min-height: 82px; }
    .apv-nav__brand img { height: 68px; width: auto; transition: var(--apv-transition); }
    .apv-nav.scrolled .apv-nav__brand img { height: 54px; }

    .apv-nav__menu { display: flex; align-items: center; gap: 2px; }
    .apv-nav__link {
    display: block; padding: 28px 13px;
    font-size: 14px; font-weight: 500; color: var(--apv-forest);
    position: relative; white-space: nowrap;
    transition: var(--apv-transition);
    }
    .apv-nav__link::after {
    content: ''; position: absolute; bottom: 0; left: 13px; right: 13px;
    height: 3px; background: var(--apv-green);
    transform: scaleX(0); border-radius: 2px 2px 0 0;
    transition: transform 0.3s ease;
    }
    .apv-nav__link:hover,
    .apv-nav__link.active { color: var(--apv-green); }
    .apv-nav__link:hover::after,
    .apv-nav__link.active::after { transform: scaleX(1); }

    /* Dropdown */
    .apv-nav__menu .has-dropdown { position: relative; }
    .apv-nav__dropdown {
    position: absolute; top: 100%; left: 0;
    background: #fff; border-top: 3px solid var(--apv-green);
    border-radius: 0 0 var(--apv-radius) var(--apv-radius);
    box-shadow: var(--apv-shadow-lg); min-width: 220px;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: var(--apv-transition); z-index: 100; padding: 8px 0;
    }
    .has-dropdown:hover .apv-nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
    .apv-nav__dropdown a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 20px; font-size: 13.5px; color: var(--apv-forest);
    transition: var(--apv-transition);
    }
    .apv-nav__dropdown a:hover { background: var(--apv-light-green); color: var(--apv-dark-green); padding-left: 26px; }
    .apv-nav__dropdown i { color: var(--apv-green); width: 16px; }

    .apv-nav__btn {
    background: var(--apv-green); color: #fff !important;
    padding: 10px 22px; border-radius: 50px; font-size: 13.5px;
    font-weight: 700; margin-left: 8px; transition: var(--apv-transition);
    white-space: nowrap;
    }
    .apv-nav__btn:hover { background: var(--apv-dark-green); transform: translateY(-2px); }

    /* Toggler */
    .apv-nav__toggler {
    display: none; flex-direction: column; gap: 5px;
    padding: 8px; background: none; border: none; cursor: pointer;
    }
    .apv-nav__toggler span {
    display: block; width: 26px; height: 2px;
    background: var(--apv-forest); border-radius: 2px;
    transition: var(--apv-transition);
    }
    .apv-nav__toggler.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .apv-nav__toggler.open span:nth-child(2) { opacity: 0; }
    .apv-nav__toggler.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* ================================================================
    HERO
    ================================================================ */
    .hero-section { position: relative; }
    .heroSwiper { width: 100%; }
    .hero-slide {
    min-height: 100vh; display: flex; align-items: center;
    background-size: cover; background-position: center;
    position: relative;
    }
    .hero-slide__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(25,41,25,0.85) 0%, rgba(25,41,25,0.5) 55%, rgba(42,185,57,0.12) 100%);
    }
    .hero-slide .container { position: relative; z-index: 2; }
    .hero-slide__content { max-width: 660px; padding: 40px 0; }
    .hero-slide__tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(42,185,57,0.18); color: var(--apv-green);
    border: 1px solid rgba(42,185,57,0.35);
    padding: 7px 18px; border-radius: 50px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.07em;
    text-transform: uppercase; margin-bottom: 20px;
    backdrop-filter: blur(10px);
    }
    .hero-slide__title {
    font-size: clamp(2rem,5.5vw,4.2rem);
    font-weight: 800; color: #fff; line-height: 1.12;
    letter-spacing: -0.04em; margin-bottom: 20px;
    }
    .hero-slide__title em { color: var(--apv-green); font-style: normal; }
    .hero-slide__text { color: rgba(255,255,255,0.82); font-size: 16px; line-height: 1.75; margin-bottom: 32px; max-width: 520px; }
    .hero-slide__btns { display: flex; gap: 14px; flex-wrap: wrap; }

    /* Swiper nav */
    .heroSwiper .swiper-button-next,
    .heroSwiper .swiper-button-prev {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%; border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(10px);
    color: #fff; transition: var(--apv-transition);
    }
    .heroSwiper .swiper-button-next:hover,
    .heroSwiper .swiper-button-prev:hover { background: var(--apv-green); border-color: var(--apv-green); }
    .heroSwiper .swiper-button-next::after,
    .heroSwiper .swiper-button-prev::after { font-size: 15px; font-weight: 800; }
    .heroSwiper .swiper-pagination-bullet { background: rgba(255,255,255,0.5); width: 9px; height: 9px; }
    .heroSwiper .swiper-pagination-bullet-active { background: var(--apv-green); width: 26px; border-radius: 4px; }

    /* Scroll indicator */
    .hero-scroll-indicator {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.55); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    }
    .hero-scroll-mouse {
    display: block; width: 24px; height: 38px;
    border: 2px solid rgba(255,255,255,0.3); border-radius: 12px; position: relative;
    }
    .hero-scroll-mouse span {
    display: block; width: 4px; height: 8px;
    background: var(--apv-green); border-radius: 2px;
    position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
    animation: scrollMouse 1.8s ease-in-out infinite;
    }
    @keyframes scrollMouse { 0%,100%{top:6px;opacity:1} 50%{top:18px;opacity:0.3} }

    /* ================================================================
    FEATURE CARDS
    ================================================================ */
    .feature-section { margin-top: -1px; }
    .feature-card {
    padding: 44px 32px 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--apv-transition);
    }
    .feature-card--1 { background: var(--apv-green); }
    .feature-card--2 { background: var(--apv-forest); }
    .feature-card--3 { background: var(--apv-forest-2); }

    .feature-card::before {
    content: ''; position: absolute;
    top: -40px; right: -40px;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    transition: var(--apv-transition);
    }
    .feature-card:hover::before { transform: scale(2.5); }
    .feature-card__icon {
    font-size: 2.8rem; color: rgba(255,255,255,0.85);
    margin-bottom: 18px; display: block;
    }
    .feature-card__title { font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 12px; }
    .feature-card__title a { color: #fff; }
    .feature-card__text { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 20px; }
    .feature-card__link {
    display: inline-flex; align-items: center; gap: 7px;
    color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em;
    }
    .feature-card__link:hover { color: #fff; gap: 12px; }

    /* ================================================================
    ABOUT
    ================================================================ */
    .about-section { padding: 100px 0; background: #fff; }
    .about-imgs { position: relative; }
    .about-imgs__main { border-radius: var(--apv-radius); overflow: hidden; box-shadow: var(--apv-shadow-lg); }
    .about-imgs__main img { width: 100%; height: 480px; object-fit: cover; }
    .about-imgs__secondary {
    position: absolute; bottom: -30px; right: -30px;
    width: 200px; border-radius: var(--apv-radius);
    overflow: hidden; border: 5px solid #fff; box-shadow: var(--apv-shadow);
    }
    .about-imgs__secondary img { width: 100%; height: 160px; object-fit: cover; }
    .about-imgs__badge {
    position: absolute; top: 28px; left: -28px;
    background: var(--apv-green); color: #fff;
    padding: 18px 22px; border-radius: var(--apv-radius);
    text-align: center; box-shadow: var(--apv-shadow);
    }
    .about-imgs__badge strong { display: block; font-size: 2.2rem; font-weight: 800; line-height: 1; }
    .about-imgs__badge span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.9; }
    .about-text { font-size: 15px; line-height: 1.82; margin-bottom: 14px; }
    .about-list { margin: 0 0 28px; }
    .about-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; padding: 6px 0; }
    .about-list i { color: var(--apv-green); margin-top: 3px; flex-shrink: 0; }
    .about-btns { display: flex; gap: 14px; flex-wrap: wrap; }

    /* ================================================================
    STATS
    ================================================================ */
    .stats-section {
    background: var(--apv-forest); padding: 60px 0;
    position: relative;
    }
    .stats-section::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--apv-green), var(--apv-earth), var(--apv-green));
    }
    .stat-item { padding: 20px; }
    .stat-item__icon { font-size: 2rem; color: var(--apv-green); margin-bottom: 10px; }
    .stat-item__number { font-size: 2.8rem; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -0.04em; }
    .stat-item__number span { color: var(--apv-green); }
    .stat-item__label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 6px; }

    /* ================================================================
    SERVICES
    ================================================================ */
    .services-section { padding: 100px 0; background: var(--apv-light-green); }
    .service-card {
    background: #fff; border-radius: var(--apv-radius);
    padding: 34px 26px; height: 100%;
    box-shadow: 0 2px 16px rgba(25,41,25,0.06);
    position: relative; overflow: hidden;
    transition: var(--apv-transition);
    border-top: 4px solid transparent;
    }
    .service-card:hover { transform: translateY(-7px); box-shadow: var(--apv-shadow-lg); border-top-color: var(--apv-green); }
    .service-card__num {
    font-size: 4.5rem; font-weight: 800;
    color: rgba(25, 210, 44, 0.08); position: absolute;
    top: 10px; right: 18px; line-height: 1;
    }
    .service-card__title { font-size: 16.5px; font-weight: 700; color: var(--apv-forest); margin-bottom: 10px; }
    .service-card__title a { color: var(--apv-forest); }
    .service-card__title a:hover { color: var(--apv-green); }
    .service-card p { font-size: 14px; line-height: 1.7; }

    /* ================================================================
    PROCESS
    ================================================================ */
    .process-section {
    padding: 100px 0;
    background: var(--apv-forest);
    position: relative; overflow: hidden;
    }
    .process-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 60%, rgba(42,185,57,0.07) 0%, transparent 55%);
    pointer-events: none;
    }
    .process-intro { color: rgba(255,255,255,0.72); font-size: 15px; line-height: 1.78; margin-bottom: 14px; }
    .process-checks { margin: 20px 0 24px; }
    .process-checks li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 600; margin-bottom: 8px; }
    .process-checks i { color: var(--apv-green); font-size: 15px; }
    .process-img { border-radius: var(--apv-radius); overflow: hidden; margin-bottom: 24px; }
    .process-img img { width: 100%; height: 220px; object-fit: cover; }
    .process-sub-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 10px; }
    .process-domains { margin: 0; }
    .process-domains li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.8); font-size: 14px; margin-bottom: 7px; }
    .process-domains i { color: var(--apv-green); width: 14px; }
    .process-steps { display: flex; flex-direction: column; gap: 12px; }
    .process-step {
    display: flex; gap: 18px; align-items: flex-start;
    padding: 20px 22px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--apv-radius); transition: var(--apv-transition);
    }
    .process-step:hover { background: rgba(42,185,57,0.12); border-color: rgba(42,185,57,0.3); transform: translateX(6px); }
    .process-step__num {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--apv-green); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; font-weight: 800; flex-shrink: 0;
    }
    .process-step__content h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 5px; }
    .process-step__content p { font-size: 13px; color: rgba(255,255,255,0.62); line-height: 1.6; margin: 0; }

    /* ================================================================
    GALERIE
    ================================================================ */
    .gallery-section { padding: 100px 0; background: #fff; }
    .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
    .gallery-item { position: relative; overflow: hidden; border-radius: 8px; }
    .gallery-item img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.55s ease; display: block; }
    .gallery-item:hover img { transform: scale(1.1); }
    .gallery-item__overlay {
    position: absolute; inset: 0;
    background: rgba(25,41,25,0.65);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 6px; color: #fff; opacity: 0; transition: var(--apv-transition);
    }
    .gallery-item:hover .gallery-item__overlay { opacity: 1; }
    .gallery-item__overlay i { font-size: 1.8rem; }
    .gallery-item__overlay span { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }

    /* ================================================================
    FAQ
    ================================================================ */
    .faq-section { padding: 100px 0; background: var(--apv-light-green); }
    .faq-img { max-width: 160px; margin-bottom: 22px; opacity: 0.85; }
    .faq-intro { font-size: 14.5px; line-height: 1.78; margin-bottom: 24px; }
    .faq-item {
    background: #fff; border-radius: var(--apv-radius);
    margin-bottom: 10px; overflow: hidden;
    border: 1px solid #e0e8dc;
    transition: var(--apv-transition);
    }
    .faq-item:hover { border-color: var(--apv-green); }
    .faq-question {
    width: 100%; text-align: left;
    padding: 18px 22px; background: #fff;
    font-size: 15px; font-weight: 600; color: var(--apv-forest);
    display: flex; justify-content: space-between; align-items: center;
    gap: 12px; transition: var(--apv-transition);
    border: none;
    }
    .faq-question:not(.collapsed) { background: var(--apv-light-green); color: var(--apv-dark-green); }
    .faq-icon { font-size: 12px; color: var(--apv-green); flex-shrink: 0; transition: transform 0.3s; }
    .faq-question:not(.collapsed) .faq-icon { transform: rotate(45deg); }
    .faq-answer { padding: 0; }
    .faq-answer.show { padding: 0; }
    .faq-answer p { padding: 14px 22px 18px; font-size: 14px; line-height: 1.75; margin: 0; }

    /* ================================================================
    HIGHLIGHT (TROC-PIC vedette)
    ================================================================ */
    .highlight-section { padding: 100px 0; background: var(--apv-forest); }
    .highlight-imgs { position: relative; }
    .highlight-imgs__main {
    border-radius: var(--apv-radius); width: 100%; height: 400px;
    object-fit: cover; box-shadow: var(--apv-shadow-lg);
    }
    .highlight-imgs__secondary {
    position: absolute; bottom: -24px; left: -24px;
    width: 180px; height: 140px; object-fit: cover;
    border-radius: var(--apv-radius); border: 4px solid var(--apv-forest);
    box-shadow: var(--apv-shadow);
    }
    .highlight-section .section-title { color: #fff; }
    .highlight-section > .container > .row > div > p { color: rgba(255,255,255,0.72); font-size: 15px; margin-bottom: 24px; }
    .highlight-features { display: flex; flex-direction: column; gap: 0; }
    .highlight-feature {
    padding: 18px 20px;
    border-left: 3px solid rgba(42,185,57,0.25);
    margin-bottom: 12px; transition: var(--apv-transition);
    }
    .highlight-feature:hover { border-left-color: var(--apv-green); background: rgba(42,185,57,0.08); border-radius: 0 var(--apv-radius) var(--apv-radius) 0; }
    .highlight-feature h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
    .highlight-feature h4 a { color: #fff; }
    .highlight-feature h4 a:hover { color: var(--apv-green); }
    .highlight-feature p { font-size: 13.5px; color: rgba(255,255,255,0.65); margin: 0; line-height: 1.65; }

    /* ================================================================
    PROJETS / BLOG
    ================================================================ */
    .projects-section { padding: 100px 0; background: #fff; }
    .blog-card { background: #fff; border-radius: var(--apv-radius); overflow: hidden; box-shadow: var(--apv-shadow); height: 100%; transition: var(--apv-transition); }
    .blog-card:hover { transform: translateY(-7px); box-shadow: var(--apv-shadow-lg); }
    .blog-card__img { position: relative; overflow: hidden; }
    .blog-card__img img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.55s ease; display: block; }
    .blog-card:hover .blog-card__img img { transform: scale(1.07); }
    .blog-card__img-link {
    position: absolute; top: 14px; right: 14px;
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--apv-green); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; opacity: 0; transition: var(--apv-transition);
    }
    .blog-card:hover .blog-card__img-link { opacity: 1; }
    .blog-card__meta-top {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 12px 16px; background: linear-gradient(to top, rgba(25,41,25,0.8), transparent);
    display: flex; justify-content: space-between; align-items: center;
    }
    .blog-card__date { font-size: 11px; color: rgba(255,255,255,0.85); }
    .blog-card__date i { margin-right: 4px; }
    .blog-card__cat {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.05em; background: var(--apv-green); color: #fff;
    padding: 3px 10px; border-radius: 50px;
    }
    .blog-card__body { padding: 22px 20px 24px; }
    .blog-card__title { font-size: 16px; font-weight: 700; color: var(--apv-forest); margin-bottom: 8px; line-height: 1.4; }
    .blog-card__title a { color: var(--apv-forest); }
    .blog-card__title a:hover { color: var(--apv-green); }
    .blog-card__body p { font-size: 13.5px; line-height: 1.7; margin-bottom: 16px; }
    .blog-card__footer { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--apv-gray); }
    .blog-card__footer i { color: var(--apv-green); margin-right: 4px; }
    .blog-card__more { color: var(--apv-green); font-weight: 700; display: flex; align-items: center; gap: 6px; }
    .blog-card__more:hover { gap: 10px; }

    /* ================================================================
    VALEURS
    ================================================================ */
    .values-section { padding: 100px 0; background: var(--apv-light-green); }
    .values-accordion { margin-top: 10px; }
    .values-item { background: #fff; border-radius: var(--apv-radius); margin-bottom: 10px; overflow: hidden; border: 1px solid #dce8d8; }
    .values-question {
    width: 100%; text-align: left;
    padding: 18px 20px; background: #fff;
    display: flex; align-items: center; gap: 14px;
    font-size: 15px; font-weight: 600; color: var(--apv-forest);
    transition: var(--apv-transition); border: none;
    }
    .values-question:not(.collapsed) { background: var(--apv-green); color: #fff; }
    .values-question:not(.collapsed) .values-question__num { background: rgba(255,255,255,0.2); color: #fff; }
    .values-question:not(.collapsed) .values-question__icon { color: #fff; transform: rotate(180deg); }
    .values-question__num {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--apv-light-green); color: var(--apv-green);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 800; flex-shrink: 0;
    transition: var(--apv-transition);
    }
    .values-question__icon { margin-left: auto; font-size: 13px; color: var(--apv-green); transition: transform 0.3s; }
    .values-answer p { padding: 14px 20px 18px; font-size: 14px; line-height: 1.75; margin: 0; }

    /* Values Swiper */
    .valuesSwiper { border-radius: var(--apv-radius); overflow: hidden; box-shadow: var(--apv-shadow-lg); }
    .valuesSwiper .swiper-slide img { width: 100%; height: 520px; object-fit: cover; }
    .valuesSwiper .swiper-pagination-bullet { background: rgba(255,255,255,0.6); }
    .valuesSwiper .swiper-pagination-bullet-active { background: var(--apv-green); }

    /* ================================================================
    ÉQUIPE
    ================================================================ */
    .team-section { padding: 100px 0; background: #fff; }
    .team-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--apv-shadow); height: 100%; transition: var(--apv-transition); }
    .team-card:hover { transform: translateY(-8px); box-shadow: var(--apv-shadow-lg); }
    .team-card__img-wrap { position: relative; overflow: hidden; height: 280px; background: var(--apv-light-green); }
    .team-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.55s ease; position: relative; z-index: 1; }
    .team-card__img-wrap::before {
    content: '\f007'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    font-size: 6rem; color: rgba(42,185,57,0.15);
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 0;
    }
    .team-card:hover .team-card__img-wrap img { transform: scale(1.06); }
    .team-card__shape {
    position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
    background: linear-gradient(to top, rgba(25,41,25,0.7), transparent);
    z-index: 2; transition: var(--apv-transition);
    }
    .team-card__social {
    position: absolute; bottom: -56px; left: 0; right: 0;
    display: flex; justify-content: center; gap: 8px;
    padding: 12px; z-index: 3;
    transition: bottom 0.38s ease;
    }
    .team-card:hover .team-card__social { bottom: 0; }
    .team-card__social a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.15); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; backdrop-filter: blur(6px);
    transition: var(--apv-transition);
    }
    .team-card__social a:hover { background: var(--apv-green); transform: translateY(-3px); }
    .team-card__body { padding: 20px 18px 24px; text-align: center; }
    .team-card__role { font-size: 11.5px; font-weight: 700; color: var(--apv-green); text-transform: uppercase; letter-spacing: 0.07em; display: block; margin-bottom: 6px; }
    .team-card__name { font-size: 18px; font-weight: 700; color: var(--apv-forest); margin: 0; }
    .team-card__name a { color: var(--apv-forest); }
    .team-card__name a:hover { color: var(--apv-green); }

    /* ================================================================
    PARTENAIRES (infinite scroll)
    ================================================================ */
    .partners-section { padding: 60px 0; border-top: 1px solid #e4ece0; border-bottom: 1px solid #e4ece0; background: #fff; overflow: hidden; }
    .partners-track-wrap { overflow: hidden; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
    .partners-track { display: flex; gap: 40px; width: max-content; animation: scrollPartners 18s linear infinite; }
    .partners-track:hover { animation-play-state: paused; }
    .partner-logo { display: flex; align-items: center; justify-content: center; padding: 12px 24px; filter: grayscale(1); opacity: 0.55; transition: var(--apv-transition); flex-shrink: 0; }
    .partner-logo:hover { filter: grayscale(0); opacity: 1; }
    .partner-logo img { height: 54px; width: auto; object-fit: contain; }
    @keyframes scrollPartners { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ================================================================
    DOCUMENTS
    ================================================================ */
    .docs-section { padding: 100px 0; background: var(--apv-forest); position: relative; overflow: hidden; }
    .docs-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(42,185,57,0.07) 0%, transparent 50%);
    pointer-events: none;
    }
    .docs-section .section-title { color: #fff; }
    .docs-section .section-desc { color: rgba(255,255,255,0.65); }
    .docs-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
    .docs-filter-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 20px; border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.2);
    background: transparent; color: rgba(255,255,255,0.7);
    font-size: 13px; font-weight: 500;
    font-family: var(--apv-font); cursor: pointer;
    transition: var(--apv-transition);
    }
    .docs-filter-btn:hover, .docs-filter-btn.active { background: var(--apv-green); border-color: var(--apv-green); color: #fff; }
    .doc-item.hidden { display: none !important; }
    .doc-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px; overflow: hidden; height: 100%;
    display: flex; flex-direction: column; transition: var(--apv-transition);
    }
    .doc-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(42,185,57,0.4); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.25); }
    .doc-card__preview {
    height: 120px; display: flex; align-items: center; justify-content: center;
    font-size: 3.2rem; position: relative;
    }
    .doc-pdf  { background: linear-gradient(135deg,rgba(192,57,43,0.2),rgba(231,76,60,0.15)); color:#e74c3c; }
    .doc-pptx { background: linear-gradient(135deg,rgba(211,84,0,0.2),rgba(230,126,34,0.15)); color:#e67e22; }
    .doc-docx { background: linear-gradient(135deg,rgba(26,82,118,0.2),rgba(41,128,185,0.15)); color:#2980b9; }
    .doc-badge {
    position: absolute; top: 10px; right: 10px;
    padding: 3px 9px; border-radius: 50px;
    font-size: 10px; font-weight: 800; text-transform: uppercase;
    }
    .doc-badge.pdf  { background:rgba(231,76,60,0.2);  color:#e74c3c; border:1px solid rgba(231,76,60,0.4); }
    .doc-badge.pptx { background:rgba(230,126,34,0.2); color:#e67e22; border:1px solid rgba(230,126,34,0.4); }
    .doc-badge.docx { background:rgba(41,128,185,0.2); color:#2980b9; border:1px solid rgba(41,128,185,0.4); }
    .doc-card__body { padding: 16px 16px 20px; flex: 1; display: flex; flex-direction: column; }
    .doc-meta { display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,0.45); margin-bottom: 8px; }
    .doc-meta i { margin-right: 3px; }
    .doc-card__body h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 7px; line-height: 1.4; }
    .doc-card__body p { font-size: 13px; color: rgba(255,255,255,0.6); flex: 1; margin-bottom: 14px; line-height: 1.62; }
    .doc-actions { display: flex; gap: 8px; }
    .doc-btn-preview, .doc-btn-dl {
    flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    padding: 8px 12px; border-radius: 8px; font-size: 12px; font-weight: 600;
    transition: var(--apv-transition); text-decoration: none;
    }
    .doc-btn-preview { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.15); }
    .doc-btn-preview:hover { background: rgba(255,255,255,0.2); color: #fff; }
    .doc-btn-dl { background: var(--apv-green); color: #fff; border: 1px solid var(--apv-green); }
    .doc-btn-dl:hover { background: var(--apv-dark-green); }

    /* ================================================================
    CTA
    ================================================================ */
    .cta-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--apv-forest) 0%, #1e4020 100%);
    position: relative; overflow: hidden;
    }
    .cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='30' cy='30' r='80' fill='rgba(42,185,57,0.04)'/%3E%3Ccircle cx='170' cy='170' r='100' fill='rgba(42,185,57,0.03)'/%3E%3C/svg%3E") center/cover;
    pointer-events: none;
    }
    .cta-inner { position: relative; z-index: 1; text-align: center; }
    .cta-inner__content { max-width: 640px; margin: 0 auto 44px; }
    .cta-title { font-size: clamp(1.7rem,3vw,2.6rem); font-weight: 800; color: #fff; letter-spacing: -0.04em; margin-bottom: 14px; }
    .cta-inner__content p { color: rgba(255,255,255,0.75); font-size: 16px; }
    .cta-cards { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
    .cta-card {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--apv-radius); padding: 28px 22px; text-align: center;
    color: #fff; width: 170px; cursor: pointer;
    transition: var(--apv-transition); backdrop-filter: blur(8px);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    }
    .cta-card:hover { background: var(--apv-green); border-color: var(--apv-green); transform: translateY(-6px); box-shadow: 0 12px 36px rgba(42,185,57,0.3); }
    .cta-card i { font-size: 2rem; color: var(--apv-green); transition: color 0.3s; }
    .cta-card:hover i { color: #fff; }
    .cta-card span { font-size: 13.5px; font-weight: 700; }

    /* ================================================================
    CONTACT
    ================================================================ */
    .contact-section { padding: 100px 0; background: var(--apv-light-green); }
    .contact-info-box {
    background: var(--apv-forest); border-radius: var(--apv-radius); padding: 38px 30px;
    color: #fff; height: 100%;
    }
    .contact-info-box h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
    .contact-info-box > p { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 28px; }
    .contact-info-item { display: flex; gap: 15px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .contact-info-item:last-of-type { border-bottom: none; }
    .contact-info-item__icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(42,185,57,0.15); display: flex; align-items: center; justify-content: center;
    color: var(--apv-green); font-size: 17px; flex-shrink: 0;
    }
    .contact-info-item h5 { font-size: 12px; color: rgba(255,255,255,0.55); margin-bottom: 3px; font-weight: 500; }
    .contact-info-item p, .contact-info-item a { font-size: 14.5px; color: #fff; margin: 0; font-weight: 500; }
    .contact-info-item a:hover { color: var(--apv-green); }
    .contact-social { display: flex; gap: 9px; margin-top: 26px; }
    .contact-social a {
    width: 40px; height: 40px; border-radius: 9px;
    background: rgba(255,255,255,0.08); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; transition: var(--apv-transition);
    }
    .contact-social a:hover { background: var(--apv-green); transform: translateY(-3px); }
    .contact-form-box { background: #fff; border-radius: var(--apv-radius); padding: 40px 36px; box-shadow: var(--apv-shadow); }
    .contact-field { margin-bottom: 16px; }
    .contact-input {
    width: 100%; padding: 13px 16px;
    border: 1.5px solid #dde8d8; border-radius: 8px;
    font-family: var(--apv-font); font-size: 14px; color: var(--apv-forest);
    background: #fff; transition: var(--apv-transition); outline: none;
    -webkit-appearance: none;
    appearance: none;
    }
    .contact-input:focus { border-color: var(--apv-green); box-shadow: 0 0 0 3px rgba(42,185,57,0.1); }
    .contact-input::placeholder { color: #aab8a4; }
    textarea.contact-input { resize: vertical; min-height: 140px; }
    select.contact-input {
    background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%232ab939' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") no-repeat right 14px center/14px;
    cursor: pointer;
    }
    .contact-rgpd { display: flex; align-items: flex-start; gap: 10px; font-size: 12.5px; color: var(--apv-gray); margin-bottom: 20px; }
    .contact-rgpd input { margin-top: 3px; accent-color: var(--apv-green); flex-shrink: 0; }
    .contact-rgpd a { color: var(--apv-green); }
    .contact-success {
    display: none; background: #d4edda; color: #155724;
    border-radius: 8px; padding: 14px 18px; font-size: 14px; margin-top: 14px;
    }

    /* ================================================================
    FOOTER
    ================================================================ */
    .site-footer { background: var(--apv-forest); }
    .footer-top { padding: 70px 0 40px; }
    .footer-logo img { height: 70px; width: auto; margin-bottom: 18px; }
    .footer-widget p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.78; margin-bottom: 22px; }
    .footer-widget__title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid rgba(42,185,57,0.3); }
    .footer-social { display: flex; gap: 8px; }
    .footer-social a {
    width: 38px; height: 38px; border-radius: 8px;
    background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; transition: var(--apv-transition);
    }
    .footer-social a:hover { background: var(--apv-green); color: #fff; transform: translateY(-3px); }
    .footer-links li { margin-bottom: 9px; }
    .footer-links a, .footer-links span { font-size: 13.5px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 8px; transition: var(--apv-transition); }
    .footer-links i { color: var(--apv-green); font-size: 11px; }
    .footer-links a:hover { color: var(--apv-green); padding-left: 4px; }
    .footer-newsletter-text { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 12px; }
    .footer-newsletter-form { display: flex; border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,0.15); margin-bottom: 20px; }
    .footer-newsletter-form input { flex: 1; background: rgba(255,255,255,0.07); border: none; padding: 11px 14px; color: #fff; font-family: var(--apv-font); font-size: 13px; outline: none; }
    .footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
    .footer-newsletter-form button { background: var(--apv-green); color: #fff; border: none; padding: 11px 16px; cursor: pointer; font-size: 15px; transition: var(--apv-transition); }
    .footer-newsletter-form button:hover { background: var(--apv-dark-green); }
    .footer-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
    .footer-gallery__item { border-radius: 6px; overflow: hidden; display: block; }
    .footer-gallery__item img { width: 100%; height: 68px; object-fit: cover; transition: transform 0.4s ease; }
    .footer-gallery__item:hover img { transform: scale(1.12); }
    .footer-bottom { background: rgba(0,0,0,0.22); padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.07); }
    .footer-bottom__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
    .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.45); margin: 0; }
    .footer-bottom a { color: var(--apv-green); }
    .footer-bottom__links { display: flex; gap: 18px; }
    .footer-bottom__links a { font-size: 12.5px; color: rgba(255,255,255,0.45); }
    .footer-bottom__links a:hover { color: var(--apv-green); }

    /* ================================================================
    SCROLL TO TOP
    ================================================================ */
    .scroll-top {
    position: fixed; bottom: 28px; right: 28px;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--apv-green); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; z-index: 999;
    opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: var(--apv-transition); box-shadow: var(--apv-shadow);
    border: none;
    }
    .scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
    .scroll-top:hover { background: var(--apv-dark-green); transform: translateY(-3px); }

    /* ================================================================
    MODALS
    ================================================================ */
    .apv-modal {
    position: fixed; inset: 0; z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    padding: 20px; opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .apv-modal.is-open { opacity: 1; visibility: visible; }
    .apv-modal__overlay { position: absolute; inset: 0; background: rgba(10,20,10,0.76); backdrop-filter: blur(6px); cursor: pointer; }
    .apv-modal__box {
    position: relative; background: #fff; border-radius: 18px;
    width: 100%; max-width: 560px; max-height: 92vh; overflow-y: auto;
    box-shadow: 0 32px 80px rgba(0,0,0,0.3);
    transform: translateY(30px) scale(0.97); opacity: 0;
    transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
    scrollbar-width: thin; scrollbar-color: var(--apv-green) transparent;
    }
    .apv-modal.is-open .apv-modal__box { transform: translateY(0) scale(1); opacity: 1; }
    .apv-modal__close {
    position: absolute; top: 14px; right: 14px;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.2); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; cursor: pointer; z-index: 10;
    transition: var(--apv-transition); border: none;
    }
    .apv-modal__close:hover { background: rgba(255,255,255,0.35); transform: rotate(90deg); }
    .apv-modal__head { padding: 36px 32px 26px; text-align: center; border-radius: 18px 18px 0 0; }
    .mod-green  { background: linear-gradient(135deg,#1a3a1a,#2ab939); }
    .mod-red    { background: linear-gradient(135deg,#7b241c,#e74c3c); }
    .mod-teal   { background: linear-gradient(135deg,#1a3a2a,#27ae60); }
    .mod-blue   { background: linear-gradient(135deg,#1a2a3a,#2980b9); }
    .apv-modal__icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: #fff; margin: 0 auto 12px; }
    .apv-modal__head h2 { font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -0.03em; margin-bottom: 5px; }
    .apv-modal__head p { color: rgba(255,255,255,0.8); font-size: 14px; }
    .apv-modal__body { padding: 24px 32px 32px; }
    .mod-form { margin-top: 4px; }
    .mod-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .mod-field { margin-bottom: 14px; }
    .mod-field label { font-size: 13px; font-weight: 600; color: var(--apv-forest); display: block; margin-bottom: 5px; }
    .mod-input {
    width: 100%; padding: 12px 14px;
    border: 1.5px solid #dde8d8; border-radius: 8px;
    font-family: var(--apv-font); font-size: 13.5px; color: var(--apv-forest);
    background: #fff; outline: none; transition: var(--apv-transition);
    appearance: none;
    -webkit-appearance: none;
    }
    .mod-input:focus { border-color: var(--apv-green); box-shadow: 0 0 0 3px rgba(42,185,57,0.1); }
    .mod-input::placeholder { color: #aab8a4; }
    textarea.mod-input { resize: vertical; }
    select.mod-input { background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%232ab939' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") no-repeat right 12px center/14px; cursor: pointer; }
    .mod-rgpd { display: flex; align-items: flex-start; gap: 9px; font-size: 12px; color: var(--apv-gray); margin-bottom: 18px; }
    .mod-rgpd input { margin-top: 2px; accent-color: var(--apv-green); flex-shrink: 0; }
    .mod-rgpd a { color: var(--apv-green); }
    .mod-perks { margin-bottom: 20px; }
    .mod-perk { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; border-bottom: 1px solid #f0f5ee; font-size: 13.5px; color: var(--apv-forest); }
    .mod-perk:last-child { border-bottom: none; }
    .mod-perk i { color: var(--apv-green); margin-top: 2px; flex-shrink: 0; }
    .mod-success { display: none; background: #d4edda; color: #155724; border-radius: 8px; padding: 13px 16px; font-size: 13.5px; margin-top: 12px; }
    /* Don */
    .don-impact { background: var(--apv-light-green); border-radius: 10px; padding: 16px; margin-bottom: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    .don-impact__item { background: #fff; border-radius: 8px; padding: 10px; text-align: center; }
    .don-impact__item strong { display: block; font-size: 14px; font-weight: 800; color: var(--apv-green); margin-bottom: 2px; }
    .don-impact__item span { font-size: 11px; color: var(--apv-gray); }
    .don-amounts { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
    .don-btn { padding: 8px 16px; border-radius: 50px; border: 2px solid #dde8d8; background: transparent; color: var(--apv-forest); font-family: var(--apv-font); font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--apv-transition); }
    .don-btn:hover, .don-btn.active { background: var(--apv-green); border-color: var(--apv-green); color: #fff; }
    .don-note { font-size: 11.5px; color: var(--apv-gray); text-align: center; margin-top: 10px; }
    .don-note i { margin-right: 4px; }
    body.modal-open-apv { overflow: hidden; }

    /* ================================================================
    RESPONSIVE
    ================================================================ */
    @media (max-width: 1199px) {
    .gallery-grid { grid-template-columns: repeat(3,1fr); }
    }
    @media (max-width: 991px) {
    .apv-nav__toggler { display: flex; }
    .apv-nav__menu {
        display: none; flex-direction: column; gap: 0;
        position: absolute; top: 100%; left: 0; right: 0;
        background: #fff; box-shadow: var(--apv-shadow-lg);
        padding: 16px 0; border-top: 3px solid var(--apv-green);
    }
    .apv-nav__menu.open { display: flex; }
    .apv-nav__link { padding: 12px 24px; }
    .apv-nav__link::after { display: none; }
    .apv-nav__dropdown { position: static; box-shadow: none; border: none; opacity: 1; visibility: visible; transform: none; background: var(--apv-light-green); border-radius: 0; display: none; }
    .has-dropdown.open .apv-nav__dropdown { display: block; }
    .apv-nav__btn { margin: 8px 20px; width: calc(100% - 40px); justify-content: center; display: flex; }
    .gallery-grid { grid-template-columns: repeat(2,1fr); }
    .about-imgs__secondary { right: 0; bottom: -20px; width: 150px; }
    .about-imgs__secondary img { height: 120px; }
    .about-imgs__badge { left: -10px; }
    .valuesSwiper .swiper-slide img { height: 380px; }
    .docs-section .docs-grid { grid-template-columns: repeat(2,1fr); }
    }
    @media (max-width: 767px) {
    section { padding-block: 70px; }
    .hero-slide { min-height: 80vh; }
    .hero-slide__title { font-size: 2rem; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .feature-card { padding: 30px 22px; }
    .about-imgs__secondary { display: none; }
    .about-imgs__badge { left: 10px; top: 10px; }
    .mod-row { grid-template-columns: 1fr; }
    .don-impact { grid-template-columns: 1fr 1fr; }
    .cta-card { width: 145px; padding: 22px 14px; }
    .contact-form-box { padding: 26px 20px; }
    }
    @media (max-width: 575px) {
    .apv-topbar { display: none; }
    .hero-slide { min-height: 85vh; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .stats-section .row .col-6 { padding: 16px 10px; }
    .apv-modal { padding: 0; align-items: flex-end; }
    .apv-modal__box { border-radius: 18px 18px 0 0; max-height: 94vh; }
    .apv-modal__head { padding: 28px 20px 20px; }
    .apv-modal__body { padding: 18px 18px 28px; }
}

/* ================================================================
    ARTICLES PUBLICS DYNAMIQUES
    ================================================================ */
    .empty-pub {
    text-align: center; padding: 48px 24px;
    color: var(--apv-gray);
    }
    .empty-pub i { font-size: 2.5rem; color: var(--border, #d4e6d8); display: block; margin-bottom: 14px; }
    .empty-pub p  { font-size: 0.95rem; }

    .blog-card__img-placeholder {
    width: 100%; height: 220px;
    background: var(--apv-light-green);
    display: flex; align-items: center; justify-content: center;
    }
    .blog-card__img-placeholder i { font-size: 3rem; color: var(--apv-green); opacity: 0.3; }

    /* ================================================================
    MODAL ARTICLE DÉTAIL
    ================================================================ */
    #articleDetailModal .apv-modal__box {
    max-width: 680px;
    }
    #articleDetailContent img {
    display: block;
}
