/* ============================================
   فایل اصلی استایل قالب سفارش‌یار
   ============================================ */

:root {
    --primary: #7c3aed;
    --primary-light: #8b5cf6;
    --primary-lighter: #a78bfa;
    --primary-dark: #6d28d9;
    --secondary: #1e1b4b;
    --light-bg: #f5f3ff;
    --white: #ffffff;
    --gray: #6b7280;
    --font-main: 'Vazirmatn', 'IRANSans', 'IRANYekan', 'Shabnam', 'Yekan', 'Samim', 'Gandom', 'Parastoo', 'Tanha', 'Sahel', 'Dana', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--secondary);
    line-height: 1.7;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
/* ============================================
   ریسپانسیو (دو ستونه در موبایل) - با فونت درشت‌تر
   ============================================ */

/* تبلت و صفحه‌های متوسط */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
}

/* ===== موبایل (دو ستونه) ===== */
@media (max-width: 768px) {
    /* ----- هدر (یک خطی) ----- */
    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 6px;
        flex-wrap: nowrap;
    }
    .logo-wrapper {
        display: flex;
        align-items: center;
        gap: 4px;
        flex-shrink: 0;
        flex-wrap: nowrap;
    }
    .logo img {
        max-height: 28px;
        width: auto;
    }
    .logo-tagline {
        font-size: 0.6rem;
        white-space: nowrap;
        padding-right: 0;
        border-right: none;
    }
    .menu-wrapper {
        display: flex;
        align-items: center;
        gap: 4px;
        flex-shrink: 1;
        overflow: hidden;
    }
    .main-menu-list {
        display: flex;
        gap: 6px;
        flex-wrap: nowrap;
    }
    .main-menu-list a {
        font-size: 0.65rem;
        padding: 2px 6px;
        white-space: nowrap;
    }
    .header-btn {
        display: none !important;
    }

    /* ----- بخش‌ها (دو ستونه) با فونت درشت‌تر ----- */
    
    /* چرا سفارش‌یار */
    .features-grid {
        display: grid;
        grid-template-columns: 1fr 1fr !important;
        gap: 16px !important;
    }
    .feature-item {
        padding: 20px 16px !important;
    }
    .feature-item .icon {
        font-size: 2.5rem !important;
    }
    .feature-item h3 {
        font-size: 1.1rem !important;
    }
    .feature-item p {
        font-size: 0.9rem !important;
    }

    /* امکانات کارتی */
    .capabilities-grid {
        display: grid;
        grid-template-columns: 1fr 1fr !important;
        gap: 16px !important;
        margin-top: 24px !important;
    }
    .capability-card {
        padding: 20px 16px !important;
    }
    .capability-card .cap-icon {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.6rem !important;
        border-radius: 14px !important;
        margin-bottom: 12px !important;
    }
    .capability-card h3 {
        font-size: 1rem !important;
    }
    .capability-card p {
        font-size: 0.85rem !important;
    }

    /* آمار */
    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr !important;
        gap: 16px !important;
    }
    .stat-card {
        padding: 20px 16px !important;
    }
    .stat-number {
        font-size: 2.2rem !important;
    }
    .stat-label {
        font-size: 0.95rem !important;
    }

    /* بنر مقایسه */
    .comparison-grid {
        display: grid;
        grid-template-columns: 1fr 1fr !important;
        gap: 16px !important;
    }
    .comparison-banner {
        padding: 24px 16px !important;
        border-radius: 18px !important;
        margin: 0 4px !important;
    }
    .banner-title {
        font-size: 1.5rem !important;
    }
    .banner-subtitle {
        font-size: 0.9rem !important;
    }
    .compare-card .card-image-wrapper {
        min-height: 140px !important;
    }
    .compare-card .card-content {
        padding: 14px 16px !important;
    }
    .compare-card .card-content h4 {
        font-size: 1rem !important;
    }
    .problem-list li, .solution-list li {
        font-size: 0.85rem !important;
        padding: 4px 0 !important;
    }
    .banner-actions {
        flex-direction: row !important;
        gap: 10px !important;
        flex-wrap: wrap !important;
    }
    .banner-actions .btn-lg {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
        width: auto !important;
    }

    /* ----- بخش‌های عمومی ----- */
    section {
        padding: 50px 0 !important;
    }
    .section-title {
        font-size: 1.8rem !important;
    }
    .section-subtitle {
        font-size: 1rem !important;
        margin-bottom: 28px !important;
        padding: 0 8px !important;
    }

    /* ----- اسلایدر ----- */
    .slider-container {
        max-width: 90% !important;
    }
    .slide-caption {
        font-size: 0.8rem !important;
        padding: 6px 14px !important;
        bottom: 12px !important;
        max-width: 85% !important;
    }

    /* ----- CTA ----- */
    .cta-section {
        padding: 30px 20px !important;
        margin: 0 8px 24px !important;
        border-radius: 20px !important;
    }
    .cta-section h2 {
        font-size: 1.5rem !important;
    }
    .cta-section p {
        font-size: 0.95rem !important;
    }

    /* ----- فرم مشاوره ----- */
    .consult-form-wrapper {
        padding: 24px 20px !important;
        margin: 0 8px !important;
    }
    .consult-form-wrapper h3 {
        font-size: 1.5rem !important;
    }
    .consult-form-wrapper p {
        font-size: 0.95rem !important;
    }
    .consult-form input {
        padding: 10px 14px !important;
        font-size: 0.95rem !important;
    }
    .btn-consult {
        padding: 12px !important;
        font-size: 1rem !important;
    }

    /* ----- فوتر (دو ستونه) ----- */
    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr !important;
        gap: 24px !important;
        text-align: center !important;
    }
    .footer-col {
        padding: 0 4px !important;
    }
    .footer-col h4 {
        font-size: 1.05rem !important;
    }
    .footer-col ul li a {
        font-size: 0.9rem !important;
    }
    .footer-social .social-link {
        width: 38px !important;
        height: 38px !important;
    }
    .footer-social .social-link svg {
        width: 18px !important;
        height: 18px !important;
    }
}

