.gradient-bg {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}
.card-hover {
    transition: all 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.text-gradient {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.btn-primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    transform: translateY(-2px);
}
.promo-banner {
    /* background: linear-gradient(135deg, #dc2626, #b91c1c); */
    position: relative;
    overflow: hidden;
}
.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/img/getx.webp') center/cover;
    opacity: 0.3;
}
.promo-content {
    position: relative;
    z-index: 1;
}
@media (max-width: 768px) {
    .promo-banner {
        min-height: 300px;
    }
}
