        body {
            font-family: 'Poppins', sans-serif;
            background: #f5f7fa;
            text-align: center;
        }

        .payment-box {
            background: linear-gradient(87deg, rgba(205, 201, 237, 0.5), rgba(191, 228, 245, 0.45));
            width: 400px;
            margin: 80px auto;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        }

        .price {
            font-size: 28px;
            color: #0070ba;
            margin: 15px 0;
        }

        .btn {
            background: #0070ba;
            color: white;
            padding: 12px 20px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            width: 100%;
        }

        .back {
            margin-top: 15px;
            display: block;
            text-decoration: none;
        }

        /*subscription_plans*/

        .expired-box {
            background: #fff3f3;
            border: 1px solid #ffcccc;
            padding: 25px;
            margin: 40px auto;
            width: 60%;
            border-radius: 10px;
        }

        .expired-title {
            color: #d60000;
            font-size: 22px;
            font-weight: bold;
        }

        .expired-sub {
            margin-top: 10px;
            color: #555;
        }


        /* ── PRICING HERO ── */
        .pricing-hero {
            padding: 0px 0 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .pricing-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .pricing-hero-inner {
            font-family: 'poppins', system-ui, sans-serif;
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
            padding: 0 20px;
            animation: fadeUp 0.7s ease forwards;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .pricing-hero-label {
            font-size: 14px;
            font-weight: 600;
            color: #1d4ed8;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 10px;
            margin-top: 30px;
        }

        .pricing-hero-title {
            font-family: 'poppins', system-ui, sans-serif;
            font-size: 26px;
            font-weight: 900;
            color: #1a2744;
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .pricing-hero-title span {
            font-family: 'poppins', system-ui, sans-serif;
            background: #0a1628;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-size: 26px;
        }

        .pricing-hero-sub {
            font-family: 'poppins', system-ui, sans-serif;
            font-size: 15px;
            color: #1a2744;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        /* ── SECTION ── */
        .pricing-section {

            padding: 6px 0 8px;
        }

        .pricing-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* ── CARDS GRID ── */
        .pricing-grid {
            font-family: 'poppins', system-ui, sans-serif;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            align-items: start;
            /* 🔥 change this */
            margin-bottom: 70px;
        }

        /* ── BASE CARD ── */
        .pricing-card {
            text-align: left;
            background: linear-gradient(87deg, rgba(205, 201, 237, 0.5), rgba(191, 228, 245, 0.45));
            border-radius: 20px;
            padding: 10px;
            display: flex;
            flex-direction: column;
            position: relative;
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 5px solid transparent;
            margin-top: auto;
        }

        .card-body {
            flex-grow: 1;
        }

        .pricing-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .pricing-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .pricing-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .pricing-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(2, 112, 224, 0.14);
        }

        /* FEATURED */
        .featured {
            background: linear-gradient(87deg, rgba(205, 201, 237, 0.5), rgba(191, 228, 245, 0.45));
            box-shadow: 0 8px 40px rgba(2, 112, 224, 0.3);
            transform: scale(1.03);
        }

        .featured:hover {
            transform: scale(1.03) translateY(-6px);
        }

        .featured-ribbon {
            position: absolute;
            top: -1px;
            right: 24px;
            background: linear-gradient(135deg, #61dafb, #0270e0);
            color: white;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            padding: 5px 14px;
            border-radius: 0 0 10px 10px;
            text-transform: uppercase;
        }

        .price-amount,
        .price-period {
            text-align: left;
        }

        /* ── BADGE ── */
        .tier-badge {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 4px 12px;
            border-radius: 20px;
            display: inline-block;
        }

        .starter-badge {
            background: rgba(191, 228, 245, 0.45);
            color: #0a1628;
        }

        .professional-badge {
            background: rgba(191, 228, 245, 0.45);
            color: #0a1628;
        }

        .enterprise-badge {
            background: rgba(191, 228, 245, 0.45);
            color: #0a1628;
        }

        /* ── PRICE ── */
        .tier-price {
            display: flex;
            align-items: baseline;
            gap: 4px;
            margin-bottom: 4px;
            text-align: center;
            justify-content: flex-start;
            text-align: left;
        }

        .price-amount {
            font-size: 25px;
            font-weight: 500;
            color: #0a1628;
            text-align: center;
        }

        .featured .price-amount {
            font-size: 38px;
            font-weight: 500;
            color: #0a1628;
            text-align: center;
        }

        .price-period {
            font-size: 14px;
            color: #0a1628;
            font-weight: 400;
        }

        .featured .price-period {
            color: #0a1628;
        }

        /* ── TAGLINE ── */
        .tier-tagline {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #0270e0;
            margin-bottom: 16px;
            text-align: left;
        }

        .featured .tier-tagline {
            color: #2563eb;
        }

        .tier-divider {
            height: 1px;
            background: #e5e9f0;
        }

        .featured .tier-divider {
            background: rgba(255, 255, 255, 0.1);
        }

        /* ── FEATURE LIST ── */
        .tier-features {
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 6px;
            align-items: flex-start;
        }

        .feat-row {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .feat-row strong {
            font-size: 12px;
            font-weight: 700;
            color: #0a1628;
            display: block;
            margin-bottom: 2px;
        }

        .featured .feat-row strong {
            color: #0a1628;
        }

        .feat-row p {
            font-size: 11.5px;
            color: #0e0d0d;
            margin: 0;
            line-height: 1.5;
        }

        .featured .feat-row p {
            color: #0a1628;
        }

        .feat-na strong,
        .feat-na p {
            opacity: 0.4;
        }

        .feat-icon {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 900;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .feat-icon.check {
            background: #dcfce7;
            color: #16a34a;
        }

        .feat-icon.cross {
            background: #f1f5f9;
            color: #94a3b8;
        }

        /* ── CTA BUTTON ── */
        .tier-cta {
            display: inline-block;
            width: fit-content;
            text-align: center;
            padding: 10px 20px;
            border-radius: 8px;
            font-size: 13px;
            margin: 0 auto;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.2s;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            box-sizing: border-box;
            margin-top: auto;
        }

        .starter-cta {
            background: #0270e0;
            color: white;
            border: none;
        }


        .professional-cta {
            background: #0270e0;
            color: white;
            border: none;
        }


        .enterprise-cta {
            background: #0270e0;
            color: white;
            border: none;
        }


        /* =========================
   RESPONSIVE - BELOW 1024px
========================= */
        @media (max-width: 1024px) {

            .expired-box {
                padding: 0px;
                margin: 10px auto;
                padding: 10px 0px;
                width: 95%;
            }

            .expired-title {
                font-size: 16px;
                font-weight: bold;
            }

            .expired-sub{
                margin: 0px;
            }

            .pricing-container{
                width: 100%;
            }

            .pricing-grid {
                display: grid;
                grid-template-columns: repeat(1, 1fr);
                gap: 15px;
                align-items: start;
                margin:10px 5px;
            }

            .tier-features{
                margin: 0px;
            }


            .payment-box {
                width: fit-content;
                margin: 15px auto;
                padding: 10px 70px;
            }


        }