/* ===== موبایل کوچک (خیلی کوچک) ===== */
@media (max-width: 480px) {
    .features-grid {
        gap: 12px !important;
    }
    .feature-item {
        padding: 16px 12px !important;
    }
    .feature-item .icon {
        font-size: 2rem !important;
    }
    .feature-item h3 {
        font-size: 0.95rem !important;
    }
    .feature-item p {
        font-size: 0.8rem !important;
    }

    .capabilities-grid {
        gap: 12px !important;
    }
    .capability-card {
        padding: 16px 12px !important;
    }
    .capability-card .cap-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.3rem !important;
        border-radius: 10px !important;
        margin-bottom: 8px !important;
    }
    .capability-card h3 {
        font-size: 0.85rem !important;
    }
    .capability-card p {
        font-size: 0.75rem !important;
    }

    .pricing-grid {
        gap: 12px !important;
    }
    .pricing-card {
        padding: 18px 14px !important;
    }
    .pricing-card h3 {
        font-size: 1.1rem !important;
    }
    .new-price {
        font-size: 1.3rem !important;
    }
    .old-price {
        font-size: 0.75rem !important;
    }
    .btn-pricing {
        padding: 8px 14px !important;
        font-size: 0.8rem !important;
    }

    .stats-grid {
        gap: 12px !important;
    }
    .stat-card {
        padding: 16px 12px !important;
    }
    .stat-number {
        font-size: 1.8rem !important;
    }
    .stat-label {
        font-size: 0.8rem !important;
    }

    .comparison-grid {
        gap: 12px !important;
    }
    .compare-card .card-image-wrapper {
        min-height: 100px !important;
    }
    .compare-card .card-content {
        padding: 10px 12px !important;
    }
    .compare-card .card-content h4 {
        font-size: 0.85rem !important;
    }
    .problem-list li, .solution-list li {
        font-size: 0.75rem !important;
        padding: 3px 0 !important;
    }
    .banner-actions .btn-lg {
        padding: 8px 14px !important;
        font-size: 0.8rem !important;
    }
    .banner-title {
        font-size: 1.2rem !important;
    }

    .footer-grid {
        gap: 16px !important;
    }
    .footer-col h4 {
        font-size: 0.9rem !important;
    }
    .footer-col ul li a {
        font-size: 0.8rem !important;
    }
}
/* ============================================
   هدر
   ============================================ */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

/* ===== لوگو + متن ===== */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.logo img {
    max-height: 44px;
    width: auto;
}
.logo-tagline {
    font-size: 0.95rem;
    font-weight: 500;
    color: #6b7280;
    border-right: 2px solid #e5e7eb;
    padding-right: 12px;
    white-space: nowrap;
}

/* ===== منو و دکمه ===== */
.menu-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.main-menu-list {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-menu-list li {
    margin: 0;
}
.main-menu-list a {
    text-decoration: none;
    color: #1e1b4b;
    font-weight: 500;
    transition: color 0.2s;
    font-size: 0.95rem;
}
.main-menu-list a:hover {
    color: #7c3aed;
}
.header-btn {
    background: #7c3aed;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    text-decoration: none;
    font-size: 0.95rem;
    white-space: nowrap;
}
.header-btn:hover {
    background: #6d28d9;
    transform: translateY(-2px);
    color: #fff !important;
}

.btn-primary {
    background: var(--primary);
    color: #fff !important;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
    text-decoration: none;
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: #fff !important;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

/* ============================================
   بخش‌های عمومی
   ============================================ */
section {
    padding: 80px 0;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    text-align: center;
}
.section-subtitle {
    text-align: center;
    color: var(--gray);
    max-width: 640px;
    margin: 0 auto 48px;
    font-size: 1.2rem;
}

/* ============================================
   ۱. Hero با اسلایدر
   ============================================ */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    position: relative;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-content h1 span {
    color: var(--primary);
}
.hero-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 500px;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== اسلایدر ===== */
.hero-slider {
    position: relative;
    width: 100%;
}
.slider-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(124, 58, 237, 0.2);
    touch-action: pan-y;
}
.slide {
    display: none;
    width: 100%;
    transform: scale(0.95);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
    position: relative;
}
.slide.active {
    display: block;
    opacity: 1;
    transform: scale(1);
}
.slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

/* ===== عنوان اسلایدر ===== */
.slide-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 5;
}
.slide-caption.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(124, 58, 237, 0.7);
    color: #fff;
    border: none;
    padding: 12px 18px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s, transform 0.2s;
    z-index: 10;
    backdrop-filter: blur(4px);
}
.slider-btn:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}
.prev { left: 10px; }
.next { right: 10px; }

