/**
 * RSO Turnkey Sales - Voltera Theme Override
 * 
 * Dieses CSS überschreibt die Standard-RSO-Farben für das Voltera-Branding
 * und fügt Conversion-optimierte Verbesserungen hinzu.
 * 
 * @package RSO_Turnkey_Sales
 * @since 1.0.0
 */

/* ========================================
   VOLTERA BRAND COLORS
   ======================================== */
:root {
    /* Primary Colors */
    --rso-primary: #0ea5e9;
    --rso-primary-hover: #0284c7;
    --rso-primary-light: #e0f2fe;
    --rso-primary-dark: #0369a1;
    
    /* Secondary Colors */
    --rso-secondary: #10b981;
    --rso-secondary-hover: #059669;
    
    /* Accent */
    --rso-accent: #f59e0b;
    --rso-accent-light: #fef3c7;
    
    /* Gradients */
    --rso-gradient: linear-gradient(135deg, #0ea5e9 0%, #8b5cf6 100%);
    --rso-gradient-success: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    
    /* Shadows */
    --rso-shadow-primary: 0 10px 25px rgba(14, 165, 233, 0.25);
    --rso-shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    
    /* Border Radius */
    --rso-radius: 16px;
    --rso-radius-sm: 12px;
    --rso-radius-lg: 24px;
}

/* ========================================
   UPLOAD WIZARD - STEP BY STEP
   ======================================== */

/* Wizard Progress Bar */
.rso-wizard-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0 40px;
    padding: 0 20px;
}

.rso-wizard-step {
    display: flex;
    align-items: center;
    position: relative;
}

.rso-wizard-step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--rso-gray-200);
    border: 3px solid var(--rso-gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--rso-gray-500);
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.rso-wizard-step.active .rso-wizard-step-circle {
    background: var(--rso-primary);
    border-color: var(--rso-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
    transform: scale(1.1);
}

.rso-wizard-step.completed .rso-wizard-step-circle {
    background: var(--rso-secondary);
    border-color: var(--rso-secondary);
    color: white;
}

.rso-wizard-step-connector {
    width: 60px;
    height: 3px;
    background: var(--rso-gray-300);
    transition: background 0.3s ease;
}

.rso-wizard-step.completed .rso-wizard-step-connector {
    background: var(--rso-secondary);
}

.rso-wizard-step:last-child .rso-wizard-step-connector {
    display: none;
}

/* Wizard Step Content */
.rso-wizard-step-content {
    background: white;
    border-radius: var(--rso-radius);
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.rso-wizard-step-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.rso-wizard-step-icon {
    font-size: 48px;
    line-height: 1;
}

.rso-wizard-step-info {
    flex: 1;
}

.rso-wizard-step-counter {
    font-size: 14px;
    color: var(--rso-gray-600);
    margin: 0 0 8px;
    font-weight: 500;
}

.rso-wizard-step-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--rso-gray-900);
    margin: 0;
    line-height: 1.2;
}

.rso-wizard-step-description {
    background: var(--rso-primary-light);
    border-left: 4px solid var(--rso-primary);
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.rso-wizard-step-description h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--rso-primary-dark);
    margin: 0 0 8px;
}

.rso-wizard-step-description p {
    font-size: 15px;
    color: var(--rso-gray-700);
    margin: 0;
    line-height: 1.6;
}

.rso-wizard-step-instructions {
    background: #fef3c7;
    border-left: 4px solid var(--rso-accent);
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.rso-wizard-step-instructions h4 {
    font-size: 16px;
    font-weight: 700;
    color: #92400e;
    margin: 0 0 12px;
}

.rso-wizard-tip-content {
    font-size: 15px;
    color: #78350f;
    line-height: 1.7;
}

/* Uploaded Files Preview */
.rso-wizard-uploaded-preview {
    margin-bottom: 24px;
}

.rso-wizard-success-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #d1fae5;
    color: #065f46;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 600;
    margin-bottom: 16px;
}

.rso-wizard-success-badge .rso-success-icon {
    font-size: 20px;
}

.rso-wizard-files-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
}

.rso-wizard-file-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    border: 2px solid var(--rso-gray-200);
    transition: all 0.2s ease;
}

.rso-wizard-file-item:hover {
    border-color: var(--rso-primary);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
}

.rso-wizard-file-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rso-wizard-delete-file {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.95);
    color: white;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.rso-wizard-file-item:hover .rso-wizard-delete-file {
    opacity: 1;
}

.rso-wizard-delete-file:hover {
    background: #dc2626;
}

/* Upload Zone */
.rso-wizard-upload-zone {
    margin-bottom: 24px;
}

.rso-wizard-dropzone {
    border: 3px dashed var(--rso-gray-300);
    border-radius: var(--rso-radius);
    padding: 48px 32px;
    text-align: center;
    transition: all 0.3s ease;
    background: var(--rso-gray-50);
}

