*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
    background:#070707;
    color:#fff;
}

.container{
    
    width:min(1200px,90%);
    margin:auto;
    padding:60px 0;
}
/* ---------------- */

.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    margin-bottom:27px;
}

.hero__content{
    max-width:700px;
    margin-top: 70px;
}

.hero h1{
    font-size:42px;
    margin-bottom:20px;
    position:relative;
    padding-left:18px;
}

.hero h1::before{
    content:"";
    position:absolute;
    left:0;
    top:5px;
    width:5px;
    height:42px;
    background:#18ff53;
}

.hero p{
    color:#b5b5b5;
    line-height:1.7;
    font-size:17px;
}

.hero__icon img{
    width:150px;
}

/* ---------------- */

.card{
    background:#111;
    border:1px solid #222;
    border-radius:10px;
    padding:30px;
    margin-bottom:25px;
}

.card h2{
    font-size:26px;
    margin-bottom:20px;
    position:relative;
    padding-left:18px;
}

.card h2::before{
    content:"";
    position:absolute;
    left:0;
    top:5px;
    width:4px;
    height:30px;
    background:#19ff5c;
}

.card p{
    color:#b6b6b6;
    line-height:1.8;
}

/* ---------------- */

.steps{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
    margin-top:40px;
}

.step{
    text-align:center;
}

.step__icon{
    width:70px;
    height:70px;
    margin:auto;
    border:2px solid #16ff5a;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    color:#16ff5a;
}

.step__number{
    display:block;
    margin:18px 0;
    font-size:24px;
    font-weight:bold;
}

.step p{
    color:#b9b9b9;
    font-size:15px;
    line-height:1.5;
}

/* ---------------- */

.info-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.list{
    list-style:none;
}

.list li{
    margin-bottom:18px;
    color:#cfcfcf;
    position:relative;
    padding-left:24px;
}

.list li::before{
    content:"✔";
    color:#18ff53;
    position:absolute;
    left:0;
}

/* ---------------- */

.card--accent{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:max-content;
    padding:14px 28px;
    margin-top:30px;
    border:2px solid #18ff53;
    border-radius:8px;
    color:#18ff53;
    text-decoration:none;
    transition:.3s;
}

.btn:hover{
    background:#18ff53;
    color:#000;
}

/* ---------------- */

@media (max-width:992px){

    .hero{
        flex-direction:column;
        text-align:center;
    }

    .hero h1{
        padding-left:0;
    }

    .hero h1::before{
        display:none;
    }

    .steps{
        grid-template-columns:repeat(2,1fr);
    }

    .info-grid{
        grid-template-columns:1fr;
    }

}

@media (max-width:600px){

    .steps{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:34px;
    }

    .card{
        padding:20px;
    }

}