.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}
.dot.active {
    background: #fff;
    width: 20px;
    border-radius: 20px;
}

/* ============================================
   ۲. چرا سفارش‌یار
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.feature-item {
    background: #fff;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid #f3e8ff;
    transition: transform 0.25s, box-shadow 0.3s;
    text-align: center;
}
.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.08);
}
.feature-item .icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}
.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}
.feature-item p {
    color: var(--gray);
}

/* ============================================
   ۳. امکانات کارتی
   ============================================ */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.capability-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid #7c3aed;
    position: relative;
    overflow: hidden;
}
.capability-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.10);
}
.capability-card .cap-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 18px;
    background: #f3e8ff;
    color: #7c3aed;
    transition: transform 0.3s;
}
.capability-card:hover .cap-icon {
    transform: scale(1.12) rotate(-4deg);
}
.capability-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e1b4b;
}
.capability-card p {
    color: #6b7280;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ============================================
   ۴. آمار
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.stat-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.06);
    border: 1px solid #ede9fe;
    transition: transform 0.3s, box-shadow 0.3s;
}
.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.10);
}
.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #7c3aed;
    line-height: 1.2;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    color: #6b7280;
    font-size: 1.1rem;
    margin-top: 8px;
    font-weight: 500;
}

/* ============================================
   ۶. فرم مشاوره
   ============================================ */
.consult-form-wrapper {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.08);
    border: 1px solid #ede9fe;
}
.consult-form-wrapper h3 {
    color: #1e1b4b;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}
.consult-form-wrapper p {
    color: #6b7280;
    text-align: center;
    margin-bottom: 24px;
}
.consult-form .form-group {
    margin-bottom: 20px;
}
.consult-form label {
    display: block;
    font-weight: 600;
    color: #1e1b4b;
    margin-bottom: 6px;
}
.consult-form input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: #fff;
}
.consult-form input:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}
.btn-consult {
    width: 100%;
    background: #7c3aed;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}
.btn-consult:hover {
    background: #6d28d9;
    transform: translateY(-2px);
}
.consult-success {
    background: #dcfce7;
    color: #166534;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    text-align: center;
    border-right: 4px solid #22c55e;
}
.consult-error {
    background: #fee2e2;
    color: #991b1b;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    text-align: center;
    border-right: 4px solid #ef4444;
}

/* ============================================
   ۷. فوتر
   ============================================ */
.site-footer {
    background: #1e1b4b;
    color: #cbd5e1;
    padding: 60px 0 30px;
    margin-top: 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 20px;
}
.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 16px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: #a78bfa;
}

/* ===== شبکه‌های اجتماعی در فوتر ===== */
.footer-social {
    text-align: center;
    padding: 30px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 20px;
}
.footer-social .social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}
.footer-social .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-social .social-link:hover {
    transform: translateY(-3px);
}
.footer-social .social-link.instagram:hover {
    color: #e4405f;
    background: rgba(228, 64, 95, 0.15);
    border-color: #e4405f;
}
.footer-social .social-link.telegram:hover {
    color: #0088cc;
    background: rgba(0, 136, 204, 0.15);
    border-color: #0088cc;
}
.footer-social .social-link.bale:hover {
    color: #1a8cff;
    background: rgba(26, 140, 255, 0.15);
    border-color: #1a8cff;
}
.footer-social .social-link svg {
    width: 22px;
    height: 22px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    text-align: center;
    font-size: 0.9rem;
    color: #94a3b8;
}
.footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
}
.footer-bottom a:hover {
    color: #a78bfa;
}

/* ============================================
   ریسپانسیو
   ============================================ */

