.platz-page {
    max-width: 860px;
    margin: 0 auto;
}

.platz-card {
    padding: 44px;
    border-radius: 28px;
}

.platz-form-head {
    text-align: center;
    margin-bottom: 34px;
}

.platz-form-head h2 {
    margin-bottom: 10px;
}

.platz-form {
    width: 100%;
}

.progress-box {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 34px;
}

.progress-step {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #f4f4f0;
    border: 2px solid #d9d6ca;
    color: #6b6658;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.progress-step.active {
    background: #7fa46b;
    border-color: #7fa46b;
    color: #fff;
}

.wizard-step {
    display: none !important;
}

.wizard-step.active {
    display: block !important;
    padding: 34px;
    border-radius: 26px;
    background: #fffdf8;
    border: 2px solid #e4ddcd;
    box-shadow: 0 14px 35px rgba(55, 45, 30, 0.08);
}

.wizard-step h3 {
    margin: 0 0 8px;
    color: #3d382e;
    font-size: 1.45rem;
}

.step-description {
    margin: 0 0 28px;
    color: #746d5f;
    line-height: 1.6;
}

.form-row {
    margin-bottom: 22px;
}

.form-row label {
    display: block;
    margin-bottom: 8px;
    color: #3d382e;
    font-weight: 700;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 15px 16px;
    border-radius: 16px;
    border: 2px solid #ddd5c7;
    background: #fff;
    color: #2b2b2b;
    font-size: 15px;
    outline: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: #7fa46b;
    box-shadow: 0 0 0 4px rgba(127, 164, 107, 0.18);
}

.form-row textarea {
    min-height: 125px;
    resize: vertical;
}

.form-row small {
    display: block;
    margin-top: 8px;
    color: #7a7468;
}

.kind-card {
    margin-top: 22px;
    padding: 24px;
    border-radius: 22px;
    background: #f8f4eb;
    border: 2px solid #e4ddcd;
}

.kind-card h4 {
    margin: 0 0 18px;
    color: #3d382e;
}

.checkbox-label,
.privacy-check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    margin-bottom: 22px;
    border-radius: 18px;
    background: #f8f4eb;
    border: 2px solid #e4ddcd;
    color: #3d382e;
}

.checkbox-label input,
.privacy-check input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.privacy-check a {
    color: #6f965c;
    font-weight: 800;
    text-decoration: none;
}

.privacy-check a:hover {
    text-decoration: underline;
}

.step-buttons {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 32px;
}

.step-buttons-right {
    justify-content: flex-end;
}

.step-buttons .btn {
    min-width: 150px;
}

.summary-box {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 26px;
}

.summary-item {
    padding: 18px;
    border-radius: 18px;
    background: #f8f4eb;
    border: 2px solid #e4ddcd;
    color: #3d382e;
    line-height: 1.6;
}

.notice-ok,
.notice-err {
    padding: 16px 18px;
    border-radius: 16px;
    margin-bottom: 25px;
    font-weight: 700;
}

.notice-ok {
    background: #eef8ed;
    border: 2px solid #a8d6a5;
    color: #2f6d32;
}

.notice-err {
    background: #fff0f0;
    border: 2px solid #e1a2a2;
    color: #8b2d2d;
}

.platz-info-box {
    margin-top: 30px;
}

.platz-info-text {
    padding: 24px;
    border-radius: 22px;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.18);
}

.platz-info-text strong {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
}

.platz-info-text span {
    display: inline-block;
    margin-top: 12px;
    opacity: 0.8;
    font-size: 14px;
}

@media (max-width: 768px) {
    .platz-card {
        padding: 24px;
    }

    .wizard-step.active {
        padding: 24px;
    }

    .progress-step {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .step-buttons {
        flex-direction: column;
    }

    .step-buttons .btn {
        width: 100%;
    }
}