html, body{
    overflow-x: hidden;
    max-width: 100%;
}
.sell-hero{
    position:relative;
    overflow:hidden;
    padding:90px 0 80px;
    background:
    linear-gradient(
        to bottom,
        #000000 0%,
        #1a0000 25%,
        #520000 50%,
        #1a0000 75%,
        #000000 100%
    );
}
.process-number{
    width:70px;
    height:70px;
    margin:auto auto 18px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,rgba(255,0,0,.25),rgba(255,255,255,.03));
    color:#ff3d3d;
    font-size:26px;
}
.sell-hero::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:#9e0000;
    border-radius:50%;
    filter:blur(150px);
    opacity:.18;
    top:-120px;
    right:-100px;
}

/* HERO LEFT */

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    font-size:11px;
    font-weight:600;
    margin-bottom:18px;
}

.hero-title{
    font-size:35px;
    line-height:1.2;
    font-weight:500;
    color:#fff;
    margin-bottom:18px;
}

.hero-title span{
    color:#ff3d3d;
}

.hero-text{
    color:#d6d6d6;
    line-height:1.9;
    font-size:14px;
    margin-bottom:30px;
    max-width:620px;
}

/* HERO POINTS */

.hero-points{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:30px;
}

.hero-point{
    padding:10px 16px;
    border-radius:50px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.07);
    color:#fff;
    font-size:12px;
    font-weight:600;
}

/* HERO BUTTONS */

.hero-btns{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.hero-btn{
    height:50px;
    padding:0 28px;
    border-radius:50px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s;
    font-size:12px;
    font-weight:700;
}

.hero-btn-primary{
    background:
    linear-gradient(
        135deg,
        #ff1f1f,
        #5d0000
    );
    color:#fff;
    box-shadow:0 15px 30px rgba(255,0,0,.25);
}

.hero-btn-primary:hover{
    transform:translateY(-3px);
    color:#fff;
}

.hero-btn-outline{
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
}

.hero-btn-outline:hover{
    background:#fff;
    color:#000;
}

/* FORM CARD */

.sell-form-card{
    position:relative;
    background:rgba(10,10,10,.92);
    border:1px solid rgba(255,255,255,.08);
    border-radius:28px;
    padding:34px;
    backdrop-filter:blur(10px);
    box-shadow:0 25px 50px rgba(0,0,0,.45);
}

.sell-form-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:
    linear-gradient(
        to right,
        transparent,
        #ff2f2f,
        transparent
    );
}

.form-title{
    color:#fff;
    font-size:28px;
    font-weight:800;
    margin-bottom:8px;
}

.form-subtitle{
    color:#a8a8a8;
    font-size:12px;
    margin-bottom:26px;
}

/* INPUT */







/* BUTTON */

.sell-submit-btn{
    width:100%;
    height:54px;
    border:none;
    border-radius:16px;
    background:
    linear-gradient(
        135deg,
        #ff1f1f,
        #650000
    );
    color:#fff;
    font-size:13px;
    font-weight:700;
    transition:.3s;
}

.sell-submit-btn:hover{
    transform:translateY(-3px);
}

/* STATS */

.stats-section{
    padding:80px 0;
    background:
    linear-gradient(
        to bottom,
        #120000,
        #000000
    );
}

.stats-wrap{
    background:rgba(10,10,10,.92);
    border-radius:28px;
    border:1px solid rgba(255,255,255,.08);
    padding:34px;
}

.stat-box{
    text-align:center;
}

.stat-number{
    font-size:34px;
    font-weight:800;
    color:#ff3d3d;
    margin-bottom:6px;
}

.stat-text{
    color:#d4d4d4;
    font-size:12px;
}

/* SECTION TITLE */

.section-title{
    text-align:center;
    margin-bottom:55px;
}

.section-title h2{
    color:#fff;
    font-size:36px;
    font-weight:500;
    margin-bottom:14px;
}

.section-title p{
    color:#c8c8c8;
    font-size:14px;
    line-height:1.9;
    max-width:760px;
    margin:auto;
}

