.gesica-hero {
    background: var(--gesica-gradient-hero);
    color: #fff;
}

.gesica-hero-title {
    font-size: clamp(1.85rem, 1.2rem + 2.8vw, 3rem);
    line-height: 1.12;
}

.section-kicker {
    color: var(--gesica-navy);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(1.75rem, 1.35rem + 1.2vw, 2.25rem);
    line-height: 1.15;
}

.section-kicker::after {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    border-radius: 999px;
    background: var(--gesica-blue-data);
    margin: 0.5rem 0 0;
}

.text-center .section-kicker::after {
    margin-left: auto;
    margin-right: auto;
}

.enjeux-list li {
    border-bottom: 1px solid #e4e8ee;
    padding: 0.95rem 0;
}

.enjeux-list li:first-child {
    padding-top: 0;
}

.enjeux-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.feature-icon-red {
    /* rouge GESICA (subtil) */
    background: var(--bs-primary-bg-subtle, #fde8ea);
}

.feature-icon-gray {
    /* neutre / gris */
    background: var(--bs-tertiary-bg, #eceef2);
}

.feature-icon-blue {
    /* bleu data subtil */
    background: rgba(0, 119, 204, 0.12); /* léger rappel de --gesica-blue-data */
}

.feature-icon-green {
    /* vert subtil pour optimisation */
    background: rgba(46, 125, 50, 0.12); /* léger rappel de --bs-success */
}

.priority-card {
    box-shadow: 0 8px 16px rgba(26, 46, 74, 0.08) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.priority-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(26, 46, 74, 0.1) !important;
}

.process-sequence {
    display: grid;
    gap: 0.85rem;
}

.sequence-step {
    display: grid;
    grid-template-columns: 20px 1fr;
    column-gap: 0.9rem;
    align-items: start;
    padding-bottom: 0.75rem;
    position: relative;
}

.sequence-step::after {
    content: "";
    position: absolute;
    left: 9px;
    top: 0.35rem;
    bottom: -4px;
    width: 2px;
    background: #d8dee7;
}

.sequence-step:last-child::after {
    display: none;
}

.sequence-marker {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gesica-accent);
    margin-top: 0.35rem;
    justify-self: center;
    z-index: 1;
}

.impact-card {
    background: #fff;
    border: 1px solid #e4e8ee;
    border-radius: 0.85rem;
    padding: 1.25rem;
    box-shadow: 0 6px 14px rgba(26, 46, 74, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.impact-card:hover,
.impact-card:focus-within {
    transform: translateY(-2px);
    border-color: #c9d4e3;
    box-shadow: 0 12px 24px rgba(26, 46, 74, 0.12);
}

.impact-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gesica-navy);
    color: #fff;
    box-shadow: 0 6px 14px rgba(26, 46, 74, 0.22);
}

.impact-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

@media (max-width: 767px) {
    .sequence-step {
        column-gap: 0.75rem;
    }

    .gesica-hero-title {
        font-size: clamp(1.65rem, 1.2rem + 3vw, 2rem);
    }

    #fonctionnement .row {
        gap: 2.5rem 0;
    }
}



