/* ================================================================
   1. HERO
================================================================= */

/* Bouton contour bleu */
.btn-outline-blue {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-full);
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, border-color .2s, transform .2s;
}

.btn-outline-blue:hover {
    background: var(--second-color);
    border-color: var(--blue);
    color: var(--white);
    transform: translateY(-1px);
}

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* padding-top: var(--navbar-h, 64px); */
    /* color: var(--white); */
}

/* Vidéo */
.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(211, 7, 7, 0.82) 0%,
            rgba(10, 25, 47, 0.75) 45%,
            rgba(28, 141, 212, 0.72) 100%);
    z-index: 2;
}

/* Contenu */
.hero__inner {
    position: relative;
    z-index: 3;
    padding: 64px 0 56px;
    width: 100%;
}

/* Eyebrow */
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius-full);
    padding: 5px 16px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .78);
    margin-bottom: 22px;
}

.hero__eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: dotPulse 2s infinite;
}

/* Titre */
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 6.5vw, 4rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.03em;
    color: var(--white);
    margin-bottom: 18px;
}

.hero__title .t-red {
    color: var(--red-light);
    font-style: normal;
}

.hero__title .t-gold {
    color: var(--gold);
    font-style: normal;
}

/* Sous-titre */
.hero__sub {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .62);
    max-width: 480px;
    margin-bottom: 32px;
}

/* CTA */
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 36px;
}

/* Trust badges */
.hero__trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .8rem;
    color: rgba(255, 255, 255, .62);
}

.hero__trust-item i {
    color: var(--gold);
    font-size: .9rem;
}

.hero__trust-sep {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, .18);
}

/* Visuel */
.hero__visual {
    justify-content: center;
    align-items: center;
}

.hero__visual img {
    filter: drop-shadow(0 20px 48px rgba(0, 0, 0, .45));
    animation: heroFloat 5s ease-in-out infinite;
    /* max-height: 420px; */
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .4;
        transform: scale(1.6);
    }
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, .32);
    font-size: .65rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    animation: scrollBounce 2.8s ease-in-out infinite;
    transition: color .3s;
}

.hero__scroll:hover {
    color: rgba(255, 255, 255, .65);
}

.hero__scroll i {
    font-size: 1rem;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}


/* ================================================================
   2. STATS BAR — fond noir, chiffres rouge, labels blanc
================================================================= */

.stats-bar {
    background: var(--navy);
}

.stats-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stats-bar__item {
    padding: 38px 24px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .07);
    transition: background .25s;
}

.stats-bar__item:last-child {
    border-right: none;
}

.stats-bar__item:hover {
    background: rgba(255, 255, 255, .04);
}

.stats-bar__num {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    color: var(--red);
    margin-bottom: 6px;
}

.stats-bar__sup {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--red);
}

.stats-bar__label {
    display: block;
    font-size: .75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
    letter-spacing: .1em;
}


/* ── Cartes flottantes hero ─────────────────────────────── */
.hero__visual-wrap {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__visual-wrap img {
    filter: drop-shadow(0 20px 48px rgba(0, 0, 0, .45));
    animation: heroFloat 5s ease-in-out infinite;
    width: 85%;
    position: relative;
    z-index: 1;
}

.hero__float-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 12px 16px;
    white-space: nowrap;
    animation: heroFloat 5s ease-in-out infinite;
}

/* Décalage d'animation pour effet naturel */
.hero__float-card--tl {
    animation-delay: 0s;
}

.hero__float-card--br {
    animation-delay: 1.5s;
}

.hero__float-card--bl {
    animation-delay: 0.8s;
}

.hero__float-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hero__float-card strong {
    display: block;
    font-size: .9rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.hero__float-card span {
    display: block;
    font-size: .72rem;
    color: rgba(255, 255, 255, .55);
    font-weight: 500;
}

/* Positions */
.hero__float-card--tl {
    top: 8%;
    left: 0;
}

.hero__float-card--br {
    bottom: 18%;
    right: 0;
}

.hero__float-card--bl {
    bottom: 4%;
    left: 4%;
}

/* ================================================================
   3. SERVICES
================================================================= */

.srv-index {
    background: var(--gray-50);
}

.srv-index-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px 26px;
    border: 1px solid var(--gray-200);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

/* Trait supérieur au hover */
.srv-index-card::after {
    /* content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease); */
}

.srv-index-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.srv-index-card:hover::after {
    transform: scaleX(1);
}

.srv-index-card__icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: var(--red-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--red);
    margin-bottom: 16px;
    transition: background var(--transition), color var(--transition);
}

