.iade-hero-section{
    position:relative;
    overflow:hidden;

    background:
    linear-gradient(
        135deg,
        #0f172a 0%,
        #16213e 45%,
        #1e293b 100%
    );

    padding:100px 0 80px;
}

.iade-hero-container{
    max-width:1400px;
    margin:auto;
    padding:0 30px;

    display:grid;
    grid-template-columns:1fr 500px;
    gap:70px;
    align-items:center;
}

.iade-badge{
    display:inline-flex;
    align-items:center;

    padding:8px 16px;

    border-radius:50px;

    background:
    rgba(255,255,255,.08);

    border:
    1px solid rgba(255,255,255,.08);

    color:#fff;

    font-size:13px;
    font-weight:600;

    margin-bottom:18px;
}

.iade-title{
    font-size:58px;
    line-height:1.1;
    font-weight:800;

    color:#fff;

    margin-bottom:18px;
}

.iade-subtitle{
    max-width:720px;

    font-size:17px;
    line-height:1.9;

    color:
    rgba(255,255,255,.75);

    margin-bottom:35px;
}

.iade-features{
    display:grid;
    grid-template-columns:repeat(2,max-content);
    gap:18px 40px;
}

.iade-feature{
    display:flex;
    align-items:center;
    gap:10px;

    color:#fff;

    font-size:15px;
    font-weight:600;
}

.iade-feature i{
    width:34px;
    height:34px;

    border-radius:12px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #3b82f6
    );

    color:#fff;

    box-shadow:
    0 0 20px rgba(37,99,235,.35);
}

.iade-hero-visual{
    position:relative;
    z-index:5;
}

.iade-hero-visual img{
    width:100%;
    height:380px;

    object-fit:cover;

    border-radius:28px;

    border:
    1px solid rgba(255,255,255,.08);

    box-shadow:
    0 30px 70px rgba(0,0,0,.35);
}

/* Sağ Glow */

.iade-hero-section::before{
    content:"";

    position:absolute;

    width:550px;
    height:550px;

    right:-200px;
    top:-180px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(59,130,246,.18),
        transparent 70%
    );

    filter:blur(20px);
}

/* Sol Alt Glow */

.iade-hero-section::after{
    content:"";

    position:absolute;

    width:450px;
    height:450px;

    left:-150px;
    bottom:-150px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(14,165,233,.12),
        transparent 70%
    );

    filter:blur(25px);
}

.iade-divider{
    width:90px;
    height:4px;

    border-radius:10px;

    margin-bottom:25px;

    background:
    linear-gradient(
        90deg,
        #3b82f6,
        #06b6d4
    );
}

.iade-content-section{
    padding:50px 0 70px;
    background:#fafafa;
}

.iade-content-container{
    max-width:1400px;
    margin:auto;
    padding:0 30px;
}

.iade-content-card{
    background:#fff;

    border-radius:30px;

    padding:45px;

    box-shadow:
    0 10px 40px rgba(0,0,0,.05);
}

.iade-content-card h2{
    font-size:36px;
    font-weight:800;

    color:#111827;

    margin-bottom:12px;
}

.iade-intro{
    font-size:15px;
    line-height:1.9;

    color:#6b7280;

    margin-bottom:40px;
}

.iade-item{
    position:relative;

    padding:28px 0 28px 25px;

    border-bottom:1px solid #f1f1f1;
}

.iade-item:last-child{
    border-bottom:none;
}

.iade-item::before{
    content:"";

    position:absolute;

    left:0;
    top:32px;

    width:6px;
    height:35px;

    border-radius:10px;

    background:
    linear-gradient(
        180deg,
        #ff7b1d,
        #ff9a4d
    );
}

.iade-item h3{
    font-size:22px;
    font-weight:700;

    color:#111827;

    margin-bottom:12px;
}

.iade-item p{
    font-size:15px;
    line-height:1.9;

    color:#4b5563;
}

.iade-item ul{
    margin-top:10px;
    padding-left:18px;
}

.iade-item li{
    margin-bottom:10px;

    color:#4b5563;

    line-height:1.8;
}


.iade-notice-box{
    display:flex;
    gap:15px;

    margin-bottom:35px;

    padding:20px;

    border-radius:18px;

    background:#fff7ed;

    border:1px solid #fed7aa;
}

.iade-notice-box i{
    font-size:24px;
    color:#ea580c;
}

.iade-notice-box strong{
    display:block;
    margin-bottom:6px;
    color:#9a3412;
}

.iade-notice-box p{
    margin:0;
    color:#7c2d12;
}

