* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fefefe;
    color: #1e293b;
    line-height: 1.5;
    overflow-x: hidden;
}

/* ========== انیمیشن‌های عمومی ========== */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 0px rgba(255,255,255,0.3);
    }

    100% {
        text-shadow: 0 0 20px rgba(255,255,255,0.7);
    }
}

@keyframes blinkCursor {
    0%, 100% {
        border-color: white;
    }

    50% {
        border-color: transparent;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes slideIn {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 100%;
        opacity: 1;
    }
}

.fade-up {
    animation: fadeUp 0.8s ease forwards;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== هدر مشترک تمام صفحات ========== */
.header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #eef2f6;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    flex-wrap: wrap;
    position: relative;
}

.logo {
    font-size: 1.9rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-decoration: none;
    cursor: pointer;
}

.login-desktop {
    display: inline-block;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

    .nav-links li a {
        text-decoration: none;
        font-weight: 500;
        color: #334155;
        transition: 0.2s;
        cursor: pointer;
    }

        .nav-links li a:hover {
            color: #2563eb;
        }

        .nav-links li a.active {
            color: #2563eb !important;
            font-weight: 700 !important;
            position: relative;
        }

            /* افکت زیرخط برای لینک فعال */
            .nav-links li a.active::after {
                content: '';
                position: absolute;
                bottom: -5px;
                right: 0;
                width: 100%;
                height: 3px;
                background: linear-gradient(90deg, #2563eb, #7c3aed);
                border-radius: 3px;
                animation: slideIn 0.3s ease-out;
            }

.btn-login {
    background: transparent;
    border: 1px solid #cbd5e1;
    padding: 8px 22px;
    border-radius: 40px;
    font-weight: 500;
    transition: 0.2s;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    color: #334155;
}

    .btn-login:hover {
        background: #f1f5f9;
        border-color: #2563eb;
        color: #2563eb;
    }

.login-mobile {
    display: none;
    margin-left: 12px;
}

    .login-mobile .btn-login {
        padding: 6px 18px;
        font-size: 0.85rem;
    }

.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    user-select: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ========== هیرو یکسان برای تمام صفحات ========== */
.page-hero {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
    border-radius: 0 0 48px 48px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

    .page-hero::before {
        content: "📊";
        position: absolute;
        font-size: 180px;
        opacity: 0.08;
        bottom: -40px;
        right: -40px;
        pointer-events: none;
    }

    .page-hero h1 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 20px;
        animation: fadeUp 0.6s ease;
    }

    .page-hero p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto;
        opacity: 0.95;
        animation: fadeUp 0.8s ease;
    }

    .page-hero .update-badge {
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(8px);
        display: inline-block;
        padding: 8px 20px;
        border-radius: 40px;
        font-size: 0.85rem;
        margin-top: 24px;
    }

/* حذف کلاس‌های جداگانه هیروها */
.about-hero, .privacy-hero, .faq-hero, .terms-hero, .contact-hero {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

/* ========== فوتر مشترک تمام صفحات ========== */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #1e293b;
    margin-top: 32px;
}

/* ========== استایل‌های صفحه نخست (Home) ========== */
.hero-banner {
    position: relative;
    width: 100%;
    min-height: 85vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.55)), url('../images/system/index-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /*border-radius: 0 0 48px 48px;*/
    margin-bottom: 20px;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
    color: white;
}

    .hero-content h1 {
        font-size: 3.4rem;
        font-weight: 800;
        margin-bottom: 20px;
        animation: textGlow 2s infinite alternate;
    }

.animated-text {
    font-size: 1.5rem;
    margin-bottom: 32px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    display: inline-block;
    padding: 8px 24px;
    border-radius: 60px;
    font-weight: 500;
    padding-bottom: 0px !important;
}

a {
    text-decoration: none;
}

.typewriter {
    font-size: 1.3rem;
    direction: ltr;
    display: inline-block;
    border-left: 2px solid white;
    padding-right: 8px;
    white-space: nowrap;
    overflow: hidden;
    animation: blinkCursor 0.8s step-end infinite;
}

.btn-hero {
    background: #2563eb;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 20px;
    transition: 0.25s;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(37,99,235,0.3);
}

    .btn-hero:hover {
        background: #1e40af;
        transform: scale(1.03);
    }

/* بخش امکانات */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-desc {
    text-align: center;
    color: #475569;
    max-width: 680px;
    margin: 0 auto 48px auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background: white;
    border-radius: 32px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef2f8;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.6s forwards;
    animation-delay: calc(0.1s * var(--order, 1));
}

    .feature-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 28px 40px -16px rgba(0, 0, 0, 0.15);
        border-color: #c7daf5;
    }

