/* Minimal clean UI inspired by screenshots */
.ahllf-container {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    max-width: 1100px;
    margin: 20px auto;
    background: #f3f4ff;
    padding: 24px;
    border-radius: 16px
}

.ahllf-step {
    display: none
}

.ahllf-step.active {
    display: block
}

.grid {
    display: grid;
    gap: 16px;
    margin: 14px 0
}

.grid.two {
    grid-template-columns: repeat(2, 1fr)
}

.grid.three {
    grid-template-columns: repeat(3, 1fr)
}

label {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    color: #222
}

input,
select,
textarea {
    border: 1px solid #d7d7f7;
    border-radius: 24px;
    padding: 14px 16px;
    background: white;
    outline: none
}

textarea {
    min-height: 140px
}

fieldset.visa {
    border: 0;
    padding: 0;
    margin: 0
}

fieldset.visa legend {
    font-weight: 700;
    margin-bottom: 8px
}

.actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 16px
}

.actions .prev,
.actions .next,
.actions .pay {
    background: #3163ff;
    color: white;
    border: 0;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer
}

.actions .prev {
    background: #98a2ff
}

.ahllf-stepper {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 10px
}

.ahllf-stepper .dot {
    position: relative;
    padding: 10px 14px;
    border-bottom: 3px solid #cfd3ff
}

.ahllf-stepper .dot.active {
    border-color: #4a5cff;
    color: #1c1e4a
}

.ahllf-stepper .dot.done {
    border-color: #7aa2ff;
    color: #1c1e4a
}

.terms-box {
    background: #fff;
    border-radius: 16px;
    padding: 16px
}

.fee-box {
    background: #eef1ff;
    padding: 16px;
    border-radius: 16px;
    text-align: center;
    margin-top: 12px
}

@media (max-width: 900px) {

    .grid.two,
    .grid.three {
        grid-template-columns: 1fr
    }
}