/* تبلت و صفحه‌های متوسط */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* موبایل بزرگ و تبلت کوچک */
@media (max-width: 768px) {
    /* ----- هدر ----- */
    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        flex-wrap: nowrap;
    }
    .logo-wrapper {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-shrink: 0;
        flex-wrap: nowrap;
    }
    .logo img {
        max-height: 32px;
        width: auto;
    }
    .logo-tagline {
        font-size: 0.6rem;
        font-weight: 500;
        color: #6b7280;
        padding-right: 0;
        border-right: none;
        white-space: nowrap;
    }
    .menu-wrapper {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-shrink: 1;
        overflow: hidden;
    }
    .main-menu-list {
        display: flex;
        gap: 8px;
        list-style: none;
        margin: 0;
        padding: 0;
        flex-wrap: nowrap;
    }
    .main-menu-list li {
        margin: 0;
    }
    .main-menu-list a {
        font-size: 0.7rem;
        white-space: nowrap;
        padding: 4px 6px;
    }
    /* حذف دکمه شروع رایگان در موبایل */
    .header-btn {
        display: none !important;
    }

    /* ----- سایر بخش‌ها ----- */
    .hero-content h1 {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .footer-col ul {
        padding: 0;
    }

    /* ----- اسلایدر ----- */
    .slider-container {
        max-width: 80% !important;
        border-radius: 16px;
    }
    .slide img {
        border-radius: 16px;
    }
    .slider-btn {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
    .slider-dots {
        bottom: 10px;
        gap: 6px;
    }
    .dot {
        width: 8px;
        height: 8px;
    }
    .dot.active {
        width: 16px;
    }

    /* ----- عنوان اسلایدر در موبایل ----- */
    .slide-caption {
        font-size: 0.8rem;
        padding: 6px 16px;
        bottom: 16px;
        white-space: normal;
        max-width: 80%;
        text-align: center;
        border-radius: 30px;
    }

    /* ----- شبکه‌های اجتماعی فوتر در موبایل ----- */
    .footer-social .social-link {
        width: 38px;
        height: 38px;
    }
    .footer-social .social-link svg {
        width: 18px;
        height: 18px;
    }
}

/* موبایل کوچک */
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .stat-number {
        font-size: 2rem;
    }
    .slider-container {
        max-width: 85% !important;
    }
    .footer-social .social-link {
        width: 34px;
        height: 34px;
    }
    .footer-social .social-link svg {
        width: 16px;
        height: 16px;
    }
    .footer-grid {
        gap: 24px;
    }
    .footer-col {
        padding: 0 10px;
    }
    .logo img {
        max-height: 28px;
    }
    .logo-tagline {
        font-size: 0.5rem;
    }
    .main-menu-list a {
        font-size: 0.6rem;
        padding: 2px 4px;
    }
    .main-menu-list {
        gap: 4px;
    }
    .slide-caption {
        font-size: 0.7rem;
        padding: 4px 12px;
        bottom: 12px;
        max-width: 85%;
    }
}
/* ============================================
   بنر مقایسه‌ای (اضافه شده به انتهای فایل)
   ============================================ */

.comparison-section {
    padding: 60px 0;
    background: #ffffff;
}

.comparison-banner {
    background: #f8fafc;
    border-radius: 32px;
    padding: 50px 40px 40px;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.06);
}

.banner-header {
    text-align: center;
    margin-bottom: 40px;
}
.banner-badge {
    display: inline-block;
    background: rgba(124, 58, 237, 0.10);
    color: #7c3aed;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 18px;
    border-radius: 50px;
    margin-bottom: 12px;
}
.banner-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e1b4b;
    margin-bottom: 8px;
}
.banner-title span {
    color: #7c3aed;
}
.banner-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 35px;
}

.compare-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s;
}
.compare-card:hover {
    transform: translateY(-8px);
}
.compare-card.bad {
    border-top: 4px solid #ef4444;
}
.compare-card.good {
    border-top: 4px solid #22c55e;
}

.card-badge {
    text-align: center;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 700;
}
.compare-card.bad .card-badge {
    color: #ef4444;
    background: #fef2f2;
}
.compare-card.good .card-badge {
    color: #22c55e;
    background: #f0fdf4;
}

.card-image-wrapper {
    overflow: hidden;
    background: #f1f5f9;
    min-height: 200px;
}
.card-image {
    width: 100%;
    height: auto;
    display: block;
}

.card-content {
    padding: 20px 24px 24px;
}
.card-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e1b4b;
}

.problem-list, .solution-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.problem-list li, .solution-list li {
    padding: 6px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid #f1f5f9;
}
.problem-list li:last-child, .solution-list li:last-child {
    border-bottom: none;
}
.problem-list li {
    color: #ef4444;
}
.solution-list li {
    color: #22c55e;
}

.banner-actions {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 14px 36px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary.btn-lg {
    background: #7c3aed;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.30);
}
.btn-primary.btn-lg:hover {
    background: #6d28d9;
    transform: translateY(-3px);
}

.btn-outline.btn-lg {
    border: 2px solid #7c3aed;
    color: #7c3aed !important;
    background: transparent;
}
.btn-outline.btn-lg:hover {
    background: #7c3aed;
    color: #fff !important;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .comparison-banner {
        padding: 30px 16px 24px;
        border-radius: 24px;
        margin: 0 8px;
    }
    .banner-title {
        font-size: 1.8rem;
    }
    .btn-lg {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 1.4rem;
    }
    .btn-lg {
        padding: 10px 18px;
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
    }
    .banner-actions {
        flex-direction: column;
        gap: 10px;
    }
}
/* ============================================
   بک‌گراند یکسان کل سایت (مثل بخش Hero)
   ============================================ */
