/* === HERO === */
.hero-service h1 {
    margin-bottom: 2rem;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #666;
}

.proof-stars {
    color: #fbbf24;
    font-size: 16px;
}

/* === REASSURANCE LOGOS === */
.rister-reassurance-row {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rister-reassurance-slider {
    padding: 0 20px;
}

.rister-reassurance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.rister-reassurance-item {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.rister-reassurance-item:hover {
    background: rgba(255, 255, 255, 0.9);
}

.rister-reassurance-item img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    filter: grayscale(0.2);
}

.rister-reassurance-overlay {
    position: absolute;
    inset: 0;
    background: #fff;
    color: #152842;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-radius: 16px;
    border: 1px solid rgba(0, 121, 142, 0.15);
    z-index: 2;
}

.rister-reassurance-item:hover .rister-reassurance-overlay,
.rister-reassurance-overlay.active {
    opacity: 1;
    visibility: visible;
}

.rister-reassurance-overlay h4 {
    font-size: 1.1rem !important;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0;
    padding-bottom: 6px;
}

.rister-reassurance-overlay p {
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

.rister-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 1;
}

.rister-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* === GRID IMAGE === */
.cf-grid-img {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 30px 0;
}
.cf-grid-img.reverse {
    direction: rtl;
}
.cf-grid-img.reverse > * {
    direction: ltr;
}
.cf-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.cf-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* === HIGHLIGHT === */
.cf-highlight {
    background: #fff;
    border: 1px solid #e8f0f2;
    border-left: 4px solid #3b93a3;
    border-radius: 0 12px 12px 0;
    padding: 20px 25px;
    margin: 25px 0;
}
.cf-highlight p {
    color: #1a3a4a;
    margin: 0;
}

/* === CARDS 2 COLONNES === */
.cf-cards-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}
.cf-card {
    background: #fff;
    border: 1px solid #e8eef0;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s;
}
.cf-card:hover {
    border-color: #3b93a3;
    box-shadow: 0 8px 30px rgba(59,147,163,0.1);
}
.cf-card h3 {
    margin: 0 0 15px;
    font-size: 1.1rem;
}
.cf-card .trust-list {
    margin: 0;
}

/* === DOMICILE BOX === */
.domicile-box {
    background: #f8fbfc;
    border: 1px solid #e8eef0;
    border-radius: 16px;
    padding: 30px;
    margin: 25px 0;
}
.domicile-box h3 {
    margin-top: 0;
}
.domicile-box p {
    margin-bottom: 10px;
}
.domicile-box p:last-child {
    margin-bottom: 0;
}

/* === AVANTAGES GRID === */
.avantages-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 30px 0;
}
.avantage-item {
    background: #fff;
    border: 1px solid #e8eef0;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s;
}
.avantage-item:hover {
    border-color: #3b93a3;
    box-shadow: 0 8px 25px rgba(59,147,163,0.1);
    transform: translateY(-3px);
}
.avantage-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a3a4a;
    margin: 0 0 8px;
}
.avantage-item p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}
/* === CTA === */
.cf-cta {
    background: linear-gradient(135deg, #e8f4f6 0%, #d8eef2 100%);
    border-radius: 16px;
    padding: 35px 40px;
    margin-top: 40px;
    text-align: center;
}
.cf-cta p {
    font-size: 1.05rem;
    color: #1a3a4a;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


/* === RESPONSIVE === */
@media (max-width: 900px) {
    .hero-grid,
    .cf-grid-img,
    .cf-cards-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .cf-grid-img.reverse {
        direction: ltr;
    }
    .hero-img {
        order: -1;
    }
    .trust-list.two-cols {
        grid-template-columns: 1fr;
    }
    .avantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-proof {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
@media (max-width: 600px) {
    .avantages-grid {
        grid-template-columns: 1fr;
    }
    .cf-cta {
        padding: 30px 25px;
    }
}

/* Spécifique page container */
#page-container {
    overflow-y: unset !important;
}