/* ── NEDEN BİZ ───────────────────────── */
.fm-neden-biz {
    padding: 100px 0;
    background: linear-gradient(135deg, #1C1C1C 0%, #2D1A08 50%, #1C1C1C 100%);
    position: relative; overflow: hidden;
}
.fm-neden-biz::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(61,170,42,.12) 0%, transparent 60%);
    pointer-events: none;
}
.fm-neden-biz .fm-container { position: relative; z-index: 1; }

/* Grid */
.fm-ozellik-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Kart */
.fm-ozellik-kart {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--fm-radius); padding: 36px 28px; text-align: center;
    transition: var(--fm-gecis); backdrop-filter: blur(4px);
}
.fm-ozellik-kart:hover {
    background: rgba(61,170,42,.1); border-color: rgba(61,170,42,.35);
    transform: translateY(-6px);
}

/* İkon */
.fm-ozellik-ikon {
    width: 72px; height: 72px; margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(61,170,42,.2), rgba(61,170,42,.05));
    border: 1.5px solid rgba(61,170,42,.3); border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: var(--fm-yesil);
    transition: var(--fm-gecis);
}
.fm-ozellik-kart:hover .fm-ozellik-ikon {
    background: linear-gradient(135deg, rgba(61,170,42,.3), rgba(61,170,42,.1));
    transform: scale(1.1) rotate(-3deg);
}

.fm-ozellik-kart h3 {
    font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 700;
    color: #fff; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .04em;
}
.fm-ozellik-kart p { font-size: .87rem; color: rgba(255,255,255,.58); line-height: 1.7; }

/* Responsive */
@media (max-width: 920px) {
    .fm-ozellik-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .fm-ozellik-grid { grid-template-columns: 1fr; }
    .fm-ozellik-kart { padding: 28px 20px; }
}