body {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    font-family: var(--font-main);
    color: var(--secondary);
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

/* حذف بک‌گراند اضافی از بخش‌ها */
section {
    background: transparent !important;
}

/* ============================================
   CTA و فرم مشاوره کنار هم (دو ستونه)
   ============================================ */
.cta-consult-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.cta-box {
    background: #7c3aed;
    border-radius: 24px;
    padding: 40px 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 300px;
}

.cta-box .btn-primary {
    background: #fff;
    color: #7c3aed !important;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}
.cta-box .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.consult-box {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    border: 1px solid rgba(124, 58, 237, 0.1);
}
.consult-box .consult-form-wrapper {
    margin: 0;
    padding: 20px;
    background: transparent;
    box-shadow: none;
    border: none;
    width: 100%;
    max-width: 100%;
}

/* ============================================
   سوالات متداول (FAQ)
   ============================================ */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    border: 1px solid #ede9fe;
    transition: box-shadow 0.3s;
}
.faq-item:hover {
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    cursor: pointer;
    background: #fff;
    transition: background 0.3s;
    user-select: none;
}
.faq-question:hover {
    background: #f8fafc;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #7c3aed;
    min-width: 28px;
    text-align: center;
    transition: transform 0.3s;
}

.faq-question h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e1b4b;
    margin: 0;
    flex: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   ریسپانسیو برای CTA و مشاوره + FAQ
   ============================================ */
@media (max-width: 768px) {
    .cta-consult-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .cta-box {
        min-height: 200px;
        padding: 30px 20px;
    }
    .cta-box h2 {
        font-size: 1.5rem !important;
    }
    .consult-box {
        min-height: 200px;
        padding: 5px;
    }
    .consult-box .consult-form-wrapper {
        padding: 16px;
    }
    .faq-question {
        padding: 14px 16px;
        gap: 12px;
    }
    .faq-question h4 {
        font-size: 0.9rem;
    }
    .faq-answer p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .cta-box h2 {
        font-size: 1.2rem !important;
    }
    .cta-box .btn-primary {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    .faq-question {
        padding: 12px 14px;
    }
    .faq-question h4 {
        font-size: 0.8rem;
    }
    .faq-answer p {
        font-size: 0.8rem;
    }
}
/* ============================================
   صفحه تماس
   ============================================ */

.contact-page {
    padding: 60px 0;
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

/* ===== شبکه دو ستونه ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ===== فرم تماس ===== */
.contact-form-box {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(124, 58, 237, 0.08);
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.06);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: #1e1b4b;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.contact-form .required {
    color: #ef4444;
    margin-right: 2px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #fff;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.08);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== آپلود فایل ===== */
.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    padding: 10px;
    border: 2px dashed #e5e7eb;
    border-radius: 12px;
    background: #f8fafc;
    cursor: pointer;
    transition: border-color 0.3s;
    width: 100%;
}

.file-upload-wrapper input[type="file"]:hover {
    border-color: #7c3aed;
}

.file-info {
    display: block;
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 4px;
}

/* ===== دکمه ارسال ===== */
.btn-contact {
    width: 100%;
    background: #7c3aed;
    color: #fff;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 6px;
}

.btn-contact:hover {
    background: #6d28d9;
    transform: translateY(-2px);
}

/* ===== پیام‌های موفقیت و خطا ===== */
.contact-success {
    background: #dcfce7;
    color: #166534;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-right: 4px solid #22c55e;
}

.contact-error {
    background: #fee2e2;
    color: #991b1b;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-right: 4px solid #ef4444;
}

/* ===== اطلاعات تماس ===== */
.contact-info-box {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 32px 28px;
    border: 1px solid rgba(124, 58, 237, 0.08);
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.06);
}

.contact-info-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e1b4b;
    margin-bottom: 24px;
    text-align: center;
}

.info-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    font-size: 1.6rem;
    min-width: 40px;
    text-align: center;
}

.info-item strong {
    display: block;
    color: #1e1b4b;
    font-size: 0.9rem;
}

.info-item p {
    color: #6b7280;
    margin: 4px 0 0;
    font-size: 0.95rem;
}

/* ===== شبکه‌های اجتماعی در صفحه تماس ===== */
.contact-social {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    text-align: center;
}

.contact-social p {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.contact-social .social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.contact-social .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
}

.contact-social .social-link:hover {
    transform: translateY(-3px);
}

.contact-social .social-link.instagram:hover {
    color: #e4405f;
    background: #fce4ec;
    border-color: #e4405f;
}

.contact-social .social-link.telegram:hover {
    color: #0088cc;
    background: #e1f5fe;
    border-color: #0088cc;
}

.contact-social .social-link.bale:hover {
    color: #1a8cff;
    background: #e3f0ff;
    border-color: #1a8cff;
}

.contact-social .social-link svg {
    width: 20px;
    height: 20px;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-form-box {
        padding: 24px 18px;
        border-radius: 18px;
    }
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-info-box {
        padding: 24px 18px;
    }
    .info-item {
        padding: 12px 0;
    }
    .contact-social .social-link {
        width: 38px;
        height: 38px;
    }
    .contact-social .social-link svg {
        width: 17px;
        height: 17px;
    }
}

