/**
 * Simple Hero Section
 * Clean hero with typing animation
 */

.hero-simple {
    position: relative;
    padding: 20px 20px 70px;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(135deg,
        rgba(59, 130, 246, 0.08) 0%,
        rgba(147, 51, 234, 0.08) 50%,
        rgba(236, 72, 153, 0.08) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(147, 51, 234, 0.15));
    border: 1.5px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: #60a5fa;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    animation: fadeInDown 0.6s ease, pulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    letter-spacing: 0.5px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
        transform: scale(1.02);
    }
}

.hero-badge svg {
    animation: rotate 4s linear infinite;
    filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.6));
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 0 0 25px 0;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 40%, #ec4899 80%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-height: 4.5rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-shadow: 0 0 40px rgba(96, 165, 250, 0.3);
    animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title.blink {
    animation: textBlink 1.5s ease-in-out infinite;
}

/* Description */
.hero-description {
    font-size: 1.35rem;
    color: var(--text-muted, #94a3b8);
    margin: 0;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto;
    font-weight: 500;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-description.blink {
    animation: textBlink 1.5s ease-in-out infinite;
}

@keyframes textBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-simple {
        padding: 15px 20px 55px;
        border-radius: 16px;
    }

    .hero-badge {
        padding: 6px 16px;
        font-size: 13px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 2.25rem;
        min-height: 3rem;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-simple {
        padding: 12px 15px 45px;
    }

    .hero-badge {
        padding: 5px 14px;
        font-size: 12px;
        gap: 6px;
    }

    .hero-badge svg {
        width: 14px;
        height: 14px;
    }

    .hero-title {
        font-size: 1.85rem;
        min-height: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}