.rso-wizard-dropzone:hover {
    border-color: var(--rso-primary);
    background: var(--rso-primary-light);
}

.rso-wizard-upload-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.rso-wizard-upload-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--rso-gray-700);
    margin: 0 0 24px;
}

.rso-wizard-upload-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.rso-btn-wizard {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    min-width: 180px;
}

/* Upload Status */
.rso-wizard-upload-status {
    background: white;
    border-radius: var(--rso-radius);
    padding: 24px;
    text-align: center;
}

.rso-wizard-upload-progress-bar {
    width: 100%;
    height: 12px;
    background: var(--rso-gray-200);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 16px;
}

.rso-wizard-upload-progress-fill {
    height: 100%;
    background: var(--rso-primary);
    transition: width 0.3s ease;
    border-radius: 999px;
}

.rso-wizard-upload-status-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--rso-gray-700);
}

.rso-upload-spinner {
    font-size: 24px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Navigation Buttons */
.rso-wizard-navigation {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-top: 32px;
}

.rso-wizard-navigation .rso-btn {
    flex: 1;
    max-width: 200px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
}

.rso-wizard-nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rso-wizard-prev {
    background: white;
    color: var(--rso-gray-700);
    border: 2px solid var(--rso-gray-300);
}

.rso-wizard-prev:hover {
    background: var(--rso-gray-50);
    border-color: var(--rso-gray-400);
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .rso-wizard-progress {
        padding: 0 10px;
    }
    
    .rso-wizard-step-circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .rso-wizard-step-connector {
        width: 30px;
    }
    
    .rso-wizard-step-content {
        padding: 24px 20px;
    }
    
    .rso-wizard-step-title {
        font-size: 22px;
    }
    
    .rso-wizard-upload-buttons {
        flex-direction: column;
    }
    
    .rso-btn-wizard {
        width: 100%;
    }
    
    .rso-wizard-navigation {
        flex-direction: column-reverse;
    }
    
    .rso-wizard-navigation .rso-btn {
        max-width: 100%;
    }
}

/* ========================================
   LEAD FORM - CONVERSION OPTIMIZED
   ======================================== */

/* Form Container */
.rso-lead-form-wrapper {
    max-width: 680px;
    margin: 0 auto;
}

.rso-lead-form {
    background: #ffffff;
    border: none;
    border-radius: var(--rso-radius-lg);
    box-shadow: var(--rso-shadow-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

/* Subtle gradient border effect */
.rso-lead-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--rso-gradient);
}

/* Progress Bar - More prominent */
.rso-progress {
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--rso-gray-200);
}

.rso-progress-bar {
    background: var(--rso-gradient);
    height: 6px;
    border-radius: 3px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.3);
}


/* Step Titles */
.rso-form-step h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--rso-gray-900);
    margin-bottom: 8px;
    line-height: 1.3;
}

.rso-step-description {
    font-size: 16px;
    color: var(--rso-gray-600);
    margin-bottom: 30px;
    line-height: 1.5;
}

/* ========================================
   LIVE RECOMMENDATION BOX - HERO ELEMENT
   ======================================== */
.rso-live-recommendation {
    background: linear-gradient(135deg, var(--rso-primary-light) 0%, #f0f9ff 100%);
    border: 2px solid var(--rso-primary);
    border-radius: var(--rso-radius);
    padding: 25px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

/* Animated pulse effect on update */
.rso-live-recommendation.rso-updated {
    animation: recommendationPulse 0.5s ease;
}

@keyframes recommendationPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(14, 165, 233, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(14, 165, 233, 0); }
}

.rso-recommendation-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.rso-recommendation-icon {
    font-size: 28px;
    animation: iconBounce 2s infinite;
}

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

.rso-recommendation-title {
    font-weight: 700;
    font-size: 18px;
    color: var(--rso-primary-dark);
}

.rso-recommendation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.rso-recommendation-size,
.rso-recommendation-price {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--rso-radius-sm);
}

.rso-size-label,
.rso-price-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--rso-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.rso-size-value {
    font-size: 48px;
    font-weight: 800;
    background: var(--rso-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.rso-size-unit {
    font-size: 20px;
    font-weight: 600;
    color: var(--rso-gray-600);
    margin-left: 4px;
}

.rso-price-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--rso-gray-900);
}

.rso-recommendation-note {
    font-size: 13px;
    color: var(--rso-gray-500);
    text-align: center;
    margin-top: 15px;
    margin-bottom: 0;
    font-style: italic;
}

/* ========================================
   FINANCING TEASER IN RECOMMENDATION
   ======================================== */