@media (max-width: 480px) {
    .contact-form-box {
        padding: 18px 14px;
    }
    .contact-form input,
    .contact-form textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    .btn-contact {
        padding: 12px 16px;
        font-size: 1rem;
    }
    .contact-info-box h3 {
        font-size: 1.2rem;
    }
}
/* ============================================
   استوری هدر (بدون چرخش)
   ============================================ */

/* ===== حلقه استوری ===== */
.story-ring {
    position: relative;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    background: conic-gradient(
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.story-ring:hover {
    transform: scale(1.05);
}

.story-ring-inner {
    background: #fff;
    border-radius: 50%;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1e1b4b;
}

.story-ring-inner .logo {
    margin: 0;
}
.story-ring-inner .logo img {
    max-height: 50px;
    width: auto;
    border-radius: 50%;
    object-fit: cover;
}

/* ===== پالس (نبض) ===== */
.story-ring-pulse {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid rgba(220, 39, 67, 0.3);
    animation: pulse 2s ease-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* ===== مودال استوری ===== */
.story-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    font-family: var(--font-main);
}

.story-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.story-modal-content {
    position: relative;
    z-index: 10;
    max-width: 420px;
    width: 92%;
    max-height: 90vh;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

/* ===== دکمه بستن ===== */
.story-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 20;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}
.story-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* ===== اسلایدر استوری ===== */
.story-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    max-height: 80vh;
}

.story-slide {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
}

.story-slide.active {
    display: block;
}

/* ===== نوار پیشرفت ===== */
.story-progress-bar {
    position: absolute;
    top: 12px;
    left: 16px;
    right: 16px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    z-index: 15;
    overflow: hidden;
}

.story-progress-fill {
    height: 100%;
    background: #fff;
    border-radius: 4px;
    width: 0%;
    transition: width 0.1s linear;
}

.story-slide.active .story-progress-fill {
    animation: progress-fill var(--duration, 5s) linear forwards;
}

@keyframes progress-fill {
    from { width: 0%; }
    to { width: 100%; }
}

/* ===== تصویر ===== */
.story-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.story-image {
    width: 100%;
    height: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: none;
    border-radius: 24px;
}

.story-image.loaded {
    display: block;
}

/* ===== لودر ===== */
.story-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.story-image.loaded + .story-loader {
    display: none;
}

/* ===== دکمه‌های ناوبری ===== */
.story-navigation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 12;
    pointer-events: none;
}

.story-prev,
.story-next {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    margin: 0 8px;
}
.story-prev:hover,
.story-next:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* ===== نقاط پایین ===== */
.story-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 15;
}