.srv-index-card:hover .srv-index-card__icon {
    background: var(--red);
    color: var(--white);
}

.srv-index-card__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.srv-index-card__desc {
    font-size: .875rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 18px;
}


/* ================================================================
   4. À PROPOS
================================================================= */

.about-index {
    background: var(--white);
    overflow: hidden;
    position: relative;
}

.about-index__img-wrap {
    position: relative;
}

.about-index__img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: block;
    position: relative;
    z-index: 1;
}

.about-index__badge {
    position: absolute;
    bottom: -18px;
    right: -16px;
    z-index: 2;
    background: var(--red);
    color: var(--gold);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    text-align: center;
    box-shadow: 0 10px 36px rgba(211, 7, 7, .38);
    min-width: 116px;
}

.about-index__badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.about-index__badge span {
    font-size: .7rem;
    opacity: .85;
    font-weight: 500;
}

/* Feature items */
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.about-feature:last-child {
    margin-bottom: 0;
}

.about-feature__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: var(--radius-sm);
    background: var(--blue-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    color: var(--blue);
}

.about-feature__text strong {
    display: block;
    font-weight: 700;
    font-size: .88rem;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.about-feature__text span {
    font-size: .82rem;
    color: var(--gray-500);
    line-height: 1.6;
}


/* ================================================================
   5. RÉALISATIONS
================================================================= */
.real-index {
    background: var(--gray-50);
}

/* ── Layout grille principale ────────────────────────────── */
.real-index-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.real-index-grid__side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

/* ── Carte de base ───────────────────────────────────────── */
.real-index-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    background: var(--navy);
    transition: transform .35s ease, box-shadow .35s ease;
}

.real-index-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
}

/* ── Image ───────────────────────────────────────────────── */
.real-index-card__img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.real-index-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: transform .5s ease, opacity .35s ease;
}

.real-index-card:hover .real-index-card__img img {
    transform: scale(1.06);
    opacity: .92;
}

/* ── Overlay dégradé léger ───────────────────────────────── */
.real-index-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(10, 25, 47, .88) 0%,
            rgba(10, 25, 47, .15) 45%,
            transparent 100%);
}

/* ── Contenu texte ───────────────────────────────────────── */
.real-index-card__content {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding: 24px;
}

/* ── Catégorie ───────────────────────────────────────────── */
.real-index-card__cat {
    display: inline-flex;
    align-items: center;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--white);
    background: var(--red);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

/* ── Titre ───────────────────────────────────────────────── */
.real-index-card__title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.35;
    margin-bottom: 8px;
}

/* ── Description (grande carte uniquement) ───────────────── */
.real-index-card__desc {
    font-size: .82rem;
    color: var(--gold);
    line-height: 1.65;
    margin-bottom: 14px;
}

/* ── Lien ────────────────────────────────────────────────── */
.real-index-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    font-weight: 700;
    color: var(--white);
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 6px 14px;
    border-radius: 20px;
    transition: background .2s, border-color .2s, gap .2s;
}

.real-index-card:hover .real-index-card__link {
    background: var(--red);
    border-color: var(--red);
    gap: 10px;
}

/* ── Grande carte featured ───────────────────────────────── */
.real-index-card--featured {
    min-height: 520px;
}

.real-index-card--featured .real-index-card__title {
    font-size: 1.4rem;
}

/* ── Badge "À la une" ────────────────────────────────────── */
.real-index-card__badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--yellow, #EAC435);
    color: #000;
    font-size: .7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
}

/* ── Petites cartes ──────────────────────────────────────── */
.real-index-card--sm {
    min-height: 240px;
}

.real-index-card--sm .real-index-card__content {
    padding: 16px;
}

.real-index-card--sm .real-index-card__title {
    font-size: .88rem;
    margin-bottom: 10px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .real-index-grid {
        grid-template-columns: 1fr;
    }

    .real-index-card--featured {
        min-height: 380px;
    }

    .real-index-grid__side {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .real-index-grid__side {
        grid-template-columns: 1fr;
    }

    .real-index-card--featured {
        min-height: 300px;
    }
}


/* ================================================================
   6. VIDÉO
================================================================= */

.video-index {
    background: var(--navy);
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
}

.video-index__bg-word {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 18vw;
    font-weight: 900;
    color: rgba(255, 255, 255, .025);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: -.03em;
}

.video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .55);
    max-width: 860px;
    margin: 40px auto 0;
}

.video-wrapper video {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.video-wrapper__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .26);
    transition: background .3s;
    cursor: pointer;
}

.video-wrapper__play:hover {
    background: rgba(0, 0, 0, .12);
}

