.sell-hero{
    background:linear-gradient(135deg,#0a2d4d,#114b7a);
    color:#fff;
    padding:60px 0;
}
.sell-hero h1{
    font-size:34px;
    font-weight:700;
}
.sell-hero p{
    font-size:16px;
    opacity:.9;
}

.stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:35px;
}
.stat-box{
    background:#fff;
    color:#000;
    padding:22px;
    border-radius:10px;
    text-align:center;
}
.stat-box h3{
    color:#ff6a00;
    font-size:26px;
    margin-bottom:5px;
}
.stat-box span{
    font-size:13px;
    color:#555;
}

.section{
    padding:60px 0;
}
.section-title{
    text-align:center;
    margin-bottom:40px;
}
.section-title h2{
    font-size:30px;
    color:#0a2d4d;
}
.section-title p{
    color:#666;
    font-size:15px;
}

/* FORM */
.sell-form{
    max-width:900px;
    margin:0 auto;
    background:#fff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}
.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}
.form-group{
    display:flex;
    flex-direction:column;
}
.form-group.full{
    grid-column:1 / -1;
}
.form-group label{
    font-size:13px;
    font-weight:600;
    margin-bottom:6px;
}
.form-group input{
    padding:13px;
    border:1px solid #ddd;
    border-radius:6px;
}
.sell-btn{
    margin-top:20px;
    background:#ff6a00;
    color:#fff;
    border:none;
    padding:14px 34px;
    border-radius:8px;
    font-weight:600;
    cursor:pointer;
}

/* HOW IT WORKS */
.steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}
.step{
    text-align:center;
    padding:20px;
}
.step i{
    font-size:30px;
    color:#ff6a00;
    margin-bottom:10px;
}

/* FEATURES */
.features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}
.feature{
    background:#f8f9fb;
    padding:25px;
    border-radius:10px;
}
.feature h4{
    font-size:16px;
    color:#0a2d4d;
    margin-bottom:6px;
}
.feature p{
    font-size:13px;
    color:#555;
}

/* FAQ */
.faq{
    max-width:900px;
    margin:0 auto;
}
.faq-item{
    background:#fff;
    padding:18px;
    border-radius:8px;
    margin-bottom:12px;
}
.faq-item h4{
    font-size:15px;
    color:#0a2d4d;
}

/* CTA */
.sell-cta{
    background:#ff6a00;
    color:#fff;
    text-align:center;
    padding:50px 20px;
    border-radius:12px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .stats,.steps,.features,.form-grid{
        grid-template-columns:1fr;
    }
}