/* ============================================
   RENOVIERUNGSKOSTEN RECHNER CSS
   Version 3.0 - Vollständig Responsive
   ============================================ */

/* Widget Container Reset */
.renovierung-widget-wrapper {
    all: initial;
    display: block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1f36;
    font-size: 16px;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    overflow-x: hidden; /* Verhindert horizontales Scrolling */
}

.renovierung-widget-wrapper *,
.renovierung-widget-wrapper *::before,
.renovierung-widget-wrapper *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* CSS Variables */
.renovierung-widget-wrapper {
    --reno-primary: #2d5016;
    --reno-primary-light: #4a7c28;
    --reno-primary-dark: #1e3a0f;
    --reno-accent: #2d5016;
    --reno-accent-light: #4a7c28;
    --reno-success: #4ade80;
    --reno-warning: #ffa502;
    --reno-danger: #ff4757;
    --reno-background: #f8f9fb;
    --reno-surface: #ffffff;
    --reno-text-primary: #1a1f36;
    --reno-text-secondary: #6b7280;
    --reno-text-muted: #9ca3af;
    --reno-border: #e5e7eb;
    --reno-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --reno-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --reno-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --reno-shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    --reno-gradient-accent: linear-gradient(135deg, #2d5016 0%, #4a7c28 100%);
}

/* Usage Selection */
.renovierung-widget-wrapper .reno-usage-selection {
    display: none;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 0.5s ease;
}

.renovierung-widget-wrapper .reno-usage-selection.reno-active {
    display: block;
}

.renovierung-widget-wrapper .reno-main-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: var(--reno-text-primary);
    margin-bottom: 12px;
}

.renovierung-widget-wrapper .reno-main-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--reno-text-secondary);
    margin-bottom: 48px;
}

.renovierung-widget-wrapper .reno-usage-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.renovierung-widget-wrapper .reno-usage-card {
    background: var(--reno-surface);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--reno-shadow-lg);
    transition: all 0.3s;
    cursor: pointer;
    border: 3px solid transparent;
}

.renovierung-widget-wrapper .reno-usage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--reno-shadow-xl);
    border-color: var(--reno-primary-light);
}

.renovierung-widget-wrapper .reno-usage-icon {
    font-size: 64px;
    margin-bottom: 24px;
    text-align: center;
}

.renovierung-widget-wrapper .reno-usage-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--reno-text-primary);
    margin-bottom: 12px;
    text-align: center;
}

.renovierung-widget-wrapper .reno-usage-description {
    font-size: 16px;
    color: var(--reno-text-secondary);
    text-align: center;
    margin-bottom: 24px;
}

.renovierung-widget-wrapper .reno-usage-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.renovierung-widget-wrapper .reno-usage-benefits li {
    padding: 8px 0;
    color: var(--reno-text-primary);
    font-size: 14px;
    display: flex;
    align-items: center;
}

