/* ============================================
   HERO COMPONENT - Main Hero Section
   ============================================ */

.hero-section {
    position: relative;
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero-content {
    animation: slideInFromLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hero badge (optional) */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
    color: var(--primary-800);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    border: 1px solid var(--primary-300);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: linear-gradient(135deg, var(--primary-200) 0%, var(--primary-300) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-badge i {
    font-size: 0.9em;
    opacity: 0.9;
}

/* Hero title */
.hero-title {
    font-size: clamp(var(--text-4xl), 6vw, var(--text-5xl));
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

/* Hero subtitle */
.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

/* Hero features grid (optional) */
.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    max-width: 900px;
}

/* Hero actions */
.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Animations */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .hero-section {
        padding: var(--space-2xl) 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }
}