.reseller-hosting-special-section{
    position:relative;
    overflow:hidden;

    background:
    radial-gradient(circle at top left,#2f6bff 0%,transparent 40%),
    radial-gradient(circle at bottom right,#00d4ff 0%,transparent 35%),
    linear-gradient(135deg,#081028 0%,#101b46 50%,#162760 100%);

    padding:107px 0 50px;
}

/* Hafif parıltı efekti */

.reseller-hosting-special-section::before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    border-radius:50%;
    background:rgba(0,212,255,.08);
    filter:blur(120px);
    top:-250px;
    left:-150px;
}

.reseller-hosting-special-container{
    position:relative;
    max-width:1200px;
    margin:auto;
    padding:0 35px;
}

.reseller-hosting-special-content{
    position:relative;
    z-index:5;
    max-width:800px;
    margin-left:40px;
    margin-right:auto;
    text-align:left;
}

.reseller-hosting-special-title{
    font-size:56px;
    line-height:1.08;
    font-weight:800;
    color:#fff;
    margin-bottom:20px;
    letter-spacing:-1px;
}

.reseller-hosting-special-subtitle{
    font-size:17px;
    line-height:1.9;
    color:rgba(255,255,255,.85);
    margin-bottom:35px;
}

.reseller-hosting-special-features{
    display:grid;
    grid-template-columns:repeat(2,max-content);
    justify-content:start;
    gap:20px 60px;
}

.reseller-hosting-special-item{
    display:flex;
    align-items:center;
    gap:12px;
    color:#fff;
    font-size:16px;
    font-weight:600;
}

.reseller-hosting-special-item i{
    width:32px;
    height:32px;
    border-radius:50%;

    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);

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

    color:#39d98a;

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

    font-size:14px;
}

/* Sağdaki büyük şekil */

.reseller-hosting-special-red{
    position:absolute;
    top:0;
    right:0;

    width:420px;
    height:100%;

    background:
    linear-gradient(
        180deg,
        #00d4ff,
        #2563eb
    );

    opacity:.95;

    clip-path:polygon(
        72% 0,
        100% 0,
        100% 100%,
        40% 100%
    );
}

/* Koyu geometrik şekil */

.reseller-hosting-special-dark{
    position:absolute;

    right:90px;
    bottom:0;

    width:340px;
    height:200px;

    background:
    linear-gradient(
        135deg,
        #0f172a,
        #1e293b
    );

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

    clip-path:polygon(
        42% 0,
        100% 0,
        100% 64%,
        58% 100%,
        0 100%
    );
}

/* Tablet */

@media(max-width:991px){

    .reseller-hosting-special-section{
        padding:70px 0 45px;
    }

    .reseller-hosting-special-title{
        font-size:42px;
    }

    .reseller-hosting-special-subtitle{
        font-size:15px;
    }

    .reseller-hosting-special-content{
        margin:0 auto;
        text-align:center;
    }

    .reseller-hosting-special-features{
        grid-template-columns:1fr;
        justify-content:center;
    }

    .reseller-hosting-special-item{
        justify-content:center;
    }

    .reseller-hosting-special-red{
        width:100%;
        opacity:.12;
    }

    .reseller-hosting-special-dark{
        display:none;
    }

}

/* Mobil */

@media(max-width:576px){

    .reseller-hosting-special-container{
        padding:0 20px;
    }

    .reseller-hosting-special-title{
        font-size:34px;
    }

    .reseller-hosting-special-subtitle{
        font-size:14px;
    }

    .reseller-hosting-special-item{
        font-size:14px;
    }

}

/* Yeni Alt Bilgi */

.hosting-features-section{
    padding:70px 0;
    background:#fff;
}

.hosting-features-header{
    text-align:center;
    margin-bottom:50px;
}

.hosting-features-header h2{
    font-size:42px;
    font-weight:700;
    color:#111827;
    margin-bottom:16px;
}

.hosting-features-header p{
    font-size:18px;
    color:#4b5563;
    margin:0;
}

.hosting-features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.hosting-feature-box{
    border:1px solid #e8e8e8;
    background:#fff;
    padding:20px;
    display:flex;
    gap:20px;
    min-height:165px;
    transition:.25s;
}

.hosting-feature-box:hover{
    border-color:#15b65b;
    transform:translateY(-4px);
}

.hosting-feature-icon{
    width:76px;
    height:64px;
    border:1px solid #e5e7eb;
    flex-shrink:0;

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

.hosting-feature-icon i{
    font-size:32px;
    color:#16b357;
}

.hosting-feature-content h4{
    font-size:20px;
    font-weight:700;
    color:#111827;
    margin:0 0 8px;
}

.hosting-feature-content span{
    display:block;
    width:76px;
    height:2px;
    background:#16b357;
    margin-bottom:14px;
}

.hosting-feature-content p{
    margin:0;
    font-size:15px;
    line-height:1.8;
    color:#4b5563;
}

@media(max-width:991px){

    .hosting-features-grid{
        grid-template-columns:1fr;
    }

    .hosting-features-header h2{
        font-size:30px;
    }

    .hosting-features-header p{
        font-size:16px;
    }

    .hosting-feature-box{
        min-height:auto;
    }

}

@media(max-width:576px){

    .hosting-features-section{
        padding:50px 0;
    }

    .hosting-feature-box{
        flex-direction:column;
        text-align:center;
        align-items:center;
    }

    .hosting-feature-content span{
        margin-left:auto;
        margin-right:auto;
    }

}


/*- s.s.s -*/

.hosting-faq-section{
    padding:40px 0;
    background:#f8fafc;
}

.hosting-faq-header{
    text-align:center;
    max-width:760px;
    margin:0 auto 50px;
}

.faq-badge{
    display:inline-block;
    padding:8px 16px;
    border-radius:50px;
    background:#eef4ff;
    color:#3b82f6;
    font-size:20px;
    font-weight:700;
    margin-bottom:18px;
}

.hosting-faq-header h2{
    font-size:42px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:15px;
}

.hosting-faq-header p{
    font-size:17px;
    color:#64748b;
    line-height:1.8;
}

.hosting-faq-wrapper{
    max-width:950px;
    margin:auto;
}

.hosting-faq-item{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    margin-bottom:18px;
    overflow:hidden;
    transition:.3s;
}

.hosting-faq-item:hover{
    border-color:#60a5fa;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.hosting-faq-question{
    width:100%;
    border:none;
    background:none;
    padding:26px 30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    text-align:left;
    cursor:pointer;
}

.hosting-faq-question span{
    font-size:20px;
    font-weight:700;
    color:#0f172a;
}

.hosting-faq-question i{
    color:#3b82f6;
    font-size:18px;
    transition:.3s;
}

.hosting-faq-answer{
    display:none;
    padding:0 30px 28px;
    color:#64748b;
    line-height:1.9;
    font-size:15px;
}

.hosting-faq-item.active .hosting-faq-answer{
    display:block;
}

.hosting-faq-item.active .hosting-faq-question i{
    transform:rotate(45deg);
}

@media(max-width:768px){

    .hosting-faq-section{
        padding:60px 0;
    }

    .hosting-faq-header h2{
        font-size:30px;
    }

    .hosting-faq-question{
        padding:20px;
    }

    .hosting-faq-question span{
        font-size:17px;
    }

    .hosting-faq-answer{
        padding:0 20px 20px;
    }

}


.reseller-features-section{
    background:#f5f5f5;
    padding:90px 0;
}

.reseller-top{
    display:grid;
    grid-template-columns:1fr 520px;
    gap:70px;
    align-items:start;
    margin-bottom:90px;
}

.reseller-mini-title{
    font-size:13px;
    letter-spacing:2px;
    color:#7b8794;
}

.reseller-top-content h2{
    font-size:64px;
    line-height:1.1;
    font-weight:800;
    color:#1f2937;
    margin:15px 0 25px;
}

.reseller-top-content p{
    font-size:18px;
    line-height:1.9;
    color:#566273;
}

.reseller-cms-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

.cms-card{
    height:92px;
    background:#fff;
    border-radius:10px;

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

    border:1px solid #ececec;
}

.cms-card img{
    width:52px;
    height:52px;
    object-fit:contain;
}

.reseller-bottom{
    display:grid;
    grid-template-columns:1fr 570px;
    gap:80px;
    align-items:center;
}

.reseller-guide h2{
    font-size:60px;
    color:#1f2937;
    margin-bottom:40px;
}

.guide-item{
    display:flex;
    gap:18px;
    margin-bottom:35px;
}

.guide-item span{
    width:0;
    height:0;

    border-top:10px solid transparent;
    border-bottom:10px solid transparent;
    border-left:14px solid #ff5a14;

    margin-top:8px;
}

.guide-item h4{
    font-size:30px;
    margin-bottom:10px;
}

.guide-item p{
    color:#6b7280;
    line-height:1.8;
    font-size:17px;
}

.reseller-visual{
    position:relative;

    height:540px;

    border-radius:45px;

    overflow:hidden;

    background:#b01900;
}

.visual-top-left{
    position:absolute;
    left:0;
    top:0;

    width:50%;
    height:50%;

    background:#ff4d0d;

    color:#fff;

    padding:45px;

    font-size:24px;
    font-weight:700;
}

.visual-top-right{
    position:absolute;
    right:0;
    top:0;

    width:50%;
    height:50%;

    background:#b01900;

    color:#fff;

    padding:45px;

    text-align:right;

    font-size:24px;
    font-weight:700;
}

.visual-bottom{
    position:absolute;
    bottom:35px;
    left:50%;

    transform:translateX(-50%);

    color:#fff;
    font-size:22px;
    font-weight:700;
}

.visual-person{
    position:absolute;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    width:310px;
    height:310px;

    border-radius:50%;

    overflow:hidden;

    border:12px solid #fff;

    z-index:5;
}

.visual-person img{
    width:100%;
    height:100%;
    object-fit:cover;
}

@media(max-width:991px){

    .reseller-top,
    .reseller-bottom{
        grid-template-columns:1fr;
    }

    .reseller-top-content h2,
    .reseller-guide h2{
        font-size:40px;
    }

    .reseller-visual{
        height:450px;
    }

    .visual-person{
        width:220px;
        height:220px;
    }

}