/* Pricing Page Styles */
.pricing-header {
    text-align: center;
    padding: 60px 40px 40px;
}

.pricing-header h1 {
    font-size: 42px;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6b00, #ff9500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.pricing-header p {
    font-size: 20px;
    color: #ccc;
}

/* Active nav link */
.nav-link.active {
    color: #ff6b00;
    font-weight: 600;
}

/* Pricing Section */
.pricing-section {
    padding: 40px;
    text-align: center;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 15px;
    padding: 40px 25px;
    width: 100%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card.popular {
    border-color: #ff6b00;
    background: rgba(255, 107, 0, 0.1);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #ff6b00;
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.plan-name {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
}

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

.currency {
    font-size: 24px;
    color: #ff6b00;
    margin-right: 5px;
}

.amount {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
}

.period {
    font-size: 20px;
    color: #aaa;
    margin-left: 5px;
}

.credit-info {
    background: rgba(255, 107, 0, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 30px;
}

.monthly-credits {
    font-size: 20px;
    font-weight: bold;
    color: #ff6b00;
    margin-bottom: 5px;
}

.video-count {
    font-size: 14px;
    color: #ccc;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

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

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

.features li.highlight {
    color: #ff6b00;
    font-weight: 600;
}

.select-plan-btn {
    width: 100%;
    padding: 15px 30px;
    border: 2px solid #ff6b00;
    background: transparent;
    color: #ff6b00;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-plan-btn:hover {
    background: #ff6b00;
    color: #fff;
}

.select-plan-btn.primary {
    background: #ff6b00;
    color: #fff;
}

.select-plan-btn.primary:hover {
    background: #ff8500;
}

.billing-info {
    text-align: center;
    color: #aaa;
    font-size: 14px;
}

/* Calculator Section */
.calculator-section {
    padding: 60px 40px;
    background: rgba(255, 107, 0, 0.05);
    text-align: center;
}

.calculator-section h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
}

.calculator-section p {
    color: #ccc;
    font-size: 18px;
    margin-bottom: 40px;
}

.calculator {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 15px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.calc-input {
    text-align: left;
}

.calc-input label {
    display: block;
    color: #aaa;
    font-size: 14px;
    margin-bottom: 10px;
}

.calc-input input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.calc-input input:focus {
    outline: none;
    border-color: #ff6b00;
    background: rgba(255, 255, 255, 0.15);
}

.calc-result {
    background: rgba(255, 107, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    justify-content: space-around;
}

.result-item {
    text-align: center;
}

.result-item span {
    display: block;
    color: #aaa;
    font-size: 14px;
    margin-bottom: 10px;
}

.result-item strong {
    font-size: 28px;
    color: #ff6b00;
}

/* FAQ Section */
.faq-section {
    padding: 60px 40px;
    text-align: center;
}

.faq-section h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 40px;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 10px;
    padding: 25px;
    text-align: left;
}

.faq-item h3 {
    color: #ff6b00;
    font-size: 18px;
    margin-bottom: 15px;
}

.faq-item p {
    color: #ccc;
    line-height: 1.6;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 1400px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .pricing-header h1 {
        font-size: 32px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 30px;
    }
}