.pricing {
    min-height: 100vh;
    padding: 120px 40px 150px;
    background: linear-gradient(135deg, #001429 0%, #0a1929 50%, #001429 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-header {
    text-align: center;
    margin-bottom: 100px;
}

.pricing .section-label {
    font-size: 13px;
    font-weight: 800;
    color: #00A3FF;
    letter-spacing: 4px;
    margin-bottom: 25px;
    display: inline-block;
    padding: 10px 28px;
    background: rgba(0, 163, 255, 0.15);
    border-radius: 50px;
    border: 1px solid rgba(0, 163, 255, 0.4);
    text-transform: uppercase;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pricing .section-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #00A3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.pricing .section-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-bottom: 30px;
}

/* ============================================
   COUNTDOWN TIMER STYLES
   ============================================ */
.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.countdown-box {
    background: linear-gradient(145deg, rgba(0, 102, 255, 0.2), rgba(0, 102, 255, 0.05));
    border: 2px solid rgba(0, 163, 255, 0.4);
    border-radius: 16px;
    padding: 20px 25px;
    min-width: 110px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.2);
}

.countdown-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 163, 255, 0.6);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.3);
}

.countdown-number {
    font-size: 48px;
    font-weight: 900;
    color: #00A3FF;
    line-height: 1;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 102, 255, 0.5);
}

.countdown-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

.countdown-separator {
    font-size: 36px;
    font-weight: 700;
    color: rgba(0, 163, 255, 0.6);
    line-height: 1;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes urgentPulse {
    0%, 100% { 
        transform: scale(1);
        color: #0066FF;
    }
    50% { 
        transform: scale(1.1);
        color: #00A3FF;
    }
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-cards-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    min-height: 700px;
    position: relative;
}

.pricing-card-3d {
    width: 380px;
    background: linear-gradient(145deg, rgba(10, 25, 41, 0.6), rgba(0, 20, 41, 0.8));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 32px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    position: relative;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card-3d::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 32px;
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(0, 102, 255, 0.5), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pricing-card-3d:hover::before {
    opacity: 1;
}

.pricing-card-3d::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: -1;
}

.pricing-card-3d:hover::after {
    opacity: 1;
}

.pricing-card-3d:nth-child(1) {
    opacity: 0.85;
    z-index: 1;
}

.pricing-card-3d:nth-child(2) {
    z-index: 3;
    border-color: rgba(0, 102, 255, 0.4);
    transform: scale(1.02);
}

.pricing-card-3d:nth-child(3) {
    opacity: 0.85;
    z-index: 1;
}

.pricing-card-3d:hover {
    transform: translateY(-10px) scale(1.05);
    z-index: 10;
    opacity: 1;
    border-color: rgba(0, 102, 255, 0.6);
}

/* ============================================
   BADGES
   ============================================ */
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
    text-transform: uppercase;
    z-index: 10;
}

.sale-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #0066FF, #00A3FF);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.4);
    text-transform: uppercase;
    animation: pulse 2s ease-in-out infinite;
    z-index: 10;
}

.card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
}

.pricing-card-3d h3 {
    font-size: 28px;
    margin-bottom: 8px;
    font-weight: 800;
    color: #ffffff;
}

.card-description {
    font-size: 14px;
    opacity: 0.6;
    margin-bottom: 30px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   PRICE BOX WITH SALE PRICING
   ============================================ */
.pricing-card-3d .price-box {
    margin: 35px 0;
    text-align: center;
}

.pricing-card-3d .old-price {
    font-size: 20px;
    text-decoration: line-through;
    opacity: 0.4;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.4);
}

.pricing-card-3d .regular-price-strike {
    font-size: 32px;
    text-decoration: line-through;
    opacity: 0.5;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
}

.pricing-card-3d .price {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #0066FF 0%, #00A3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 102, 255, 0.5);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.pricing-card-3d .period {
    font-size: 14px;
    opacity: 0.5;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
}

.savings-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
    margin-top: 10px;
}

/* ============================================
   FEATURES LIST
   ============================================ */
