.pricing-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
}

.pricing-header {
    margin-bottom: 3rem;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.pricing-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 127, 14, 0.3);
    color: #ff7f0e;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-tab:hover {
    border-color: #ff7f0e;
    background: rgba(255, 127, 14, 0.1);
    transform: translateY(-2px);
}

.pricing-tab.active {
    background: linear-gradient(135deg, #ff7f0e 0%, #ff9f4d 100%);
    color: white;
    border-color: #ff7f0e;
    box-shadow: 0 4px 15px rgba(255, 127, 14, 0.3);
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 127, 14, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 127, 14, 0.2);
    border-color: rgba(255, 127, 14, 0.3);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(255, 127, 14, 0.12) 0%, rgba(255, 127, 14, 0.05) 100%);
    border: 2px solid #ff7f0e;
    box-shadow: 0 10px 30px rgba(255, 127, 14, 0.15);
}

.pricing-card.featured::before {
    opacity: 1;
    background: linear-gradient(90deg, #ff7f0e, #ff9f4d, #ff7f0e);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #ff7f0e 0%, #ff9f4d 100%);
    color: white;
    padding: 6px 35px;
    transform: rotate(45deg);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(255, 127, 14, 0.3);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-name {
    font-size: 1.4rem;
    margin: 1rem 0 0.5rem;
    font-weight: 700;
    color: white;
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(255, 127, 14, 0.2) 0%, rgba(255, 127, 14, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 1px solid rgba(255, 127, 14, 0.2);
    transition: all 0.3s ease;
}

.pricing-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 127, 14, 0.3) 0%, rgba(255, 127, 14, 0.15) 100%);
}

.icon-wrapper i {
    font-size: 28px;
    color: #ff7f0e;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 1rem 0;
    line-height: 1;
}

.currency {
    font-size: 1.25rem;
    vertical-align: super;
    opacity: 0.8;
}

.duration {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    flex-grow: 1;
}

.features-list li {
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 1.5;
    font-size: 0.95rem;
    padding: 0.5rem 0;
}

.features-list i {
    color: #ff7f0e;
    font-size: 0.875rem;
    width: 20px;
    flex-shrink: 0;
}

.btn-choose-plan {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ff7f0e 0%, #ff9f4d 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(255, 127, 14, 0.3);
}

.pricing-card-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.btn-choose-plan:hover {
    background: linear-gradient(135deg, #ff9f4d 0%, #ff7f0e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 127, 14, 0.4);
    color: white;
}

.btn-choose-plan i {
    transition: transform 0.3s ease;
}

.btn-choose-plan:hover i {
    transform: translateX(5px);
}

.pricing-content {
    display: none;
}

.pricing-content.active {
    display: block;
}

/* Additional styles for better responsiveness */
@media (max-width: 768px) {
    .pricing-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-tab {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .pricing-card {
        margin-bottom: 30px;
    }
}

