/* ============================= */
/* SECTION CPF */
/* ============================= */

#financement {
    position: relative;
    background: linear-gradient(135deg, #eef1f4 0%, #f8f9fa 55%);
    border-radius: 40px;
    padding: 60px 0;
    overflow: hidden;
}

/* ============================= */
/* FORMES DECORATIVES */
/* ============================= */

#financement::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: #0b5ed7;
    opacity: 0.08;
    z-index: 0;
}

#financement::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    border-radius: 30px;
    background: #e8590c;
    opacity: 0.08;
    z-index: 0;
}

/* ============================= */
/* ICONES DE FOND */
/* ============================= */

.cpf-bg-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.cpf-bg-icons i {
    position: absolute;
    font-size: 64px;
    opacity: 0.12;
}

/* Icône euro */
.cpf-bg-icons .icon-euro {
    color: #0b5ed7;
    top: 18%;
    left: 8%;
    transform: rotate(-8deg);
}

/* Icône carte */
.cpf-bg-icons .icon-card {
    color: #6c757d;
    bottom: 20%;
    right: 12%;
    transform: rotate(6deg);
}

/* Icône validation */
.cpf-bg-icons .icon-check {
    color: #e8590c;
    top: 55%;
    right: 30%;
    transform: rotate(-5deg);
}

/* ============================= */
/* BOX CPF */
/* ============================= */

.cpf-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

/* ============================= */
/* TEXTES */
/* ============================= */

.cpf-box p {
    color: #333;
    line-height: 1.6;
}

.cpf-box ul {
    padding-left: 18px;
}

.cpf-box ul li {
    margin-bottom: 8px;
    font-weight: 500;
}

/* ============================= */
/* ETAPES */
/* ============================= */

.cpf-steps .step {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.cpf-steps .badge {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================= */
/* ALERT */
/* ============================= */

#financement .alert {
    border-radius: 14px;
    font-weight: 500;
}

/* ============================= */
/* BOUTON */
/* ============================= */

#financement .btn-outline-primary {
    border-width: 2px;
    font-weight: 600;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {
    #financement::before,
    #financement::after,
    .cpf-bg-icons {
        display: none;
    }

    #financement {
        padding: 40px 0;
    }
}
