/* © 2025 VEX LLC. All rights reserved. */
/* ===================================================================
   PLANS.CSS - Subscription Pricing Modal
   =================================================================== */

        /* Plans Modal */
        .plans-modal { max-height: 95vh; overflow-y: auto; }
        .trial-banner { background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
            color: white; padding: 16px; border-radius: 16px; margin-bottom: 20px; text-align: center; }
        .trial-count { font-size: 32px; font-weight: 800; margin: 8px 0; }
        .trial-label { font-size: 13px; opacity: 0.9; }
        .discount-badge { background: #FCD34D; color: #92400E; padding: 6px 12px;
            border-radius: 20px; font-size: 12px; font-weight: 700; display: inline-block; margin-bottom: 12px; }
        .plan-card { border: 2px solid var(--border); border-radius: 16px; padding: 16px; margin-bottom: 12px;
            transition: all 0.2s; cursor: pointer; position: relative; }
        .plan-card:hover, .plan-card.selected { border-color: var(--primary); background: var(--primary-light); }
        .plan-card.popular { border-color: #6366F1; }
        .popular-tag { position: absolute; top: -10px; right: 16px; background: #6366F1; color: white;
            padding: 4px 12px; border-radius: 12px; font-size: 11px; font-weight: 600; }
        .plan-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
        .plan-desc { font-size: 13px; color: var(--text-light); margin-bottom: 12px; }
        .plan-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px; }
        .plan-price-first { font-size: 28px; font-weight: 800; color: var(--primary); }
        .plan-price-regular { font-size: 14px; color: var(--text-light); text-decoration: line-through; }
        .plan-price-after { font-size: 12px; color: var(--text-light); }
        .plan-features { list-style: none; padding: 0; margin: 12px 0; }
        .plan-features li { font-size: 13px; padding: 4px 0; display: flex; align-items: center; gap: 8px; }
        .plan-features li::before { content: "✓"; color: var(--primary); font-weight: 700; }
        .plan-benefit { background: #FEF3C7; color: #92400E; padding: 10px 12px; border-radius: 10px;
            font-size: 12px; font-weight: 500; margin-top: 8px; display: flex; align-items: center; gap: 8px; }
        .plan-benefit::before { content: "🎁"; }
        .payment-toggle { display: flex; background: var(--bg); border-radius: 12px; padding: 4px; margin-bottom: 16px; }
        .payment-toggle button { flex: 1; padding: 12px; border: none; border-radius: 10px;
            font-size: 14px; font-weight: 600; cursor: pointer; background: transparent; transition: all 0.2s; }
        .payment-toggle button.active { background: white; box-shadow: 0 2px 8px var(--shadow); }
        .pix-warning { background: #FEF3C7; color: #92400E; padding: 10px 12px; border-radius: 10px;
            font-size: 12px; margin-top: 12px; display: flex; align-items: center; gap: 8px; }
        .pix-warning::before { content: "⚠️"; }
