@media screen and (max-width: 768px) {

    /* ubah layout jadi stack vertikal */
    .home {
        grid-template-columns: 1fr;
        row-gap: 2rem;
        text-align: center;
        position: relative;
    }

    /* pastikan data di atas */
    .home__data {
        order: 1;
        position: relative;
        z-index: 10;
    }

    /* social wrapper aman di atas gambar */
    .social-wrapper {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 15px;
        position: relative;
        z-index: 15;   /* 🔥 penting supaya tidak ketutup SVG */
    }

    /* kalau masih pakai home__social */
    .home__social {
        position: relative;
        z-index: 15;
    }

    /* gambar turun ke bawah */
    .home__img {
        order: 2;
        justify-self: center;
        margin-top: 10px;
        position: relative;
        z-index: 1; /* 🔥 di belakang text */
    }

    /* kecilkan SVG */
    .home__blob {
        width: 260px;
        height: auto;
    }

    /* tombol lebih rapat di mobile */
    .social-btn {
        font-size: 13px;
        padding: 8px 12px;
    }
}