/* ============================================
      HERO SECTION
      ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--purple-50) 0%, var(--white) 50%, var(--purple-100) 100%);
    overflow: hidden;
    padding-top: 72px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-300), var(--purple-500));
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.hero-particle:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-particle:nth-child(2) {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
    background: linear-gradient(135deg, var(--purple-400), var(--purple-600));
}

.hero-particle:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 10%;
    animation-delay: -10s;
    background: linear-gradient(135deg, var(--purple-200), var(--purple-400));
}

.hero-particle:nth-child(4) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 15%;
    animation-delay: -15s;
}

.hero-particle:nth-child(5) {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 30%;
    animation-delay: -8s;
    background: linear-gradient(135deg, var(--purple-300), var(--purple-500));
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(20px, 10px) scale(1.02);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: var(--shadow-purple-lg);
    animation: pulse-glow 3s infinite ease-in-out;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 10px 40px -10px rgba(124, 58, 237, 0.3);
    }

    50% {
        box-shadow: 0 20px 60px -10px rgba(124, 58, 237, 0.5);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: var(--purple-700);
    letter-spacing: 0.2em;
    margin-top: 0.25rem;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--purple-700);
    margin: 1.5rem 0 1rem;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.hero-desc strong {
    color: var(--purple-700);
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 2px solid var(--purple-200);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--purple-700);
    box-shadow: var(--shadow-sm);
}

.badge i {
    color: var(--purple-500);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--purple-500);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--purple-400);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--purple-500);
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

.scroll-text {
    font-size: 0.75rem;
    font-weight: 500;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

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

    60% {
        transform: translateY(-5px);
    }
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

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