.rso-financing-teaser {
    background: var(--rso-accent-light);
    border: 1px solid var(--rso-accent);
    border-radius: var(--rso-radius-sm);
    padding: 12px 15px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.rso-financing-teaser-icon {
    font-size: 20px;
}

.rso-financing-teaser-text {
    font-size: 14px;
    font-weight: 600;
    color: #92400e;
}

.rso-financing-teaser-amount {
    font-weight: 800;
    color: #78350f;
}

/* ========================================
   FORM FIELDS - MODERN STYLING
   ======================================== */
.rso-field {
    margin-bottom: 24px;
}

.rso-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
    color: var(--rso-gray-800);
}

.rso-field input[type="text"],
.rso-field input[type="email"],
.rso-field input[type="tel"],
.rso-field input[type="number"],
.rso-field select,
.rso-field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--rso-gray-300);
    border-radius: var(--rso-radius-sm);
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.2s ease;
    background: #fff;
    color: var(--rso-gray-900);
    font-family: inherit;
    font-weight: 400;
}

.rso-field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
    cursor: pointer;
    height: auto;
    min-height: 48px;
}

.rso-field input:focus,
.rso-field select:focus,
.rso-field textarea:focus {
    outline: none;
    border-color: var(--rso-primary);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
}

.rso-field input.rso-invalid {
    border-color: var(--rso-danger);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}

/* Input Group with suffix */
.rso-input-group {
    display: flex;
    align-items: stretch;
}

.rso-input-group input {
    border-radius: var(--rso-radius-sm) 0 0 var(--rso-radius-sm);
    border-right: none;
}

.rso-input-suffix {
    padding: 14px 18px;
    background: transparent;
    border: 2px solid var(--rso-gray-300);
    border-left: none;
    border-radius: 0 var(--rso-radius-sm) var(--rso-radius-sm) 0;
    font-weight: 600;
    color: var(--rso-gray-700);
    display: flex;
    align-items: center;
}

/* ========================================
   RADIO CARDS - VISUAL SELECTION
   ======================================== */
.rso-radio-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.rso-radio-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
    border: 2px solid var(--rso-gray-300);
    border-radius: var(--rso-radius);
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    background: #fff;
}

.rso-radio-card:hover {
    border-color: var(--rso-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.rso-radio-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.rso-radio-card:has(input:checked) {
    border-color: var(--rso-primary);
    background: var(--rso-primary-light);
    box-shadow: var(--rso-shadow-primary);
}

.rso-card-icon {
    font-size: 40px;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.rso-radio-card:has(input:checked) .rso-card-icon {
    transform: scale(1.15);
}

.rso-card-title {
    font-weight: 700;
    font-size: 16px;
    color: var(--rso-gray-900);
    margin-bottom: 6px;
}

.rso-card-desc {
    font-size: 13px;
    color: var(--rso-gray-600);
    line-height: 1.4;
}

/* ========================================
   BUTTONS - CTA OPTIMIZED
   ======================================== */
.rso-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.rso-btn-primary,
.rso-btn-next,
.rso-btn-submit {
    background: var(--rso-gradient);
    color: #fff;
    box-shadow: var(--rso-shadow-primary);
}

.rso-btn-primary:hover,
.rso-btn-next:hover,
.rso-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.35);
}

.rso-btn-primary:active,
.rso-btn-next:active,
.rso-btn-submit:active {
    transform: translateY(0);
}

.rso-btn-secondary,
.rso-btn-prev {
    background: #fff;
    color: var(--rso-gray-700);
    border: 2px solid var(--rso-gray-300);
}

.rso-btn-secondary:hover,
.rso-btn-prev:hover {
    background: var(--rso-gray-100);
    border-color: var(--rso-gray-400);
}

/* Large CTA Button */
.rso-btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

/* Submit Button with Arrow */
.rso-btn-submit::after {
    content: '→';
    font-size: 20px;
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.rso-btn-submit:hover::after {
    transform: translateX(4px);
}

/* Navigation */
.rso-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid var(--rso-gray-200);
}

/* ========================================
   TRUST BADGES - ENHANCED
   ======================================== */
.rso-trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--rso-gray-200);
}

.rso-trust-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--rso-gray-600);
}

/* ========================================
   SOCIAL PROOF COUNTER
   ======================================== */
.rso-social-proof {
    background: linear-gradient(90deg, #fef3c7 0%, #fde68a 100%);
    border-radius: var(--rso-radius-sm);
    padding: 12px 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.rso-social-proof-icon {
    font-size: 20px;
}

.rso-social-proof-text {
    font-size: 14px;
    font-weight: 600;
    color: #78350f;
}

.rso-social-proof-count {
    font-weight: 800;
}

/* ========================================
   SUCCESS STATE
   ======================================== */
.rso-form-success {
    text-align: center;
    padding: 50px 30px;
}

.rso-success-icon {
    width: 80px;
    height: 80px;
    background: var(--rso-gradient-success);
    color: #fff;
    font-size: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.rso-form-success h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--rso-gray-900);
    margin-bottom: 15px;
}

.rso-form-success p {
    font-size: 16px;
    color: var(--rso-gray-600);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

/* ========================================
   SUMMARY SECTION
   ======================================== */
.rso-summary {
    background: var(--rso-gray-100);
    padding: 25px;
    border-radius: var(--rso-radius);
    margin-bottom: 25px;
}

.rso-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--rso-gray-200);
}

