/* DISG Test Container */
.disg-test-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Erfolgsmeldung */
.disg-success-message {
    padding: 20px;
    background: #d4edda;
    color: #155724;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
}

/* Formular-Sektionen */
.disg-form {
    max-width: 800px;
    margin: 2em auto;
    padding: 2em;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.disg-form h2 {
    color: #333;
    margin-bottom: 1.5em;
}

.disg-form-section {
    margin-bottom: 2em;
    padding: 1.5em;
    background: #f9f9f9;
    border-radius: 4px;
}

.disg-form-section h3 {
    color: #444;
    margin-bottom: 1em;
}

.disg-form label {
    display: block;
    margin-bottom: 0.5em;
    color: #555;
}

.disg-form input[type="text"],
.disg-form input[type="email"],
.disg-form select {
    width: 100%;
    padding: 0.8em;
    margin-bottom: 1em;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.disg-form .rating-scale {
    display: flex;
    justify-content: space-between;
    margin: 1em 0;
}

.disg-form .rating-scale label {
    flex: 1;
    text-align: center;
    padding: 0.5em;
    cursor: pointer;
}

.disg-form .rating-scale input[type="radio"] {
    margin-right: 0.5em;
}

.disg-form .privacy-policy {
    margin: 2em 0;
    padding: 1em;
    background: #f5f5f5;
    border-radius: 4px;
}

.disg-form .submit-button {
    background: #d6b36b;
    color: #222;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    padding: 1rem 2.2rem;
    font-size: 1.15rem;
    box-shadow: 0 2px 8px rgba(214,179,107,0.12);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    text-transform: none;
}

.disg-form .submit-button:hover {
    background: #bfa05c;
    color: #fff;
    box-shadow: 0 4px 16px rgba(214,179,107,0.18);
}

.disg-form .error {
    border-color: #dc3232;
}

.disg-form .error-message {
    color: #dc3232;
    font-size: 0.9em;
    margin-top: -0.5em;
    margin-bottom: 1em;
}

/* Formular-Zeilen */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-row .form-group {
    flex: 1;
}

/* Formular-Gruppen */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

/* Bewertungsskala */
.disg-question {
    margin-bottom: 25px;
    padding: 15px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.question-text {
    margin: 0 0 15px 0;
    font-weight: 500;
    color: #333;
}

.rating-scale {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 400px;
}

.rating-scale label {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.rating-scale input[type="radio"] {
    margin-bottom: 5px;
}

.rating-label {
    font-size: 12px;
    color: #666;
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
}

/* Submit Button */
.disg-submit-button {
    display: block;
    width: 100%;
    padding: 12px;
    background: #d6b36b;
    color: #222;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
}

.disg-submit-button:hover {
    background: #bfa05c;
    color: #fff;
}

/* Anweisungen */
.disg-instructions {
    margin-bottom: 20px;
    padding: 10px 15px;
    background: #e9ecef;
    border-radius: 4px;
    color: #495057;
    font-size: 14px;
}

/* Responsive Design */
@media screen and (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .rating-scale {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .rating-scale label {
        flex: 1;
        min-width: 60px;
    }
}

/* Modernes Greator-Design für den neuen Test-Flow */
.disg-modern-container {
    max-width: 900px;
    margin: 40px auto;
    background: #f8fafc;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 0 0 40px 0;
    font-family: 'Inter', Arial, sans-serif;
}
.disg-modern-header {
    text-align: center;
    padding: 48px 24px 24px 24px;
}
.disg-modern-header h1 {
    font-size: 2.6em;
    font-weight: 800;
    color: #222;
    margin-bottom: 0.2em;
}
.disg-modern-subtitle {
    color: #0073aa;
    font-weight: 600;
    font-size: 1.2em;
    margin-bottom: 0.5em;
}
.disg-modern-desc {
    color: #444;
    font-size: 1.1em;
    margin-bottom: 1.5em;
}
.disg-modern-start-btn, .disg-submit-button {
    background: #d6b36b;
    color: #222;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    padding: 1rem 2.2rem;
    font-size: 1.15rem;
    box-shadow: 0 2px 8px rgba(214,179,107,0.12);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    text-transform: none;
}
.disg-modern-start-btn:hover, .disg-submit-button:hover {
    background: #bfa05c;
    color: #fff;
    box-shadow: 0 4px 16px rgba(214,179,107,0.18);
}
.disg-modern-steps {
    text-align: center;
    padding: 24px;
}
.disg-modern-steps ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    display: flex;
    justify-content: center;
    gap: 32px;
}
.disg-modern-steps li {
    background: #e3f6ff;
    color: #0073aa;
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1em;
}
.disg-modern-model {
    padding: 32px 24px 0 24px;
    text-align: center;
}
.disg-modern-model h2 {
    font-size: 1.5em;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.5em;
}
.disg-modern-model span {
    color: #0073aa;
    font-size: 1em;
    font-weight: 600;
}
.disg-modern-types {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 24px;
}
.disg-type {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 24px 20px;
    min-width: 200px;
    max-width: 220px;
    flex: 1 1 200px;
}
.disg-type h3 {
    color: #0073aa;
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 0.7em;
}
.disg-type ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.disg-type li {
    color: #444;
    font-size: 0.98em;
    margin-bottom: 0.5em;
}
.disg-modern-motivation {
    text-align: center;
    padding: 32px 24px 0 24px;
}
.disg-modern-motivation h2 {
    font-size: 1.3em;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.5em;
}
.disg-modern-motivation p {
    color: #444;
    font-size: 1.05em;
    margin-bottom: 1.5em;
}
@media (max-width: 900px) {
    .disg-modern-types { flex-direction: column; align-items: center; }
    .disg-type { max-width: 100%; min-width: 0; width: 100%; }
}

/* DISG-Typen als Karten mit Animationen */
.animated-disg-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    justify-content: center;
    margin-top: 32px;
}
.disg-type-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 32px 24px 24px 24px;
    min-width: 220px;
    max-width: 260px;
    flex: 1 1 220px;
    text-align: center;
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition: box-shadow 0.2s, transform 0.4s, opacity 0.7s;
    cursor: pointer;
    position: relative;
}
.disg-type-appear {
    opacity: 1 !important;
    transform: translateY(0) scale(1);
}
.disg-type-card:hover, .disg-type-hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
    transform: translateY(-8px) scale(1.04);
    z-index: 2;
}
.disg-type-icon {
    margin-bottom: 18px;
    animation: popIn 0.8s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes popIn {
    0% { transform: scale(0.7); opacity: 0; }
    80% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); }
}
.disg-type-card h3 {
    font-size: 1.25em;
    font-weight: 700;
    margin-bottom: 0.7em;
    letter-spacing: 1px;
}
.disg-type-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.disg-type-list li {
    font-size: 1.05em;
    color: #444;
    margin-bottom: 0.5em;
    opacity: 0;
    transition: opacity 0.7s;
}
.disg-type-appear .disg-type-list li {
    opacity: 1;
}
.disg-dominant .disg-type-icon svg circle { fill: #E74C3C; }
.disg-initiativ .disg-type-icon svg circle { fill: #F7CA18; }
.disg-stetig .disg-type-icon svg circle { fill: #27AE60; }
.disg-gewissenhaft .disg-type-icon svg circle { fill: #3498DB; }
.disg-dominant h3 { color: #E74C3C; }
.disg-initiativ h3 { color: #F7CA18; }
.disg-stetig h3 { color: #27AE60; }
.disg-gewissenhaft h3 { color: #3498DB; }
@media (max-width: 900px) {
    .animated-disg-types { grid-template-columns: 1fr; }
    .disg-type-card { max-width: 100%; min-width: 0; width: 100%; }
}

/* Schritte als Blöcke */
.disg-modern-steps-row {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.disg-step-block {
    background: #e3f6ff;
    color: #0073aa;
    padding: 14px 28px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-bottom: 8px;
}
@media (max-width: 600px) {
    .disg-modern-steps-row { flex-direction: column; align-items: center; }
    .disg-step-block { width: 100%; text-align: center; }
}

/* Edles, hochwertiges persönliches Datenformular */
.disg-modern-personal-form {
    margin-top: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 8px 40px rgba(214,179,107,0.18);
    padding: 38px 32px 32px 32px;
    font-family: 'Inter', 'Lato', 'Open Sans', Arial, sans-serif;
    border: 1.5px solid #f3e6c7;
}
.disg-modern-personal-form .disg-modern-form-row {
    margin-bottom: 26px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.disg-modern-label {
    font-size: 1.13em;
    color: #d6b36b;
    margin-bottom: 3px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-shadow: 0 1px 0 #fffbe6;
}
.disg-modern-input-group {
    display: flex;
    gap: 12px;
}
.disg-modern-input-group input {
    flex: 1 1 100px;
}
.disg-modern-personal-form input[type="text"],
.disg-modern-personal-form input[type="email"],
.disg-modern-personal-form select {
    width: 100%;
    padding: 15px 16px;
    border-radius: 12px;
    border: 1.5px solid #d6b36b;
    background: #fcf8f3;
    font-size: 1.09em;
    margin-bottom: 0;
    transition: border 0.2s, box-shadow 0.2s;
    min-height: 48px;
    box-sizing: border-box;
    color: #222;
    font-weight: 500;
    box-shadow: 0 2px 12px rgba(214,179,107,0.07);
}
.disg-modern-personal-form input[type="text"]::placeholder,
.disg-modern-personal-form input[type="email"]::placeholder {
    color: #e2cfa0;
    opacity: 1;
    font-style: italic;
    font-weight: 400;
}
.disg-modern-personal-form input[type="text"]:focus,
.disg-modern-personal-form input[type="email"]:focus,
.disg-modern-personal-form select:focus {
    border-color: #bfa05c;
    outline: none;
    box-shadow: 0 0 0 3px #f3e6c7;
    background: #fff;
}
.disg-modern-personal-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23d6b36b" height="18" viewBox="0 0 20 20" width="18" xmlns="http://www.w3.org/2000/svg"><path d="M7.293 7.293a1 1 0 011.414 0L10 8.586l1.293-1.293a1 1 0 111.414 1.414l-2 2a1 1 0 01-1.414 0l-2-2a1 1 0 010-1.414z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 18px 18px;
}
.disg-modern-personal-form button[type="submit"] {
    margin-top: 22px;
    width: 100%;
    padding: 18px 0;
    font-size: 1.15em;
    border-radius: 12px;
    background: #d6b36b;
    color: #222;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, color 0.2s;
    box-shadow: 0 4px 18px rgba(214,179,107,0.13);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.disg-modern-personal-form button[type="submit"]:hover {
    background: #bfa05c;
    color: #fff;
    box-shadow: 0 8px 32px rgba(214,179,107,0.18);
}
@media (max-width: 600px) {
    .disg-modern-input-group { flex-direction: column; gap: 0; }
    .disg-modern-personal-form { max-width: 100%; padding: 14px 4vw 14px 4vw; }
}

/* Optional: Passe wichtige Überschriften im modernen Flow auf #d6b36b an: */
.disg-modern-header h1, .disg-modern-header h2, .disg-modern-header h3 {
    color: #d6b36b;
}

.disg-privacy-notice a, .disg-modern-container a {
    color: #d6b36b;
    text-decoration: underline;
    transition: color 0.2s;
}
.disg-privacy-notice a:hover, .disg-modern-container a:hover {
    color: #bfa05c;
}

.disg-modern-answer {
    background: #d6b36b !important;
    color: #222 !important;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-weight: 700;
}
.disg-modern-answer:hover {
    background: #bfa05c !important;
    color: #fff !important;
}

.disg-modern-progress-bar {
    height: 8px;
    background: #d6b36b !important;
    width: 0;
    transition: width 0.4s;
}

.disg-modern-qnum {
    color: #d6b36b;
    font-weight: 600;
    margin-bottom: 8px;
}

@media (max-width: 700px) {
    .disg-modern-container { padding: 0 2vw; }
    .disg-modern-header { padding: 32px 4vw 16px 4vw; }
    .disg-modern-question, .disg-modern-personal { padding: 18px 4vw; }
    .disg-modern-adj-btn { font-size: 1em; padding: 12px 0; margin: 10px 0; }
    .disg-modern-form-row { margin-bottom: 16px; }
    .disg-modern-submit-btn { padding: 14px 0; font-size: 1em; }
}
@media (max-width: 480px) {
    .disg-modern-header h1 { font-size: 1.3em; }
    .disg-modern-question, .disg-modern-personal { padding: 10px 2vw; }
    .disg-modern-adj-btn { font-size: 0.95em; padding: 8px 0; }
    .disg-modern-label { font-size: 0.98em; }
} 