/* === TRUST SECTION === */
.trust-section {
    padding: 35px 0;
    background: #f8fbfc;
    border-top: 1px solid #e8eef0;
    border-bottom: 1px solid #e8eef0;
}
.trust-stats {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 12px;
}
.trust-stat {
    flex: 1;
    max-width: 150px;
    background: #fff;
    border: 1px solid #e8eef0;
    border-radius: 10px;
    padding: 18px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 90px;
    transition: all 0.3s;
}
.trust-stat:hover {
    border-color: #3b93a3;
    box-shadow: 0 5px 20px rgba(59,147,163,0.1);
}
.trust-stat.featured {
    background: linear-gradient(135deg, #3b93a3 0%, #2d7a88 100%);
    border-color: transparent;
}
.trust-stat.featured .trust-stat-value,
.trust-stat.featured .trust-stat-label {
    color: #fff;
}
.trust-stat.featured .trust-stat-stars {
    color: #fbbf24;
    font-size: 0.85rem;
    margin-bottom: 3px;
}
.trust-stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3b93a3;
    line-height: 1;
    margin-bottom: 5px;
}
.trust-stat-value span {
    font-size: 1.1rem;
}
.trust-stat-label {
    font-size: 0.7rem;
    color: #666;
    line-height: 1.3;
}

/* === PROCESS === */
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.process-timeline-line {
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #e0e4e9;
}
.process-timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #3b93a3;
    transition: width 0.6s ease;
}
.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 10px;
}
.process-step-number {
    width: 60px;
    height: 60px;
    background: #fff;
    border: 3px solid #e0e4e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #6b7c93;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}
.process-step.active .process-step-number {
    background: #3b93a3;
    color: #fff;
    border-color: #3b93a3;
    box-shadow: 0 0 0 6px rgba(59,147,163,0.15);
}
.process-step h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a3a4a;
    margin: 0 0 6px;
}
.process-step p {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.45;
    margin: 0;
}
.process-cta {
    text-align: center;
    margin-top: 30px;
}
/* === TESTIMONIALS === */
.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}
.google-rating .stars {
    color: #fbbf24;
    font-size: 1rem;
}
.google-rating .rating-text {
    font-size: 0.8rem;
    color: #666;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.testimonial-card {
    background: #fff;
    border: 1px solid #e8eef0;
    border-radius: 10px;
    padding: 18px;
    transition: all 0.3s;
}
.testimonial-card:hover {
    border-color: #3b93a3;
}
.testimonial-stars {
    color: #fbbf24;
    font-size: 0.8rem;
    margin-bottom: 10px;
}
.testimonial-text {
    font-size: 0.8rem;
    color: #444;
    line-height: 1.55;
    margin-bottom: 12px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 8px;
}
.author-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3b93a3, #2d7a88);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 0.7rem;
}
.author-info h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a3a4a;
    margin: 0;
}
.author-info p {
    font-size: 0.7rem;
    color: #666;
    margin: 0;
}

/* === CLIENTS LOGOS === */
.clients-section {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #e8eef0;
}
.clients-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}
.client-logo {
    opacity: 0.5;
    transition: opacity 0.3s;
    filter: grayscale(100%);
}
.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}
.client-logo img {
    height: 35px;
    width: auto;
}

/* === EXPERT SECTION === */
.expert-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}
.expert-photo img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.expert-content .overline {
    display: inline-block;
    background: #3b93a3;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 15px;
    margin-bottom: 12px;
}
.expert-content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.expert-content p {
    margin-bottom: 12px;
    font-size: 0.88rem;
}
.compliance-box {
    background: #f8fbfc;
    border: 1px solid #e8eef0;
    border-radius: 10px;
    padding: 16px 16px;
    margin: 16px 0;
}
.compliance-box p {
    font-size: 0.82rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* === CERTIFICATIONS === */
.certifications-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}
.cert-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e8eef0;
    border-radius: 10px;
    padding: 12px 18px;
}
.cert-badge svg {
    width: 20px;
    height: 20px;
    color: #3b93a3;
}
.cert-badge span {
    font-size: 0.8rem;
    font-weight: 500;
    color: #1a3a4a;
}

