* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --white: #ffffff;
            --off-white: #fafafa;
            --light-gray: #f5f5f5;
            --teal: #1a5f5f;
            --teal-light: #2a7f7f;
            --green: #a8d735;
            --orange: #ff6b35;
            --orange-light: #ff8c61;
            --text-dark: #1a1a1a;
            --text-gray: #6b7280;
            --border-light: #e8e8e8;
            --glass-bg: rgba(255, 255, 255, 0.7);
            --glass-border: rgba(255, 255, 255, 0.2);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
        }

        body {
            font-family: 'General Sans', sans-serif;
            background: var(--white);
            color: var(--text-dark);
            line-height: 1.6;
        }

        body.dark-theme {
            --white: #0f0f15;
            --off-white: #1a1a20;
            --light-gray: #252530;
            --text-dark: #ffffff;
            --text-gray: #a0a0b0;
            --border-light: rgba(255, 255, 255, 0.1);
            --glass-bg: rgba(26, 26, 32, 0.7);
            --glass-border: rgba(255, 255, 255, 0.1);
        }

        /* Header */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-light);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body.dark-theme nav {
            background: rgba(15, 15, 21, 0.85);
        }

        .nav-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 20px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            z-index: 1001;
        }

        .logo-img {
            height: 40px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
            list-style: none;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            color: var(--text-gray);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--orange);
        }

        .nav-links a.active {
            color: var(--orange);
        }

        .cta-nav {
            padding: 10px 24px;
            background: var(--orange);
            color: white !important;
            border-radius: 50px;
            transition: all 0.3s;
        }

        .cta-nav:hover {
            background: var(--orange-light);
            transform: translateY(-2px);
        }

        /* Submenu */
        .has-submenu {
            position: relative;
        }

        .submenu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            padding: 10px 0;
            min-width: 180px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s;
            box-shadow: var(--shadow-lg);
            list-style: none;
        }

        .has-submenu:hover .submenu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .submenu li {
            margin: 0;
        }

        .submenu a {
            display: block;
            padding: 10px 20px;
            color: var(--text-gray);
            transition: all 0.3s;
        }

        .submenu a:hover {
            background: rgba(255, 107, 53, 0.1);
            color: var(--orange);
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .theme-toggle {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            padding: 8px;
            border-radius: 50%;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .theme-toggle:hover {
            background: var(--off-white);
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-light);
            animation: slideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .nav-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 20px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        @media (max-width: 768px) {
            .nav-container {
                padding: 15px 25px;
            }
        }

        .logo {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 26px;
            font-weight: 800;
            color: var(--text-dark);
            text-decoration: none;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo-img {
            height: 40px;
            width: auto;
            display: block;
        }

        .logo-dot {
            width: 8px;
            height: 8px;
            background: #a8d735;
            border-radius: 50%;
            box-shadow: 0 0 12px rgba(168, 215, 53, 0.5);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.3);
                opacity: 0.8;
            }
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
            align-items: center;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--orange);
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--orange);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        /* Theme Toggle Button */
        .theme-toggle {
            width: 45px;
            height: 45px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 20px;
        }

        .theme-toggle:hover {
            background: var(--orange);
            color: white;
            transform: rotate(180deg) scale(1.1);
            box-shadow: var(--shadow-orange);
        }

        .theme-icon {
            transition: all 0.3s;
            display: block;
        }

        @media (max-width: 768px) {
            .theme-toggle {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
        }

        /* Dropdown Arrow */
        .has-submenu > a::before {
            content: '▼';
            font-size: 9px;
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .has-submenu:hover > a::before {
            transform: rotate(180deg);
        }

        /* Submenu Dropdown */
        .submenu {
            position: absolute;
            top: calc(100% + 20px);
            left: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-light);
            border-radius: 16px;
            padding: 12px 0;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-lg);
            z-index: 100;
        }

        .has-submenu:hover .submenu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .submenu li {
            list-style: none;
        }

        .submenu a {
            display: block;
            padding: 12px 24px;
            color: var(--text-gray);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s;
            white-space: nowrap;
        }

        .submenu a::after {
            display: none;
        }

        .submenu a::before {
            content: '→';
            margin-right: 8px;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s;
            display: inline-block;
        }

        .submenu a:hover {
            background: var(--orange-subtle);
            color: var(--orange);
            padding-left: 28px;
        }

        .submenu a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

        .cta-nav {
            padding: 10px 24px;
            background: var(--orange);
            color: white;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-orange);
        }

        .cta-nav:hover {
            background: var(--orange-light);
            transform: translateY(-2px);
            box-shadow: 0 12px 32px var(--orange-glow);
        }

        .cta-nav::after {
            display: none;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
            position: relative;
        }

        .menu-toggle span {
            width: 25px;
            height: 2px;
            background: var(--text-dark);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 2px;
        }

        .menu-toggle.active span:first-child {
            transform: rotate(45deg) translateY(8px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:last-child {
            transform: rotate(-45deg) translateY(-8px);
        }

        /* Close text when menu is open */
        .menu-toggle::before {
            content: '';
            position: absolute;
            right: 45px;
            top: 50%;
            transform: translateY(-50%);
            font-family: 'General Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
            opacity: 0;
            transition: opacity 0.3s;
            white-space: nowrap;
        }

        .menu-toggle.active::before {
            content: 'close';
            opacity: 1;
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            /* Scrollable Transparent Mobile Menu */
            .nav-links {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                gap: 0;
                transform: translateX(100%);
                opacity: 0;
                transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
                pointer-events: none;
                padding: 80px 40px 40px 40px;
                z-index: 999;
                overflow-y: scroll;
                -webkit-overflow-scrolling: touch;
            }

            body.dark-theme .nav-links {
                background: rgba(15, 15, 20, 0.95);
            }

            .nav-links.active {
                transform: translateX(0);
                opacity: 1;
                pointer-events: all;
            }

            /* Menu Items - Left Aligned, Top of Menu */
            .nav-links li {
                position: relative;
                border-bottom: none;
                padding: 0;
                list-style: none;
                width: 100%;
            }

            .nav-links > li > a {
                font-size: 48px;
                font-family: 'Cabinet Grotesk', sans-serif;
                font-weight: 800;
                opacity: 1;
                transform: none;
                transition: all 0.3s;
                padding: 15px 0;
                display: flex;
                justify-content: space-between;
                align-items: center;
                text-align: left;
                color: var(--text-dark);
                line-height: 1.1;
            }

            .nav-links > li > a:hover {
                color: var(--orange);
            }

            /* Services Submenu Arrow */
            .has-submenu > a::before {
                display: none !important;
            }

            .has-submenu > a::after {
                content: '+';
                font-size: 48px;
                font-weight: 300;
                transition: transform 0.3s;
                margin-left: auto;
                display: inline-block;
                line-height: 1;
            }

            .has-submenu.active > a::after {
                content: '−';
            }

            /* Submenu Accordion */
            .submenu {
                position: static !important;
                opacity: 0;
                visibility: hidden;
                max-height: 0;
                overflow: hidden;
                background: transparent;
                backdrop-filter: none;
                border: none;
                box-shadow: none;
                padding: 0;
                margin: 0;
                transform: none !important;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                border-radius: 0;
                display: block !important;
            }

            .submenu.active {
                opacity: 1;
                visibility: visible;
                max-height: 500px;
                padding: 10px 0 10px 30px;
            }

            .submenu li {
                border-bottom: none;
                padding: 0;
                list-style: none;
            }

            .submenu a {
                font-size: 36px !important;
                padding: 10px 0 !important;
                text-align: left;
                font-family: 'Cabinet Grotesk', sans-serif;
                font-weight: 600;
                color: var(--text-gray) !important;
                display: block !important;
                white-space: normal !important;
                line-height: 1.2;
            }

            .submenu a::before {
                display: none !important;
            }

            .submenu a::after {
                display: none !important;
            }

            .submenu a:hover {
                color: var(--orange) !important;
                background: transparent !important;
                padding: 10px 0 !important;
            }

            /* Theme Toggle Mobile */
            .theme-toggle {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            /* CTA Button Mobile - Large */
            .cta-nav {
                font-size: 48px !important;
                padding: 15px 0 !important;
                background: transparent !important;
                color: var(--orange) !important;
                border: none !important;
                border-radius: 0 !important;
                box-shadow: none !important;
                text-align: left !important;
                font-family: 'Cabinet Grotesk', sans-serif !important;
                font-weight: 800 !important;
                transform: none !important;
                display: block;
                line-height: 1.1;
            }

            .cta-nav:hover {
                background: transparent !important;
                color: var(--orange-light) !important;
                transform: none !important;
                box-shadow: none !important;
            }

            .cta-nav::after {
                display: none !important;
            }

            /* Allow scrolling past menu into page content */
            .nav-links::after {
                content: '';
                display: block;
                height: 100vh;
                width: 100%;
            }
        }

        @media (min-width: 769px) {
            .menu-toggle {
                display: none;
            }

            .nav-links {
                display: flex !important;
                position: static;
                flex-direction: row;
                background: transparent;
                transform: none;
                opacity: 1;
                pointer-events: all;
                padding: 0;
            }

            .nav-links a {
                opacity: 1;
                transform: none;
            }
        }

        /* Container */
        .container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 60px;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 25px;
            }
        }
        /* Main Content */
        .pricing-page {
            padding-top: 100px;
            min-height: 100vh;
        }

        /* Hero Section */
        .pricing-hero {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .pricing-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
            opacity: 0.3;
        }

        .pricing-hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
        }

        .pricing-hero h1 {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .pricing-hero p {
            font-size: 20px;
            opacity: 0.9;
            margin-bottom: 40px;
        }

        /* Category Navigation */
        .category-nav {
            max-width: 1200px;
            margin: -40px auto 80px;
            padding: 0 40px;
            position: relative;
            z-index: 10;
        }

        .category-tabs {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .category-tab {
            padding: 16px 32px;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 2px solid var(--glass-border);
            border-radius: 50px;
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            color: var(--text-dark);
            box-shadow: var(--shadow-lg);
        }

        .category-tab:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
        }

        .category-tab.active {
            background: var(--orange);
            color: white;
            border-color: var(--orange);
        }

        /* Category Section */
        .category-section {
            display: none;
            padding: 60px 0 100px;
        }

        .category-section.active {
            display: block;
            animation: fadeInUp 0.6s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .category-header {
            max-width: 800px;
            margin: 0 auto 60px;
            text-align: center;
            padding: 0 40px;
        }

        .category-icon {
            font-size: 64px;
            margin-bottom: 20px;
        }

        .category-header h2 {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .category-header p {
            font-size: 18px;
            color: var(--text-gray);
            line-height: 1.8;
        }

        /* Pricing Cards */
        .pricing-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .pricing-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 2px solid var(--glass-border);
            border-radius: 32px;
            padding: 50px 40px;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--teal), var(--green), var(--orange));
            opacity: 0;
            transition: opacity 0.3s;
        }

        .pricing-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
            border-color: var(--orange);
        }

        .pricing-card:hover::before {
            opacity: 1;
        }

        .pricing-card.featured {
            border-color: var(--orange);
            box-shadow: 0 16px 40px rgba(255, 107, 53, 0.2);
        }

        .pricing-card.featured::before {
            opacity: 1;
        }

        .pricing-badge {
            display: inline-block;
            padding: 6px 16px;
            background: linear-gradient(135deg, var(--orange), var(--orange-light));
            color: white;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
        }

        .pricing-card h3 {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .pricing-description {
            font-size: 16px;
            color: var(--text-gray);
            margin-bottom: 30px;
            line-height: 1.7;
        }

        .pricing-price {
            margin-bottom: 30px;
        }

        .price-amount {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 56px;
            font-weight: 800;
            color: var(--orange);
            line-height: 1;
        }

        .price-currency {
            font-size: 32px;
            vertical-align: super;
        }

        .price-period {
            font-size: 18px;
            color: var(--text-gray);
            font-weight: 600;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 40px;
        }

        .pricing-features li {
            padding: 12px 0;
            color: var(--text-dark);
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 16px;
        }

        .pricing-features li::before {
            content: '✓';
            color: var(--green);
            font-weight: 700;
            font-size: 20px;
            flex-shrink: 0;
        }

        .pricing-cta {
            width: 100%;
            padding: 16px;
            background: var(--orange);
            color: white;
            border: none;
            border-radius: 50px;
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }

        .pricing-cta:hover {
            background: var(--orange-light);
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(255, 107, 53, 0.3);
        }

        .pricing-card.featured .pricing-cta {
            background: linear-gradient(135deg, var(--orange), var(--orange-light));
        }

        /* Compare Section */
        .compare-section {
            max-width: 1200px;
            margin: 80px auto 0;
            padding: 0 40px;
        }

        .compare-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .compare-header h3 {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .compare-table {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            overflow: hidden;
        }

        .compare-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .compare-table th {
            background: var(--off-white);
            padding: 20px;
            text-align: left;
            font-family: 'Cabinet Grotesk', sans-serif;
            font-weight: 700;
            font-size: 16px;
            color: var(--text-dark);
        }

        .compare-table td {
            padding: 18px 20px;
            border-top: 1px solid var(--border-light);
            color: var(--text-dark);
        }

        .compare-table td:first-child {
            font-weight: 600;
        }

        .compare-table .check {
            color: var(--green);
            font-weight: 700;
            font-size: 20px;
        }

        .compare-table .cross {
            color: var(--text-gray);
            opacity: 0.5;
        }

        /* FAQ Section */
        .faq-section {
            max-width: 900px;
            margin: 100px auto 80px;
            padding: 0 40px;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .faq-header h3 {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 38px;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .faq-item {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            margin-bottom: 20px;
            overflow: hidden;
        }

        .faq-question {
            padding: 25px 30px;
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }

        .faq-question:hover {
            color: var(--orange);
        }

        .faq-question::after {
            content: '+';
            font-size: 28px;
            font-weight: 700;
            transition: transform 0.3s;
        }

        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 30px 25px;
            color: var(--text-gray);
            line-height: 1.8;
        }

        