/* ==========================
   HERO
========================== */

.hero{

    min-height:100vh;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:110px 20px 60px;

}

.hero-logo{

    width:120px;

    height:120px;

    border-radius:50%;

    margin-bottom:25px;

    box-shadow:0 0 35px rgba(0,230,118,.35);

}

.hero h1{

    font-size:38px;

    font-weight:700;

    margin-bottom:10px;

}

.hero p{

    color:#00E676;

    font-size:20px;

    font-weight:600;

    margin-bottom:15px;

}

.hero span{

    max-width:650px;

    color:#B6C2CF;

    line-height:1.8;

    margin-bottom:40px;

}

/* ==========================
   BUTTONS
========================== */

.hero-buttons{

    width:100%;

    max-width:340px;

    display:flex;

    flex-direction:column;

    gap:18px;

}

.hero-buttons a{

    padding:16px;

    border-radius:14px;

    font-size:18px;

    font-weight:600;

    transition:.25s;

}

.free-btn{

    background:#00E676;

    color:#08111F;

}

.free-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 28px rgba(0,230,118,.35);

}

.premium-btn{

    border:2px solid #00E676;

    color:#00E676;

    background:transparent;

}

.premium-btn:hover{

    background:#00E676;

    color:#08111F;

}

/* ==========================
   WHY SECTION
========================== */

.why{

    padding:70px 20px;

}

.why h2{

    text-align:center;

    margin-bottom:35px;

    font-size:30px;

}

.features{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));

    gap:22px;

}

.feature{

    background:#101B2D;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:30px;

    text-align:center;

    transition:.25s;

}

.feature:hover{

    transform:translateY(-8px);

    border-color:#00E676;

}

.feature{

    font-size:42px;

}

.feature h3{

    margin:18px 0 10px;

}

.feature p{

    color:#94A3B8;

    line-height:1.6;

}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

.hero h1{

font-size:30px;

}

.hero p{

font-size:17px;

}

.hero-logo{

width:95px;

height:95px;

}

.hero-buttons{

max-width:100%;

}

}
