/* Pricing Page Styles */

.pricing-hero {
    padding: 180px 24px 60px;
    min-height: 100vh;
    background: black;
}

.pricing-title {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.pricing-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 80px;
}

.pricing-card {
    padding: 40px;
    border-radius: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.plan-name {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin-bottom: 18px;
    letter-spacing: -0.2px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.price-currency {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.8);
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: white;
    letter-spacing: -1px;
}

.price-period {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
}

.price-custom {
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.plan-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.pricing-features {
    flex: 1;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.features-list li:last-child {
    border-bottom: none;
}

.pricing-footer {
    text-align: center;
}

.pricing-footer .btn-primary {
    width: 100%;
}

/* FAQ Section */
.pricing-faq {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 0;
}

.pricing-faq h2 {
    font-size: 32px;
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 36px;
    letter-spacing: -0.3px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.faq-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.faq-item h4 {
    font-size: 20px;
    color: white;
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing-hero {
        padding: 130px 16px 60px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-title {
        font-size: 32px;
    }
    
    .price-amount {
        font-size: 42px;
    }
}