/* ============================================ */
/* PREMIUM HERO SECTION STYLES                  */
/* Dark navy, single-column, centered layout    */
/* ============================================ */

.hero-premium {
    position: relative;
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: #fff;
    padding: 6rem 2rem 5rem;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
    min-height: min(calc(100vh - 72px), 720px);
    display: flex;
    align-items: center;
}

/* Decorative glow blobs */
.hero-glow-premium {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-glow-purple-premium {
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 60, 225, 0.25) 0%, rgba(6, 182, 212, 0.1) 40%, transparent 70%);
    filter: blur(60px);
}

.hero-glow-cyan-premium {
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 60%);
    filter: blur(60px);
}

/* Container: single column centered */
.hero-container-premium {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Content area */
.hero-content-premium {
    width: 100%;
    text-align: center;
}

/* Hide dashboard mockup — not part of the original design */
.hero-visual-premium {
    display: none;
}

/* Badge */
.hero-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(108, 60, 225, 0.25);
    border: 1px solid rgba(108, 60, 225, 0.4);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #c4b5fd !important;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Title */
.hero-title-premium {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
    color: #fff;
    /* Override any gradient text from old CSS */
    -webkit-text-fill-color: #fff;
    background: none;
    background-clip: unset;
    -webkit-background-clip: unset;
}

/* Subtitle — !important needed to override p{color:var(--gray-700)} from design system */
.hero-subtitle-premium {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8) !important;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* Feature chips */
.hero-features-premium {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-feature-premium {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-feature-premium i {
    color: #a78bfa;
    font-size: 0.85rem;
}

/* CTA buttons */
.hero-actions-premium {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.hero-cta-primary-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #6C3CE1;
    color: white;
    border: none;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(108, 60, 225, 0.4);
}

.hero-cta-primary-premium:hover {
    background: #7c4df1;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(108, 60, 225, 0.5);
    color: white;
    text-decoration: none;
}

/* Hide secondary CTA — original design had only one button */
.hero-cta-secondary-premium {
    display: none;
}

/* Stats row */
.il-hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
    color: #fff;
    width: 100%;
}

.il-stat {
    text-align: center;
}

.il-stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
}

.il-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.il-stat-divider {
    width: 1px;
    min-height: 40px;
    background: rgba(255, 255, 255, 0.2);
    align-self: stretch;
}

/* === OLD .hero-section-premium kept for backward compat === */
.hero-section-premium {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-premium {
        padding: 5rem 1.25rem 4rem;
        min-height: unset;
    }

    .hero-title-premium {
        font-size: 2rem;
    }

    .hero-subtitle-premium {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-cta-primary-premium {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
    }

    .il-hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title-premium {
        font-size: 1.75rem;
    }

    .il-stat-number {
        font-size: 1.4rem;
    }
}