.features-list {
    list-style: none;
    margin: 30px 0;
    padding: 0;
    flex: 1;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 102, 255, 0.15);
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
    min-height: 40px;
    display: flex;
    align-items: center;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
    margin-right: 10px;
    font-size: 14px;
}

.pricing-card-3d:hover .features-list li {
    opacity: 1;
}

.features-list li.feature-disabled {
    opacity: 0.4;
    text-decoration: line-through;
}

.features-list li.feature-disabled::before {
    content: '✗' !important;
    color: #ef4444 !important;
    font-weight: 700;
    margin-right: 10px;
    font-size: 14px;
}

/* ============================================
   CTA BUTTONS WITH PULSE ANIMATION
   ============================================ */
.pricing-cta-btn,
.pricing-cta-link {
    width: 100%;
    display: inline-block;
    text-align: center;
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 1.5px solid rgba(0, 163, 255, 0.6);
    cursor: pointer;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 102, 255, 0.1));
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 25px;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    box-sizing: border-box;
}

.pricing-cta-btn::before,
.pricing-cta-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0066FF, #00A3FF);
    transition: left 0.5s ease;
    z-index: -1;
}

.pricing-cta-btn:hover::before,
.pricing-cta-link:hover::before {
    left: 0;
}

.pricing-cta-btn:hover,
.pricing-cta-link:hover {
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.4);
}

.pulse-btn {
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(0, 102, 255, 0);
    }
}

.pricing-download-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-download-btn svg {
    flex-shrink: 0;
}

/* ============================================
   PRICING NOTE
   ============================================ */
.pricing-note {
    text-align: center;
    margin-top: 120px;
    padding: 50px 60px;
    background: linear-gradient(135deg, #0066FF, #0052CC);
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.4);
}

.pricing-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-note:hover::before {
    opacity: 1;
}

.pricing-note:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 102, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.pricing-note p {
    font-size: 22px;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
    line-height: 1.6;
}

.pricing-note .contact-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 24px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-left: 8px;
    position: relative;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
}

.pricing-note .contact-link::after {
    content: '→';
    margin-left: 10px;
    transition: margin-left 0.3s ease;
}

.pricing-note .contact-link:hover {
    border-bottom-color: #ffffff;
}

.pricing-note .contact-link:hover::after {
    margin-left: 16px;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1200px) {
    .pricing-cards-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .pricing-card-3d {
        width: 100%;
        max-width: 400px;
        height: auto;
    }
    
    .pricing .section-title {
        font-size: 48px;
    }
    
    .countdown-box {
        min-width: 90px;
        padding: 15px 20px;
    }
    
    .countdown-number {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 80px 20px;
    }
    
    .pricing .section-title {
        font-size: 36px;
    }
    
    .pricing-header {
        margin-bottom: 60px;
    }
    
    .countdown-timer {
        gap: 10px;
        margin-top: 30px;
    }
    
    .countdown-box {
        min-width: 75px;
        padding: 12px 15px;
    }
    
    .countdown-number {
        font-size: 32px;
    }
    
    .countdown-label {
        font-size: 10px;
    }
    
    .countdown-separator {
        font-size: 28px;
    }
    
    .pricing-card-3d {
        width: 100%;
        max-width: 400px;
    }
    
    .pricing-card-3d .price {
        font-size: 56px;
    }
    
    .pricing-note {
        margin-top: 80px;
        padding: 40px 30px;
    }
    
    .pricing-note p {
        font-size: 18px;
    }
    
    .pricing-note .contact-link {
        font-size: 20px;
        display: block;
        margin-left: 0;
        margin-top: 10px;
    }
    
    .features-list li {
        min-height: 36px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .pricing .section-title {
        font-size: 32px;
    }
    
    .countdown-timer {
        gap: 8px;
    }
    
    .countdown-box {
        min-width: 65px;
        padding: 10px 12px;
    }
    
    .countdown-number {
        font-size: 28px;
    }
    
    .countdown-separator {
        font-size: 24px;
    }
    
    .pricing-card-3d {
        padding: 40px 30px;
    }
    
    .pricing-card-3d .price {
        font-size: 48px;
    }
    
    .sale-badge {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 10px;
    }
}