.zur-rose-quiz * { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

.zur-rose-quiz { 
    font-family: 'Poppins', sans-serif; 
    background-color: #F7F8FC; 
}

.zur-rose-quiz .container { 
    max-width: 1140px; 
    margin: 0 auto; 
    padding: 40px 20px; 
}

/* Progress */
.zur-rose-quiz .progress-steps { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 0; 
    margin-bottom: 60px; 
    position: relative; 
}

.zur-rose-quiz .step { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 12px; 
    position: relative; 
    z-index: 2; 
}

.zur-rose-quiz .step:not(:last-child) { 
    margin-right: 80px; 
}

.zur-rose-quiz .step:not(:last-child)::after { 
    content: ''; 
    position: absolute; 
    top: 16px; 
    left: calc(100% + 16px); 
    width: 48px; 
    height: 1px; 
    background-color: #ECEFF3; 
    z-index: 1; 
}

.zur-rose-quiz .step-circle { 
    width: 32px; 
    height: 32px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 16px; 
    font-weight: 600; 
    transition: all 0.3s ease; 
    cursor: pointer; 
}

.zur-rose-quiz .step-circle:hover { 
    transform: scale(1.1); 
}

.zur-rose-quiz .step-circle.active { 
    background-color: #e31e24; 
    color: white; 
    border: none; 
    cursor: default; 
}

.zur-rose-quiz .step-circle.active:hover { 
    transform: scale(1); 
}

.zur-rose-quiz .step-circle.completed { 
    background-color: #d0d0d0; 
    color: white; 
    border: none; 
}

.zur-rose-quiz .step-circle.inactive { 
    background-color: white; 
    color: #999; 
    border: 2px solid #d0d0d0; 
    cursor: not-allowed; 
}

.zur-rose-quiz .step-circle.inactive:hover { 
    transform: scale(1); 
}

.zur-rose-quiz .step-label { 
    font-size: 14px; 
    font-weight: 400; 
    transition: color 0.3s ease; 
}

.zur-rose-quiz .step-label.active { 
    color: #e31e24; 
}

.zur-rose-quiz .step-label.inactive { 
    color: #666; 
}

/* Content */
.zur-rose-quiz h2 { 
    font-size: 36px; 
    font-weight: 400; 
    text-align: center; 
    margin-bottom: 60px; 
    color: #1a1a1a; 
    line-height: 1.4; 
}

.zur-rose-quiz .hidden { 
    display: none; 
}

/* Animations */
.zur-rose-quiz .step-content { 
    animation: zur-rose-quiz-fadeIn 0.4s ease-in-out; 
}

@keyframes zur-rose-quiz-fadeIn { 
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    } 
    to { 
        opacity: 1; 
        transform: translateY(0); 
    } 
}

@keyframes zur-rose-quiz-fadeOut { 
    from { 
        opacity: 1; 
        transform: translateY(0); 
    } 
    to { 
        opacity: 0; 
        transform: translateY(-20px); 
    } 
}

.zur-rose-quiz .options-grid { 
    animation: zur-rose-quiz-slideUp 0.5s ease-out; 
}

@keyframes zur-rose-quiz-slideUp { 
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    } 
    to { 
        opacity: 1; 
        transform: translateY(0); 
    } 
}

.zur-rose-quiz .solution-container { 
    animation: zur-rose-quiz-fadeInSolution 0.5s ease-in-out; 
}

@keyframes zur-rose-quiz-fadeInSolution { 
    from { 
        opacity: 0; 
        transform: scale(0.98); 
    } 
    to { 
        opacity: 1; 
        transform: scale(1); 
    } 
}

/* Options - DESKTOP VERSION (Default) */
.zur-rose-quiz .options-grid { 
    display: grid; 
    grid-template-columns: repeat(3, minmax(0, 1fr)); 
    gap: 30px; 
    width: 100%;
    max-width: none;
}

/* Spezielle Zentrierung für 2 Optionen */
.zur-rose-quiz .options-grid.two-options {
    grid-template-columns: repeat(2, minmax(0, 360px));
    justify-content: center;
}

.zur-rose-quiz .option-card { 
    background-color: #fafafa; 
    border-radius: 16px; 
    padding: 50px 30px; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    border: 2px solid white; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    gap: 40px; 
    min-height: 400px; 
    width: 100%; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.06); 
}

