/* =========================
    CLEMIX NEDEN BİZ?
========================= */
.clemix-why-us {
    padding: 100px 0;
    /* Önceki bölümlerle uyumlu gradyan */
    background: linear-gradient(135deg, #0F2A6B 0%, #2a52be 50%, #F57C22 150%);
    color: #ffffff;
    position: relative;
    
    /* İSTEDİĞİN KURUMSAL ÇİZGİLER */
    border-bottom: 3px solid #F57C22; /* Alt keskin turuncu şerit */
    
    z-index: 5;
}

.clemix-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* BAŞLIK VE ALT BAŞLIK STİLİ */
.clemix-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.clemix-section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px; /* Subtitle ile mesafe */
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
}

.clemix-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #F57C22;
    margin: 15px auto 0;
    border-radius: 10px;
}

/* Yeni Eklenen Alt Başlık Stili */
.clemix-section-subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 400;
}

/* GRID SİSTEMİ */
.clemix-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ÖZELLİK KARTLARI */
.clemix-feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.clemix-feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: #F57C22;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* İKON KUTUSU */
.clemix-icon-box {
    width: 70px;
    height: 70px;
    background: #ffffff; /* Beyaz zemin ferahlık katar */
    color: #F57C22;      /* İkon turuncu */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 32px;
    border: 2px solid #F57C22; /* Turuncu çerçeve ile belirginlik */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.clemix-feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.clemix-feature-card p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.85;
}

/* ================================================================
   CLEMIX NEDEN BİZ? MOBİL DÜZENLEME (768px VE ALTI)
   ================================================================ */
@media screen and (max-width: 768px) {
    .clemix-why-us {
        padding: 50px 0 !important;
    }

    .clemix-section-title {
        font-size: 28px !important;
        margin-bottom: 10px !important;
    }

    .clemix-section-subtitle {
        font-size: 15px !important;
        padding: 0 10px;
        margin-bottom: 30px;
    }

    .clemix-features-grid {
        grid-template-columns: 1fr !important; 
        gap: 20px !important;
    }

    .clemix-feature-card {
        padding: 30px 20px !important;
    }

    .clemix-icon-box {
        width: 60px !important;
        height: 60px !important;
        font-size: 26px !important;
    }
}