/* =========================================
   NEDEN BİZİ SEÇMELİSİNİZ
   ========================================= */

.why-us {
    background: #fff;
    padding: 64px 0 72px;
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(12, 192, 223, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.why-us::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 191, 99, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.why-us__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    position: relative;
    z-index: 1;
}

/* === HEADER === */
.why-us__header {
    text-align: center;
    margin-bottom: 40px;
}

.why-us__kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    color: var(--color-orange-dark);
    letter-spacing: 1.5px;
    padding: 4px 12px;
    background: rgba(255, 181, 68, 0.12);
    border-radius: 999px;
    margin-bottom: 12px;
}

.why-us__title {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.2;
    margin-bottom: 10px;
}

.why-us__subtitle {
    font-size: 15px;
    color: var(--color-text-muted);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.5;
}

/* === GRID === */
.why-us__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* === KART === */
.why-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 28px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(16, 24, 40, 0.08);
    border-color: transparent;
}

.why-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, transparent 0%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.why-card:hover::after {
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-green) 100%);
    opacity: 1;
}

/* === İKON === */
.why-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: transform 0.3s ease;
}

.why-card:hover .why-card__icon {
    transform: scale(1.08) rotate(-4deg);
}

.why-card__icon--green {
    background: linear-gradient(135deg, #00bf63 0%, #00cc6a 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 191, 99, 0.3);
}

.why-card__icon--orange {
    background: linear-gradient(135deg, #ffb544 0%, #ff9933 100%);
    color: #1c2536;
    box-shadow: 0 8px 20px rgba(255, 181, 68, 0.35);
}

.why-card__icon--cyan {
    background: linear-gradient(135deg, #0cc0df 0%, #0a9fb9 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(12, 192, 223, 0.32);
}

.why-card__icon--purple {
    background: linear-gradient(135deg, #9d6cd0 0%, #6b3aa0 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(107, 58, 160, 0.3);
}

/* === İÇERİK === */
.why-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 10px;
    line-height: 1.3;
}

.why-card p {
    font-size: 13.5px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .why-us__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .why-us { padding: 44px 0 50px; }
    .why-us__header { margin-bottom: 28px; }
    .why-us__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .why-card {
        padding: 22px 20px;
    }
    .why-card__icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        margin-bottom: 14px;
    }
    .why-card__icon svg {
        width: 24px;
        height: 24px;
    }
}
