:root {
            /* M代駕品牌色彩系統 - 基於 #FF6A00 橙色 */
            --background: 0 0% 100%;
            --foreground: 20 14% 4%;

            --card: 0 0% 100%;
            --card-foreground: 20 14% 4%;

            --popover: 0 0% 100%;
            --popover-foreground: 20 14% 4%;

            /* 主橙色 #FF6A00 */
            --primary: 24 100% 50%;
            --primary-foreground: 0 0% 100%;
            
            /* 輔助橙光 */
            --primary-light: 42 100% 65%;
            
            /* 灰色系統 */
            --secondary: 210 40% 98%;
            --secondary-foreground: 20 14% 4%;

            /* 中性色 */
            --muted: 210 40% 98%;
            --muted-foreground: 215 16% 47%;

            --accent: 210 40% 98%;
            --accent-foreground: 20 14% 4%;

            --destructive: 0 84% 60%;
            --destructive-foreground: 0 0% 98%;

            /* 邊框與輸入 */
            --border: 214 32% 91%;
            --input: 214 32% 91%;
            --ring: 24 100% 50%;

            /* 現代化圓角 */
            --radius: 0.75rem;
            
            /* 陰影系統 */
            --shadow-soft: 0 10px 30px -10px rgb(0 0 0 / 0.08);
            --shadow-brand: 0 0 40px rgb(255 106 0 / 0.2);
        }

        .dark {
            --background: 222 84% 5%;
            --foreground: 210 40% 98%;

            --card: 222 84% 5%;
            --card-foreground: 210 40% 98%;

            --popover: 222 84% 5%;
            --popover-foreground: 210 40% 98%;

            --primary: 24 100% 50%;
            --primary-foreground: 0 0% 100%;

            --secondary: 217 33% 17%;
            --secondary-foreground: 210 40% 98%;

            --muted: 217 33% 17%;
            --muted-foreground: 215 20% 65%;

            --accent: 217 33% 17%;
            --accent-foreground: 210 40% 98%;

            --destructive: 0 63% 31%;
            --destructive-foreground: 210 40% 98%;

            --border: 217 33% 17%;
            --input: 217 33% 17%;
            --ring: 24 100% 50%;
        }

        * {
            border-color: hsl(var(--border));
        }

        body {
            background-color: hsl(var(--background));
            color: hsl(var(--foreground));
        }

        /* Toast styles */
        .toast {
            position: fixed;
            top: 20px;
            right: 20px;
            background: hsl(var(--background));
            border: 1px solid hsl(var(--border));
            border-radius: 0.75rem;
            padding: 1rem;
            box-shadow: 0 10px 30px -10px rgb(0 0 0 / 0.08);
            z-index: 1000;
            animation: slideIn 0.3s ease-out;
            max-width: 400px;
        }

        .toast.error {
            border-color: hsl(var(--destructive));
            background: hsl(var(--destructive) / 0.1);
        }

        .toast.success {
            border-color: hsl(var(--primary));
            background: hsl(var(--primary) / 0.1);
        }

        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        /* Accordion styles */
        .accordion-trigger {
            transition: all 0.2s ease;
        }

        .accordion-trigger:hover {
            color: hsl(var(--primary));
        }

        .accordion-content {
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .accordion-content[data-state="closed"] {
            max-height: 0;
            padding-top: 0;
            padding-bottom: 0;
        }

        .accordion-content[data-state="open"] {
            max-height: 500px;
            padding-top: 1rem;
            padding-bottom: 1rem;
        }

        /* Button styles */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 0.75rem;
            font-weight: 600;
            transition: all 0.2s ease;
            border: 4px solid transparent;
            cursor: pointer;
            text-decoration: none;
        }

        .btn-primary {
            background: hsl(var(--primary));
            color: hsl(var(--primary-foreground));
        }

        .btn-primary:hover {
            background: hsl(var(--primary) / 0.9);
        }

        .btn-outline {
            border: 1px solid hsl(var(--border));
            background: transparent;
            color: hsl(var(--foreground));
        }

        .btn-outline:hover {
            background: hsl(289, 67%, 69%);
        }

        .btn-sm {
            padding: 0.5rem 0.75rem;
            font-size: 0.875rem;
        }

        .btn-lg {
            padding: 0.75rem 1.5rem;
            font-size: 1.125rem;
        }

        /* Input styles */
        .input {
            display: flex;
            width: 100%;
            border-radius: 0.75rem;
            border: 1px solid hsl(var(--input));
            background: hsl(var(--background));
            padding: 0.75rem;
            font-size: 0.875rem;
            transition: all 0.2s ease;
        }

        .input:focus {
            outline: none;
            border-color: hsl(var(--ring));
            box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
        }

        /* Card styles */
        .card {
            background: hsl(var(--card));
            border: 1px solid hsl(var(--border));
            border-radius: 0.75rem;
            box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
        }

        /* Mobile CTA button */
        .fixed-mobile-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 50;
            background: hsl(var(--background));
            border-top: 1px solid hsl(var(--border));
            padding: 1rem;
        }

        @media (min-width: 1024px) {
            .fixed-mobile-cta {
                display: none;
            }
        }

        /* Dialog/Modal styles */
        .dialog-overlay {
            position: fixed;
            inset: 0;
            z-index: 50;
            background: rgb(0 0 0 / 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .dialog-content {
            background: hsl(var(--background));
            border: 1px solid hsl(var(--border));
            border-radius: 0.75rem;
            padding: 1.5rem;
            width: 100%;
            max-width: 425px;
            box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
        }

        .hidden {
            display: none;
        }