/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(7, 26, 18, 0.92) 0%,
        rgba(12, 46, 31, 0.84) 35%,
        rgba(20, 67, 46, 0.72) 65%,
        rgba(61, 139, 122, 0.60) 100%
    );
    z-index: 1;
}

/* Subtle grain texture */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: var(--space-3xl) 0;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    padding: var(--space-sm) var(--space-md);
    border: 1px solid rgba(212, 149, 108, 0.35);
    border-radius: 100px;
    background: rgba(212, 149, 108, 0.1);
    margin-bottom: var(--space-lg);
}

.hero h1 {
    color: var(--color-text-inverse);
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.01em;
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    max-width: 640px;
    margin-bottom: var(--space-xl);
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat .stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat .stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }

    .hero-content {
        padding: var(--space-2xl) 0;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        text-align: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-lg);
    }
}
