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

@media (min-width: 1024px) {

    /* HERO */
    .hero-inner {
        max-width: 1300px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 80px 0 80px;
    }

    .hero-text {
        width: 50%;
    }

    .hero-text h1 {
        font-size: 52px;
        line-height: 1.05;
    }

    .hero-text p {
        font-size: 20px;
    }

    .hero-image {
        position: relative;
        right: 0;
        top: -20px;
        width: 50%;
        display: flex;
        justify-content: flex-end;
    }

    .hero-image img {
        width: 460px;
        filter: drop-shadow(0 25px 40px rgba(0,0,0,0.2));
    }

    /* VALUE STRIP */
    .value-strip {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 100px;
        padding: 30px 0 50px 0;
        margin-top: -20px;
    }

    /* SECTIONS CENTERED */
    .section {
        text-align: center;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .section h2 {
        text-align: center;
        margin-bottom: 32px; /* added spacing */
    }

    /* CARDS */
    .cards {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }

}

/* ================= DESKTOP HERO DIVIDER FIX ================= */

@media (min-width: 1024px) {

    .hero-divider {
        position: relative;
        height: 100px;
        overflow: hidden;
        margin-top: -20px;
    }

    .hero-divider svg {
        width: 100%;
        height: 100%;
        display: block;
    }

}
