.avb-wrapper.avb-multistep {
    max-width: 720px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #d1d5db;
    box-shadow: 0 10px 30px rgba(15,23,42,0.08);
    color: #000000 !important;
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.avb-header h2 {
    margin: 0 0 10px;
    font-size: 1.8rem;
    color: #111827;
    font-weight: 700;
}

.avb-intro {
    margin-bottom: 20px;
    font-size: 0.92rem;
    color: #111827;
}

/* Steps */
.avb-steps {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}

.avb-step-indicator {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    color: #111827;
    font-size: 0.82rem;
    transition: 0.18s;
}

.avb-step-indicator.active {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(37,99,235,0.35);
}

.avb-step-number {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: #111827;
}

.avb-step-indicator.active .avb-step-number {
    background: rgba(255,255,255,0.2);
    color: #ffffff;
}

.avb-step-label {
    font-weight: 600;
}

/* Form */
.avb-row {
    margin-bottom: 16px;
}

.avb-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.88rem;
    color: #000000 !important;
}

.avb-form label span {
    color: #b91c1c;
}

.avb-form input,
.avb-form textarea,
.avb-form select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    outline: none;
    font-size: 0.9rem;
    background: #ffffff;
    color: #000000 !important;
    box-sizing: border-box;
    transition: 0.18s;
}

.avb-form textarea {
    resize: vertical;
    min-height: 85px;
}

.avb-form input::placeholder,
.avb-form textarea::placeholder {
    color: #6b7280;
}

.avb-form input:focus,
.avb-form textarea:focus,
.avb-form select:focus {
    background: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37,99,235,0.25);
}

/* Helper text */
.avb-help {
    display: block;
    font-size: 0.78rem;
    margin-top: 4px;
    color: #4b5563;
}

/* Summary */
.avb-summary-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 16px;
    border: 1px solid #d1d5db;
}

.avb-summary-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.02rem;
    color: #111827;
}

.avb-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 12px;
    font-size: 0.86rem;
}

.avb-summary-grid strong {
    color: #000000 !important;
}

/* Buttons */
.avb-nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.avb-nav-btn,
.avb-submit {
    border: none;
    border-radius: 999px;
    padding: 9px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(15,23,42,0.15);
    transition: 0.18s;
}

.avb-nav-btn {
    background: #e5e7eb;
    color: #111827;
}

.avb-nav-btn:hover {
    background: #d1d5db;
    transform: translateY(-1px);
}

.avb-submit {
    background: #2563eb;
    color: #ffffff;
}

.avb-submit:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.avb-submit:active,
.avb-nav-btn:active {
    transform: scale(0.98);
    box-shadow: 0 5px 12px rgba(15,23,42,0.2);
}

/* Messages */
.avb-message {
    font-size: 0.86rem;
    min-height: 18px;
    color: #000000 !important;
}

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

.avb-message.avb-error {
    color: #b91c1c;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 600px) {
    .avb-wrapper.avb-multistep {
        padding: 22px 18px;
    }
    .avb-header h2 {
        font-size: 1.5rem;
    }
}


/* Force input text ultra black when user types */
.avb-form input,
.avb-form textarea,
.avb-form select {
    color: #000000 !important;
    background: #ffffff !important;
}

.avb-form input:focus,
.avb-form textarea:focus,
.avb-form select:focus {
    color: #000000 !important;
    background: #ffffff !important;
    border-color: #000000 !important;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.25) !important;
}