.video-wrapper__btn {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--red);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 8px 36px rgba(211, 7, 7, .55);
    cursor: pointer;
    transition: transform .3s, box-shadow .3s;
}

.video-wrapper__btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 48px rgba(211, 7, 7, .75);
}


/* ================================================================
   TÉMOIGNAGES
================================================================= */
.testi-index {
    background: var(--gray-50);
}

/* ── Swiper wrap ─────────────────────────────────────────── */
.testi-swiper-wrap {
    position: relative;
    padding: 0 48px 48px;
}

/* ── Carte ───────────────────────────────────────────────── */
.testi-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 28px;
    height: 260px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    overflow: hidden;
}

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .09);
    border-color: var(--red);
}

.testi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity .3s;
}

.testi-card:hover::before {
    opacity: 1;
}

/* ── Header ──────────────────────────────────────────────── */
.testi-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.testi-card__quote {
    width: 40px;
    height: 40px;
    background: var(--red-soft);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ── Avatar + nom ────────────────────────────────────────── */
.testi-card__who {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.testi-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gray-200);
}

.testi-card__initials {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--blue));
    color: var(--white);
    font-weight: 800;
    font-size: .95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi-card__name {
    font-size: .78rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: right;
    line-height: 1.2;
}

.testi-card__co {
    font-size: .7rem;
    color: var(--gray-500);
    text-align: right;
}

/* ── Étoiles ─────────────────────────────────────────────── */
.testi-card__stars {
    display: flex;
    gap: 2px;
}

.testi-card__stars i {
    font-size: .78rem;
    color: var(--yellow, #EAC435);
}

/* ── Texte tronqué ───────────────────────────────────────── */
.testi-card__text {
    font-size: .875rem;
    line-height: 1.72;
    color: var(--gray-600);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Boutons navigation ──────────────────────────────────── */
.testi-btn-prev,
.testi-btn-next {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gray-700);
    font-size: .9rem;
    transition: background .2s, border-color .2s, color .2s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

.testi-btn-prev {
    left: 0;
}

.testi-btn-next {
    right: 0;
}

.testi-btn-prev:hover,
.testi-btn-next:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

/* ── Pagination dots ─────────────────────────────────────── */
.testi-pagination {
    text-align: center;
    margin-top: 28px;
}

.testi-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--gray-300);
    opacity: 1;
    border-radius: 4px;
    transition: background .2s, width .2s;
}

.testi-pagination .swiper-pagination-bullet-active {
    background: var(--red);
    width: 24px;
}


.testi-btn-prev,
.testi-btn-next {
    display: none;
}

/* ================================================================
   8. ÉQUIPE
================================================================= */

.team-index {
    background: var(--gray-50);
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.team-card__photo {
    position: relative;
    overflow: hidden;
    height: 228px;
}

.team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.team-card:hover .team-card__photo img {
    transform: scale(1.05);
}

.team-card__socials {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px;
    background: linear-gradient(to top, rgba(0, 8, 28, .84), transparent);
    display: flex;
    justify-content: center;
    gap: 8px;
    transform: translateY(100%);
    transition: transform .3s var(--ease);
}

.team-card:hover .team-card__socials {
    transform: translateY(0);
}

.team-card__socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: .78rem;
    text-decoration: none;
    transition: background .2s, border-color .2s;
}

.team-card__socials a:hover {
    background: var(--red);
    border-color: var(--red);
}

.team-card__body {
    padding: 16px;
}

.team-card__name {
    font-weight: 800;
    font-size: .92rem;
    color: var(--gray-900);
    margin-bottom: 3px;
}

.team-card__role {
    font-size: .76rem;
    color: var(--blue);
    font-weight: 600;
}


/* ================================================================
   9. BLOG
================================================================= */

.blog-index {
    background: var(--white);
}

.blog-index-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}

.blog-index-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-index-card__thumb {
    position: relative;
    overflow: hidden;
    height: 194px;
}

.blog-index-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.blog-index-card:hover .blog-index-card__thumb img {
    transform: scale(1.06);
}

.blog-index-card__cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--red);
    color: var(--white);
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.blog-index-card__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-index-card__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: .74rem;
    color: var(--gray-400);
    margin-bottom: 9px;
}

.blog-index-card__title {
    font-weight: 800;
    font-size: .95rem;
    color: var(--gray-900);
    line-height: 1.45;
    margin-bottom: 8px;
    text-decoration: none;
    display: block;
    transition: color var(--transition);
    flex: 1;
}

.blog-index-card__title:hover {
    color: var(--red);
}

.blog-index-card__excerpt {
    font-size: .82rem;
    color: var(--gray-500);
    line-height: 1.65;
}

