.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 44px;
    padding: .55rem 1rem;
    border-radius: 10px;
    border: 1px solid #d0d7e2;
    background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
    color: #1f2a37;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(17, 24, 39, 0.06);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background-color .15s ease;
}

.btn-cta:hover {
    transform: translateY(-1px);
    border-color: #b7c3d4;
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.10);
    color: #111827;
}

.btn-cta-demo {
    background: linear-gradient(180deg, #4b5563 0%, #374151 100%);
    border-color: #374151;
    color: #fff;
    font-weight: 700;
}

.btn-cta-demo:hover {
    background: linear-gradient(180deg, #5b6676 0%, #465163 100%);
    color: #fff;
    border-color: #2f3a4b;
}

.product-hero {
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
}

.media-link img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.media-link:hover img {
    transform: scale(1.01);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
