        :root {
            --gold: #F5A623;
            --gold-bright: #FFB938;
            --gold-dark: #D4890F;
            --slate: #4A5568;
            --slate-light: #718096;
            --obsidian: #0D0D0F;
            --carbon: #141419;
            --graphite: #1C1C24;
            --onyx: #252530;
            --glass-white: rgba(255, 255, 255, 0.03);
            --glass-border: rgba(255, 255, 255, 0.08);
            --glass-highlight: rgba(255, 255, 255, 0.12);
            --glow-gold: rgba(245, 166, 35, 0.4);
            --glow-gold-soft: rgba(245, 166, 35, 0.15);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--obsidian);
            color: #E8E8EC;
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
        }

        /* Liquid Glass Background Effects */
        .liquid-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .liquid-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.5;
            animation: float 20s ease-in-out infinite;
        }

        .orb-1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--glow-gold-soft), transparent 70%);
            top: -200px;
            right: -100px;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(74, 85, 104, 0.3), transparent 70%);
            bottom: 10%;
            left: -100px;
            animation-delay: -5s;
        }

        .orb-3 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--glow-gold-soft), transparent 70%);
            top: 50%;
            right: -150px;
            animation-delay: -10s;
            opacity: 0.3;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(30px, -30px) scale(1.05); }
            50% { transform: translate(-20px, 20px) scale(0.95); }
            75% { transform: translate(20px, 10px) scale(1.02); }
        }

        /* Grid Pattern Overlay */
        .grid-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background-image: 
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black, transparent);
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        nav.scrolled {
            background: rgba(13, 13, 15, 0.85);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid var(--glass-border);
        }

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

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .nav-logo img {
            height: 44px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .nav-logo:hover img {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--slate-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            letter-spacing: 0.02em;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: #fff;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        /* Liquid Glass Button */
        .btn {
            padding: 0.75rem 1.75rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.02em;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-glass {
            background: var(--glass-white);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            color: #E8E8EC;
        }

        .btn-glass:hover {
            background: var(--glass-highlight);
            border-color: var(--glass-highlight);
            transform: translateY(-2px);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: #000;
            box-shadow: 0 4px 20px var(--glow-gold-soft);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px var(--glow-gold);
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 2rem 80px;
            position: relative;
        }

        .hero-content {
            max-width: 1200px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: var(--glass-white);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 100px;
            font-size: 0.85rem;
            color: var(--slate-light);
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            background: var(--gold);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.2); }
        }

        .hero-icon {
            width: 120px;
            height: 120px;
            margin: 0 auto 2rem;
            animation: fadeInUp 0.8s ease-out 0.1s both;
            position: relative;
        }

        .hero-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 0 40px var(--glow-gold-soft));
        }

        .hero-icon::after {
            content: '';
            position: absolute;
            inset: -20px;
            background: radial-gradient(circle, var(--glow-gold-soft), transparent 70%);
            z-index: -1;
            animation: breathe 4s ease-in-out infinite;
        }

        @keyframes breathe {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 5.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.03em;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .hero h1 .gradient {
            background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.35rem);
            color: var(--slate-light);
            max-width: 700px;
            margin: 0 auto 2.5rem;
            font-weight: 400;
            animation: fadeInUp 0.8s ease-out 0.3s both;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-top: 4rem;
            padding-top: 3rem;
            border-top: 1px solid var(--glass-border);
            animation: fadeInUp 0.8s ease-out 0.5s both;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--gold);
            font-family: 'JetBrains Mono', monospace;
        }

        .hero-stat-label {
            font-size: 0.9rem;
            color: var(--slate-light);
            margin-top: 4px;
        }

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

        /* Liquid Glass Card */
        .glass-card {
            background: linear-gradient(135deg, var(--glass-white), rgba(255,255,255,0.01));
            backdrop-filter: blur(20px) saturate(150%);
            -webkit-backdrop-filter: blur(20px) saturate(150%);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            position: relative;
            overflow: hidden;
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--glass-highlight), transparent);
        }

        .glass-card-glow {
            box-shadow: 
                0 4px 30px rgba(0,0,0,0.3),
                0 0 60px -10px var(--glow-gold-soft);
        }

        /* Section Styles */
        section {
            padding: 100px 2rem;
            position: relative;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .section-tag {
            display: inline-block;
            padding: 6px 16px;
            background: linear-gradient(135deg, rgba(245, 166, 35, 0.15), rgba(245, 166, 35, 0.05));
            border: 1px solid rgba(245, 166, 35, 0.3);
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.5rem;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }

        .section-desc {
            font-size: 1.15rem;
            color: var(--slate-light);
        }

        /* Features Section */
        .features {
            background: linear-gradient(180deg, transparent, var(--carbon) 50%, transparent);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            padding: 2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: rgba(245, 166, 35, 0.3);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            box-shadow: 0 8px 20px var(--glow-gold-soft);
        }

        .feature-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .feature-desc {
            color: var(--slate-light);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* How It Works */
        .how-it-works {
            max-width: 1000px;
            margin: 0 auto;
        }

        .timeline {
            position: relative;
            padding: 2rem 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, transparent, var(--gold), var(--gold), transparent);
            transform: translateX(-50%);
        }

        .timeline-item {
            display: grid;
            grid-template-columns: 1fr 80px 1fr;
            align-items: center;
            gap: 2rem;
            margin-bottom: 3rem;
            position: relative;
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline-content {
            padding: 2rem;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            grid-column: 1;
            text-align: right;
        }

        .timeline-item:nth-child(odd) .timeline-number {
            grid-column: 2;
        }

        .timeline-item:nth-child(odd) .timeline-spacer {
            grid-column: 3;
        }

        .timeline-item:nth-child(even) .timeline-spacer {
            grid-column: 1;
        }

        .timeline-item:nth-child(even) .timeline-number {
            grid-column: 2;
        }

        .timeline-item:nth-child(even) .timeline-content {
            grid-column: 3;
            text-align: left;
        }

        .timeline-number {
            width: 60px;
            height: 60px;
            background: var(--carbon);
            border: 2px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gold);
            font-family: 'JetBrains Mono', monospace;
            box-shadow: 0 0 30px var(--glow-gold-soft);
            z-index: 2;
            justify-self: center;
        }

        .timeline-title {
            font-size: 1.35rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .timeline-desc {
            color: var(--slate-light);
            line-height: 1.7;
        }

        .timeline-spacer {
            display: block;
        }

        /* Pricing Section */
        .pricing {
            background: var(--carbon);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            align-items: start;
        }

        .pricing-card {
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .pricing-card.featured {
            border-color: var(--gold);
            transform: scale(1.02);
            box-shadow: 
                0 8px 40px rgba(0,0,0,0.4),
                0 0 80px -20px var(--glow-gold);
        }

        .pricing-card.featured::before {
            background: linear-gradient(90deg, var(--gold), transparent, var(--gold));
        }

        .pricing-card:hover:not(.featured) {
            transform: translateY(-8px);
            border-color: var(--glass-highlight);
        }

        .pricing-badge {
            display: inline-block;
            padding: 4px 12px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #000;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
        }

        .pricing-name {
            font-size: 1.35rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .pricing-price {
            display: flex;
            align-items: baseline;
            gap: 4px;
            margin-bottom: 0.5rem;
        }

        .pricing-currency {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--gold);
        }

        .pricing-amount {
            font-size: 3.5rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1;
        }

        .pricing-period {
            font-size: 1rem;
            color: var(--slate-light);
        }

        .pricing-desc {
            color: var(--slate-light);
            font-size: 0.9rem;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--glass-border);
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .pricing-features li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 1rem;
            font-size: 0.95rem;
            color: #C8C8D0;
        }

        .pricing-features li svg {
            flex-shrink: 0;
            margin-top: 3px;
        }

        .pricing-cta {
            width: 100%;
            justify-content: center;
            padding: 1rem 2rem;
        }

        /* Feature Matrix Section */
        .feature-matrix {
            background: linear-gradient(180deg, var(--carbon), var(--obsidian));
            padding: 100px 2rem;
        }

        .matrix-container {
            max-width: 1200px;
            margin: 0 auto;
            overflow-x: auto;
        }

        .matrix-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            font-size: 0.9rem;
        }

        .matrix-table thead {
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .matrix-table th {
            background: var(--onyx);
            padding: 1.25rem 1rem;
            text-align: center;
            font-weight: 600;
            border-bottom: 2px solid var(--gold);
            position: relative;
        }

        .matrix-table th:first-child {
            text-align: left;
            border-radius: 12px 0 0 0;
            background: var(--graphite);
        }

        .matrix-table th:last-child {
            border-radius: 0 12px 0 0;
        }

        .matrix-table th.featured-col {
            background: linear-gradient(135deg, rgba(245, 166, 35, 0.15), rgba(245, 166, 35, 0.05));
            border-bottom-color: var(--gold-bright);
        }

        .plan-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        .plan-name {
            font-size: 1.1rem;
            color: #fff;
        }

        .plan-price {
            font-family: 'JetBrains Mono', monospace;
            font-size: 1.25rem;
            color: var(--gold);
        }

        .matrix-table tbody tr {
            transition: background 0.2s ease;
        }

        .matrix-table tbody tr:hover {
            background: rgba(255, 255, 255, 0.02);
        }

        .matrix-table td {
            padding: 1rem;
            border-bottom: 1px solid var(--glass-border);
            text-align: center;
            vertical-align: middle;
        }

        .matrix-table td:first-child {
            text-align: left;
            color: #C8C8D0;
            font-weight: 500;
        }

        .matrix-table td.featured-col {
            background: rgba(245, 166, 35, 0.03);
        }

        .matrix-table tbody tr:last-child td {
            border-bottom: none;
        }

        .matrix-table tbody tr:last-child td:first-child {
            border-radius: 0 0 0 12px;
        }

        .matrix-table tbody tr:last-child td:last-child {
            border-radius: 0 0 12px 0;
        }

        .matrix-category {
            background: var(--graphite) !important;
            font-weight: 600 !important;
            color: var(--gold) !important;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .matrix-category td {
            padding: 0.75rem 1rem !important;
            border-bottom: 1px solid var(--glass-border) !important;
        }

        .check-icon {
            color: #22C55E;
            font-size: 1.25rem;
        }

        .cross-icon {
            color: var(--slate);
            font-size: 1.1rem;
        }

        .matrix-value {
            font-family: 'JetBrains Mono', monospace;
            color: #fff;
            font-weight: 500;
        }

        .matrix-highlight {
            color: var(--gold);
            font-weight: 600;
        }

        /* Stats Section */
        .stats {
            padding: 60px 2rem;
            background: linear-gradient(180deg, var(--obsidian), var(--carbon));
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
        }

        .stat-value {
            font-size: 3rem;
            font-weight: 700;
            color: var(--gold);
            font-family: 'JetBrains Mono', monospace;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--slate-light);
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 2rem;
            text-align: center;
        }

        .cta-card {
            max-width: 800px;
            margin: 0 auto;
            padding: 4rem;
            background: linear-gradient(135deg, rgba(245, 166, 35, 0.08), rgba(245, 166, 35, 0.02));
            border-color: rgba(245, 166, 35, 0.2);
        }

        .cta-title {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-desc {
            color: var(--slate-light);
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        /* Footer */
        footer {
            padding: 60px 2rem 30px;
            border-top: 1px solid var(--glass-border);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 4rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .footer-brand {
            max-width: 300px;
        }

        .footer-brand img {
            height: 40px;
            margin-bottom: 1rem;
        }

        .footer-brand p {
            color: var(--slate-light);
            font-size: 0.9rem;
            line-height: 1.7;
        }

        .footer-links {
            display: flex;
            gap: 5rem;
        }

        .footer-column h4 {
            font-size: 0.9rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 1.25rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 0.75rem;
        }

        .footer-column a {
            color: var(--slate-light);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

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

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid var(--glass-border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-copy {
            color: var(--slate);
            font-size: 0.85rem;
        }

        .footer-socials {
            display: flex;
            gap: 1rem;
        }

        .footer-socials a {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--glass-white);
            border: 1px solid var(--glass-border);
            border-radius: 10px;
            color: var(--slate-light);
            transition: all 0.3s ease;
        }

        .footer-socials a:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: #000;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-btn span {
            width: 24px;
            height: 2px;
            background: #fff;
            transition: all 0.3s ease;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .timeline::before {
                left: 40px;
            }

            .timeline-item {
                grid-template-columns: 80px 1fr;
                gap: 1.5rem;
            }

            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                grid-column: 2;
                text-align: left;
            }

            .timeline-item:nth-child(odd) .timeline-number,
            .timeline-item:nth-child(even) .timeline-number {
                grid-column: 1;
                justify-self: center;
            }

            .timeline-item .timeline-spacer {
                display: none;
            }

            .timeline-number {
                width: 50px;
                height: 50px;
                font-size: 1.25rem;
            }

            .matrix-table {
                font-size: 0.85rem;
            }

            .matrix-table th,
            .matrix-table td {
                padding: 0.75rem 0.5rem;
            }

            .comparison-table {
                font-size: 0.85rem;
            }

            .comparison-table th,
            .comparison-table td {
                padding: 0.75rem 0.5rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .hero-stats {
                flex-direction: column;
                gap: 2rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-top {
                flex-direction: column;
                gap: 2rem;
            }

            .footer-links {
                flex-wrap: wrap;
                gap: 2rem;
            }

            .pricing-card.featured {
                transform: none;
            }

            .matrix-container {
                margin: 0 -1rem;
                padding: 0 1rem;
            }

            .comparison-table-wrapper {
                margin: 0 -1rem;
                padding: 0 1rem;
            }
        }

        @media (max-width: 480px) {
            .features-grid {
                grid-template-columns: 1fr;
            }

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

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-icon {
                width: 80px;
                height: 80px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Scroll Animations */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--obsidian);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--onyx);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--gold-dark);
        }

        /* Tooltip for feature matrix */
        .tooltip {
            position: relative;
            cursor: help;
        }

        .tooltip::after {
            content: attr(data-tip);
            position: absolute;
            bottom: 125%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--onyx);
            color: #fff;
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 0.8rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        .tooltip:hover::after {
            opacity: 1;
            visibility: visible;
        }

        /* Comparison Table Styles */
        .comparison-table-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            overflow-x: auto;
        }

        .comparison-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            font-size: 0.9rem;
        }

        .comparison-table thead {
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .comparison-table th {
            background: var(--onyx);
            padding: 1.25rem 1rem;
            text-align: center;
            font-weight: 600;
            border-bottom: 2px solid var(--gold);
            position: relative;
        }

        .comparison-table th:first-child {
            text-align: left;
            border-radius: 12px 0 0 0;
            background: var(--graphite);
        }

        .comparison-table th:last-child {
            border-radius: 0 12px 0 0;
        }

        .comparison-table th.featured-column {
            background: linear-gradient(135deg, rgba(245, 166, 35, 0.15), rgba(245, 166, 35, 0.05));
            border-bottom-color: var(--gold-bright);
        }

        .plan-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        .plan-name {
            font-size: 1.1rem;
            color: #fff;
        }

        .plan-price {
            font-family: 'JetBrains Mono', monospace;
            font-size: 1.25rem;
            color: var(--gold);
        }

        .comparison-table tbody tr {
            transition: background 0.2s ease;
        }

        .comparison-table tbody tr:hover {
            background: rgba(255, 255, 255, 0.02);
        }

        .comparison-table td {
            padding: 1rem;
            border-bottom: 1px solid var(--glass-border);
            text-align: center;
            vertical-align: middle;
        }

        .comparison-table td:first-child {
            text-align: left;
            color: #C8C8D0;
            font-weight: 500;
        }

        .comparison-table td.featured-column {
            background: rgba(245, 166, 35, 0.03);
        }

        .comparison-table tbody tr:last-child td {
            border-bottom: none;
        }

        .comparison-table tbody tr:last-child td:first-child {
            border-radius: 0 0 0 12px;
        }

        .comparison-table tbody tr:last-child td:last-child {
            border-radius: 0 0 12px 0;
        }

        .category-row {
            background: var(--graphite) !important;
            font-weight: 600 !important;
            color: var(--gold) !important;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .category-row td {
            padding: 0.75rem 1rem !important;
            border-bottom: 1px solid var(--glass-border) !important;
        }

        .check-icon {
            color: #22C55E;
            font-size: 1.25rem;
        }

        .cross-icon {
            color: var(--slate);
            font-size: 1.1rem;
        }

        .matrix-value {
            font-family: 'JetBrains Mono', monospace;
            color: #fff;
            font-weight: 500;
        }

        .matrix-highlight {
            color: var(--gold);
            font-weight: 600;
        }
