        /* ===== NAVIGATION (canonical) ===== */
        nav {
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(139, 92, 246, 0.1);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 16px 0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: white;
            font-size: 22px;
            font-weight: 700;
        }

        .logo-svg { width: 60px; height: 60px; }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            color: #D1D5DB;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #EC4899;
        }

        .nav-cta {
            margin-left: 20px;
        }

        .gradient-button {
            background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 50%, #EC4899 100%);
            color: white;
            border: none;
            padding: 12px 32px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 15px;
        }

        .gradient-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
        }

        .theme-toggle-btn {
            background: none;
            border: none;
            color: #E5E7EB;
            font-size: 1.3rem;
            cursor: pointer;
            transition: transform 0.3s ease;
            padding: 4px 8px;
            margin-right: 8px;
        }

        .theme-toggle-btn:hover {
            transform: rotate(20deg);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background: currentColor;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
                color: inherit;
            }

            .nav-links {
                display: none;
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: #0F172A;
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                border-bottom: 1px solid rgba(139, 92, 246, 0.3);
                z-index: 1000;
                list-style: none;
                box-shadow: 0 8px 20px rgba(0,0,0,0.3);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-cta {
                margin-left: 0;
                padding: 8px 14px !important;
                font-size: 13px !important;
                white-space: nowrap;
            }
        }

        @media (max-width: 480px) {
            .nav-cta {
                padding: 6px 10px !important;
                font-size: 11px !important;
                margin-left: 4px !important;
            }
            .logo-section { font-size: 15px; }
            .logo-svg { width: 32px !important; height: 32px !important; }
        }

        /* Light theme nav overrides */
        html[data-theme="light"] nav {
            background: rgba(245, 243, 255, 0.95);
            border-bottom: 1px solid rgba(139, 92, 246, 0.2);
        }

        html[data-theme="light"] .nav-links a,
        html[data-theme="light"] .logo-section {
            color: #1E1B4B;
        }

        html[data-theme="light"] .nav-links a:hover {
            color: #7C3AED;
        }

        html[data-theme="light"] .theme-toggle-btn {
            color: #1E1B4B;
        }

        @media (max-width: 768px) {
            html[data-theme="light"] .nav-links {
                background: #FFFFFF;
                box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            }
        }

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

        :root {
            --primary-dark: #0F172A;
            --primary-darker: #1E1B4B;
            --gradient-start: #3B82F6;
            --gradient-mid: #8B5CF6;
            --gradient-end: #EC4899;
            --gold: #F59E0B;
            --text-light: #E5E7EB;
            --text-muted: #9CA3AF;
            --light-bg: #F5F3FF;
            --light-card: #FFFFFF;
            --light-text: #1E1B4B;
            --light-text-muted: #6B7280;
        }

        html {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: #0F172A;
        }

        body {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
            color: var(--text-light);
            line-height: 1.6;
            transition: background 0.3s ease, color 0.3s ease;
        }

        [data-theme="light"] {
            --primary-dark: #F5F3FF;
            --primary-darker: #F5F3FF;
            --text-light: #1E1B4B;
            --text-muted: #6B7280;
        }

        [data-theme="light"] {
            background-color: #F5F3FF;
        }

        [data-theme="light"] body {
            background: linear-gradient(135deg, #F5F3FF 0%, #F8F6FF 100%);
            color: var(--light-text);
        }

        [data-theme="light"] nav {
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        }

        [data-theme="light"] nav a {
            color: #1E1B4B;
        }

        [data-theme="light"] nav a:hover,
        [data-theme="light"] nav a.active {
            color: var(--gold);
        }

        [data-theme="light"] .pricing-card {
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        [data-theme="light"] .pricing-card h3 {
            color: #1E1B4B;
        }

        [data-theme="light"] .pricing-card .price {
            background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        [data-theme="light"] .pricing-card ul li {
            color: #4B5563;
        }

        [data-theme="light"] .pricing-card.featured {
            border: 2px solid var(--gold);
            background: rgba(255, 255, 255, 0.98);
        }

        [data-theme="light"] .btn {
            color: #1E1B4B;
        }

        [data-theme="light"] .btn-primary {
            background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
            color: white;
        }

        [data-theme="light"] .comparison-table th {
            background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
            color: white;
        }

        [data-theme="light"] .comparison-table td {
            border-color: rgba(0, 0, 0, 0.1);
            color: #1E1B4B;
        }

        [data-theme="light"] .comparison-table tr:nth-child(even) {
            background: rgba(245, 243, 255, 0.5);
        }

        [data-theme="light"] .faq-item {
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(0, 0, 0, 0.08);
        }

        [data-theme="light"] .faq-item.active .faq-question {
            color: var(--gold);
        }

        [data-theme="light"] .faq-answer {
            color: #4B5563;
        }

        [data-theme="light"] footer {
            background: rgba(255, 255, 255, 0.95);
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            color: #1E1B4B;
        }

        [data-theme="light"] footer a {
            color: #3B82F6;
        }

        [data-theme="light"] footer a:hover {
            color: var(--gold);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header Section */
        .pricing-header {
            text-align: center;
            padding: 4rem 2rem;
            animation: fadeInDown 0.8s ease;
        }

        .pricing-header h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pricing-header p {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Toggle Section */
        .toggle-section {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin: 2rem 0;
            animation: fadeInUp 0.8s ease;
        }

        .toggle-switch {
            position: relative;
            width: 60px;
            height: 32px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .toggle-switch.active {
            background: var(--gold);
            border-color: var(--gold);
        }

        .toggle-switch::after {
            content: '';
            position: absolute;
            width: 26px;
            height: 26px;
            background: white;
            border-radius: 50%;
            top: 3px;
            left: 3px;
            transition: all 0.3s ease;
        }

        .toggle-switch.active::after {
            left: 31px;
        }

        .toggle-label {
            font-weight: 500;
            color: var(--text-muted);
        }

        .toggle-label.active {
            color: var(--gold);
        }

        /* Pricing Cards */
        .pricing-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .pricing-card {
            background: rgba(30, 27, 75, 0.4);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 16px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            border-color: rgba(59, 130, 246, 0.4);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
        }

        .pricing-card.featured {
            border: 2px solid var(--gold);
            background: rgba(30, 27, 75, 0.5);
            position: relative;
            z-index: 10;
        }

        .pricing-card.featured::after {
            content: 'MOST POPULAR';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--gold), #F97316);
            color: #000;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.75rem;
            letter-spacing: 0.5px;
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-light);
        }

        .pricing-card .subtitle {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        .pricing-card .price {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.25rem;
        }

        .pricing-card .billing-period {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        .pricing-card .savings {
            display: inline-block;
            background: rgba(245, 158, 11, 0.1);
            border: 1px solid var(--gold);
            color: var(--gold);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .pricing-card ul {
            list-style: none;
            margin: 1.5rem 0;
        }

        .pricing-card ul li {
            padding: 0.75rem 0;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.95rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .pricing-card ul li:last-child {
            border-bottom: none;
        }

        .pricing-card ul li::before {
            content: '✓';
            display: flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 100%);
            border-radius: 50%;
            color: white;
            font-weight: 700;
            font-size: 0.8rem;
            flex-shrink: 0;
        }

        .pricing-card ul li.unavailable::before {
            content: '✕';
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-muted);
        }

        .pricing-card ul li.unavailable {
            color: var(--text-muted);
            opacity: 0.7;
        }

        .btn {
            display: inline-block;
            padding: 0.875rem 2rem;
            border-radius: 10px;
            font-weight: 600;
            text-decoration: none;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            width: 100%;
            text-align: center;
            margin-top: 1.5rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 100%);
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(59, 130, 246, 0.3);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--gold);
            color: var(--gold);
        }

        /* Included Section */
        .included-section {
            background: rgba(30, 27, 75, 0.3);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 16px;
            padding: 3rem;
            margin: 4rem 0;
            backdrop-filter: blur(10px);
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .included-section h2 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 2rem;
            text-align: center;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .feature-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .feature-item::before {
            content: '✓';
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 100%);
            border-radius: 50%;
            color: white;
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .feature-item p {
            font-size: 0.95rem;
            color: var(--text-light);
        }

        /* Comparison Table */
        .comparison-section {
            margin: 4rem 0;
            animation: fadeInUp 0.8s ease 0.6s both;
        }

        .comparison-section h2 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 2rem;
            text-align: center;
        }

        .table-wrapper {
            overflow-x: auto;
            border-radius: 12px;
            border: 1px solid rgba(59, 130, 246, 0.2);
            backdrop-filter: blur(10px);
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(30, 27, 75, 0.4);
        }

        .comparison-table th {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
            padding: 1.25rem;
            text-align: left;
            font-weight: 700;
            border-bottom: 2px solid rgba(59, 130, 246, 0.2);
            color: var(--text-light);
        }

        .comparison-table td {
            padding: 1.25rem;
            border-bottom: 1px solid rgba(59, 130, 246, 0.1);
            color: var(--text-light);
        }

        .comparison-table tr:nth-child(even) {
            background: rgba(59, 130, 246, 0.05);
        }

        .comparison-table tr:hover {
            background: rgba(59, 130, 246, 0.1);
        }

        .comparison-table .check {
            color: var(--gradient-start);
            font-weight: 700;
            font-size: 1.25rem;
        }

        .comparison-table .cross {
            color: var(--text-muted);
            font-weight: 700;
            font-size: 1.25rem;
            opacity: 0.5;
        }

        /* FAQ Section */
        .faq-section {
            margin: 4rem 0;
            animation: fadeInUp 0.8s ease 0.8s both;
        }

        .faq-section h2 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 2rem;
            text-align: center;
        }

        .faq-container {
            max-width: 700px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(30, 27, 75, 0.4);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 12px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .faq-item:hover {
            border-color: rgba(59, 130, 246, 0.4);
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--text-light);
            user-select: none;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-question {
            color: var(--gold);
        }

        .faq-icon {
            font-size: 1.25rem;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: var(--text-light);
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 1.5rem 1.5rem;
        }

        /* Enterprise CTA */
        .enterprise-cta {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
            border: 2px solid rgba(245, 158, 11, 0.3);
            border-radius: 16px;
            padding: 3rem;
            text-align: center;
            margin: 4rem 0;
            animation: fadeInUp 0.8s ease 1s both;
            backdrop-filter: blur(10px);
        }

        .enterprise-cta h2 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--gold), #F97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .enterprise-cta p {
            color: var(--text-muted);
            margin-bottom: 2rem;
            font-size: 1.05rem;
        }

        .enterprise-cta .btn {
            width: auto;
            display: inline-block;
        }

        /* Footer */
        footer {
            background: rgba(15, 23, 42, 0.5);
            border-top: 1px solid rgba(59, 130, 246, 0.2);
            padding: 3rem 2rem;
            margin-top: 4rem;
            backdrop-filter: blur(10px);
        }

        footer .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        footer .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            margin-bottom: 32px;
        }

        footer h3, footer h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 16px;
            color: #FFF;
        }

        footer ul {
            list-style: none;
        }

        footer ul li {
            margin-bottom: 0.75rem;
        }

        footer a {
            color: var(--text-muted);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        footer a:hover {
            color: var(--gold);
        }

        .footer-bottom {
            border-top: 1px solid rgba(59, 130, 246, 0.2);
            padding-top: 2rem;
            text-align: center;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        /* Loading State */
        .btn-loading {
            position: relative;
            pointer-events: none;
            opacity: 0.8;
        }

        .btn-loading::after {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            top: 50%;
            left: 50%;
            margin: -8px 0 0 -8px;
            border: 2px solid transparent;
            border-top-color: #fff;
            border-radius: 50%;
            animation: spin 0.6s linear infinite;
        }

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

        /* Trust Badges Section */
        .trust-badges {
            background: rgba(30, 27, 75, 0.3);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 16px;
            padding: 2.5rem;
            margin: 4rem 0;
            backdrop-filter: blur(10px);
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .trust-badges-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .trust-badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            background: rgba(30, 27, 75, 0.5);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .trust-badge:hover {
            border-color: rgba(245, 158, 11, 0.4);
            transform: translateY(-4px);
        }

        .trust-badge-icon {
            font-size: 2rem;
            margin-bottom: 0.75rem;
        }

        .trust-badge-title {
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 0.25rem;
            font-size: 0.95rem;
        }

        .trust-badge-desc {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        /* Money-Back Guarantee Banner */
        .guarantee-banner {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.05) 100%);
            border: 2px solid rgba(245, 158, 11, 0.3);
            border-radius: 16px;
            padding: 1.5rem 2rem;
            margin: 3rem 0 4rem 0;
            text-align: center;
            animation: fadeInUp 0.8s ease 0.5s both;
        }

        .guarantee-banner h3 {
            color: var(--gold);
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        .guarantee-banner p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* Annual Savings Calculator */
        .annual-savings {
            color: var(--gold);
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 0.75rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .annual-savings.active {
            opacity: 1;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .pricing-header h1 {
                font-size: 2rem;
            }

            .included-section,
            .enterprise-cta {
                padding: 2rem;
            }

            .pricing-card {
                padding: 1.5rem;
            }

            .comparison-table th,
            .comparison-table td {
                padding: 0.75rem;
                font-size: 0.85rem;
            }

            .pricing-container {
                grid-template-columns: 1fr !important;
            }
        }

        /* Cookie Consent Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #1E1B4B;
            border-top: 1px solid rgba(139, 92, 246, 0.3);
            padding: 16px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            z-index: 9999;
            font-size: 14px;
            color: #E5E7EB;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
        }

        .cookie-banner.hidden { display: none; }

        .cookie-banner p { margin: 0; flex: 1; line-height: 1.5; }

        .cookie-banner a { color: #8B5CF6; text-decoration: underline; }

        .cookie-banner-buttons { display: flex; gap: 10px; flex-shrink: 0; }

        .cookie-btn {
            padding: 8px 20px;
            border-radius: 6px;
            border: none;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            font-family: inherit;
            transition: all 0.2s ease;
        }

        .cookie-btn-accept {
            background: linear-gradient(135deg, #3B82F6, #8B5CF6);
            color: white;
        }

        .cookie-btn-decline {
            background: transparent;
            border: 1px solid rgba(139, 92, 246, 0.4);
            color: #E5E7EB;
        }

        .cookie-btn:hover { transform: translateY(-1px); }

        html[data-theme="light"] .cookie-banner {
            background: #FFFFFF;
            border-top: 1px solid rgba(139, 92, 246, 0.2);
            color: #1E1B4B;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
        }

        html[data-theme="light"] .cookie-btn-decline {
            color: #1E1B4B;
            border-color: rgba(139, 92, 246, 0.3);
        }

        @media (max-width: 768px) {
            .cookie-banner {
                flex-direction: column;
                text-align: center;
                padding: 16px;
            }
            .cookie-banner-buttons { width: 100%; justify-content: center; }
        }
