
    /* ---- Google Font ---- */
    @import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;600&display=swap');

    /* ---- CSS Variables ---- */
    :root {
        --pricing-bg: #0d1117;
        --pricing-hero-bg: #12151c;
        --highlight: #e8491e;
        --plan-blue: #1a6ed8;
        --plan-green: #1aad6d;
        --plan-purple: #7c3aed;
        --plan-orange: #d4620a;
        --plan-red: #c0392b;
        --plan-dark: #1c2230;
        --text-primary: #0d1117;
        --text-muted: #5a6170;
        --border-light: #e9ecf0;
        --card-radius: 18px;
        --font-main: 'Sora', sans-serif;
        --font-body: 'DM Sans', sans-serif;
    }

    /* ---- Hero ---- */
    .pricing-hero {
        background: var(--pricing-hero-bg);
        padding: 150px 0 60px;
        position: relative;
        overflow: hidden;
    }

    .pricing-hero::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -80px;
        width: 480px;
        height: 480px;
        background: radial-gradient(circle, rgba(232, 73, 30, 0.22) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .pricing-hero::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -60px;
        width: 320px;
        height: 320px;
        background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .pricing-label {
        display: inline-block;
        background: rgba(232, 73, 30, 0.18);
        color: #e8491e;
        font-family: var(--font-main);
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        padding: 6px 18px;
        border-radius: 30px;
        margin-bottom: 22px;
        border: 1px solid rgba(232, 73, 30, 0.3);
    }

    .pricing-hero-title {
        font-family: var(--font-main);
        font-size: clamp(2.4rem, 5vw, 3.8rem);
        font-weight: 800;
        color: #fff;
        line-height: 1.15;
        margin-bottom: 18px;
    }

    .pricing-hero-title .highlight {
        color: #e8491e;
    }

    .pricing-hero-sub {
        font-family: var(--font-body);
        font-size: 1.05rem;
        color: rgba(255, 255, 255, 0.65);
        line-height: 1.7;
        max-width: 580px;
        margin: 0 auto;
    }

    .pricing-hero-sub strong {
        color: #fff;
    }

    /* ---- Tab Switcher ---- */
    .pricing-tabs-section {
        background: #fff;
        padding: 36px 0 0;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    }

    .pricing-tab-wrapper {
        display: flex;
        justify-content: center;
    }

    .pricing-tabs {
        display: inline-flex;
        background: #f4f6f9;
        border-radius: 14px;
        padding: 6px;
        gap: 4px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    }

    .ptab {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 28px;
        border: none;
        background: transparent;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.22s ease;
    }

    .ptab.active {
        background: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .ptab-icon {
        font-size: 1.2rem;
    }

    .ptab-name {
        font-family: var(--font-main);
        font-size: 0.95rem;
        font-weight: 700;
        color: #1a1a2e;
    }

    .ptab-sub {
        font-family: var(--font-body);
        font-size: 0.75rem;
        color: var(--text-muted);
        margin-top: 1px;
    }

    .ptab:not(.active) .ptab-name {
        color: var(--text-muted);
    }

    /* ---- Plans Section ---- */
    .pricing-plans-section {
        background: #f8f9fc;
        padding: 72px 0 80px;
    }

    .plans-title {
        font-family: var(--font-main);
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        font-weight: 800;
        color: #0d1117;
        margin-bottom: 12px;
    }

    .plans-desc {
        font-family: var(--font-body);
        font-size: 1rem;
        color: var(--text-muted);
        line-height: 1.7;
        max-width: 580px;
        margin: 0 auto;
    }

    /* ---- Plan Cards ---- */
    .plan-card {
        background: #fff;
        border-radius: var(--card-radius);
        overflow: hidden;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
        display: flex;
        flex-direction: column;
        height: 100%;
        transition: transform 0.22s ease, box-shadow 0.22s ease;
        position: relative;
    }

    .plan-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
    }

    .plan-card-header {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 26px 26px 0;
    }

    .plan-icon-wrap {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        flex-shrink: 0;
    }

    .plan-icon-blue {
        background: rgba(26, 110, 216, 0.15);
    }

    .plan-icon-green {
        background: rgba(26, 173, 109, 0.15);
    }

    .plan-icon-purple {
        background: rgba(124, 58, 237, 0.15);
    }

    .plan-icon-orange {
        background: rgba(212, 98, 10, 0.15);
    }

    .plan-icon-red {
        background: rgba(192, 57, 43, 0.15);
    }

    .plan-icon-dark {
        background: rgba(28, 34, 48, 0.1);
    }

    /* Colored top strip via box-shadow trick or pseudo */
    .plan-blue {
        border-top: 4px solid var(--plan-blue);
    }

    .plan-green {
        border-top: 4px solid var(--plan-green);
    }

    .plan-purple {
        border-top: 4px solid var(--plan-purple);
    }

    .plan-orange {
        border-top: 4px solid var(--plan-orange);
    }

    .plan-red {
        border-top: 4px solid var(--plan-red);
    }

    .plan-dark {
        border-top: 4px solid #3a4560;
    }

    .plan-name {
        font-family: var(--font-main);
        font-size: 1.05rem;
        font-weight: 700;
        color: #0d1117;
        line-height: 1.2;
    }

    .plan-phase {
        font-family: var(--font-body);
        font-size: 0.78rem;
        color: var(--text-muted);
        margin-top: 2px;
    }

    /* Price block */
    .plan-price {
        padding: 20px 26px 4px;
        display: flex;
        align-items: baseline;
        gap: 3px;
    }

    .plan-currency {
        font-family: var(--font-main);
        font-size: 1.1rem;
        font-weight: 700;
        color: #0d1117;
    }

    .plan-amount {
        font-family: var(--font-main);
        font-size: 2.4rem;
        font-weight: 800;
        color: #0d1117;
        line-height: 1;
    }

    .plan-freq {
        font-family: var(--font-body);
        font-size: 0.82rem;
        color: var(--text-muted);
        margin-left: 2px;
    }

    .plan-markets {
        font-family: var(--font-body);
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--text-muted);
        padding: 0 26px 16px;
        border-bottom: 1px solid var(--border-light);
        margin-bottom: 4px;
    }

    /* Features */
    .plan-features {
        list-style: none;
        padding: 16px 26px 20px;
        margin: 0;
        flex: 1;
    }

    .plan-features li {
        font-family: var(--font-body);
        font-size: 0.9rem;
        color: #3a4060;
        padding: 7px 0 7px 24px;
        position: relative;
        border-bottom: 1px solid #f2f3f7;
        line-height: 1.4;
    }

    .plan-features li:last-child {
        border-bottom: none;
    }

    .plan-features li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #1aad6d;
        font-weight: 700;
        font-size: 0.85rem;
    }

    /* Buttons */
    .plan-btn {
        display: block;
        text-align: center;
        padding: 14px 24px;
        margin: 0 26px 26px;
        border-radius: 10px;
        font-family: var(--font-main);
        font-size: 0.92rem;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.2s ease;
        letter-spacing: 0.02em;
    }

    .plan-btn-dark {
        background: #0d1117;
        color: #fff;
    }

    .plan-btn-dark:hover {
        background: #1a2230;
        color: #fff;
    }

    .plan-btn-red {
        background: linear-gradient(135deg, #e8491e 0%, #c0392b 100%);
        color: #fff;
    }

    .plan-btn-red:hover {
        background: linear-gradient(135deg, #d63b14 0%, #a93226 100%);
        color: #fff;
    }

    /* Featured / Popular badge */
    .plan-featured {
        box-shadow: 0 8px 36px rgba(124, 58, 237, 0.18);
    }

    .popular-badge {
        position: absolute;
        top: 14px;
        right: 14px;
        background: linear-gradient(135deg, #e8491e, #c0392b);
        color: #fff;
        font-family: var(--font-main);
        font-size: 0.65rem;
        font-weight: 800;
        letter-spacing: 0.1em;
        padding: 5px 12px;
        border-radius: 30px;
        z-index: 2;
    }

    /* ---- CTA Banner ---- */
    .pricing-cta-banner {
        background: linear-gradient(135deg, #e8491e 0%, #c0392b 100%);
        padding: 80px 0;
    }

    .cta-title {
        font-family: var(--font-main);
        font-size: clamp(1.6rem, 3.5vw, 2.4rem);
        font-weight: 800;
        color: #fff;
        margin-bottom: 14px;
    }

    .cta-desc {
        font-family: var(--font-body);
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.7;
        max-width: 520px;
        margin: 0 auto 32px;
    }

    .cta-btns {
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .cta-btn-white {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: #fff;
        color: #e8491e;
        font-family: var(--font-main);
        font-size: 0.95rem;
        font-weight: 700;
        padding: 14px 32px;
        border-radius: 40px;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .cta-btn-white:hover {
        background: #f5f5f5;
        color: #c0392b;
        transform: translateY(-2px);
    }

    .cta-btn-outline {
        display: inline-flex;
        align-items: center;
        background: transparent;
        color: #fff;
        font-family: var(--font-main);
        font-size: 0.95rem;
        font-weight: 700;
        padding: 14px 32px;
        border-radius: 40px;
        border: 2px solid rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .cta-btn-outline:hover {
        background: rgba(255, 255, 255, 0.12);
        color: #fff;
        transform: translateY(-2px);
    }

    /* ---- Responsive ---- */
    @media (max-width: 991px) {
        .pricing-hero {
            padding: 70px 0 48px;
        }

        .pricing-plans-section {
            padding: 56px 0 64px;
        }
    }

    @media (max-width: 767px) {
        .pricing-hero {
            padding: 56px 0 40px;
        }

        .pricing-tabs {
            flex-direction: column;
            width: 100%;
        }

        .ptab {
            justify-content: center;
        }

        .plan-amount {
            font-size: 2rem;
        }

        .pricing-plans-section {
            padding: 44px 0 52px;
        }

        .cta-btns {
            flex-direction: column;
            align-items: center;
        }

        .cta-btn-white,
        .cta-btn-outline {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }
    }

    @media (max-width: 480px) {
        .pricing-hero-title {
            font-size: 2rem;
        }

        .plan-card-header {
            padding: 20px 18px 0;
        }

        .plan-price {
            padding: 16px 18px 4px;
        }

        .plan-markets {
            padding: 0 18px 14px;
        }

        .plan-features {
            padding: 12px 18px 16px;
        }

        .plan-btn {
            margin: 0 18px 20px;
        }
    }