/* === EXPERTISE GRID === */
.expertise-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}
.expertise-intro p {
    font-size: 0.9rem;
    line-height: 1.7;
}
.expertise-services {
    background: #f8fbfc;
    border-radius: 10px;
    padding: 18px;
}
.expertise-services p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.9;
}
.valeurs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.valeur-card {
    background: #fff;
    border: 1px solid #e8eef0;
    border-radius: 10px;
    padding: 16px;
    transition: all 0.3s;
}
.valeur-card:hover {
    border-color: #3b93a3;
}
.valeur-card h3 {
    margin-bottom: 6px;
    font-size: 0.9rem;
}
.valeur-card p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* === ÉTUDES DE CAS === */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.case-card {
    background: #f8fbfc;
    border: 1px solid #e8eef0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
}
.case-card:hover {
    border-color: #3b93a3;
}
.case-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}
.case-card-content {
    padding: 12px;
}
.case-card h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a3a4a;
    margin: 0 0 4px;
}
.case-card p {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
}
/* === BUREAUX / DOMICILIATION GALLERY === */
.domiciliation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.domiciliation-content h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a3a4a;
}
.domiciliation-content > p {
    color: #555;
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Business Center Gallery */
.bc-gallery {
    position: relative;
}
.bc-gallery > p {
    margin-top: 8px;
    color: #888;
    font-size: 0.8rem;
    line-height: 1.4;
}
.bc-main {
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #e8eef0;
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
}
.bc-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s;
}
.bc-slide.active {
    opacity: 1;
}
.bc-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bc-thumbs {
    display: flex;
    gap: 6px;
    margin-top: 10px;
}
.bc-thumb {
    width: 55px;
    height: 38px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #e8eef0;
    transition: all 0.25s;
}
.bc-thumb.active,
.bc-thumb:hover {
    border-color: #3b93a3;
}
.bc-thumb:hover {
    transform: translateY(-2px);
}
.bc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bc-locs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}
.bc-loc {
    flex: 1;
    padding: 8px 10px;
    border: 1px solid #e8eef0;
    background: #fff;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #1a3a4a;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-family: inherit;
}
.bc-loc svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}
.bc-loc:hover {
    border-color: #3b93a3;
    background: #f8fbfc;
}
.bc-loc.active {
    background: #3b93a3;
    border-color: #3b93a3;
    color: #fff;
}
.bc-address {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 12px;
    padding: 10px 14px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e8eef0;
}
.bc-address span {
    font-size: 0.8rem;
    color: #555;
}
/* === AFFILIATIONS === */
.affiliations-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}
.affiliations-row img {
    height: 40px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(30%);
    transition: all 0.3s;
}
.affiliations-row img:hover {
    opacity: 1;
    filter: grayscale(0%);
}
/* === Affiliation === */
.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;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    padding: 20px 0 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: #ffffff;
    color: var(--rister-dark, #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;
  }
  
  @media (max-width: 980px) {
    .rister-reassurance-grid {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 15px;
      padding-bottom: 20px;
      scrollbar-width: none;
    }
  
    .rister-reassurance-grid::-webkit-scrollbar {
      display: none;
    }
  
    .rister-reassurance-item {
      flex: 0 0 calc(50% - 8px);
      scroll-snap-align: center;
    }
  
    .rister-reassurance-item img {
      height: 65px;
    }
  
    .rister-reassurance-overlay h4 {
      font-size: 1rem !important;
    }
  
    .rister-slider-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 16px;
    }
  
    .rister-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(0, 121, 142, 0.3);
      transition: all 0.3s ease;
    }
  
    .rister-dot.active {
      background: #00798e;
      transform: scale(1.2);
    }
  }
  
  .rister-reassurance-overlay h4,
  .rister-reassurance-overlay p {
    margin: 0;
    padding: 0;
  }
  
  .rister-reassurance-row {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .rister-reassurance-google {
    flex: 0 0 auto;
  }
  
  .rister-reassurance-slider {
    flex: 1 1 auto;
  }
/* === CTA === */
.cta-box {
    background: linear-gradient(135deg, #e8f4f6, #d8eef2);
    border-radius: 14px;
    padding: 35px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.cta-box h2 {
    margin-bottom: 8px;
}
.cta-box p {
    margin: 0;
    color: #555;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .expert-grid,
    .expertise-intro,
    .domiciliation-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-about-img {
        order: -1;
    }
    .expert-photo {
        max-width: 280px;
        margin: 0 auto;
    }
    .valeurs-grid,
    .testimonials-grid,
    .cases-grid {
        grid-template-columns: 1fr 1fr;
    }
    .trust-stats {
        flex-wrap: wrap;
        gap: 10px;
    }
    .trust-stat {
        flex: 0 0 calc(33.33% - 8px);
        max-width: none;
    }
    .certifications-row {
        flex-wrap: wrap;
    }
    .process-timeline {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    .process-timeline-line {
        display: none;
    }
    .cta-box {
        flex-direction: column;
        text-align: center;
    }
    .bc-main {
        height: 250px;
    }
    .bc-locs {
        flex-wrap: wrap;
    }
    .bc-loc {
        flex: 0 0 calc(50% - 4px);
    }
}
@media (max-width: 600px) {
    .valeurs-grid,
    .testimonials-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }
    .trust-stat {
        flex: 0 0 calc(50% - 5px);
    }
    .trust-stat.featured {
        flex: 0 0 100%;
        order: -1;
    }
    .process-step {
        flex: 0 0 100%;
    }
    .process-step-number {
        width: 45px;
        height: 45px;
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    .process-step h4 {
        font-size: 0.8rem;
    }
    .process-step p {
        font-size: 0.7rem;
    }
    .bc-main {
        height: 200px;
    }
    .bc-loc {
        font-size: 0.68rem;
        padding: 7px 8px;
    }
    .bc-locs {
        gap: 6px;
    }
    .bc-thumbs {
        overflow-x: auto;
        padding-bottom: 6px;
    }
    .bc-thumb {
        flex-shrink: 0;
    }
}