/* WHY SECTION */

.why-section{
    padding:100px 0;
    background:
    linear-gradient(
        to bottom,
        #000000,
        #1d0000,
        #000000
    );
}

.why-card{
    background:rgba(12,12,12,.92);
    border-radius:28px;
    padding:34px;
    border:1px solid rgba(255,255,255,.08);
    text-align:center;
    height:100%;
    transition:.35s;
}

.why-card:hover{
    transform:translateY(-8px);
    border-color:rgba(255,0,0,.25);
}

.why-icon{
    width:90px;
    height:90px;
    margin:auto auto 22px;
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:
    linear-gradient(
        135deg,
        rgba(255,0,0,.15),
        rgba(255,255,255,.03)
    );
}

.why-icon img{
    width:42px;
}

.why-card h4{
    color:#fff;
    font-size:22px;
    margin-bottom:14px;
}

.why-card p{
    color:#d2d2d2;
    font-size:13px;
    line-height:1.9;
}

/* PROCESS SECTION */

.process-section{
    padding:100px 0;
    background:
    linear-gradient(
        to bottom,
        #140000,
        #000000
    );
}

.process-card{
    background:rgba(12,12,12,.92);
    border-radius:28px;
    padding:38px;
    border:1px solid rgba(255,255,255,.08);
    text-align:center;
    height:100%;
}

.process-number{
    width:58px;
    height:58px;
    border-radius:50%;
    margin:auto auto 22px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:
    linear-gradient(
        135deg,
        #ff1f1f,
        #5d0000
    );
    color:#fff;
    font-size:20px;
    font-weight:800;
}

.process-card h4{
    color:#fff;
    font-size:22px;
    margin-bottom:14px;
}

.process-card p{
    color:#d3d3d3;
    font-size:13px;
    line-height:1.9;
}

/* ABOUT IMAGE */

.about-image img{
    width:100%;
    border-radius:28px;
}

/* FAQ */

.faq-card{
    background:rgba(12,12,12,.92);
    border-radius:24px;
    padding:30px;
    border:1px solid rgba(255,255,255,.08);
    height:100%;
}

.faq-card h4{
    color:#fff;
    font-size:20px;
    margin-bottom:14px;
}

.faq-card p{
    color:#d3d3d3;
    font-size:13px;
    line-height:1.9;
}

/* BIG CTA */

.big-cta{
    position:relative;
    overflow:hidden;
    padding:110px 0;
    background:
    linear-gradient(
        135deg,
        #000000,
        #4a0000,
        #000000
    );
}

.big-cta::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:#a80000;
    border-radius:50%;
    filter:blur(180px);
    opacity:.18;
    right:-150px;
    top:-150px;
}

.cta-content h2{
    color:#fff;
    font-size:40px;
    line-height:1.2;
    font-weight:500;
    margin-bottom:18px;
}

.cta-content p{
    color:#d6d6d6;
    font-size:14px;
    line-height:1.9;
    margin-bottom:24px;
}

.cta-btn{
    height:54px;
    padding:0 30px;
    border-radius:50px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    background:
    linear-gradient(
        135deg,
        #ff1f1f,
        #630000
    );
    color:#fff;
    font-size:13px;
    font-weight:700;
}

.cta-btn:hover{
    color:#fff;
}

.cta-car img{
    width:100%;
    max-width:700px;
}

/* RESPONSIVE */

@media(max-width:991px){

    .hero-title{
        font-size:32px;
    }

    .section-title h2{
        font-size:28px;
    }

    .cta-content h2{
        font-size:32px;
    }

    .sell-form-card{
        margin-top:40px;
    }
}

@media(max-width:576px){

    .sell-hero{
        padding:70px 0;
    }

    .hero-title{
        font-size:28px;
    }

    .section-title h2{
        font-size:24px;
    }

    .cta-content h2{
        font-size:26px;
    }

    .why-card,
    .process-card,
    .faq-card{
        padding:26px 22px;
    }
}