/*=============== HOME ===============*/
.home {
    position: relative;
    padding-block: 192px 222px;
    background-color: #171717;
    overflow: hidden;

    .home__container {

        .home__content {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 5;

            .home__text {
                max-width: 550px;
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: start;
                flex-direction: column;
                gap: 25px;

                span {
                    font-size: 14px;
                    font-weight: var(--font-bold);
                    color: var(--white);
                    border: 1px solid var(--white);
                    background-color: var(--yellow);
                    border-radius: 999px;
                    padding: 7px 22px;
                    margin-bottom: 17px;
                }

                h1 {
                    font-size: 64px;
                    font-weight: 800;
                    color: var(--white);
                }

                p {
                    font-size: 18px;
                    font-weight: var(--font-regular);
                    color: #FFFFFFB2;
                }

                a {
                    position: relative;
                    font-size: 22px;
                    font-weight: var(--font-bold);
                    color: var(--white);
                    background: var(--red);
                    border: 0.75px solid var(--white);
                    border-radius: 4px;
                    margin-top: 17px;
                    padding: 5px 41px;
                    transition: all 0.3s ease-in-out;


                    &::after {
                        content: '';
                        position: absolute;
                        top: 7px;
                        left: -7px;
                        width: 100%;
                        height: 100%;
                        border-radius: 4px;
                        background-color: var(--white);
                        transition: all 0.3s ease-in-out;
                        z-index: -1;
                    }

                    &:hover {

                        &::after {
                            top: -7px;
                            left: 7px;
                        }
                    }
                }
            }

            .home__img {
                position: relative;
                width: 100%;
                max-width: 633px;
                height: auto;

                img {
                    width: 100%;
                    height: 100%;
                }

                &::after {
                    content: '';
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    width: 669px;
                    height: 536px;
                    border-radius: 50%;
                    background-image: url(../image/bg\ img.png);
                    background-repeat: no-repeat;
                    background-size: cover;
                }
            }
        }
    }

    .arrow {
        position: absolute;
        bottom: 50px;
        left: 0;
        width: 270px;
        height: auto;
        filter: blur(5px);
    }

    &::after {
        content: '';
        position: absolute;
        top: -23%;
        right: 3%;
        width: 582px;
        height: 380px;
        border-radius: 50%;
        background-color: var(--red);
        opacity: 0.5;
        transform: rotate(-22.69deg);
        filter: blur(165px);
    }

    &::before {
        content: '';
        position: absolute;
        bottom: -45%;
        left: 3%;
        width: 529px;
        height: 477px;
        border-radius: 50%;
        background-color: var(--yellow);
        opacity: 0.5;
        transform: rotate(-33deg);
        filter: blur(165px);
    }
}

/*=============== RESPONSIVE HOME ===============*/
@media (max-width: 1200px) {
    .home {
        padding-block: 160px 180px;

        .home__container {
            .home__content {
                gap: 30px;

                .home__text {
                    max-width: 500px;
                    gap: 20px;

                    h1 {
                        font-size: 50px;
                    }

                    p {
                        font-size: 16.5px;
                    }

                    a {
                        font-size: 20px;
                        padding: 5px 35px;
                    }
                }

                .home__img {
                    max-width: 480px;

                    &::after {
                        width: 500px;
                        height: 400px;
                    }
                }
            }
        }

        .arrow {
            width: 200px;
            bottom: 30px;
        }
    }
}

@media (max-width: 991px) {
    .home {
        padding-block: 180px 110px;

        .home__container {
            .home__content {
                flex-direction: column-reverse;
                text-align: center;
                gap: 50px;

                .home__text {
                    max-width: 650px;
                    align-items: center;
                    gap: 18px;

                    span {
                        margin-bottom: 8px;
                    }

                    h1 {
                        font-size: 42px;
                        line-height: 1.25;
                    }

                    p {
                        font-size: 16px;
                        line-height: 1.7;
                    }

                    a {
                        font-size: 19px;
                        padding: 6px 36px;
                        margin-top: 10px;
                    }
                }

                .home__img {
                    max-width: 440px;

                    &::after {
                        width: 440px;
                        height: 350px;
                    }
                }
            }
        }

        .arrow {
            width: 160px;
            bottom: 20px;
        }

        &::after {
            width: 400px;
            height: 280px;
            filter: blur(120px);
        }

        &::before {
            width: 380px;
            height: 320px;
            filter: blur(120px);
        }
    }
}

@media (max-width: 768px) {
    .home {
        padding-block: 120px 80px;

        .home__container {
            .home__content {
                gap: 40px;

                .home__text {
                    gap: 16px;

                    span {
                        font-size: 13px;
                        padding: 6px 18px;
                    }

                    h1 {
                        font-size: 34px;
                    }

                    p {
                        font-size: 15px;
                    }

                    a {
                        font-size: 18px;
                        padding: 6px 32px;
                    }
                }

                .home__img {
                    max-width: 360px;

                    &::after {
                        width: 360px;
                        height: 290px;
                    }
                }
            }
        }

        .arrow {
            width: 120px;
            bottom: 15px;
            opacity: 0.6;
        }

        &::after {
            width: 320px;
            height: 220px;
            filter: blur(100px);
        }

        &::before {
            width: 300px;
            height: 250px;
            filter: blur(100px);
        }
    }
}

@media (max-width: 576px) {
    .home {
        padding-block: 120px 60px;

        .home__container {
            .home__content {
                gap: 32px;

                .home__text {
                    gap: 14px;

                    span {
                        font-size: 12px;
                        padding: 5px 14px;
                        margin-bottom: 5px;
                    }

                    h1 {
                        font-size: 27px;
                        line-height: 1.3;
                    }

                    p {
                        font-size: 14px;
                        line-height: 1.65;
                    }

                    a {
                        font-size: 16px;
                        padding: 7px 28px;
                        margin-top: 6px;
                    }
                }

                .home__img {
                    max-width: 270px;

                    &::after {
                        width: 270px;
                        height: 215px;
                    }
                }
            }
        }
    }
}

