/* ==================================================
   HERO
================================================== */

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

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-subtitle {
    display: inline-block;

    margin-bottom: 16px;

    font-size: var(--font-size-md);
    font-weight: var(--font-weight-medium);

    color: var(--text-light);
}

.hero h1 {
    margin-bottom: 24px;

    font-size: clamp(2.8rem, 8vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero h1 span {
    display: inline;
}

.hero-text {
    max-width: 600px;

    margin-bottom: 40px;

    font-size: var(--font-size-md);
    line-height: 1.8;

    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;

    margin-bottom: 16px;
}

.hero-image {
    width: 100%;
    height: 420px;

    border-radius: var(--radius-lg);

    background-image: url("/assets/img/hero/np-hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;

    box-shadow: var(--shadow-lg);
}


/* ==================================================
   HERO FEATURES
================================================== */

.hero-features {
    margin-top: var(--space-xl);
}

.hero-features-grid {
    display: grid;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.feature-item h3 {
    margin-bottom: 6px;

    font-size: 1.2rem;
}

.feature-item p {
    margin: 0;

    color: var(--text-light);
}


/* ==================================================
   DESKTOP
================================================== */

@media (min-width: 992px) {

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

    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 80px;
    }

    .hero h1 {
        font-size: clamp(4rem, 5vw, 5.5rem);
    }

    .hero-image {
        height: 620px;
    }

    .hero-features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }

}