        /* ==========================================================================
           CSS Variables - CW/AD Onboarding Wizard
           ========================================================================== */
        :root {
            --wizard-primary: #8b5cf6;
            --wizard-primary-hover: #7c3aed;
            --wizard-primary-light: rgba(139, 92, 246, 0.15);
            --wizard-success: #10b981;
            --wizard-success-hover: #059669;
            --wizard-warning: #f59e0b;
            --wizard-danger: #ef4444;
            --wizard-info: #3b82f6;

            --step-pending: #4b5563;
            --step-active: var(--wizard-primary);
            --step-completed: var(--wizard-success);

            --wizard-bg: #0F1419;
            --wizard-card-bg: #1A1F2E;
            --wizard-border: rgba(96, 165, 250, 0.2);
            --wizard-text: #f9fafb;
            --wizard-text-muted: #9ca3af;
            --wizard-shadow: 0 4px 6px -1px rgba(30, 58, 138, 0.3);
            --wizard-shadow-lg: 0 10px 15px -3px rgba(30, 58, 138, 0.4);

            --wizard-radius: 12px;
            --wizard-radius-sm: 8px;
            --wizard-radius-full: 9999px;
            --wizard-transition: all 0.3s ease;
            --wizard-max-width: 1200px;

            --wizard-space-xs: 0.25rem;
            --wizard-space-sm: 0.5rem;
            --wizard-space-md: 1rem;
            --wizard-space-lg: 1.5rem;
            --wizard-space-xl: 2rem;
            --wizard-space-2xl: 3rem;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--wizard-bg);
            color: var(--wizard-text);
            min-height: 100vh;
            line-height: 1.6;
        }

        /* ==========================================================================
           Toast Notifications
           ========================================================================== */
        .toast-container {
            position: fixed;
            top: 80px;
            right: 20px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 10px;
            pointer-events: none;
        }

        .toast {
            background: var(--wizard-card-bg);
            border: 1px solid var(--wizard-border);
            border-radius: var(--wizard-radius);
            padding: 16px 20px;
            min-width: 320px;
            max-width: 420px;
            box-shadow: var(--wizard-shadow-lg);
            display: flex;
            align-items: flex-start;
            gap: 12px;
            pointer-events: auto;
            animation: toastSlideIn 0.3s ease;
            transform-origin: top right;
        }

        .toast.hiding {
            animation: toastSlideOut 0.3s ease forwards;
        }

        @keyframes toastSlideIn {
            from {
                opacity: 0;
                transform: translateX(100%);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes toastSlideOut {
            from {
                opacity: 1;
                transform: translateX(0);
            }
            to {
                opacity: 0;
                transform: translateX(100%);
            }
        }

        .toast-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 12px;
        }

        .toast.success .toast-icon {
            background: rgba(16, 185, 129, 0.2);
            color: var(--wizard-success);
        }

        .toast.info .toast-icon {
            background: rgba(59, 130, 246, 0.2);
            color: var(--wizard-info);
        }

        .toast.warning .toast-icon {
            background: rgba(245, 158, 11, 0.2);
            color: var(--wizard-warning);
        }

        .toast-content {
            flex: 1;
        }

        .toast-title {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--wizard-text);
            margin-bottom: 4px;
        }

        .toast-message {
            font-size: 0.85rem;
            color: var(--wizard-text-muted);
            line-height: 1.4;
        }

        .toast-close {
            background: none;
            border: none;
            color: var(--wizard-text-muted);
            cursor: pointer;
            padding: 4px;
            font-size: 14px;
            transition: color 0.2s;
        }

        .toast-close:hover {
            color: var(--wizard-text);
        }

        .toast-location-list {
            margin-top: 8px;
            padding-top: 8px;
            border-top: 1px solid var(--wizard-border);
        }

        .toast-location-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            color: var(--wizard-text-muted);
            padding: 4px 0;
        }

        .toast-location-item i {
            color: var(--wizard-success);
            font-size: 10px;
        }

        /* ==========================================================================
           Header
           ========================================================================== */
        .onboarding-header {
            background: var(--wizard-card-bg);
            border-bottom: 1px solid var(--wizard-border);
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .header-logo .logo {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.5rem;
            letter-spacing: 0.1em;
            color: #FAFAFA;
            text-decoration: none;
        }

        .header-logo .logo-slash {
            color: #4A9FD4;
            animation: blink 1s step-end infinite;
        }

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

        .header-logo .sub-brand {
            color: var(--wizard-text-muted);
            font-weight: 400;
            font-size: 0.875rem;
            margin-left: 0.5rem;
            padding-left: 0.75rem;
            border-left: 1px solid var(--wizard-border);
        }

        .header-actions {
            display: flex;
            gap: 1rem;
        }

        .btn-icon {
            width: 40px;
            height: 40px;
            border-radius: var(--wizard-radius-sm);
            border: 1px solid var(--wizard-border);
            background: transparent;
            color: var(--wizard-text-muted);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--wizard-transition);
        }

        .btn-icon:hover {
            border-color: var(--wizard-primary);
            color: var(--wizard-primary);
        }

        /* ==========================================================================
           Main Container
           ========================================================================== */
        .onboarding-container {
            max-width: var(--wizard-max-width);
            margin: 0 auto;
            padding: var(--wizard-space-xl);
        }

        /* ==========================================================================
           Progress Indicator
           ========================================================================== */
        .wizard-progress {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: var(--wizard-space-xl);
            padding: var(--wizard-space-lg);
            background: var(--wizard-card-bg);
            border-radius: var(--wizard-radius);
            border: 1px solid var(--wizard-border);
        }

        .wizard-progress-track {
            display: flex;
            align-items: center;
        }

        .wizard-step-indicator {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            padding: 0 var(--wizard-space-lg);
        }

        .wizard-step-indicator:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 18px;
            left: calc(50% + 28px);
            width: 50px;
            height: 2px;
            background: var(--step-pending);
            transition: var(--wizard-transition);
        }

        .wizard-step-indicator.completed:not(:last-child)::after {
            background: var(--step-completed);
        }

        .wizard-step-indicator.active:not(:last-child)::after {
            background: linear-gradient(90deg, var(--step-active) 0%, var(--step-pending) 100%);
        }

        .wizard-step-circle {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 2px solid var(--step-pending);
            background: var(--wizard-card-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 0.875rem;
            color: var(--wizard-text-muted);
            transition: var(--wizard-transition);
        }

        .wizard-step-indicator.active .wizard-step-circle {
            background: linear-gradient(135deg, #a08dd6 0%, #8b5cf6 100%);
            border-color: transparent;
            color: white;
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
        }

        .wizard-step-indicator.completed .wizard-step-circle {
            background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
            border-color: transparent;
            color: white;
        }

        .wizard-step-indicator.completed {
            cursor: pointer;
        }

        .wizard-step-indicator.completed:hover .wizard-step-circle {
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
            transform: scale(1.1);
        }

        .wizard-step-label {
            margin-top: var(--wizard-space-sm);
            font-size: 0.6875rem;
            color: var(--wizard-text-muted);
            text-align: center;
            max-width: 70px;
        }

        .wizard-step-indicator.active .wizard-step-label {
            color: var(--wizard-primary);
            font-weight: 600;
        }

        /* Mobile step context label (hidden on desktop) */
        .wizard-step-context {
            display: none;
        }

        /* ==========================================================================
           Step Content
           ========================================================================== */
        .wizard-step {
            display: none;
            animation: fadeIn 0.3s ease;
        }

        .wizard-step.active { display: block; }

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

        .wizard-step-content {
            background: var(--wizard-card-bg);
            border-radius: var(--wizard-radius);
            padding: var(--wizard-space-xl);
            border: 1px solid var(--wizard-border);
            box-shadow: var(--wizard-shadow);
        }

        .wizard-step-content h2 {
            color: var(--wizard-primary);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: var(--wizard-space-sm);
        }

        .wizard-step-content > p {
            color: var(--wizard-text-muted);
            margin-bottom: var(--wizard-space-xl);
        }

        /* ==========================================================================
           Step 1: Plan Selection — Matches marketing pricing cards
           ========================================================================== */
        .plan-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: var(--wizard-space-xl);
            max-width: 1200px;
        }

        .plan-card {
            background: #FAFAFA;
            border: 2px solid #1a1a1a;
            padding: 28px 20px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            position: relative;
            border-radius: 0;
        }

        .plan-card:hover {
            transform: translateY(-8px);
            box-shadow: 8px 8px 0 rgba(255,255,255,0.15);
        }

        .plan-card.selected {
            border-color: #4A9FD4;
            box-shadow: 0 0 0 1px #4A9FD4, 0 0 20px rgba(74,159,212,0.25);
        }

        .plan-card.popular {
            background: #0A0A0A;
            color: #FAFAFA;
            border-color: #4A9FD4;
            transform: scale(1.02);
            box-shadow: 0 8px 32px rgba(0,0,0,0.3);
        }

        .plan-card.popular:hover {
            transform: scale(1.02) translateY(-8px);
        }

        .plan-card.popular.selected {
            box-shadow: 0 0 0 1px #4A9FD4, 0 0 24px rgba(74,159,212,0.3), 0 8px 32px rgba(0,0,0,0.3);
        }

        .plan-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #4A9FD4;
            color: #0A0A0A;
            font-family: 'Oswald', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 6px 16px;
            white-space: nowrap;
        }

        .plan-icon {
            display: none;
        }

        .plan-label {
            font-family: 'Oswald', sans-serif;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #4A9FD4;
            margin-bottom: 6px;
        }

        .plan-name {
            font-family: 'Anton', sans-serif;
            font-size: 2rem;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            color: #1a1a1a;
            margin-bottom: 8px;
        }

        .plan-card.popular .plan-name {
            color: #FAFAFA;
        }

        .plan-subtitle {
            display: none;
        }

        .plan-price {
            font-family: 'Anton', sans-serif;
            font-size: 3.5rem;
            line-height: 1;
            color: #1a1a1a;
            margin-bottom: 2px;
        }

        .plan-card.popular .plan-price {
            color: #FAFAFA;
        }

        .plan-period {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.9rem;
            color: rgba(0,0,0,0.5);
            margin-bottom: 20px;
        }

        .plan-card.popular .plan-period {
            color: rgba(255,255,255,0.5);
        }

        .plan-features {
            list-style: none;
            padding: 0;
            margin: 0 0 8px 0;
        }

        .plan-features li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.95rem;
            line-height: 1.4;
            color: #1a1a1a;
        }

        .plan-card.popular .plan-features li {
            border-color: rgba(255,255,255,0.15);
            color: #FAFAFA;
        }

        .plan-features li:last-child {
            border-bottom: none;
        }

        .plan-features li i {
            color: #4A9FD4;
            font-size: 0.75rem;
            margin-right: 0.35rem;
        }

        /* ==========================================================================
           Step 2: Website URL Entry
           ========================================================================== */
        .url-input-section {
            text-align: center;
            padding: var(--wizard-space-xl) 0;
        }

        .url-icon {
            width: 80px;
            height: 80px;
            background: var(--wizard-primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto var(--wizard-space-xl);
            font-size: 2rem;
            color: var(--wizard-primary);
        }

        .url-input-wrapper {
            max-width: 500px;
            margin: 0 auto;
        }

        .url-input-group {
            display: flex;
            align-items: center;
            background: var(--wizard-bg);
            border: 2px solid var(--wizard-border);
            border-radius: var(--wizard-radius);
            overflow: hidden;
            transition: var(--wizard-transition);
        }

        .url-input-group:focus-within {
            border-color: var(--wizard-primary);
            box-shadow: 0 0 0 3px var(--wizard-primary-light);
        }

        .url-input-group.error {
            border-color: var(--wizard-danger);
        }

        .url-prefix {
            padding: 1rem;
            background: var(--wizard-card-bg);
            color: var(--wizard-text-muted);
            font-size: 0.9375rem;
            border-right: 1px solid var(--wizard-border);
        }

        .url-input {
            flex: 1;
            padding: 1rem;
            border: none;
            background: transparent;
            color: var(--wizard-text);
            font-size: 1rem;
            outline: none;
        }

        .url-input::placeholder {
            color: var(--wizard-text-muted);
        }

        .url-help {
            margin-top: var(--wizard-space-md);
            font-size: 0.8125rem;
            color: var(--wizard-text-muted);
        }

        .url-error {
            margin-top: var(--wizard-space-sm);
            font-size: 0.8125rem;
            color: var(--wizard-danger);
            display: none;
        }

        .url-error.visible {
            display: block;
        }

        .url-examples {
            display: flex;
            justify-content: center;
            gap: var(--wizard-space-md);
            margin-top: var(--wizard-space-lg);
            flex-wrap: wrap;
        }

        .url-example {
            padding: 0.5rem 1rem;
            background: var(--wizard-bg);
            border: 1px solid var(--wizard-border);
            border-radius: var(--wizard-radius-full);
            font-size: 0.75rem;
            color: var(--wizard-text-muted);
            cursor: pointer;
            transition: var(--wizard-transition);
        }

        .url-example:hover {
            border-color: var(--wizard-primary);
            color: var(--wizard-primary);
        }

        /* Business name input */
        .business-name-group {
            max-width: 500px;
            margin: var(--wizard-space-xl) auto 0;
        }

        .business-name-label {
            display: block;
            font-size: 0.875rem;
            color: var(--wizard-text-muted);
            margin-bottom: var(--wizard-space-sm);
            text-align: left;
        }

        .business-name-input {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--wizard-border);
            border-radius: var(--wizard-radius);
            background: var(--wizard-bg);
            color: var(--wizard-text);
            font-size: 1rem;
            outline: none;
            transition: var(--wizard-transition);
        }

        .business-name-input:focus {
            border-color: var(--wizard-primary);
            box-shadow: 0 0 0 3px var(--wizard-primary-light);
        }

        /* ==========================================================================
           Step 3: Scraping / Knowledge Base Creation
           ========================================================================== */
        .scraping-section {
            text-align: center;
        }

        .scraping-visual {
            background: var(--wizard-bg);
            border: 1px solid var(--wizard-border);
            border-radius: var(--wizard-radius);
            padding: var(--wizard-space-xl);
            margin-bottom: var(--wizard-space-xl);
            min-height: 400px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .scraping-animation {
            position: relative;
            width: 200px;
            height: 200px;
            margin-bottom: var(--wizard-space-xl);
        }

        .scraping-globe {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--wizard-primary-light) 0%, var(--wizard-primary) 100%);
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
            animation: pulse 2s ease-in-out infinite;
        }

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

        .scraping-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 180px;
            height: 180px;
            border: 2px dashed var(--wizard-primary);
            border-radius: 50%;
            animation: spin 10s linear infinite;
        }

        @keyframes spin {
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .scraping-dots {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .scraping-dot {
            position: absolute;
            width: 12px;
            height: 12px;
            background: var(--wizard-success);
            border-radius: 50%;
            animation: dotPulse 1.5s ease-in-out infinite;
        }

        .scraping-dot:nth-child(1) { top: -90px; left: -6px; animation-delay: 0s; }
        .scraping-dot:nth-child(2) { top: -45px; left: 70px; animation-delay: 0.3s; }
        .scraping-dot:nth-child(3) { top: 45px; left: 70px; animation-delay: 0.6s; }
        .scraping-dot:nth-child(4) { top: 90px; left: -6px; animation-delay: 0.9s; }
        .scraping-dot:nth-child(5) { top: 45px; left: -82px; animation-delay: 1.2s; }
        .scraping-dot:nth-child(6) { top: -45px; left: -82px; animation-delay: 1.5s; }

        @keyframes dotPulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.5); opacity: 1; }
        }

        .scraping-status {
            margin-bottom: var(--wizard-space-lg);
        }

        .scraping-status h3 {
            font-size: 1.25rem;
            color: var(--wizard-text);
            margin-bottom: var(--wizard-space-sm);
        }

        .scraping-status p {
            color: var(--wizard-text-muted);
            font-size: 0.9375rem;
        }

        .scraping-progress-bar {
            width: 100%;
            max-width: 400px;
            height: 8px;
            background: var(--wizard-border);
            border-radius: var(--wizard-radius-full);
            overflow: hidden;
            margin: 0 auto var(--wizard-space-lg);
        }

        .scraping-progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--wizard-primary) 0%, var(--wizard-success) 100%);
            border-radius: var(--wizard-radius-full);
            width: 0%;
            transition: width 0.5s ease;
        }

        .scraping-stats {
            display: flex;
            justify-content: center;
            gap: var(--wizard-space-xl);
            flex-wrap: wrap;
        }

        .scraping-stat {
            text-align: center;
        }

        .scraping-stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--wizard-primary);
        }

        .scraping-stat-label {
            font-size: 0.75rem;
            color: var(--wizard-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Pages being scraped feed */
        .scraping-feed {
            background: var(--wizard-bg);
            border: 1px solid var(--wizard-border);
            border-radius: var(--wizard-radius-sm);
            padding: var(--wizard-space-md);
            max-height: 200px;
            overflow-y: auto;
            text-align: left;
            font-family: 'Monaco', 'Menlo', monospace;
            font-size: 0.75rem;
        }

        .feed-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.375rem 0;
            color: var(--wizard-text-muted);
            border-bottom: 1px solid var(--wizard-border);
        }

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

        .feed-item i.success { color: var(--wizard-success); }
        .feed-item i.pending { color: var(--wizard-warning); }
        .feed-item i.info { color: var(--wizard-info); }

        .feed-item .page-url {
            flex: 1;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .feed-item .page-status {
            font-size: 0.6875rem;
            padding: 0.125rem 0.5rem;
            border-radius: var(--wizard-radius-full);
            background: var(--wizard-primary-light);
            color: var(--wizard-primary);
        }

        /* ==========================================================================
           Step 4: Knowledge Base Review
           ========================================================================== */
        .knowledge-review {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--wizard-space-lg);
        }

        .knowledge-section {
            background: var(--wizard-bg);
            border: 1px solid var(--wizard-border);
            border-radius: var(--wizard-radius);
            padding: var(--wizard-space-lg);
        }

        .knowledge-section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: var(--wizard-space-md);
            padding-bottom: var(--wizard-space-sm);
            border-bottom: 1px solid var(--wizard-border);
        }

        .knowledge-section-title {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            color: var(--wizard-text);
        }

        .knowledge-section-title i {
            color: var(--wizard-primary);
        }

        .knowledge-section-status {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            font-size: 0.75rem;
            color: var(--wizard-success);
        }

        .knowledge-section-status.missing {
            color: var(--wizard-warning);
        }

        .knowledge-items {
            display: flex;
            flex-direction: column;
            gap: var(--wizard-space-sm);
        }

        .knowledge-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: var(--wizard-space-sm);
            background: var(--wizard-card-bg);
            border-radius: var(--wizard-radius-sm);
        }

        .knowledge-item-label {
            font-size: 0.875rem;
            color: var(--wizard-text-muted);
        }

        .knowledge-item-value {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--wizard-text);
        }

        .knowledge-item-value.editable {
            background: transparent;
            border: 1px solid transparent;
            padding: 0.25rem 0.5rem;
            border-radius: var(--wizard-radius-sm);
            cursor: pointer;
            transition: var(--wizard-transition);
        }

        .knowledge-item-value.editable:hover {
            border-color: var(--wizard-border);
            background: var(--wizard-bg);
        }

        .add-info-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
            padding: 0.75rem;
            margin-top: var(--wizard-space-md);
            background: transparent;
            border: 1px dashed var(--wizard-border);
            border-radius: var(--wizard-radius-sm);
            color: var(--wizard-text-muted);
            font-size: 0.8125rem;
            cursor: pointer;
            transition: var(--wizard-transition);
        }

        .add-info-btn:hover {
            border-color: var(--wizard-primary);
            color: var(--wizard-primary);
        }

        /* Description textarea */
        .review-description-textarea {
            width: 100%;
            padding: 0.75rem;
            background: var(--wizard-card-bg);
            border: 1px solid var(--wizard-border);
            border-radius: var(--wizard-radius-sm);
            color: var(--wizard-text);
            font-family: inherit;
            font-size: 0.875rem;
            line-height: 1.6;
            resize: vertical;
            min-height: 80px;
            transition: border-color 0.2s;
            box-sizing: border-box;
        }
        .review-description-textarea:focus {
            outline: none;
            border-color: var(--wizard-primary);
        }
        .review-description-textarea::placeholder {
            color: var(--wizard-text-muted);
        }

        /* FAQ item remove button — show on hover */
        .faq-item .remove-btn {
            opacity: 0;
            transition: opacity 0.2s;
        }
        .faq-item:hover .remove-btn {
            opacity: 1;
        }

        .scan-summary {
            margin-top: var(--wizard-space-xl);
            padding: var(--wizard-space-lg);
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
            border: 1px solid var(--wizard-success);
            border-radius: var(--wizard-radius);
        }

        .scan-summary-title {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--wizard-success);
            margin-bottom: var(--wizard-space-md);
        }

        .scan-summary-stats {
            display: flex;
            justify-content: center;
            gap: var(--wizard-space-xl);
            flex-wrap: wrap;
        }

        .scan-stat {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 80px;
        }

        .scan-stat-value {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--wizard-text);
        }

        .scan-stat-label {
            font-size: 0.75rem;
            color: var(--wizard-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* ==========================================================================
           Step 5: Get Embed Code
           ========================================================================== */
        .embed-section {
            text-align: center;
        }

        .widget-preview {
            background: var(--wizard-bg);
            border: 1px solid var(--wizard-border);
            border-radius: var(--wizard-radius);
            padding: var(--wizard-space-xl);
            margin-bottom: var(--wizard-space-xl);
            position: relative;
            min-height: 300px;
        }

        .preview-browser {
            background: #1a1a2e;
            border-radius: var(--wizard-radius);
            overflow: hidden;
            max-width: 600px;
            margin: 0 auto;
        }

        .preview-browser-bar {
            background: #16162a;
            padding: 0.5rem 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .preview-browser-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ff5f57;
        }

        .preview-browser-dot:nth-child(2) { background: #febc2e; }
        .preview-browser-dot:nth-child(3) { background: #28c840; }

        .preview-browser-url {
            flex: 1;
            margin-left: 1rem;
            padding: 0.25rem 0.75rem;
            background: var(--wizard-bg);
            border-radius: var(--wizard-radius-sm);
            font-size: 0.75rem;
            color: var(--wizard-text-muted);
        }

        .preview-browser-content {
            padding: 2rem;
            min-height: 200px;
            position: relative;
        }

        .preview-placeholder {
            color: var(--wizard-text-muted);
            font-size: 0.875rem;
        }

        .preview-widget {
            position: absolute;
            bottom: 1rem;
            right: 1rem;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #a08dd6 0%, #8b5cf6 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
            animation: widgetBounce 2s ease-in-out infinite;
        }

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

        .preview-widget { cursor: pointer; }

        .preview-chat-window {
            position: absolute;
            bottom: 5rem;
            right: 1rem;
            width: 220px;
            background: var(--wizard-card-bg);
            border: 1px solid var(--wizard-border);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.4);
            opacity: 0;
            transform: translateY(10px) scale(0.95);
            transition: opacity 0.25s ease, transform 0.25s ease;
            pointer-events: none;
        }
        .preview-chat-window.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: auto;
        }
        .preview-chat-header {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 12px;
            color: white;
            font-size: 13px;
            font-weight: 600;
            background: linear-gradient(135deg, #a08dd6 0%, #8b5cf6 100%);
        }
        .preview-chat-body {
            padding: 12px;
        }
        .preview-chat-msg {
            background: rgba(139, 92, 246, 0.1);
            border-radius: 10px 10px 10px 2px;
            padding: 8px 12px;
            font-size: 12px;
            color: var(--wizard-text);
            line-height: 1.4;
        }

        /* ==========================================================================
           Step 5: CTA Configuration
           ========================================================================== */
        .cta-selection-section {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-option-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--wizard-space-md);
            margin-bottom: var(--wizard-space-xl);
        }

        .cta-option-card {
            background: var(--wizard-card-bg);
            border: 2px solid var(--wizard-border);
            border-radius: 12px;
            padding: var(--wizard-space-lg);
            cursor: pointer;
            transition: var(--wizard-transition);
            display: flex;
            align-items: flex-start;
            gap: var(--wizard-space-md);
            position: relative;
        }

        .cta-option-card:hover {
            border-color: var(--wizard-primary);
            transform: translateY(-2px);
        }

        .cta-option-card.selected {
            border-color: var(--wizard-primary);
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
        }

        .cta-option-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--wizard-primary) 0%, #A78BFA 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .cta-option-icon i {
            font-size: 1.25rem;
            color: white;
        }

        .cta-option-content {
            flex: 1;
        }

        .cta-option-title {
            font-weight: 600;
            color: var(--wizard-text);
            margin-bottom: 4px;
        }

        .cta-option-desc {
            font-size: 0.85rem;
            color: var(--wizard-text-muted);
            line-height: 1.4;
        }

        .cta-option-check {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--wizard-primary);
            display: none;
            align-items: center;
            justify-content: center;
        }

        .cta-option-check i {
            color: white;
            font-size: 0.75rem;
        }

        .cta-option-card.selected .cta-option-check {
            display: flex;
        }

        /* Notification tier badge */
        .notif-tier-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            color: #fff;
            font-size: 11px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 12px;
            letter-spacing: 0.3px;
        }

        /* CTA Summary (shows selected actions count) */
        .cta-summary {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 10px;
            padding: var(--wizard-space-md) var(--wizard-space-lg);
            margin-bottom: var(--wizard-space-lg);
        }

        .cta-summary-header {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #10b981;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .cta-summary-header i {
            font-size: 1.1rem;
        }

        .cta-input-section {
            background: var(--wizard-card-bg);
            border: 1px solid var(--wizard-border);
            border-radius: 12px;
            padding: var(--wizard-space-xl);
            margin-bottom: var(--wizard-space-xl);
        }

        .cta-input-header {
            margin-bottom: var(--wizard-space-lg);
        }

        .cta-input-header h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--wizard-text);
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .cta-input-header h3 i {
            color: var(--wizard-primary);
        }

        .cta-input-header p {
            font-size: 0.9rem;
            color: var(--wizard-text-muted);
        }

        .input-with-icon {
            position: relative;
        }

        .input-with-icon .input-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--wizard-primary);
            font-size: 1rem;
            opacity: 0.7;
        }

        .input-with-icon .form-input {
            padding-left: 46px;
        }

        /* Dark-theme form input override */
        .wizard-step-content .form-input {
            width: 100%;
            box-sizing: border-box;
            background: rgba(139, 92, 246, 0.06);
            border: 1.5px solid var(--wizard-border);
            color: var(--wizard-text);
            padding: 14px 16px;
            font-size: 1rem;
            border-radius: 10px;
            transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }

        .wizard-step-content .form-input::placeholder {
            color: var(--wizard-text-muted);
            opacity: 0.6;
        }

        .wizard-step-content .form-input:focus {
            outline: none;
            border-color: var(--wizard-primary);
            box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
            background: rgba(139, 92, 246, 0.1);
        }

        .wizard-step-content .form-input.valid {
            border-color: #10b981;
            background: rgba(16, 185, 129, 0.06);
        }

        .wizard-step-content .form-input.error {
            border-color: #ef4444;
            background: rgba(239, 68, 68, 0.06);
            color: var(--wizard-text);
        }

        /* Notification email card wrapper */
        .notif-email-card {
            background: var(--wizard-card-bg);
            border: 1.5px solid var(--wizard-border);
            border-radius: 14px;
            padding: 28px 32px;
            max-width: 560px;
            margin: 0 auto var(--wizard-space-xl);
            text-align: left;
        }

        .notif-email-card .form-label {
            color: var(--wizard-text);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .notif-email-card .form-label i {
            color: var(--wizard-primary);
            font-size: 1.1rem;
        }

        .notif-email-card .input-with-icon {
            width: 100%;
        }

        .input-hint {
            font-size: 0.8rem;
            color: var(--wizard-text-muted);
            margin-top: 10px;
            padding-left: 2px;
        }

        .input-error {
            font-size: 0.85rem;
            margin-top: 8px;
            min-height: 1.2em;
        }

        .cta-preview-card {
            background: rgba(139, 92, 246, 0.05);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 10px;
            padding: var(--wizard-space-lg);
            margin-top: var(--wizard-space-lg);
        }

        .cta-preview-header {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            color: var(--wizard-primary);
            font-weight: 500;
            margin-bottom: var(--wizard-space-md);
        }

        .cta-preview-example {
            padding-left: var(--wizard-space-md);
        }

        .chat-bubble {
            background: var(--wizard-card-bg);
            border: 1px solid var(--wizard-border);
            border-radius: 12px 12px 12px 4px;
            padding: var(--wizard-space-md);
            font-size: 0.9rem;
            color: var(--wizard-text);
            max-width: 90%;
        }

        .chat-bubble a {
            color: var(--wizard-primary);
            text-decoration: underline;
        }

        @media (max-width: 600px) {
            .cta-option-cards {
                grid-template-columns: 1fr;
            }
        }

        /* Widget Color Selector */
        .color-selector-section {
            max-width: 600px;
            margin: 0 auto var(--wizard-space-xl);
            text-align: left;
        }

        .color-selector-label {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--wizard-text);
            margin-bottom: var(--wizard-space-md);
        }

        .color-selector-tabs {
            display: flex;
            border-bottom: 1px solid var(--wizard-border);
            margin-bottom: var(--wizard-space-lg);
        }

        .color-tab-btn {
            flex: 1;
            padding: 0.75rem 1rem;
            background: transparent;
            border: none;
            border-bottom: 2px solid transparent;
            color: var(--wizard-text-muted);
            font-size: 0.875rem;
            cursor: pointer;
            transition: var(--wizard-transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .color-tab-btn:hover {
            color: var(--wizard-text);
        }

        .color-tab-btn.active {
            color: var(--wizard-primary);
            border-bottom-color: var(--wizard-primary);
        }

        .color-tab-content {
            display: none;
        }

        .color-tab-content.active {
            display: block;
        }

        /* Palette Grid */
        .color-palette-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.75rem;
        }

        @media (max-width: 480px) {
            .color-palette-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .color-palette-option {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem;
            border: 2px solid var(--wizard-border);
            border-radius: var(--wizard-radius);
            cursor: pointer;
            transition: var(--wizard-transition);
        }

        .color-palette-option:hover {
            border-color: var(--wizard-text-muted);
        }

        .color-palette-option.selected {
            border-color: var(--wizard-primary);
            background: var(--wizard-primary-light);
        }

        .color-palette-swatch {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        .color-palette-name {
            font-size: 0.75rem;
            color: var(--wizard-text);
            font-weight: 500;
        }

        /* Custom Color Input */
        .custom-color-row {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .color-picker-box {
            width: 50px;
            height: 50px;
            border-radius: var(--wizard-radius);
            overflow: hidden;
            border: 2px solid var(--wizard-border);
            cursor: pointer;
        }

        .color-picker-box input[type="color"] {
            width: 70px;
            height: 70px;
            border: none;
            cursor: pointer;
            margin: -10px;
        }

        .hex-input-field {
            flex: 1;
            max-width: 120px;
            padding: 0.75rem 1rem;
            background: var(--wizard-bg);
            border: 1px solid var(--wizard-border);
            border-radius: var(--wizard-radius);
            color: var(--wizard-text);
            font-family: monospace;
            font-size: 0.95rem;
            text-transform: uppercase;
        }

        .hex-input-field:focus {
            outline: none;
            border-color: var(--wizard-primary);
        }

        .color-hint {
            font-size: 0.75rem;
            color: var(--wizard-text-muted);
            margin-top: 0.5rem;
        }

        .code-block {
            background: #0d1117;
            border: 1px solid var(--wizard-border);
            border-radius: var(--wizard-radius);
            overflow: hidden;
            text-align: left;
            max-width: 600px;
            margin: 0 auto var(--wizard-space-xl);
        }

        .code-block-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 1rem;
            background: #161b22;
            border-bottom: 1px solid var(--wizard-border);
        }

        .code-block-title {
            font-size: 0.8125rem;
            color: var(--wizard-text-muted);
        }

        .code-copy-btn {
            display: flex;
            align-items: center;
            gap: 0.375rem;
            padding: 0.375rem 0.75rem;
            background: var(--wizard-primary);
            border: none;
            border-radius: var(--wizard-radius-sm);
            color: white;
            font-size: 0.75rem;
            cursor: pointer;
            transition: var(--wizard-transition);
        }

        .code-copy-btn:hover {
            background: var(--wizard-primary-hover);
        }

        .code-block-content {
            padding: 1rem;
            font-family: 'Monaco', 'Menlo', monospace;
            font-size: 0.8125rem;
            color: #c9d1d9;
            overflow-x: auto;
            line-height: 1.6;
        }

        .code-block-content .tag { color: #7ee787; }
        .code-block-content .attr { color: #79c0ff; }
        .code-block-content .string { color: #a5d6ff; }

        .platform-buttons {
            display: flex;
            justify-content: center;
            gap: var(--wizard-space-md);
            flex-wrap: wrap;
        }

        .platform-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.25rem;
            background: var(--wizard-bg);
            border: 1px solid var(--wizard-border);
            border-radius: var(--wizard-radius-sm);
            color: var(--wizard-text);
            font-size: 0.875rem;
            cursor: pointer;
            transition: var(--wizard-transition);
        }

        .platform-btn:hover {
            border-color: var(--wizard-primary);
            color: var(--wizard-primary);
        }

        .platform-btn img {
            width: 20px;
            height: 20px;
        }

        /* ==========================================================================
           Step 6: Phone Setup
           ========================================================================== */
        .phone-setup-section {
            text-align: center;
        }

        .phone-setup-card {
            background: var(--wizard-bg);
            border: 1px solid var(--wizard-border);
            border-radius: var(--wizard-radius);
            padding: var(--wizard-space-xl);
            max-width: 500px;
            margin: 0 auto var(--wizard-space-xl);
        }

        .phone-icon-large {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--wizard-success) 0%, #059669 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto var(--wizard-space-lg);
            font-size: 2rem;
            color: white;
        }

        .phone-number-display {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--wizard-text);
            margin-bottom: var(--wizard-space-md);
            font-family: 'Monaco', 'Menlo', monospace;
        }

        .phone-number-label {
            font-size: 0.875rem;
            color: var(--wizard-text-muted);
            margin-bottom: var(--wizard-space-lg);
        }

        .forwarding-instructions {
            background: var(--wizard-card-bg);
            border-radius: var(--wizard-radius-sm);
            padding: var(--wizard-space-lg);
            text-align: left;
        }

        .forwarding-step {
            display: flex;
            gap: var(--wizard-space-md);
            margin-bottom: var(--wizard-space-md);
        }

        .forwarding-step:last-child {
            margin-bottom: 0;
        }

        .forwarding-step-number {
            width: 28px;
            height: 28px;
            background: var(--wizard-primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--wizard-primary);
            flex-shrink: 0;
        }

        .forwarding-step-text {
            font-size: 0.875rem;
            color: var(--wizard-text-muted);
            line-height: 1.5;
        }

        .forwarding-step-text strong {
            color: var(--wizard-text);
        }

        /* Voice Picker */
        .voice-picker-section {
            margin-bottom: var(--wizard-space-xl);
        }

        .voice-card-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--wizard-space-md);
            max-width: 400px;
            margin: 0 auto;
        }

        .voice-card {
            position: relative;
            padding: var(--wizard-space-lg) var(--wizard-space-md);
            border: 2px solid var(--wizard-border);
            border-radius: 12px;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s ease;
            background: rgba(255, 255, 255, 0.02);
        }

        .voice-card:hover {
            border-color: rgba(37, 99, 235, 0.3);
        }

        .voice-card.selected {
            border-color: var(--wizard-primary);
            background: rgba(37, 99, 235, 0.06);
        }

        .voice-card-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(37, 99, 235, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto var(--wizard-space-sm);
            font-size: 1.2rem;
            color: var(--wizard-primary);
        }

        .voice-card-name {
            font-weight: 600;
            color: var(--wizard-text);
            margin-bottom: 2px;
        }

        .voice-card-desc {
            font-size: 0.8rem;
            color: var(--wizard-text-muted);
            margin-bottom: var(--wizard-space-sm);
        }

        .voice-preview-btn {
            background: rgba(37, 99, 235, 0.1);
            border: none;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            cursor: pointer;
            color: var(--wizard-primary);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }

        .voice-preview-btn:hover {
            background: rgba(37, 99, 235, 0.2);
        }

        .voice-card-check {
            position: absolute;
            top: 8px;
            right: 8px;
            color: var(--wizard-primary);
            opacity: 0;
            transition: opacity 0.2s;
        }

        .voice-card.selected .voice-card-check {
            opacity: 1;
        }

        /* Starter plan - skip phone step */
        .phone-step-skip {
            text-align: center;
            padding: var(--wizard-space-2xl);
        }

        .phone-step-skip-icon {
            width: 80px;
            height: 80px;
            background: var(--wizard-primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto var(--wizard-space-lg);
            font-size: 2rem;
            color: var(--wizard-primary);
        }

        .phone-step-skip h3 {
            font-size: 1.25rem;
            margin-bottom: var(--wizard-space-sm);
        }

        .phone-step-skip p {
            color: var(--wizard-text-muted);
            margin-bottom: var(--wizard-space-lg);
        }

        /* ==========================================================================
           Step 7: All Done
           ========================================================================== */
        .success-section {
            text-align: center;
            padding: var(--wizard-space-2xl) 0;
        }

        .success-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto var(--wizard-space-xl);
            font-size: 3rem;
            color: white;
            animation: successPop 0.5s ease;
        }

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

        .success-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--wizard-text);
            margin-bottom: var(--wizard-space-sm);
        }

        .success-subtitle {
            color: var(--wizard-text-muted);
            font-size: 1.125rem;
            margin-bottom: var(--wizard-space-xl);
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .next-steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--wizard-space-md);
            margin-bottom: var(--wizard-space-xl);
        }

        .next-step-card {
            background: var(--wizard-bg);
            border: 1px solid var(--wizard-border);
            border-radius: var(--wizard-radius);
            padding: var(--wizard-space-lg);
            cursor: pointer;
            transition: var(--wizard-transition);
        }

        .next-step-card:hover {
            border-color: var(--wizard-primary);
            transform: translateY(-4px);
            box-shadow: var(--wizard-shadow);
        }

        .next-step-icon {
            width: 48px;
            height: 48px;
            background: var(--wizard-primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto var(--wizard-space-md);
            color: var(--wizard-primary);
            font-size: 1.25rem;
        }

        .next-step-title {
            font-weight: 600;
            color: var(--wizard-text);
            margin-bottom: var(--wizard-space-xs);
        }

        .next-step-desc {
            font-size: 0.8125rem;
            color: var(--wizard-text-muted);
        }

        /* ==========================================================================
           Navigation Buttons
           ========================================================================== */
        .wizard-navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: var(--wizard-space-xl);
            padding-top: var(--wizard-space-lg);
            border-top: 1px solid var(--wizard-border);
        }

        .wizard-btn {
            display: flex;
            align-items: center;
            gap: var(--wizard-space-sm);
            padding: 0.875rem 1.5rem;
            border-radius: var(--wizard-radius-sm);
            font-size: 0.9375rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--wizard-transition);
            border: none;
        }

        .wizard-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .wizard-btn-secondary {
            background: transparent;
            border: 1px solid var(--wizard-border);
            color: var(--wizard-text);
        }

        .wizard-btn-secondary:hover:not(:disabled) {
            border-color: var(--wizard-text);
        }

        .wizard-btn-primary {
            background: linear-gradient(135deg, #a08dd6 0%, #8b5cf6 100%);
            color: white;
        }

        .wizard-btn-primary:hover:not(:disabled) {
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
        }

        .wizard-btn-success {
            background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
            color: white;
        }

        .wizard-btn-success:hover:not(:disabled) {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
        }

        /* ==========================================================================
           Loading States
           ========================================================================== */
        .loading-spinner {
            display: inline-block;
            width: 16px;
            height: 16px;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spinner 0.8s linear infinite;
        }

        @keyframes spinner {
            to { transform: rotate(360deg); }
        }

        /* ==========================================================================
           Responsive
           ========================================================================== */
        /* ==========================================================================
           Skip Link (consistent across all skippable steps)
           ========================================================================== */
        .wizard-skip-link {
            color: var(--wizard-text-muted);
            font-size: 13px;
            text-decoration: none;
            opacity: 0.7;
            transition: opacity 0.2s, text-decoration 0.2s;
            display: inline-block;
        }
        .wizard-skip-link:hover {
            opacity: 1;
            text-decoration: underline;
        }

        /* ==========================================================================
           Loading Skeleton States
           ========================================================================== */
        @keyframes shimmer {
            0% { background-position: -400px 0; }
            100% { background-position: 400px 0; }
        }
        .skeleton-line {
            height: 16px;
            border-radius: 6px;
            background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.07) 50%, rgba(255,255,255,0.03) 75%);
            background-size: 400px 100%;
            animation: shimmer 1.8s ease-in-out infinite;
            margin-bottom: 12px;
        }
        .skeleton-line.short { width: 40%; }
        .skeleton-line.medium { width: 65%; }
        .skeleton-block {
            height: 140px;
            border-radius: 12px;
            background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.07) 50%, rgba(255,255,255,0.03) 75%);
            background-size: 400px 100%;
            animation: shimmer 1.8s ease-in-out infinite;
            margin-bottom: 16px;
        }
        .skeleton-row {
            display: flex;
            gap: 12px;
            margin-bottom: 12px;
        }
        .skeleton-circle {
            width: 40px;
            height: 40px;
            min-width: 40px;
            border-radius: 50%;
            background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.07) 50%, rgba(255,255,255,0.03) 75%);
            background-size: 400px 100%;
            animation: shimmer 1.8s ease-in-out infinite;
        }

        @media (max-width: 768px) {
            .onboarding-container { padding: var(--wizard-space-md); }
            .wizard-step-label { display: none; }
            .plan-cards { grid-template-columns: 1fr; }
            .knowledge-review { grid-template-columns: 1fr; }
            .next-steps-grid { grid-template-columns: 1fr; }

            /* Progress bar: scrollable with hidden scrollbar */
            .wizard-progress {
                padding: var(--wizard-space-md);
                overflow-x: auto;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }
            .wizard-progress::-webkit-scrollbar { display: none; }
            .wizard-progress-track {
                min-width: max-content;
            }
            .wizard-step-indicator { padding: 0 6px; }
            .wizard-step-circle { width: 30px; height: 30px; font-size: 0.75rem; }
            .wizard-step-indicator:not(:last-child)::after {
                width: 16px;
                left: calc(50% + 20px);
                top: 15px;
            }

            /* Modals: fit on smaller screens */
            .platform-modal {
                max-width: 95vw;
                max-height: 90vh;
            }

            /* Embed code: prevent overflow */
            .code-block-content {
                overflow-x: auto;
                font-size: 0.75rem;
            }

            /* Notification email card */
            .notif-email-card {
                padding: 20px 16px;
                max-width: 100%;
            }

            /* Phone forwarding steps */
            .forwarding-instructions {
                padding: 0;
            }

            /* Review timeline */
            .review-timeline {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .onboarding-container {
                padding: var(--wizard-space-sm);
                padding-left: max(var(--wizard-space-sm), env(safe-area-inset-left));
                padding-right: max(var(--wizard-space-sm), env(safe-area-inset-right));
            }

            /* Mobile step context label */
            .wizard-step-context {
                display: block;
                text-align: center;
                padding: var(--wizard-space-xs) 0;
                margin-bottom: var(--wizard-space-sm);
                font-size: 0.8125rem;
                color: var(--wizard-text-muted);
                letter-spacing: 0.01em;
            }
            .wizard-step-context strong {
                color: var(--wizard-text);
                font-weight: 600;
            }

            /* Progress bar: even more compact */
            .wizard-step-indicator { padding: 0 4px; }
            .wizard-step-circle { width: 26px; height: 26px; font-size: 0.7rem; position: relative; }
            /* Touch target: expand tap area to 44px */
            .wizard-step-circle::after {
                content: '';
                position: absolute;
                top: 50%; left: 50%;
                transform: translate(-50%, -50%);
                width: 44px; height: 44px;
                border-radius: 50%;
            }
            .wizard-step-indicator:not(:last-child)::after {
                width: 12px;
                left: calc(50% + 17px);
                top: 13px;
            }

            /* Sticky bottom CTA bar on mobile */
            .wizard-navigation {
                flex-direction: column-reverse;
                gap: var(--wizard-space-sm);
                position: sticky;
                bottom: -1px;
                z-index: 10;
                background: rgba(26, 31, 46, 0.97);
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
                border-top: 1px solid var(--wizard-border);
                margin-left: calc(-1 * var(--wizard-space-md));
                margin-right: calc(-1 * var(--wizard-space-md));
                margin-bottom: calc(-1 * var(--wizard-space-md));
                padding: 0.75rem var(--wizard-space-md);
                padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
                border-radius: 0 0 var(--wizard-radius) var(--wizard-radius);
            }
            .wizard-navigation .wizard-btn {
                width: 100%;
                justify-content: center;
            }

            /* Step content padding */
            .wizard-step-content {
                padding: var(--wizard-space-md);
            }
            .wizard-step-content h2 {
                font-size: 1.25rem;
            }

            /* Plan cards: tighter padding */
            .plan-card {
                padding: 20px 16px;
            }

            /* CTA option cards */
            .cta-option-card {
                padding: var(--wizard-space-md);
            }

            /* Tier badge: prevent overlap with title text */
            .notif-tier-badge {
                top: auto;
                bottom: 10px;
                right: 10px;
            }

            /* FAQ/service remove buttons: always visible on touch (no hover) */
            .faq-item .remove-btn {
                opacity: 1;
            }
            .remove-btn {
                min-width: 44px;
                min-height: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            /* Touch target: enlarge checkboxes in consent/TOS sections */
            .consent-group input[type="checkbox"],
            .tos-activation-section input[type="checkbox"],
            #smsConsentSection input[type="checkbox"] {
                width: 22px !important;
                height: 22px !important;
                min-width: 22px !important;
                min-height: 22px !important;
            }

            /* Tighter mobile spacing */
            #logoDropzone { padding: 32px 16px !important; }
            .platform-modal-body { padding: var(--wizard-space-md) !important; }
            .knowledge-section { padding: var(--wizard-space-md); }

            /* Platform buttons: wrap */
            .platform-buttons {
                flex-wrap: wrap;
            }
            .platform-btn {
                flex: 1 1 calc(50% - 0.5rem);
                min-width: 0;
                font-size: 0.8rem;
                padding: 0.6rem;
            }

            /* Color palette: 2 columns (already handled, reinforce) */
            .color-palette-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            /* Modal tighter on phone */
            .platform-modal-overlay {
                padding: var(--wizard-space-sm);
            }
        }

        /* ==========================================================================
           Platform Guide Modal
           ========================================================================== */
        .platform-modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            padding: var(--wizard-space-lg);
        }
        .platform-modal-overlay.active { display: flex; }
        .platform-modal {
            background: var(--wizard-card-bg);
            border-radius: var(--wizard-radius);
            max-width: 700px;
            width: 100%;
            max-height: 85vh;
            overflow-y: auto;
            border: 1px solid var(--wizard-border);
            box-shadow: var(--wizard-shadow-lg);
        }
        .platform-modal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: var(--wizard-space-lg);
            border-bottom: 1px solid var(--wizard-border);
            position: sticky;
            top: 0;
            background: var(--wizard-card-bg);
            z-index: 1;
        }
        .platform-modal-header h3 {
            display: flex;
            align-items: center;
            gap: var(--wizard-space-sm);
            font-size: 1.25rem;
            color: var(--wizard-text);
        }
        .platform-modal-close {
            background: none;
            border: none;
            color: var(--wizard-text-muted);
            font-size: 1.5rem;
            cursor: pointer;
            padding: var(--wizard-space-xs);
            transition: var(--wizard-transition);
        }
        .platform-modal-close:hover { color: var(--wizard-text); }
        .platform-modal-body { padding: var(--wizard-space-lg); }
        .platform-step {
            display: flex;
            gap: var(--wizard-space-md);
            margin-bottom: var(--wizard-space-lg);
        }
        .platform-step-number {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            background: var(--wizard-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 0.875rem;
        }
        .platform-step-content h4 {
            color: var(--wizard-text);
            margin-bottom: var(--wizard-space-xs);
        }
        .platform-step-content p {
            color: var(--wizard-text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }
        .platform-code-block {
            background: var(--wizard-bg);
            border: 1px solid var(--wizard-border);
            border-radius: var(--wizard-radius-sm);
            padding: var(--wizard-space-md);
            margin-top: var(--wizard-space-sm);
            font-family: monospace;
            font-size: 0.8rem;
            color: var(--wizard-success);
            overflow-x: auto;
        }
        .platform-note {
            background: rgba(59, 130, 246, 0.1);
            border-left: 3px solid var(--wizard-info);
            padding: var(--wizard-space-md);
            border-radius: 0 var(--wizard-radius-sm) var(--wizard-radius-sm) 0;
            margin-top: var(--wizard-space-md);
        }
        .platform-note p {
            color: var(--wizard-text-muted);
            font-size: 0.875rem;
            margin: 0;
        }
        .support-chat-widget {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 10000;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }
        .support-chat-toggle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        .support-chat-toggle:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 25px rgba(139, 92, 246, 0.5);
        }
        .support-chat-toggle svg {
            width: 28px;
            height: 28px;
            fill: white;
        }
        .support-chat-toggle .close-icon {
            display: none;
        }
        .support-chat-toggle.open .chat-icon {
            display: none;
        }
        .support-chat-toggle.open .close-icon {
            display: block;
            font-size: 24px;
            color: white;
        }
        .support-chat-container {
            display: none;
            position: fixed;
            bottom: 90px;
            right: 20px;
            width: 380px;
            height: 520px;
            background: #1A1F2E;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
            flex-direction: column;
            overflow: hidden;
            border: 1px solid rgba(139, 92, 246, 0.3);
        }
        .support-chat-container.open {
            display: flex;
            animation: chatSlideUp 0.3s ease;
        }
        @keyframes chatSlideUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .support-chat-header {
            background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
            color: white;
            padding: 16px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .support-chat-header-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            font-size: 15px;
        }
        .support-chat-header-title .status-dot {
            width: 8px;
            height: 8px;
            background: #10b981;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        .support-chat-messages {
            flex: 1;
            overflow-y: auto;
            padding: 16px;
            background: #0F1419;
        }
        .support-chat-messages::-webkit-scrollbar {
            width: 6px;
        }
        .support-chat-messages::-webkit-scrollbar-track {
            background: transparent;
        }
        .support-chat-messages::-webkit-scrollbar-thumb {
            background: rgba(139, 92, 246, 0.3);
            border-radius: 3px;
        }
        .support-msg {
            margin-bottom: 12px;
            max-width: 85%;
            animation: msgFadeIn 0.3s ease;
        }
        @keyframes msgFadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .support-msg.bot {
            margin-right: auto;
        }
        .support-msg.user {
            margin-left: auto;
        }
        .support-msg-content {
            padding: 12px 16px;
            border-radius: 16px;
            font-size: 14px;
            line-height: 1.5;
        }
        .support-msg.bot .support-msg-content {
            background: #1A1F2E;
            color: #f9fafb;
            border-bottom-left-radius: 4px;
            border: 1px solid rgba(139, 92, 246, 0.2);
        }
        .support-msg.user .support-msg-content {
            background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
            color: white;
            border-bottom-right-radius: 4px;
        }
        .support-msg-content strong {
            font-weight: 600;
        }
        .support-msg-content em {
            font-style: italic;
        }
        .support-chat-typing {
            display: none;
            padding: 12px 16px;
            background: #1A1F2E;
            border-radius: 16px;
            border-bottom-left-radius: 4px;
            border: 1px solid rgba(139, 92, 246, 0.2);
            width: fit-content;
            margin-bottom: 12px;
        }
        .support-chat-typing.active {
            display: flex;
            gap: 4px;
        }
        .support-chat-typing span {
            width: 8px;
            height: 8px;
            background: #8b5cf6;
            border-radius: 50%;
            animation: typingBounce 1.4s infinite ease-in-out;
        }
        .support-chat-typing span:nth-child(1) { animation-delay: -0.32s; }
        .support-chat-typing span:nth-child(2) { animation-delay: -0.16s; }
        @keyframes typingBounce {
            0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
            40% { transform: scale(1); opacity: 1; }
        }
        .support-chat-input-area {
            padding: 12px 16px;
            background: #1A1F2E;
            border-top: 1px solid rgba(139, 92, 246, 0.2);
            display: flex;
            gap: 10px;
        }
        .support-chat-input {
            flex: 1;
            padding: 12px 16px;
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 24px;
            font-size: 14px;
            outline: none;
            background: #0F1419;
            color: #f9fafb;
            transition: border-color 0.2s;
        }
        .support-chat-input::placeholder {
            color: #6b7280;
        }
        .support-chat-input:focus {
            border-color: #8b5cf6;
        }
        .support-chat-send {
            background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
            color: white;
            border: none;
            padding: 12px 18px;
            border-radius: 24px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.2s;
        }
        .support-chat-send:hover {
            transform: scale(1.02);
        }
        .support-chat-send:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }
        .support-quick-actions {
            padding: 8px 16px 12px;
            background: #0F1419;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .support-quick-btn {
            padding: 6px 12px;
            background: rgba(139, 92, 246, 0.15);
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 16px;
            color: #c4b5fd;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.2s;
        }
        .support-quick-btn:hover {
            background: rgba(139, 92, 246, 0.25);
            border-color: #8b5cf6;
        }
        @media (max-width: 480px) {
            .support-chat-container {
                width: calc(100vw - 40px);
                height: calc(100vh - 140px);
                bottom: 90px;
                right: 20px;
            }
        }
        .typing-cursor {
            animation: cursorBlink 0.7s infinite;
            color: #8b5cf6;
            font-weight: 300;
        }
        @keyframes cursorBlink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        /* ==========================================================================
           Address Review Warning Styles
           ========================================================================== */
        .address-warning-banner {
            background: rgba(245, 158, 11, 0.15);
            border: 1px solid rgba(245, 158, 11, 0.4);
            border-radius: var(--wizard-radius-sm);
            padding: 12px 16px;
            margin-bottom: 16px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        .address-warning-banner i {
            color: #f59e0b;
            font-size: 18px;
            margin-top: 2px;
        }
        .address-warning-banner p {
            color: #fcd34d;
            font-size: 14px;
            line-height: 1.5;
            margin: 0;
        }
        .needs-review-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: rgba(245, 158, 11, 0.2);
            color: #fbbf24;
            font-size: 11px;
            font-weight: 600;
            padding: 3px 8px;
            border-radius: 4px;
            margin-left: 8px;
        }
        .needs-review-badge i {
            font-size: 10px;
        }
        .location-count-warning {
            color: #fbbf24;
            font-size: 13px;
            font-weight: 500;
        }

        /* Location card input field styles for review */
        .location-card-review input[type="text"] {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 6px;
            padding: 8px 12px;
            color: var(--wizard-text);
            font-size: 14px;
            width: 100%;
            transition: all 0.2s;
        }
        .location-card-review input[type="text"]:focus {
            outline: none;
            border-color: var(--wizard-primary);
            background: rgba(139, 92, 246, 0.1);
            box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
        }
        .location-card-review input[type="text"]::placeholder {
            color: var(--wizard-text-muted);
            opacity: 0.7;
        }
        .location-card-review .location-address-row {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 8px;
        }
        .location-card-review .location-city-state-zip {
            display: grid;
            grid-template-columns: 1fr 80px 100px;
            gap: 8px;
        }

        /* Google Places PlaceAutocompleteElement - Dark Mode Theming */
        gmp-place-autocomplete {
            --gmpx-color-surface: #1A1F2E;
            --gmpx-color-on-surface: #f9fafb;
            --gmpx-color-on-surface-variant: #9ca3af;
            --gmpx-color-primary: #8b5cf6;
            --gmpx-color-outline: rgba(139, 92, 246, 0.3);
            --gmpx-font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --gmpx-font-size-base: 16px;
            width: 100%;
            border-radius: 10px;
        }

        /* Enhanced Address Autocomplete - Single Line Design */
        .address-autocomplete-wrapper {
            position: relative;
            margin-top: 16px;
        }
        .address-autocomplete-wrapper .address-input-icon {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--wizard-primary, #8b5cf6);
            font-size: 18px;
            pointer-events: none;
            z-index: 1;
        }
        .address-autocomplete-input {
            width: 100%;
            padding: 18px 20px 18px 52px !important;
            font-size: 17px !important;
            font-weight: 500 !important;
            background: rgba(139, 92, 246, 0.08) !important;
            border: 2px solid rgba(139, 92, 246, 0.3) !important;
            border-radius: 12px !important;
            color: var(--wizard-text, #f9fafb) !important;
            transition: all 0.25s ease !important;
            box-shadow: 0 2px 8px rgba(139, 92, 246, 0.1) !important;
        }
        .address-autocomplete-input:focus {
            outline: none !important;
            border-color: var(--wizard-primary, #8b5cf6) !important;
            background: rgba(139, 92, 246, 0.12) !important;
            box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2), 0 4px 12px rgba(139, 92, 246, 0.15) !important;
        }
        .address-autocomplete-input::placeholder {
            color: var(--wizard-text-muted, #9ca3af) !important;
            font-weight: 400 !important;
            font-style: normal;
        }
        .needs-review .address-autocomplete-input {
            border-color: rgba(251, 191, 36, 0.5) !important;
            background: rgba(251, 191, 36, 0.08) !important;
        }
        .needs-review .address-autocomplete-wrapper .address-input-icon {
            color: #fbbf24;
        }

        /* Pulsing hint for empty address input */
        .needs-review .address-autocomplete-input:not(:focus):placeholder-shown {
            animation: subtle-pulse 2s ease-in-out infinite;
        }
        @keyframes subtle-pulse {
            0%, 100% { box-shadow: 0 2px 8px rgba(251, 191, 36, 0.1); }
            50% { box-shadow: 0 2px 12px rgba(251, 191, 36, 0.25); }
        }

        /* Address Confirmation Display */
        .address-confirmation {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 16px;
            padding: 16px 18px;
            background: rgba(16, 185, 129, 0.12);
            border: 2px solid rgba(16, 185, 129, 0.4);
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
        }
        .address-confirmation i.fa-check-circle {
            color: #10b981;
            font-size: 20px;
            flex-shrink: 0;
        }
        .address-confirmed-text {
            flex: 1;
            color: var(--wizard-text, #f9fafb);
            font-size: 15px;
            font-weight: 500;
            line-height: 1.5;
        }
        .address-edit-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--wizard-text-muted, #9ca3af);
            cursor: pointer;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.2s;
            flex-shrink: 0;
            font-size: 13px;
        }
        .address-edit-btn:hover {
            color: var(--wizard-primary, #8b5cf6);
            background: rgba(139, 92, 246, 0.15);
            border-color: rgba(139, 92, 246, 0.3);
        }

        /* Ensure PlaceAutocompleteElement dropdown appears above other elements */
        gmp-place-autocomplete {
            z-index: 100 !important;
        }

        /* Confirmed address card styling */
        .location-item.has-confirmed-address {
            border-color: rgba(16, 185, 129, 0.3);
        }
        .location-item.has-confirmed-address .location-card-header {
            border-bottom-color: rgba(16, 185, 129, 0.2);
        }

        .location-name-input {
            width: 100%;
            min-width: 280px;
            padding: 0.75rem;
            font-size: 1rem;
            line-height: 1.5;
        }

        /* ==========================================================================
           Step 2: Payment (Echelon Widget)
           ========================================================================== */
        .payment-order-summary {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--wizard-border);
            border-radius: 12px;
            padding: 1.25rem;
            margin-bottom: 1.5rem;
        }

        .order-summary-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            padding-bottom: 0.75rem;
            border-bottom: 1px solid var(--wizard-border);
        }

        .order-summary-title {
            font-weight: 600;
            color: var(--wizard-text);
        }

        .order-summary-plan {
            color: var(--wizard-primary);
            font-weight: 600;
        }

        .order-summary-row {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            font-size: 0.9rem;
        }

        .order-summary-label {
            color: var(--wizard-text-muted);
        }

        .order-summary-value {
            color: var(--wizard-text);
            font-weight: 500;
        }

        .order-summary-row.total {
            border-top: 1px solid var(--wizard-border);
            margin-top: 0.5rem;
            padding-top: 0.75rem;
            font-weight: 600;
        }

        .order-summary-row.total .order-summary-value {
            color: var(--wizard-primary);
            font-size: 1.1rem;
        }