.renovierung-widget-wrapper .reno-usage-button {
    width: 100%;
    padding: 16px 24px;
    background: var(--reno-gradient-accent);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.renovierung-widget-wrapper .reno-usage-button:hover {
    transform: scale(1.02);
    box-shadow: var(--reno-shadow-md);
}

/* Progress Tracker */
.renovierung-widget-wrapper .reno-progress-tracker {
    display: none;
    background: var(--reno-surface);
    padding: 32px 20px;
    margin-bottom: 32px;
    border-radius: 16px;
    box-shadow: var(--reno-shadow-sm);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.renovierung-widget-wrapper .reno-progress-tracker.reno-active {
    display: block;
}

.renovierung-widget-wrapper .reno-progress-steps {
    display: flex;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    min-width: 700px;
}

.renovierung-widget-wrapper .reno-progress-line-bg {
    position: absolute;
    top: 24px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: var(--reno-border);
}

.renovierung-widget-wrapper .reno-progress-line-fill {
    position: absolute;
    top: 24px;
    left: 60px;
    height: 2px;
    background: var(--reno-gradient-accent);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.renovierung-widget-wrapper .reno-progress-step {
    flex: 1;
    position: relative;
    text-align: center;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 80px;
    padding: 0 10px;
}

.renovierung-widget-wrapper .reno-progress-step-indicator {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: var(--reno-surface);
    border: 2px solid var(--reno-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-weight: 600;
    color: var(--reno-text-muted);
}

.renovierung-widget-wrapper .reno-progress-step.reno-active .reno-progress-step-indicator {
    background: var(--reno-gradient-accent);
    border-color: var(--reno-accent);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(45, 80, 22, 0.1);
}

.renovierung-widget-wrapper .reno-progress-step.reno-completed .reno-progress-step-indicator {
    background: var(--reno-success);
    border-color: var(--reno-success);
    color: white;
}

.renovierung-widget-wrapper .reno-progress-step.reno-completed .reno-progress-step-indicator::after {
    content: '✔';
    position: absolute;
    font-size: 20px;
}

.renovierung-widget-wrapper .reno-progress-step.reno-completed .reno-progress-step-indicator span {
    display: none;
}

.renovierung-widget-wrapper .reno-progress-step-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--reno-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.renovierung-widget-wrapper .reno-progress-step.reno-active .reno-progress-step-label {
    color: var(--reno-text-primary);
}

/* Main Content */
.renovierung-widget-wrapper .reno-main-content {
    display: none;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.renovierung-widget-wrapper .reno-main-content.reno-active {
    display: grid;
}

/* Calculator Container */
.renovierung-widget-wrapper .reno-calculator-container {
    background: var(--reno-surface);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--reno-shadow-md);
}

/* Step Content */
.renovierung-widget-wrapper .reno-step-content {
    display: none;
}

.renovierung-widget-wrapper .reno-step-content.reno-active {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Step Header */
.renovierung-widget-wrapper .reno-step-header {
    margin-bottom: 32px;
}

.renovierung-widget-wrapper .reno-step-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--reno-text-primary);
    margin-bottom: 8px;
}

.renovierung-widget-wrapper .reno-step-subtitle {
    color: var(--reno-text-secondary);
    font-size: 14px;
}

/* Form Sections */
.renovierung-widget-wrapper .reno-form-section {
    margin-bottom: 32px;
}

.renovierung-widget-wrapper .reno-form-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.renovierung-widget-wrapper .reno-label-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--reno-text-primary);
}

.renovierung-widget-wrapper .reno-label-helper {
    font-size: 12px;
    color: var(--reno-text-muted);
}

/* Input Fields */
.renovierung-widget-wrapper .reno-input-group {
    position: relative;
}

.renovierung-widget-wrapper .reno-input-field {
    width: 100%;
    padding: 12px 16px;
    padding-right: 50px;
    border: 1px solid var(--reno-border);
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.2s;
    background: var(--reno-surface);
    font-family: inherit;
    color: var(--reno-text-primary);
}

.renovierung-widget-wrapper .reno-input-field:hover {
    border-color: #d1d5db;
}

.renovierung-widget-wrapper .reno-input-field:focus {
    outline: none;
    border-color: var(--reno-accent);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.renovierung-widget-wrapper .reno-input-suffix {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--reno-text-muted);
    font-size: 14px;
    font-weight: 500;
    pointer-events: none;
}

/* Selection Grid */
.renovierung-widget-wrapper .reno-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
}

/* Selection Cards */
.renovierung-widget-wrapper .reno-selection-card {
    position: relative;
    padding: 20px;
    border: 2px solid var(--reno-border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--reno-surface);
    user-select: none;
}

.renovierung-widget-wrapper .reno-selection-card:hover {
    border-color: var(--reno-accent);
    transform: translateY(-2px);
    box-shadow: var(--reno-shadow-md);
}

.renovierung-widget-wrapper .reno-selection-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.renovierung-widget-wrapper .reno-selection-card.selected,
.renovierung-widget-wrapper .reno-selection-card:has(input:checked) {
    border-color: var(--reno-accent);
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.05) 0%, rgba(30, 58, 15, 0.05) 100%);
}

.renovierung-widget-wrapper .reno-selection-card.selected::after,
.renovierung-widget-wrapper .reno-selection-card:has(input:checked)::after {
    content: '✔';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    background: var(--reno-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.renovierung-widget-wrapper .reno-selection-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--reno-text-primary);
    margin-bottom: 4px;
}

.renovierung-widget-wrapper .reno-selection-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--reno-accent);
}

/* Zustandsbewertung Buttons */
.renovierung-widget-wrapper .reno-condition-rating {
    display: flex;
    gap: 12px;
    width: 100%;
}

.renovierung-widget-wrapper .reno-rating-button {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid var(--reno-border);
    background: white;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    position: relative;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.renovierung-widget-wrapper .reno-rating-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--reno-shadow-md);
}

.renovierung-widget-wrapper .reno-rating-label {
    font-size: 15px;
    font-weight: 600;
    display: block;
}