.feature-icon {
    font-size: 52px;
    margin-bottom: 20px;
    display: inline-block;
    transition: 0.2s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-img {
    width: 100%;
    max-width: 220px;
    border-radius: 24px;
    margin-top: 20px;
    box-shadow: 0 12px 18px -8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

/* بخش آمار */
.stats-section {
    background: linear-gradient(110deg, #0f172a, #1e293b);
    color: white;
    border-radius: 56px;
    margin: 40px 0;
    padding: 56px 20px;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.6rem;
    font-weight: 800;
}

/* اشتراک‌ها */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 32px;
    margin-top: 20px;
}

.pricing-card {
    background: white;
    border-radius: 38px;
    padding: 36px 20px;
    transition: all 0.3s;
    border: 1px solid #eef2f8;
    box-shadow: 0 12px 24px -12px rgba(0,0,0,0.05);
}

    .pricing-card:hover {
        transform: translateY(-8px);
    }

.popular {
    background: linear-gradient(white, #f8faff);
    border-top: 5px solid #2563eb;
}

.price {
    font-size: 2rem;
    font-weight: 800;
}

/* نظرات کاربران */
.testimonials {
    background: #f9fafc;
    border-radius: 48px;
    padding: 48px 32px;
    margin-top: 40px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 32px;
}

.testimonial-card {
    background: white;
    padding: 28px;
    border-radius: 28px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.02);
    transition: 0.2s;
}

    .testimonial-card p {
        font-style: italic;
        margin-bottom: 16px;
    }

/* بخش وبلاگ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.blog-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0,0,0,0.04);
    transition: all 0.3s;
}

    .blog-card:hover {
        transform: translateY(-6px);
    }

.blog-img {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 20px;
}

.contact-mini {
    background: linear-gradient(120deg, #eef2ff, #ffffff);
    border-radius: 48px;
    padding: 48px 32px;
    text-align: center;
    margin-top: 20px;
}

/* ========== استایل‌های صفحه درباره ما (About) ========== */
.story-section {
    padding: 40px 0 60px;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: #0f172a;
}

.story-content p {
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

.story-image {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

    .story-image:hover {
        transform: scale(1.02);
    }

    .story-image img {
        width: 100%;
        height: auto;
        display: block;
    }

.stats-about {
    background: linear-gradient(110deg, #0f172a, #1e293b);
    color: white;
    border-radius: 56px;
    margin: 60px 0;
    padding: 56px 20px;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 60px 0;
}

.mission-card, .vision-card {
    background: white;
    padding: 40px 32px;
    border-radius: 32px;
    text-align: center;
    box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef2f8;
    transition: transform 0.3s;
}

    .mission-card:hover, .vision-card:hover {
        transform: translateY(-8px);
    }

    .mission-card .icon, .vision-card .icon {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .mission-card h3, .vision-card h3 {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }

.values-section {
    margin: 60px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 32px 24px;
    border-radius: 28px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #eef2f8;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.6s forwards;
    animation-delay: calc(0.1s * var(--order, 1));
}

    .value-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
    }

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.team-section {
    margin: 60px 0;
    background: #f8fafc;
    border-radius: 56px;
    padding: 60px 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.team-card {
    text-align: center;
    background: white;
    border-radius: 32px;
    padding: 32px 24px;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

    .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.12);
    }

.team-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 3px;
}

    .team-img img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
    }

.team-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.team-card .position {
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 12px;
}

.team-card .bio {
    color: #64748b;
    font-size: 0.9rem;
}

.cta-about {
    background: linear-gradient(120deg, #2563eb, #7c3aed);
    border-radius: 48px;
    padding: 60px 32px;
    text-align: center;
    color: white;
    margin: 60px 0;
}

    .cta-about h2 {
        font-size: 2rem;
        margin-bottom: 16px;
    }

.btn-cta {
    background: white;
    color: #2563eb;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 24px;
    cursor: pointer;
    transition: 0.2s;
}

    .btn-cta:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

/* ========== استایل‌های صفحه حریم خصوصی (Privacy) ========== */
.privacy-content {
    background: white;
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
    border: 1px solid #eef2f8;
}

.privacy-section {
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.6s forwards;
}

    .privacy-section:nth-child(1) {
        animation-delay: 0.1s;
    }

    .privacy-section:nth-child(2) {
        animation-delay: 0.15s;
    }

    .privacy-section:nth-child(3) {
        animation-delay: 0.2s;
    }

    .privacy-section:nth-child(4) {
        animation-delay: 0.25s;
    }

    .privacy-section:nth-child(5) {
        animation-delay: 0.3s;
    }

    .privacy-section:nth-child(6) {
        animation-delay: 0.35s;
    }

    .privacy-section:nth-child(7) {
        animation-delay: 0.4s;
    }

    .privacy-section:nth-child(8) {
        animation-delay: 0.45s;
    }

    .privacy-section h2 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: #0f172a;
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .privacy-section h2 .icon {
            font-size: 2rem;
        }

    .privacy-section p {
        color: #475569;
        line-height: 1.8;
        margin-bottom: 16px;
    }

    .privacy-section ul {
        list-style: none;
        padding-right: 20px;
    }

        .privacy-section ul li {
            color: #475569;
            line-height: 1.8;
            margin-bottom: 12px;
            position: relative;
            padding-right: 24px;
        }

            .privacy-section ul li:before {
                content: "🔒";
                position: absolute;
                right: 0;
                color: #2563eb;
            }

.highlight-box {
    background: #f0f9ff;
    border-right: 4px solid #2563eb;
    padding: 24px;
    border-radius: 20px;
    margin: 24px 0;
}

.last-updated {
    background: #f8fafc;
    padding: 16px 24px;
    border-radius: 16px;
    text-align: center;
    margin-top: 40px;
    color: #64748b;
    font-size: 0.9rem;
}

/* ========== استایل‌های صفحه سوالات متداول (FAQ) ========== */
.search-box {
    max-width: 600px;
    margin: -30px auto 40px;
    position: relative;
    z-index: 10;
}

.search-input {
    width: 100%;
    padding: 18px 24px;
    font-size: 1rem;
    border: 2px solid #eef2f8;
    border-radius: 60px;
    background: white;
    box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.1);
    font-family: 'Vazirmatn', sans-serif;
    transition: all 0.3s;
}

    .search-input:focus {
        outline: none;
        border-color: #2563eb;
        box-shadow: 0 12px 28px -8px rgba(37, 99, 235, 0.2);
    }

.categories {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.category-btn {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    color: #475569;
    font-family: 'Vazirmatn', sans-serif;
}

    .category-btn:hover {
        border-color: #2563eb;
        color: #2563eb;
    }

    .category-btn.active {
        background: #2563eb;
        color: white;
        border-color: #2563eb;
    }

.faq-section {
    margin-bottom: 60px;
}

.faq-category {
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.6s forwards;
}

    .faq-category h2 {
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 24px;
        color: #0f172a;
        padding-right: 16px;
        border-right: 4px solid #2563eb;
    }

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 16px;
    border: 1px solid #eef2f8;
    transition: all 0.3s;
    overflow: hidden;
}

    .faq-item:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    }

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.05rem;
    color: #1e293b;
    transition: background 0.2s;
}

    .faq-question:hover {
        background: #f8fafc;
    }

    .faq-question .icon {
        font-size: 1.3rem;
        transition: transform 0.3s;
        color: #2563eb;
    }

.faq-item.active .faq-question .icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #475569;
    line-height: 1.7;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px 24px;
    border-top-color: #eef2f8;
}