.blog-index-card__footer {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--gray-100);
}


/* ================================================================
   PARTENAIRES — défilement infini
================================================================= */
.partners-index {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

/* ── Masque fondu sur les bords ──────────────────────────── */
.partners-index__track-wrap {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right,
            transparent 0%,
            black 12%,
            black 88%,
            transparent 100%);
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 12%,
            black 88%,
            transparent 100%);
}

/* ── Piste défilante ─────────────────────────────────────── */
.partners-index__track {
    display: flex;
    align-items: center;
    gap: 56px;
    width: max-content;
    animation: partnersScroll 40s linear infinite;
}

.partners-index__track:hover {
    animation-play-state: paused;
}

@keyframes partnersScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 28px));
    }
}

/* ── Item ────────────────────────────────────────────────── */
.partners-index__item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── Logo image ──────────────────────────────────────────── */
.partners-index__item img {
    height: 40px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: .85;
    transition: opacity .3s;
}

.partners-index__item img:hover {
    opacity: 1;
}

/* ── Pill texte (fallback sans logo) ─────────────────────── */
.partners-index__pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 22px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 30px;
    font-size: .8rem;
    font-weight: 700;
    color: var(--gray-500);
    white-space: nowrap;
    transition: border-color .2s, color .2s;
}

.partners-index__pill:hover {
    border-color: var(--red);
    color: var(--red);
}

/* ================================================================
   11. CTA FINAL
================================================================= */

.cta-index {
    background: var(--navy);
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Ligne dégradée en haut */
.cta-index::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--blue));
}

/* Halo lumineux */
.cta-index::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(211, 7, 7, .1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-index__inner {
    position: relative;
    z-index: 2;
}

.cta-index__title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.6vw, 2.9rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.18;
    letter-spacing: -.02em;
    margin-bottom: 16px;
}

.cta-index__sub {
    font-size: .98rem;
    color: rgba(255, 255, 255, .55);
    max-width: 460px;
    margin: 0 auto 34px;
    line-height: 1.75;
}

.cta-index__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}


/* ================================================================
   RESPONSIVE
================================================================= */

@media (max-width: 991px) {
    .stats-bar__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-bar__item:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: unset;
        /* margin-top: calc(-1 * var(--navbar-h, 10px)); */
    }

    .hero__inner {
        padding: 16px 20px 24px;
    }

    .hero__title {
        font-size: 1.85rem;
    }

    .hero__sub {
        font-size: .92rem;
        max-width: 100%;
    }

    .hero__actions {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .hero__actions .btn-red,
    .hero__actions .btn-outline-blue {
        width: auto;
    }

    .hero__trust {
        gap: 8px 14px;
    }

    .hero__trust-sep {
        display: none;
    }

    .about-index__img {
        height: 300px;
    }

    .about-index__badge {
        right: 8px;
        bottom: 8px;
    }

    .stats-bar__grid {
        padding: 0 12px;
    }

    .testi-swiper-wrap {
        padding: 0 36px 40px;
    }
}

/* ── À propos — mobile ───────────────────────────────────── */

/* Titre + badge côte à côte */
.about-index__title-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

/* Badge inline mobile */
.about-index__badge-inline {
    background: var(--red);
    color: var(--gold, #EAC435);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(211, 7, 7, .32);
    animation: badgeBounce 2.4s ease-in-out infinite;
    flex-shrink: 0;
}

.about-index__badge-inline strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-index__badge-inline span {
    font-size: .65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .85);
    white-space: nowrap;
}

@keyframes badgeBounce {
    0%, 100% { transform: translateY(0); }
    45%      { transform: translateY(-7px); }
    65%      { transform: translateY(-3px); }
}

@media (max-width: 991px) {
    .about-index { padding-top: 28px; padding-bottom: 28px; }
    .about-index__img  { height: 260px; }
    .about-index__badge { right: 12px; bottom: -16px; animation: badgeBounce 2.4s ease-in-out infinite; }
}

@media (max-width: 480px) {
    .hero__inner {
        padding: 80px 16px 56px;
    }

    .hero__title {
        font-size: 1.65rem;
    }

    .hero__sub {
        font-size: .88rem;
    }

    .btn-red,
    .btn-outline-blue {
        font-size: .82rem;
        padding: 9px 18px;
    }

    .stats-bar__grid {
        grid-template-columns: 1fr 1fr;
        padding: 0 8px;
    }

    .stats-bar__item {
        padding: 24px 12px;
    }

    .stats-bar__num {
        font-size: 2.1rem;
    }

    .testi-swiper-wrap {
        padding: 0 28px 36px;
    }
}