/* Farbcodierung für Zustandsbewertung */
.renovierung-widget-wrapper .reno-rating-bad {
    background: linear-gradient(135deg, #fff5f5, #ffe5e5);
    border-color: #ff4757;
    color: #ff4757;
}

.renovierung-widget-wrapper .reno-rating-bad.reno-selected {
    background: #ff4757;
    color: white;
    border-color: #ff4757;
}

.renovierung-widget-wrapper .reno-rating-bad:hover {
    border-color: #ff4757;
    background: linear-gradient(135deg, #ffe5e5, #ffcccc);
}

.renovierung-widget-wrapper .reno-rating-medium {
    background: linear-gradient(135deg, #fffbf0, #fff5e0);
    border-color: #ffa502;
    color: #ffa502;
}

.renovierung-widget-wrapper .reno-rating-medium.reno-selected {
    background: #ffa502;
    color: white;
    border-color: #ffa502;
}

.renovierung-widget-wrapper .reno-rating-medium:hover {
    border-color: #ffa502;
    background: linear-gradient(135deg, #fff5e0, #ffeccc);
}

.renovierung-widget-wrapper .reno-rating-good {
    background: linear-gradient(135deg, #e8f5e0, #f0f9e8);
    border-color: #4ade80;
    color: #4ade80;
}

.renovierung-widget-wrapper .reno-rating-good.reno-selected {
    background: #4ade80;
    color: white;
    border-color: #4ade80;
}

.renovierung-widget-wrapper .reno-rating-good:hover {
    border-color: #4ade80;
    background: linear-gradient(135deg, #e0f5d0, #e8f9e0);
}

/* Kein Checkmark bei Zustandsbewertung */
.renovierung-widget-wrapper .reno-rating-button::after {
    display: none !important;
}

.renovierung-widget-wrapper .reno-rating-button.reno-selected::after {
    display: none !important;
}

/* Damage Grid */
.renovierung-widget-wrapper .reno-damage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.renovierung-widget-wrapper .reno-damage-item {
    position: relative;
    cursor: pointer;
}

.renovierung-widget-wrapper .reno-damage-item input {
    position: absolute;
    opacity: 0;
    pointer-events: all;
    width: 100%;
    height: 100%;
    z-index: 2;
    cursor: pointer;
}

.renovierung-widget-wrapper .reno-damage-content {
    padding: 20px;
    border: 2px solid var(--reno-border);
    border-radius: 12px;
    background: var(--reno-surface);
    transition: all 0.2s;
    text-align: center;
}

.renovierung-widget-wrapper .reno-damage-item:hover .reno-damage-content {
    border-color: var(--reno-danger);
    transform: translateY(-2px);
    box-shadow: var(--reno-shadow-md);
}

.renovierung-widget-wrapper .reno-damage-item input:checked ~ .reno-damage-content {
    border-color: var(--reno-danger);
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.1) 0%, rgba(255, 71, 87, 0.05) 100%);
}

.renovierung-widget-wrapper .reno-damage-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.renovierung-widget-wrapper .reno-damage-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--reno-text-primary);
    margin-bottom: 4px;
}

.renovierung-widget-wrapper .reno-damage-cost {
    font-size: 16px;
    font-weight: 700;
    color: var(--reno-danger);
}

/* Navigation */
.renovierung-widget-wrapper .reno-navigation {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--reno-border);
}

/* Buttons */
.renovierung-widget-wrapper .reno-btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    font-family: inherit;
}

.renovierung-widget-wrapper .reno-btn-secondary {
    background: var(--reno-background);
    color: var(--reno-text-secondary);
    border: 1px solid var(--reno-border);
}

.renovierung-widget-wrapper .reno-btn-secondary:hover:not(:disabled) {
    background: var(--reno-surface);
    transform: translateY(-1px);
    box-shadow: var(--reno-shadow-sm);
}

.renovierung-widget-wrapper .reno-btn-primary {
    background: var(--reno-gradient-accent);
    color: white;
    box-shadow: var(--reno-shadow-md);
}

.renovierung-widget-wrapper .reno-btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--reno-shadow-lg);
}

.renovierung-widget-wrapper .reno-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Sidebar */
.renovierung-widget-wrapper .reno-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.renovierung-widget-wrapper .reno-summary-card {
    background: var(--reno-surface);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--reno-shadow-md);
}

.renovierung-widget-wrapper .reno-summary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.renovierung-widget-wrapper .reno-summary-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--reno-text-primary);
}

