
/* Page Pourquoi PC Clinic59 enrichie */
.ai-why-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
    gap: 32px;
    align-items: start;
}

.ai-why-key-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid rgba(0,87,184,.14);
    border-radius: 10px;
    padding: 28px;
    box-shadow: 0 14px 36px rgba(0,39,95,.07);
}

.ai-why-key-card h3 {
    margin-top: 0;
    color: #0b1f3a;
}

.ai-why-key-card ul {
    margin: 18px 0 0;
    padding-left: 20px;
    color: #627083;
}

.ai-why-process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 20px;
}

.ai-why-process article {
    background: #fff;
    border: 1px solid rgba(0,87,184,.14);
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 12px 34px rgba(0,39,95,.06);
}

.ai-why-process span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-weight: 900;
    margin-bottom: 16px;
}

.ai-why-process h3,
.ai-why-profiles h3 {
    color: #0b1f3a;
    margin-top: 0;
}

.ai-why-process p,
.ai-why-profiles p,
.ai-why-profiles span {
    color: var(--muted);
}

.ai-why-profiles {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 20px;
}

.ai-why-profiles article {
    background: #fff;
    border: 1px solid rgba(0,87,184,.14);
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 12px 34px rgba(0,39,95,.06);
}

.ai-why-profiles strong {
    display: block;
    color: var(--blue);
    margin: 18px 0 6px;
}

.ai-why-profiles span {
    display: block;
}

.ai-why-partner .ai-side-info ul {
    margin: 16px 0 0;
    padding-left: 20px;
    color: var(--muted);
}

.ai-why-final {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.ai-why-final h2 {
    margin-top: 0;
}

@media (max-width: 1100px) {
    .ai-why-process,
    .ai-why-profiles {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .ai-why-intro-grid,
    .ai-why-final {
        grid-template-columns: 1fr;
    }

    .ai-why-final {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 620px) {
    .ai-why-process,
    .ai-why-profiles {
        grid-template-columns: 1fr;
    }
}
