.products {
    padding-top: 40px;
    margin-bottom: 100px;
}

.products .box {
    display: flex;
    gap: 45px;
}

.products .card {
    background: rgba(0, 137, 217, 0.1);
    border: 2px solid rgba(0, 137, 217, 0.5);
    max-width: 325px;
    padding: 20px;
    
    display: flex;
    flex-direction: column;
    flex: 1 1;
}

.products .card-image {
    margin-bottom: 60px;
}

.products .card-image img {
    max-width: 100%;
}

.products .card-name {
    margin-top: auto;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.products .card-text {
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0.06em;
    opacity: .8;
    margin-bottom: 20px;
}

.stack {
    background: rgba(0, 137, 217, 0.12);
    padding: 40px;
    margin-bottom: 100px;
}

.stack .item {
    display: flex;
    padding: 16px 0;
}

.stack .item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.stack .item-name {
    font-size: 16px;
    opacity: .8;
    width: 25%;
}

.stack .item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.stack .item-tag {
    user-select: none;
    padding: 3px 14px;
    font-weight: 600;
    color: #0074d9;
    background: rgba(0, 137, 217, 0.1);
    border-radius: 5px;
}

@media (max-width: 850px) {
    .products .box {
        gap: 10px;
    }

    .products .card {
        padding: 10px;
    }

    .products .card-image {
        margin-bottom: 30px;
    }

    .stack .item-name {
        min-width: 100px;
    }
}

@media (max-width: 650px) {
    .products .box {
        flex-wrap: wrap;
    }

    .products .card {
        flex-grow: 1;
        min-width: 250px;
        max-width: 100%;
    }

    .products .card-image img {
        width: 100%;
    }
}

@media (max-width: 450px) {
    .stack {
        padding: 40px 20px;
    }

    .products, .stack, .faq {
        margin-bottom: 80px;
    }
}