﻿/*==================================================
NEXT STEP
==================================================*/

.next-step-section {
    padding: 120px 0;
    background: #ffffff;
}

.next-step-card {
    max-width: 900px;
    margin: auto;
    text-align: center;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 32px;
    padding: 80px;
    box-shadow: 0 30px 80px rgba(24,52,86,.08);
}

.next-step-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 999px;
    background: #eef6fc;
    color: #4F789A;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .05em;
    margin-bottom: 30px;
}

.next-step-title {
    font-size: 3rem;
    line-height: 1.15;
    font-weight: 800;
    color: #23313F;
    margin-bottom: 35px;
}

    .next-step-title span {
        color: #4F789A;
    }

.next-step-text {
    max-width: 720px;
    margin: auto;
    font-size: 1.2rem;
    line-height: 2;
    color: #586979;
}

    .next-step-text strong {
        color: #23313F;
    }

.next-step-quote {
    margin: 55px auto;
    max-width: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 24px 30px;
    border-radius: 20px;
    background: #f7fbff;
    border: 1px solid #d9e8f4;
}

    .next-step-quote i {
        font-size: 1.6rem;
        color: #4F789A;
    }

    .next-step-quote span {
        font-weight: 600;
        color: #304050;
    }

.next-step-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    padding: 18px 34px;
    border-radius: 999px;
    background: #4F789A;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

    .next-step-button:hover {
        background: #3f6482;
        transform: translateY(-3px);
        color: #fff;
    }

    .next-step-button i {
        transition: .3s;
    }

    .next-step-button:hover i {
        transform: translateX(5px);
    }

@media(max-width:768px) {

    .next-step-section {
        padding: 80px 20px;
    }

    .next-step-card {
        padding: 45px 30px;
    }

    .next-step-title {
        font-size: 2.2rem;
    }

    .next-step-text {
        font-size: 1.05rem;
        line-height: 1.9;
    }

    .next-step-quote {
        flex-direction: column;
        text-align: center;
    }
}
