        :root {
            --teal: #14B8A6;
            --aqua: #00FFFF;
            --black: #000000;
            --yellow: #FFFF00;
            --dark-bg: #0a0e27;
            --card-bg: rgba(20, 184, 166, 0.05);
        }

        body {
            background: #000000;
            color: #e0e0e0;
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            min-height: 100vh;
            position: relative;
        }

        /* Content Overlay */
        main {
            position: relative;
            z-index: 10;
            padding-top: 0;
        }

        /* Content Section */
        .pricing-section {
            width: 100%;
            margin: 0;
            padding: 0;
            position: relative;
            overflow: hidden;
        }

        .pricing-header {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 80px 20px 20px;
            margin-bottom: 0;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
            position: relative;
            z-index: 1;
        }

        .pricing-header::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            height: 55%;
            background: radial-gradient(
                ellipse at center,
                rgba(0,0,0,0.65) 0%,
                rgba(0,0,0,0.55) 52%,
                rgba(0,0,0,0.30) 72%,
                rgba(0,0,0,0.08) 88%,
                transparent      100%
            );
            filter: blur(24px);
            z-index: -1;
            pointer-events: none;
        }

        .pricing-header h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 700;
            letter-spacing: 2px;
            color: #ffffff;
            margin-bottom: 1rem;
            animation: glow 3s ease-in-out infinite;
        }

        .pricing-header p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 600px;
            margin: 0 auto;
            text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 4px 16px rgba(0,0,0,0.7);
        }

        /* Pricing Cards Grid */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin: 0 auto;
            max-width: 1200px;
            padding: 0 2rem 12rem;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 900px) {
            .pricing-grid {
                grid-template-columns: 1fr 1fr;
            }
            .pricing-card.recommended {
                grid-column: 1 / -1;
                max-width: 480px;
                margin: 0 auto;
                width: 100%;
            }
        }

        .pricing-card {
            background: #1a1a1a;
            border: 2px solid rgba(0, 255, 255, 0.2);
            border-radius: 20px;
            padding: 2rem 2rem 5rem;
            position: relative;
            overflow: hidden;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
            transform: translateY(30px);
            display: flex;
            flex-direction: column;
        }

        .pricing-card:nth-child(1) { animation-delay: 0.1s; }
        .pricing-card:nth-child(2) { animation-delay: 0.2s; }
        .pricing-card:nth-child(3) { animation-delay: 0.3s; }
        .pricing-card:nth-child(4) { animation-delay: 0.4s; }
        .pricing-card:nth-child(5) { animation-delay: 0.5s; }

        .pricing-card.recommended {
            grid-column: span 1;
            background: #000000;
            border: 1px solid var(--yellow);
            box-shadow: 0 0 40px rgba(255, 255, 0, 0.4), inset 0 0 40px rgba(255, 255, 0, 0.1);
            transform: scale(1.08) translateY(-15px);
            overflow: visible;
        }

        .recommended-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: #FFD700;
            padding: 1px;
            border-radius: 4px;
            white-space: nowrap;
            z-index: 10;
        }

        .recommended-badge span {
            display: block;
            background: #0d0d0d;
            color: #FFD700;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            padding: 0.28rem 0.85rem;
            border-radius: 3px;
        }

        .pricing-card h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, #ffffff, #00ffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            min-height: 4rem;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .pricing-card .price {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ffffff, #5a8a5e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 1rem 0;
            font-family: 'Orbitron', sans-serif;
            letter-spacing: 1px;
        }

        .pricing-card.recommended .price {
            background: linear-gradient(135deg, #ffffff, #FFD700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pricing-card .price-period {
            color: #999999;
            font-size: 0.9rem;
        }

        .pricing-card-features {
            list-style: none;
            margin: 2rem 0;
            flex: 1;
        }

        .pricing-card-features li {
            padding: 0.8rem 0;
            padding-left: 2rem;
            position: relative;
            border-bottom: 1px solid rgba(0, 255, 255, 0.1);
            font-size: 0.95rem;
            line-height: 1.5;
        }

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

        .pricing-card-features li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 10px;
            height: 10px;
            border: 2px solid var(--teal);
            border-radius: 50%;
            background: rgba(20, 184, 166, 0.2);
        }

        .cta-button {
            width: 100%;
            padding: 1rem;
            margin-top: 1.5rem;
            border: 0.5px solid rgba(0, 255, 255, 0.6);
            background: transparent;
            color: #00FFFF;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 1px;
            cursor: pointer;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            text-decoration: none;
            display: block;
            text-align: center;
        }

        .cta-button:hover {
            background: rgba(0, 255, 255, 0.06);
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
            transform: translateY(-3px);
        }

        .pricing-card.recommended .cta-button {
            border: none;
            background: linear-gradient(135deg, #FFFF00, #00FFFF);
            color: #000000;
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
        }

        .pricing-card.recommended .cta-button:hover {
            background: linear-gradient(135deg, #FFFF00, #00FFFF);
            box-shadow: 0 0 25px rgba(0, 255, 255, 0.5), 0 0 50px rgba(255, 255, 0, 0.2);
        }

        .cta-button-secondary {
            width: 100%;
            padding: 0.75rem;
            margin-top: 0.75rem;
            border: 0.5px solid rgba(255, 215, 0, 0.4);
            background: transparent;
            color: #FFD700;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1px;
            cursor: pointer;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            text-decoration: none;
            display: block;
            text-align: center;
        }

        .cta-button-secondary:hover {
            background: rgba(255, 215, 0, 0.06);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
            transform: translateY(-2px);
        }

        /* Footer — override components.js margin-top */
        .site-footer {
            margin-top: 0 !important;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-content {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .footer-content a {
            color: #a0a0a0;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.9rem;
        }

        .footer-content a:hover {
            color: var(--aqua);
        }

        .footer-text {
            color: #999999;
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


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

        .glow-text {
            animation: glow 3s ease-in-out infinite;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .pricing-header {
                min-height: auto;
                justify-content: flex-start;
                padding: 100px 1rem 2.5rem;
            }
            .pricing-header h1 {
                font-size: 2rem;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 0.75rem;
                padding: 0 0.75rem;
            }

            .pricing-card.recommended {
                grid-column: span 1;
                max-width: 100%;
                transform: scale(1);
                box-shadow: 0 0 20px rgba(255, 255, 0, 0.25);
            }

            .pricing-card {
                padding: 1.25rem 1rem 2.5rem;
                border-radius: 12px;
            }

            .pricing-card h3 {
                font-size: 1.1rem;
                min-height: auto;
                margin-bottom: 0.3rem;
            }

            .pricing-card .price {
                font-size: 1.8rem;
            }

            .pricing-card-features li {
                font-size: 0.85rem;
                padding: 0.3rem 0;
            }

            .pricing-section {
                padding: 1.5rem 0;
            }

            .recommended-badge {
                font-size: 0.5rem;
                padding: 0.22rem 0.65rem;
            }

            /* ── Uniform spacing ── */
            .section-title { font-size: 1.6rem; margin-bottom: 2rem; padding-left: 1rem; padding-right: 1rem; }
        }

        /* Scroll Animation */
        .scroll-animate {
            opacity: 0;
        }

        .scroll-animate.visible {
            opacity: 1;
            animation: fadeInUp 0.8s ease forwards;
        }

        /* ── GradientBlinds canvas fills the whole section ─────────────── */
        .gb-container {
            position: fixed;
            inset: 0;
            z-index: 0;
        }

            .section-title { text-align: center; font-family: 'Orbitron', sans-serif; font-size: 2.8rem; font-weight: 700; margin-bottom: 5rem; color: #ffffff; position: relative; z-index: 2; animation: glow 3s ease-in-out infinite; }
            .pfaq-container { padding: 3rem 2rem 15rem; max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
            .pfaq-container h2 {
                position: relative;
            }
            .pfaq-container h2::before {
                content: '';
                position: absolute;
                inset: -30px -60px;
                background: radial-gradient(ellipse at center, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
                filter: blur(20px);
                z-index: -1;
                pointer-events: none;
            }
            .pfaq-item {
                --pointer-x: 50%; --pointer-y: 50%; --pointer-deg: 45deg; --proximity: 0;
                --glow-color: #e040fb;
                position: relative; cursor: pointer; border-radius: 12px; margin-bottom: 1.5rem;
            }
            .pfaq-item:nth-child(1) { --glow-color: #FFD700; }
            .pfaq-item:nth-child(2) { --glow-color: #00e5ff; }
            .pfaq-item:nth-child(3) { --glow-color: #76ff03; }
            .pfaq-item:nth-child(4) { --glow-color: #ff3d00; }
            .pfaq-item:nth-child(5) { --glow-color: #14B8A6; }
            .pfaq-item:nth-child(6) { --glow-color: #ff4081; }
            .pfaq-inner {
                position: relative; z-index: 2; background: #000;
                border: 0.5px solid rgba(255,255,255,0.15); border-radius: inherit;
                margin: 1px; overflow: hidden; transition: border-color 0.3s ease;
            }
            .pfaq-q {
                padding: 2rem; cursor: pointer; display: flex;
                justify-content: space-between; align-items: center;
                transition: background 0.3s ease;
            }
            .pfaq-q:hover { background: rgba(255,255,255,0.02); }
            .pfaq-q h3 {
                font-family: 'Orbitron', sans-serif; font-size: 1.1rem; font-weight: 600;
                background: linear-gradient(135deg, #ffffff, #00ffff);
                -webkit-background-clip: text; -webkit-text-fill-color: transparent;
                background-clip: text; margin: 0;
            }
            .pfaq-toggle { font-size: 1.5rem; color: #14B8A6; transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); }
            .pfaq-toggle.active { transform: rotate(180deg); }
            .pfaq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s cubic-bezier(0.4,0,0.2,1); }
            .pfaq-a.active { max-height: 500px; }
            .pfaq-a p { padding: 2rem; color: rgba(255,255,255,0.82); line-height: 1.8; font-size: 0.95rem; }

            .cta { --pointer-x: 50%; --pointer-y: 50%; --pointer-deg: 45deg; --proximity: 0; --glow-color: #00ffff; position: relative; cursor: pointer; border-radius: 12px; max-width: 900px; margin: 0 auto 10rem; }
            .cta-inner { position: relative; z-index: 2; background: #000000; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: inherit; padding: 5rem 3rem; text-align: center; margin: 1px; }
            .cta h2 { font-family: 'Orbitron', sans-serif; font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; color: #ffffff; animation: glow 3s ease-in-out infinite; }
            .cta p { color: rgba(255, 255, 255, 0.75); font-size: 1.1rem; line-height: 1.8; margin-bottom: 2rem; text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 4px 16px rgba(0,0,0,0.7); }
            .cta .btn-primary { display: inline-block; padding: 1.1rem 3rem; border-radius: 8px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; border: none; text-decoration: none; background: linear-gradient(135deg, #FFFF00, #00FFFF); color: #000000; box-shadow: 0 0 15px rgba(0, 255, 255, 0.2); }
            .cta .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 25px rgba(0, 255, 255, 0.5), 0 0 50px rgba(255, 255, 0, 0.2); }

        /* ── Chaos Tax Calculator ─────────────────────────────────────── */
        .chaos-calculator {
            max-width: 1000px;
            margin: 0 auto 6rem;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .chaos-calc-inner {
            background: #0a0a0a;
            border: 1px solid rgba(0, 255, 255, 0.2);
            border-radius: 20px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
        }

        .chaos-calc-inner::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.4), transparent);
        }

        .chaos-calc-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .calc-eyebrow {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.7rem;
            letter-spacing: 4px;
            color: var(--teal);
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .chaos-calc-header h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.4rem, 3vw, 2rem);
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }

        .chaos-calc-header p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
        }

        .chaos-calc-body {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        @media (max-width: 700px) {
            .chaos-calc-body {
                grid-template-columns: 1fr;
            }
            .chaos-result {
                border-top: 1px solid rgba(0, 255, 255, 0.15);
                padding-top: 2rem;
            }
        }

        .calc-input-group {
            margin-bottom: 2rem;
        }

        .calc-input-group:last-child {
            margin-bottom: 0;
        }

        .calc-input-label {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.75rem;
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .calc-val {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.8rem;
            color: var(--aqua);
            font-weight: 700;
            white-space: nowrap;
            margin-left: 1rem;
        }

        .calc-slider {
            width: 100%;
            -webkit-appearance: none;
            appearance: none;
            height: 4px;
            background: rgba(0, 255, 255, 0.15);
            border-radius: 2px;
            outline: none;
            cursor: pointer;
        }

        .calc-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--aqua);
            cursor: pointer;
            box-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
            transition: box-shadow 0.2s ease;
        }

        .calc-slider::-webkit-slider-thumb:hover {
            box-shadow: 0 0 16px rgba(0, 255, 255, 0.8);
        }

        .calc-slider::-moz-range-thumb {
            width: 18px;
            height: 18px;
            border: none;
            border-radius: 50%;
            background: var(--aqua);
            cursor: pointer;
            box-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
        }

        .calc-slider-ends {
            display: flex;
            justify-content: space-between;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.3);
            margin-top: 0.4rem;
        }

        .calc-number-input {
            width: 100%;
            padding: 0.65rem 1rem;
            background: rgba(0, 255, 255, 0.04);
            border: 1px solid rgba(0, 255, 255, 0.2);
            border-radius: 8px;
            color: #fff;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s ease;
            box-sizing: border-box;
        }

        .calc-number-input::placeholder {
            color: rgba(255, 255, 255, 0.25);
        }

        .calc-number-input:focus {
            border-color: rgba(0, 255, 255, 0.5);
        }

        .calc-number-input::-webkit-outer-spin-button,
        .calc-number-input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        .calc-number-input[type=number] {
            -moz-appearance: textfield;
        }

        .chaos-result {
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 215, 0, 0.15);
            border-radius: 16px;
            padding: 2rem;
        }

        .chaos-result-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.2rem;
        }

        .chaos-result-label {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .chaos-result-val {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
        }

        .chaos-result-val em {
            font-style: normal;
            font-family: 'Inter', sans-serif;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.4);
            font-weight: 400;
        }

        .chaos-tax-val {
            color: #ff4444;
        }

        .vaph-val {
            color: var(--teal);
        }

        .chaos-result-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
            margin: 0.5rem 0 1.5rem;
        }

        .result-diff-label {
            color: rgba(255, 255, 255, 0.85);
            font-weight: 600;
        }

        .result-diff-val {
            color: #FFD700;
            font-size: 1.3rem;
        }

        .chaos-result-note {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
            text-align: right;
            margin-bottom: 1.5rem;
            margin-top: -0.5rem;
        }

        .chaos-cta-btn {
            display: block;
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, #FFD700, #00FFFF);
            color: #000;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            text-align: center;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            box-sizing: border-box;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }

        .chaos-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 25px rgba(255, 215, 0, 0.4), 0 0 50px rgba(0, 255, 255, 0.2);
        }

        /* ── Mobile FAQ/CTA overrides (MUST come after desktop styles) ── */
        @media (max-width: 768px) {
            .section-title { font-size: 1.6rem; margin-bottom: 2rem; padding-left: 1rem; padding-right: 1rem; }
            .chaos-calc-inner { padding: 1.5rem 1rem; border-radius: 12px; }
            .chaos-calculator { padding: 0 0.75rem; margin-bottom: 2rem; }
            .chaos-calc-header { margin-bottom: 1.5rem; }
            .chaos-calc-header h2 { font-size: 1.2rem !important; margin-bottom: 0.5rem !important; }
            .chaos-result { padding: 1.25rem; }
            .pfaq-container { padding: 1.5rem 0.75rem; }
            .pfaq-item { margin-bottom: 0.4rem; }
            .pfaq-q { padding: 0.75rem 1rem; }
            .pfaq-q h3 { font-size: 0.85rem; padding-right: 1.5rem; }
            .pfaq-a p { padding: 0.5rem 0.75rem; font-size: 0.9rem; }
            .cta { margin-bottom: 2rem; }
            .cta-inner { padding: 2rem 1rem; }
            .cta h2 { font-size: 1.6rem; }
            .cta p { font-size: 0.95rem; }
            .cta-section { padding: 0 0.75rem; }
        }
