/* / هدر صفحه چرا من / */
.why-hero {
    background: radial-gradient(circle at top, #4f46e5, #1e1b4b);
}

/* / لایه‌بندی کلی / */

.why-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* / گرید کارت‌ها / */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

/* / کارت‌ها / */
.why-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(56, 189, 248, 0.12));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer {
    background: #111827;
    color: #e5e7eb;
    padding: 40px 20px;
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.contact-item {
    background: #1f2933;
    padding: 18px;
    border-radius: 12px;
}

.footer-copy {
    margin-top: 15px;
    font-size: 13px;
    opacity: 0.7;
}

.why-card h2 {
    position: relative;
    margin-bottom: 8px;
    font-size: 18px;
    color: #111827;
}

.why-card p {
    position: relative;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.8;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.16);
}

.why-card:hover::before {
    opacity: 1;
}

/* / CTA مخصوص این صفحه / */
.why-cta {
    text-align: center;
}

/* / انیمیشن‌ها عمومی (اگر قبلاً نداری، این‌ها رو اضافه کن) / */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.1s forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(24px);
    animation: slideUp 0.9s forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

.delay-4 {
    animation-delay: 0.6s;
}

.delay-5 {
    animation-delay: 0.75s;
}

.glow-in {
    opacity: 0;
    animation: glowIn 1.2s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowIn {
    0% {
        opacity: 0;
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        filter: blur(0);
    }
}