.zur-rose-quiz .option-card:hover { 
    transform: translateY(-4px); 
    box-shadow: 0 8px 20px rgba(0,0,0,0.1); 
}

.zur-rose-quiz .option-icon { 
    width: 140px; 
    height: 140px; 
    border: 3px solid #1a1a1a; 
    border-radius: 24px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0; 
}

.zur-rose-quiz .option-icon img { 
    width: 80px; 
    height: 80px; 
    object-fit: contain; 
}

.zur-rose-quiz .option-text { 
    text-align: center; 
    font-size: 16px; 
    line-height: 1.6; 
    color: #1a1a1a; 
    width: 100%; 
}

.zur-rose-quiz .option-text strong { 
    font-weight: 600; 
}

.zur-rose-quiz .option-arrow { 
    margin-top: 12px; 
    font-size: 18px; 
    flex-shrink: 0; 
}

/* Tablet: Boxen kleiner aber 3 nebeneinander */
@media (max-width: 1100px) and (min-width: 769px) {
    .zur-rose-quiz .option-card { 
        padding: 30px 20px; 
        min-height: 360px; 
        gap: 30px; 
    }
    .zur-rose-quiz .option-icon { 
        width: 100px; 
        height: 100px; 
    }
    .zur-rose-quiz .option-icon img { 
        width: 60px; 
        height: 60px; 
    }
    .zur-rose-quiz .option-text { 
        font-size: 14px; 
    }
}

/* Tablet klein: noch kleinere Boxen aber 3 nebeneinander */
@media (max-width: 900px) and (min-width: 769px) {
    .zur-rose-quiz .option-card { 
        padding: 25px 15px; 
        min-height: 340px; 
        gap: 25px; 
    }
    .zur-rose-quiz .option-icon { 
        width: 90px; 
        height: 90px; 
    }
    .zur-rose-quiz .option-icon img { 
        width: 50px; 
        height: 50px; 
    }
    .zur-rose-quiz .option-text { 
        font-size: 13px; 
    }
    .zur-rose-quiz .options-grid { 
        gap: 20px; 
    }
}

/* Solution */
.zur-rose-quiz .solution-container { 
    max-width: 1100px; 
    margin: 0 auto; 
}

.zur-rose-quiz .solution-top { 
    display: flex; 
    gap: 0; 
    align-items: flex-start; 
    margin-bottom: 30px; 
}

.zur-rose-quiz .solution-icon { 
    width: 100px; 
    height: 100px; 
    flex-shrink: 0; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border: 2px solid #1a1a1a; 
    border-radius: 16px; 
    margin-right: 30px; 
}

.zur-rose-quiz .solution-icon img { 
    width: 55px; 
    height: 55px; 
    object-fit: contain; 
}

.zur-rose-quiz .solution-main { 
    flex: 1; 
    display: flex; 
    gap: 40px; 
}

.zur-rose-quiz .solution-text { 
    flex: 1; 
}

.zur-rose-quiz .solution-text h3 { 
    font-size: 16px; 
    font-weight: 400; 
    margin-bottom: 12px; 
    color: #1a1a1a; 
}

.zur-rose-quiz .solution-text p { 
    font-size: 16px; 
    line-height: 1.6; 
    color: #1a1a1a; 
    margin-bottom: 10px; 
    font-weight: 400; 
}

/* Contact Box */
.zur-rose-quiz .contact-box { 
    background-color: #F0F2F8; 
    border: 1px solid #DADFE8; 
    border-radius: 4px; 
    padding: 24px 28px; 
    width: 320px; 
    flex-shrink: 0; 
    align-self: flex-start; 
}

.zur-rose-quiz .contact-box.cta-box { 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
    justify-content: center; 
    padding: 32px 28px; 
}

.zur-rose-quiz .cta-heading { 
    font-size: 16px; 
    font-weight: 600; 
    color: #1a1a1a; 
    text-align: left; 
    margin-bottom: 20px; 
    line-height: 1.4; 
}

.zur-rose-quiz .contact-phone { 
    font-size: 16px; 
    font-weight: 600; 
    color: #1a1a1a; 
    margin-bottom: 10px; 
}