.renovierung-widget-wrapper .reno-summary-badge {
    padding: 4px 8px;
    background: var(--reno-danger);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

.renovierung-widget-wrapper .reno-total-display {
    background: var(--reno-gradient-accent);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.renovierung-widget-wrapper .reno-total-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.renovierung-widget-wrapper .reno-total-amount {
    font-size: 36px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.renovierung-widget-wrapper .reno-total-suffix {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.9;
}

.renovierung-widget-wrapper .reno-cost-breakdown {
    display: flex;
    flex-direction: column;
}

.renovierung-widget-wrapper .reno-cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--reno-border);
}

.renovierung-widget-wrapper .reno-cost-item:last-child {
    border-bottom: none;
}

.renovierung-widget-wrapper .reno-cost-label {
    font-size: 14px;
    color: var(--reno-text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.renovierung-widget-wrapper .reno-cost-icon {
    font-size: 16px;
}

.renovierung-widget-wrapper .reno-cost-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--reno-text-primary);
}

.renovierung-widget-wrapper .reno-cost-value.reno-active {
    color: var(--reno-success);
}

.renovierung-widget-wrapper .reno-subsidy-rate {
    margin-top: 16px;
    padding: 12px;
    background: linear-gradient(135deg, #e8f5e0, #f0f9e8);
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
}

/* Subsidy Overview */
.renovierung-widget-wrapper .reno-subsidy-overview {
    background: var(--reno-background);
    border-radius: 12px;
    padding: 20px;
    margin-top: 24px;
}

/* Expert Tip */
.renovierung-widget-wrapper .reno-expert-tip {
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    border-left: 4px solid var(--reno-accent);
    border-radius: 8px;
    padding: 16px;
    margin: 24px 0;
}

.renovierung-widget-wrapper .reno-expert-tip-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.renovierung-widget-wrapper .reno-expert-tip-icon {
    font-size: 20px;
}

.renovierung-widget-wrapper .reno-expert-tip-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--reno-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.renovierung-widget-wrapper .reno-expert-tip-content {
    font-size: 14px;
    color: var(--reno-text-primary);
    line-height: 1.5;
}

/* Results Container */
.renovierung-widget-wrapper .reno-results-container {
    display: none !important;
    width: 100%;
    padding: 20px;
    max-width: 100%;
    overflow-x: hidden;
}

.renovierung-widget-wrapper .reno-results-container.reno-active {
    display: block !important;
    animation: fadeIn 0.5s ease;
}

/* Results-spezifische Klassen für bessere Mobile-Kompatibilität */
.renovierung-widget-wrapper .reno-result-header {
    background: var(--reno-gradient-accent);
    border-radius: 20px;
    padding: 40px;
    color: white;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: var(--reno-shadow-xl);
}

.renovierung-widget-wrapper .reno-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.renovierung-widget-wrapper .reno-finance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.renovierung-widget-wrapper .reno-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* ============================================
   RESPONSIVE DESIGN MIT MOBILE FIXES
   ============================================ */

@media (max-width: 1024px) {
    .renovierung-widget-wrapper .reno-main-content {
        grid-template-columns: 1fr;
    }
    
    .renovierung-widget-wrapper .reno-sidebar {
        position: static;
        order: 1;
        margin-top: 24px;
    }
    
    .renovierung-widget-wrapper .reno-usage-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* General Mobile Anpassungen */
    .renovierung-widget-wrapper {
        overflow-x: hidden !important;
    }
    
    .renovierung-widget-wrapper .reno-main-title {
        font-size: 28px;
        padding: 0 10px;
    }
    
    .renovierung-widget-wrapper .reno-main-subtitle {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .renovierung-widget-wrapper .reno-calculator-container {
        padding: 24px 16px;
        border-radius: 12px;
    }
    
    .renovierung-widget-wrapper .reno-progress-tracker {
        padding: 16px 8px;
        margin-bottom: 20px;
    }
    
    .renovierung-widget-wrapper .reno-step-title {
        font-size: 24px;
    }
    
    .renovierung-widget-wrapper .reno-selection-grid {
        grid-template-columns: 1fr;
    }
    
    /* Zustandsbewertung Mobile */
    .renovierung-widget-wrapper .reno-condition-rating {
        flex-direction: column;
    }
    
    .renovierung-widget-wrapper .reno-rating-button {
        width: 100%;
    }
    
    .renovierung-widget-wrapper .reno-damage-grid {
        grid-template-columns: 1fr;
    }
    
    .renovierung-widget-wrapper .reno-navigation {
        flex-direction: column-reverse;
        gap: 12px;
    }
    
    .renovierung-widget-wrapper .reno-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* KRITISCH: Results Container Mobile Fixes */
    .renovierung-widget-wrapper .reno-results-container {
        padding: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Alle direkten Kinder des Results-Containers */
    .renovierung-widget-wrapper .reno-results-container > * {
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
        box-sizing: border-box !important;
    }
    
    /* Inline-Styles überschreiben */
    .renovierung-widget-wrapper .reno-results-container div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    .renovierung-widget-wrapper .reno-results-container div[style*="display: flex"] {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 16px !important;
    }
    
    /* Große Container anpassen */
    .renovierung-widget-wrapper .reno-results-container div[style*="padding: 40px"],
    .renovierung-widget-wrapper .reno-results-container div[style*="padding: 32px"] {
        padding: 20px !important;
    }
    
    /* Schriftgrößen anpassen */
    .renovierung-widget-wrapper .reno-results-container h1[style*="font-size: 42px"] {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }
    
    .renovierung-widget-wrapper .reno-results-container h2[style*="font-size: 28px"] {
        font-size: 20px !important;
    }
    
    .renovierung-widget-wrapper .reno-results-container div[style*="font-size: 56px"] {
        font-size: 32px !important;
    }
    
    .renovierung-widget-wrapper .reno-results-container div[style*="font-size: 48px"] {
        font-size: 28px !important;
    }
    
    .renovierung-widget-wrapper .reno-results-container div[style*="font-size: 36px"] {
        font-size: 24px !important;
    }
    
    .renovierung-widget-wrapper .reno-results-container div[style*="font-size: 28px"] {
        font-size: 20px !important;
    }
    
    .renovierung-widget-wrapper .reno-results-container div[style*="font-size: 24px"] {
        font-size: 18px !important;
    }
    
    /* Spezielle Container */
    .renovierung-widget-wrapper .reno-result-header {
        padding: 24px 16px !important;
        border-radius: 12px !important;
    }
    
    .renovierung-widget-wrapper .reno-benefits-grid,
    .renovierung-widget-wrapper .reno-finance-grid {
        grid-template-columns: 1fr !important;
    }
    
    .renovierung-widget-wrapper .reno-comparison-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Share Link Section */
    #shareLink {
        padding: 12px !important;
    }
    
    #shareLinkInput {
        width: 100% !important;
        font-size: 12px !important;
        word-break: break-all !important;
        padding: 10px !important;
    }
    
    /* Buttons in Results */
    .renovierung-widget-wrapper .reno-results-container button {
        width: 100% !important;
        max-width: 100% !important;
        padding: 14px 20px !important;
        font-size: 14px !important;
    }
    
    /* Timeline Mobile */
    .renovierung-widget-wrapper .reno-results-container div[style*="padding-left: 40px"] {
        padding-left: 20px !important;
    }
    
    /* Kostenvergleich Boxen */
    .renovierung-widget-wrapper .reno-results-container div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}

@media (max-width: 480px) {
    /* Extra kleine Screens */
    .renovierung-widget-wrapper .reno-results-container {
        padding: 8px !important;
    }
    
    .renovierung-widget-wrapper .reno-results-container > * {
        padding: 12px !important;
        border-radius: 8px !important;
    }
    
    /* Noch kleinere Schriftgrößen */
    .renovierung-widget-wrapper .reno-results-container h1 {
        font-size: 20px !important;
    }
    
    .renovierung-widget-wrapper .reno-results-container div[style*="font-size: 56px"],
    .renovierung-widget-wrapper .reno-results-container div[style*="font-size: 48px"] {
        font-size: 24px !important;
    }
    
    .renovierung-widget-wrapper .reno-results-container div[style*="font-size: 36px"],
    .renovierung-widget-wrapper .reno-results-container div[style*="font-size: 28px"] {
        font-size: 18px !important;
    }
    
    /* Usage Cards Mobile */
    .renovierung-widget-wrapper .reno-usage-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .renovierung-widget-wrapper .reno-usage-card {
        padding: 24px;
    }
    
    .renovierung-widget-wrapper .reno-usage-icon {
        font-size: 48px;
    }
    
    .renovierung-widget-wrapper .reno-usage-title {
        font-size: 22px;
    }
    
    /* Progress Steps Mobile */
    .renovierung-widget-wrapper .reno-progress-steps {
        min-width: auto;
        padding: 0 20px;
    }
    
    .renovierung-widget-wrapper .reno-progress-step-label {
        font-size: 10px;
    }
    
    /* Input Fields Mobile */
    .renovierung-widget-wrapper .reno-input-field {
        font-size: 16px; /* Verhindert Zoom auf iOS */
    }
}

/* Utility Classes für Results */
.renovierung-widget-wrapper .mobile-friendly {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

.renovierung-widget-wrapper .mobile-padding {
    padding: 16px !important;
}

.renovierung-widget-wrapper .mobile-text {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}