.rso-summary-item:last-child {
    border-bottom: none;
}

.rso-summary-label {
    font-weight: 500;
    color: var(--rso-gray-600);
}

.rso-summary-value {
    font-weight: 700;
    color: var(--rso-gray-900);
}

/* ========================================
   CHECKBOX STYLING
   ======================================== */
.rso-checkbox-field {
    margin-bottom: 20px;
}

.rso-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.rso-checkbox input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin: 0;
    flex-shrink: 0;
    accent-color: var(--rso-primary);
    cursor: pointer;
}

.rso-checkbox span {
    font-size: 14px;
    line-height: 1.5;
    color: var(--rso-gray-700);
}

.rso-checkbox a {
    color: var(--rso-primary);
    font-weight: 600;
}

/* ========================================
   LOADING STATE
   ======================================== */
.rso-loading {
    text-align: center;
    padding: 50px;
}

.rso-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--rso-gray-200);
    border-top-color: var(--rso-primary);
    border-radius: 50%;
    animation: rso-spin 0.8s linear infinite;
    margin: 0 auto 20px;
}

@keyframes rso-spin {
    to { transform: rotate(360deg); }
}

.rso-loading p {
    font-size: 16px;
    color: var(--rso-gray-600);
}

/* ========================================
   CUSTOMER PORTAL ENHANCEMENTS
   ======================================== */
.rso-customer-portal {
    max-width: 900px;
    margin: 0 auto;
}

.rso-portal-header {
    text-align: center;
    margin-bottom: 35px;
}

.rso-portal-header h2 {
    font-size: 32px;
    font-weight: 800;
    background: var(--rso-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.rso-customer-name {
    font-size: 18px;
    color: var(--rso-gray-600);
}

/* Status Badge */
.rso-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
}

.rso-status-badge::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.rso-status-customer_data_pending {
    background: var(--rso-accent-light);
    color: #92400e;
}

.rso-status-customer_data_pending::before {
    background: var(--rso-accent);
}

.rso-status-customer_data_complete,
.rso-status-effort_estimated {
    background: #dbeafe;
    color: #1e40af;
}

.rso-status-customer_data_complete::before,
.rso-status-effort_estimated::before {
    background: #3b82f6;
}

/* Checklist Section */
.rso-checklist-section {
    background: #fff;
    padding: 35px;
    border-radius: var(--rso-radius-lg);
    box-shadow: var(--rso-shadow-lg);
}

.rso-expectation-banner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--rso-primary-light);
    border: 2px solid var(--rso-primary);
    border-radius: var(--rso-radius);
    padding: 25px;
    margin-bottom: 30px;
}

.rso-expectation-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.rso-expectation-content h3 {
    margin: 0 0 8px 0;
    font-size: 22px;
    font-weight: 700;
    color: var(--rso-primary-dark);
}

.rso-expectation-time {
    font-size: 14px;
    font-weight: 600;
    color: var(--rso-primary);
    margin: 0 0 8px 0;
}

.rso-checklist-intro {
    margin: 0;
    font-size: 15px;
    color: var(--rso-gray-600);
    line-height: 1.5;
}

/* Progress Bar */
.rso-checklist-progress {
    margin-bottom: 30px;
}

.rso-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.rso-progress-text {
    font-weight: 600;
    font-size: 15px;
    color: var(--rso-gray-700);
}

.rso-progress-percent {
    font-size: 28px;
    font-weight: 800;
    background: var(--rso-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rso-progress-bar-wrapper {
    background: var(--rso-gray-200);
    height: 14px;
    border-radius: 7px;
    overflow: hidden;
}

.rso-checklist-progress .rso-progress-bar {
    background: var(--rso-gradient);
    height: 100%;
    border-radius: 7px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Checklist Groups */
.rso-checklist-group {
    margin-bottom: 25px;
    border: 2px solid var(--rso-gray-200);
    border-radius: var(--rso-radius);
    overflow: hidden;
}

.rso-group-header {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--rso-gray-100);
    padding: 20px;
    border-bottom: 2px solid var(--rso-gray-200);
}

.rso-group-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.rso-group-title {
    margin: 0 0 4px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--rso-gray-900);
}

.rso-group-description {
    margin: 0;
    font-size: 14px;
    color: var(--rso-gray-600);
}

.rso-group-badge {
    background: var(--rso-gradient);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    margin-left: auto;
}

/* Checklist Items */
.rso-checklist-item {
    padding: 20px;
    border-bottom: 1px solid var(--rso-gray-200);
    transition: all 0.3s ease;
}

.rso-checklist-item:last-child {
    border-bottom: none;
}

.rso-checklist-item.completed {
    background: rgba(16, 185, 129, 0.08);
}

.rso-checklist-item.active {
    background: #fff;
}

.rso-checklist-item.locked {
    opacity: 0.5;
    background: var(--rso-gray-100);
}

.rso-status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
}

