.logo-mark {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: #e0dfdf;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
}
.logo-mark img {
    width: 60px;
}
.header-titles {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.plan-title {
    font-size: 15px;
    color: #475569;
}

.stepper {
    display: flex;
    justify-content: center;
    gap: 12px;
    list-style: none;
    margin: 10px auto 24px;
    flex-wrap: wrap;
    padding: 0;
}

.stepper li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 13px;
}

.stepper li span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cbd5e1;
}

.stepper li.current,
.stepper li.done {
    color: #1e293b;
    font-weight: 600;
}

.stepper li.current span,
.stepper li.done span {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

.field-error,
.flash-error {
    color: #b91c1c;
    background: #fef2f2;
    border: 1px solid #fecaca;
    padding: 10px 12px;
    border-radius: 10px;
    margin: 0 0 16px;
    font-size: 13px;
}

.flash-ok {
    color: #166534;
    background: #dcfce7;
    border: 1px solid #86efac;
    padding: 10px 12px;
    border-radius: 10px;
    margin: 0 auto 16px;
    max-width: 950px;
    font-weight: 700;
}

.otp-boxes {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.otp-input {
    width: 54px;
    height: 54px;
    text-align: center;
    font-size: 22px;
    border: 1px solid #b4bdc8;
    border-radius: 12px;
}

.otp-timer {
    margin: 16px auto;
    width: fit-content;
    padding: 6px 16px;
    border: 1px solid #93c5fd;
    border-radius: 999px;
    color: #1d4ed8;
}

.resend-form,
.edit-mobile {
    margin-top: 14px;
    text-align: center;
}

.edit-mobile a {
    color: #2563eb;
    text-decoration: none;
}

.dev-otp {
    background: #fff7ed;
    border: 1px dashed #fdba74;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 16px;
}

.form-section {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.form-section.is-disabled {
    opacity: 0.55;
    pointer-events: none;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.done-badge {
    display: none;
    background: #dcfce7;
    color: #166534;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
}

.done-badge.visible,
.form-section.is-complete .done-badge {
    display: inline-flex;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

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

.full-span {
    grid-column: 1 / -1;
}

.announcement-title {
    text-align: center;
    margin-bottom: 20px;
}

.success-message {
    font-weight: 700;
    color: #15803d;
}

@media (max-width: 900px) {
    .form-grid,
    .form-grid.two {
        grid-template-columns: 1fr;
    }
    .site-header {
        height: auto;
        padding: 20px;
        flex-direction: column;
    }
    .header-brand {
        position: static;
    }
}
