/* ----- Carte service (6 piliers) ----- */
.service-card {
    background: var(--cream-soft);
    border: 1px solid #E5E2D9;
    border-radius: 4px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(23, 26, 33, .07);
    border-color: #C5BEAE;
}

.service-card-icon {
    width: 40px;
    height: 40px;
    color: var(--navy);
    margin-bottom: 20px;
    flex-shrink: 0;
}

.service-bullets {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.service-bullets li {
    font-size: .8rem;
    color: var(--ink-light);
    padding-left: 14px;
    position: relative;
}

.service-bullets li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--coral);
    font-size: .7rem;
}

.service-link {
    display: inline-block;
    margin-top: 20px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--coral);
    transition: color .25s ease, letter-spacing .25s ease;
    align-self: flex-start;
}

.service-link:hover {
    color: var(--coral-dark);
    letter-spacing: .18em;
}

/* ----- Colonnes expertise ----- */
.expertise-col {
    background: var(--cream-soft);
    border: 1px solid #E5E2D9;
    border-radius: 4px;
    padding: 28px 24px;
    transition: transform .35s ease, box-shadow .35s ease;
}

.expertise-col:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(23, 26, 33, .06);
}

.expertise-col-icon {
    width: 36px;
    height: 36px;
    color: var(--coral);
    margin-bottom: 14px;
}

/* ----- Process steps (détaillé) ----- */
.process-step {
    background: var(--cream-soft);
    border: 1px solid #E5E2D9;
    border-radius: 4px;
    padding: 40px;
    transition: transform .35s ease, box-shadow .35s ease;
}

.process-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(23, 26, 33, .06);
}

.process-step-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--coral);
    font-size: 3rem;
    line-height: 1;
    display: block;
    margin-bottom: 16px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .875rem;
    color: var(--ink-light);
    line-height: 1.5;
}

.check-list li::before {
    content: '✓';
    color: var(--coral);
    font-size: .8rem;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ----- Hébergement (sur navy) ----- */
.hosting-detail-card {
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 4px;
    background: rgba(255, 255, 255, .04);
    transition: background .3s ease, border-color .3s ease;
}

.hosting-detail-card:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .2);
}

.hosting-detail-icon {
    width: 36px;
    height: 36px;
    color: var(--coral);
    margin-bottom: 16px;
}

/* ----- Maintenance ----- */
.maintenance-badge {
    font-family: 'Inter', sans-serif;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 8px;
    display: block;
}

.maintenance-card {
    background: var(--cream-soft);
    border: 1px solid #E5E2D9;
    border-left: 3px solid var(--navy);
    border-radius: 0 4px 4px 0;
    padding: 28px 24px;
    transition: transform .35s ease, box-shadow .35s ease;
}

.maintenance-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(23, 26, 33, .06);
}

/* ----- Outils ----- */
.tool-item {
    background: var(--cream-soft);
    border: 1px solid #E5E2D9;
    border-radius: 4px;
    padding: 24px 20px;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.tool-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(23, 26, 33, .07);
    border-color: #C5BEAE;
}

.tool-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 12px;
    color: var(--navy);
}

.tool-name {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    color: var(--ink);
    margin-bottom: 4px;
}

.tool-desc {
    font-size: .75rem;
    color: var(--ink-light);
    line-height: 1.4;
}