        /* Hero - now uses shared .page-hero from main.css */

        .join-container {
            max-width: 800px;
            margin: -2rem auto 4rem;
            padding: 0 1.5rem;
        }

        .form-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 1.25rem;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        /* Progress Bar */
        .wizard-progress {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2.5rem;
            gap: 0;
        }

        .wizard-step-indicator {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .wizard-step-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #e5e7eb;
            color: #6b7280;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s;
            border: 3px solid transparent;
        }

        .wizard-step-indicator.active .wizard-step-circle {
            background: var(--forest-green);
            color: var(--warm-cream);
            border-color: var(--olive-green);
        }

        .wizard-step-indicator.completed .wizard-step-circle {
            background: var(--olive-green);
            color: var(--forest-green);
            border-color: var(--forest-green);
        }

        .wizard-step-label {
            margin-top: 0.5rem;
            font-size: 0.8rem;
            font-weight: 600;
            color: #6b7280;
            white-space: nowrap;
        }

        .wizard-step-indicator.active .wizard-step-label {
            color: var(--forest-green);
        }

        .wizard-step-indicator.completed .wizard-step-label {
            color: var(--forest-green);
        }

        .wizard-step-line {
            width: 80px;
            height: 3px;
            background: #e5e7eb;
            transition: background 0.3s;
            margin: 0 0.5rem;
            margin-bottom: 1.5rem;
        }

        .wizard-step-line.completed {
            background: var(--olive-green);
        }

        /* Wizard Steps */
        .wizard-step {
            display: none;
        }

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

        .wizard-step h2 {
            font-size: 1.5rem;
            color: #1f2937;
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--forest-green);
            background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Type Selector */
        .form-type-selector {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .type-option {
            padding: 1.5rem;
            border: 2px solid #e5e7eb;
            border-radius: 1rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            background: white;
        }

        .type-option:hover {
            border-color: var(--forest-green);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(47, 74, 44, 0.15);
        }

        .type-option.active {
            border-color: var(--forest-green);
            background: rgba(47, 74, 44, 0.06);
            box-shadow: 0 8px 20px rgba(47, 74, 44, 0.2);
        }

        .type-option .icon {
            font-size: 3rem;
            margin-bottom: 0.5rem;
        }

        .type-option .type-icon-svg {
            width: 3rem;
            height: 3rem;
            object-fit: contain;
            display: block;
            margin: 0 auto;
        }

        .type-option h3 {
            margin: 0;
            font-size: 1.125rem;
            color: #1f2937;
        }

        .type-option p {
            margin: 0.5rem 0 0;
            font-size: 0.875rem;
            color: #4b5563;
        }

        /* Form Groups */
        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #374151;
            font-size: 0.9375rem;
        }

        .form-group label .required {
            color: var(--terracotta);
            margin-left: 0.25rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.875rem;
            border: 2px solid #e5e7eb;
            border-radius: 0.75rem;
            font-size: 1rem;
            transition: all 0.2s;
            font-family: inherit;
            box-sizing: border-box;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--forest-green);
            box-shadow: 0 0 0 3px rgba(47, 74, 44, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 80px;
        }

        .form-group small {
            display: block;
            margin-top: 0.5rem;
            color: #6b7280;
            font-size: 0.875rem;
        }

        .form-group input.error,
        .form-group select.error,
        .form-group textarea.error {
            border-color: var(--terracotta);
            box-shadow: 0 0 0 3px rgba(196, 90, 42, 0.1);
        }

        .field-error {
            color: var(--terracotta);
            font-size: 0.8rem;
            margin-top: 0.25rem;
        }

        /* Theme Checkboxes */
        .theme-checkboxes {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 8px;
        }

        .theme-checkboxes label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            background: rgba(0, 0, 0, 0.04);
            border-radius: 999px;
            font-size: 0.9rem;
            line-height: 1.2;
            white-space: nowrap;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.2s;
            border: 2px solid transparent;
        }

        .theme-checkboxes label:hover {
            background: rgba(47, 74, 44, 0.08);
        }

        .theme-checkboxes label:has(input:checked) {
            background: rgba(47, 74, 44, 0.15);
            color: var(--forest-green);
            font-weight: 600;
            border-color: var(--forest-green);
        }

        .theme-checkboxes input[type="checkbox"] {
            accent-color: var(--forest-green);
        }

        /* Character Counter */
        .char-counter {
            text-align: right;
            font-size: 0.8rem;
            color: #6b7280;
            margin-top: 0.25rem;
        }

        .char-counter.over-limit {
            color: var(--terracotta);
            font-weight: 600;
        }

        /* Wizard Navigation */
        .wizard-nav {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            margin-top: 2rem;
        }

        .wizard-nav .btn-back {
            padding: 0.875rem 2rem;
            font-size: 1rem;
        }

        .wizard-nav .btn-next {
            padding: 0.875rem 2rem;
            font-size: 1rem;
            margin-left: auto;
        }

        .wizard-nav .btn-next:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(47, 74, 44, 0.3);
        }

        .wizard-nav .btn-submit {
            padding: 0.875rem 2rem;
            font-size: 1rem;
            font-weight: 700;
            background: var(--terracotta);
            color: var(--warm-cream);
        }

        .wizard-nav .btn-submit:hover {
            background: var(--terracotta-dark);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(196, 90, 42, 0.3);
        }

        .wizard-nav .btn-submit:disabled {
            background: #9ca3af;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        /* Confirmation Screen */
        .confirmation-screen {
            display: none;
            text-align: center;
            padding: 2rem 0;
        }

        .confirmation-screen.active {
            display: block;
        }

        .confirmation-icon {
            font-size: 4rem;
            color: var(--forest-green);
            margin-bottom: 1.5rem;
        }

        .confirmation-screen h2 {
            font-size: 1.75rem;
            color: var(--forest-green);
            margin-bottom: 1rem;
            border: none;
            background: none;
            -webkit-text-fill-color: var(--forest-green);
        }

        .confirmation-ref {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background: var(--warm-cream);
            border: 2px solid var(--olive-green);
            border-radius: 0.75rem;
            font-family: monospace;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--forest-green);
            margin: 1rem 0;
        }

        .confirmation-timeline {
            color: #6b7280;
            font-size: 1rem;
            margin: 1.5rem 0;
        }

        .confirmation-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .confirmation-links a {
            padding: 0.75rem 1.5rem;
            border-radius: 0.75rem;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.2s;
        }

        .confirmation-links a.primary-link {
            background: var(--forest-green);
            color: var(--warm-cream);
        }

        .confirmation-links a.primary-link:hover {
            background: var(--forest-green-dark);
        }

        .confirmation-links a.secondary-link {
            background: white;
            color: var(--forest-green);
            border: 2px solid var(--forest-green);
        }

        .confirmation-links a.secondary-link:hover {
            background: var(--warm-cream);
        }

        /* While You Wait Action Cards */
        .confirmation-actions { margin-top: 2rem; text-align: center; }
        .confirmation-actions h3 { color: var(--forest-green); margin-bottom: 1rem; font-size: 1.1rem; }
        .confirmation-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
        .confirmation-card {
            display: flex; flex-direction: column; align-items: center; gap: 8px;
            padding: 1.25rem; border-radius: 10px; text-decoration: none; color: inherit;
            background: rgba(185,201,138,0.08); border: 1px solid rgba(185,201,138,0.2);
            transition: all 0.2s;
        }
        .confirmation-card:hover { background: rgba(185,201,138,0.15); transform: translateY(-2px); }
        .confirmation-card i { font-size: 1.5rem; color: var(--forest-green); }
        .confirmation-card-icon { width: 1.75rem; height: 1.75rem; object-fit: contain; margin-bottom: 0.25rem; }
        .confirmation-card strong { font-size: 0.85rem; color: var(--forest-green); }
        .confirmation-card span { font-size: 0.75rem; color: #666; }

        /* Error message */
        .error-message {
            padding: 1.25rem;
            border-radius: 1rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
            color: #dc2626;
            border: 2px solid #ef4444;
            display: none;
        }

        /* City Other */
        #cityOtherGroup {
            display: none;
            margin-top: 0.75rem;
        }

        /* Reassurance */
        .reassurance-text {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem;
            background: var(--warm-cream);
            border-radius: 0.75rem;
            color: var(--forest-green);
            font-size: 0.9rem;
            margin-top: 1.5rem;
        }

        @media (max-width: 768px) {
            .join-container {
                padding: 0 1rem;
            }

            .form-card {
                padding: 2rem 1.25rem;
                border-radius: 1rem;
            }

            .wizard-step h2 {
                font-size: 1.25rem;
            }

            .form-type-selector {
                grid-template-columns: 1fr;
            }

            .wizard-step-circle {
                width: 36px;
                height: 36px;
                font-size: 0.9rem;
            }

            .wizard-step-line {
                width: 32px;
                margin: 0 0.35rem 1.5rem;
            }

            .wizard-step-label {
                font-size: 0.7rem;
            }

            .theme-checkboxes {
                gap: 8px;
            }

            .theme-checkboxes label {
                padding: 9px 14px;
                font-size: 0.85rem;
            }

            .wizard-nav {
                flex-direction: column-reverse;
                gap: 0.75rem;
            }

            .wizard-nav .btn-next,
            .wizard-nav .btn-submit,
            .wizard-nav .btn-prev {
                margin-left: 0;
                width: 100%;
                justify-content: center;
            }

            .confirmation-links {
                flex-direction: column;
            }

            .confirmation-cards {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 420px) {
            .form-card {
                padding: 1.5rem 0.875rem;
            }

            .wizard-step-circle {
                width: 32px;
                height: 32px;
                font-size: 0.85rem;
            }

            .wizard-step-line {
                width: 16px;
                margin: 0 0.2rem 1.5rem;
            }

            .wizard-step-label {
                font-size: 0.6rem;
                max-width: 70px;
                white-space: normal;
                line-height: 1.2;
            }
        }
