        body {
            font-family: 'Nunito', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            min-height: 100vh;
        }
        .top-bar {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 15px 20px;
            text-align: center;
        }
        .top-bar h1 {
            font-size: 24px;
            font-weight: 800;
            cursor: pointer;
        }
        .container {
            max-width: 600px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        .progress-bar {
            display: flex;
            gap: 8px;
            margin-bottom: 30px;
        }
        .progress-step {
            flex: 1;
            height: 6px;
            background: #e5e7eb;
            border-radius: 3px;
            transition: background 0.3s;
        }
        .progress-step.active {
            background: var(--primary);
        }
        .progress-step.completed {
            background: var(--primary);
        }
        .card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            margin-bottom: 20px;
        }
        .card h2 {
            font-size: 24px;
            margin-bottom: 10px;
            text-align: center;
        }
        .card p {
            color: var(--text-light);
            text-align: center;
            margin-bottom: 25px;
        }
        .options {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .option {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 18px 20px;
            border: 2px solid #e5e7eb;
            border-radius: 14px;
            cursor: pointer;
            transition: all 0.2s;
            background: white;
        }
        .option:hover {
            border-color: var(--primary);
            background: #f0fdf4;
        }
        .option.selected {
            border-color: var(--primary);
            background: #f0fdf4;
        }
        .option-icon {
            font-size: 28px;
        }
        .option-text {
            flex: 1;
        }
        .option-text strong {
            display: block;
            font-size: 16px;
            margin-bottom: 2px;
        }
        .option-text span {
            font-size: 15px;
            color: var(--text-light);
        }
        .option-check {
            width: 24px;
            height: 24px;
            border: 2px solid #e5e7eb;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            transition: all 0.2s;
        }
        .option.selected .option-check {
            background: var(--primary);
            border-color: var(--primary);
        }
        .btn {
            display: block;
            width: 100%;
            border-radius: 14px;
            font-size: 18px;
            text-align: center;
        }
        .btn-primary {
            background: var(--primary);
            color: white;
        }
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }
        .btn-primary:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
        }
        .btn-secondary {
            background: #e5e7eb;
            color: var(--text);
            margin-top: 10px;
        }
        .btn-secondary:hover {
            background: #d1d5db;
        }
        input[type="text"], textarea {
            width: 100%;
            padding: 16px;
            border: 2px solid #e5e7eb;
            border-radius: 14px;
            font-size: 16px;
            margin-bottom: 12px;
            background: white;
            color: var(--text);
            font-family: inherit;
        }
        input:focus, textarea:focus {
            outline: none;
            border-color: var(--primary);
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .step { display: none; }
        .step.active { display: block; }
        .checkbox-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }
        .checkbox-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 14px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 14px;
        }
        .checkbox-item:hover {
            border-color: var(--primary);
        }
        .checkbox-item.selected {
            border-color: var(--primary);
            background: #f0fdf4;
        }
        .checkbox-item .cb {
            width: 20px;
            height: 20px;
            border: 2px solid #ccc;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: white;
        }
        .checkbox-item.selected .cb {
            background: var(--primary);
            border-color: var(--primary);
        }
        .summary-section {
            margin-bottom: 20px;
        }
        .summary-section h4 {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 8px;
        }
        .summary-section p {
            text-align: left;
            margin-bottom: 0;
        }
        .summary-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .summary-tag {
            background: #f0fdf4;
            border: 1px solid var(--primary);
            color: var(--primary-dark);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 15px;
            font-weight: 600;
        }
        .back-link {
            display: block;
            text-align: center;
            margin-top: 20px;
            color: var(--text-light);
            text-decoration: none;
            font-size: 16px;
        }
        .back-link:hover {
            color: var(--primary);
        }
        @media (max-width: 500px) {
            .checkbox-grid {
                grid-template-columns: 1fr;
            }
        }

/* ========== DARK MODE ========== */
body.dark-mode {
    --bg: #131f24;
    --card-bg: #202f36;
    --text: #e5e5e5;
    --text-light: #a3a3a3;
}
body.dark-mode .card {
    background: #202f36;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
body.dark-mode .progress-step {
    background: #37464f;
}
body.dark-mode .option-card {
    background: #131f24;
    border-color: #37464f;
    color: #e5e5e5;
}
body.dark-mode .option-card:hover {
    border-color: var(--primary);
}
body.dark-mode .option-card.selected {
    background: rgba(88, 204, 2, 0.1);
}
body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
    background: #131f24;
    border-color: #37464f;
    color: #e5e5e5;
}
body.dark-mode input:focus,
body.dark-mode textarea:focus,
body.dark-mode select:focus {
    border-color: var(--primary);
}
body.dark-mode .toast {
    background: #202f36;
    color: #e5e5e5;
    border-color: var(--primary);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
