* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #0066cc;
            --primary-dark: #004c99;
            --secondary: #00cc66;
            --accent: #ff6b35;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --gray: #6c757d;
            --white: #ffffff;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            color: var(--dark);
            line-height: 1.6;
            background: var(--light);
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        .logo span {
            color: var(--secondary);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .btn {
            padding: 0.8rem 1.8rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            text-align: center;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,102,204,0.3);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }

        /* Hero Section */
        .pricing-hero {
            padding: 120px 2rem 4rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            text-align: center;
            color: white;
        }

        .pricing-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            animation: fadeInUp 0.8s ease;
        }

        .pricing-hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            opacity: 0.95;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Toggle Switch */
        .billing-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
            animation: fadeInUp 0.8s ease 0.4s backwards;
        }

        .billing-toggle span {
            font-size: 1.1rem;
            font-weight: 600;
        }

        .toggle-switch {
            position: relative;
            width: 60px;
            height: 30px;
            background: rgba(255,255,255,0.3);
            border-radius: 30px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .toggle-switch.active {
            background: var(--secondary);
        }

        .toggle-slider {
            position: absolute;
            top: 3px;
            left: 3px;
            width: 24px;
            height: 24px;
            background: white;
            border-radius: 50%;
            transition: transform 0.3s;
        }

        .toggle-switch.active .toggle-slider {
            transform: translateX(30px);
        }

        .save-badge {
            background: var(--accent);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        /* Pricing Section */
        .pricing-section {
            padding: 4rem 2rem;
            max-width: 1400px;
            margin: -100px auto 0;
            position: relative;
            z-index: 10;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .pricing-card {
            background: white;
            padding: 3rem;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            position: relative;
            border: 3px solid transparent;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .pricing-card.featured {
            border-color: var(--primary);
            transform: scale(1.05);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .pricing-card.featured:hover {
            transform: scale(1.08) translateY(-10px);
        }

        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--secondary);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: bold;
            box-shadow: 0 5px 15px rgba(0,204,102,0.3);
        }

        .plan-header {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid var(--light);
        }

        .pricing-card.featured .plan-header {
            border-bottom-color: rgba(255,255,255,0.2);
        }

        .plan-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 1.5rem;
        }

        .pricing-card.featured .plan-icon {
            background: rgba(255,255,255,0.2);
        }

        .plan-name {
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .plan-description {
            color: var(--gray);
            font-size: 0.95rem;
        }

        .pricing-card.featured .plan-description {
            color: rgba(255,255,255,0.9);
        }

        .plan-price {
            text-align: center;
            margin-bottom: 2rem;
        }

        .price-amount {
            font-size: 3.5rem;
            font-weight: bold;
            color: var(--primary);
            display: flex;
            align-items: flex-start;
            justify-content: center;
            gap: 0.3rem;
        }

        .pricing-card.featured .price-amount {
            color: white;
        }

        .currency {
            font-size: 1.5rem;
            margin-top: 0.5rem;
        }

        .period {
            color: var(--gray);
            font-size: 1rem;
            margin-top: 0.5rem;
        }

        .pricing-card.featured .period {
            color: rgba(255,255,255,0.8);
        }

        .old-price {
            text-decoration: line-through;
            color: var(--gray);
            font-size: 1.2rem;
            margin-top: 0.5rem;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .plan-features li {
            padding: 1rem 0;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            border-bottom: 1px solid var(--light);
        }

        .pricing-card.featured .plan-features li {
            border-bottom-color: rgba(255,255,255,0.1);
        }

        .plan-features li:last-child {
            border-bottom: none;
        }

        .check-icon {
            width: 24px;
            height: 24px;
            background: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            flex-shrink: 0;
            font-size: 0.8rem;
        }

        .pricing-card.featured .check-icon {
            background: rgba(255,255,255,0.3);
        }

        .feature-text {
            flex: 1;
        }

        .feature-text strong {
            display: block;
            margin-bottom: 0.3rem;
        }

        .feature-text small {
            color: var(--gray);
            font-size: 0.85rem;
        }

        .pricing-card.featured .feature-text small {
            color: rgba(255,255,255,0.7);
        }

        .plan-cta {
            width: 100%;
            padding: 1.2rem;
            font-size: 1.1rem;
        }

        .btn-white {
            background: white;
            color: var(--primary);
        }

        .btn-white:hover {
            background: var(--light);
        }

        /* Comparison Table */
        .comparison-section {
            padding: 4rem 2rem;
            background: white;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 3rem;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .section-description {
            color: var(--gray);
            font-size: 1.1rem;
        }

        .comparison-table {
            max-width: 1200px;
            margin: 0 auto;
            overflow-x: auto;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        thead {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        th {
            padding: 1.5rem;
            text-align: left;
            font-weight: 600;
        }

        th:first-child {
            text-align: left;
        }

        tbody tr {
            border-bottom: 1px solid var(--light);
            transition: background 0.3s;
        }

        tbody tr:hover {
            background: var(--light);
        }

        td {
            padding: 1.5rem;
            text-align: center;
        }

        td:first-child {
            text-align: left;
            font-weight: 600;
            color: var(--dark);
        }

        .check {
            color: var(--secondary);
            font-size: 1.5rem;
        }

        .cross {
            color: var(--gray);
            font-size: 1.5rem;
        }

        /* FAQ Section */
        .faq-section {
            padding: 4rem 2rem;
            background: var(--light);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            cursor: pointer;
            transition: all 0.3s;
        }

        .faq-item:hover {
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--dark);
        }

        .faq-icon {
            font-size: 1.5rem;
            color: var(--primary);
            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;
            color: var(--gray);
            line-height: 1.8;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            margin-top: 1rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            text-align: center;
            color: white;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 2rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-content p {
            color: rgba(255,255,255,0.7);
        }

        .company-credit {
            margin-top: 1rem;
            font-size: 0.9rem;
        }

        .company-credit span {
            color: var(--secondary);
            font-weight: 600;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .nav-links {
                display: none;
            }

            .pricing-hero h1 {
                font-size: 2.5rem;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            table {
                font-size: 0.9rem;
            }

            th, td {
                padding: 1rem 0.5rem;
            }
        }
		
		
		@media (max-width: 968px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--dark);
        border-radius: 3px;
        transition: all 0.3s;
    }

    .nav-links {
        position: fixed;
        top: 70px; /* height of navbar */
        right: -100%;
        width: 250px;
        height: calc(100% - 70px);
        background: white;
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
        list-style: none;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        display: flex; /* <- must be flex, NOT none */
        z-index: 1001;
    }

    .nav-links.show {
        right: 0;
    }

    /* hide desktop CTA buttons on mobile */
    .nav-cta {
        display: none;
    }
}
	
		
		