﻿* {
    font-family: Samim FD, sans-serif;
}

body {
    background-color: #f8fafc;
    color: #1e293b;
}

.section-title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2.5rem;
}

    .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #6d28d9, #8b5cf6);
        border-radius: 2px;
    }

.feature-card {
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        border-top-color: #6d28d9;
    }

.hero-gradient {
    background: linear-gradient(135deg, #1e1b4b 0%, #4f46e5 50%, #7c3aed 100%);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.cta-button {
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.4);
    }

.highlight-text {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

/* بهبود نوبار تب‌ها */
.tab-container {
    position: relative;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tab-button {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-bottom: 4px solid transparent;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    white-space: nowrap;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 2px;
    border-radius: 12px 12px 0 0;
    min-width: 180px;
    text-align: center;
}

    .tab-button:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .tab-button.active {
        border-bottom-color: #8b5cf6;
        color: #ffffff;
        font-weight: 700;
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(79, 70, 229, 0.3));
        border-bottom-width: 5px;
        box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
    }

        .tab-button.active:after {
            content: '';
            position: absolute;
            bottom: -4px;
            right: 50%;
            transform: translateX(50%);
            width: 30px;
            height: 3px;
            background: #8b5cf6;
            border-radius: 3px;
        }

.tab-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tab-indicator-text {
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
    margin-bottom: 1rem;
    display: inline-block;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.feature-list li {
    position: relative;
    padding-right: 1.5rem;
    margin-bottom: 0.75rem;
}

    .feature-list li:before {
        content: '✓';
        position: absolute;
        right: 0;
        color: #10b981;
        font-weight: bold;
    }

/* استایل برای لوگوی سینورا */
.sinora-logo {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

/* بهبود رنگ‌بندی بخش‌ها */
.gradient-section-1 {
    background: linear-gradient(135deg, #fdf4ff 0%, #faf5ff 100%);
}

.gradient-section-2 {
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
}

/* بهبود کارت‌ها */
.enhanced-card {
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

    .enhanced-card:hover {
        box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
        transform: translateY(-8px);
    }

