    .navidan-hero {
        padding: 40px 20px; /* فاصله از طرفین */
        min-height: 50vh; /* ارتفاع کمتر */
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    .glass-hero-card {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 30px;
        padding: 50px;
        max-width: 1500px;
        width: 95%;
        text-align: center;
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    }

    .badge {
        display: inline-block;
        margin-bottom: 16px;
        padding: 10px 18px;
        background: rgba(146, 42, 142, 0.1); /* کمی رنگ بنفش ملایم */
        border: 1px solid rgba(146, 42, 142, 0.2);
        color: #922A8E; /* رنگ اصلی بنفش */
        font-size: 0.9rem;
        font-weight: 600;
        border-radius: 999px;
        letter-spacing: 0.5px;
    }

    h1 {
        font-size: clamp(2rem, 5vw, 3rem); /* ریسپانسیو بودن فونت */
        margin-bottom: 20px;
        color: white;
    }

    h1 span {
        color: #3779EA; /* رنگ آبی برای تاکید */
    }

    p {
        color: rgba(255, 255, 255, 0.6);
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* افکت درخشش پس‌زمینه */
    .bg-glow {
        position: absolute;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, #9C3AAC 0%, transparent 70%);
        filter: blur(120px);
        opacity: 0.2;
        z-index: 0;
    }

    /* تنظیمات موبایل */
    @media (max-width: 768px) {
        .glass-hero-card {
            padding: 30px 20px;
            border-radius: 20px;
        }
    }
        body { background-color: #060606; color: white; font-family: sans-serif; margin: 0; }

    /* استایل بخش ویژگی‌ها */
    .features-section {
        padding: 60px 20px;
        background: rgba(255, 255, 255, 0.02);
    }
    .features-container {
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 30px;
    }
    .feature-item {
        text-align: center;
        flex: 1;
        min-width: 200px;
    }
    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
        filter: drop-shadow(0 0 10px rgba(55, 121, 234, 0.5));
    }
    .feature-item h4 { margin-bottom: 10px; color: #fff; }
    .feature-item p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); }

    /* استایل بخش ویژگی‌ها (بدون تغییر) */
    .features-section {
        padding: 60px 20px;
        background: rgba(255, 255, 255, 0.02);
    }
    .features-container {
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 30px;
    }
    .feature-item {
        text-align: center;
        flex: 1;
        min-width: 200px;
    }
    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
        filter: drop-shadow(0 0 10px rgba(55, 121, 234, 0.5));
    }
    .feature-item h4 { margin-bottom: 10px; color: #fff; }
    .feature-item p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); }

    /* استایل بخش جدید خدمات (لیست عمودی) */
    .services-section-list {
        padding: 100px 20px;
        max-width: 1400px; /* عرض کمتر برای لیست */
        margin: 0 auto;
    }
    .section-title {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 50px;
        background: linear-gradient(90deg, #fff, #9C3AAC);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .services-list-container {
        display: flex;
        flex-direction: column; /* چیدمان عمودی */
        gap: 40px; /* فاصله بین آیتم‌ها */
    }

    .service-list-item {
        display: flex;
        align-items: center;
        gap: 25px; /* فاصله بین آیکون و متن */
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 25px;
        padding: 30px;
        transition: 0.4s ease;
    }
    .gold{
        background: #3779eac9;
    }
    .service-list-item:hover {
        transform: translateY(-10px);
        border-color: #3779EA;
        box-shadow: 0 15px 35px rgba(55, 121, 234, 0.2);
    }
    .service-icon {
        font-size: 3rem;
        flex-shrink: 0; /* جلوگیری از کوچک شدن آیکون */
    }
    .service-text {
        flex-grow: 1; /* متن فضا را پر کند */
    }
    .service-text h3 { margin-bottom: 10px; font-size: 1.6rem; color: white; }
    .service-text p { color: rgba(255, 255, 255, 0.6); line-height: 1.6; }

    /* ریسپانسیو */
    @media (max-width: 768px) {
        .features-container { flex-direction: column; align-items: center; }
        .section-title { font-size: 2rem; }
        .service-list-item {
            flex-direction: column; /* در موبایل، آیکون و متن روی هم */
            text-align: center;
            gap: 15px;
        }
        .service-icon { margin-bottom: 10px; }
        .service-text h3 { font-size: 1.3rem; }
    }
    .trust-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 12px;
}

