.services {
    background: var(--bg-dark);
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-grey);
}

/* GRID */

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* CARD */

.service-card {
    position: relative;
    background: var(--surface);
    padding: 40px;
    border-radius: 6px;
    overflow: hidden;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* NUMERO */

.service-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 80px;
    font-weight: 700;
    color: rgba(255,255,255,0.04);
}

/* TITRE */

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* LIGNE BLEUE */

.service-line {
    width: 40px;
    height: 3px;
    background: var(--primary);
    margin-bottom: 20px;
}

/* TEXTE */

.service-card p {
    color: var(--text-grey);
}