.ghg-wrap {
    max-width: 980px;
    margin: 40px auto;
    padding: 0 14px;
}

.ghg-card {
    background: #fff;
    border: 1px solid #dfe3e8;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(16, 24, 40, 0.02);
}

.ghg-header {
    text-align: center;
    padding: 28px 20px 24px;
    font-size: 24px;
    font-weight: 800;
    color: #2e7d32;
    border-bottom: 1px solid #eaecf0;
}

.ghg-form {
    padding: 20px 34px 20px;
}

.ghg-step { display: none; }
.ghg-step.is-active { display: block; }

.ghg-progress {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: #e7ebef;
    margin: 8px 0 20px;
    overflow: hidden;
}
.ghg-progress span {
    display: block;
    height: 100%;
    background: #2e7d32;
    border-radius: 999px;
}

.ghg-form h2,
.ghg-success-screen h2 {
    font-size: 28px;
    line-height: 1.2;
    margin: 0 0 18px;
    color: #1d2939;
    font-weight: 700;
}

.ghg-form label {
    display: block;
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 8px;
    color: #101828;
    font-weight: 700;
}

.ghg-form input[type="text"],
.ghg-form input[type="email"],
.ghg-form input[type="number"],
.ghg-form select,
.ghg-form textarea {
    width: 100%;
    min-height: 42px;
    border: 1px solid #101828;
    border-radius: 2px;
    padding: 10px 14px;
    font-size: 16px;
    color: #101828;
    background: #fff;
    box-sizing: border-box;
}

.ghg-form textarea {
    min-height: 180px;
    resize: vertical;
}

.ghg-mt {
    margin-top: 16px;
}

.ghg-help {
    margin: -4px 0 18px;
    color: #667085;
    font-size: 15px;
}

.ghg-ruiten {
    display: grid;
    gap: 16px;
}

.ghg-ruit-item {
    border: 1px dashed #d0d5dd;
    border-radius: 16px;
    padding: 22px 16px 18px;
}

.ghg-ruit-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1d2939;
}

.ghg-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.ghg-grid-ruit {
    margin-bottom: 8px;
}

.ghg-input-unit {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ghg-input-unit span {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    min-height: 36px;
    border: 1px solid #d0d5dd;
    border-radius: 999px;
    color: #667085;
    font-weight: 600;
    background: #fff;
}

.ghg-upload-box,
.ghg-checkbox {
    border: 1px solid #d0d5dd;
    border-radius: 16px;
    padding: 16px;
    margin-top: 8px;
}

.ghg-upload-help {
    margin-top: 8px;
    color: #667085;
    font-size: 14px;
}

.ghg-checkbox {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 8px;
}

.ghg-checkbox input {
    margin-top: 4px;
    width: 18px;
    height: 18px;
}

.ghg-checkbox span {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    color: #101828;
}

.ghg-actions {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.ghg-actions-right {
    justify-content: flex-end;
}

.ghg-btn {
    appearance: none;
    border: 1px solid #ea4c89;
    border-radius: 2px;
    background: #fff;
    color: #ea4c89;
    font-size: 16px;
    line-height: 1;
    padding: 14px 18px;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.02s ease;
}

.ghg-btn:hover { opacity: .92; }
.ghg-btn:active { transform: translateY(1px); }

.ghg-btn-primary {
    background: #ea4c89;
    color: #fff;
}

.ghg-btn-delete {
    margin-top: 4px;
}

.ghg-notice {
    margin: 20px 34px 0;
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 600;
}

.ghg-notice.success {
    background: #ecfdf3;
    color: #027a48;
    border: 1px solid #abefc6;
}

.ghg-notice.error {
    background: #fef3f2;
    color: #b42318;
    border: 1px solid #fecdca;
}

.ghg-success-screen {
    padding: 48px 34px 54px;
    text-align: center;
}

.ghg-success-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 18px;
    border-radius: 999px;
    background: #ecfdf3;
    border: 1px solid #abefc6;
    color: #027a48;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 800;
}

.ghg-success-screen p {
    max-width: 620px;
    margin: 0 auto;
    color: #475467;
    font-size: 18px;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .ghg-form,
    .ghg-success-screen {
        padding: 20px 18px;
    }

    .ghg-form h2,
    .ghg-success-screen h2 {
        font-size: 22px;
    }

    .ghg-grid {
        grid-template-columns: 1fr;
    }

    .ghg-input-unit {
        gap: 8px;
    }

    .ghg-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ghg-btn {
        width: 100%;
    }

    .ghg-success-screen p {
        font-size: 16px;
    }
}
