/* ================================================================
   MUSESUP-BF - SECTIONS REDESIGN
   Design professionnel & moderne
   ================================================================ */

/* ================================================================
   SECTION HEADERS - COMPOSANT UNIVERSEL
   ================================================================ */

.sec-wrap {
    padding: 5rem 0;
}

.sec-wrap--light {
    background: #f8fafb;
}

.sec-wrap--white {
    background: #ffffff;
}

.sec-head {
    text-align: center;
    margin-bottom: 3.5rem;
}

.sec-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 179, 0, 0.08);
    color: var(--primary-green);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.45rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 179, 0, 0.2);
}

.sec-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.sec-title span {
    color: var(--primary-green);
}

.sec-divider {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-red));
    border-radius: 2px;
    margin: 0 auto 1.5rem;
}

.sec-desc {
    font-size: 1.05rem;
    color: #6b7280;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ================================================================
   KPI / STATS BAR
   ================================================================ */

.kpi-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.kpi-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 179, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.kpi-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 0, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}

.kpi-item {
    text-align: center;
    padding: 1.5rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.kpi-item:last-child {
    border-right: none;
}

.kpi-icon {
    font-size: 1.6rem;
    color: var(--primary-green);
    margin-bottom: 0.75rem;
    display: block;
}

.kpi-number {
    font-size: 2.6rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.kpi-number sup {
    font-size: 1.2rem;
    vertical-align: super;
}

.kpi-number sub {
    font-size: 1rem;
}

.kpi-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* ================================================================
   NEWS / ARTICLES SECTION
   ================================================================ */

.news-section {
    padding: 5rem 0;
    background: #f8fafb;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.news-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 179, 0, 0.15);
}

.news-card__img {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #e5e7eb;
}

.news-card__img-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s ease;
}

.news-card:hover .news-card__img-bg {
    transform: scale(1.08);
}

.news-card__tag {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--primary-green);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
}

.news-card__body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card__title {
    font-size: 0.975rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.55;
    margin-bottom: 1rem;
    flex: 1;
}

.news-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.news-card__title a:hover {
    color: var(--primary-green);
}

.news-card__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 1rem;
    border-top: 1px solid #f0f4f8;
}

.news-card__link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-green);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.3s;
    text-decoration: none;
}

.news-card__link:hover {
    color: var(--primary-red);
    gap: 0.7rem;
}

/* Sidebar articles populaires */
.news-sidebar__title {
    font-size: 1rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-sidebar__title::before {
    content: '';
    display: block;
    width: 4px;
    height: 18px;
    background: linear-gradient(to bottom, var(--primary-green), var(--primary-red));
    border-radius: 2px;
}

.popular-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 0.875rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.popular-card:hover {
    transform: translateX(5px);
    border-color: rgba(0, 179, 0, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.popular-card__rank {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-green), #009900);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.popular-card__img {
    width: 65px;
    height: 65px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #e5e7eb;
}

.popular-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-card__title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.45;
}

.popular-card__title a {
    color: inherit;
    text-decoration: none;
}

.popular-card__title a:hover {
    color: var(--primary-green);
}

.news-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.news-view-all:hover {
    background: var(--primary-green);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 179, 0, 0.25);
}

/* ================================================================
   ABOUT SECTION
   ================================================================ */

.about-section {
    padding: 5rem 0;
    background: #ffffff;
}

.about-intro {
    background: linear-gradient(135deg, #f0fff4 0%, #fafffe 100%);
    border: 1px solid rgba(0, 179, 0, 0.15);
    border-left: 4px solid var(--primary-green);
    border-radius: 14px;
    padding: 2rem 2.25rem;
    margin-bottom: 3rem;
}

.about-intro p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #374151;
    margin: 0;
}

.about-intro p:last-child {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 0;
}

/* Documents officiels */
.doc-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.doc-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border-top: 4px solid var(--doc-color, var(--primary-green));
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--doc-color, var(--primary-green));
}

.doc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.doc-card__icon {
    font-size: 2.5rem;
    color: var(--doc-color, var(--primary-green));
    margin-bottom: 1rem;
    display: block;
}

