/* ============================
      MODULE 4 — HOW IT WORKS
   ============================ */

.how-wrapper {
    padding: 40px 20px 40px;
    text-align: center;
    position: relative;
    background: #ffffff;
}

.how-container {
    max-width: 1300px;
    margin: auto;
}

.how-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.how-step {
    background: #f7f9ff;
    padding: 40px 30px;
    border-radius: 18px;
    box-shadow: 0px 10px 26px rgba(0,0,0,0.08);
    transition: .25s;
}

.how-step:hover {
    transform: translateY(-6px);
    box-shadow: 0px 16px 30px rgba(0,0,0,0.12);
}

.how-icon {
    font-size: 50px;
    margin-bottom: 18px;
}

.how-step h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}