/* Blog Hero Section */
.blog-hero {
    position: relative;
    padding: calc(80px + var(--spacing-3xl)) 0 var(--spacing-3xl);
    background: var(--hero-gradient);
    overflow: hidden;
}

.blog-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-gradient-orb {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(68, 215, 182, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloat 20s ease-in-out infinite;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(31, 58, 101, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(68, 215, 182, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(31, 58, 101, 0.03) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    animation: float 30s ease-in-out infinite;
}

.hero-animated-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.animated-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(68, 215, 182, 0.2), transparent);
    height: 1px;
    animation: lineMove 8s linear infinite;
}

.animated-line:nth-child(1) {
    top: 20%;
    width: 200px;
    animation-delay: 0s;
}

.animated-line:nth-child(2) {
    top: 60%;
    width: 150px;
    animation-delay: 2s;
}

.animated-line:nth-child(3) {
    top: 80%;
    width: 300px;
    animation-delay: 4s;
}

.blog-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-card);
}

.hero-badge i {
    font-size: 1rem;
}

.blog-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
}

.blog-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
}

.blog-hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-2xl);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: var(--font-weight-medium);
}
