.be-wrap {   
    font-family: inherit;
/*  background: #fff;
    border-radius: 10px;
    padding: 28px;
	margin: 0 auto;
	max-width: 640px;
    box-shadow: 0 2px 18px rgba(0,0,0,0.08); */
}

.be-progress {
    margin-bottom: 24px;
}
.be-progress-bar {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.be-progress-bar::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e2e2e2;
    z-index: 0;
}
.be-step-dot {
    position: relative;
    z-index: 1;
    font-size: 12px;
    color: #999;
    text-align: center;
    flex: 1;
}
.be-step-dot::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    margin: 0 auto 6px;
    border-radius: 50%;
    background: #e2e2e2;
}
.be-step-dot.active,
.be-step-dot.done {
    color: #ffffff;
    font-weight: 600;
}
.be-step-dot.active::before,
.be-step-dot.done::before {
    background: #734725 !important;
}

.be-step h3 {
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 30px !important;
    color: #ffffff !important;
}

.be-field {
    margin-bottom: 16px;
}
.be-field label {
    display: block;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #FFFAEA;
}
.be-field input[type="text"],
.be-field input[type="tel"],
.be-field input[type="email"],
.be-field input[type="number"],
.be-field select,
.be-field textarea {
    width: 100%;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 16px;
    box-sizing: border-box;
    background-color: #fff;
}
.be-field textarea { resize: vertical; }

.be-checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    margin-bottom: 20px;
}
.be-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    margin-bottom: 10px;
	color: #ffffff !important;
}
.be-checkbox input { width: auto; }

.be-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
}
.be-actions button {
    flex: 1;
    padding: 12px 16px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
.be-next, .be-submit {
   	background: #734725 !important;
    border-radius: 20px !important;
    border: 0 !important;
}
.be-next:hover, .be-submit:hover { background: #d68a4e !important; }
.be-prev {
    background: #734725 !important;
    border-radius: 20px !important;
    border: 0 !important;
}
.be-prev:hover { background: #d68a4e !important; }

.be-result-box {
    text-align: center;
    padding: 20px 10px;
}
.be-result-amount {
    font-size: 30px;
    font-weight: 700;
    color: #d68a4e;
    margin: 26px 0;
}
.be-disclaimer {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.5;
    margin: 0 auto 20px;
}
.be-restart {
    background: #f1f1f1;
    border: none;
    padding: 10px 20px;
    border-radius: 20px !important;
    cursor: pointer;
    font-weight: 600;
}

.be-error {
    background: #fee2e2;
    color: #991b1b;
    padding: 10px 14px;
    border-radius: 6px;
    margin-top: 14px;
    font-size: 13px;
}
.be-loading {
    text-align: center;
    color: #666;
    margin-top: 14px;
    font-size: 13px;
}

@media (max-width: 480px) {
    .be-checkbox-grid { grid-template-columns: 1fr; }
    .be-wrap { padding: 18px; }
}
