.elementor-2645 .elementor-element.elementor-element-bb03853{--display:flex;--background-transition:0.3s;}/* Start custom CSS *//* LEADERIN Code Selbsttest - CSS für WordPress/Elementor */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600&family=Inter:wght@300;400;500&display=swap');

:root {
    --primary-color: #c7365f;
    --primary-dark: #b02d52;
    --secondary-color: #ffe8ed;
    --light-bg: #fff5f7;
    --soft-pink: #ffd6e0;
    --medium-pink: #ffc4d1;
    --text-color: #2c2c2c;
    --text-gray: #666666;
    --label-gray: #888888;
    --light-gray: #999999;
    --very-light-gray: #f8f8f8;
    --white: #ffffff;
    --green-bg: #f0f8f0;
    --green-border: #7ab87d;
    --shadow: rgba(199, 54, 95, 0.15);
}

.leaderin-test-container {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--secondary-color) 100%);
    color: var(--text-color);
    line-height: 1.6;
    padding: 2rem 1rem;
    border-radius: 20px;
}

.leaderin-test-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    position: relative;
    overflow: hidden;
}

.leaderin-test-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--secondary-color), transparent);
    animation: rotate 10s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.leaderin-test-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.leaderin-test-subtitle {
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 300;
    margin-bottom: 2rem;
}

.leaderin-test-intro {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.leaderin-progress-container {
    margin: 2rem 0;
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px var(--shadow);
}

.leaderin-progress-bar {
    width: 100%;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.leaderin-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 10px;
    width: 0%;
    transition: width 0.5s ease;
}

.leaderin-progress-text {
    text-align: center;
    font-weight: 500;
    color: var(--primary-dark);
}

.leaderin-question-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px var(--shadow);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    position: relative;
    overflow: hidden;
}

.leaderin-question-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.leaderin-question-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.leaderin-question-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.leaderin-options {
    display: grid;
    gap: 1rem;
}

.leaderin-option {
    display: flex;
    align-items: flex-start;
    padding: 1.25rem;
    border: 2px solid transparent;
    border-radius: 12px;
    background: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.leaderin-option:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

.leaderin-option.selected {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px var(--shadow);
}

.leaderin-option input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    margin-right: 1rem;
    margin-top: 2px;
    position: relative;
    flex-shrink: 0;
}

.leaderin-option input[type="radio"]:checked::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: radioCheck 0.3s ease;
}

@keyframes radioCheck {
    0% { transform: translate(-50%, -50%) scale(0); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

.leaderin-option-label {
    font-size: 1rem;
    line-height: 1.5;
    cursor: pointer;
    flex: 1;
}

.leaderin-option-letter {
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.leaderin-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding: 0 1rem;
}

.leaderin-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 120px;
}

.leaderin-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.leaderin-btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(199, 54, 95, 0.4);
}

.leaderin-btn-secondary {
    background: var(--secondary-color);
    color: var(--primary-dark);
}

.leaderin-btn-secondary:hover {
    background: var(--white);
    box-shadow: 0 5px 15px var(--shadow);
}

.leaderin-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.leaderin-result-card {
    background: var(--white);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 15px 35px var(--shadow);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.leaderin-result-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 45deg, transparent, var(--secondary-color), transparent);
    animation: rotate 15s linear infinite;
    z-index: -1;
}

.leaderin-score-display {
    font-size: 4rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.leaderin-category-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.leaderin-category-description {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Entfernt: .leaderin-short-evaluation, .leaderin-evaluation-highlight - werden nicht mehr benötigt */

.leaderin-cta-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--white));
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 2rem;
    border: 1px solid var(--soft-pink);
}

.leaderin-cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.leaderin-cta-text {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.leaderin-button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.leaderin-btn-extended {
    background: linear-gradient(135deg, var(--primary-dark), #9e2647);
    color: var(--white);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.leaderin-btn-extended::before {
    content: '📧';
    margin-right: 0.5rem;
}

.leaderin-btn-extended:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(176, 45, 82, 0.4);
}

.leaderin-hidden {
    display: none;
}

.leaderin-fade-in {
    animation: fadeIn 0.8s ease;
}

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

/* Responsive Styles */
@media (max-width: 768px) {
    .leaderin-test-title {
        font-size: 2.5rem;
    }

    .leaderin-question-card {
        padding: 1.5rem;
    }

    .leaderin-question-text {
        font-size: 1.3rem;
    }

    .leaderin-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .leaderin-btn {
        width: 100%;
    }

    .leaderin-result-card {
        padding: 2rem;
    }

    .leaderin-score-display {
        font-size: 3rem;
    }

    .leaderin-category-title {
        font-size: 2rem;
    }

    .leaderin-button-group {
        flex-direction: column;
    }
}/* End custom CSS */