/* ===== FEATURE GRID ===== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 100%;
    position: relative;
    z-index: 10;
}

.feature-wrap {
    margin-top: 0;
    /* ❗ reset */
    position: relative;
    z-index: 3;

    transform: translateY(50px);
    /* 🔥 floating tanpa ganggu flow */
}
