/* ==========================================
   PRICING PAGE - NimbusLearn LMS
   ========================================== */

.pricing-overview { background: var(--bg-dark); }

/* Single plan layout */
.pricing-single-full {
    max-width: 700px;
    margin: 0 auto;
}

.pricing-card-full {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 48px;
    position: relative;
    transition: var(--transition);
}

.pricing-card-full:hover {
    box-shadow: var(--shadow-lg);
}

.pricing-card-full.featured {
    border-color: rgba(16, 185, 129, 0.4);
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.06) 0%, transparent 100%);
}

.plan-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.plan-header h3 {
    font-size: 26px;
    margin-bottom: 8px;
    font-weight: 700;
}

.plan-header .plan-desc {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.5;
}

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

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

.plan-amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.plan-period {
    font-size: 16px;
    color: var(--text-muted);
    margin-left: 6px;
}

.plan-note {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 16px;
    line-height: 1.5;
}

/* Two-column feature list inside single card */
.plan-features-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
    margin-bottom: 32px;
}

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

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 14px;
    color: var(--text-secondary);
}

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

.plan-check {
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.btn-plan {
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-plan:hover {
    background: rgba(16, 185, 129, 0.08);
    border-color: var(--primary);
}

.btn-plan.primary {
    background: var(--primary);
    border: none;
    color: #fff;
}

.btn-plan.primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
}

/* Enterprise / Volume Section */
.enterprise-section { background: var(--bg-dark-card); }

.enterprise-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
}

.enterprise-content .section-tag {
    display: inline-block;
    margin-bottom: 16px;
}

.enterprise-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.enterprise-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.enterprise-content .btn-plan {
    max-width: 240px;
    margin: 0 auto;
}

/* FAQ Section */
.faq-section { background: var(--bg-dark); }

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 28px;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(16, 185, 129, 0.3);
}

.faq-item h4 {
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 700;
}

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

/* Add-ons Section */
.addons-section { background: var(--bg-dark); }

.addons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.addon-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 36px;
    transition: var(--transition);
}

.addon-card:hover {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: var(--shadow-md);
}

.addon-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.addon-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.addon-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.addon-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .plan-features-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-card-full {
        padding: 32px 24px;
    }
    .plan-features-columns {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .addons-grid {
        grid-template-columns: 1fr;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .enterprise-card {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .plan-amount {
        font-size: 40px;
    }
    
    .pricing-card-full {
        padding: 24px 20px;
    }
    
    .addon-card {
        padding: 24px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .plan-header h3 {
        font-size: 22px;
    }
}
