:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-225e47a */.sw-why-section {
        font-family: 'Poppins', sans-serif;
        background-color: #fafbfc; /* Ferah açık renk arka plan */
        color: #0f172a;
        padding: 100px 0;
        overflow: hidden;
    }
    
    .sw-why-section * { box-sizing: border-box; }
    
    .sw-why-container {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* =======================================================================
       ÜST BAŞLIK ALANI
       ======================================================================= */
    .sw-why-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 60px auto;
    }

    .sw-why-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background-color: #fff7ed;
        color: rgb(216, 74, 1);
        font-size: 13px;
        font-weight: 700;
        padding: 6px 16px;
        border-radius: 20px;
        margin-bottom: 24px;
        border: 1px solid rgba(216, 74, 1, 0.15);
        letter-spacing: 1px;
    }
    
    .sw-why-dot {
        width: 8px;
        height: 8px;
        background-color: rgb(216, 74, 1);
        border-radius: 50%;
    }

    .sw-why-title {
        font-size: clamp(36px, 4vw, 52px);
        font-weight: 800;
        line-height: 1.2;
        color: #0f172a;
        margin: 0 0 20px 0;
        letter-spacing: -1px;
    }

    .sw-text-orange {
        color: rgb(216, 74, 1);
    }

    .sw-why-desc {
        font-size: 18px;
        line-height: 1.6;
        color: #475569;
        font-weight: 400;
        margin: 0;
    }

    /* =======================================================================
       8'Lİ KART GRID YAPISI
       ======================================================================= */
    .sw-why-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .sw-why-card {
        background-color: #ffffff;
        border-radius: 16px;
        padding: 40px 30px;
        border: 1px solid #f1f5f9;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    /* Karta zarif bir hover efekti */
    .sw-why-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        border-color: rgba(216, 74, 1, 0.3);
    }

    /* Üst tarafa ince bir turuncu çizgi animasyonu */
    .sw-why-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: rgb(216, 74, 1);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .sw-why-card:hover::before {
        transform: scaleX(1);
    }

    /* =======================================================================
       İKONLAR
       ======================================================================= */
    .sw-why-icon-wrap {
        width: 64px;
        height: 64px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
        transition: transform 0.3s ease;
        background-color: #FFEDD5; /* Tüm ikonların ortak arkaplan rengi */
    }

    /* Hover anında ikonu hafifçe büyüt */
    .sw-why-card:hover .sw-why-icon-wrap {
        transform: scale(1.1);
    }

    /* =======================================================================
       KART METİNLERİ
       ======================================================================= */
    .sw-why-card-title {
        font-size: 18px !important; /* Boyut düşürüldü */
        font-weight: 700;
        color: #0f172a;
        margin: 0 0 12px 0;
        line-height: 1.3;
    }

    .sw-why-card-desc {
        font-size: 15px;
        line-height: 1.6;
        color: #64748b;
        margin: 0;
        font-weight: 400;
    }

    /* =======================================================================
       MOBİL UYUMLULUK
       ======================================================================= */
    @media (max-width: 992px) {
        .sw-why-section {
            padding: 70px 0;
        }
        
        .sw-why-header {
            margin-bottom: 40px;
        }
        
        .sw-why-grid {
            gap: 20px;
        }
        
        .sw-why-card {
            padding: 30px 24px;
        }
    }/* End custom CSS */