* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --white: #ffffff;
            --off-white: #fafafa;
            --light-gray: #f5f5f5;
            --orange: #ff6b35;
            --orange-light: #ff8c61;
            --orange-glow: rgba(255, 107, 53, 0.2);
            --orange-subtle: rgba(255, 107, 53, 0.08);
            --text-dark: #1a1a1a;
            --text-gray: #6b7280;
            --border-light: #e8e8e8;
            --glass-bg: rgba(255, 255, 255, 0.7);
            --glass-border: rgba(255, 255, 255, 0.3);
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
            --shadow-orange: 0 8px 24px var(--orange-glow);
        }

        body.dark-theme {
            --white: #0f0f14;
            --off-white: #1a1a22;
            --light-gray: #252530;
            --text-dark: #ffffff;
            --text-gray: #b0b0c0;
            --border-light: #2a2a35;
            --glass-bg: rgba(26, 26, 34, 0.7);
            --glass-border: rgba(255, 255, 255, 0.1);
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
            --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.6);
        }

        body {
            font-family: 'General Sans', sans-serif;
            background: var(--white);
            color: var(--text-dark);
            line-height: 1.6;
        }

        body.dark-theme .glow-orb {
            opacity: 0.08;
        }

        body.dark-theme nav {
            background: rgba(15, 15, 20, 0.85);
        }

        /* Background Glow */
        .bg-glow {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .glow-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.15;
            animation: float 20s ease-in-out infinite;
        }

        .glow-1 {
            width: 500px;
            height: 500px;
            background: var(--orange);
            top: -10%;
            right: -5%;
            animation-delay: 0s;
        }

        .glow-2 {
            width: 400px;
            height: 400px;
            background: #a8d735;
            bottom: -10%;
            left: -5%;
            animation-delay: -7s;
        }

        .glow-3 {
            width: 350px;
            height: 350px;
            background: var(--orange);
            top: 50%;
            left: 50%;
            animation-delay: -14s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -50px) scale(1.1); }
            66% { transform: translate(-20px, 30px) scale(0.9); }
        }

        
        /* Hero Section */
        .hero {
            padding: 180px 60px 100px;
            text-align: center;
            position: relative;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-block;
            padding: 8px 20px;
            background: var(--orange-subtle);
            border: 1px solid rgba(255, 107, 53, 0.2);
            border-radius: 50px;
            color: var(--orange);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .hero h1 {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 64px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
        }

        .text-gradient {
            background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 20px;
            line-height: 1.6;
            color: var(--text-gray);
            margin-bottom: 40px;
        }

        /* Pricing Toggle */
        .pricing-toggle {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin: 40px 0;
        }

        .toggle-label {
            font-weight: 600;
            color: var(--text-gray);
        }

        .toggle-label.active {
            color: var(--text-dark);
        }

        .toggle-switch {
            width: 60px;
            height: 32px;
            background: var(--border-light);
            border-radius: 50px;
            position: relative;
            cursor: pointer;
            transition: all 0.3s;
        }

        .toggle-switch.active {
            background: var(--orange);
        }

        .toggle-slider {
            width: 24px;
            height: 24px;
            background: white;
            border-radius: 50%;
            position: absolute;
            top: 4px;
            left: 4px;
            transition: all 0.3s;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .toggle-switch.active .toggle-slider {
            left: 32px;
        }

        .discount-badge {
            padding: 4px 12px;
            background: #10b981;
            color: white;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
        }

        /* Pricing Cards */
        .pricing-section {
            padding: 60px;
            position: relative;
            z-index: 1;
        }

        .pricing-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .pricing-card {
            background: var(--white);
            border: 2px solid var(--border-light);
            border-radius: 24px;
            padding: 40px;
            transition: all 0.3s;
            position: relative;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--orange);
        }

        .pricing-card.popular {
            border-color: var(--orange);
            box-shadow: 0 0 0 4px var(--orange-subtle);
        }

        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            padding: 6px 20px;
            background: var(--orange);
            color: white;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .plan-name {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .plan-description {
            color: var(--text-gray);
            font-size: 15px;
            margin-bottom: 25px;
        }

        .plan-price {
            margin-bottom: 30px;
        }

        .price-amount {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 56px;
            font-weight: 800;
            color: var(--text-dark);
            line-height: 1;
        }

        .price-currency {
            font-size: 32px;
            vertical-align: super;
        }

        .price-period {
            color: var(--text-gray);
            font-size: 16px;
        }

        .old-price {
            text-decoration: line-through;
            color: var(--text-gray);
            font-size: 24px;
            margin-right: 10px;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .plan-features li {
            padding: 12px 0;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            border-bottom: 1px solid var(--border-light);
        }

        .plan-features li:last-child {
            border-bottom: none;
        }

        .feature-icon {
            color: #10b981;
            font-weight: 700;
            font-size: 18px;
            flex-shrink: 0;
        }

        .feature-text {
            color: var(--text-dark);
            font-size: 15px;
        }

        .btn-select-plan {
            width: 100%;
            padding: 16px;
            background: var(--orange);
            color: white;
            border: none;
            border-radius: 50px;
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-select-plan:hover {
            background: var(--orange-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow-orange);
        }

        .pricing-card.popular .btn-select-plan {
            background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
        }

        /* Features Comparison */
        .comparison-section {
            padding: 100px 60px;
            background: var(--off-white);
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .section-badge {
            display: inline-block;
            padding: 6px 16px;
            background: var(--orange-subtle);
            color: var(--orange);
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .section-title {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .section-description {
            font-size: 18px;
            color: var(--text-gray);
        }

        .comparison-table {
            max-width: 1400px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .comparison-row {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            border-bottom: 1px solid var(--border-light);
        }

        .comparison-row:last-child {
            border-bottom: none;
        }

        .comparison-header {
            background: var(--off-white);
            font-weight: 700;
        }

        .comparison-cell {
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .comparison-cell:first-child {
            justify-content: flex-start;
            text-align: left;
            font-weight: 600;
        }

        .check-icon {
            color: #10b981;
            font-size: 24px;
        }

        .cross-icon {
            color: var(--text-gray);
            font-size: 20px;
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 60px;
        }

        .faq-grid {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .faq-item {
            background: var(--white);
            border: 2px solid var(--border-light);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .faq-item:hover {
            border-color: var(--orange);
        }

        .faq-question {
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 18px;
            font-weight: 700;
        }

        .faq-icon {
            font-size: 24px;
            color: var(--orange);
            transition: transform 0.3s;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 30px 25px;
            color: var(--text-gray);
            line-height: 1.8;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 60px;
            background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
            text-align: center;
            color: white;
        }

        .cta-section h2 {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary, .btn-secondary {
            padding: 16px 40px;
            border: none;
            border-radius: 50px;
            font-family: 'General Sans', sans-serif;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
        }

        .btn-primary {
            background: white;
            color: var(--orange);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 24px rgba(255, 255, 255, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--orange);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 600px;
            }

            .comparison-row {
                grid-template-columns: 1fr;
            }

            .comparison-cell {
                justify-content: flex-start;
                padding: 15px 20px;
            }

            .comparison-cell::before {
                content: attr(data-label);
                font-weight: 700;
                margin-right: 10px;
            }

            .comparison-header {
                display: none;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 15px 25px;
            }

            .nav-links {
                display: none;
            }

            .hero {
                padding: 140px 25px 80px;
            }

            .hero h1 {
                font-size: 36px;
            }

            .pricing-section {
                padding: 60px 25px;
            }

            .comparison-section,
            .faq-section,
            .cta-section {
                padding: 80px 25px;
            }

            .section-title {
                font-size: 32px;
            }

            .cta-section h2 {
                font-size: 32px;
            }
        }