.hero {
        position: relative;
        min-height: calc(100vh - 90px);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: #000000;
        margin-top: -2rem;
    }

    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;
    }

    .hero-gradient {
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        filter: blur(120px);
        opacity: 0.3;
        animation: float 20s ease-in-out infinite;
    }

    .gradient-1 {
        background: radial-gradient(circle, #1E73BE, transparent);
        top: 200px;
        left: -200px;
        animation-delay: 0s;
    }

    .gradient-2 {
        background: radial-gradient(circle, #00C2A0, transparent);
        bottom: -200px;
        right: -200px;
        animation-delay: 5s;
    }

    .gradient-3 {
        background: radial-gradient(circle, #8A4FFF, transparent);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation-delay: 10s;
    }

    @keyframes float {
        0%, 100% {
            transform: translate(0, 0) scale(1);
        }
        33% {
            transform: translate(50px, -50px) scale(1.1);
        }
        66% {
            transform: translate(-50px, 50px) scale(0.9);
        }
    }

    .hero-grid {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            linear-gradient(rgba(30, 115, 190, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(30, 115, 190, 0.03) 1px, transparent 1px);
        background-size: 50px 50px;
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 1400px;
        margin: 0 auto;
        padding: 2rem;
        text-align: center;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(30, 115, 190, 0.1);
        border: 1px solid rgba(30, 115, 190, 0.3);
        padding: 0.5rem 1.5rem;
        border-radius: 50px;
        margin-bottom: 2rem;
        animation: slideDown 1s ease-out;
    }

    .hero-badge-dot {
        width: 8px;
        height: 8px;
        background: #00C2A0;
        border-radius: 50%;
        animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% {
            opacity: 1;
            transform: scale(1);
        }
        50% {
            opacity: 0.5;
            transform: scale(1.2);
        }
    }

    .hero-badge-text {
        color: #E0E0E0;
        font-size: 0.9rem;
        font-weight: 500;
    }

    .hero-title {
        font-size: 4.5rem;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        animation: slideUp 1s ease-out 0.2s both;
    }

    .hero-title-gradient {
        background: linear-gradient(135deg, #FFFFFF 0%, #1E73BE 50%, #00C2A0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        background-size: 200% auto;
        animation: gradientShift 5s ease infinite;
    }

    @keyframes gradientShift {
        0%, 100% {
            background-position: 0% center;
        }
        50% {
            background-position: 100% center;
        }
    }

    .hero-subtitle {
        font-size: 1.3rem;
        color: #B0B0B0;
        max-width: 700px;
        margin: 0 auto 3rem;
        line-height: 1.6;
        animation: slideUp 1s ease-out 0.4s both;
    }

    .hero-cta {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        animation: slideUp 1s ease-out 0.6s both;
    }

    .btn-primary {
        background: linear-gradient(135deg, #1E73BE 0%, #1590D1 100%);
        color: #FFFFFF;
        padding: 1rem 2.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px rgba(30, 115, 190, 0.3);
        position: relative;
        overflow: hidden;
        border: none;
        cursor: pointer;
    }

    .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s;
    }

    .btn-primary:hover::before {
        left: 100%;
    }

    .btn-primary:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 15px 40px rgba(30, 115, 190, 0.5);
    }

    .btn-secondary {
        background: transparent;
        color: #FFFFFF;
        padding: 1rem 2.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        border: 2px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #1E73BE;
        transform: translateY(-3px);
    }

    .hero-stats {
        display: flex;
        gap: 4rem;
        justify-content: center;
        margin-top: 5rem;
        animation: slideUp 1s ease-out 0.8s both;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 3rem;
        font-weight: 700;
        background: linear-gradient(135deg, #1E73BE, #00C2A0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        color: #B0B0B0;
        font-size: 1rem;
        font-weight: 500;
    }

    .hero-scroll {
        position: absolute;
        bottom: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        animation: bounce 2s ease-in-out infinite;
    }

    .scroll-indicator {
        width: 30px;
        height: 50px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 25px;
        position: relative;
    }

    .scroll-indicator::before {
        content: '';
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 10px;
        background: #1E73BE;
        border-radius: 2px;
        animation: scrollDown 2s ease-in-out infinite;
    }

    @keyframes bounce {
        0%, 100% {
            transform: translateX(-50%) translateY(0);
        }
        50% {
            transform: translateX(-50%) translateY(-10px);
        }
    }

    @keyframes scrollDown {
        0% {
            top: 10px;
            opacity: 1;
        }
        100% {
            top: 30px;
            opacity: 0;
        }
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive Design */
    @media (max-width: 968px) {
        .hero {
            margin-top: 2rem;
        }

        .hero-title {
            font-size: 3rem;
        }

        .hero-subtitle {
            font-size: 1.1rem;
        }

        .hero-stats {
            gap: 2rem;
            flex-wrap: wrap;
        }

        .stat-number {
            font-size: 2.5rem;
        }
    }

    @media (max-width: 640px) {
        .hero {
            margin-top: 2rem;
        }

        .hero-title {
            font-size: 2.2rem;
        }

        .hero-subtitle {
            font-size: 1rem;
        }

        .hero-cta {
            flex-direction: column;
        }

        .btn-primary, .btn-secondary {
            width: 100%;
            text-align: center;
        }

        .hero-stats {
            gap: 1.5rem;
        }

        .stat-number {
            font-size: 2rem;
        }

        .stat-label {
            font-size: 0.9rem;
        }
    }