/* =========================
   HOME HERO
========================= */

.home-hero {
    width: 100%;
    padding: 170px 8% 100px;
    text-align: center;
}

.home-hero h1 {
    font-size: 58px;
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(30, 167, 255, .3);
}

.home-hero p {
    max-width: 900px;
    margin: auto;
    color: #d8e2f0;
    font-size: 18px;
    line-height: 2;
}


/* =========================
   FITUR
========================= */

.fitur {
    width: 100%;
    padding: 70px 8%;
}

.fitur h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #fff;
}

.fitur-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.fitur-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 22px;
    padding: 35px;
    text-align: center;
    backdrop-filter: blur(15px);
    transition: .35s;
}

.fitur-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 35px rgba(30, 167, 255, .35);
}

.fitur-card i {
    font-size: 65px;
    color: #1ea7ff;
    margin-bottom: 20px;
    transition: .3s;
}

.fitur-card:hover i {
    transform: scale(1.2) rotate(8deg);
}

.fitur-card h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 23px;
}

.fitur-card p {
    color: #dbe4f0;
    line-height: 1.9;
}


/* =========================
   KEUNGGULAN
========================= */

.keunggulan {
    padding: 90px 8%;
}

.keunggulan h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.keunggulan-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.item {
    background: rgba(255, 255, 255, .05);
    border-radius: 18px;
    padding: 25px;
    font-size: 18px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: .3s;
    border: 1px solid rgba(255, 255, 255, .08);
}

.item:hover {
    transform: translateX(8px);
    box-shadow: 0 0 20px rgba(30, 167, 255, .3);
}

.item i {
    color: #1ea7ff;
    font-size: 24px;
}


/* =========================
   FOOTER
========================= */

footer {
    margin-top: 60px;
    padding: 40px 8%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .03);
}

footer h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

footer p {
    color: #dbe4f0;
    margin-bottom: 15px;
    line-height: 1.8;
}

footer span {
    color: #8aa5c5;
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px) {
    .home-hero h1 {
        font-size: 38px;
    }
    .home-hero p {
        font-size: 16px;
    }
    .fitur h2,
    .keunggulan h2 {
        font-size: 32px;
    }
}