.rso-status-icon.rso-completed {
    background: var(--rso-gradient-success);
    color: #fff;
}

.rso-status-icon.rso-active {
    background: var(--rso-gradient);
    color: #fff;
    animation: activePulse 2s infinite;
}

@keyframes activePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(14, 165, 233, 0); }
}

.rso-status-icon.rso-locked {
    background: var(--rso-gray-300);
    color: var(--rso-gray-500);
}

/* Upload Zone */
.rso-dropzone {
    border: 2px dashed var(--rso-gray-300);
    border-radius: var(--rso-radius);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    background: var(--rso-gray-50);
}

.rso-dropzone:hover,
.rso-dropzone.rso-dragover {
    border-color: var(--rso-primary);
    background: var(--rso-primary-light);
}

.rso-dropzone-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.rso-upload-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.rso-btn-camera,
.rso-btn-upload {
    min-width: 160px;
}

/* ========================================
   QUOTES SELECTION - CONVERSION FOCUSED
   ======================================== */
.rso-quotes-selection {
    background: #fff;
    border-radius: var(--rso-radius-lg);
    box-shadow: var(--rso-shadow-lg);
    overflow: hidden;
}

.rso-quotes-hero {
    background: var(--rso-gradient);
    color: #fff;
    padding: 50px 30px;
    text-align: center;
}

.rso-quotes-hero h2 {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 15px 0;
}

.rso-hero-subtitle {
    font-size: 18px;
    opacity: 0.95;
    margin: 0 0 30px 0;
}

.rso-quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 35px;
}

.rso-quote-card {
    border: 2px solid var(--rso-gray-300);
    border-radius: var(--rso-radius);
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    background: #fff;
}

.rso-quote-card:hover {
    border-color: var(--rso-primary);
    transform: translateY(-4px);
    box-shadow: var(--rso-shadow-lg);
}

.rso-quote-card.rso-recommended {
    border: 3px solid var(--rso-primary);
}

