/* =========================
   ECE R.22-06 HERO BANNER
========================= */

.ece-hero {
    width: 100%;
    margin: 0 0 35px 0;
    border-radius: 18px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 12px 35px rgba(0,0,0,0.22);
}

.ece-hero-img {
    width: 100%;
    display: block;
    height: auto;
}
.ece-info-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    background:#fff;
    padding:34px;
    border-radius:18px;
    margin:35px 0;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.ece-info-left{
    display:grid;
    grid-template-columns:130px 1fr;
    gap:25px;
    border-right:1px solid #ddd;
    padding-right:30px;
}

.ece-logo-box{
    text-align:center;
}

.ece-logo-box img{
    max-width:90px;
    margin-bottom:10px;
}

.ece-logo-box h3{
    font-size:26px;
    margin:0;
    color:#10213d;
}

.ece-logo-box p{
    font-size:15px;
    line-height:1.35;
    margin-top:8px;
}

.ece-info-text h2,
.ece-info-right h2{
    color:#10213d;
    font-size:26px;
    line-height:1.15;
    margin:0 0 14px;
}

.ece-info-text p,
.ece-info-right p{
    font-size:16px;
    line-height:1.55;
    color:#111;
}

.ece-reasons{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
    margin-top:22px;
}

.ece-reason{
    text-align:center;
    border-right:1px solid #ddd;
    padding:0 10px;
}

.ece-reason:last-child{
    border-right:none;
}

.ece-reason img{
    height:52px;
    object-fit:contain;
    margin-bottom:8px;
}

.ece-reason span{
    display:block;
    font-size:15px;
    line-height:1.25;
    color:#111;
}

.ece-note{
    text-align:center;
    margin-top:18px;
    font-weight:600;
}

/* =========================
   ECE KARŞILAŞTIRMA
========================= */

.ece-comparison{
    margin:50px 0;
}

.ece-section-title{
    text-align:center;
    max-width:850px;
    margin:0 auto 35px;
}

.ece-section-title h2{
    font-size:36px;
    color:#10213d;
    margin-bottom:15px;
}

.ece-section-title p{
    font-size:18px;
    color:#555;
    line-height:1.7;
}

.ece-comparison-images{
    display:grid;
    grid-template-columns:1fr;
    gap:30px;
}

.ece-figure{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.ece-figure img{
    width:100%;
    display:block;
}

.ece-figure figcaption{
    padding:20px 25px;
    font-size:16px;
    line-height:1.6;
    color:#444;
    text-align:center;
}
.ece-title-box{
    display:inline-block;
    background:#071323;
    border-left:6px solid #ffc400;
    padding:16px 28px;
    border-radius:12px;
    margin-bottom:20px;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
}

.ece-title-box h2{
    margin:0;
    color:#fff;
    font-size:32px;
    font-weight:800;
    line-height:1.2;
}


/* Mobil */
@media(max-width:768px){
    .ece-hero {
        border-radius: 12px;
        margin-bottom: 24px;
    }
    .ece-info-grid{
        grid-template-columns:1fr;
        padding:22px;
    }

    .ece-info-left{
        grid-template-columns:1fr;
        border-right:none;
        padding-right:0;
        text-align:center;
    }

    .ece-reasons{
        grid-template-columns:repeat(2,1fr);
    }

    .ece-reason{
        border-right:none;
    }

     .ece-title-box{
        display:block;
        padding:14px 18px;
    }

    .ece-title-box h2{
        font-size:24px;
    }

}

@media(max-width:600px){
    .ece-difference-title{
        font-size:20px;
    }

    .ece-difference-grid{
        grid-template-columns:1fr;
    }

    .ece-diff-card{
        border-right:none;
    }
}

/* Tablet */
@media(max-width:1024px){
    .ece-difference-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .ece-diff-card{
        border-bottom:1px solid #ddd;
    }
}

