/* ═══════════════════════════════════════
   SEELINK THEME v11 — Nouvelles sections
════════════════════════════════════════ */

/* === HERO TRUST INDICATORS === */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.15);
}
.hero-trust__item {
    display: flex;
    flex-direction: column;
}
.hero-trust__item strong {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--sl-white);
    line-height: 1;
}
.hero-trust__item span {
    font-size: 13px;
    color: rgba(255,255,255,.65);
    margin-top: 4px;
}
.hero-trust__divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.15);
}

/* === OFFERS GRID 4 COLONNES === */
.offers-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
    .offers-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .offers-grid--4 {
        grid-template-columns: 1fr;
    }
}

/* === PROCESS SECTION === */
.process-section {
    padding: 80px 0;
    background: var(--sl-white);
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}
.process-step {
    position: relative;
    padding: 32px 24px;
    background: var(--sl-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--sl-border);
    transition: box-shadow .2s ease, transform .2s ease;
}
.process-step:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.process-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--sl-accent);
    color: var(--sl-white);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}
.process-step__title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    color: var(--sl-dark);
    margin-bottom: 12px;
}
.process-step__desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--sl-mid);
    margin-bottom: 16px;
}
.process-step__duration {
    display: inline-block;
    font-size: 13px;
    color: var(--sl-muted);
    padding: 6px 12px;
    background: var(--sl-white);
    border-radius: 20px;
    border: 1px solid var(--sl-border);
}
@media (max-width: 768px) {
    .process-grid { grid-template-columns: 1fr; }
}

/* === ACCREDITATIONS SECTION === */
.accreditations-section {
    padding: 80px 0;
    background: var(--sl-bg);
}
.accreditations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.accreditation-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--sl-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--sl-border);
    box-shadow: var(--shadow);
    transition: transform .2s ease;
}
.accreditation-card:hover {
    transform: translateY(-4px);
}
.accreditation-card__icon {
    font-size: 40px;
    display: block;
    margin-bottom: 16px;
}
.accreditation-card h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--sl-dark);
    margin-bottom: 8px;
}
.accreditation-card p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--sl-muted);
}
@media (max-width: 768px) {
    .accreditations-grid { grid-template-columns: 1fr; }
}

/* === LATEST ARTICLES === */
.latest-articles {
    padding: 80px 0;
    background: var(--sl-white);
}
.section-header--row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.article-card {
    background: var(--sl-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--sl-border);
    transition: box-shadow .2s ease, transform .2s ease;
}
.article-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}
.article-card__image-wrap {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--sl-bg);
}
.article-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}
.article-card:hover .article-card__image-wrap img {
    transform: scale(1.05);
}
.article-card__body {
    padding: 20px 24px 24px;
}
.article-card__tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: var(--sl-accent);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
}
.article-card__title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
}
.article-card__title a {
    color: var(--sl-dark);
}
.article-card__excerpt {
    font-size: 14px;
    line-height: 1.5;
    color: var(--sl-mid);
    margin-bottom: 12px;
}
.article-card__date {
    font-size: 13px;
    color: var(--sl-muted);
}
@media (max-width: 768px) {
    .articles-grid { grid-template-columns: 1fr; }
    .section-header--row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}
/* === HERO GHOST BUTTON FIX — readable on dark background === */
.hero-home .btn--ghost {
    color: var(--sl-white);
    border-color: rgba(255,255,255,.4);
}
.hero-home .btn--ghost:hover {
    color: var(--sl-white);
    border-color: var(--sl-white);
    background: rgba(255,255,255,.1);
}
