/* ===== BEFREIUNGS-CHECK TOOL ===== */
/* Interactive quiz replacing the old chaos-level tool */

.befreiungs-check {
    background: linear-gradient(135deg, #00D9FF 0%, #0891B2 50%, #065F73 100%);
    padding: var(--space-xxl) 0;
    position: relative;
    overflow: hidden;
}

/* Decorative pattern overlay */
.befreiungs-check::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.befreiungs-container {
    max-width: 720px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 24px;
    padding: var(--space-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* ===== SCREENS ===== */
.bc-screen {
    display: none;
    animation: bcFadeIn 0.4s ease;
}

.bc-screen.active {
    display: block;
}

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

/* ===== PROGRESS BAR ===== */
.bc-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--space-l);
    padding-bottom: var(--space-m);
    border-bottom: 1px solid #E5E7EB;
}

.bc-progress-ring {
    flex: 1;
    height: 6px;
    background: #E5E7EB;
    border-radius: 3px;
    overflow: hidden;
}

.bc-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-cyan) 0%, #0891B2 100%);
    border-radius: 3px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
}

.bc-progress-text {
    font-size: 13px;
    color: #6B7280;
    font-weight: 500;
    white-space: nowrap;
}

/* ===== START SCREEN ===== */
.bc-start-content {
    text-align: center;
    padding: var(--space-l) 0;
}

.bc-hook {
    font-size: 32px;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: var(--space-s);
    line-height: 1.3;
}

.bc-subhook {
    font-size: 17px;
    color: #6B7280;
    margin-bottom: var(--space-xl);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.bc-start-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 600;
    background: #0A0A0A;
    color: #FFFFFF;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.bc-start-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: #1a1a1a;
}

.bc-start-btn svg {
    width: 22px;
    height: 22px;
}

/* ===== HERO IMAGE ===== */
.bc-hero-image {
    margin: var(--space-l) 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    aspect-ratio: 16 / 9;
    background: #F3F4F6;
}

.bc-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.bc-hero-image:hover img {
    transform: scale(1.03);
}

.bc-time-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #9CA3AF;
    margin-top: var(--space-m);
}

.bc-time-hint svg {
    width: 16px;
    height: 16px;
    color: #6B7280;
}

/* ===== QUESTION SCREEN ===== */
.bc-question-title {
    font-size: 24px;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: var(--space-l);
    text-align: center;
}

/* ===== OPTION CARDS ===== */
.bc-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: var(--space-l);
}

.bc-options.bc-options-3col {
    grid-template-columns: repeat(3, 1fr);
}

.bc-options.bc-options-1col {
    grid-template-columns: 1fr;
}

.bc-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    background: #FAFAFA;
    border: 2px solid #E5E7EB;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    min-height: 100px;
}

.bc-option:hover {
    border-color: var(--color-cyan);
    background: #F0FDFF;
    transform: translateY(-3px);
}

.bc-option.selected {
    border-color: var(--color-cyan);
    background: #E0F7FA;
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.2);
}

.bc-option-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
    color: #6B7280;
    transition: color 0.2s ease;
}

.bc-option:hover .bc-option-icon {
    color: var(--color-cyan);
}

.bc-option.selected .bc-option-icon {
    color: #0891B2;
}

.bc-option-label {
    font-size: 15px;
    font-weight: 600;
    color: #0A0A0A;
}

.bc-option-desc {
    font-size: 12px;
    color: #6B7280;
    margin-top: 4px;
}

/* Multi-select indicator */
.bc-option.multi-select::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    border: 2px solid #D1D5DB;
    border-radius: 4px;
}

.bc-option.multi-select.selected::after {
    background: var(--color-cyan);
    border-color: var(--color-cyan);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A0A0A' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
}

/* ===== VISUAL CARDS (Füllgrad) ===== */
.bc-visual-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: var(--space-l);
}

.bc-visual-option {
    position: relative;
    padding: 16px;
    background: #FAFAFA;
    border: 2px solid #E5E7EB;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.bc-visual-option:hover {
    border-color: var(--color-cyan);
    background: #F0FDFF;
}

