/* HERO */

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero-tag {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    margin-bottom: 24px;
    font-size: .9rem;
    letter-spacing: .5px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero p {
    color: #e5e7eb;
    font-size: 1.15rem;
    margin-bottom: 36px;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .intro {
        grid-template-columns:1fr;
    }

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 70px 0;
    }
}

@media (max-width: 600px) {

    .hero {
        min-height: 85vh;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

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