/* ===== DANKE-SEITE (PREMIUM) ===== */
.danke-card {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 48px 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef0fb;
    text-align: center;
}
.danke-card .danke-icon {
    font-size: 56px;
    color: #22c55e;
    margin-bottom: 20px;
}
.danke-card .danke-titel {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 10px;
}
.danke-lead {
    font-size: 15px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}
.danke-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    margin-bottom: 28px;
}
.danke-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: #f8f9ff;
    border-radius: 14px;
    border: 1px solid #eef0fb;
}
.danke-step-nr {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2e2bcb, #6366f1);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.danke-step strong {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    display: block;
    margin-bottom: 4px;
}
.danke-step p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}
.danke-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e8e7ff;
    border-left: 4px solid #2e2bcb;
    text-align: left;
    margin-bottom: 24px;
}
.danke-note i {
    color: #2e2bcb;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}
.danke-note p {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}
.danke-actions {
    margin-top: 8px;
}

@media (max-width: 768px) {
    .danke-card {
        padding: 32px 20px;
        border-radius: 16px;
    }
    .danke-card .danke-titel {
        font-size: 22px;
    }
    .danke-step {
        padding: 12px 14px;
    }
}

@media (max-width: 480px) {
    .danke-card {
        padding: 24px 16px;
    }
    .danke-card .danke-icon {
        font-size: 44px;
    }
}