.bc-visual-option.selected {
    border-color: var(--color-cyan);
    background: #E0F7FA;
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.2);
}

.bc-visual-illustration {
    width: 100%;
    height: 70px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F9FAFB;
    border-radius: 8px;
    padding: 8px;
}

.bc-visual-illustration svg {
    width: 100%;
    height: 100%;
}

.bc-visual-label {
    font-size: 14px;
    font-weight: 600;
    color: #0A0A0A;
}

.bc-visual-percent {
    font-size: 12px;
    color: #9CA3AF;
    margin-top: 2px;
}

/* ===== SIZE PRESETS ===== */
.bc-size-presets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: var(--space-l);
}

.bc-size-preset {
    padding: 16px 8px;
    background: #FAFAFA;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.bc-size-preset:hover {
    border-color: var(--color-cyan);
    background: #F0FDFF;
    transform: translateY(-2px);
}

.bc-size-preset.selected {
    border-color: var(--color-cyan);
    background: #E0F7FA;
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.2);
}

.bc-size-value {
    font-size: 20px;
    font-weight: 700;
    color: #0891B2;
}

.bc-size-unit {
    font-size: 14px;
    font-weight: 500;
    color: #9CA3AF;
}

.bc-size-desc {
    font-size: 11px;
    color: #6B7280;
    margin-top: 4px;
    line-height: 1.3;
}

/* ===== NAVIGATION ===== */
.bc-nav {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: var(--space-l);
    padding-top: var(--space-m);
    border-top: 1px solid #E5E7EB;
}

.bc-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bc-nav-btn.bc-btn-back {
    background: #F3F4F6;
    color: #6B7280;
    border: none;
}

.bc-nav-btn.bc-btn-back:hover {
    background: #E5E7EB;
    color: #374151;
}

.bc-nav-btn.bc-btn-next {
    background: var(--color-cyan);
    color: var(--color-black);
    border: none;
    margin-left: auto;
}

.bc-nav-btn.bc-btn-next:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 217, 255, 0.3);
}

.bc-nav-btn.bc-btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.bc-skip-link {
    font-size: 13px;
    color: #9CA3AF;
    text-decoration: underline;
    cursor: pointer;
    align-self: center;
}

.bc-skip-link:hover {
    color: #6B7280;
}

/* ===== RESULT SCREEN ===== */
.bc-result {
    text-align: center;
}

.bc-result-header {
    margin-bottom: var(--space-xl);
}

.bc-result-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 8px;
}

.bc-result-subtitle {
    font-size: 15px;
    color: #6B7280;
}

/* ===== INSIGHT CARDS ===== */
.bc-insights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: var(--space-xl);
}

.bc-insight-card {
    background: #FAFAFA;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
}

.bc-insight-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 12px;
    color: var(--color-cyan);
}

.bc-insight-label {
    font-size: 12px;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.bc-insight-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 4px;
}

.bc-insight-unit {
    font-size: 14px;
    font-weight: 400;
}

.bc-insight-comparisons {
    font-size: 13px;
    color: #6B7280;
    margin-top: 8px;
    line-height: 1.5;
}

/* Count-up animation */
.bc-insight-value.counting {
    animation: countPulse 0.3s ease;
}

@keyframes countPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===== PERSONALITY PROFILE ===== */
.bc-profile {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    border: 1px solid #BAE6FD;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: var(--space-xl);
    text-align: left;
}

.bc-profile-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.bc-profile-icon {
    width: 40px;
    height: 40px;
    background: var(--color-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bc-profile-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-black);
}

.bc-profile-type {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-black);
}

.bc-profile-desc {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

/* ===== PRICE TEASER ===== */
.bc-price-teaser {
    background: var(--color-black);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: var(--space-l);
    color: white;
}

.bc-price-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.bc-price-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-cyan);
    margin-bottom: 16px;
}

.bc-price-value span {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.bc-price-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 0;
}