.rso-recommended-badge {
    position: absolute;
    top: -14px;
    right: 20px;
    background: var(--rso-gradient);
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rso-quote-price {
    background: var(--rso-gray-100);
    padding: 20px;
    border-radius: var(--rso-radius-sm);
    margin-bottom: 25px;
    text-align: center;
}

.rso-price-amount {
    font-size: 36px;
    font-weight: 800;
    background: var(--rso-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rso-btn-select-quote {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
}

/* ========================================
   WHATSAPP HELP BUTTON
   ======================================== */
.rso-whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 100;
}

.rso-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    padding: 14px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.rso-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.rso-whatsapp-icon {
    font-size: 24px;
}

/* ========================================
   MOBILE RESPONSIVE - TABLET (768px)
   ======================================== */
@media (max-width: 768px) {
    .rso-lead-form-wrapper {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .rso-lead-form {
        padding: 25px 20px;
        border-radius: var(--rso-radius);
    }
    
    .rso-form-step h3 {
        font-size: 22px;
        text-align: center;
    }
    
    .rso-step-description {
        text-align: center;
        font-size: 15px;
    }
    
    /* Progress Steps */
    .rso-progress {
        margin-bottom: 25px;
        padding-bottom: 15px;
    }
    
    .rso-step {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    /* Recommendation Box */
    .rso-live-recommendation {
        padding: 20px;
    }
    
    .rso-recommendation-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .rso-size-value {
        font-size: 36px;
    }
    
    /* Radio Cards */
    .rso-radio-cards {
        grid-template-columns: 1fr;
    }
    
    .rso-radio-card {
        padding: 16px;
    }
    
    /* Radio Group - Stack vertically */
    .rso-radio-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .rso-radio {
        padding: 12px 16px;
        background: var(--rso-gray-100);
        border-radius: var(--rso-radius-sm);
        width: 100%;
    }
    
    /* Navigation Buttons */
    .rso-nav {
        flex-direction: column-reverse;
        gap: 12px;
    }
    
    .rso-nav .rso-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .rso-nav .rso-btn-next,
    .rso-nav .rso-btn-submit {
        order: -1;
    }
    
    /* Trust Badges */
    .rso-trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 25px;
    }
    
    .rso-trust-badges span {
        font-size: 14px;
    }
    
    /* Input Fields */
    .rso-field label {
        font-size: 15px;
    }
    
    .rso-field input,
    .rso-field select {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    /* Input Group */
    .rso-input-group {
        flex-direction: row;
    }
    
    .rso-input-group input {
        min-width: 0;
        flex: 1;
    }
    
    .rso-input-suffix {
        padding: 14px 16px;
        font-size: 14px;
        white-space: nowrap;
    }
    
    /* Quotes Grid */
    .rso-quotes-grid {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }
    
    /* Upload Buttons */
    .rso-upload-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .rso-btn-camera,
    .rso-btn-upload {
        width: 100%;
    }
    
    /* WhatsApp Float */
    .rso-whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .rso-whatsapp-text {
        display: none;
    }
    
    .rso-whatsapp-btn {
        padding: 14px;
        border-radius: 50%;
    }
    
    /* Summary */
    .rso-summary {
        padding: 16px;
    }
    
    .rso-summary-item {
        flex-direction: column;
        gap: 4px;
        padding: 10px 0;
    }
    
    /* Checkbox Fields */
    .rso-checkbox-field .rso-checkbox {
        align-items: flex-start;
    }
    
    .rso-checkbox-field .rso-checkbox span {
        font-size: 13px;
        line-height: 1.5;
    }
    
    /* Save Progress Button */
    .rso-save-progress-btn {
        bottom: 80px;
        right: 15px;
        padding: 10px 14px;
        font-size: 13px;
    }
}

/* ========================================
   MOBILE RESPONSIVE - SMALL (480px)
   ======================================== */
@media (max-width: 480px) {
    .rso-lead-form-wrapper {
        padding: 0 10px;
    }
    
    .rso-lead-form {
        padding: 20px 16px;
        border-radius: var(--rso-radius-sm);
    }
    
    /* Remove gradient border on small screens for cleaner look */
    .rso-lead-form::before {
        height: 3px;
    }
    
    .rso-form-step h3 {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .rso-step-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    /* Progress - Compact */
    .rso-progress {
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
    
    .rso-progress-bar {
        height: 4px;
    }
    
    .rso-step {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .rso-step.active {
        transform: scale(1.05);
    }
    
    /* Recommendation Box - Compact */
    .rso-live-recommendation {
        padding: 16px;
        margin: 20px 0;
    }
    
    .rso-recommendation-header {
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .rso-recommendation-icon {
        font-size: 20px;
    }
    
    .rso-recommendation-title {
        font-size: 14px;
    }
    
    .rso-size-value {
        font-size: 32px;
    }
    
    .rso-size-label,
    .rso-price-label {
        font-size: 12px;
    }
    
    .rso-price-value {
        font-size: 15px;
    }
    
    .rso-recommendation-note {
        font-size: 12px;
        margin-top: 12px;
    }
    
    /* Fields - Compact */
    .rso-field {
        margin-bottom: 16px;
    }
    
    .rso-field label {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .rso-field input,
    .rso-field select {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .rso-field-hint {
        font-size: 12px;
        margin-top: 4px;
    }
    
    /* Radio Cards - Compact */
    .rso-radio-card {
        padding: 14px;
    }
    
    .rso-card-icon {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .rso-card-title {
        font-size: 14px;
    }
    
    .rso-card-desc {
        font-size: 12px;
    }
    
    /* Navigation - Full Width */
    .rso-nav {
        margin-top: 24px;
        gap: 10px;
    }
    
    .rso-nav .rso-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    /* Trust Badges - Compact */
    .rso-trust-badges {
        gap: 8px;
        margin-top: 20px;
    }
    
    .rso-trust-badges span {
        font-size: 13px;
    }
    
    /* Summary - Compact */
    .rso-summary {
        padding: 14px;
        margin-bottom: 16px;
    }
    
    .rso-summary-item {
        padding: 8px 0;
    }
    
    .rso-summary-label {
        font-size: 13px;
    }
    
    .rso-summary-value {
        font-size: 14px;
    }
    
    /* Checkbox - Compact */
    .rso-checkbox-field {
        margin-bottom: 12px;
    }
    
    .rso-checkbox-field .rso-checkbox input {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
    
    .rso-checkbox-field .rso-checkbox span {
        font-size: 12px;
    }
    
    /* Success State */
    .rso-form-success {
        padding: 30px 16px;
    }
    
    .rso-success-icon {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
    
    .rso-form-success h3 {
        font-size: 20px;
    }
    
    .rso-form-success p {
        font-size: 14px;
    }
    
    /* Loading State */
    .rso-loading {
        padding: 30px 16px;
    }
    
    .rso-spinner {
        width: 32px;
        height: 32px;
    }
    
    /* Error State */
    .rso-form-error {
        padding: 12px;
        font-size: 14px;
    }
    
    /* Save Progress Modal */
    .rso-modal-content {
        padding: 20px;
        margin: 15px;
        border-radius: var(--rso-radius-sm);
    }
    
    .rso-modal-content h3 {
        font-size: 18px;
    }
    
    /* Save Progress Button - Smaller */
    .rso-save-progress-btn {
        padding: 8px 12px;
        font-size: 12px;
        bottom: 70px;
    }
}

/* ========================================
   TOUCH DEVICE OPTIMIZATIONS
   ======================================== */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .rso-btn {
        min-height: 48px;
    }
    
    .rso-radio,
    .rso-checkbox {
        min-height: 44px;
        padding: 10px 12px;
    }
    
    .rso-radio input,
    .rso-checkbox input {
        width: 22px;
        height: 22px;
    }
    
    .rso-radio-card {
        min-height: 80px;
    }
    
    /* Remove hover effects on touch */
    .rso-btn:hover {
        transform: none;
    }
    
    .rso-radio-card:hover {
        border-color: var(--rso-gray-300);
    }
    
    .rso-radio-card:has(input:checked):hover {
        border-color: var(--rso-primary);
    }
}

/* ========================================
   LANDSCAPE MOBILE
   ======================================== */
@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
    .rso-lead-form {
        padding: 20px;
    }
    
    .rso-form-step h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .rso-step-description {
        margin-bottom: 15px;
        font-size: 14px;
    }
    
    .rso-field {
        margin-bottom: 12px;
    }
    
    .rso-nav {
        flex-direction: row;
        margin-top: 20px;
    }
    
    .rso-nav .rso-btn {
        flex: 1;
    }
    
    .rso-live-recommendation {
        padding: 15px;
    }
    
    .rso-recommendation-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* ========================================
   HIGH DPI / RETINA DISPLAYS
   ======================================== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .rso-lead-form {
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    }
    
    .rso-progress-bar {
        box-shadow: 0 1px 4px rgba(14, 165, 233, 0.2);
    }
}

/* ========================================
   DARK MODE SUPPORT (optional)
   ======================================== */
@media (prefers-color-scheme: dark) {
    /* Only apply if user hasn't set explicit theme */
    .rso-lead-form-wrapper[data-theme="auto"] {
        --rso-gray-100: #1f2937;
        --rso-gray-200: #374151;
        --rso-gray-300: #4b5563;
        --rso-gray-600: #9ca3af;
        --rso-gray-900: #f9fafb;
    }
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    .rso-progress-bar,
    .rso-step,
    .rso-btn,
    .rso-radio-card,
    * {
        transition: none !important;
        animation: none !important;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .rso-lead-form-wrapper {
        max-width: 100%;
    }
    
    .rso-lead-form {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .rso-nav,
    .rso-save-progress-btn,
    .rso-whatsapp-float {
        display: none !important;
    }
}

/* ========================================
   WORKFLOW TIMELINE (7 Schritte)
   ======================================== */
.rso-workflow-timeline {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, var(--rso-gray-100) 0%, #fff 100%);
    border-radius: var(--rso-radius);
    overflow-x: auto;
}

.rso-timeline-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    min-width: 700px;
    position: relative;
}

/* Verbindungslinie */
.rso-timeline-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 30px;
    right: 30px;
    height: 3px;
    background: var(--rso-gray-300);
    z-index: 0;
}

.rso-timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.rso-step-indicator {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--rso-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    position: relative;
    transition: all 0.3s ease;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.rso-step-icon {
    font-size: 20px;
    display: none;
}

.rso-step-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--rso-gray-500);
}

.rso-step-content {
    max-width: 90px;
}

.rso-step-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--rso-gray-600);
    line-height: 1.3;
}

/* Completed Step */
.rso-timeline-step.rso-step-completed .rso-step-indicator {
    background: var(--step-color, var(--rso-secondary));
}

.rso-timeline-step.rso-step-completed .rso-step-number {
    display: none;
}

.rso-timeline-step.rso-step-completed .rso-step-icon {
    display: block;
    color: #fff;
}

.rso-timeline-step.rso-step-completed .rso-step-title {
    color: var(--rso-gray-700);
}

/* Current Step */
.rso-timeline-step.rso-step-current .rso-step-indicator {
    background: var(--step-color, var(--rso-primary));
    transform: scale(1.15);
    box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: currentStepPulse 2s infinite;
}

@keyframes currentStepPulse {
    0%, 100% { box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15); }
    50% { box-shadow: 0 0 0 10px rgba(14, 165, 233, 0.1), 0 4px 12px rgba(0, 0, 0, 0.15); }
}

.rso-timeline-step.rso-step-current .rso-step-number {
    color: #fff;
    font-size: 18px;
}

.rso-timeline-step.rso-step-current .rso-step-title {
    color: var(--rso-primary);
    font-weight: 700;
}

/* Pending Step */
.rso-timeline-step.rso-step-pending .rso-step-indicator {
    background: var(--rso-gray-200);
}

.rso-timeline-step.rso-step-pending .rso-step-title {
    color: var(--rso-gray-400);
}

/* ========================================
   NEXT ACTION BOX
   ======================================== */
.rso-next-action {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--rso-primary-light);
    border: 2px solid var(--rso-primary);
    border-radius: var(--rso-radius);
    padding: 25px;
    margin: 25px 0;
}

.rso-next-action.rso-action-urgent {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: var(--rso-accent);
    animation: urgentPulse 3s infinite;
}

@keyframes urgentPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.3); }
    50% { box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); }
}

.rso-action-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.rso-action-content {
    flex: 1;
}

.rso-action-title {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--rso-gray-900);
}

.rso-action-description {
    margin: 0 0 15px 0;
    font-size: 15px;
    color: var(--rso-gray-700);
    line-height: 1.5;
}

.rso-action-cta {
    margin-top: 5px;
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .rso-whatsapp-float,
    .rso-save-progress-btn,
    .rso-nav {
        display: none !important;
    }
}

/* ========================================
   MOBILE TIMELINE
   ======================================== */
@media (max-width: 768px) {
    .rso-workflow-timeline {
        padding: 15px;
    }
    
    .rso-timeline-steps {
        min-width: 600px;
        gap: 4px;
    }
    
    .rso-step-indicator {
        width: 36px;
        height: 36px;
    }
    
    .rso-step-icon {
        font-size: 16px;
    }
    
    .rso-step-number {
        font-size: 14px;
    }
    
    .rso-step-title {
        font-size: 10px;
    }
    
    .rso-next-action {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .rso-action-icon {
        font-size: 48px;
    }
}

/* ========================================
   ORDER CONFIRMATION STATE
   ======================================== */
.rso-selected-state {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #22c55e;
    border-radius: var(--rso-radius-lg);
    padding: 32px;
    text-align: center;
    margin-top: 20px;
}

.rso-selected-icon {
    width: 80px;
    height: 80px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

.rso-selected-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--rso-gray-900);
    margin: 0 0 16px;
}

.rso-selected-message {
    font-size: 18px;
    color: var(--rso-gray-700);
    margin: 0 0 12px;
    line-height: 1.6;
}

.rso-selected-next {
    font-size: 16px;
    color: var(--rso-gray-600);
    margin: 0;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .rso-selected-state {
        padding: 24px 16px;
    }
    
    .rso-selected-icon {
        width: 60px;
        height: 60px;
        font-size: 36px;
        margin-bottom: 16px;
    }
    
    .rso-selected-title {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .rso-selected-message {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .rso-selected-next {
        font-size: 14px;
    }
}

/* ========================================
   OFFER PAGE - ADDON / UPSELLING CARDS
   ======================================== */

.rso-offer-addons {
    margin: 40px 0;
    padding: 32px;
    background: #f8fafc;
    border-radius: var(--rso-radius, 16px);
}

.rso-offer-addons h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #1e293b;
}

.rso-addons-subtitle {
    color: #64748b;
    margin: 0 0 24px;
    font-size: 15px;
}

.rso-addon-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.rso-addon-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: var(--rso-radius-sm, 12px);
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1 1 280px;
    max-width: 400px;
}

.rso-addon-card:hover {
    border-color: var(--rso-primary, #0ea5e9);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.1);
}

.rso-addon-card.rso-addon-selected {
    border-color: var(--rso-primary, #0ea5e9);
    background: var(--rso-primary-light, #e0f2fe);
}

.rso-addon-checkbox {
    width: 20px;
    height: 20px;
    accent-color: var(--rso-primary, #0ea5e9);
    flex-shrink: 0;
    cursor: pointer;
}

.rso-addon-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.rso-addon-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 14px;
    flex: 1 1 auto;
}

.rso-addon-price {
    font-weight: 700;
    color: var(--rso-primary-dark, #0369a1);
    font-size: 15px;
    white-space: nowrap;
}

.rso-addon-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rso-addon-badge-required {
    background: var(--rso-secondary, #10b981);
    color: #fff;
}

.rso-addon-badge-recommended {
    background: var(--rso-accent-light, #fef3c7);
    color: #92400e;
}

.rso-addons-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #fff;
    border-radius: var(--rso-radius-sm, 12px);
    border: 1px solid #e2e8f0;
}

.rso-addons-total-label {
    font-weight: 600;
    color: #475569;
    font-size: 15px;
}

.rso-addons-total-value {
    font-weight: 700;
    color: var(--rso-primary-dark, #0369a1);
    font-size: 18px;
}

@media (max-width: 768px) {
    .rso-offer-addons {
        padding: 20px 16px;
        margin: 24px 0;
    }

    .rso-addon-cards {
        flex-direction: column;
    }

    .rso-addon-card {
        max-width: 100%;
    }
}
