        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: 1rem;
        }
        
        body.admin-impersonating { padding-top: calc(1rem + 50px) !important; }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            overflow: hidden;
            min-height: min(90vh, 800px);
            display: flex;
            flex-direction: column;
        }
        
        .header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 1rem 1.5rem 1.25rem;
            text-align: center;
            flex-shrink: 0;
        }
        
        .header h1 {
            font-size: 1.6rem;
            margin-bottom: 0.25rem;
        }
        
        .header p {
            font-size: 0.95rem;
            opacity: 0.9;
        }
        
        .header-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 0.5rem 1rem;
            margin-top: 0.35rem;
        }
        
        .header-row .btn {
            flex-shrink: 0;
        }
        
        .content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            flex: 1;
            min-height: 0;
            overflow: hidden;
        }
        @media (min-width: 969px) {
            .content { grid-template-columns: 1fr 1fr; }
        }
        
        /* Live Preview Panel Styles */
        .live-preview-panel {
            background: #f8fafc;
            padding: 0;
            border-left: 1px solid #e2e8f0;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            max-height: calc(100vh - 220px);
            min-height: 400px;
            display: flex;
            flex-direction: column;
        }
        .live-preview-header {
            padding: 1rem 1.5rem;
            background: #fff;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-shrink: 0;
        }
        .live-preview-header h3 {
            margin: 0;
            font-size: 1rem;
            color: #1e293b;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .live-preview-header .theme-badge {
            font-size: 0.75rem;
            color: #64748b;
            background: #f1f5f9;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            font-weight: 500;
        }
        .live-preview-content {
            flex: 1;
            padding: 1rem;
            overflow-y: auto;
        }
        .live-preview-placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            color: #94a3b8;
            text-align: center;
            padding: 2rem;
        }
        .live-preview-placeholder p {
            margin: 0;
            font-size: 0.95rem;
        }
        .live-preview-placeholder .hint {
            font-size: 0.85rem;
            margin-top: 0.5rem;
            color: #cbd5e1;
        }
        
        /* Preview Components */
        .preview-nav {
            display: flex;
            align-items: center;
            padding: 0.75rem 1rem;
            background: #fff;
            border-radius: 8px;
            margin-bottom: 1rem;
            box-shadow: 0 1px 3px rgba(0,0,0,0.08);
        }
        .preview-nav-logo {
            font-weight: 700;
            color: var(--preview-primary, #667eea);
            font-size: 1rem;
            margin-right: auto;
        }
        .preview-nav-links {
            display: flex;
            gap: 1rem;
            font-size: 0.85rem;
            color: #64748b;
        }
        .preview-nav-links span {
            cursor: default;
        }
        .preview-hero {
            padding: 2.5rem 1.5rem;
            text-align: center;
            background: var(--preview-gradient, linear-gradient(135deg, #667eea 0%, #764ba2 100%));
            color: #fff;
            border-radius: 12px;
            margin-bottom: 1rem;
            position: relative;
            overflow: hidden;
        }
        .preview-hero h1 {
            font-size: 1.75rem;
            margin: 0 0 0.75rem 0;
            font-weight: 700;
            line-height: 1.2;
        }
        .preview-hero .location {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-bottom: 0.5rem;
        }
        .preview-hero .description {
            font-size: 1rem;
            opacity: 0.95;
            max-width: 500px;
            margin: 0 auto;
            line-height: 1.5;
        }
        .preview-services {
            padding: 1.5rem;
            background: #fff;
            border-radius: 12px;
            margin-bottom: 1rem;
            box-shadow: 0 1px 3px rgba(0,0,0,0.08);
        }
        .preview-services h2 {
            font-size: 1.1rem;
            margin: 0 0 1rem 0;
            color: #1e293b;
        }
        .preview-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 0.75rem;
        }
        .preview-service-card {
            padding: 0.75rem;
            background: #f8fafc;
            border-radius: 8px;
            text-align: center;
            font-size: 0.85rem;
            color: #475569;
            border: 1px solid #e2e8f0;
        }
        .preview-cta {
            padding: 1.5rem;
            background: var(--preview-gradient, linear-gradient(135deg, #667eea 0%, #764ba2 100%));
            border-radius: 12px;
            text-align: center;
            color: #fff;
        }
        .preview-cta h3 {
            font-size: 1.1rem;
            margin: 0 0 0.5rem 0;
            font-weight: 600;
        }
        .preview-cta p {
            font-size: 0.9rem;
            margin: 0 0 1rem 0;
            opacity: 0.9;
        }
        .preview-cta button {
            padding: 0.6rem 1.25rem;
            background: #fff;
            color: var(--preview-primary, #667eea);
            border: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: default;
        }
        
        /* Mobile toggle for preview */
        .preview-mobile-toggle {
            display: none;
            padding: 0.75rem;
            background: #f8fafc;
            border-bottom: 1px solid #e2e8f0;
        }
        .preview-mobile-toggle button {
            flex: 1;
            padding: 0.5rem 1rem;
            border: 1px solid #e2e8f0;
            background: #fff;
            cursor: pointer;
            font-size: 0.9rem;
            border-radius: 6px;
        }
        .preview-mobile-toggle button.active {
            background: #667eea;
            color: #fff;
            border-color: #667eea;
        }
        
        @media (max-width: 968px) {
            .preview-mobile-toggle {
                display: flex;
                gap: 0.5rem;
            }
            .live-preview-panel.mobile-hide,
            .wizard-panel.mobile-hide {
                display: none;
            }
        }
        
        .wizard-panel {
            padding: 2rem;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            max-height: calc(100vh - 220px);
            min-height: 400px;
        }
        
        /* Legacy quick-check-panel hidden - replaced by live-preview-panel */
        .quick-check-panel {
            display: none !important;
        }
        
        .tabs {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            border-bottom: 2px solid #e0e0e0;
        }
        
        .tab {
            padding: 1rem 2rem;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            color: #666;
            border-bottom: 3px solid transparent;
            transition: all 0.3s;
        }
        
        .tab.active {
            color: #667eea;
            border-bottom-color: #667eea;
            font-weight: 600;
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
        }
        
        .steps-indicator {
            display: flex;
            justify-content: space-between;
            margin-bottom: 2rem;
            position: relative;
        }
        
        .steps-indicator::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 0;
            right: 0;
            height: 2px;
            background: #e0e0e0;
            z-index: 0;
        }
        
        .step {
            position: relative;
            z-index: 1;
            text-align: center;
            flex: 1;
        }
        
        .step-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #e0e0e0;
            color: #666;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.5rem;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .step.active .step-number {
            background: #667eea;
            color: white;
        }
        
        .step.completed .step-number {
            background: #28a745;
            color: white;
        }
        
        .step-label {
            font-size: 0.875rem;
            color: #666;
        }
        
        .step.active .step-label {
            color: #667eea;
            font-weight: 600;
        }
        
        /* Substappen binnen stap 1 */
        .step-sub { display: none !important; }
        .step-sub.active { display: block !important; }
        .step1-substeps { display: flex; flex-wrap: wrap; gap: 0.5rem; }
        .step1-substeps .step-substep { cursor: pointer; }
        .step1-substeps .step-substep.active .step-number { background: #667eea; color: #fff; }
        
        .form-group {
            margin-bottom: 2rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #333;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.875rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #667eea;
        }
        
        .chips {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 0.5rem;
        }
        
        .chip {
            padding: 0.5rem 1rem;
            background: #f0f0f0;
            border: 2px solid #e0e0e0;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 0.9rem;
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .chip.removable-chip {
            padding-right: 0.5rem;
        }
        
        .chip-remove {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: rgba(0,0,0,0.1);
            color: #666;
            font-size: 16px;
            line-height: 1;
            cursor: pointer;
            transition: all 0.2s;
            margin-left: 0.25rem;
            flex-shrink: 0;
        }
        
        .chip-remove:hover {
            background: #ef4444;
            color: #fff;
            transform: scale(1.1);
        }
        
        .chip:hover {
            background: #e0e0e0;
        }
        
        .chip.selected {
            background: #667eea;
            color: white;
            border-color: #667eea;
        }
        
        .idea-card {
            display: inline-block;
            padding: 0.6rem 1rem;
            margin: 0.35rem;
            background: #f8f9fa;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 0.95rem;
        }
        .idea-card:hover {
            border-color: #667eea;
            background: #eef0ff;
        }
        .idea-card.selected {
            background: #667eea;
            color: white;
            border-color: #667eea;
        }
        .llm-badge {
            display: inline-block;
            padding: 0.4rem 0.8rem;
            background: linear-gradient(135deg, #667eea22 0%, #764ba222 100%);
            border: 1px solid #667eea44;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #555;
            margin-bottom: 1rem;
        }
        
        .btn {
            padding: 0.875rem 2rem;
            background: #667eea;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn:hover {
            background: #5568d3;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
        }
        
        .btn-secondary {
            background: #6c757d;
        }
        
        .btn-secondary:hover {
            background: #5a6268;
        }
        
        .btn-success {
            background: #28a745;
        }
        
        .btn-success:hover {
            background: #218838;
        }
        
        .btn-group {
            display: flex;
            gap: 1rem;
            justify-content: space-between;
            margin-top: 2rem;
        }
        
        .domain-input-group {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        .domain-input-group input {
            flex: 1;
        }
        
        .tld-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        
        .tld-btn {
            padding: 0.5rem 1rem;
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .tld-btn:hover {
            border-color: #667eea;
        }
        
        .tld-btn.selected {
            background: #667eea;
            color: white;
            border-color: #667eea;
        }
        
        .domain-result {
            padding: 1rem;
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            margin-bottom: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .domain-result.available {
            border-color: #28a745;
        }
        
        .domain-result.taken {
            border-color: #dc3545;
        }
        
        .status-badge {
            display: inline-block;
            padding: 0.25rem 0.6rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }
        .status-badge.status-beschikbaar {
            background: #d1e7dd;
            color: #0f5132;
        }
        .status-badge.status-bezet {
            background: #f8d7da;
            color: #721c24;
        }
        .whois-link {
            font-size: 0.8rem;
            margin-left: 0.5rem;
            color: #0d6efd;
            cursor: pointer;
        }
        .whois-link:hover { text-decoration: underline; }
        .whois-panel {
            margin-top: 1rem;
            padding: 1rem;
            background: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            font-size: 0.8rem;
            max-height: 220px;
            overflow: auto;
        }
        .whois-panel pre { margin: 0; white-space: pre-wrap; word-break: break-all; }
        .top-sect { margin-bottom: 1.25rem; }
        .top-sect h4 { font-size: 0.95rem; margin: 0 0 0.5rem 0; color: #333; }
        
        .price-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1rem;
        }
        
        .price-table th,
        .price-table td {
            padding: 0.75rem;
            text-align: left;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .price-table th {
            background: #f8f9fa;
            font-weight: 600;
        }
        
        .loading {
            text-align: center;
            padding: 2rem;
            color: #666;
        }
        
        .ai-suggestions {
            margin-top: 1rem;
            padding: 1rem;
            background: #e3f2fd;
            border-radius: 8px;
        }
        
        .ai-suggestion-item {
            padding: 0.75rem;
            background: white;
            border-radius: 6px;
            margin-bottom: 0.5rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .ai-suggestion-item:hover {
            background: #f0f0f0;
            transform: translateX(5px);
        }
        
        .overview-card {
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .overview-card h3 {
            margin-bottom: 1rem;
            color: #667eea;
        }
        
        .overview-item {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .overview-item:last-child {
            border-bottom: none;
        }
        
        .price-section {
            margin-top: 0;
            border-top: 1px solid #e8e8e8;
            background: #fafafa;
            flex-shrink: 0;
        }
        .price-section summary {
            padding: 0.5rem 1rem;
            cursor: pointer;
            font-weight: 500;
            font-size: 0.85rem;
            color: #888;
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: center;
            user-select: none;
            transition: color 0.2s;
        }
        .price-section summary:hover { color: #667eea; }
        .price-section summary::-webkit-details-marker { display: none; }
        .price-section summary::after {
            content: '▼';
            font-size: 0.65rem;
            color: #999;
            margin-left: 0.35rem;
            transition: transform 0.2s;
        }
        .price-section[open] summary::after { transform: rotate(-180deg); }
        .price-section-inner {
            padding: 1rem 1.5rem 1.5rem;
            max-width: 100%;
            width: 100%;
        }
        .website-wizard-cta {
            padding: 2rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 12px;
            color: white;
            text-align: center;
            margin-bottom: 1.5rem;
        }
        .website-wizard-cta h3 { margin: 0 0 0.5rem 0; font-size: 1.35rem; }
        .website-wizard-cta p { margin: 0 0 1.25rem 0; opacity: 0.95; font-size: 1rem; }
        .website-wizard-cta .btn {
            display: inline-block;
            padding: 1rem 2rem;
            background: white;
            color: #667eea;
            font-weight: 600;
            border-radius: 8px;
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .website-wizard-cta .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.2);
        }
        .ai-full-proposal-block {
            padding: 1.5rem;
            background: linear-gradient(135deg, #667eea08 0%, #764ba210 100%);
            border: 2px solid rgba(102,126,234,0.25);
            border-radius: 12px;
            margin: 1.5rem 0;
        }
        .ai-full-proposal-block .ai-proposal-lead {
            font-size: 1.05rem;
            font-weight: 600;
            color: #333;
            margin: 0 0 1rem 0;
        }
        .ai-full-proposal-block .btn-ai-full {
            width: 100%;
            padding: 1rem 1.5rem;
            font-size: 1.1rem;
        }
        .ai-proposal-result-box {
            margin-bottom: 1.5rem;
            padding: 1.25rem;
            background: #f8f9fa;
            border-radius: 12px;
            border: 1px solid #e0e0e0;
        }
        .ai-proposal-result-box.ai-proposal-reveal {
            animation: aiReveal 0.4s ease-out;
        }
        @keyframes aiReveal {
            from { opacity: 0; transform: translateY(-8px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .ai-step-hint {
            font-size: 0.9rem;
            color: #555;
            margin-bottom: 1rem;
            line-height: 1.45;
        }
        .ai-proposal-progress {
            padding: 1.5rem;
            text-align: center;
            background: linear-gradient(135deg, #e8eeff 0%, #f5f7ff 100%);
            border-radius: 12px;
            border: 2px solid #d0d8ff;
        }
        .ai-proposal-spinner {
            width: 48px;
            height: 48px;
            margin: 0 auto 1rem;
            border: 4px solid #e0e4ff;
            border-top-color: #667eea;
            border-radius: 50%;
            animation: ai-spin 0.9s linear infinite;
        }
        @keyframes ai-spin { to { transform: rotate(360deg); } }
        .ai-proposal-progress p { margin: 0.25rem 0; font-size: 1rem; color: #333; font-weight: 600; }
        .ai-proposal-progress .ai-proposal-sub { font-size: 0.85rem; color: #666; font-weight: 400; }
        .ai-proposal-stagger { animation: aiReveal 0.15s ease-out backwards; }
        .ai-mindmap-box {
            margin-top: 1.25rem;
            padding: 1.25rem;
            background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
            border-radius: 12px;
            border: 1px solid #e0e4ff;
        }
        .ai-mindmap-box h4 { font-size: 1rem; margin: 0 0 0.75rem 0; color: #667eea; }
        .ai-mindmap-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.5rem; }
        .ai-mindmap-node { padding: 0.4rem 0.65rem; background: #fff; border-radius: 8px; border: 1px solid #e0e0e0; font-size: 0.85rem; }
        .ai-mindmap-node strong { display: block; font-size: 0.7rem; text-transform: uppercase; color: #999; margin-bottom: 0.15rem; }
        /* Tabelweergave AI-voorstel (AG Grid-achtig) */
        .ai-table-view-wrap { margin-top: 1.5rem; background: #fff; border-radius: 12px; border: 1px solid #e2e8f0; box-shadow: 0 4px 20px rgba(0,0,0,0.06); overflow: hidden; }
        .ai-table-view-wrap .ai-table-tabs { display: flex; flex-wrap: wrap; gap: 0.25rem; padding: 0.75rem 1rem; background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); border-bottom: 2px solid #e2e8f0; }
        .ai-table-view-wrap .ai-table-tab { padding: 0.5rem 1rem; font-size: 0.9rem; font-weight: 600; color: #64748b; background: #fff; border: 1px solid #e2e8f0; border-radius: 8px; cursor: pointer; transition: all 0.2s; }
        .ai-table-view-wrap .ai-table-tab:hover { color: #667eea; border-color: #667eea; background: #f8f9ff; }
        .ai-table-view-wrap .ai-table-tab.active { color: #fff; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); border-color: transparent; }
        .ai-table-view-wrap .ai-table-panel { display: none; padding: 0; overflow: auto; max-height: 420px; }
        .ai-table-view-wrap .ai-table-panel.active { display: block; }
        .ai-table-view-wrap .ai-data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
        .ai-table-view-wrap .ai-data-table th { position: sticky; top: 0; padding: 0.75rem 1rem; text-align: left; font-weight: 600; color: #334155; background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%); border-bottom: 2px solid #cbd5e1; z-index: 1; }
        .ai-table-view-wrap .ai-data-table td { padding: 0.65rem 1rem; border-bottom: 1px solid #e2e8f0; color: #475569; }
        .ai-table-view-wrap .ai-data-table tbody tr:hover { background: #f8fafc; }
        .ai-table-view-wrap .ai-data-table tbody tr:nth-child(even) { background: #fafafa; }
        .ai-table-view-wrap .ai-data-table tbody tr:nth-child(even):hover { background: #f1f5f9; }
        .ai-table-view-wrap .ai-data-table .col-nr { width: 2.5rem; text-align: center; color: #94a3b8; font-weight: 600; }
        .ai-table-view-wrap .ai-table-empty { padding: 2rem; text-align: center; color: #94a3b8; font-size: 0.95rem; }
        .step1-bedrijfsnaam-first {
            padding: 1rem 0;
            margin-bottom: 0.5rem;
        }
        .step1-bedrijfsnaam-first label[for="company-name"] {
            font-size: 1.05rem;
        }
        .step1-bedrijfsnaam-first input#company-name {
            font-size: 1.05rem;
            padding: 0.75rem 1rem;
        }
        @media (min-width: 769px) {
            body { padding: 1rem 2rem; }
            .container {
                height: calc(100vh - 2rem);
                max-height: calc(100vh - 2rem);
                min-height: 0;
            }
            .header { padding: 1.25rem 2rem; flex-shrink: 0; }
            .header h1 { font-size: 1.75rem; }
            .header p { font-size: 1.1rem; }
            .content {
                flex: 1;
                min-height: 0;
                align-content: stretch;
            }
            .wizard-panel, .live-preview-panel {
                padding: 2rem 3rem;
                height: 100%;
                max-height: none;
                min-height: 0;
            }
            .live-preview-panel {
                padding: 0;
            }
            .price-section summary {
                padding: 0.4rem 0.75rem;
                font-size: 0.8rem;
                color: #999;
            }
        }
        @media (max-width: 968px) {
            .content {
                grid-template-columns: 1fr;
            }
            .live-preview-panel {
                border-left: none;
                border-top: 2px solid #667eea;
                max-height: none;
                min-height: 0;
            }
            .wizard-panel {
                max-height: none;
                min-height: 0;
            }
            .container { min-height: 0; }
        }
        @media (max-width: 480px) {
            body { padding: 0.5rem; }
            .container { border-radius: 12px; }
            .header { padding: 1.25rem 1rem; }
            .header h1 { font-size: 1.5rem; }
            .header p { font-size: 0.9rem; }
            .wizard-panel { padding: 1.25rem; }
            .steps-indicator .step-label { font-size: 0.75rem; }
            .step-number { width: 32px; height: 32px; font-size: 0.9rem; }
            .chip { padding: 0.4rem 0.8rem; font-size: 0.85rem; }
            .ai-full-proposal-block { padding: 1rem; }
            .ai-full-proposal-block .btn-ai-full { font-size: 1rem; padding: 0.9rem; }
        }
        .domein-toast {
            position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
            background: #333; color: #fff; padding: 0.75rem 1.25rem; border-radius: 8px;
            font-size: 0.9rem; z-index: 9999; box-shadow: 0 4px 20px rgba(0,0,0,0.25);
            animation: toastIn 0.3s ease-out;
        }
        @keyframes toastIn { from { opacity: 0; transform: translateX(-50%) translateY(10px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
        .ai-field-help { font-size: 0.85rem; color: #667eea; cursor: pointer; margin-top: 0.25rem; display: inline-flex; align-items: center; gap: 0.35rem; }
        .ai-field-help:hover { text-decoration: underline; }
        .typewriter-cursor::after { content: '|'; animation: blink 0.8s step-end infinite; }
        @keyframes blink { 50% { opacity: 0; } }
        .step2-full-overview { 
            padding: 0; 
            background: transparent; 
            border-radius: 0; 
            margin-bottom: 1.5rem; 
        }
        #step2-summary {
            min-height: 200px;
        }
        .wizard-actions-extra { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; margin-top: 1rem; }
        .wizard-actions-extra .btn { font-size: 0.9rem; padding: 0.5rem 1rem; }
        @media print {
            .header .header-actions, .tabs, .btn-group, .wizard-actions-extra, .price-section, .quick-check-panel,
            .domein-toast, .ai-field-help, .ai-full-proposal-block, .steps-indicator, .no-print { display: none !important; }
            .container { box-shadow: none; }
        }
        /* IT Live site header & footer (zelfde als itlive.nl en /domeinnaam/) */
        body.has-itlive-shell { background: #f8fafc !important; }
        .page-wrap-domein { max-width: 1400px; margin: 0 auto; background: #fff; min-height: 100vh; }
        .itlive-nav { position: sticky; top: 0; z-index: 100; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); border-bottom: 2px solid #667eea; padding: 1rem; margin-bottom: 0; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
        .itlive-nav-inner { display: flex; flex-direction: row; align-items: center; justify-content: space-between; max-width: 1400px; margin: 0 auto; flex-wrap: wrap; gap: 0.5rem; }
        .itlive-nav a { color: #fff; text-decoration: none; border-radius: 6px; font-size: 0.9rem; font-weight: 500; transition: all 0.2s; border: 1px solid transparent; opacity: 0.95; }
        .itlive-nav a:hover { opacity: 1; background: rgba(255,255,255,0.2); }
        .itlive-logo { font-size: 1.25rem; font-weight: bold; color: #fff; }
        /* Alleen op desktop nav-links tonen als flex; op mobiel gebruikt de shell display:none + hamburger toggle */
        @media (min-width: 769px) {
        .itlive-nav-links { display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; justify-content: flex-end; }
        .itlive-nav-links a { padding: 0.5rem 1rem; }
        }
        .itlive-footer { background: linear-gradient(145deg, #1e293b 0%, #0f172a 50%, #1e293b 100%); color: #f1f5f9; padding: 3.5rem 1.5rem 2rem; margin-top: 0; box-shadow: 0 -4px 24px rgba(0,0,0,0.2); border-top: 1px solid rgba(255,255,255,0.12); }
        .footer-shiny-link { color: rgba(255,255,255,0.95); text-decoration: none; position: relative; display: inline-block; overflow: hidden; transition: color 0.25s ease, opacity 0.25s ease; }
        .footer-shiny-link::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); transition: left 0.5s ease; }
        .footer-shiny-link::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: linear-gradient(90deg, rgba(255,255,255,0.95), rgba(255,255,255,0.5)); transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1); }
        .footer-shiny-link:hover { opacity: 1; color: #fff; }
        .footer-shiny-link:hover::before { left: 100%; }
        .footer-shiny-link:hover::after { width: 100%; }
        .footer-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(120px, auto) minmax(120px, auto) minmax(120px, auto); gap: 2.5rem 3rem; margin-bottom: 2.5rem; align-items: start; max-width: 72rem; margin-left: auto; margin-right: auto; }
        .footer-grid h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: 0.02em; line-height: 1.2; }
        .footer-grid h4 { font-size: 0.7rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.95; }
        .footer-grid ul { list-style: none; padding: 0; margin: 0; font-size: 0.9rem; line-height: 1.8; }
        @media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 2rem !important; } }
        @media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr !important; gap: 2rem !important; } }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; max-width: 72rem; margin: 0 auto; }
        .footer-bottom p { font-size: 0.85rem; opacity: 0.9; margin: 0; }
        .footer-bottom-links { display: flex; align-items: center; gap: 0.75rem; font-size: 0.85rem; }
        .floating-buttons { position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 9999; display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-end; }
        .floating-buttons a { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; color: #fff; text-decoration: none; font-size: 1.5rem; transition: transform 0.2s ease, box-shadow 0.2s ease; }
        .floating-buttons a:hover { transform: scale(1.05); }
        .floating-wa { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45); }
        .floating-tel { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); box-shadow: 0 4px 14px rgba(102, 126, 234, 0.45); }
