
/* =========================================
   PAGE LOAD ANIMATIONS
========================================= */

/* HERO CONTENT */
.crypto-left-content{
    animation:leftContent 1s ease forwards;
    opacity:0;
}

@keyframes leftContent{

    from{
        opacity:0;
        transform:translateX(-80px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }
}

/* HERO IMAGE */
.crypto-right img{
    animation:rightImage 1.2s ease forwards;
    opacity:0;
}

@keyframes rightImage{

    from{
        opacity:0;
        transform:
        translateX(150px)
        scale(1.1);
    }

    to{
        opacity:1;
        transform:
        translateX(0)
        scale(1);
    }
}

/* BG CIRCLE */
.crypto-circle{
    animation:circleZoom 1.5s ease forwards;
    opacity:0;
}

@keyframes circleZoom{

    from{
        opacity:0;
        transform:
        translateY(-50%)
        scale(.5);
    }

    to{
        opacity:1;
        transform:
        translateY(-50%)
        scale(1);
    }
}

/* FEATURES */
.feature-box:nth-child(1){
    animation:fadeTop .8s ease forwards;
    animation-delay:.3s;
    opacity:0;
}

.feature-box:nth-child(2){
    animation:fadeTop .8s ease forwards;
    animation-delay:.5s;
    opacity:0;
}

.feature-box:nth-child(3){
    animation:fadeTop .8s ease forwards;
    animation-delay:.7s;
    opacity:0;
}

.feature-box:nth-child(4){
    animation:fadeTop .8s ease forwards;
    animation-delay:.9s;
    opacity:0;
}

@keyframes fadeTop{

    from{
        opacity:0;
        transform:translateY(-40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* STEPS WRAPPER */
.steps-wrapper{
    animation:fadeBottom 1s ease forwards;
    opacity:0;
    animation-delay:.4s;
}

@keyframes fadeBottom{

    from{
        opacity:0;
        transform:translateY(80px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* STEP CARDS */
.step-card:nth-child(1){
    animation:cardLeft .8s ease forwards;
    animation-delay:.2s;
    opacity:0;
}

.step-card:nth-child(2){
    animation:cardTop .8s ease forwards;
    animation-delay:.4s;
    opacity:0;
}

.step-card:nth-child(3){
    animation:cardBottom .8s ease forwards;
    animation-delay:.6s;
    opacity:0;
}

.step-card:nth-child(4){
    animation:cardTop .8s ease forwards;
    animation-delay:.8s;
    opacity:0;
}

.step-card:nth-child(5){
    animation:cardBottom .8s ease forwards;
    animation-delay:1s;
    opacity:0;
}

.step-card:nth-child(6){
    animation:cardRight .8s ease forwards;
    animation-delay:1.2s;
    opacity:0;
}

/* DIFFERENT DIRECTIONS */
@keyframes cardLeft{

    from{
        opacity:0;
        transform:translateX(-80px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes cardRight{

    from{
        opacity:0;
        transform:translateX(80px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes cardTop{

    from{
        opacity:0;
        transform:translateY(-80px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes cardBottom{

    from{
        opacity:0;
        transform:translateY(80px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ESCROW SECTION */
.escrow-box{
    animation:zoomFade 1s ease forwards;
    opacity:0;
}

@keyframes zoomFade{

    from{
        opacity:0;
        transform:scale(.9);
    }

    to{
        opacity:1;
        transform:scale(1);
    }
}

/* SELLING SECTION */
.selling-card{
    opacity:0;
}

.selling-card:nth-child(odd){
    animation:slideLeft .9s ease forwards;
}

.selling-card:nth-child(even){
    animation:slideRight .9s ease forwards;
}

@keyframes slideLeft{

    from{
        opacity:0;
        transform:translateX(-70px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes slideRight{

    from{
        opacity:0;
        transform:translateX(70px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }
}

/* WHY CARDS */
.why-card{
    animation:fadeScale .9s ease forwards;
    opacity:0;
}

@keyframes fadeScale{

    from{
        opacity:0;
        transform:scale(.8);
    }

    to{
        opacity:1;
        transform:scale(1);
    }
}

/* CTA */
.crypto-cta{
    animation:ctaUp 1s ease forwards;
    opacity:0;
}

@keyframes ctaUp{

    from{
        opacity:0;
        transform:translateY(100px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}
/* =========================================
   SCROLL REVEAL ANIMATION
========================================= */

.reveal-left,
.reveal-right,
.reveal-top,
.reveal-bottom,
.reveal-zoom{

    opacity: 0;

    transition:
    all 1s cubic-bezier(.17,.67,.35,1);

    will-change:
    transform,
    opacity;
}

/* LEFT */
.reveal-left{
    transform: translateX(-120px);
}

/* RIGHT */
.reveal-right{
    transform: translateX(120px);
}

/* TOP */
.reveal-top{
    transform: translateY(-120px);
}

/* BOTTOM */
.reveal-bottom{
    transform: translateY(120px);
}

/* ZOOM */
.reveal-zoom{
    transform: scale(.8);
}

/* ACTIVE */
.reveal-active{

    opacity: 1;

    transform:
    translateX(0)
    translateY(0)
    scale(1);
}
/* =========================
   HERO SECTION
========================= */

.crypto-hero-section{
    position: relative;
    min-height: 630px;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* LEFT */
.crypto-left{
    width: 100%;
    position: relative;
    z-index: 10;
}

.crypto-left-content{
    width: 48%;
    padding: 100px 0;
}

/* BREADCRUMB */
.breadcrumb{
    margin-bottom: 25px;
    font-size: 15px;
    font-weight: 500;
}

.breadcrumb a{
    color: #111827;
    text-decoration: none;
}

.breadcrumb span{
    color: #6b7280;
    margin: 0 8px;
}

/* HEADING */
.crypto-left-content h1{
    font-size: 50px;
    line-height: 1;
    font-weight: 800;
    color: #111827;
    margin-bottom: 28px;
    letter-spacing: -2px;
}

/* SUBTITLE */
.crypto-left-content h3{
    font-size: 30px;
    line-height: 1.5;
    font-weight: 700;
    color: #163346;
    margin-bottom: 25px;
}

/* TEXT */
.crypto-left-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #163346;
    margin-bottom: 40px;
    padding: 0 7rem 0 3px;
}
/* FEATURES */
.hero-features {
    display: flex;
    grid-template-columns: repeat(2,1fr);
    gap: 0px;
}

.feature-box{
    display:flex;
    align-items:flex-start;
   
}

.feature-box i{
    width:55px;
    height:55px;
    background:rgba(255,255,255,0.1);
    color:#163346;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.feature-box h4{
    font-size:17px;
   
    color:#163346;
}

.feature-box span{
    font-size:14px;
    color:#163346;
}

/* STEPS */
.steps-wrapper{
    background:#fff;
    border-radius:24px;

    box-shadow:
    0 1px 2px rgba(0,0,0,0.02),
    0 8px 24px rgba(149,157,165,0.15);

    padding:70px 50px;
    margin-top:-70px;

    position:relative;
    z-index:20;
}
.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    font-weight:800;
    color:#163346;
    margin-bottom:15px;
}

.section-title p{
    font-size:18px;
    color:#163346;
}

.steps-grid{
    display:grid;
    grid-template-columns:repeat(6  ,1fr);
    gap:30px;
}

.step-card{
    background:#fff;
    border-radius:24px;
    padding:40px 30px;
    position:relative;
    box-shadow:0 10px 35px rgba(0,0,0,0.06);
    transition:0.3s;
}

.step-card:hover{
    transform:translateY(-10px);
}

.step-number{
    width:45px;
    height:45px;
    background:#163346f5;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    position:absolute;
    top:-20px;
    left:30px;
}

.step-icon{
    width:90px;
    height:90px;
    background:#eff6ff;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.step-icon i{
    font-size:38px;
    color:#163346f5;
}

.step-card h3{
    font-size:20px;
    color:#081b4b;
}


.step-card ul li{
    margin-bottom:12px;
    color:#6b7280;
    line-height:1.7;
}

/* FEATURES */
.crypto-features{
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.feature-item{
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i{
    font-size: 18px;
    color: #163346f5;
}

.feature-item span{
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

/* RIGHT IMAGE */
.crypto-right{
    position: absolute;
    top: 0;
    right: 0;

    width: 100%;
    height: 100%;
}



/* CAR IMAGE */
.crypto-right img {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    max-width: none;
    object-fit: cover;
    z-index: 5;
    height: 600px;
    min-height: 600px;
}

/* -------------------------------------------------------------- */
/* =========================
   SECURE ESCROW
========================= */

.secure-escrow-section{
    background:#f8fafc;
}

/* MAIN BOX */
.escrow-box{
    background:#fff;
    border-radius:24px;
    padding:50px;

    box-shadow:
    0 2px 10px rgba(15,23,42,.04),
    0 20px 40px rgba(15,23,42,.06);
}

/* TITLE */
.escrow-title{
    font-size:40px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:12px;
}

.escrow-subtitle{
    color:#64748b;
    font-size:17px;
}

/* LEFT FEATURES */
.left-feature-box{
    border:1px solid #e2e8f0;
    border-radius:18px;
    padding:20px;
    background:#f8fbff;
}

.left-feature-item{
    display:flex;
    gap:14px;
    padding:14px;
    border-radius:14px;
    transition:.3s;
    margin-bottom:10px;
}

.left-feature-item:last-child{
    margin-bottom:0;
}

.left-feature-item.active{
    background:#eaf2ff;
}

.left-feature-item i{
    color:#163346f5;
    font-size:18px;
    margin-top:3px;
}

.left-feature-item h6{
    font-size:15px;
    font-weight:700;
    margin-bottom:4px;
    color:#0f172a;
}

.left-feature-item span{
    font-size:13px;
    color:#64748b;
}

/* CENTER */
.escrow-center-box{
    border:1px solid #e2e8f0;
    border-radius:24px;
    padding:40px;
    background:#fff;
}

.flow-user{
    text-align:center;
}

.flow-icon{
    width:80px;
    height:80px;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:auto auto 15px;
    font-size:28px;
}

.flow-icon.blue{
    background:#dbeafe;
    color:#163346f5;
}

.flow-icon.green{
    background:#dcfce7;
    color:#16a34a;
}

.flow-icon.shield{
    background:#eff6ff;
    color:#163346f5;
}

.flow-user h6{
    font-weight:700;
    margin-bottom:4px;
}

.flow-user span{
    font-size:13px;
    color:#64748b;
}

.flow-arrow i{
    font-size:24px;
    color:#94a3b8;
}

/* STATUS */
.status-row{
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;

    margin-top:30px;
}

.status-box{
    background:#f8fafc;
    border:1px solid #dbeafe;

    border-radius:12px;
    padding:12px 18px;

    font-size:14px;
    font-weight:600;
    color:#0f172a;
}

.status-box i{
    color:#16a34a;
    margin-right:8px;
}

.status-text{
    margin-top:25px;
    color:#64748b;
    font-size:14px;
}

/* RIGHT */
.protection-box{
    border:1px solid #e2e8f0;
    border-radius:24px;
    padding:30px;
    background:#fff;
}

.protection-list{
    list-style:none;
    padding:0;
    margin:0 0 30px;
}

.protection-list li{
    display:flex;
    gap:12px;

    margin-bottom:18px;

    font-size:14px;
    color:#334155;
}

.protection-list i{
    color:#16a34a;
    margin-top:4px;
}

/* TRUST BOX */
.trust-box{
    background:#f8fbff;
    border-radius:18px;
    padding:18px;

    display:flex;
    gap:14px;
}

.trust-icon{
    width:55px;
    height:55px;
    border-radius:50%;

    background:#dbeafe;
    color:#163346f5;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;
}

.trust-box h6{
    font-weight:700;
    margin-bottom:6px;
}

.trust-box p{
    margin:0;
    font-size:13px;
    color:#64748b;
}

/* RESPONSIVE */
@media(max-width:991px){

    .escrow-box{
        padding:30px;
    }

    .escrow-title{
        font-size:30px;
    }

    .escrow-center-box{
        padding:25px;
    }
}

@media(max-width:767px){

    .escrow-box{
        padding:20px;
    }

    .escrow-title{
        font-size:24px;
    }

    .flow-arrow{
        display:none;
    }

        .steps-wrapper{
        overflow:hidden;
    }

    .steps-grid{
        display:flex;
        gap:16px;

        overflow-x:auto;
        overflow-y:hidden;

        scroll-snap-type:x mandatory;
        scroll-behavior:smooth;

        padding-bottom:10px;

        -webkit-overflow-scrolling:touch;
    }

    /* HIDE SCROLLBAR */
    .steps-grid::-webkit-scrollbar{
        display:none;
    }

    .steps-grid{
        scrollbar-width:none;
    }

    .step-card{
        min-width:85%;
        flex:0 0 auto;

        scroll-snap-align:center;

        margin-top:20px;
    }
     .steps-wrapper{
        position:relative;
        overflow:hidden;
        padding:30px 0;
    }

    /* BUTTONS */
   .steps-slider-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

    .steps-prev,
    .steps-next{

        width:46px;
        height:46px;

        border:none;
        border-radius:50%;

        background:#163346f5;
        color:#fff;

        display:flex;
        align-items:center;
        justify-content:center;

        cursor:pointer;

        transition:.3s;
    }

    .steps-prev:hover,
    .steps-next:hover{
        transform:scale(1.08);
    }

    /* SLIDER */
    .steps-grid{

        display:flex !important;

        gap:18px;

        overflow-x:auto;
        overflow-y:hidden;

        scroll-behavior:smooth;
        scroll-snap-type:x mandatory;

        padding:10px 20px 10px;

        -webkit-overflow-scrolling:touch;
    }

    /* HIDE SCROLLBAR */
    .steps-grid::-webkit-scrollbar{
        display:none;
    }

    .steps-grid{
        scrollbar-width:none;
    }

    /* CARD */
    .step-card{

        min-width:85%;
        flex:0 0 auto;

        scroll-snap-align:center;

        margin-top:20px;

        border-radius:20px;
    }

}

/* =========================
   ESCROW ANIMATIONS
========================= */

/* MAIN BOX */
.escrow-box{
    transition:
    transform .4s ease,
    box-shadow .4s ease;
}

.escrow-box:hover{
    transform:translateY(-4px);

    box-shadow:
    0 10px 30px rgba(37,99,235,.08),
    0 25px 50px rgba(15,23,42,.08);
}

/* LEFT ITEMS */
.left-feature-item{
    position:relative;
    overflow:hidden;

    transition:
    transform .3s ease,
    background .3s ease,
    box-shadow .3s ease;
}

.left-feature-item:hover{
    transform:translateX(8px);

    background:#eef4ff;

    box-shadow:
    0 8px 20px rgba(37,99,235,.08);
}

/* SHINE EFFECT */
.left-feature-item::before{
    content:"";

    position:absolute;
    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.7),
        transparent
    );

    transition:.6s;
}

.left-feature-item:hover::before{
    left:100%;
}

/* CENTER BOX */
.escrow-center-box{
    transition:
    transform .4s ease,
    box-shadow .4s ease;
}

.escrow-center-box:hover{
    transform:translateY(-6px);

    box-shadow:
    0 15px 35px rgba(37,99,235,.08);
}

/* FLOW ICONS */
.flow-icon{
    position:relative;
    overflow:hidden;

    transition:
    transform .4s ease,
    box-shadow .4s ease;
}

.flow-icon:hover{
    transform:scale(1.08);

    box-shadow:
    0 10px 25px rgba(37,99,235,.18);
}

/* FLOAT ANIMATION */
@keyframes floatIcon{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0px);
    }
}

/* FLOW ARROW */
.flow-arrow i{
    animation:arrowMove 1.8s infinite;
}

@keyframes arrowMove{

    0%{
        transform:translateX(0);
        opacity:.4;
    }

    50%{
        transform:translateX(8px);
        opacity:1;
    }

    100%{
        transform:translateX(0);
        opacity:.4;
    }
}

/* STATUS BOX */
.status-box{
    transition:
    transform .3s ease,
    background .3s ease,
    border-color .3s ease;
}

.status-box:hover{
    transform:translateY(-5px);

    background:#eef4ff;

    border-color:#93c5fd;
}

/* RIGHT PROTECTION BOX */
.protection-box{
    transition:
    transform .4s ease,
    box-shadow .4s ease;
}

.protection-box:hover{
    transform:translateY(-6px);

    box-shadow:
    0 15px 35px rgba(37,99,235,.08);
}

/* PROTECTION LIST */
.protection-list li{
    transition:
    transform .3s ease,
    color .3s ease;
}

.protection-list li:hover{
    transform:translateX(6px);

    color:#0f172a;
}

/* TRUST BOX */
.trust-box{
    transition:
    transform .4s ease,
    box-shadow .4s ease,
    background .4s ease;
}

.trust-box:hover{
    transform:translateY(-5px);

    background:#eef4ff;

    box-shadow:
    0 10px 25px rgba(37,99,235,.08);
}

/* TRUST ICON */
.trust-icon{
    transition:
    transform .4s ease,
    box-shadow .4s ease;
}

.trust-box:hover .trust-icon{
    transform:rotate(8deg) scale(1.08);

    box-shadow:
    0 10px 25px rgba(37,99,235,.18);
}

/* FADE UP */
.left-feature-box,
.escrow-center-box,
.protection-box{
    animation:fadeUp .8s ease forwards;
}

.left-feature-box{
    animation-delay:.1s;
}

.escrow-center-box{
    animation-delay:.3s;
}

.protection-box{
    animation-delay:.5s;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}
 /* ------------------------------------------------------------------------ */
 /* =========================
   SELLING SECTION
========================= */

.selling-section{
    background:#fff;
}

/* TITLE */
.selling-title{
    font-size:42px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:10px;
}

.selling-subtitle{
    font-size:18px;
    color:#64748b;
}

/* CARD */
.selling-card{
    position:relative;

    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:22px;

    padding:30px 24px;

    height:100%;

    transition:.3s;

    box-shadow:
    0 2px 10px rgba(15,23,42,.03);
}

.selling-card:hover{
    transform:translateY(-5px);
}

/* NUMBER */
.step-number{
    position:absolute;
    top:-14px;
    left:50%;

    transform:translateX(-50%);

    width:34px;
    height:34px;
    border-radius:50%;

    background:#16a34a;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:14px;
    font-weight:700;
}

/* ICON */
.step-icon{
    width:78px;
    height:78px;
    border-radius:20px;

    background:#f8fafc;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:20px auto 25px;

    font-size:34px;
    color:#163346f5;
}

.selling-card h4{
    font-size:20px;
    font-weight:700;
    margin-bottom:18px;
    color:#0f172a;
    text-align:center;
}

.selling-card ul{
    padding-left:18px;
    margin:0;
}

.selling-card ul li{
    font-size:14px;
    line-height:1.8;
    color:#64748b;
    margin-bottom:8px;
}

/* WHY CHOOSE */
.why-card{
    text-align:center;

    border:1px solid #e2e8f0;
    border-radius:18px;

    padding:30px 18px;

    height:100%;

    background:#fff;
}

.why-card i{
    width:62px;
    height:62px;
    border-radius:50%;

    background:#eff6ff;
    color:#163346f5;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:auto auto 20px;

    font-size:24px;
}

.why-card h5{
    font-size:17px;
    font-weight:700;
    margin-bottom:10px;
    color:#0f172a;
}

.why-card p{
    font-size:14px;
    color:#64748b;
}

/* CTA */
.crypto-cta {
    margin-top: 60px;
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
  
    box-shadow: 0 10px 35px rgb(0 0 0 / 18%);
}

.cta-left{
    display:flex;
    align-items:center;
    gap:22px;
}

.cta-icon {
    width: 90px;
    height: 90px;
    border-radius: 18px;
    background: #1633460d;
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: #fff; */
    font-size: 38px;
    /* border: 2px solid; */
}

.cta-left h3 {
    color: #163346f5;
    font-size: 30px;
    font-weight: 800;
  
}

.cta-left p {
    color: #163346f5;
    margin: 0;
    font-size: 15px;
    max-width: 600px;
}

/* CTA BUTTONS */
.cta-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.btn-security,
.btn-browse{
    height:56px;
    padding:0 30px;

    border-radius:14px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-security {
    border: 1px solid rgb(99 93 93 / 25%);
    color: #163346f5;
}

.btn-security:hover {
    background: #163346f5;
    color: #fff;
}

.btn-browse{
    background:#163346f5;
    color:#fff;
}

.btn-browse:hover{
    background:#27506bf5;
    color:#fff;
}
/* =========================
   CARD HOVER ANIMATION
========================= */

.selling-card,
.why-card{
    transition:
    transform .4s ease,
    box-shadow .4s ease,
    border-color .4s ease;
}

.selling-card:hover,
.why-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 10px 30px rgba(37,99,235,.12);

    border-color:#c7d2fe;
}

/* ICON ANIMATION */
.step-icon,
.why-card i{
    transition:
    transform .4s ease,
    background .4s ease;
}

.selling-card:hover .step-icon,
.why-card:hover i{
    transform:scale(1.08) rotate(4deg);

    background:#dbeafe;
}

/* STEP NUMBER ANIMATION */
.step-number{
    transition:.4s ease;
}

.selling-card:hover .step-number{
    transform:
    translateX(-50%)
    scale(1.1);

    box-shadow:
    0 8px 20px rgba(22,163,74,.25);
}

/* BUTTON ANIMATION */
.btn-security,
.btn-browse{
    position:relative;
    overflow:hidden;
}

.btn-security::before,
.btn-browse::before{
    content:"";

    position:absolute;
    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:rgba(255,255,255,.15);

    transition:.5s;
}

.btn-security:hover::before,
.btn-browse:hover::before{
    left:100%;
}

/* CTA GLOW */
.crypto-cta{
    position:relative;
    overflow:hidden;
}

/* .crypto-cta::before{
    content:"";

    position:absolute;

    width:300px;
    height:300px;

    background:rgba(37,99,235,.25);

    border-radius:50%;

    top:-120px;
    right:-80px;

    filter:blur(80px);
} */

/* FLOATING ANIMATION */
@keyframes floatIcon{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0px);
    }
}



/* FADE UP */
.selling-card,
.why-card,
.crypto-cta{
    animation:fadeUp .8s ease forwards;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* STAGGER EFFECT */
.selling-card:nth-child(1){
    animation-delay:.1s;
}

.selling-card:nth-child(2){
    animation-delay:.2s;
}

.selling-card:nth-child(3){
    animation-delay:.3s;
}

.selling-card:nth-child(4){
    animation-delay:.4s;
}

.selling-card:nth-child(5){
    animation-delay:.5s;
}

.selling-card:nth-child(6){
    animation-delay:.6s;
}
/* =========================================
   RESPONSIVE
========================================= */

/* =========================
   LARGE DEVICES
========================= */

@media(max-width:1200px){

    .crypto-left-content{
        width:58%;
    }

    .crypto-left-content h1{
        font-size:44px;
    }

    .crypto-left-content h3{
        font-size:26px;
    }

    .crypto-right img{
        width:85%;
        height:auto;
        min-height:auto;
    }

    .steps-grid{
        grid-template-columns:repeat(3,1fr);
    }

}


/* =========================
   TABLET
========================= */

@media(max-width:991px){

    /* HERO */
    .crypto-hero-section{
        min-height:auto;
        padding:80px 0 40px;
        display:block;
    }

    .crypto-left{
        position:relative;
        z-index:5;
    }

    .crypto-left-content{
        width:100%;
        padding:0;
    }

    .breadcrumb{
        margin-bottom:18px;
    }

    .crypto-left-content h1{
        font-size:34px;
        line-height:1.2;
        margin-bottom:18px;
        letter-spacing:0;
    }

    .crypto-left-content h3{
        font-size:22px;
        line-height:1.5;
        margin-bottom:18px;
    }

    .crypto-left-content p{
        font-size:16px;
        line-height:1.8;
        margin-bottom:30px;
    }

    /* HERO FEATURES */
    .hero-features{
        flex-wrap:wrap;
        gap:18px;
    }

    .feature-box{
        width:48%;
    }

    .feature-box h4{
        font-size:16px;
    }

    .feature-box span{
        font-size:13px;
    }

    /* HERO IMAGE */
    .crypto-right{
        position:relative;
        width:100%;
        height:auto;
        margin-top:40px;
        opacity:1;
    }

    .crypto-right img{
        position:relative;
        width:100%;
        height:auto;
        min-height:auto;
        object-fit:contain;
        right:0;
        top:0;
    }

    /* STEPS */
    .steps-wrapper{
        margin-top:40px;
        padding:40px 25px;
        border-radius:20px;
    }

    .section-title{
        margin-bottom:40px;
    }

    .section-title h2{
        font-size:32px;
        line-height:1.3;
    }

    .section-title p{
        font-size:16px;
    }

    .steps-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .step-card{
        padding:35px 20px;
    }

    .step-card h3{
        font-size:18px;
    }

    .step-card ul li{
        font-size:14px;
    }

    .step-icon{
        width:80px;
        height:80px;
    }

    .step-icon i{
        font-size:34px;
    }

    /* ESCROW */
    .escrow-box{
        padding:30px 25px;
    }

    .escrow-title{
        font-size:30px;
        line-height:1.3;
    }

    .escrow-subtitle{
        font-size:16px;
    }

    .escrow-center-box{
        padding:25px 20px;
    }

    .flow-arrow{
        display:none;
    }

    .status-row{
        justify-content:center;
    }

    /* SELLING */
    .selling-title{
        font-size:32px;
        line-height:1.3;
    }

    .selling-subtitle{
        font-size:16px;
    }

    .selling-card{
        padding:28px 18px;
    }

    .selling-card h4{
        font-size:18px;
    }

    /* WHY */
    .why-card{
        padding:25px 15px;
    }

    .why-card h5{
        font-size:16px;
    }

    /* CTA */
    .crypto-cta{
        padding:35px 25px;
        text-align:center;
        justify-content:center;
    }

    .cta-left{
        flex-direction:column;
    }

    .cta-left h3{
        font-size:28px;
    }

    .cta-left p{
        max-width:100%;
    }

    .cta-buttons{
        justify-content:center;
    }

}


/* =========================
   MOBILE
========================= */

@media(max-width:767px){

    /* HERO */
    .crypto-hero-section{
        padding:60px 0 20px;
    }

    .breadcrumb{
        font-size:13px;
    }

    .crypto-left-content h1{
        font-size:28px;
        line-height:1.3;
    }

    .crypto-left-content h3{
        font-size:18px;
    }

    .crypto-left-content p{
        font-size:15px;
        line-height:1.8;
    }

    /* FEATURES */
    .hero-features{
        flex-direction:column;
        gap:16px;
    }

    .feature-box{
        width:100%;
    }

    .feature-box i{
        width:48px;
        height:48px;
        font-size:18px;
    }

    /* STEPS */
    .steps-wrapper{
        margin-top:30px;
        padding:30px 18px;
        border-radius:18px;
    }

    .section-title{
        margin-bottom:30px;
    }

    .section-title h2{
        font-size:26px;
        line-height:1.4;
    }

    .section-title p{
        font-size:15px;
    }

    .steps-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .step-card{
        padding:30px 18px;
        border-radius:18px;
    }

    .step-number{
        width:38px;
        height:38px;
        font-size:13px;
    }

    .step-icon{
        width:72px;
        height:72px;
        margin-bottom:20px;
    }

    .step-icon i{
        font-size:28px;
    }

    .step-card h3{
        font-size:18px;
    }

    /* ESCROW */
    .escrow-box{
        padding:20px 15px;
        border-radius:18px;
    }

    .escrow-title{
        font-size:24px;
        line-height:1.4;
    }

    .escrow-subtitle{
        font-size:14px;
    }

    .left-feature-box,
    .escrow-center-box,
    .protection-box{
        padding:18px 15px;
        border-radius:18px;
    }

    .flow-user{
        width:100%;
    }

    .flow-icon{
        width:65px;
        height:65px;
        font-size:22px;
    }

    .status-row{
        flex-direction:column;
        gap:10px;
    }

    .status-box{
        width:100%;
        text-align:center;
    }

    .trust-box{
        flex-direction:column;
        text-align:center;
    }

    .trust-icon{
        margin:auto;
    }

    /* SELLING */
    .selling-title{
        font-size:26px;
        line-height:1.4;
    }

    .selling-subtitle{
        font-size:15px;
    }

    .selling-card{
        padding:25px 15px;
    }

    .selling-card ul li{
        font-size:13px;
    }

    /* WHY */
    .why-card{
        padding:22px 14px;
    }

    .why-card i{
        width:55px;
        height:55px;
        font-size:20px;
    }

    .why-card h5{
        font-size:15px;
    }

    .why-card p{
        font-size:13px;
    }

    /* CTA */
    .crypto-cta{
        border-radius:18px;
        padding:25px 18px;
    }

    .cta-icon{
        width:75px;
        height:75px;
        font-size:30px;
    }

    .cta-left h3{
        font-size:22px;
        line-height:1.4;
    }

    .cta-left p{
        font-size:14px;
    }

    .cta-buttons{
        width:100%;
        flex-direction:column;
    }

    .btn-security,
    .btn-browse{
        width:100%;
        height:52px;
    }

}


/* =========================
   EXTRA SMALL
========================= */

@media(max-width:480px){

    .crypto-left-content h1{
        font-size:24px;
    }

    .crypto-left-content h3{
        font-size:17px;
    }

    .section-title h2,
    .selling-title,
    .escrow-title{
        font-size:22px;
    }

    .step-card,
    .selling-card,
    .why-card{
        padding:20px 14px;
    }

    .crypto-cta{
        padding:22px 15px;
    }

    .cta-left h3{
        font-size:20px;
    }

}