/* Hero Section Component */
.hero-section {
    padding: 64px 0;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f1f5f9 100%);
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(22, 163, 74, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    margin: 0 0 24px 0;
    letter-spacing: -0.025em;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: #374151;
    margin: 0 0 16px 0;
}

.hero-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #6b7280;
    margin: 0 0 32px 0;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    min-height: 48px;
    white-space: nowrap;
}

.hero-cta-button:not(.hero-cta-button--secondary) {
    background: #16A34A;
    color: #ffffff;
    border: 2px solid #16A34A;
}

.hero-cta-button:not(.hero-cta-button--secondary):hover {
    background: #15803d;
    border-color: #15803d;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.hero-cta-button--secondary {
    background: #ffffff;
    color: #374151;
    border: 2px solid #d1d5db;
}

.hero-cta-button--secondary:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 48px 0;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-cta-button {
        width: 100%;
        max-width: 280px;
    }
}

/* Large screens */
@media (min-width: 1024px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 40px;
        margin-bottom: 32px;
    }
    
    .hero-subtitle {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 18px;
        margin-bottom: 40px;
    }
} 