
    /* ========== BASE STYLES ========== */
    .pkg-wrap {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    }

    .sec-title {
        position: relative;
        margin-bottom: 60px;
    }

    .sec-title .sub-title {
        display: inline-block;
        padding: 8px 20px;
        background: linear-gradient(135deg, #3b82f6, #8b5cf6);
        color: white;
        border-radius: 50px;
        font-weight: 600;
        font-size: 14px;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .sec-title .title {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 20px;
        background: linear-gradient(135deg, #1e293b, #334155);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .sec-title .text {
        font-size: 18px;
        color: #64748b;
        line-height: 1.6;
        max-width: 700px;
        margin: 0 auto;
    }

    /* ========== TABS ========== */
    .pkg-tabs {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin: 40px 0 60px;
        padding: 20px;
        background: white;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    }

    .pkg-tab-btn {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 18px 32px;
        border: 2px solid #e2e8f0;
        background: white;
        border-radius: 12px;
        font-weight: 700;
        font-size: 16px;
        color: #64748b;
        cursor: pointer;
        transition: all 0.3s ease;
        min-width: 180px;
        justify-content: center;
    }

    .pkg-tab-btn i {
        font-size: 20px;
        transition: all 0.3s ease;
    }

    .pkg-tab-btn:hover {
        transform: translateY(-3px);
        border-color: #3b82f6;
        color: #3b82f6;
        box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
    }

    .pkg-tab-btn.active {
        background: linear-gradient(135deg, #3b82f6, #8b5cf6);
        color: white;
        border-color: transparent;
        box-shadow: 0 15px 35px rgba(59, 130, 246, 0.25);
    }

    .pkg-tab-btn.active i {
        color: white;
    }

    /* ========== PANES ========== */
    .pkg-pane {
        display: none;
        animation: fadeIn 0.5s ease;
    }

    .pkg-pane.active {
        display: block;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* ========== PLAN GRID ========== */
    .plan-grid {
        --bs-gutter-x: 30px;
        --bs-gutter-y: 30px;
    }

    /* ========== PLAN CARD ========== */
    .plan-card {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        height: 100%;
        padding: 30px;
        background: white;
        border: 1px solid #e2e8f0;
        transition: all 0.4s ease;
        display: flex;
        flex-direction: column;
    }

    .plan-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    }

    /* ========== RIBBON ========== */
    .plan-ribbon {
        position: absolute;
        top: 0;
        right: 0;
        padding: 10px 25px;
        font-weight: 800;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: white;
        border-radius: 0 0 0 20px;
    }

    .plan-ribbon::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 20px 20px 0;
        border-color: transparent rgba(0,0,0,0.2) transparent transparent;
    }

    /* ========== CARD CONTENT ========== */
    .plan-header {
        margin-bottom: 30px;
        padding-bottom: 25px;
        border-bottom: 2px solid rgba(255,255,255,0.1);
    }

    .plan-title {
        font-size: 28px;
        font-weight: 800;
        margin: 0 0 10px;
        line-height: 1.2;
    }

    .plan-sub {
        font-size: 15px;
        color: rgba(255,255,255,0.9);
        font-weight: 500;
        line-height: 1.5;
        margin: 0;
    }

    .plan-price-section {
        margin: 30px 0;
        padding: 25px;
        background: rgba(255,255,255,0.1);
        border-radius: 16px;
        text-align: center;
    }

    .plan-price {
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 10px;
        margin-bottom: 8px;
        flex-wrap: wrap;
    }

    .plan-price .amt {
        font-size: 48px;
        font-weight: 900;
        line-height: 1;
        background: linear-gradient(135deg, #fff, rgba(255,255,255,0.9));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .plan-price .note {
        font-size: 14px;
        font-weight: 600;
        opacity: 0.9;
    }

    /* ========== FEATURES ========== */
    .plan-features {
        flex: 1;
        margin: 25px 0;
    }

    .plan-feature-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .plan-feature-item:last-child {
        border-bottom: none;
    }

    .plan-feature-item i {
        font-size: 18px;
        margin-top: 2px;
        flex-shrink: 0;
        color: rgba(255,255,255,0.9);
    }

    .plan-feature-item span {
        font-size: 15px;
        font-weight: 500;
        line-height: 1.5;
        color: rgba(255,255,255,0.95);
    }

    /* ========== BUTTON ========== */
    .plan-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 18px 30px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 16px;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 1px;
        border: 2px solid transparent;
        transition: all 0.3s ease;
        margin-top: 20px;
    }

    .plan-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    }

    /* ========== ACCORDION ========== */
    .plan-acc {
        margin-top: 25px;
        border-top: 2px solid rgba(255,255,255,0.1);
        padding-top: 25px;
    }

    .plan-acc-item {
        margin-bottom: 15px;
        border-radius: 12px;
        overflow: hidden;
        background: rgba(255,255,255,0.05);
    }

    .plan-acc-btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 20px;
        background: rgba(255,255,255,0.08);
        border: none;
        border-radius: 12px;
        color: inherit;
        font-weight: 700;
        font-size: 15px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .plan-acc-btn:hover {
        background: rgba(255,255,255,0.12);
    }

    .plan-acc-btn i {
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .plan-acc-item.open .plan-acc-btn i {
        transform: rotate(180deg);
    }

    .plan-acc-body {
        display: none;
        padding: 20px;
        background: rgba(255,255,255,0.03);
    }

    .plan-acc-item.open .plan-acc-body {
        display: block;
    }

    .plan-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .plan-list li {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

    .plan-list li:last-child {
        border-bottom: none;
    }

    .plan-list i {
        font-size: 14px;
        margin-top: 3px;
        color: rgba(255,255,255,0.8);
    }

    .plan-list span {
        font-size: 14px;
        font-weight: 500;
        color: rgba(255,255,255,0.9);
    }

    /* ========== FOOTNOTE ========== */
    .plan-footnote {
        margin-top: 25px;
        padding: 15px 20px;
        background: rgba(255,255,255,0.08);
        border-radius: 12px;
        font-size: 13px;
        font-weight: 600;
        text-align: center;
        color: rgba(255,255,255,0.9);
    }

    /* ========== THEMES ========== */
    .plan--blue {
        background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
        color: white;
    }

    .plan--purple {
        background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
        color: white;
    }

    .plan--green {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        color: white;
    }

    .plan--orange {
        background: white;
        color: #1e293b;
        border: 2px solid #f97316;
    }

    .plan--orange .plan-header {
        border-bottom-color: rgba(249, 115, 22, 0.1);
    }

    .plan--orange .plan-sub {
        color: #64748b;
    }

    .plan--orange .plan-price .amt {
        background: linear-gradient(135deg, #f97316, #ea580c);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .plan--orange .plan-feature-item {
        border-bottom-color: rgba(249, 115, 22, 0.1);
    }

    .plan--orange .plan-feature-item i {
        color: #f97316;
    }

    .plan--orange .plan-feature-item span {
        color: #475569;
    }

    .plan--orange .plan-acc {
        border-top-color: rgba(249, 115, 22, 0.1);
    }

    .plan--orange .plan-acc-item {
        background: rgba(249, 115, 22, 0.05);
    }

    .plan--orange .plan-acc-btn {
        background: rgba(249, 115, 22, 0.08);
        color: #475569;
    }

    .plan--orange .plan-list li {
        border-bottom-color: rgba(249, 115, 22, 0.05);
    }

    .plan--orange .plan-list i {
        color: #f97316;
    }

    .plan--orange .plan-list span {
        color: #475569;
    }

    .plan--orange .plan-footnote {
        background: rgba(249, 115, 22, 0.08);
        color: #475569;
    }

    /* ========== BUTTON THEMES ========== */
    .plan__btn--light {
        background: rgba(255,255,255,0.15);
        color: white;
        border-color: rgba(255,255,255,0.3);
    }

    .plan__btn--light:hover {
        background: rgba(255,255,255,0.25);
    }

    .plan__btn--dark {
        background: #f97316;
        color: white;
        border-color: #f97316;
    }

    .plan__btn--dark:hover {
        background: #ea580c;
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1199px) {
        .sec-title .title {
            font-size: 36px;
        }
        
        .pkg-tab-btn {
            min-width: 160px;
            padding: 16px 24px;
        }
    }

    @media (max-width: 991px) {
        .pkg-wrap {
            padding: 60px 0;
        }
        
        .sec-title .title {
            font-size: 32px;
        }
        
        .pkg-tabs {
            flex-direction: column;
            align-items: center;
        }
        
        .pkg-tab-btn {
            width: 100%;
            max-width: 300px;
        }
        
        .plan-price .amt {
            font-size: 42px;
        }
    }

    @media (max-width: 767px) {
        .sec-title .title {
            font-size: 28px;
        }
        
        .sec-title .text {
            font-size: 16px;
        }
        
        .plan-title {
            font-size: 24px;
        }
        
        .plan-price .amt {
            font-size: 36px;
        }
        
        .plan-btn {
            padding: 16px 24px;
            font-size: 14px;
        }
    }

    @media (max-width: 575px) {
        .pkg-wrap {
            padding: 40px 0;
        }
        
        .plan-card {
            padding: 20px;
        }
        
        .plan-price .amt {
            font-size: 32px;
        }
    }

    /* ========== COMPARISON BADGES ========== */
    .plan-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 20px;
    }

    .plan-badge {
        padding: 6px 14px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: white;
    }

    .bg-blue-500 {
        background: #3b82f6;
    }

    .bg-orange-500 {
        background: #f97316;
    }

    .bg-purple-500 {
        background: #8b5cf6;
    }

    .bg-green-500 {
        background: #10b981;
    }

    /* ========== CTA SECTION ========== */
    .pkg-cta-section {
        margin-top: 80px;
        padding: 60px;
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        border-radius: 30px;
        text-align: center;
        color: white;
    }

    .pkg-cta-title {
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .pkg-cta-text {
        font-size: 18px;
        color: #cbd5e1;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .pkg-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        padding: 20px 40px;
        background: linear-gradient(135deg, #3b82f6, #8b5cf6);
        color: white;
        border-radius: 50px;
        font-weight: 700;
        font-size: 18px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .pkg-cta-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
    }
</style>
