#prices-block {
    padding: 40px 0px;
    position: relative;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

#prices-block .info-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

#prices-block .info-item {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--stroke);
    padding: 40px;
    height: auto;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
    position: relative;
    z-index: 1;
}

#prices-block .info-item:nth-child(2) {
    border-color: var(--primary);
}

#prices-block .subtitle {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
    color: var(--main-text);
    padding: 10px 20px;
    border: 1px solid var(--stroke);
    margin-bottom: 90px;
    width: fit-content;
}

#prices-block .info-item:nth-child(2) .subtitle {
    border-color: var(--primary);
    color: var(--primary);
}

#prices-block .title {
    font-weight: 600;
    font-size: 30px;
    line-height: 120%;
    margin-bottom: 20px;
    font-family: var(--second-family);
}

#prices-block .desc {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: var(--main-text);
    margin-bottom: 40px;
}

#prices-block .list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 80px;
}

#prices-block .list-item {
    position: relative;
    display: flex;
    gap: 10px;
}

#prices-block .list-item svg {
    min-width: 25px;
    color: var(--primary);
}

#prices-block .list-item p {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
}

#prices-block .price {
    font-weight: 600;
    font-size: 30px;
    line-height: 120%;
    margin-top: auto;
    margin-bottom: 30px;
}

#prices-block .btn {
    width: 100%;
}

#prices-block .info-item:nth-child(2) .btn {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

#prices-block .info-item:nth-child(2) .btn:hover {
    background: var(--hover);
    border-color: var(--hover);
}

#prices-block .before-item {
    position: absolute;
    bottom: -85px;
    left: 0;
    width: 213px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: blur(2px);
}

#prices-block .before-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

@media (max-width: 1200px) {
    #prices-block .info-item {
        padding: 15px;
    }

    #prices-block .subtitle {
        margin-bottom: 20px;
    }
}

@media (max-width: 996px) {
    #prices-block {
        padding: 30px 0;
    }

    #prices-block .list {
        margin-bottom: 20px;
    }

    #prices-block .title {
        font-size: 20px;
    }

    #prices-block .desc {
        font-size: 14px;
        margin-bottom: 10px;
    }

    #prices-block .list {
        gap: 5px;
    }

    #prices-block .price {
        margin-bottom: 10px;
    }

    #prices-block .before-item {
        bottom: 0;
    }

    #prices-block .list-item p {
        font-size: 14px;
    }

    #prices-block .list-item svg {
        width: 16px;
        height: 16px;
        min-width: 16px;
    }
}

@media (max-width: 768px) {
    #prices-block .info-blocks {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    #prices-block .price {
        font-size: 20px;
    }
}