@media (max-width: 1100px) {
    .hero__rocket {
        display: none;
    }

    .header__flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .header__content {
        margin: 0 auto 50px;
        max-width: 80%;
    }

    .btn__flex {
        justify-content: center;
    }

    .awards__flex {
        justify-content: center;
    }

    .hero__link {
        width: 100%;
        max-width: 600px;
    }

    .hero__title {
        font-size: 40px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero__txt {
        margin-left: auto;
        margin-right: auto;
    }

    .features__wrapper {
        min-width: 90%;
        flex-direction: column;
        gap: 30px;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: -50px auto 50px;
        /* -50px to overlap image slightly, auto for centering, 50px bottom space */
    }

    .flex_cards {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .cards__item {
        margin: 0;
        width: 100%;
        max-width: none;
    }

    .phones__pane {
        width: 70%;
    }

    .phones__pane_section {
        margin-bottom: 0px;
    }

    .companions__wrapper {
        flex-direction: row;
        gap: 20px;
        flex-wrap: nowrap;
        padding: 0 10px;
    }

    .companion__card {
        width: 100%;
        padding: 30px 20px;
    }

    /* Fix potential overflow from features wrapper */
    .features__wrapper {
        min-width: 0;
        width: 90%;
        margin: -50px auto 50px;
    }

    /* Fix overflow from How it works cards */
    .cards__wrapper {
        flex-wrap: wrap;
        gap: 40px;
    }

    .card_image {
        transform: none !important;
        margin: 0 !important;
    }

    .how-it-works {
        display: none !important;
    }

    /* Phones App Section Fixes */
    .phones__app {
        padding-top: 40px;
    }

    .phones__flex {
        align-items: flex-end;
    }

    .phones__info {
        margin-top: 40px;
        padding-bottom: 80px;
        /* Space under button */
    }

    .phones__cut {
        transform: none;
        /* Reset desktop transform */
        margin-bottom: -10px;
        /* Fine tune to ensure it hits bottom if needed */
    }
}