/* =====================================
   PLATFORM
===================================== */

.platform{

    background:#081018;

    color:#fff;

    padding:140px 0;

}

.section-heading{

    text-align:center;

    max-width:800px;

    margin:auto;

    margin-bottom:80px;

}

.section-heading span{

    color:#84CC16;

    letter-spacing:3px;

    font-size:14px;

}

.section-heading h2{

    font-size:58px;

    margin:20px 0;

    line-height:1.15;

}

.section-heading p{

    color:#b8c4cb;

    font-size:18px;

}

.platform-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.platform-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:35px;

    transition:.35s;

    backdrop-filter:blur(20px);

}

.platform-card:hover{

    transform:translateY(-12px);

    border-color:#84CC16;

}

.platform-card .icon{

    width:70px;

    height:70px;

    background:linear-gradient(135deg,#22C55E,#2F855A);

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:18px;

    font-size:28px;

    margin-bottom:25px;

}

.platform-card h3{

    margin-bottom:15px;

    font-size:24px;

}

.platform-card p{

    color:#b9c5cc;

    line-height:1.8;

}

@media(max-width:1100px){

.platform-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.platform-grid{

grid-template-columns:1fr;

}

.section-heading h2{

font-size:40px;

}

}