.bc-price-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.bc-price-feature svg {
    width: 16px;
    height: 16px;
    color: #10B981;
}

/* ===== RESULT CTAs ===== */
.bc-result-ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bc-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    background: var(--color-cyan);
    color: var(--color-black);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.bc-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.4);
}

.bc-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    background: white;
    color: var(--color-black);
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.bc-cta-secondary:hover {
    border-color: var(--color-cyan);
    background: #F0FDFF;
}

/* ===== SHARE ===== */
.bc-share {
    margin-top: var(--space-l);
    padding-top: var(--space-l);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.bc-share-label {
    font-size: 13px;
    color: #9CA3AF;
    margin-bottom: 12px;
}

.bc-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    background: #F3F4F6;
    color: #374151;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bc-share-btn:hover {
    background: #E5E7EB;
}

.bc-share-btn svg {
    width: 16px;
    height: 16px;
}

/* ===== RESTART ===== */
.bc-restart {
    margin-top: var(--space-m);
}

.bc-restart-btn {
    font-size: 13px;
    color: #9CA3AF;
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bc-restart-btn:hover {
    color: #6B7280;
}

.bc-restart-btn svg {
    width: 14px;
    height: 14px;
}

/* ===== SERVICE RECOMMENDATIONS ===== */
.bc-recommendations {
    margin: var(--space-l) 0;
    text-align: left;
}

.bc-recommendations-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 16px;
    text-align: center;
}

.bc-service-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bc-service-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    border: 2px solid #BAE6FD;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.bc-service-card:hover {
    border-color: var(--color-cyan);
    transform: translateY(-2px);
}

.bc-service-icon {
    width: 40px;
    height: 40px;
    background: var(--color-cyan);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bc-service-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-black);
}

.bc-service-content {
    flex: 1;
}

.bc-service-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 4px;
}

.bc-service-desc {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 8px;
}

.bc-service-price {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #0891B2;
    background: rgba(0, 217, 255, 0.15);
    padding: 4px 10px;
    border-radius: 6px;
}

/* ===== WALHALLA: AI VISION IMAGE ===== */
.bc-vision-section {
    margin: var(--space-l) 0;
    text-align: center;
}

.bc-vision-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 12px;
}

#bcVisionContainer {
    display: none;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: #F3F4F6;
    position: relative;
}

/* Shimmer Loading Animation */
.bc-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e0e0e0 50%,
        #f0f0f0 75%
    );
    background-size: 200% 100%;
    animation: bcShimmer 1.5s infinite ease-in-out;
}

@keyframes bcShimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Vision Image with Fade-in */
.bc-vision-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.bc-vision-img.loaded {
    opacity: 1;
    transform: scale(1);
}

.bc-vision-caption {
    font-size: 13px;
    color: #9CA3AF;
    margin-top: 10px;
    font-style: italic;
}

/* ===== KI-PERSONALISIERUNG LOADING STATES ===== */

/* FULL STEP LOADING - Zeigt Skeleton bis KI fertig ist */
.bc-step-loading .bc-question-title,
.bc-step-loading .bc-options,
.bc-step-loading .bc-visual-options,
.bc-step-loading .bc-size-presets,
.bc-step-loading .bc-nav {
    opacity: 0;
    pointer-events: none;
}

/* Loading Overlay für den Step - INTERESSANT! */
.bc-loading-overlay {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-l);
    min-height: 280px;
    text-align: center;
}

.bc-step-loading .bc-loading-overlay {
    display: flex;
}

/* Fun Fact Card */
.bc-loading-funfact {
    background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 100%);
    border-radius: 16px;
    padding: 24px;
    max-width: 400px;
    margin-bottom: var(--space-m);
    position: relative;
    overflow: hidden;
}

.bc-loading-funfact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-cyan), #0891B2, var(--color-cyan));
    background-size: 200% 100%;
    animation: bcGradientSlide 2s ease-in-out infinite;
}

@keyframes bcGradientSlide {
    0%, 100% { background-position: 0% 0; }
    50% { background-position: 100% 0; }
}

