body {
    margin: 0;
    font-family: Poppins, sans-serif;
    background: #09111f;
    color: #fff
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: url(images/hero.png) center/cover
}

h1 {
    font-size: 4rem
}

.badge {
    display: inline-block;
    align-items: center;
    background: gold;
    color: #000;
    padding: 8px 18px;
    border-radius: 20px
}

.cta {
    display: inline-block;
    align-items: center;
    margin-top: 20px;
    padding: 14px 28px;
    background: #fff;
    color: #0d6efd;
    border-radius: 30px;
    text-decoration: none
}

section {
    padding: 60px 8%
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px
}

article,
.stats div {
    background: rgba(255, 255, 255, .08);
    padding: 25px;
    border-radius: 18px;
    backdrop-filter: blur(8px);
    transition: .3s
}

article:hover,
.stats div:hover {
    transform: translateY(-8px)
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px
}

footer {
    text-align: center;
    padding: 50px;
    background: #050b15
}