/*=============== PROBLEMS ===============*/
.problems {
    position: relative;
    background-color: #F2F4F8;
    padding-block: 85px 95px;
    overflow: hidden;

    .problems__container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;

        .problems__header {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            margin-bottom: 55px;

            .problems__subtitle {
                font-size: 16px;
                font-weight: var(--font-bold);
                color: var(--red);
            }

            .problems__title {
                font-size: 38px;
                font-weight: 800;
                color: #171717;
                line-height: 1.3;

                span {
                    color: #A0A5AB;
                    font-weight: 800;
                }
            }
        }

        .problems__cards {
            width: 100%;
            max-width: 1120px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;

            .problems__card {
                position: relative;
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 45px 28px;
                border-radius: 6px;
                background: linear-gradient(135deg, #8E0E10 0%, #B81518 40%, #E80206 80%, #F70004 100%);
                box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(180, 0, 0, 0.2);
                transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
                cursor: default;

                &:hover {
                    transform: translateY(-8px);
                    box-shadow: 0 16px 36px rgba(247, 0, 4, 0.28), 0 6px 16px rgba(0, 0, 0, 0.14);
                }

                .problems__card-icon {
                    width: 48px;
                    height: 48px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    margin-bottom: 24px;
                    color: var(--white);

                    svg {
                        width: 100%;
                        height: 100%;
                        display: block;
                    }
                }

                .problems__card-title {
                    font-size: 24px;
                    font-weight: var(--font-bold);
                    color: var(--white);
                    margin-bottom: 15px;
                }

                .problems__card-description {
                    font-size: 15px;
                    font-weight: var(--font-regular);
                    line-height: 1.75;
                    color: var(--white);
                    max-width: 290px;
                }
            }
        }

        .problems__cta {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            margin-top: 55px;

            .problems__cta-text {
                font-size: 17px;
                font-weight: var(--font-medium);
                color: #70757D;
            }

            .problems__cta-btn {
                display: inline-flex;
                justify-content: center;
                align-items: center;
                background-color: #BDBDBD;
                color: #171717;
                font-size: 16px;
                font-weight: var(--font-bold);
                padding: 10px 34px;
                border-radius: 6px;
                border: 4px solid #FFFFFF;
                box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
                transition: all 0.3s ease-in-out;

                &:hover {
                    background-color: #ABABAB;
                    transform: translateY(-2px);
                    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
                }
            }
        }
    }
}

/*=============== RESPONSIVE PROBLEMS ===============*/
@media (max-width: 991px) {
    .problems {
        padding-block: 70px 80px;

        .problems__container {
            .problems__header {
                margin-bottom: 45px;

                .problems__title {
                    font-size: 30px;
                }
            }

            .problems__cards {
                gap: 20px;

                .problems__card {
                    padding: 35px 20px;

                    .problems__card-title {
                        font-size: 21px;
                    }

                    .problems__card-description {
                        font-size: 14px;
                    }
                }
            }

            .problems__cta {
                margin-top: 45px;
            }
        }
    }
}

@media (max-width: 768px) {
    .problems {
        padding-block: 60px 70px;

        .problems__container {
            .problems__header {
                .problems__title {
                    font-size: 25px;
                }
            }

            .problems__cards {
                grid-template-columns: 1fr;
                max-width: 420px;
            }
        }
    }
}

@media (max-width: 576px) {
    .problems {
        padding-block: 50px 60px;

        .problems__container {
            .problems__header {
                .problems__subtitle {
                    font-size: 14px;
                }

                .problems__title {
                    font-size: 21px;
                }
            }

            .problems__cards {
                max-width: 100%;
            }

            .problems__cta {
                .problems__cta-text {
                    font-size: 15px;
                }

                .problems__cta-btn {
                    width: 100%;
                    max-width: 300px;
                    font-size: 15px;
                    padding: 10px 20px;
                }
            }
        }
    }
}