.story-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}
.story-dot.active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 768px) {
    .story-ring {
        width: 56px;
        height: 56px;
    }
    .story-ring-inner {
        width: 48px;
        height: 48px;
    }
    .story-ring-inner .logo img {
        max-height: 38px;
    }
    .story-modal-content {
        max-width: 95%;
        border-radius: 16px;
    }
    .story-slider {
        min-height: 350px;
    }
    .story-image {
        max-height: 70vh;
    }
    .story-prev,
    .story-next {
        padding: 8px 10px;
        font-size: 1rem;
    }
    .story-close {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .story-ring {
        width: 48px;
        height: 48px;
        padding: 3px;
    }
    .story-ring-inner {
        width: 40px;
        height: 40px;
    }
    .story-ring-inner .logo img {
        max-height: 32px;
    }
    .story-slider {
        min-height: 280px;
    }
    .story-progress-bar {
        top: 8px;
        left: 10px;
        right: 10px;
        height: 2px;
    }
    .story-dot {
        width: 6px;
        height: 6px;
    }
    .story-dot.active {
        width: 16px;
    }
}
/* ============================================
   قیمت‌گذاری (پلن‌ها) - طیف بنفش-آبی
   ============================================ */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.pricing-card {
    border-radius: 24px;
    padding: 30px 22px 26px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(124, 58, 237, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===== رنگ‌های یکدست برای هر پلن (طیف بنفش-آبی) ===== */

/* ۱ ماهه - بنفش ملایم */
.pricing-card.plan-1 {
    background: linear-gradient(145deg, #f5f3ff, #ede9fe) !important;
    border-color: rgba(124, 58, 237, 0.10);
}
.pricing-card.plan-1 .pricing-badge {
    background: #7c3aed;
}
.pricing-card.plan-1 .new-price {
    color: #5b21b6;
}
.pricing-card.plan-1 .btn-pricing {
    background: #7c3aed;
}
.pricing-card.plan-1 .btn-pricing:hover {
    background: #6d28d9;
}
.pricing-card.plan-1 .pricing-bonus {
    color: #7c3aed;
}

/* ۳ ماهه - بنفش متوسط (محبوب) */
.pricing-card.plan-2 {
    background: linear-gradient(145deg, #ede9fe, #ddd6fe) !important;
    border-color: rgba(124, 58, 237, 0.15);
    border-width: 2px;
}
.pricing-card.plan-2 .pricing-badge {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}
.pricing-card.plan-2 .new-price {
    color: #4c1d95;
}
.pricing-card.plan-2 .btn-pricing {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}
.pricing-card.plan-2 .btn-pricing:hover {
    background: linear-gradient(135deg, #6d28d9, #5b21b6);
}
.pricing-card.plan-2 .pricing-bonus {
    color: #6d28d9;
}

/* ۶ ماهه - آبی-بنفش */
.pricing-card.plan-3 {
    background: linear-gradient(145deg, #e0e7ff, #c7d2fe) !important;
    border-color: rgba(79, 70, 229, 0.10);
}
.pricing-card.plan-3 .pricing-badge {
    background: #4f46e5;
}
.pricing-card.plan-3 .new-price {
    color: #3730a3;
}
.pricing-card.plan-3 .btn-pricing {
    background: #4f46e5;
}
.pricing-card.plan-3 .btn-pricing:hover {
    background: #4338ca;
}
.pricing-card.plan-3 .pricing-bonus {
    color: #4f46e5;
}

/* ۱۲ ماهه - آبی تیره (ویژه) */
.pricing-card.plan-4 {
    background: linear-gradient(145deg, #dbeafe, #bfdbfe) !important;
    border-color: rgba(37, 99, 235, 0.10);
}
.pricing-card.plan-4 .pricing-badge {
    background: #2563eb;
}
.pricing-card.plan-4 .new-price {
    color: #1e40af;
}
.pricing-card.plan-4 .btn-pricing {
    background: #2563eb;
}
.pricing-card.plan-4 .btn-pricing:hover {
    background: #1d4ed8;
}
.pricing-card.plan-4 .pricing-bonus {
    color: #2563eb;
}

/* ===== المان‌های عمومی ===== */

.pricing-badge {
    display: inline-block;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 18px;
    border-radius: 50px;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e1b4b;
    margin-bottom: 4px;
}

.pricing-duration {
    color: #4b5563;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.pricing-price {
    width: 100%;
    padding: 12px 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    margin-bottom: 12px;
}

.old-price {
    color: #9ca3af;
    font-size: 0.8rem;
    text-decoration: line-through;
    display: block;
}

.new-price {
    font-size: 1.9rem;
    font-weight: 800;
    display: block;
    margin-top: 2px;
}

.new-price::after {
    content: ' تومان';
    font-size: 0.7rem;
    font-weight: 400;
    color: #6b7280;
}

.pricing-bonus {
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.5);
    padding: 4px 14px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.btn-pricing {
    display: inline-block;
    color: #fff !important;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-pricing:hover {
    transform: scale(1.03) translateY(-2px);
    color: #fff !important;
}

/* ===== کارت محبوب (۳ ماهه) ===== */
.pricing-card.plan-2::after {
    content: '⭐ محبوب‌ترین';
    position: absolute;
    top: -10px;
    right: 12px;
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.20);
}

.pricing-card.plan-2:hover {
    box-shadow: 0 16px 50px rgba(124, 58, 237, 0.15);
}

/* ============================================
   قیمت‌گذاری - ریسپانسیو (۲ ستونه در موبایل)
   ============================================ */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

/* ===== تبلت ===== */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ===== موبایل (۲ ستونه) ===== */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .pricing-card {
        padding: 18px 12px 16px;
        border-radius: 18px;
    }
    .pricing-card h3 {
        font-size: 0.95rem;
    }
    .new-price {
        font-size: 1.3rem;
    }
    .btn-pricing {
        font-size: 0.75rem;
        padding: 8px 12px;
    }
    .pricing-badge {
        font-size: 0.65rem;
        padding: 3px 12px;
    }
    .pricing-bonus {
        font-size: 0.7rem;
        padding: 2px 10px;
    }
    .old-price {
        font-size: 0.7rem;
    }
    .pricing-card.plan-2::after {
        font-size: 0.5rem;
        padding: 2px 8px;
        top: -8px;
        right: 8px;
    }
}

/* ===== موبایل خیلی کوچک ===== */
@media (max-width: 480px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .pricing-card {
        padding: 14px 10px 12px;
        border-radius: 14px;
    }
    .pricing-card h3 {
        font-size: 0.85rem;
    }
    .new-price {
        font-size: 1.1rem;
    }
    .new-price::after {
        font-size: 0.55rem;
    }
    .btn-pricing {
        font-size: 0.65rem;
        padding: 6px 10px;
    }
    .pricing-badge {
        font-size: 0.55rem;
        padding: 2px 10px;
        margin-bottom: 8px;
    }
    .pricing-duration {
        font-size: 0.7rem;
        margin-bottom: 10px;
    }
    .pricing-price {
        padding: 8px 0;
        margin-bottom: 8px;
    }
    .pricing-bonus {
        font-size: 0.6rem;
        margin-bottom: 12px;
        padding: 2px 8px;
    }
    .old-price {
        font-size: 0.6rem;
    }
}
/* ============================================
   بنر مقایسه قهوه (نسخه جدید)
   ============================================ */

.coffee-comparison {
    background: linear-gradient(145deg, #1e1b4b 0%, #3b2a7a 100%);
    border-radius: 32px;
    padding: 40px 36px 36px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 60px rgba(30, 27, 75, 0.25);
    border: 1px solid rgba(167, 139, 250, 0.08);
    position: relative;
    overflow: hidden;
}

.coffee-comparison::before {
    content: '☕️';
    position: absolute;
    font-size: 12rem;
    opacity: 0.03;
    right: -20px;
    bottom: -40px;
    transform: rotate(-10deg);
}

.coffee-title {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.coffee-subtitle {
    font-size: 1rem;
    color: #c7d2fe;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

/* ===== آیتم‌های مقایسه ===== */
.coffee-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.coffee-item {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    padding: 20px 28px;
    border-radius: 20px;
    min-width: 160px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s;
}

.coffee-item:hover {
    transform: translateY(-4px);
}

.coffee-item .coffee-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 4px;
}

.coffee-item .coffee-label {
    font-size: 0.75rem;
    color: #c7d2fe;
    margin-bottom: 4px;
}

.coffee-item .coffee-price {
    font-size: 1.6rem;
    font-weight: 800;
    display: block;
}

.coffee-item .coffee-price.old {
    color: #fca5a5;
    text-decoration: line-through;
}

.coffee-item .coffee-price.new {
    color: #a78bfa;
}

.coffee-item .coffee-desc {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 2px;
}

.coffee-item .coffee-badge-small {
    font-size: 0.6rem;
    color: #a78bfa;
    background: rgba(167, 139, 250, 0.1);
    padding: 2px 12px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 6px;
}

.coffee-item.highlight {
    background: rgba(124, 58, 237, 0.15);
    border-color: rgba(167, 139, 250, 0.15);
}

.coffee-vs {
    font-weight: 700;
    color: #a78bfa;
    font-size: 1rem;
    background: rgba(167, 139, 250, 0.06);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(167, 139, 250, 0.06);
}

.coffee-calc {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #94a3b8;
    background: rgba(0, 0, 0, 0.2);
    padding: 6px 20px;
    border-radius: 50px;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.coffee-btn {
    display: inline-block;
    margin-top: 20px;
    background: #7c3aed;
    color: #fff;
    padding: 12px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.coffee-btn:hover {
    background: #6d28d9;
    transform: scale(1.03);
    color: #fff;
}

/* ============================================
   بنر مقایسه قهوه - ریسپانسیو (۲ ستونه)
   ============================================ */

.coffee-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ===== تبلت ===== */
@media (max-width: 992px) {
    .coffee-items {
        gap: 16px;
    }
    .coffee-item {
        min-width: 140px;
        padding: 16px 20px;
    }
    .coffee-item .coffee-price {
        font-size: 1.4rem;
    }
}

/* ===== موبایل (۲ ستونه) ===== */
@media (max-width: 768px) {
    .coffee-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        align-items: center;
    }
    .coffee-item {
        width: 100%;
        max-width: 100%;
        padding: 14px 16px;
        min-width: 0;
    }
    .coffee-item .coffee-price {
        font-size: 1.2rem;
    }
    .coffee-item .coffee-icon {
        font-size: 1.8rem;
    }
    .coffee-item .coffee-label {
        font-size: 0.65rem;
    }
    .coffee-item .coffee-desc {
        font-size: 0.6rem;
    }
    .coffee-item .coffee-badge-small {
        font-size: 0.5rem;
        padding: 1px 8px;
        margin-top: 4px;
    }
    .coffee-vs {
        display: none; /* VS در موبایل مخفی می‌شود */
    }
    .coffee-comparison {
        padding: 24px 16px 20px;
        border-radius: 20px;
    }
    .coffee-title {
        font-size: 1.1rem;
    }
    .coffee-subtitle {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
    .coffee-calc {
        font-size: 0.65rem;
        padding: 4px 14px;
        margin-top: 16px;
    }
    .coffee-btn {
        padding: 10px 24px;
        font-size: 0.8rem;
        margin-top: 16px;
    }
}

/* ===== موبایل خیلی کوچک ===== */
@media (max-width: 480px) {
    .coffee-items {
        gap: 8px;
    }
    .coffee-item {
        padding: 10px 12px;
    }
    .coffee-item .coffee-price {
        font-size: 1rem;
    }
    .coffee-item .coffee-icon {
        font-size: 1.5rem;
    }
    .coffee-item .coffee-label {
        font-size: 0.55rem;
    }
    .coffee-item .coffee-desc {
        font-size: 0.5rem;
    }
    .coffee-title {
        font-size: 0.95rem;
    }
    .coffee-subtitle {
        font-size: 0.7rem;
    }
    .coffee-comparison {
        padding: 18px 12px 16px;
        border-radius: 16px;
    }
    .coffee-calc {
        font-size: 0.55rem;
        padding: 3px 10px;
    }
    .coffee-btn {
        padding: 8px 18px;
        font-size: 0.7rem;
        margin-top: 12px;
    }
}