/* ========== صفحه پیکس پرو - تم آبی شیک ========== */

.pixpro-page {
    padding-bottom: 20px;
}

/* هدر */
.pixpro-hero {
    position: relative;
    background: linear-gradient(135deg, #0052D4, #4364F7, #6FB1FC);
    border-radius: 32px;
    padding: 32px 20px;
    margin-bottom: 32px;
    overflow: hidden;
    color: white;
}

.pixpro-hero-bg {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-5%, -5%) rotate(2deg);
    }
}

.pixpro-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.pixpro-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 11px;
    margin-bottom: 20px;
}

.pixpro-hero h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.pro-text {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pixpro-hero p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 28px;
}

.pixpro-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-pro-primary {
    background: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    color: #0052D4;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-pro-primary:hover {
    transform: translateY(-2px);
    gap: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-pro-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 12px 24px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-pro-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* استایل توضیحات */
.pixpro-description {
    font-size: 13px;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto 24px;
    opacity: 0.9;
}

/* دکمه‌های اصلاح شده */
.btn-pro-primary {
    background: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    color: #0052D4;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-pro-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 12px 24px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-pro-primary:hover {
    transform: translateY(-2px);
    gap: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-pro-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* آمار هدر */
.pixpro-hero-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.hero-stat {
    text-align: center;
    flex: 1;
}

.hero-stat-number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 11px;
    opacity: 0.8;
}

/* بخش مزایا */
.section-header-center {
    text-align: center;
    margin-bottom: 28px;
}

.section-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0052D4, #4364F7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.section-icon i {
    font-size: 28px;
    color: white;
}

.section-header-center h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

body.dark .section-header-center h2 {
    color: #f1f5f9;
}

.section-header-center p {
    font-size: 12px;
    color: #64748b;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

/* ========== اصلاح Feature Glass در حالت روشن ========== */
.feature-glass {
    background: white;
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 20px 16px;
    position: relative;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

body.dark .feature-glass {
    background: rgba(20, 25, 45, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-glass:hover {
    transform: translateY(-6px);
    border-color: #0052D4;
    box-shadow: 0 15px 30px rgba(0, 82, 212, 0.1);
}

.feature-glass-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 82, 212, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.feature-glass-icon i {
    font-size: 24px;
    color: #0052D4;
}

.feature-glass h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1e293b;
}

body.dark .feature-glass h3 {
    color: #f1f5f9;
}

.feature-glass p {
    font-size: 11px;
    color: #64748b;
    line-height: 1.4;
}

.feature-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #0052D4, #4364F7);
    color: white;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 600;
}

/* ========== پلن‌های اشتراک - نسخه مدرن ========== */
.pixpro-plans {
    margin-bottom: 40px;
}

.plans-slider-container {
    position: relative;
    padding: 0 30px;
}

.plans-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 12px 4px 20px 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.plans-slider::-webkit-scrollbar {
    display: none;
}

/* کارت پلن - طراحی مدرن بدون box-shadow */
.plan-card-modern {
    min-width: 280px;
    width: 280px;
    background: white;
    border-radius: 24px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    /* ارتفاع ثابت برای همه کارت‌ها */
    min-height: 460px;
}

body.dark .plan-card-modern {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-card-modern:hover {
    transform: translateY(-4px);
    border-color: #0052D4;
}

/* کارت ویژه پرو */
.pro-plan-card {
    border: 2px solid #0052D4;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

body.dark .pro-plan-card {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border: 2px solid #0052D4;
}

/* نشان محبوب‌ترین */
.plan-popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #0052D4, #4364F7);
    color: white;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* هدر کارت */
.plan-card-header {
    text-align: center;
    margin-bottom: 16px;
}

.plan-card-header i {
    font-size: 36px;
    color: #0052D4;
    margin-bottom: 8px;
}

.plan-card-header h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e293b;
}

body.dark .plan-card-header h3 {
    color: #f1f5f9;
}

.plan-price {
    font-size: 28px;
    font-weight: 800;
    color: #0052D4;
}

.plan-price span {
    font-size: 12px;
    font-weight: 400;
    color: #64748b;
}

.plan-period {
    font-size: 11px;
    color: #64748b;
    margin-top: 4px;
}

/* خط جداکننده */
.plan-card-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #0052D4, #4364F7, transparent);
    margin: 12px 0;
}

/* لیست ویژگی‌ها */
.plan-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex: 1;
}

.plan-features-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #1e293b;
}

body.dark .plan-features-list li {
    color: #e2e8f0;
}

