/* Pricing Page Specific Styles */

.pricing-section {
    min-height: 100vh;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f0f23 100%);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
}

.pricing-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.pricing-title {
    margin-bottom: 48px;
}

.title-line {
    display: block;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 8px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.title-highlight {
    display: block;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 8px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.billing-toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 4px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.billing-btn {
    background: transparent;
    border: none;
    padding: 12px 24px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.billing-btn.active {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.billing-btn:hover:not(.active) {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border: 2px solid rgba(139, 92, 246, 0.6);
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.05);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.card-header {
    padding: 40px 32px 32px;
    text-align: center;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.plan-name {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 16px;
}

.plan-description {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    min-height: 48px;
}

.savings-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.price-container {
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 32px;
    font-weight: 400;
    color: #ffffff;
}

.price {
    font-size: 72px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.billing-period {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
    text-align: left;
}

.enterprise-price {
    margin-bottom: 40px;
}

.lets-talk {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 2px;
}

.billed-annually {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

.plan-button {
    width: 100%;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(139, 92, 246, 0.4);
    color: #ffffff;
}

.btn-outline:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: #8b5cf6;
    transform: translateY(-2px);
}

.features-section {
    padding: 32px;
}

.features-title {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.check-icon {
    color: #10b981;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .pricing-grid {
        max-width: 900px;
        gap: 24px;
    }
    
    .pricing-card.featured {
        transform: scale(1.02);
    }
    
    .pricing-card.featured:hover {
        transform: scale(1.02) translateY(-8px);
    }
}

@media (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 32px;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .title-line,
    .title-highlight {
        font-size: 28px;
        letter-spacing: 6px;
    }
}

@media (max-width: 767px) {
    .pricing-section {
        padding: 120px 0 60px;
    }
    
    .pricing-header {
        margin-bottom: 60px;
    }
    
    .title-line,
    .title-highlight {
        font-size: 24px;
        letter-spacing: 4px;
    }
    
    .card-header {
        padding: 32px 24px 24px;
    }
    
    .features-section {
        padding: 24px;
    }
    
    .price {
        font-size: 56px;
    }
    
    .currency {
        font-size: 24px;
    }
    
    .billing-period {
        font-size: 14px;
    }
    
    .lets-talk {
        font-size: 24px;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 100px 0 40px;
    }
    
    .title-line,
    .title-highlight {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    .billing-toggle {
        padding: 3px;
    }
    
    .billing-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .card-header {
        padding: 24px 20px 20px;
    }
    
    .features-section {
        padding: 20px;
    }
    
    .price {
        font-size: 48px;
    }
    
    .plan-description {
        font-size: 14px;
        min-height: auto;
    }
    
    .feature-item {
        font-size: 14px;
    }
}