/* Clemix Hakkımızda Modern Tasarım */
.clemix-about-section {
    padding: 120px 0;
    /* Clemix Gradyan Arka Plan */
    background: linear-gradient(135deg, #0F2A6B 0%, #2a52be 50%, #F57C22 150%);
    color: #ffffff;
    position: relative;
    overflow: hidden;

    /* İSTEDİĞİN KURUMSAL ÇİZGİLER */
    border-top: 3px solid #F57C22;    /* Üst tarafa net lacivert şerit */
    z-index: 10;
}

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

.clemix-about-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Sol İçerik */
.clemix-about-content { flex: 1; }

.clemix-tag {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
    color: #F57C22; /* Daha belirgin olması için turuncu yapıldı */
}

.clemix-about-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.clemix-about-title span {
    opacity: 0.7;
}

.clemix-about-text {
    font-size: 16px;
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.clemix-about-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #F57C22;
    padding-bottom: 5px;
    transition: 0.3s;
}

.clemix-about-link:hover { 
    opacity: 0.7; 
    padding-left: 10px; 
    border-color: #fff;
}

/* Sağ Görsel/Kart */
.clemix-about-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.clemix-about-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 60px 80px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.clemix-about-number strong {
    font-size: 110px;
    line-height: 1;
    display: block;
    font-weight: 900;
    color: #fff;
}

.clemix-about-number span {
    font-size: 20px;
    font-weight: 600;
    display: block;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.clemix-about-star {
    position: absolute;
    top: -40px;
    right: -40px;
    font-size: 180px;
    color: #F57C22; /* Turuncu efekt */
    opacity: 0.15;
    z-index: -1;
    animation: clemixPulse 4s infinite ease-in-out;
}

/* Alt Kısım */
.clemix-about-footer {
    margin-top: 100px;
    text-align: center;
}

.clemix-about-footer h3 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.clemix-about-footer p { 
    opacity: 0.8; 
    font-size: 18px;
}

@keyframes clemixPulse {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.1); opacity: 0.3; }
}














/* ================================================================
   MOBİL İÇİN TAM TEMİZLİK (768px VE ALTI)
   ================================================================ */
@media screen and (max-width: 768px) {
    
    /* 1. MENÜ DÜZELTME: Butonları alt alta al ve sığdır */
    .header-inner {
        flex-direction: column !important;
        padding: 10px !important;
        gap: 10px !important;
    }

    .menu {
        flex-direction: column !important;
        width: 100% !important;
        gap: 8px !important;
    }

    .menu > li {
        width: 100% !important;
    }

    .menu > li > a {
        display: block !important;
        text-align: center !important;
        padding: 10px !important;
        font-size: 13px !important;
    }

    /* 2. HAKKIMIZDA BÖLÜMÜ: Yazıları ve boşlukları küçült */
    .clemix-about-section {
        padding: 60px 0 !important; /* Dev boşluğu yarıya indirdik */
    }

    .clemix-about-flex {
        flex-direction: column !important; /* Görsel ve yazıyı alt alta al */
        text-align: center !important;
        gap: 30px !important;
    }

    .clemix-about-title {
        font-size: 28px !important; /* 48px mobilde ekrana sığmaz, 28px yaptık */
        line-height: 1.2 !important;
    }

    .clemix-about-text {
        font-size: 14px !important;
        max-width: 100% !important;
        margin: 0 auto 20px !important;
    }

    /* 3. 2025 KARTINI KÜÇÜLT */
    .clemix-about-card {
        padding: 30px 40px !important; /* Kartın iç boşluğunu azalttık */
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
    }

    .clemix-about-number strong {
        font-size: 60px !important; /* 110px mobilde çok devasa, 60px yaptık */
    }

    /* 4. ALT KISIM (TEMİZLİĞE BAŞLA) */
    .clemix-about-footer h3 {
        font-size: 22px !important;
        letter-spacing: 2px !important;
    }

    .clemix-about-footer p {
        font-size: 15px !important;
    }
}






