.products-hero {
    padding: 120px 8% 80px;
    text-align: center;
    background: radial-gradient(
        circle at top,
        rgba(13,110,253,0.25),
        transparent 70%
    );
}

.products-hero h1 {
    font-size: 48px;
    color: #eaf0ff;
    margin-bottom: 15px;
}

.products-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    color: #a1adc4;
}

.products-list {
    padding: 80px 8%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}


.product-block {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 26px 32px;
    border-radius: 16px;
    text-decoration: none;

    background: linear-gradient(
        135deg,
        rgba(13,110,253,0.12),
        rgba(13,110,253,0.04)
    );

    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.product-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0.15),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-block:hover::before {
    opacity: 1;
}

.product-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(13,110,253,0.35);
}

.product-left {
    display: flex;
    align-items: center;
    gap: 26px;
}

.product-left img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.6));
}

.product-info h3 {
    font-size: 26px;
    color: #eaf0ff;
    margin-bottom: 6px;
}

.product-info p {
    color: #a1adc4;
    max-width: 480px;
    margin-bottom: 10px;
}

.product-info span {
    color: #0d6efd;
    font-weight: 600;
    font-size: 17px;
}

i {
    font-size: 30px;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.product-block:hover .product-arrow {
    transform: translateX(6px);
    color: #0d6efd;
}


@media (max-width: 900px) {
    .product-block {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .product-left {
        flex-direction: column;
    }

    .product-arrow {
        display: none;
    }
}


.products-cta {
    padding: 80px 8%;
    text-align: center;
}

.products-cta h2 {
    color: #eaf0ff;
    font-size: 32px;
    margin-bottom: 10px;
}

.products-cta p {
    color: #a1adc4;
    margin-bottom: 25px;
}

.btn-primary {
    padding: 12px 24px;
    background: linear-gradient(90deg, #0d6efd, #13189b);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(13,110,253,0.4);
}

.btn-primary:hover{
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(13,110,253,0.6);
}