.pricing-page {
    min-height: 100vh;
    padding: 60px 20px;
    background: #f4f6f9;
    direction: rtl;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-header {
    text-align: center;
    max-width: 600px;
    margin-bottom: 50px;
}

.pricing-badge {
    background: #e0e7ff;
    color: #4f46e5;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
}

.pricing-header h1 {
    font-size: 32px;
    color: #111827;
    margin: 0 0 12px 0;
}

.pricing-header p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
}

/* شبکه کارت‌ها */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1100px;
    align-items: center;
}

/* کارت اصلی */
.pricing-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* کارت برجسته (پرو) */
.pricing-card.featured {
    border: 2px solid #4f46e5;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
    scale: 1.03;
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #4f46e5;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 20px;
}

.pricing-card__header {
    text-align: center;
    margin-bottom: 24px;
}

.plan-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.pricing-card h3 {
    font-size: 22px;
    color: #111827;
    margin: 0 0 6px 0;
}

.plan-desc {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.enterprise-tag {
    font-size: 11px;
    background: #f3f4f6;
    color: #374151;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 600;
}

/* بخش قیمت */
.pricing-card__price {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 24px;
}

.pricing-card__price .amount {
    font-size: 30px;
    font-weight: 800;
    color: #111827;
    display: block;
}

.pricing-card__price .currency {
    font-size: 13px;
    color: #6b7280;
    margin-top: 4px;
    display: block;
}

/* لیست ویژگی‌ها */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 14px;
    color: #374151;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li.disabled {
    color: #9ca3af;
    text-decoration: line-through;
}

.check-icon {
    color: #10b981;
    font-weight: bold;
    font-style: normal;
}

.cross-icon {
    color: #ef4444;
    font-weight: bold;
    font-style: normal;
}

/* دکمه‌ها */
.pricing-btn {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.primary-btn {
    background: #4f46e5;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(79, 70, 229, 0.3);
}

.primary-btn:hover {
    background: #4338ca;
    transform: translateY(-2px);
}

.secondary-btn {
    background: #111827;
    color: #ffffff;
}

.secondary-btn:hover {
    background: #1f2937;
    transform: translateY(-2px);
}

.outline-btn {
    background: transparent;
    color: #4f46e5;
    border: 2px solid #4f46e5;
}

.outline-btn:hover {
    background: #4f46e5;
    color: #ffffff;
}

/* پاسخگویی در موبایل */
@media (max-width: 900px) {
    .pricing-card.featured {
        scale: 1;
    }
}