/* Hero Section Modern UI Styles */

/* Gradient Text */
.text-gradient-primary {
    background: linear-gradient(45deg, #1fa2ff, #12d8fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Trust Badge */
.trust-badge .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Feature Pills */
.feature-pills .badge {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-pills .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* CTA Buttons */
.cta-section .btn {
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-section .btn-primary {
    background: linear-gradient(45deg, #1fa2ff, #12d8fa);
    border: none;
}

.cta-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 162, 255, 0.3);
}

.cta-section .btn-outline-primary {
    border: 2px solid #1fa2ff;
    color: #1fa2ff;
}

.cta-section .btn-outline-primary:hover {
    background: linear-gradient(45deg, #1fa2ff, #12d8fa);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 162, 255, 0.2);
}

/* Trust Indicators */
.trust-indicators {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Format Badges */
.format-badges .badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.format-badges .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    padding: 2rem;
}

.hero-image-wrapper .screen {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-image-wrapper .screen:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Floating Stats */
.floating-stats .stat-card {
    transition: all 0.3s ease;
}

.floating-stats .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }

    .trust-indicators {
        justify-content: center;
    }

    .floating-stats {
        display: none;
    }

    .hero-image-wrapper {
        padding: 1rem;
    }
}

/* Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-stats .stat-card {
    animation: float 3s ease-in-out infinite;
}

.floating-stats .stat-card:nth-child(2) {
    animation-delay: 1.5s;
}