.plan-features-list .fa-check-circle {
    color: #10b981;
    font-size: 14px;
}

.plan-features-list .fa-times-circle {
    color: #ef4444;
    font-size: 14px;
}

/* دکمه‌ها - با hover و focus */
.plan-card-btn {
    width: 100%;
    padding: 12px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    text-align: center;
}

/* دکمه رایگان */
.free-plan-btn {
    background: transparent;
    border: 1px solid #cbd5e1;
    color: #64748b;
}

.free-plan-btn:hover,
.free-plan-btn:focus {
    background: #f1f5f9;
    border-color: #0052D4;
    color: #0052D4;
    transform: translateY(-2px);
}

/* دکمه پرو */
.pro-plan-btn {
    background: linear-gradient(135deg, #0052D4, #4364F7);
    border: none;
    color: white;
}

.pro-plan-btn:hover,
.pro-plan-btn:focus {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #0042b3, #2a55d6);
    box-shadow: 0 0 0 3px rgba(0, 82, 212, 0.3);
    outline: none;
}

/* دکمه سازمانی */
.org-plan-btn {
    background: transparent;
    border: 1px solid #0052D4;
    color: #0052D4;
}

.org-plan-btn:hover,
.org-plan-btn:focus {
    background: rgba(0, 82, 212, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 0 0 3px rgba(0, 82, 212, 0.2);
    outline: none;
}

/* دکمه‌های ناوبری اسلایدر */
.plans-slider-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.plans-slider-prev,
.plans-slider-next {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e2e8f0;
    color: #0052D4;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.dark .plans-slider-prev,
body.dark .plans-slider-next {
    background: #1e293b;
    border-color: #334155;
}

.plans-slider-prev:hover,
.plans-slider-next:hover {
    background: linear-gradient(135deg, #0052D4, #4364F7);
    color: white;
    transform: scale(1.05);
}

.plans-slider-prev:focus,
.plans-slider-next:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 82, 212, 0.3);
}

/* ریسپانسیو */
@media (max-width: 400px) {
    .plans-slider-container {
        padding: 0 15px;
    }

    .plan-card-modern {
        min-width: 260px;
        width: 260px;
        min-height: 440px;
        padding: 20px 16px;
    }

    .plan-features-list li {
        font-size: 11px;
    }
}

/* نظرات */
.testimonials-slider-container {
    position: relative;
    margin-bottom: 40px;
}

.testimonials-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 8px 4px;
    scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

/* ========== اصلاح Testimonial Glass در حالت روشن ========== */
.testimonial-glass {
    min-width: 280px;
    background: white;
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 20px;
    position: relative;
    border: 1px solid #e2e8f0;
    /* اضافه شدن border در حالت روشن */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

body.dark .testimonial-glass {
    background: rgba(20, 25, 45, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.3;
}

.testimonial-quote i {
    font-size: 32px;
    color: #0052D4;
}

.testimonial-text-pro {
    font-size: 13px;
    color: #1e293b;
    line-height: 1.5;
    margin-bottom: 16px;
    padding-right: 25px;
}

body.dark .testimonial-text-pro {
    color: #e2e8f0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.author-avatar i {
    font-size: 40px;
    color: #0052D4;
}

.author-info strong {
    display: block;
    font-size: 13px;
    color: #1e293b;
}

body.dark .author-info strong {
    color: #f1f5f9;
}

.author-info span {
    font-size: 10px;
    color: #64748b;
}

.testimonial-rating-pro {
    color: #fbbf24;
    font-size: 12px;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.testimonial-prev,
.testimonial-next {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 1px solid rgba(0, 82, 212, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: linear-gradient(135deg, #0052D4, #4364F7);
    color: white;
    transform: scale(1.05);
}

/* CTA نهایی */
.pixpro-final-cta {
    background: linear-gradient(135deg, #0052D4, #4364F7, #6FB1FC);
    border-radius: 32px;
    padding: 36px 24px;
    text-align: center;
    margin-bottom: 20px;
}

.final-cta-icon i {
    font-size: 48px;
    color: white;
    margin-bottom: 16px;
    animation: rocketFloat 2s infinite;
}

@keyframes rocketFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.final-cta-content h3 {
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.final-cta-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.final-cta-btn {
    background: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    color: #0052D4;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.final-cta-btn:hover {
    gap: 15px;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 450px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .plan-box {
        min-width: 260px;
    }

    .testimonial-glass {
        min-width: 260px;
    }
}