/* ============================================================
   pricing.css — TaskRevo pricing page styles
   ============================================================ */

/* styles live in pricing.css */
        .pricing-hero {
            padding: 48px 0 40px;
            text-align: center;
            background: var(--slate-50);
            border-bottom: 1px solid var(--slate-200);
        }

        .pricing-hero .section-title {
            margin-bottom: 12px;
        }

        .pricing-hero .section-sub {
            max-width: 460px;
            margin: 0 auto;
        }

        /* ── PRICING CARDS ── */
        .pricing-section {
            padding: 72px 0 96px;
        }

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

        .pricing-card {
            background: #fff;
            border: 1px solid var(--slate-200);
            border-radius: var(--radius-xl);
            padding: 36px 32px 40px;
            position: relative;
        }

        .pricing-card.featured {
            border: 2px solid var(--purple-600);
        }

        .featured-badge {
            position: absolute;
            top: -13px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--purple-600);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 4px 14px;
            border-radius: 100px;
            white-space: nowrap;
        }

        .plan-name {
            font-family: var(--font-body);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--slate-900);
            margin-bottom: 8px;
        }

        .plan-price {
            display: flex;
            align-items: baseline;
            gap: 4px;
            margin-bottom: 6px;
        }

        .price-amount {
            font-family: var(--font-body);
            font-size: 3rem;
            font-weight: 700;
            color: var(--slate-900);
            line-height: 1;
        }

        .price-per {
            font-size: 14px;
            color: var(--slate-500);
        }

        .plan-desc {
            font-size: 14px;
            color: var(--slate-500);
            margin-bottom: 28px;
            line-height: 1.6;
        }

        .plan-cta {
            display: block;
            text-align: center;
            padding: 12px;
            border-radius: var(--radius-md);
            font-weight: 600;
            font-size: 15px;
            margin-bottom: 32px;
            transition: background 0.15s, transform 0.1s;
            text-decoration: none;
        }

        .plan-cta-standard {
            background: var(--slate-100);
            color: var(--slate-800);
            border: 1px solid var(--slate-200);
        }

        .plan-cta-standard:hover {
            background: var(--slate-200);
            color: var(--slate-900);
        }

        .plan-cta-pro {
            background: var(--purple-600);
            color: #fff;
            border: 1px solid var(--purple-600);
        }

        .plan-cta-pro:hover {
            background: var(--purple-700);
            color: #fff;
            transform: translateY(-1px);
        }

        /* ── FEATURE LIST ── */
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .feature-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 9px 0;
            border-bottom: 1px solid var(--slate-100);
            font-size: 14px;
            color: var(--slate-700);
        }

        .feature-list li:last-child {
            border-bottom: none;
        }

        .feature-check {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #ecfdf5;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .feature-check svg {
            width: 10px;
            height: 10px;
            stroke: #059669;
            fill: none;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .feature-inherited {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--slate-400);
            padding: 12px 0 6px;
            border-bottom: none !important;
        }

        /* ── DIVIDER IN PRO ── */
        .plan-divider {
            border: none;
            border-top: 1px solid var(--slate-200);
            margin: 4px 0 4px;
        }

        /* ── FAQ / FINE PRINT ── */
        .pricing-note {
            text-align: center;
            margin-top: 40px;
            font-size: 13px;
            color: var(--slate-400);
        }

        .pricing-note a {
            color: var(--purple-600);
            text-decoration: underline;
        }

        /* ── MOBILE ── */
        @media (max-width: 768px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 24px;
                max-width: 480px;
            }
        }

        @media (max-width: 576px) {
            .pricing-hero { padding: 48px 0 36px; }
            .pricing-card { padding: 28px 22px 32px; }
            .price-amount { font-size: 2.4rem; }
        }