/* ===========================================
    PRESTATIONS 3 - DARK SHOWCASE
    =========================================== */
.prestations-3 {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    position: relative;
    overflow: hidden;
}
.prestations-3::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(201,162,39,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.prestations-3 .container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}
.prestations-3 .header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.prestations-3 .eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}
.prestations-3 h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: 16px;
}
.prestations-3 .header > p {
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.8;
}
.prestations-3 .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}
.prestations-3 .card {
    background: var(--white-transparent);
    border: 1px solid var(--white-transparent);
    padding: 36px 28px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.prestations-3 .card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    background: rgba(255,255,255,0.05);
}
.prestations-3 .card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    min-height: 90px;
}
.prestations-3 .card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.prestations-3 .card:hover .card-icon { background: var(--accent); }
.prestations-3 .card-icon svg {
    width: 28px;
    height: 28px;
    min-width: 28px;
    color: var(--accent);
    transition: color 0.3s ease;
}
.prestations-3 .card:hover .card-icon svg { color: var(--white); }
.prestations-3 .card-header h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    margin-top: 8px;
}
.prestations-3 .card > p {
    font-size: 0.9rem;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}
.prestations-3 .card-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.prestations-3 .point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--white);
}
.prestations-3 .point svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    color: var(--accent);
}
.prestations-3 .cta-wrapper { text-align: center; }
@media (max-width: 1024px) { .prestations-3 .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .prestations-3 .grid { grid-template-columns: 1fr; } }
