   .pricing-header {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInDown 1s ease-out;
        }
        
        .lifetime-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 8px 20px;
            border-radius: 30px;
            color: white;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            animation: pulse 2s infinite;
        }
        
        .pricing-header h2 {
            color: white;
           
            margin-bottom: 15px;
            text-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .pricing-header p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .pricing-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            perspective: 1000px;
        }
        
        .pricing-card {
           border: 1.2px solid #fff;
            border-radius: 24px;
            padding: 40px 30px;
            color: #fff;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            animation: fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        
        .pricing-card:nth-child(1) {
            animation-delay: 0.1s;
        }
        
        .pricing-card:nth-child(2) {
            animation-delay: 0.2s;
            transform: scale(1.05);
            z-index: 10;
        }
        
        .pricing-card:nth-child(3) {
            animation-delay: 0.3s;
        }
        
        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: transparent;
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }
        
        .pricing-card:hover::before {
            transform: scaleX(1);
        }
        
        .pricing-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 30px 80px rgba(0,0,0,0.4);
        }
        
        .pricing-card.featured {
            background: transparent;
            color: white;
            position: relative;
        }
        
        .pricing-card.featured::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            transform: rotate(45deg);
            animation: shine 3s infinite;
        }
        
        .popular-badge {
            position: absolute;
            top: 20px;
            right: -35px;
            background: #ffd700;
            color: #000;
            padding: 8px 40px;
            font-size: 12px;
            font-weight: 700;
            transform: rotate(45deg);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            z-index: 1;
        }
        
        .plan-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .pricing-card:hover .plan-icon {
            transform: rotateY(360deg);
        }
        
        .starter .plan-icon {
            background: transparent;
            color: white;
        }
        
        .creator .plan-icon {
            background: rgba(255,255,255,0.2);
            color: white;
        }
        
        .pro .plan-icon {
            background: transparent;
            color: white;
        }
        
        .plan-name {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .pricing-card.featured .plan-name {
            color: white;
        }
        
        .price {
            display: flex;
            align-items: baseline;
            margin-bottom: 5px;
        }
        
        .currency {
            font-size: 28px;
            font-weight: 700;
        }
        
        .amount {
            font-size: 56px;
            font-weight: 800;
            line-height: 1;
        }
        
        .period {
            font-size: 16px;
           color: rgba(255,255,255,0.8);
            margin-left: 8px;
        }
        
        .pricing-card.featured .period {
            color: rgba(255,255,255,0.8);
        }
        
        .credits-box {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            border-radius: 16px;
            padding: 20px;
            margin: 25px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card.featured .credits-box {
            background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
            backdrop-filter: blur(10px);
        }
        
        .credits-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
            animation: glow 3s infinite;
        }
        
        .credits-number {
            font-size: 42px;
            font-weight: 800;
            color: #333;
            margin-bottom: 5px;
        }
        
        .pricing-card.featured .credits-number {
            color: white;
        }
        
        .credits-label {
            font-size: 14px;
            color: #666;
            font-weight: 600;
        }
        
        .pricing-card.featured .credits-label {
            color: rgba(255,255,255,0.9);
        }
        
        .plan-description {
            font-size: 15px;
            color: #fff;
            margin-bottom: 25px;
            font-weight: 500;
        }
        
        .pricing-card.featured .plan-description {
            color: rgba(255,255,255,0.9);
        }
        
        .features-list {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .features-list li {
            padding: 12px 0;
            display: flex;
            align-items: center;
            font-size: 15px;
            color: #fff;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s ease;
        }
        
        .features-list li:last-child {
            border-bottom: none;
        }
        
        .features-list li:hover {
            padding-left: 10px;
            color: #EBDC8B;
        }
        
        .pricing-card.featured .features-list li {
            color: rgba(255,255,255,0.95);
            border-bottom-color: rgba(255,255,255,0.2);
        }
        
        .pricing-card.featured .features-list li:hover {
            color: white;
        }
        
        .features-list i {
            color: #fff;
            margin-right: 12px;
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .pricing-card.featured .features-list i {
            color: #fff;
        }
        
        .features-list li:hover i {
            transform: scale(1.2) rotate(360deg);
        }
        
        .cta-button {
            width: 100%;
            padding: 16px;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .starter .cta-button {
               background: transparent;
    color: white;
    border: 1px solid;
        }
        
        .creator .cta-button {
              background: transparent;
    color: white;
    border: 1px solid;
        }
        
        .pro .cta-button {
           background: transparent;
    color: white;
    border: 1px solid;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        
        .cta-button span {
            position: relative;
            z-index: 1;
        }
        
        .plan-footer-info {
            text-align: center;
            margin-top: 50px;
            color: white;
            animation: fadeIn 1s ease-out 0.5s both;
        }
        
        .plan-footer-info p {
            margin: 8px 0;
            font-size: 15px;
            opacity: 0.9;
        }
        
        .plan-footer-info i {
            margin: 0 8px;
            color: #ffd700;
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }
        
        @keyframes shine {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }
        
        @keyframes glow {
            0%, 100% {
                opacity: 0.3;
            }
            50% {
                opacity: 0.8;
            }
        }
        
        @media (max-width: 768px) {
            .pricing-header h1 {
                font-size: 36px;
            }
            
            .pricing-container {
                grid-template-columns: 1fr;
            }
            
            .pricing-card:nth-child(2) {
                transform: scale(1);
            }
        }