.doc-card__title {
    font-size: 0.975rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.doc-card__sub {
    font-size: 0.82rem;
    color: #9ca3af;
    margin: 0;
}

/* Siège */
.siege-box {
    background: #f8fafb;
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    border-left: 4px solid var(--primary-green);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.siege-box__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-green), #009900);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.siege-box__content h5 {
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.siege-box__content p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

/* Objectif général */
.objective-general {
    background: linear-gradient(135deg, rgba(230, 0, 0, 0.04) 0%, #fff 100%);
    border: 1px solid rgba(230, 0, 0, 0.12);
    border-left: 4px solid var(--primary-red);
    border-radius: 14px;
    padding: 1.75rem 2rem;
    margin-bottom: 2rem;
}

.objective-general h5 {
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.objective-general p {
    font-size: 1.05rem;
    color: #374151;
    margin: 0;
    line-height: 1.8;
}

/* Objectifs spécifiques */
.objective-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.objective-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.objective-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1.25rem;
}

.objective-card__icon--green { background: linear-gradient(135deg, var(--primary-green), #009900); }
.objective-card__icon--red   { background: linear-gradient(135deg, var(--primary-red), #cc0000); }
.objective-card__icon--amber { background: linear-gradient(135deg, #f59e0b, #d97706); }

.objective-card__text {
    font-size: 0.93rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

/* Principes mutualistes */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.principle-item {
    background: #f8fafb;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    border-left: 3px solid var(--primary-green);
    transition: all 0.25s ease;
}

.principle-item:hover {
    background: #f0fff4;
    border-left-width: 4px;
    box-shadow: 0 4px 15px rgba(0, 179, 0, 0.08);
}

.principle-item h6 {
    color: #059669;
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.principle-item__check {
    width: 18px;
    height: 18px;
    background: var(--primary-green);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    flex-shrink: 0;
}

.principle-item p {
    font-size: 0.86rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.important-note {
    background: linear-gradient(135deg, rgba(0, 179, 0, 0.06) 0%, rgba(230, 0, 0, 0.04) 100%);
    border: 1px solid rgba(0, 179, 0, 0.2);
    border-radius: 14px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.important-note__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.important-note__text {
    font-size: 1rem;
    color: #374151;
    margin: 0;
    line-height: 1.7;
}

/* Map container */
.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

/* ================================================================
   ADHESION / MEMBERSHIP SECTION
   ================================================================ */

.adhesion-section {
    padding: 5rem 0;
    background: #f8fafb;
}

/* Content blocks */
.content-block {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    margin-bottom: 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.content-block__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f4f8;
}

.content-block__icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #fff;
    flex-shrink: 0;
}

.content-block__icon--green { background: linear-gradient(135deg, var(--primary-green), #009900); }
.content-block__icon--red   { background: linear-gradient(135deg, var(--primary-red), #cc0000); }
.content-block__icon--amber { background: linear-gradient(135deg, #f59e0b, #d97706); }
.content-block__icon--blue  { background: linear-gradient(135deg, #3b82f6, #2563eb); }

.content-block__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

/* Listes conditions */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid #f0f4f8;
    font-size: 0.94rem;
    color: #374151;
    line-height: 1.6;
}

.check-list li:last-child {
    border-bottom: none;
}

.check-list__icon {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--primary-green), #009900);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.check-list__icon--red {
    background: linear-gradient(135deg, var(--primary-red), #cc0000);
}

/* Personnes couvertes */
.coverage-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.coverage-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: #f8fafb;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
    transition: all 0.3s ease;
}

.coverage-pill:hover {
    border-color: var(--primary-red);
    background: rgba(230, 0, 0, 0.04);
}

.coverage-pill__emoji {
    font-size: 1.1rem;
}

/* Price Cards */
.price-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.price-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem 1.75rem;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-top: 4px solid var(--pc-color, #e5e7eb);
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.price-card--featured {
    background: linear-gradient(135deg, var(--primary-green), #007a00);
    border: none;
    position: relative;
    overflow: hidden;
}

.price-card--featured::before {
    content: '⭐ Principal';
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 2.5rem;
    transform: rotate(35deg);
    letter-spacing: 0.5px;
}

.price-card__label {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--pc-color, #9ca3af);
    margin-bottom: 1.25rem;
}

.price-card--featured .price-card__label {
    color: rgba(255, 255, 255, 0.75);
}

.price-card__amount {
    font-size: 2.4rem;
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.price-card--featured .price-card__amount {
    color: #fff;
}

.price-card__currency {
    font-size: 1rem;
    font-weight: 700;
    vertical-align: super;
}

.price-card__unit {
    font-size: 0.82rem;
    color: #9ca3af;
    display: block;
    margin-top: 0.5rem;
}

.price-card--featured .price-card__unit {
    color: rgba(255, 255, 255, 0.6);
}

.price-card__desc {
    font-size: 0.88rem;
    color: #6b7280;
    margin: 1rem 0 0;
    line-height: 1.5;
}

.price-card--featured .price-card__desc {
    color: rgba(255, 255, 255, 0.8);
}

/* Taux remboursement */
.reimb-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.25rem 0;
}

.reimb-item {
    background: #f8fafb;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.reimb-item:hover {
    border-color: var(--primary-green);
    background: #f0fff4;
}

.reimb-item__rate {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1;
}

.reimb-item__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    margin-top: 0.25rem;
}

.reimb-item__desc {
    font-size: 0.8rem;
    color: #9ca3af;
    margin: 0;
    margin-top: 0.25rem;
    line-height: 1.5;
}

/* Forfaits */
.forfait-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.25rem 0;
}

.forfait-item {
    background: #f8fafb;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.forfait-item:hover {
    border-color: var(--primary-green);
    background: #f0fff4;
}

.forfait-item__amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.forfait-item__label {
    font-size: 0.8rem;
    color: #374151;
    font-weight: 500;
    margin: 0.3rem 0;
}

.forfait-item__period {
    font-size: 0.75rem;
    color: #9ca3af;
    margin: 0;
}

/* Plafond box */
.plafond-box {
    background: linear-gradient(135deg, rgba(0, 179, 0, 0.06) 0%, rgba(0, 179, 0, 0.02) 100%);
    border: 1px solid rgba(0, 179, 0, 0.2);
    border-radius: 14px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.25rem;
}

.plafond-box__label {
    font-weight: 700;
    color: #374151;
    font-size: 0.95rem;
}

.plafond-box__amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1;
}

.plafond-box__sub {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.2rem;
}

/* Dossier list */
.dossier-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dossier-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid #f0f4f8;
    font-size: 0.94rem;
    color: #374151;
}

.dossier-list li:last-child {
    border-bottom: none;
}

.dossier-list__emoji {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Notes / alertes */
.note-box {
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    margin-top: 1rem;
}

.note-box--yellow {
    background: #fffbeb;
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.note-box--blue {
    background: #eff6ff;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.note-box--green {
    background: #f0fff4;
    border: 1px solid rgba(0, 179, 0, 0.2);
}

.note-box--red {
    background: #fff5f5;
    border: 1px solid rgba(230, 0, 0, 0.15);
}

.note-box__icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.note-box__text {
    font-size: 0.92rem;
    color: #374151;
    margin: 0;
    line-height: 1.65;
}

/* Boutons documents */
.btn-doc {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.btn-doc--green {
    background: rgba(0, 179, 0, 0.08);
    color: var(--primary-green);
    border: 1.5px solid rgba(0, 179, 0, 0.25);
}

.btn-doc--green:hover {
    background: var(--primary-green);
    color: #fff;
    border-color: var(--primary-green);
}

.btn-doc--red {
    background: rgba(230, 0, 0, 0.07);
    color: var(--primary-red);
    border: 1.5px solid rgba(230, 0, 0, 0.2);
}

.btn-doc--red:hover {
    background: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
}

.btn-doc--blue {
    background: rgba(59, 130, 246, 0.08);
    color: #3b82f6;
    border: 1.5px solid rgba(59, 130, 246, 0.2);
}

.btn-doc--blue:hover {
    background: #3b82f6;
    color: #fff;
    border-color: #3b82f6;
}

/* CTA principal */
.cta-btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 1.1rem 2rem;
    background: linear-gradient(135deg, var(--primary-green), #007a00);
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 179, 0, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 179, 0, 0.35);
    color: #fff;
}

/* Assistance MCI */
.mci-box {
    background: linear-gradient(135deg, rgba(0, 179, 0, 0.05) 0%, rgba(230, 0, 0, 0.04) 100%);
    border: 1px solid rgba(0, 179, 0, 0.15);
    border-radius: 16px;
    padding: 2rem;
}

.mci-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.mci-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: #374151;
    padding: 0.5rem 0;
}

.mci-list__icon {
    width: 18px;
    height: 18px;
    background: var(--primary-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    flex-shrink: 0;
}

/* ================================================================
   PARTNERS SECTION
   ================================================================ */

.partners-section {
    padding: 5rem 0;
    background: #ffffff;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.partner-item {
    background: #f8fafb;
    border-radius: 16px;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 165px;
    min-height: 105px;
}

.partner-item:hover {
    background: #fff;
    border-color: var(--primary-green);
    box-shadow: 0 8px 30px rgba(0, 179, 0, 0.1);
    transform: translateY(-5px);
}

.partner-item img {
    max-width: 145px;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(0.25) opacity(0.85);
    transition: filter 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0) opacity(1);
}

/* ================================================================
   CONTACT SECTION
   ================================================================ */

.contact-section {
    padding: 5rem 0;
    background: #f8fafb;
}

/* Formulaire */
.contact-form-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-form-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.contact-form-sub {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-group {
    margin-bottom: 0;
}

.form-group--full {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group label .required {
    color: var(--primary-red);
    text-decoration: none;
    margin-left: 2px;
}

.form-control-modern {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.93rem;
    color: #374151;
    background: #fff;
    transition: all 0.3s ease;
    font-family: inherit;
    outline: none;
}

.form-control-modern:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 179, 0, 0.08);
}

.form-control-modern::placeholder {
    color: #c0c8d2;
}

textarea.form-control-modern {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-green), #007a00);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.975rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.form-submit:hover {
    box-shadow: 0 8px 25px rgba(0, 179, 0, 0.3);
    transform: translateY(-2px);
}

/* Contact info cards */
.contact-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    margin-bottom: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-info-card__head {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f4f8;
}

.contact-info-card__icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green), #009900);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.contact-info-card__icon--red {
    background: linear-gradient(135deg, var(--primary-red), #cc0000);
}

.contact-info-card__title {
    font-size: 0.975rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.55rem 0;
}

.contact-info-item__icon {
    color: var(--primary-green);
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-item__text {
    font-size: 0.9rem;
    color: #374151;
    margin: 0;
    line-height: 1.5;
}

.contact-info-item__text a {
    color: #374151;
    text-decoration: none;
}

.contact-info-item__text a:hover {
    color: var(--primary-green);
}

/* Tableau responsables */
.responsables-wrap {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.responsables-head {
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid #f0f4f8;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    background: #fafbfc;
}

.responsables-head__icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary-green), #009900);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.responsables-head__title {
    font-size: 0.975rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.responsables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.responsable-item {
    padding: 1rem 1.75rem;
    border-bottom: 1px solid #f0f4f8;
    border-right: 1px solid #f0f4f8;
    transition: background 0.2s;
}

.responsable-item:nth-child(even) {
    border-right: none;
}

.responsable-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.responsable-item:hover {
    background: #f8fafb;
}

.responsable-item__name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.2rem;
}

.responsable-item__etab {
    font-size: 0.82rem;
    color: #6b7280;
    margin-bottom: 0.2rem;
}

.responsable-item__tel {
    font-size: 0.82rem;
    color: var(--primary-green);
    font-weight: 600;
}

/* ================================================================
   FOOTER REDESIGN
   ================================================================ */

.footer {
    background: linear-gradient(135deg, #0d1117 0%, #161b27 100%);
    color: rgba(255, 255, 255, 0.75);
}

.footer__widgets {
    padding: 4rem 0 2rem;
}

.footer-logo {
    max-width: 90px;
    border-radius: 10px;
    margin-bottom: 1.25rem;
}

.footer-brand__name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.25rem;
}

.footer-brand__tagline {
    font-size: 0.82rem;
    color: var(--primary-green);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-brand__desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social__link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-social__link:hover {
    background: var(--primary-green);
    color: #fff;
    transform: translateY(-3px);
}

.footer-col-title {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-red));
    border-radius: 2px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 0.6rem;
}

.footer-nav-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.footer-nav-link::before {
    content: '→';
    color: var(--primary-green);
    font-size: 0.75rem;
    opacity: 0;
    transition: all 0.3s ease;
    width: 0;
    overflow: hidden;
}

.footer-nav-link:hover {
    color: #fff;
    padding-left: 0.5rem;
}

.footer-nav-link:hover::before {
    opacity: 1;
    width: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item__icon {
    color: var(--primary-green);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: var(--primary-green);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 1.5rem 0;
}

.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copyright {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer__credits {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer__credits a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.footer__credits a:hover {
    color: #fff;
}

/* ================================================================
   PAGE HERO — En-tête des pages internes
   ================================================================ */

.page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
    padding: 5rem 0 3.5rem;
    margin-top: 72px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 179, 0, 0.1) 0%, transparent 65%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(230, 0, 0, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 179, 0, 0.15);
    border: 1px solid rgba(0, 179, 0, 0.3);
    color: #6ee7b7;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.page-hero__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-hero__title span {
    color: #6ee7b7;
}

.page-hero__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

.page-hero__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}

.page-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s;
}

.page-hero__breadcrumb a:hover {
    color: #6ee7b7;
}

.page-hero__breadcrumb-sep {
    color: rgba(255, 255, 255, 0.25);
}

.page-hero__breadcrumb-current {
    color: #6ee7b7;
    font-weight: 600;
}

/* ================================================================
   PAGE CONTENT WRAPPER — Contenu des pages internes
   ================================================================ */

.page-content {
    padding: 4rem 0 5rem;
    background: #f8fafb;
}

/* Réseau de soins - cartes de téléchargement */
.network-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.network-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.network-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 179, 0, 0.2);
}

.network-card__img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.network-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.network-card:hover .network-card__img img {
    transform: scale(1.08);
}

.network-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 60%);
}

.network-card__body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.network-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.network-card__action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-green);
    transition: gap 0.3s;
}

.network-card:hover .network-card__action {
    gap: 0.8rem;
}

/* Articles listing */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.article-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 179, 0, 0.15);
}

.article-card__img {
    height: 210px;
    overflow: hidden;
    position: relative;
}

.article-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-card__img img {
    transform: scale(1.08);
}

.article-card__body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.875rem;
}

.article-card__date,
.article-card__author {
    font-size: 0.78rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.article-card__date i,
.article-card__author i {
    color: var(--primary-green);
    font-size: 0.7rem;
}

.article-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}

.article-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.article-card__title a:hover {
    color: var(--primary-green);
}

.article-card__footer {
    border-top: 1px solid #f0f4f8;
    padding-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.article-card__link {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--primary-green);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    transition: gap 0.3s;
}

.article-card__link:hover {
    color: var(--primary-red);
    gap: 0.7rem;
}

/* Pagination moderne */
.pagination-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pagination-modern .page-item .page-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1.5px solid #e5e7eb;
    color: #374151;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pagination-modern .page-item .page-link:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    background: rgba(0, 179, 0, 0.06);
}

.pagination-modern .page-item.active .page-link {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: #fff;
}

/* Exclusions page */
.exclusions-content {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.exclusions-intro {
    background: linear-gradient(135deg, rgba(230, 0, 0, 0.05) 0%, #fff 100%);
    border: 1px solid rgba(230, 0, 0, 0.12);
    border-left: 4px solid var(--primary-red);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #374151;
    font-size: 0.975rem;
}

.exclusions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 2rem;
}

.exclusions-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0f4f8;
    break-inside: avoid;
    font-size: 0.91rem;
    color: #374151;
    line-height: 1.5;
    page-break-inside: avoid;
}

.exclusions-list li:last-child {
    border-bottom: none;
}

.exclusions-list__icon {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--primary-red), #cc0000);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Article single */
.article-single {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.article-single__cover {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    display: block;
}

.article-single__body {
    padding: 2.5rem 3rem;
}

.article-single__meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.article-single__meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: #9ca3af;
}

.article-single__meta-item i {
    color: var(--primary-green);
}

.article-single__title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.article-single__content {
    font-size: 1rem;
    line-height: 1.85;
    color: #374151;
}

.article-single__content p {
    margin-bottom: 1.25rem;
    color: #374151;
}

.article-single__content img {
    border-radius: 12px;
    margin: 1.5rem 0;
}

.article-single__back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #f8fafb;
    color: #374151;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    border: 1.5px solid #e5e7eb;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.article-single__back:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    background: rgba(0, 179, 0, 0.05);
}

@media (max-width: 767px) {
    .page-hero { padding: 4rem 0 2.5rem; margin-top: 70px; }
    .network-grid { grid-template-columns: repeat(2, 1fr); }
    .articles-grid { grid-template-columns: 1fr; }
    .exclusions-list { columns: 1; }
    .article-single__body { padding: 1.75rem; }
}

@media (max-width: 575px) {
    .network-grid { grid-template-columns: 1fr; }
}

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

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

    .kpi-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .kpi-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .doc-cards { grid-template-columns: repeat(3, 1fr); }
    .objective-cards { grid-template-columns: repeat(2, 1fr); }
    .mci-list { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
    .sec-wrap { padding: 3.5rem 0; }
    .sec-head { margin-bottom: 2.5rem; }

    .kpi-grid { grid-template-columns: repeat(2, 1fr); }
    .kpi-item { border-right: none !important; }
    .kpi-item:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.08) !important; }

    .news-grid { grid-template-columns: 1fr; }

    .doc-cards { grid-template-columns: 1fr; }
    .objective-cards { grid-template-columns: 1fr; }
    .principles-grid { grid-template-columns: 1fr; }

    .price-cards { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }

    .reimb-grid { grid-template-columns: 1fr; }
    .forfait-grid { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; }

    .partners-grid { gap: 1rem; }
    .partner-item { min-width: 130px; }

    .responsables-grid { grid-template-columns: 1fr; }
    .responsable-item { border-right: none; }
    .responsable-item:nth-last-child(-n+1) { border-bottom: none; }
    .responsable-item:nth-last-child(-n+2) { border-bottom: 1px solid #f0f4f8; }
    .responsable-item:last-child { border-bottom: none; }

    .footer__bottom-inner { flex-direction: column; text-align: center; }
}
