/*=================================
            Hero Section
==================================*/

.hero {
    background: var(--primary-light);
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 90px 8% 70px;
}

.hero-content {
    max-width: 560px;
}

.hero-kicker {
    display: inline-block;
    background: #dde9f6;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 999px;
    margin-bottom: 22px;
}

.hero-content h1 {
    font-size: 46px;
    color: var(--primary);
    margin-bottom: 22px;
    line-height: 1.3;
    font-weight: 800;
}

.hero-content p {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 520px;
}

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

.hero-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

    .hero-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/*=================================
            Stats Strip
==================================*/

.hero-stats {
    background: var(--primary);
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hero-stat {
    text-align: center;
    padding: 30px 10px;
    border-inline-start: 1px solid rgba(255,255,255,.12);
}

    .hero-stat:first-child {
        border-inline-start: none;
    }

    .hero-stat h3 {
        color: #fff;
        font-size: 30px;
        font-weight: 800;
        margin-bottom: 4px;
    }

    .hero-stat span {
        color: #cfd4ec;
        font-size: 14px;
    }

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 60px 6% 40px;
    }

    .hero-media {
        order: -1;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stat:nth-child(3) {
        border-inline-start: none;
    }
}
