/* --- HERO SECTION STYLES --- */
.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: #e5e7eb;
    margin-bottom: 32px;
    font-weight: 500;
}
.pill-icon { color: var(--primary-orange); }

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 800;
    margin: 0 0 24px 0;
    letter-spacing: -2px;
}
.text-orange { color: var(--primary-orange); }

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-grey);
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto 48px auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 80px;
}

.btn-hero-primary {
    background-color: var(--primary-orange);
    color: #0c0b09;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s;
}
.btn-hero-primary:hover { transform: scale(1.05); }

.btn-hero-outline {
    background: transparent;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: background 0.2s;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.05); }

.hero-stats {
    display: flex;
    gap: 60px;
    margin-top: auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-grey);
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .hero-stats { gap: 30px; flex-wrap: wrap; justify-content: center; }
}
