        .pricing-container {
            max-width: 1200px;
            margin: 6% auto;
            padding: 0 16px;
            font-family: 'Lexend', Arial, sans-serif;
        }

        .header-section {
            text-align: center;
            margin-bottom: 32px;
        }

        .billing-toggle-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 8px;
        }

        .toggle-option {
            font-weight: 500;
            color: #64748b;
            cursor: pointer;
        }

        .toggle-option.active {
            color: #23939e;
        }

        .switch {
            position: relative;
            display: inline-block;
            width: 44px;
            height: 24px;
        }

        .switch input {
            display: none;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #e2e8f0;
            border-radius: 24px;
            transition: .4s;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            left: 3px;
            bottom: 3px;
            background-color: #fff;
            border-radius: 50%;
            transition: .4s;
        }

        input:checked + .slider {
            background-color: #23939e;
        }

        input:checked + .slider:before {
            transform: translateX(20px);
        }

        .save-text {
            color: #23939e;
            font-size: 0.95rem;
            margin-top: 4px;
        }

        .pricing-grid {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: nowrap;         /* Prevent wrapping on desktop */
        }

        .pricing-card {
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 4px 24px 0 rgba(30,41,59,0.08);
            padding: 32px 24px 24px 24px;
            width: 270px;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            transition: box-shadow 0.2s;
            min-width: 250px;          /* Prevent shrinking too much */
            max-width: 300px;
        }

        .pricing-card.popular {
            border: 2px solid #23939e;
            box-shadow: 0 8px 32px 0 rgba(37,99,235,0.10);
        }

        .plan-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
        }

        .plan-name {
            font-size: 1.3rem;
            font-weight: 500;
            color: #0f172a;
        }

        .badge {
            background: #23939e;
            color: #fff;
            font-size: 0.8rem;
            font-weight: 600;
            border-radius: 8px;
            padding: 2px 8px;
            margin-left: 6px;
        }

        .plan-price {
            font-size: 2rem;
            font-weight: 700;
            color: #23939e;
            margin-bottom: 8px;
            display: flex;
            align-items: baseline;
            gap: 4px;
        }

        .price-sub {
            font-size: 1rem;
            color: #64748b;
            font-weight: 400;
        }

        .plan-btn {
            width: 100%;
            padding: 10px 0;
            border-radius: 8px;
            border: none;
            background: #fff;
            color: #23939e;
            font-weight: 600;
            font-size: 1rem;
            margin: 12px 0 16px 0;
            cursor: pointer;
            border: 2px solid #23939e;
            transition: background 0.2s, color 0.2s;
        }

        .plan-btn.primary {
            background: #23939e;
            color: #fff;
        }

        .plan-btn.secondary {
            background: #0f172a;
            color: #fff;
            border: 2px solid #0f172a;
        }

        .plan-btn:hover {
            background: #23939e;
            color: #fff;
        }

        .ai-chatbot {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
        }

        .ai-icon {
            background: #23939e;
            color: #fff;
            border-radius: 50%;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            font-weight: 700;
        }

        .social-icons {
            display: flex;
            gap: 8px;
            margin-bottom: 16px;
        }

        .icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #23939e;
            display: flex;
            color: white;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }

        .icon.whatsapp {
            background: #25d366;
            color: #fff;
        }

        .icon.telegram {
            background: #229ed9;
            color: #fff;
        }

        .icon.instagram {
            background: #e1306c;
            color: #fff;
        }

        .icon.facebook {
            background: #23939e;
            color: #fff;
        }

        .icon.email {
            background: #64748b;
            color: #fff;
        }

        .features-list {
            list-style: none;
            padding: 0;
            margin: 0;
            width: 100%;
        }

        .features-list li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #334155;
            margin-bottom: 7px;
        }

        .check {
            color: #22c55e;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .cross {
            color: #94a3b8;
            font-weight: bold;
            font-size: 1.1rem;
        }

        /* Responsive: Stack cards on small screens */
        @media (max-width: 1200px) {
            .pricing-grid {
                gap: 16px;
            }
            .pricing-card {
                width: 220px;
                min-width: 180px;
                padding: 24px 10px 18px 10px;
            }
        }
        @media (max-width: 900px) {
            .pricing-grid {
                flex-wrap: wrap;         /* Allow wrapping on tablets */
                justify-content: center;
            }
            .pricing-card {
                width: 45%;
                min-width: 220px;
                margin-bottom: 24px;
            }
        }
        @media (max-width: 700px) {
            .pricing-grid {
                flex-direction: column;
                align-items: center;
                gap: 18px;
            }
            .pricing-card {
                width: 100%;
                min-width: unset;
                margin-bottom: 0;
            }
        }