        .pricing-header {
            text-align: center;
            padding: 60px 20px 40px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .pricing-header h1 {
            font-size: 42px;
            margin-bottom: 15px;
        }

        .pricing-header p {
            font-size: 18px;
            opacity: 0.95;
        }

        .billing-toggle {
            margin-top: 20px;
            font-size: 16px;
        }

        .billing-annual {
            padding: 8px 20px;
            background: rgba(255,255,255,0.2);
            border-radius: 20px;
            margin-right: 10px;
        }

        .billing-annual.active {
            background: white;
            color: #667eea;
            font-weight: 600;
        }

        .billing-note {
            font-size: 14px;
            color: #a8ffb4;
        }

        .pricing-plans {
            padding: 60px 20px;
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .plan-card {
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            padding: 40px 30px;
            position: relative;
            transition: all 0.3s;
        }

        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
        }

        .plan-card.popular {
            border-color: #667eea;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #667eea;
            color: white;
            padding: 6px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }

        .plan-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .plan-header h3 {
            font-size: 28px;
            color: #2d3748;
            margin-bottom: 10px;
        }

        .plan-desc {
            color: #718096;
            margin-bottom: 20px;
        }

        .plan-price {
            margin: 20px 0 5px;
        }

        .plan-price .price {
            font-size: 48px;
            font-weight: 700;
            color: #667eea;
        }

        .plan-price .period {
            font-size: 18px;
            color: #718096;
        }

        .price-note {
            font-size: 14px;
            color: #a0aec0;
        }

        .plan-features ul {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }

        .plan-features li {
            padding: 12px 0;
            color: #4a5568;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .plan-features i {
            color: #48bb78;
            font-size: 18px;
        }

        .btn-plan {
            width: 100%;
            padding: 15px;
            border: 2px solid #667eea;
            background: white;
            color: #667eea;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-plan:hover {
            background: #667eea;
            color: white;
        }

        .btn-plan-primary {
            background: #667eea;
            color: white;
        }

        .btn-plan-primary:hover {
            background: #5568d3;
        }

        .addons-section, .services-section, .faq-section {
            padding: 60px 20px;
            background: #f7fafc;
        }

        .addons-section h2, .services-section h2, .faq-section h2 {
            text-align: center;
            font-size: 36px;
            margin-bottom: 10px;
        }

        .section-subtitle {
            text-align: center;
            color: #718096;
            margin-bottom: 40px;
        }

        .addons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .addon-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            border: 2px solid #e2e8f0;
            transition: all 0.3s;
        }

        .addon-card:hover {
            border-color: #667eea;
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.1);
        }

        .addon-card i {
            font-size: 40px;
            color: #667eea;
            margin-bottom: 15px;
        }

        .addon-card h4 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .addon-card p {
            color: #718096;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .addon-price, .service-price {
            font-size: 24px;
            font-weight: 700;
            color: #667eea;
        }

        .services-section {
            background: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: #f7fafc;
            padding: 35px;
            border-radius: 12px;
            text-align: center;
            border: 2px solid #e2e8f0;
            transition: all 0.3s;
        }

        .service-card:hover {
            border-color: #764ba2;
            box-shadow: 0 10px 20px rgba(118, 75, 162, 0.1);
        }

        .service-card i {
            font-size: 50px;
            color: #764ba2;
            margin-bottom: 20px;
        }

        .service-card h4 {
            font-size: 22px;
            margin-bottom: 12px;
        }

        .service-card p {
            color: #718096;
            margin-bottom: 20px;
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            padding: 25px;
            border-radius: 8px;
            margin-bottom: 15px;
        }

        .faq-item h4 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #2d3748;
        }

        .faq-item p {
            color: #718096;
            line-height: 1.6;
        }

        .cta-section {
            text-align: center;
            padding: 80px 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .cta-section h2 {
            font-size: 38px;
            margin-bottom: 15px;
        }

        .cta-section p {
            font-size: 18px;
            margin-bottom: 30px;
        }

        .btn-large {
            padding: 18px 50px;
            font-size: 18px;
        }

        .cta-note {
            margin-top: 15px;
            font-size: 14px;
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .pricing-header h1 {
                font-size: 32px;
            }

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

            .plan-price .price {
                font-size: 36px;
            }
        }