.zur-rose-quiz .contact-hours { 
    font-size: 16px; 
    color: #666; 
    margin-bottom: 2px; 
    font-weight: 400; 
    line-height: 1.5; 
}

.zur-rose-quiz .contact-email { 
    font-size: 16px; 
    color: #e31e24; 
    text-decoration: underline; 
    margin-top: 14px; 
    display: inline-block; 
    font-weight: 400; 
}

.zur-rose-quiz .contact-link { 
    font-size: 16px; 
    color: #e31e24; 
    text-decoration: underline; 
    margin-top: 8px; 
    display: block; 
    font-weight: 400; 
}

.zur-rose-quiz .cta-button { 
    background-color: #e31e24; 
    color: white !important; 
    font-size: 16px; 
    font-weight: 600; 
    padding: 14px 32px; 
    border-radius: 6px; 
    text-decoration: none; 
    display: inline-block; 
    transition: all 0.3s ease; 
    border: none; 
    cursor: pointer; 
    font-family: 'Poppins', sans-serif; 
    box-shadow: none; 
}

.zur-rose-quiz .cta-button.in-contact { 
    margin-top: 20px; 
}

.zur-rose-quiz .cta-button:hover { 
    background-color: #6C1811; 
    color: white !important; 
    box-shadow: none; 
}

/* Info Box */
.zur-rose-quiz .info-box { 
    background-color: #e8f4fd; 
    border: 1px solid #64b5f6; 
    border-radius: 4px; 
    padding: 16px 16px 16px 48px; 
    position: relative; 
    font-size: 13px; 
    line-height: 1.6; 
    color: #0277bd; 
    font-weight: 400; 
    width: 100%; 
}

.zur-rose-quiz .info-box::before { 
    content: "ℹ"; 
    position: absolute; 
    left: 18px; 
    top: 16px; 
    font-size: 18px; 
    color: #0277bd; 
    font-weight: 400; 
}

/* Responsive */
@media (max-width: 768px) {
    .zur-rose-quiz h2 { 
        font-size: 24px; 
        margin-bottom: 20px; 
    }
    .zur-rose-quiz #step3 h2 {
        margin-bottom: 24px;
    }
    .zur-rose-quiz .options-grid {
        margin-top: 0;
    }
    .zur-rose-quiz .progress-steps { 
        gap: 0; 
        margin-bottom: 40px; 
    }
    .zur-rose-quiz .step:not(:last-child) { 
        margin-right: 40px; 
    }
    .zur-rose-quiz .step:not(:last-child)::after { 
        width: 24px; 
        left: calc(100% + 8px); 
    }
    .zur-rose-quiz .step-circle { 
        width: 32px; 
        height: 32px; 
        font-size: 14px; 
    }
    .zur-rose-quiz .step-label { 
        font-size: 12px; 
    }
    .zur-rose-quiz .options-grid { 
        grid-template-columns: 1fr; 
        gap: 16px; 
    }
    .zur-rose-quiz .option-card { 
        min-height: auto; 
        padding: 20px 24px; 
        flex-direction: row; 
        gap: 20px; 
        align-items: center; 
        justify-content: flex-start; 
    }
    .zur-rose-quiz .option-icon { 
        width: 45px; 
        height: 45px; 
        border-width: 1px; 
        border-radius: 12px; 
    }
    .zur-rose-quiz .option-icon img { 
        width: 27px; 
        height: 27px; 
    }
    .zur-rose-quiz .option-text { 
        text-align: left; 
        flex: 1; 
        font-size: 15px; 
    }
    .zur-rose-quiz .option-arrow { 
        margin-top: 0; 
        font-size: 20px; 
        margin-left: 0; 
    }
    .zur-rose-quiz .solution-container { 
        flex-direction: column; 
        gap: 30px; 
    }
    .zur-rose-quiz .solution-top { 
        flex-direction: column; 
    }
    .zur-rose-quiz .solution-main { 
        flex-direction: column; 
    }
    .zur-rose-quiz .contact-box { 
        width: 100%; 
    }
    .zur-rose-quiz .solution-icon { 
        width: 45px; 
        height: 45px; 
        margin: 0 auto; 
        border-width: 1px; 
        border-radius: 8px; 
    }
    .zur-rose-quiz .solution-icon img {
        width: 25px;
        height: 25px;
    }
}