.faq-answer p {
    margin-top: 16px;
    text-align: justify;
}

.support-stats {
    background: linear-gradient(110deg, #0f172a, #1e293b);
    color: white;
    border-radius: 56px;
    margin: 60px 0;
    padding: 56px 20px;
}

.quick-question {
    background: linear-gradient(120deg, #eef2ff, #ffffff);
    border-radius: 48px;
    padding: 48px 32px;
    text-align: center;
    margin-bottom: 60px;
}

    .quick-question h3 {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }

.quick-form {
    max-width: 500px;
    margin: 32px auto 0;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

    .quick-form input {
        flex: 1;
        padding: 14px 20px;
        border: 1px solid #cbd5e1;
        border-radius: 50px;
        font-family: 'Vazirmatn', sans-serif;
        font-size: 0.95rem;
    }

        .quick-form input:focus {
            outline: none;
            border-color: #2563eb;
        }

.btn-submit {
    background: #2563eb;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

    .btn-submit:hover {
        background: #1d4ed8;
        transform: scale(1.02);
    }

/* ========== استایل‌های صفحه قوانین (Terms) ========== */
.terms-content {
    background: white;
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
    border: 1px solid #eef2f8;
}

.terms-section {
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.6s forwards;
}

    .terms-section:nth-child(1) {
        animation-delay: 0.05s;
    }

    .terms-section:nth-child(2) {
        animation-delay: 0.1s;
    }

    .terms-section:nth-child(3) {
        animation-delay: 0.15s;
    }

    .terms-section:nth-child(4) {
        animation-delay: 0.2s;
    }

    .terms-section:nth-child(5) {
        animation-delay: 0.25s;
    }

    .terms-section:nth-child(6) {
        animation-delay: 0.3s;
    }

    .terms-section:nth-child(7) {
        animation-delay: 0.35s;
    }

    .terms-section:nth-child(8) {
        animation-delay: 0.4s;
    }

    .terms-section:nth-child(9) {
        animation-delay: 0.45s;
    }

    .terms-section:nth-child(10) {
        animation-delay: 0.5s;
    }

    .terms-section h2 {
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: #0f172a;
        display: flex;
        align-items: center;
        gap: 12px;
        padding-bottom: 12px;
        border-bottom: 2px solid #eef2f8;
    }

        .terms-section h2 .icon {
            font-size: 1.8rem;
        }

    .terms-section p {
        color: #475569;
        line-height: 1.8;
        margin-bottom: 16px;
        text-align: justify;
    }

    .terms-section ul {
        list-style: none;
        padding-right: 20px;
        text-align: justify;
    }

        .terms-section ul li {
            color: #475569;
            line-height: 1.8;
            margin-bottom: 12px;
            position: relative;
            padding-right: 24px;
        }

            .terms-section ul li:before {
                content: "⚖️";
                position: absolute;
                right: 0;
                color: #2563eb;
                font-size: 0.9rem;
            }

.warning-box {
    background: linear-gradient(135deg, #fef3c7, #fffbeb);
    border-right: 4px solid #f59e0b;
    padding: 24px;
    border-radius: 20px;
    margin: 24px 0;
}

    .warning-box strong {
        color: #d97706;
    }

.terms-footer {
    background: #f8fafc;
    padding: 24px;
    border-radius: 20px;
    text-align: center;
    margin-top: 32px;
}

.agree-section {
    background: linear-gradient(120deg, #eef2ff, #ffffff);
    border-radius: 48px;
    padding: 48px 32px;
    text-align: center;
    margin-bottom: 60px;
}

    .agree-section h3 {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }

.btn-agree {
    background: #2563eb;
    color: white;
    border: none;
    padding: 14px 48px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 24px;
    cursor: pointer;
    transition: all 0.2s;
}

    .btn-agree:hover {
        background: #1d4ed8;
        transform: scale(1.02);
        box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    }

/* ========== استایل‌های صفحه تماس با ما (Contact) ========== */
.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: white;
    padding: 32px 24px;
    border-radius: 28px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #eef2f8;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

    .info-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12);
    }

.info-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: #0f172a;
}

.info-card p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 8px;
}

.info-card a {
    color: #2563eb;
    text-decoration: none;
    transition: 0.2s;
}

    .info-card a:hover {
        text-decoration: underline;
    }

.contact-form-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.form-container {
    background: white;
    padding: 36px;
    border-radius: 32px;
    box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef2f8;
}

    .form-container h3 {
        font-size: 1.6rem;
        margin-bottom: 8px;
        color: #0f172a;
    }

    .form-container p {
        color: #64748b;
        margin-bottom: 28px;
    }

.form-group {
    margin-bottom: 20px;
}

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 14px 18px;
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        font-family: 'Vazirmatn', sans-serif;
        font-size: 0.95rem;
        transition: all 0.2s;
        background: #fefefe;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2563eb;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

.success-message {
    background: #10b981;
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
    display: none;
    animation: fadeIn 0.3s ease;
}

.quick-contact {
    background: linear-gradient(120deg, #eef2ff, #ffffff);
    border-radius: 48px;
    padding: 48px 32px;
    text-align: center;
    margin-bottom: 60px;
}

    .quick-contact h3 {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }

.quick-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.quick-btn {
    background: white;
    border: 1px solid #cbd5e1;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Vazirmatn', sans-serif;
}

    .quick-btn:hover {
        background: #2563eb;
        color: white;
        border-color: #2563eb;
        transform: translateY(-2px);
    }

.social-section {
    text-align: center;
    margin-bottom: 60px;
}

    .social-section h3 {
        font-size: 1.6rem;
        margin-bottom: 28px;
    }

.social-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.social-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    color: #475569;
    transition: all 0.3s;
    border: 1px solid #eef2f8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

    .social-icon:hover {
        transform: translateY(-5px) scale(1.1);
        background: #2563eb;
        color: white;
        border-color: #2563eb;
    }

/* ========== کلاس‌های Margin و Padding ========== */
.m-0 {
    margin: 0 !important;
}

.m-5 {
    margin: 5px !important;
}

.m-10 {
    margin: 10px !important;
}

.m-15 {
    margin: 15px !important;
}

.m-20 {
    margin: 20px !important;
}

.m-25 {
    margin: 25px !important;
}

.m-30 {
    margin: 30px !important;
}

.m-35 {
    margin: 35px !important;
}

.m-40 {
    margin: 40px !important;
}

.m-45 {
    margin: 45px !important;
}

.m-50 {
    margin: 50px !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-5 {
    margin-top: 5px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-25 {
    margin-top: 25px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-35 {
    margin-top: 35px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-45 {
    margin-top: 45px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.mt-70 {
    margin-top: 70px !important;
}

.mt-80 {
    margin-top: 80px !important;
}

.mt-100 {
    margin-top: 100px !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-25 {
    margin-bottom: 25px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-35 {
    margin-bottom: 35px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-45 {
    margin-bottom: 45px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.mr-0 {
    margin-right: 0 !important;
}

.mr-5 {
    margin-right: 5px !important;
}

.mr-10 {
    margin-right: 10px !important;
}

.mr-15 {
    margin-right: 15px !important;
}

.mr-20 {
    margin-right: 20px !important;
}

.mr-25 {
    margin-right: 25px !important;
}

.mr-30 {
    margin-right: 30px !important;
}

.mr-35 {
    margin-right: 35px !important;
}

.mr-40 {
    margin-right: 40px !important;
}

.mr-45 {
    margin-right: 45px !important;
}

.mr-50 {
    margin-right: 50px !important;
}

.ml-0 {
    margin-left: 0 !important;
}

.ml-5 {
    margin-left: 5px !important;
}

.ml-10 {
    margin-left: 10px !important;
}

.ml-15 {
    margin-left: 15px !important;
}

.ml-20 {
    margin-left: 20px !important;
}

.ml-25 {
    margin-left: 25px !important;
}

.ml-30 {
    margin-left: 30px !important;
}

.ml-35 {
    margin-left: 35px !important;
}

.ml-40 {
    margin-left: 40px !important;
}

.ml-45 {
    margin-left: 45px !important;
}

.ml-50 {
    margin-left: 50px !important;
}

.mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mx-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
}

.mx-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
}

.mx-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
}

.mx-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
}

.mx-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
}

.mx-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.my-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

.my-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.my-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

.my-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.my-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
}

.my-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}

.my-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
}

.my-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

.my-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
}

.p-0 {
    padding: 0 !important;
}

.p-5 {
    padding: 5px !important;
}

.p-10 {
    padding: 10px !important;
}

.p-15 {
    padding: 15px !important;
}

.p-20 {
    padding: 20px !important;
}

.p-25 {
    padding: 25px !important;
}

.p-30 {
    padding: 30px !important;
}

.p-35 {
    padding: 35px !important;
}

.p-40 {
    padding: 40px !important;
}

.p-45 {
    padding: 45px !important;
}

.p-50 {
    padding: 50px !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-5 {
    padding-top: 5px !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pt-15 {
    padding-top: 15px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pt-25 {
    padding-top: 25px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pt-35 {
    padding-top: 35px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.pt-45 {
    padding-top: 45px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.pt-60 {
    padding-top: 60px !important;
}

.pt-70 {
    padding-top: 70px !important;
}

.pt-80 {
    padding-top: 80px !important;
}

.pt-100 {
    padding-top: 100px !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-5 {
    padding-bottom: 5px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pb-15 {
    padding-bottom: 15px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pb-25 {
    padding-bottom: 25px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pb-35 {
    padding-bottom: 35px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pb-45 {
    padding-bottom: 45px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pb-70 {
    padding-bottom: 70px !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}

.pr-0 {
    padding-right: 0 !important;
}

.pr-5 {
    padding-right: 5px !important;
}

.pr-10 {
    padding-right: 10px !important;
}

.pr-15 {
    padding-right: 15px !important;
}

.pr-20 {
    padding-right: 20px !important;
}

.pr-25 {
    padding-right: 25px !important;
}

.pr-30 {
    padding-right: 30px !important;
}

.pr-35 {
    padding-right: 35px !important;
}

.pr-40 {
    padding-right: 40px !important;
}

.pr-45 {
    padding-right: 45px !important;
}

.pr-50 {
    padding-right: 50px !important;
}

.pl-0 {
    padding-left: 0 !important;
}

.pl-5 {
    padding-left: 5px !important;
}

.pl-10 {
    padding-left: 10px !important;
}

.pl-15 {
    padding-left: 15px !important;
}

.pl-20 {
    padding-left: 20px !important;
}

.pl-25 {
    padding-left: 25px !important;
}

.pl-30 {
    padding-left: 30px !important;
}

.pl-35 {
    padding-left: 35px !important;
}

.pl-40 {
    padding-left: 40px !important;
}

.pl-45 {
    padding-left: 45px !important;
}

.pl-50 {
    padding-left: 50px !important;
}

.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.px-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
}

.px-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.px-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.px-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.px-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
}

.px-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
}

.px-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
}

.px-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.px-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.py-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.py-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.py-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.py-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.py-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}

.py-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.py-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
}

.py-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.py-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

/* ========== کلاس‌های کمکی ========== */
.w-100 {
    width: 100% !important;
}

.w-75 {
    width: 75% !important;
}

.w-50 {
    width: 50% !important;
}

.w-25 {
    width: 25% !important;
}

.w-auto {
    width: auto !important;
}

.h-100 {
    height: 100% !important;
}

.h-75 {
    height: 75% !important;
}

.h-50 {
    height: 50% !important;
}

.h-25 {
    height: 25% !important;
}

.h-auto {
    height: auto !important;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-flex {
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.text-justify {
    text-align: justify !important;
}

.font-weight-light {
    font-weight: 300 !important;
}

.font-weight-normal {
    font-weight: 400 !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.font-weight-bolder {
    font-weight: 900 !important;
}

.fs-12 {
    font-size: 12px !important;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-20 {
    font-size: 20px !important;
}

.fs-24 {
    font-size: 24px !important;
}

.fs-28 {
    font-size: 28px !important;
}

.fs-32 {
    font-size: 32px !important;
}

.text-white {
    color: #ffffff !important;
}

.text-black {
    color: #000000 !important;
}

.text-primary {
    color: #2563eb !important;
}

.text-success {
    color: #10b981 !important;
}

.text-warning {
    color: #f59e0b !important;
}

.text-danger {
    color: #ef4444 !important;
}

.text-muted {
    color: #6c757d !important;
}

.bg-white {
    background-color: #ffffff !important;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.bg-dark {
    background-color: #1e293b !important;
}

.bg-primary {
    background-color: #2563eb !important;
}

.bg-success {
    background-color: #10b981 !important;
}

.bg-warning {
    background-color: #f59e0b !important;
}

.bg-danger {
    background-color: #ef4444 !important;
}

.border {
    border: 1px solid #e2e8f0 !important;
}

.border-0 {
    border: 0 !important;
}

.border-top {
    border-top: 1px solid #e2e8f0 !important;
}

.border-bottom {
    border-bottom: 1px solid #e2e8f0 !important;
}

.border-right {
    border-right: 1px solid #e2e8f0 !important;
}

.border-left {
    border-left: 1px solid #e2e8f0 !important;
}

.rounded {
    border-radius: 0.375rem !important;
}

.rounded-lg {
    border-radius: 0.5rem !important;
}

.rounded-xl {
    border-radius: 1rem !important;
}

.rounded-2xl {
    border-radius: 1.5rem !important;
}

.rounded-3xl {
    border-radius: 2rem !important;
}

.rounded-full {
    border-radius: 9999px !important;
}

.rounded-none {
    border-radius: 0 !important;
}

.position-static {
    position: static !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.position-fixed {
    position: fixed !important;
}

.position-sticky {
    position: sticky !important;
}

.gap-0 {
    gap: 0 !important;
}

.gap-5 {
    gap: 5px !important;
}

.gap-10 {
    gap: 10px !important;
}

.gap-15 {
    gap: 15px !important;
}

.gap-20 {
    gap: 20px !important;
}

.gap-25 {
    gap: 25px !important;
}

.gap-30 {
    gap: 30px !important;
}

/* ========== استایل مخصوص موبایل برای لینک فعال ========== */
@media (max-width: 800px) {
    .nav-links li a.active {
        background: linear-gradient(135deg, #2563eb15, #7c3aed15);
        padding: 8px 15px;
        border-radius: 12px;
    }

        .nav-links li a.active::after {
            display: none;
        }

    .footer-col li i{
        display:none;
    }

    .footer-col{
        text-align:center;
    }
}

@media (max-width: 800px) {
    .nav-links li a.active {
        background: linear-gradient(135deg, #2563eb15, #7c3aed15);
        padding: 8px 15px;
        border-radius: 12px;
    }

        .nav-links li a.active::after {
            display: none;
        }

    /* فوتر - اصلاح مشکل وسط چین */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-col {
        width: 100%;
        text-align: center !important;
    }

        .footer-col p {
            display: block !important;
            text-align: center !important;
        }

        .footer-col i {
            display: none !important;
        }

        .footer-col a {
            display: inline-block;
        }

        .footer-col br {
            display: none;
        }
}


/* استایل badgeها در فوتر */
.footer-col > div[style*="display: flex"] {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: flex-start;
}

    .footer-col > div[style*="display: flex"] span {
        background: rgba(255, 255, 255, 0.1);
        padding: 5px 10px;
        border-radius: 8px;
        font-size: 11px;
        color: #cbd5e1;
    }

/* ریسپانسیو - وسط چین در موبایل */
@media (max-width: 800px) {
    .footer-col > div[style*="display: flex"] {
        justify-content: center !important;
    }

        .footer-col > div[style*="display: flex"] span {
            font-size: 10px;
            padding: 4px 8px;
        }
}

/* ========== ریسپانسیو صفحه تماس با ما ========== */
@media (max-width: 900px) {
    .contact-form-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info-side {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .form-container {
        padding: 24px;
    }

    .quick-contact {
        padding: 32px 20px;
    }

        .quick-contact h3 {
            font-size: 1.4rem;
        }

    .quick-buttons {
        gap: 12px;
    }

    .quick-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .social-icons {
        gap: 16px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 550px) {
    .contact-info-side {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ========== ریسپانسیو عمومی ========== */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .animated-text {
        font-size: 1.2rem;
    }

    .typewriter {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 800px) {
    .login-desktop {
        display: none;
    }

    .login-mobile {
        display: inline-block;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        background: white;
        padding: 24px 20px;
        border-radius: 28px;
        margin-top: 16px;
        gap: 18px;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 99;
    }

        .nav-links.show {
            display: flex;
        }

    .menu-icon {
        display: block;
    }

    .nav-container {
        position: relative;
    }

    .header-actions {
        display: flex;
        align-items: center;
    }

    .hero-banner {
        min-height: 60vh;
        background-attachment: scroll;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .animated-text {
        font-size: 0.95rem;
        padding: 6px 16px;
    }

    .typewriter {
        font-size: 0.9rem;
        white-space: normal;
        border-left: none;
        animation: none;
        display: inline-block;
    }

    .btn-hero {
        padding: 10px 28px;
        font-size: 0.9rem;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-desc {
        font-size: 0.9rem;
        padding: 0 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .stats-grid {
        justify-content: center;
        gap: 24px;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }

    .stat-item p {
        font-size: 0.85rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .testimonials {
        padding: 32px 20px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .page-hero {
        padding: 50px 0;
    }

        .page-hero p {
            font-size: 1rem;
            padding: 0 16px;
        }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .story-content h2 {
        font-size: 1.6rem;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .team-section {
        padding: 40px 20px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .privacy-content {
        padding: 24px;
    }

    .privacy-section h2 {
        font-size: 1.3rem;
    }

    .search-box {
        margin: -20px auto 30px;
        padding: 0 16px;
    }

    .search-input {
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    .categories {
        gap: 10px;
        padding: 0 16px;
    }

    .category-btn {
        padding: 6px 16px;
        font-size: 0.8rem;
    }

    .faq-category h2 {
        font-size: 1.3rem;
    }

    .faq-question {
        padding: 14px 18px;
        font-size: 0.9rem;
    }

    .quick-question {
        padding: 32px 20px;
    }

        .quick-question h3 {
            font-size: 1.4rem;
        }

    .quick-form {
        flex-direction: column;
        gap: 12px;
        padding: 0 16px;
    }

    .terms-content {
        padding: 24px;
    }

    .terms-section h2 {
        font-size: 1.3rem;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .info-card {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.3rem;
    }

    .btn-login {
        padding: 4px 12px;
        font-size: 0.7rem;
    }

    .hero-banner {
        min-height: 50vh;
    }

    .hero-content h1 {
        font-size: 1.4rem;
    }

    .animated-text {
        font-size: 0.8rem;
        padding: 4px 12px;
    }

    .btn-hero {
        padding: 8px 20px;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .page-hero h1 {
        font-size: 1.6rem;
    }

    .contact-hero h1 {
        font-size: 1.6rem;
    }

    .info-card h3 {
        font-size: 1.2rem;
    }

    .info-icon {
        font-size: 36px;
    }

    .form-container h3 {
        font-size: 1.3rem;
    }

    .quick-btn {
        width: 100%;
        justify-content: center;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}


/* استایل برای صفحاتی که هنوز کلاس page-hero ندارند */
.terms-hero,
.about-hero,
.privacy-hero,
.faq-hero,
.contact-hero {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
    border-radius: 0 0 48px 48px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.terms-hero::before,
.about-hero::before,
.privacy-hero::before,
.faq-hero::before,
.contact-hero::before {
    content: "📊";
    position: absolute;
    font-size: 180px;
    opacity: 0.08;
    bottom: -40px;
    right: -40px;
    pointer-events: none;
}

.terms-hero h1,
.about-hero h1,
.privacy-hero h1,
.faq-hero h1,
.contact-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeUp 0.6s ease;
}

.terms-hero p,
.about-hero p,
.privacy-hero p,
.faq-hero p,
.contact-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    animation: fadeUp 0.8s ease;
}

.terms-hero .update-badge,
.about-hero .update-badge,
.privacy-hero .update-badge,
.faq-hero .update-badge,
.contact-hero .update-badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.85rem;
    margin-top: 24px;
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .terms-hero,
    .about-hero,
    .privacy-hero,
    .faq-hero,
    .contact-hero {
        padding: 50px 0;
    }
    
    .terms-hero h1,
    .about-hero h1,
    .privacy-hero h1,
    .faq-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .terms-hero p,
    .about-hero p,
    .privacy-hero p,
    .faq-hero p,
    .contact-hero p {
        font-size: 1rem;
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .terms-hero h1,
    .about-hero h1,
    .privacy-hero h1,
    .faq-hero h1,
    .contact-hero h1 {
        font-size: 1.6rem;
    }
}

.terms-hero,
.about-hero,
.privacy-hero,
.faq-hero,
.contact-hero,
.page-hero {
    background: #0f172a;
    padding: 80px 0;
    text-align: center;
    color: white;
    border-radius: 0 0 48px 48px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

    /* آیکون‌های جداگانه برای هر صفحه */
    .terms-hero::before {
        content: "⚖️";
    }

    .about-hero::before {
        content: "👥";
    }

    .privacy-hero::before {
        content: "🔒";
    }

    .faq-hero::before {
        content: "❓";
    }

    .contact-hero::before {
        content: "📞";
    }

    .page-hero::before {
        position: absolute;
        font-size: 180px;
        opacity: 0.06;
        bottom: -40px;
        right: -40px;
        pointer-events: none;
    }

    /* تایتل و توضیحات */
    .terms-hero h1,
    .about-hero h1,
    .privacy-hero h1,
    .faq-hero h1,
    .contact-hero h1,
    .page-hero h1 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 20px;
        animation: fadeUp 0.6s ease;
    }

    .terms-hero p,
    .about-hero p,
    .privacy-hero p,
    .faq-hero p,
    .contact-hero p,
    .page-hero p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto;
        opacity: 0.9;
        animation: fadeUp 0.8s ease;
    }

    /* بدج تاریخ به‌روزرسانی */
    .terms-hero .update-badge,
    .about-hero .update-badge,
    .privacy-hero .update-badge,
    .faq-hero .update-badge,
    .contact-hero .update-badge,
    .page-hero .update-badge {
        background: rgba(255,255,255,0.08);
        backdrop-filter: blur(8px);
        display: inline-block;
        padding: 8px 20px;
        border-radius: 40px;
        font-size: 0.85rem;
        margin-top: 24px;
    }



    /* فونت پویا که خودکار کوچک می‌شود */
    .contact-hero h1,
    .terms-hero h1,
    .about-hero h1,
    .privacy-hero h1,
    .faq-hero h1,
    .page-hero h1 {
        font-size: clamp(1.4rem, 5vw, 3rem);
        font-weight: 800;
        margin-bottom: 20px;
        animation: fadeUp 0.6s ease;
    }

    .contact-hero p,
    .terms-hero p,
    .about-hero p,
    .privacy-hero p,
    .faq-hero p,
    .page-hero p {
        font-size: clamp(0.85rem, 3vw, 1.2rem);
        max-width: 700px;
        margin: 0 auto;
        opacity: 0.95;
        animation: fadeUp 0.8s ease;
    }



.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 20px;
}

/* موبایل */
@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}



/* ========================================
   بخش اشتراک‌ها (Pricing)
   ======================================== */

.pricing-section {
    padding: 80px 0;
    background: #fefefe;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1e293b;
}

.section-desc {
    text-align: center;
    color: #475569;
    max-width: 680px;
    margin: 0 auto 48px auto;
    font-size: 1rem;
}

/* گرید اصلی */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}

/* کارت اشتراک */
.pricing-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 32px 24px;
    transition: all 0.3s ease;
    border: 1px solid #eef2f8;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .pricing-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
        border-color: #cbd5e1;
    }

    /* کارت محبوب */
    .pricing-card.popular {
        border-top: 5px solid #2563eb;
        background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
        transform: scale(1.02);
    }

        .pricing-card.popular:hover {
            transform: translateY(-8px) scale(1.02);
        }

    /* کارت طلایی */
    .pricing-card.gold {
        border: 1px solid rgba(245, 158, 11, 0.3);
        background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%);
    }

/* نشان‌ها */
.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

    .pricing-badge.free {
        background: #10b981;
    }

    .pricing-badge.popular-badge {
        background: #2563eb;
    }

    .pricing-badge.business {
        background: #7c3aed;
    }

    .pricing-badge.gold-badge {
        background: linear-gradient(135deg, #f59e0b, #eab308);
    }

/* نام طرح */
.plan-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0f172a;
    text-align: center;
}

/* قیمت */
.price {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    color: #0f172a;
    margin-bottom: 20px;
}

.price-period {
    font-size: 0.85rem;
    font-weight: 400;
    color: #64748b;
}

/* ویژگی‌ها */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    flex: 1;
}

    .plan-features li {
        padding: 10px 0;
        color: #475569;
        font-size: 0.9rem;
        border-bottom: 1px solid #f1f5f9;
        text-align: center;
    }

        .plan-features li:last-child {
            border-bottom: none;
        }

/* دکمه‌ها */
.btn-plan {
    width: 100%;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    border: none;
    font-family: 'Vazirmatn', sans-serif;
}

.btn-free {
    background: transparent;
    border: 1px solid #10b981;
    color: #10b981;
}

    .btn-free:hover {
        background: #10b981;
        color: white;
        transform: translateY(-2px);
    }

.btn-primary {
    background: #2563eb;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

    .btn-primary:hover {
        background: #1d4ed8;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
    }

.btn-secondary {
    background: transparent;
    border: 1px solid #7c3aed;
    color: #7c3aed;
}

    .btn-secondary:hover {
        background: #7c3aed;
        color: white;
        transform: translateY(-2px);
    }

.btn-gold {
    background: linear-gradient(135deg, #f59e0b, #eab308);
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

    .btn-gold:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
    }

/* ========================================
   ریسپانسیو اشتراک‌ها
   ======================================== */

/* لپ‌تاپ (حداکثر 1200px) */
@media (max-width: 1200px) {
    .pricing-grid {
        gap: 24px;
    }

    .price {
        font-size: 1.8rem;
    }

    .plan-name {
        font-size: 1.4rem;
    }
}

/* تبلت (حداکثر 992px) */
@media (max-width: 992px) {
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .price {
        font-size: 1.6rem;
    }
}

/* موبایل بزرگ (حداکثر 768px) */
@media (max-width: 768px) {
    .pricing-section {
        padding: 50px 0;
    }

    .pricing-grid {
        gap: 20px;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .plan-name {
        font-size: 1.3rem;
    }

    .price {
        font-size: 1.5rem;
    }

    .plan-features li {
        font-size: 0.85rem;
        padding: 8px 0;
    }
}

/* موبایل (حداکثر 576px) */
@media (max-width: 576px) {
    .pricing-section {
        padding: 40px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-desc {
        font-size: 0.85rem;
        padding: 0 16px;
        margin-bottom: 32px;
    }

    .pricing-card {
        max-width: 100%;
        padding: 24px 20px;
    }

        .pricing-card.popular {
            transform: scale(1);
        }

            .pricing-card.popular:hover {
                transform: translateY(-8px);
            }

    .plan-name {
        font-size: 1.2rem;
    }

    .price {
        font-size: 1.4rem;
    }

    .price-period {
        font-size: 0.75rem;
    }

    .plan-features li {
        font-size: 0.8rem;
        padding: 8px 0;
    }

    .pricing-badge {
        top: -10px;
        right: 16px;
        padding: 4px 12px;
        font-size: 0.7rem;
    }
}

/* موبایل خیلی کوچک (حداکثر 380px) */
@media (max-width: 380px) {
    .pricing-card {
        padding: 20px 16px;
    }

    .plan-name {
        font-size: 1.1rem;
    }

    .price {
        font-size: 1.2rem;
    }

    .plan-features li {
        font-size: 0.75rem;
    }

    .btn-plan {
        padding: 12px 16px;
        font-size: 0.8rem;
    }
}

.contact-inline{
    display:inline-block;
    width:49%;
}

.contact-capcha-code{
    margin-top:-10px;
}

.contact-capcha {
    position: relative;
    top: 32px;
    margin-top: -32px;
}


@media (max-width: 1100px) {
  
    .contact-capcha {
        top: 25px;
    }
}
@media (max-width: 1000px) {

    .contact-capcha {
        top: 20px;
    }
}
@media (max-width: 900px) {

    .contact-capcha {
        top: 32px;
    }
}


@media (max-width: 767px) {
    .pricing-wrapper {
        overflow-x: auto;
    }
    .contact-inline {
        display: block;
        width: 100%;
    }

    .contact-capcha {
        position: initial;
        top: 25px;
        margin-top:25px;
    }
}

.message-counter {
    text-align: left;
    color: #8f8787;
}