/*=============== TOOLS ===============*/
.tools {
    position: relative;
    background-color: #171717;
    padding-block: 85px 95px;
    overflow: hidden;

    .tools__container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;

        .tools__header {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 12px;
            margin-bottom: 50px;
            max-width: 680px;

            .tools__subtitle {
                font-size: 16px;
                font-weight: var(--font-bold);
                color: var(--red);
            }

            .tools__title {
                font-size: 38px;
                font-weight: 800;
                color: var(--white);
                line-height: 1.3;
            }

            .tools__description {
                font-size: 16px;
                font-weight: var(--font-regular);
                color: #8F949C;
                line-height: 1.6;
            }
        }

        .tools__content {
            width: 100%;
            max-width: 1050px;
            display: flex;
            flex-direction: column;
            gap: 45px;

            .tools__group {
                width: 100%;

                .tools__group-title {
                    font-size: 18px;
                    font-weight: var(--font-bold);
                    color: var(--yellow);
                    text-align: right;
                    margin-bottom: 18px;
                }

                .tools__grid {
                    display: grid;
                    gap: 16px;
                    width: 100%;

                    &.tools__grid--5 {
                        grid-template-columns: repeat(5, 1fr);
                    }

                    &.tools__grid--2 {
                        grid-template-columns: repeat(2, 1fr);
                        gap: 20px;
                    }

                    &.tools__grid--3 {
                        grid-template-columns: repeat(3, 1fr);
                        gap: 20px;
                    }

                    .tools__card {
                        position: relative;
                        background-color: #171717;
                        border: 1px solid #2B2B2B;
                        border-radius: 6px;
                        padding: 24px 12px 20px;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;
                        text-align: center;
                        transition: all 0.3s ease-in-out;
                        cursor: default;

                        &:hover {
                            border-color: #444444;
                            transform: translateY(-4px);
                            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
                        }

                        .tools__card-img {
                            height: 48px;
                            width: 100%;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            margin-bottom: 15px;

                            img {
                                max-height: 100%;
                                max-width: 52px;
                                object-fit: contain;
                            }
                        }

                        .tools__card-name {
                            font-size: 15px;
                            font-weight: var(--font-bold);
                            color: var(--white);
                            white-space: nowrap;
                        }

                        &.tools__card--featured {
                            flex-direction: row;
                            justify-content: flex-start;
                            align-items: center;
                            gap: 24px;
                            padding: 22px 30px;

                            .tools__featured-img {
                                width: 58px;
                                height: 58px;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                flex-shrink: 0;

                                img {
                                    width: 100%;
                                    height: 100%;
                                    object-fit: contain;
                                    border-radius: 12px;
                                }
                            }

                            .tools__featured-info {
                                display: flex;
                                flex-direction: column;
                                text-align: right;
                                gap: 4px;

                                .tools__featured-title {
                                    font-size: 22px;
                                    font-weight: var(--font-bold);
                                    color: var(--white);
                                }

                                .tools__featured-desc {
                                    font-size: 13px;
                                    font-weight: var(--font-regular);
                                    color: #8F949C;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

/*=============== RESPONSIVE TOOLS ===============*/
@media (max-width: 991px) {
    .tools {
        padding-block: 70px 80px;

        .tools__container {
            .tools__header {
                margin-bottom: 40px;

                .tools__title {
                    font-size: 30px;
                }
            }

            .tools__content {
                gap: 35px;

                .tools__group {
                    .tools__grid {
                        &.tools__grid--5 {
                            grid-template-columns: repeat(3, 1fr);
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 768px) {
    .tools {
        padding-block: 60px 70px;

        .tools__container {
            .tools__header {
                .tools__title {
                    font-size: 25px;
                }

                .tools__description {
                    font-size: 14px;
                }
            }

            .tools__content {
                gap: 30px;

                .tools__group {
                    .tools__group-title {
                        font-size: 16px;
                    }

                    .tools__grid {
                        &.tools__grid--5 {
                            grid-template-columns: repeat(2, 1fr);
                            gap: 12px;
                        }

                        &.tools__grid--2 {
                            grid-template-columns: 1fr;
                            gap: 14px;
                        }

                        &.tools__grid--3 {
                            grid-template-columns: 1fr;
                            gap: 12px;
                        }

                        .tools__card {
                            padding: 20px 10px 16px;

                            .tools__card-img {
                                height: 42px;
                            }

                            .tools__card-name {
                                font-size: 14px;
                            }

                            &.tools__card--featured {
                                padding: 18px 20px;
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 576px) {
    .tools {
        padding-block: 50px 60px;

        .tools__container {
            .tools__header {
                .tools__subtitle {
                    font-size: 14px;
                }

                .tools__title {
                    font-size: 22px;
                }
            }

            .tools__content {
                .tools__group {
                    .tools__grid {
                        &.tools__grid--5 {
                            grid-template-columns: repeat(2, 1fr);
                            gap: 10px;
                        }

                        .tools__card {
                            .tools__card-name {
                                font-size: 13px;
                            }
                        }
                    }
                }
            }
        }
    }
}

/*=============== SERVICES ===============*/
.services {
    position: relative;
    background-color: #FAFCFF;
    padding-block: 85px 95px;
    overflow: hidden;

    .services__container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;

        .services__header {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 48px;

            .services__logo {
                width: 175px;
                margin-bottom: 14px;

                img {
                    width: 100%;
                    height: auto;
                    display: block;
                }
            }

            .services__subtitle {
                font-size: 19px;
                font-weight: var(--font-bold);
                color: var(--red);
                margin-bottom: 22px;
            }

            .services__search {
                position: relative;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                width: 100%;
                max-width: 440px;
                color: #B5C4D3;
                font-size: 20px;
                font-weight: var(--font-medium);

                .services__search-prefix {
                    color: #B5C4D3;
                    line-height: 1;
                }

                i {
                    position: absolute;
                    top: -6px;
                    right: 55px;
                }
            }
        }

        .services__content {
            width: 100%;
            max-width: 1140px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 26px;

            .services__card {
                position: relative;
                background-color: #FFFFFF;
                border: 1px solid #EEF2F6;
                border-radius: 10px;
                padding: 28px 24px 24px 28px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 20px;
                box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
                transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out;
                cursor: default;

                &:hover {
                    transform: translateY(-5px);
                    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
                    border-color: #DDE5EE;
                }

                .services__card-info {
                    flex: 1;
                    text-align: right;
                    display: flex;
                    flex-direction: column;
                    gap: 6px;

                    .services__card-title {
                        font-size: 21px;
                        font-weight: 800;
                        color: #171717;
                    }

                    .services__card-subtitle {
                        font-size: 14px;
                        font-weight: var(--font-bold);

                        &.services__card-subtitle--blue {
                            color: #3B82F6;
                        }

                        &.services__card-subtitle--yellow {
                            color: #F59E0B;
                        }
                    }

                    .services__card-subtitle-group {
                        display: flex;
                        align-items: center;
                        gap: 8px;

                        .services__card-subtitle-note {
                            font-size: 13px;
                            font-weight: var(--font-medium);
                            color: #10B981;
                        }
                    }

                    .services__card-desc {
                        font-size: 14px;
                        font-weight: var(--font-regular);
                        color: #6E7582;
                        line-height: 1.7;
                        margin-top: 4px;
                    }
                }

                .services__card-img {
                    width: 140px;
                    height: 140px;
                    flex-shrink: 0;
                    display: flex;
                    align-items: center;
                    justify-content: center;

                    img {
                        max-width: 100%;
                        max-height: 100%;
                        object-fit: contain;
                        display: block;
                    }
                }
            }
        }

        .services__cta {
            margin-top: 55px;
            display: flex;
            justify-content: center;
            align-items: center;

            .services__cta-btn {
                background: linear-gradient(180deg, #BA1B1C 0%, #D40C10 50%, #F70004 100%);
                color: var(--white);
                font-size: 18px;
                font-weight: var(--font-bold);
                padding: 12px 48px;
                border-radius: 6px;
                box-shadow: 0 8px 24px rgba(212, 12, 16, 0.25);
                transition: all 0.3s ease-in-out;

                &:hover {
                    background: linear-gradient(180deg, #A81B1C 0%, #C40A0E 50%, #E60003 100%);
                    transform: translateY(-2px);
                    box-shadow: 0 12px 28px rgba(212, 12, 16, 0.35);
                }
            }
        }
    }
}

/*=============== RESPONSIVE SERVICES ===============*/
@media (max-width: 991px) {
    .services {
        padding-block: 70px 80px;

        .services__container {
            .services__content {
                grid-template-columns: 1fr;
                max-width: 650px;
                gap: 20px;
            }
        }
    }
}

@media (max-width: 768px) {
    .services {
        padding-block: 60px 70px;

        .services__container {
            .services__header {
                margin-bottom: 35px;

                .services__logo {
                    width: 150px;
                }

                .services__subtitle {
                    font-size: 17px;
                }

                .services__search {
                    max-width: 320px;
                }
            }

            .services__content {
                .services__card {
                    padding: 24px 20px;

                    .services__card-info {
                        .services__card-title {
                            font-size: 19px;
                        }

                        .services__card-desc {
                            font-size: 13.5px;
                        }
                    }

                    .services__card-img {
                        width: 115px;
                        height: 115px;
                    }
                }
            }

            .services__cta {
                margin-top: 40px;

                .services__cta-btn {
                    font-size: 16px;
                    padding: 11px 36px;
                }
            }
        }
    }
}

@media (max-width: 576px) {
    .services {
        padding-block: 50px 60px;

        .services__container {
            .services__header {
                .services__logo {
                    width: 130px;
                }

                .services__subtitle {
                    font-size: 15px;
                }
            }

            .services__content {
                .services__card {
                    flex-direction: column-reverse;
                    text-align: center;
                    padding: 22px 16px;

                    .services__card-info {
                        text-align: center;

                        .services__card-subtitle-group {
                            justify-content: center;
                        }
                    }

                    .services__card-img {
                        width: 110px;
                        height: 110px;
                        margin-bottom: 10px;
                    }
                }
            }

            .services__cta {
                .services__cta-btn {
                    width: 100%;
                    max-width: 290px;
                    font-size: 15px;
                }
            }
        }
    }
}

/*=============== RESULTS (SWIPER) ===============*/
.results {
    position: relative;
    background-color: #171717;
    padding-block: 85px 95px;
    overflow: hidden;

    .results__container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        position: relative;
        z-index: 2;

        .results__header {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 12px;
            margin-bottom: 45px;
            max-width: 650px;

            .results__title {
                font-size: 38px;
                font-weight: 800;
                color: var(--white);
                line-height: 1.3;
            }

            .results__subtitle {
                font-size: 16px;
                font-weight: var(--font-regular);
                color: #8F949C;
                line-height: 1.6;
            }
        }

        .results__wrapper {
            width: 100%;
            max-width: 950px;
            display: flex;
            flex-direction: column;
            align-items: center;

            .results__swiper {
                width: 100%;
                position: relative;

                .swiper-slide {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }

                .results__card {
                    width: 100%;
                    max-width: 820px;
                    border-radius: 12px;
                    overflow: hidden;
                    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);

                    img {
                        width: 100%;
                        height: auto;
                        display: block;
                    }
                }

                .results__arrow {
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    cursor: pointer;
                    z-index: 10;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 50px;
                    height: 50px;
                    font-size: 36px;
                    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);

                    i {
                        background: var(--red-gradient);
                        -webkit-background-clip: text;
                        -webkit-text-fill-color: transparent;
                        opacity: 0.35;
                        filter: grayscale(85%) brightness(0.9);
                        transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
                    }

                    &:hover {
                        transform: translateY(-50%) scale(1.2);

                        i {
                            opacity: 1;
                            filter: grayscale(0%) brightness(1.1) drop-shadow(0 0 14px rgba(247, 0, 4, 0.65));
                        }
                    }

                    &:active {
                        transform: translateY(-50%) scale(0.95);
                    }

                    &.results__button-prev {
                        left: 0;
                    }

                    &.results__button-next {
                        right: 0;
                    }
                }
            }

            .results__badge {
                margin-top: 40px;
                display: inline-flex;
                justify-content: center;
                align-items: center;
                padding: 2.5px;
                border-radius: 999px;
                background: linear-gradient(90deg, #F7B803 0%, #FA7505 50%, #F70004 100%);
                box-shadow: 0 4px 20px rgba(247, 0, 4, 0.25), 0 4px 20px rgba(247, 184, 3, 0.25);

                span {
                    background-color: var(--white);
                    color: #171717;
                    font-size: 16px;
                    font-weight: var(--font-bold);
                    padding: 8px 32px;
                    border-radius: 999px;
                    white-space: nowrap;
                }
            }
        }
    }

    .results__glow {
        position: absolute;
        top: -10%;
        right: -5%;
        width: 480px;
        height: 420px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(247, 100, 4, 0.3) 0%, rgba(247, 0, 4, 0.12) 50%, transparent 70%);
        filter: blur(80px);
        pointer-events: none;
        z-index: 1;
    }
}

/*=============== FREE SESSION ===============*/
.session {
    position: relative;
    background-color: #FFFFFF;
    overflow: hidden;
    padding-bottom: 90px;

    .session__banner {
        width: 100%;
        background: linear-gradient(90deg, #A81B1C 0%, #BA1B1C 30%, #D40C10 70%, #F70004 100%);
        padding: 13px 20px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(247, 0, 4, 0.15);

        p {
            color: var(--white);
            font-size: 18px;
            font-weight: var(--font-bold);
            margin: 0;

            span {
                font-size: 24px;
                font-weight: 900;
                margin-inline: 4px;
            }
        }
    }

    .session__container {
        padding-top: 70px;

        .session__content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 50px;
            max-width: 1080px;
            margin: 0 auto;
            padding: 0 1rem;

            .session__info {
                flex: 1;
                text-align: right;
                display: flex;
                flex-direction: column;
                align-items: flex-start;

                .session__tag {
                    display: inline-block;
                    background-color: var(--yellow);
                    color: var(--white);
                    font-size: 14px;
                    font-weight: var(--font-bold);
                    padding: 5px 20px;
                    border-radius: 999px;
                    margin-bottom: 16px;
                }

                .session__title {
                    font-size: 34px;
                    font-weight: 800;
                    color: #171717;
                    line-height: 1.35;
                    margin-bottom: 14px;
                }

                .session__desc {
                    font-size: 15px;
                    font-weight: var(--font-regular);
                    color: #70757E;
                    line-height: 1.8;
                    margin-bottom: 24px;
                    max-width: 520px;
                }

                .session__list {
                    display: flex;
                    flex-direction: column;
                    gap: 16px;
                    margin-bottom: 30px;
                    width: 100%;

                    .session__item {
                        display: flex;
                        align-items: center;
                        gap: 14px;
                        font-size: 16px;
                        font-weight: var(--font-medium);
                        color: #26292E;

                        .session__dot {
                            width: 12px;
                            height: 12px;
                            border-radius: 50%;
                            background-color: var(--yellow);
                            flex-shrink: 0;
                            box-shadow: 0 0 8px rgba(247, 184, 3, 0.4);
                        }
                    }
                }

                .session__btn {
                    background: linear-gradient(180deg, #BA1B1C 0%, #D40C10 50%, #F70004 100%);
                    color: var(--white);
                    font-size: 17px;
                    font-weight: var(--font-bold);
                    padding: 12px 36px;
                    border-radius: 4px;
                    box-shadow: 0 6px 20px rgba(212, 12, 16, 0.25);
                    transition: all 0.3s ease-in-out;

                    &:hover {
                        background: linear-gradient(180deg, #A81B1C 0%, #C40A0E 50%, #E60003 100%);
                        transform: translateY(-2px);
                        box-shadow: 0 10px 25px rgba(212, 12, 16, 0.35);
                    }
                }
            }

            .session__img {
                width: 100%;
                max-width: 420px;
                flex-shrink: 0;
                display: flex;
                justify-content: center;
                align-items: center;

                img {
                    width: 100%;
                    height: auto;
                    display: block;
                    border-radius: 20px;
                    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
                }
            }
        }
    }
}

/*=============== RESPONSIVE RESULTS & SESSION ===============*/
@media (max-width: 991px) {
    .results {
        padding-block: 70px 80px;

        .results__container {
            .results__header {
                .results__title {
                    font-size: 30px;
                }
            }

            .results__wrapper {
                .results__swiper {
                    padding-inline: 50px;
                }
            }
        }
    }

    .session {
        padding-bottom: 70px;

        .session__container {
            padding-top: 50px;

            .session__content {
                gap: 35px;

                .session__info {
                    .session__title {
                        font-size: 28px;
                    }
                }

                .session__img {
                    max-width: 340px;
                }
            }
        }
    }
}

@media (max-width: 768px) {
    .results {
        padding-block: 60px 70px;

        .results__container {
            .results__header {
                .results__title {
                    font-size: 24px;
                }

                .results__subtitle {
                    font-size: 14px;
                }
            }

            .results__wrapper {
                .results__swiper {
                    padding-inline: 0;
                    padding-bottom: 40px;

                    .results__arrow {
                        top: auto;
                        bottom: -10px;
                        transform: none;

                        &:hover {
                            transform: scale(1.1);
                        }

                        &.results__button-prev {
                            left: 30%;
                        }

                        &.results__button-next {
                            right: 30%;
                        }
                    }
                }

                .results__badge {
                    margin-top: 25px;

                    span {
                        font-size: 14px;
                        padding: 7px 22px;
                    }
                }
            }
        }
    }

    .session {
        .session__banner {
            p {
                font-size: 15px;

                span {
                    font-size: 20px;
                }
            }
        }

        .session__container {
            .session__content {
                flex-direction: column-reverse;
                text-align: center;

                .session__info {
                    align-items: center;
                    text-align: center;

                    .session__title {
                        font-size: 24px;
                    }

                    .session__desc {
                        font-size: 14px;
                    }

                    .session__list {
                        align-items: center;

                        .session__item {
                            font-size: 15px;
                        }
                    }

                    .session__btn {
                        width: 100%;
                        max-width: 300px;
                        font-size: 15px;
                    }
                }

                .session__img {
                    max-width: 280px;
                }
            }
        }
    }
}

@media (max-width: 576px) {
    .results {
        padding-block: 50px 60px;

        .results__container {
            .results__header {
                .results__title {
                    font-size: 21px;
                }
            }

            .results__wrapper {
                .results__badge {
                    span {
                        font-size: 13px;
                        padding: 6px 18px;
                    }
                }
            }
        }
    }

    .session {
        .session__banner {
            padding: 10px 15px;

            p {
                font-size: 13.5px;

                span {
                    font-size: 18px;
                }
            }
        }

        .session__container {
            padding-top: 40px;

            .session__content {
                .session__info {
                    .session__title {
                        font-size: 21px;
                    }

                    .session__tag {
                        font-size: 13px;
                        padding: 4px 14px;
                    }
                }

                .session__img {
                    max-width: 240px;
                }
            }
        }
    }
}

/*==================== STEPS (طريقة بدأ شغلنا مع بعض) ====================*/
.steps {
    background-color: #171717;
    padding-block: 80px 90px;
    position: relative;
    overflow: hidden;

    .steps__container {
        display: flex;
        flex-direction: column;
        align-items: center;

        .steps__header {
            text-align: center;
            margin-bottom: 60px;

            .steps__title {
                color: var(--white);
                font-size: 38px;
                font-weight: var(--font-bold);
                margin-bottom: 12px;
                letter-spacing: -0.5px;
            }

            .steps__subtitle {
                color: #A0A5AE;
                font-size: 16px;
                font-weight: var(--font-regular);
                line-height: 1.6;

                span {
                    color: var(--yellow);
                    font-weight: var(--font-bold);
                }
            }
        }

        .steps__wrapper {
            position: relative;
            width: 100%;
            margin-bottom: 50px;

            .steps__curve {
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                height: 100px;
                pointer-events: none;
                z-index: 1;
            }

            .steps__content {
                position: relative;
                z-index: 2;
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 40px;

                .steps__card {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    text-align: center;

                    .steps__img {
                        height: 180px;
                        width: 100%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        margin-bottom: 25px;

                        img {
                            max-height: 100%;
                            max-width: 100%;
                            object-fit: contain;
                            filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4));
                            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
                        }
                    }

                    &:hover {
                        .steps__img img {
                            transform: translateY(-8px) scale(1.03);
                            filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.55));
                        }
                    }

                    .steps__card-title {
                        color: var(--white);
                        font-size: 22px;
                        font-weight: var(--font-bold);
                        margin-bottom: 12px;
                        line-height: 1.4;
                    }

                    .steps__card-desc {
                        color: #A0A5AE;
                        font-size: 15px;
                        font-weight: var(--font-regular);
                        line-height: 1.7;
                        max-width: 310px;
                        margin: 0 auto;
                    }
                }
            }
        }

        .steps__cta {
            display: flex;
            justify-content: center;
            align-items: center;

            .steps__btn {
                background-color: var(--yellow);
                color: var(--white);
                font-size: 17px;
                font-weight: var(--font-bold);
                padding: 14px 44px;
                border-radius: 8px;
                border: 2px solid rgba(255, 255, 255, 0.45);
                box-shadow: 0 4px 25px rgba(247, 184, 3, 0.35);
                transition: all 0.3s ease;
                cursor: pointer;

                &:hover {
                    background-color: #e5a800;
                    border-color: rgba(255, 255, 255, 0.85);
                    box-shadow: 0 6px 30px rgba(247, 184, 3, 0.55);
                    transform: translateY(-2px);
                }
            }
        }
    }
}

/*=============== RESPONSIVE STEPS ===============*/
@media (max-width: 991px) {
    .steps {
        padding-block: 70px 75px;

        .steps__container {
            .steps__header {
                margin-bottom: 45px;

                .steps__title {
                    font-size: 32px;
                }
            }

            .steps__wrapper {
                margin-bottom: 40px;

                .steps__curve {
                    display: none;
                }

                .steps__content {
                    gap: 25px;

                    .steps__card {
                        .steps__img {
                            height: 160px;
                            margin-bottom: 20px;
                        }

                        .steps__card-title {
                            font-size: 20px;
                        }

                        .steps__card-desc {
                            font-size: 14px;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 768px) {
    .steps {
        padding-block: 60px 65px;

        .steps__container {
            .steps__header {
                margin-bottom: 35px;

                .steps__title {
                    font-size: 26px;
                }

                .steps__subtitle {
                    font-size: 14.5px;
                }
            }

            .steps__wrapper {
                margin-bottom: 35px;

                .steps__content {
                    grid-template-columns: 1fr;
                    max-width: 400px;
                    margin: 0 auto;
                    gap: 40px;

                    .steps__card {
                        .steps__img {
                            height: 170px;
                        }

                        .steps__card-title {
                            font-size: 21px;
                        }

                        .steps__card-desc {
                            font-size: 14.5px;
                            max-width: 320px;
                        }
                    }
                }
            }

            .steps__cta {
                width: 100%;

                .steps__btn {
                    width: 100%;
                    max-width: 300px;
                    font-size: 16px;
                    padding: 13px 25px;
                }
            }
        }
    }
}

@media (max-width: 576px) {
    .steps {
        padding-block: 50px 55px;

        .steps__container {
            .steps__header {
                margin-bottom: 30px;

                .steps__title {
                    font-size: 22px;
                }

                .steps__subtitle {
                    font-size: 13.5px;
                }
            }

            .steps__wrapper {
                .steps__content {
                    gap: 35px;

                    .steps__card {
                        .steps__img {
                            height: 150px;
                            margin-bottom: 15px;
                        }

                        .steps__card-title {
                            font-size: 19px;
                            margin-bottom: 8px;
                        }

                        .steps__card-desc {
                            font-size: 13.5px;
                            line-height: 1.6;
                        }
                    }
                }
            }
        }
    }
}

/*==================== FAQ (أسئلة شائعة) ====================*/
.faq {
    background-color: #EEF0F3;
    padding-block: 90px 100px;
    position: relative;
    overflow: hidden;

    .faq__container {
        .faq__content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;

            /* Right Column: FAQ Data */
            .faq__data {
                flex: 1;
                max-width: 630px;

                .faq__header {
                    margin-bottom: 28px;
                    text-align: right;

                    .faq__subtitle {
                        display: block;
                        font-size: 15px;
                        font-weight: var(--font-semi-bold);
                        color: #5E6470;
                        margin-bottom: 6px;
                    }

                    .faq__title {
                        font-size: 36px;
                        font-weight: var(--font-bold);
                        color: #17181C;
                        line-height: 1.3;
                    }
                }

                .faq__accordion {
                    display: flex;
                    flex-direction: column;
                    gap: 12px;
                    width: 100%;

                    .faq__item {
                        background-color: var(--white);
                        border-radius: 8px;
                        overflow: hidden;
                        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
                        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
                        cursor: pointer;

                        .faq__question {
                            display: flex;
                            align-items: center;
                            justify-content: space-between;
                            padding: 18px 24px;
                            gap: 16px;
                            user-select: none;

                            .faq__question-title {
                                font-size: 16.5px;
                                font-weight: var(--font-bold);
                                color: #1B1E22;
                                transition: color 0.3s ease;
                                text-align: right;
                                margin: 0;
                            }

                            .faq__icon {
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                color: #9EACB8;
                                font-size: 14px;
                                transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
                                flex-shrink: 0;
                            }
                        }

                        .faq__answer {
                            max-height: 0;
                            opacity: 0;
                            overflow: hidden;
                            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.3s ease;
                            padding: 0 24px;

                            p {
                                font-size: 14px;
                                font-weight: var(--font-regular);
                                line-height: 1.7;
                                color: #4A5059;
                                margin: 0;
                                text-align: right;
                            }
                        }

                        &:hover:not(.faq__item--active) {
                            transform: translateY(-2px);
                            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);

                            .faq__question .faq__question-title {
                                color: #000;
                            }

                            .faq__question .faq__icon {
                                color: var(--yellow);
                            }
                        }

                        /* Active item */
                        &.faq__item--active {
                            background-color: var(--yellow);
                            box-shadow: 0 8px 24px rgba(247, 184, 3, 0.28);

                            .faq__question {
                                padding: 18px 24px 10px 24px;

                                .faq__question-title {
                                    color: var(--white);
                                }

                                .faq__icon {
                                    color: var(--white);
                                    transform: rotate(-90deg);
                                }
                            }

                            .faq__answer {
                                max-height: 200px;
                                opacity: 1;
                                padding: 0 24px 20px 24px;

                                p {
                                    color: var(--white);
                                }
                            }
                        }
                    }
                }
            }

            /* Left Column: FAQ Illustration */
            .faq__img {
                flex: 1;
                max-width: 530px;
                display: flex;
                align-items: center;
                justify-content: center;

                img {
                    width: 100%;
                    max-width: 530px;
                    height: auto;
                    display: block;
                    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.08));
                    transition: transform 0.4s ease;
                }

                &:hover img {
                    transform: translateY(-6px) scale(1.02);
                }
            }
        }
    }
}

/*=============== RESPONSIVE FAQ ===============*/
@media (max-width: 991px) {
    .faq {
        padding-block: 70px 80px;

        .faq__container {
            .faq__content {
                flex-direction: column-reverse;
                gap: 45px;
                text-align: center;

                .faq__data {
                    max-width: 100%;
                    width: 100%;

                    .faq__header {
                        text-align: center;
                        margin-bottom: 25px;

                        .faq__title {
                            font-size: 30px;
                        }
                    }
                }

                .faq__img {
                    max-width: 380px;
                }
            }
        }
    }
}

@media (max-width: 768px) {
    .faq {
        padding-block: 60px 70px;

        .faq__container {
            .faq__content {
                gap: 35px;

                .faq__data {
                    .faq__header {
                        .faq__subtitle {
                            font-size: 14px;
                        }

                        .faq__title {
                            font-size: 25px;
                        }
                    }

                    .faq__accordion {
                        .faq__item {
                            .faq__question {
                                padding: 16px 20px;

                                .faq__question-title {
                                    font-size: 15.5px;
                                }
                            }

                            &.faq__item--active {
                                .faq__question {
                                    padding: 16px 20px 8px 20px;
                                }

                                .faq__answer {
                                    padding: 0 20px 18px 20px;

                                    p {
                                        font-size: 13.5px;
                                    }
                                }
                            }
                        }
                    }
                }

                .faq__img {
                    max-width: 310px;
                }
            }
        }
    }
}

@media (max-width: 576px) {
    .faq {
        padding-block: 50px 60px;

        .faq__container {
            .faq__content {
                gap: 30px;

                .faq__data {
                    .faq__header {
                        .faq__title {
                            font-size: 22px;
                        }
                    }

                    .faq__accordion {
                        gap: 10px;

                        .faq__item {
                            .faq__question {
                                padding: 14px 16px;

                                .faq__question-title {
                                    font-size: 14.5px;
                                }

                                .faq__icon {
                                    font-size: 13px;
                                }
                            }

                            &.faq__item--active {
                                .faq__question {
                                    padding: 14px 16px 8px 16px;
                                }

                                .faq__answer {
                                    padding: 0 16px 16px 16px;

                                    p {
                                        font-size: 13px;
                                    }
                                }
                            }
                        }
                    }
                }

                .faq__img {
                    max-width: 260px;
                }
            }
        }
    }
}

/*==================== MODAL & CONTACT FORM & SUCCESS ====================*/
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;

    &.modal--active {
        opacity: 1;
        visibility: visible;

        .modal__container {
            transform: scale(1);
            opacity: 1;
        }
    }

    .modal__overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(18, 20, 24, 0.65);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }

    .modal__container {
        position: relative;
        z-index: 2;
        width: 100%;
        display: flex;
        justify-content: center;
        margin: auto;
        transform: scale(0.94);
        opacity: 0;
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    }

    /* Common Card Styling */
    .modal__card {
        background-color: var(--white);
        border-radius: 16px;
        box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
        position: relative;
        width: 100%;
        transition: all 0.3s ease;
    }

    /*==================== 1. FORM CARD ====================*/
    .form__card {
        max-width: 480px;
        padding: 32px 36px 36px 36px;

        .form__top {
            display: flex;
            justify-content: flex-end;
            margin-bottom: 8px;

            .form__back-btn {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                background: none;
                border: none;
                color: #A1A1AA;
                font-size: 14px;
                font-family: inherit;
                cursor: pointer;
                padding: 4px 0;
                transition: color 0.2s ease, transform 0.2s ease;

                i {
                    font-size: 13px;
                    transition: transform 0.2s ease;
                }

                &:hover {
                    color: #18181B;

                    i {
                        transform: translateX(-3px);
                    }
                }
            }
        }

        .form__header {
            text-align: center;
            margin-bottom: 26px;

            .form__title {
                font-size: 23px;
                font-weight: var(--font-bold);
                color: #18181B;
                line-height: 1.35;
                margin-bottom: 6px;

                .form__title--highlight {
                    color: var(--red);
                }
            }

            .form__subtitle {
                font-size: 14px;
                color: #71717A;
                font-weight: var(--font-regular);
            }
        }

        .form__body {
            display: flex;
            flex-direction: column;
            gap: 18px;

            .form__group {
                position: relative;
                border: 1.5px solid #E4E4E7;
                border-radius: 8px;
                padding: 0 16px;
                background-color: var(--white);
                transition: border-color 0.2s ease, box-shadow 0.2s ease;

                .form__label {
                    position: absolute;
                    top: -9px;
                    right: 14px;
                    background-color: var(--white);
                    padding: 0 6px;
                    font-size: 12px;
                    font-weight: 500;
                    color: #71717A;
                    pointer-events: none;
                    transition: color 0.2s ease;
                    line-height: 1;
                }

                .form__input {
                    width: 100%;
                    height: 48px;
                    border: none;
                    outline: none;
                    background: transparent;
                    font-family: inherit;
                    font-size: 14.5px;
                    color: #18181B;

                    &::placeholder {
                        color: #A1A1AA;
                    }
                }

                .form__select {
                    width: 100%;
                    height: 48px;
                    border: none;
                    outline: none;
                    background: transparent;
                    font-family: inherit;
                    font-size: 14.5px;
                    color: #18181B;
                    appearance: none;
                    -webkit-appearance: none;
                    cursor: pointer;

                    option {
                        color: #18181B;
                        background: #FFFFFF;
                    }
                }

                .form__select-arrow {
                    position: absolute;
                    left: 16px;
                    top: 50%;
                    transform: translateY(-50%);
                    pointer-events: none;
                    color: #71717A;
                    font-size: 12px;
                    transition: transform 0.2s ease;
                }

                &:focus-within {
                    border-color: var(--red);
                    box-shadow: 0 0 0 3px rgba(247, 0, 4, 0.08);

                    .form__label {
                        color: var(--red);
                    }
                }
            }

            .form__submit-btn {
                width: 100%;
                height: 48px;
                background: var(--red-gradient);
                color: var(--white);
                font-family: inherit;
                font-size: 16px;
                font-weight: var(--font-bold);
                border: none;
                border-radius: 8px;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 4px 16px rgba(247, 0, 4, 0.25);
                transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
                margin-top: 4px;

                &:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 6px 22px rgba(247, 0, 4, 0.4);
                    filter: brightness(1.05);
                }

                &:active {
                    transform: translateY(0);
                }
            }

            .form__privacy {
                text-align: center;
                font-size: 12.5px;
                color: #9CA3AF;
                margin-top: 4px;
            }
        }
    }

    /*==================== 2. SUCCESS CARD ====================*/
    .success__card {
        max-width: 440px;
        padding: 36px 32px 34px 32px;
        text-align: center;
        position: relative;

        .success__close-btn {
            position: absolute;
            top: 20px;
            right: 22px;
            background: none;
            border: none;
            color: #A1A1AA;
            font-size: 22px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.2s ease, transform 0.2s ease;

            &:hover {
                color: #18181B;
                transform: scale(1.1);
            }
        }

        .success__content {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 10px;

            .success__title {
                color: var(--yellow);
                font-size: 24px;
                font-weight: var(--font-bold);
                margin-bottom: 12px;
            }

            .success__desc {
                color: #52525B;
                font-size: 14px;
                line-height: 1.75;
                margin-bottom: 24px;
                max-width: 360px;
            }

            .success__whatsapp-btn {
                background-color: #22C55E;
                color: var(--white);
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                padding: 12px 30px;
                border-radius: 8px;
                font-size: 15.5px;
                font-weight: var(--font-bold);
                box-shadow: 0 4px 16px rgba(34, 197, 94, 0.25);
                transition: all 0.25s ease;

                i {
                    font-size: 18px;
                }

                &:hover {
                    background-color: #16A34A;
                    transform: translateY(-2px);
                    box-shadow: 0 6px 22px rgba(34, 197, 94, 0.4);
                }
            }
        }
    }
}

/* Modal Responsive */
@media (max-width: 576px) {
    .modal {
        padding: 16px;

        .form__card {
            padding: 24px 20px 28px 20px;

            .form__header {
                margin-bottom: 20px;

                .form__title {
                    font-size: 20px;
                }

                .form__subtitle {
                    font-size: 13px;
                }
            }

            .form__body {
                gap: 16px;

                .form__group {

                    .form__input,
                    .form__select {
                        height: 44px;
                        font-size: 13.5px;
                    }
                }

                .form__submit-btn {
                    height: 45px;
                    font-size: 15px;
                }
            }
        }

        .success__card {
            padding: 28px 20px 28px 20px;

            .success__title {
                font-size: 21px;
            }

            .success__desc {
                font-size: 13px;
                margin-bottom: 20px;
            }

            .success__whatsapp-btn {
                width: 100%;
                padding: 12px 20px;
                font-size: 14.5px;
            }
        }
    }
}