.section-header p {
    color: rgba(255,255,255,0.65);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.stat-item {
    text-align: center;
    padding: 28px 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
}

.stat-item h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 8px;
}

.stat-item p {
    color: rgba(255,255,255,0.65);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testimonial-card {
    padding: 28px;
    border-radius: 22px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(14px);
    transition: 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: #3779EA;
}

.testimonial-card p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 18px;
}

.testimonial-card h4 {
    color: #fff;
    margin-bottom: 4px;
}

.testimonial-card span {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
}
.cta-glass-section {
    /* پس‌زمینه باید مقداری رنگ داشته باشد تا افکت شیشه بهتر دیده شود */
    /* این را می‌توانید بر اساس رنگ غالب سایتتان تنظیم کنید */
    backdrop-filter: blur(12px);
    padding: 80px 20px;
    text-align: center;
    border-radius: 24px; /* گوشه‌های گردتر برای حس مدرن */
    margin: 50px auto; /* وسط‌چین کردن */
    max-width: 750px; /* عرض بیشتر برای نمایش بهتر */

    position: relative;
    overflow: hidden; /* برای اینکه فیلترها و افکت‌ها درست نمایش داده شوند */
}

.cta-glass-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* افکت شیشه با backdrop-filter */
    /* رنگ پایه برای شیشه */
    border-radius: 24px;
    z-index: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
}

.cta-glass-content {
    position: relative;
    z-index: 2;
    color: #fff; /* متن سفید برای کنتراست */
}

.cta-glass-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 600; /* کمی ضخیم‌تر */
    color:white;
}

.cta-glass-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 600px; /* محدود کردن عرض پاراگراف */
    margin: 0 auto; /* وسط‌چین کردن پاراگراف */
}

.cta-glass-button {
    background: rgba(55, 121, 234, 0.8); /* رنگ اصلی دکمه با کمی شفافیت */
    color: #ffffff;
    padding: 16px 40px;
    font-size: 1.15rem;
    font-weight: bold;
    border: none;
    border-radius: 35px; /* گوشه‌های بسیار گرد */
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(55, 121, 234, 0.4); /* سایه دکمه */
    position: relative; /* برای افکت‌های هاور */
    overflow: hidden; /* برای افکت‌های پس‌زمینه دکمه */
}

.cta-glass-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2); /* افکت براق روی دکمه */
    transition: all 0.4s ease;
    transform: translate(-50%, -50%) scale(0); /* شروع از مرکز و نامرئی */
    border-radius: 35px;
}

.cta-glass-button:hover {
    background: rgba(55, 121, 234, 0.95); /* کمی تیره‌تر در هاور */
    box-shadow: 0 12px 30px rgba(55, 121, 234, 0.6);
}

.cta-glass-button:hover::before {
    transform: translate(-50%, -50%) scale(1); /* افکت براق فعال می‌شود */
}

.cta-glass-button:active {
    transform: translateY(1px); /* کمی فشار داده شدن */
    box-shadow: 0 8px 25px rgba(55, 121, 234, 0.4);
}

/* برای صفحه نمایش‌های کوچک‌تر */
@media (max-width: 768px) {
    .cta-glass-section {
        padding: 60px 20px;
        border-radius: 16px;
    }
    .cta-glass-section::before {
        border-radius: 16px;
    }
    .cta-glass-content h2 {
        font-size: 1.8rem;
    }
    .cta-glass-content p {
        font-size: 1rem;
    }
    .cta-glass-button {
        padding: 14px 30px;
        font-size: 1.05rem;
        border-radius: 25px;
    }
    .cta-glass-button::before {
        border-radius: 25px;
    }
}
