/* Pricing Page Specific Styles */
.pricing-page {
    padding-top: 100px;
}

.pricing-header {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(180deg, rgb(8, 9, 10) 0%, rgb(25, 27, 28) 100%);
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 999px;
    color: rgb(138, 143, 152);
    font-size: 14px;
    margin-bottom: 24px;
}

.pricing-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin-bottom: 16px;
    line-height: 1.2;
}

.pricing-header p {
    font-size: 18px;
    color: rgb(153, 169, 192);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.billing-toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 4px;
}

.toggle-btn {
    background: transparent;
    border: none;
    color: rgb(138, 143, 152);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.toggle-btn.active {
    background: rgb(255, 255, 255);
    color: rgb(8, 9, 10);
}

.pricing-cards {
    padding: 60px 0;
    background: rgb(8, 9, 10);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: rgb(138, 143, 152);
    background: rgba(255, 255, 255, 0.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(8, 9, 10);
    color: rgb(255, 255, 255);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-header {
    text-align: center;
    margin-bottom: 32px;
}

.plan-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.card-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    margin-bottom: 16px;
}

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

.price .amount {
    font-size: 48px;
    font-weight: 700;
    color: rgb(255, 255, 255);
}

.price .period {
    font-size: 16px;
    color: rgb(138, 143, 152);
}

.card-cta {
    width: 100%;
    padding: 12px 24px;
    margin-bottom: 32px;
    font-size: 16px;
    font-weight: 500;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    color: rgb(34, 197, 94);
    flex-shrink: 0;
}

.feature-item span {
    color: rgb(244, 247, 249);
    font-size: 14px;
}

.pricing-faq {
    padding: 80px 0;
    background: rgb(8, 9, 10);
}

.pricing-faq h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    margin-bottom: 16px;
}

.faq-item p {
    color: rgb(153, 169, 192);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .pricing-header h1 {
        font-size: 36px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .price .amount {
        font-size: 36px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
