.nav-link.active {
    color: var(--accent-blue);
}

.pricing-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #f3f4f6 100%);
    text-align: center;
}

.pricing-header h1 {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.pricing-header p {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.toggle-label {
    font-weight: 500;
    color: var(--text-primary);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--accent-purple);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.discount-badge {
    background: var(--accent-gradient);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

.pricing-plans {
    padding: 80px 0;
    background: white;
}

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

.plan-card {
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.plan-card.popular {
    border-color: var(--accent-purple);
    transform: scale(1.05);
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

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

.currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
}

.amount {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 5px;
}

.period {
    font-size: 18px;
    color: var(--text-secondary);
}

.plan-description {
    color: var(--text-secondary);
    line-height: 1.5;
}

.plan-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 8px 0;
}

.feature-icon {
    color: var(--accent-purple);
    font-weight: bold;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.plan-btn {
    width: 100%;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.pricing-faq {
    padding: 80px 0;
    background: var(--bg-primary);
}

.pricing-faq h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 60px;
    color: var(--text-primary);
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .pricing-header h1 {
        font-size: 42px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .plan-card.popular {
        transform: none;
    }
    
    .plan-card:hover {
        transform: translateY(-2px);
    }
    
    .amount {
        font-size: 48px;
    }
    
    .billing-toggle {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        padding: 100px 0 40px;
    }
    
    .pricing-header h1 {
        font-size: 36px;
    }
    
    .plan-card {
        padding: 30px 20px;
    }
    
    .amount {
        font-size: 42px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