.bc-funfact-emoji {
    font-size: 36px;
    margin-bottom: 12px;
    animation: bcBounce 1s ease-in-out infinite;
}

@keyframes bcBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.bc-funfact-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.bc-funfact-text {
    font-size: 15px;
    color: #FFFFFF;
    line-height: 1.5;
}

.bc-funfact-text strong {
    color: var(--color-cyan);
}

/* Loading Bar */
.bc-loading-bar {
    width: 200px;
    height: 4px;
    background: #E5E7EB;
    border-radius: 2px;
    overflow: hidden;
    margin-top: var(--space-s);
}

.bc-loading-bar-fill {
    height: 100%;
    width: 30%;
    background: linear-gradient(90deg, var(--color-cyan), #0891B2);
    border-radius: 2px;
    animation: bcLoadingBar 1.5s ease-in-out infinite;
}

@keyframes bcLoadingBar {
    0% { width: 10%; margin-left: 0; }
    50% { width: 40%; margin-left: 30%; }
    100% { width: 10%; margin-left: 90%; }
}

.bc-loading-hint {
    font-size: 12px;
    color: #9CA3AF;
    margin-top: 12px;
}

/* Skeleton-Karten für Options (falls sichtbar bleiben sollen) */
.bc-skeleton-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    margin-top: var(--space-l);
}

.bc-skeleton-card {
    height: 100px;
    background: linear-gradient(
        90deg,
        #f3f4f6 25%,
        #e5e7eb 50%,
        #f3f4f6 75%
    );
    background-size: 200% 100%;
    animation: bcShimmer 1.5s infinite ease-in-out;
    border-radius: 14px;
}

/* Content Reveal Animation */
.bc-step-ready .bc-question-title,
.bc-step-ready .bc-options,
.bc-step-ready .bc-visual-options,
.bc-step-ready .bc-size-presets,
.bc-step-ready .bc-nav {
    opacity: 1;
    pointer-events: auto;
    animation: bcContentReveal 0.4s ease-out;
}

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

/* Profil-Roast Loading */
.bc-profile-desc.bc-loading {
    color: #9CA3AF;
    min-height: 60px;
    position: relative;
}

.bc-profile-desc.bc-loading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-cyan), transparent);
    animation: bcLineExpand 1.5s infinite ease-in-out;
}

@keyframes bcLineExpand {
    0%, 100% { width: 20%; opacity: 0.5; }
    50% { width: 80%; opacity: 1; }
}

/* Inline text shimmer placeholder */
.bc-text-shimmer {
    display: inline-block;
    width: 200px;
    height: 1.2em;
    background: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e0e0e0 50%,
        #f0f0f0 75%
    );
    background-size: 200% 100%;
    animation: bcShimmer 1.5s infinite ease-in-out;
    border-radius: 4px;
    vertical-align: middle;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 640px) {
    .befreiungs-container {
        margin: 0 16px;
        padding: var(--space-l);
    }

    .bc-hook {
        font-size: 24px;
    }

    .bc-options {
        grid-template-columns: 1fr;
    }

    .bc-options.bc-options-3col {
        grid-template-columns: 1fr;
    }

    .bc-visual-options {
        grid-template-columns: 1fr;
    }

    .bc-size-presets {
        grid-template-columns: repeat(2, 1fr);
    }

    .bc-insights {
        grid-template-columns: 1fr;
    }

    .bc-price-features {
        flex-direction: column;
        gap: 8px;
    }

    .bc-insight-value {
        font-size: 20px;
    }

    .bc-price-value {
        font-size: 28px;
    }

    .bc-question-title {
        font-size: 18px;
    }
}

/* ===== SPIDER-CHART ===== */
.bc-spider-container {
    text-align: center;
    margin: var(--space-l) 0;
    padding: 20px;
    background: #FAFAFA;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
}

.bc-spider-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 16px;
}

#bcSpiderChart {
    max-width: 320px;
    max-height: 320px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    #bcSpiderChart {
        max-width: 280px;
        max-height: 280px;
    }
}
