html {
    scroll-behavior: smooth;
}

body {
    background: #f7f7f2;
}

section.hero {
    position: relative;
    overflow: hidden;
}
.section-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-hero {
    background-image: url("../img/hero.jpg");
}

.bg-1 {
    background-image: url("../img/1.jpg");
}

.bg-2 {
    background-image: url("../img/2.jpg");
}

.bg-3 {
    background-image: url("../img/3.jpg");
}

#hero {
    background:
        radial-gradient(circle at 20% 20%, rgba(72, 199, 116, 0.28), transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(121, 87, 213, 0.22), transparent 35%),
        linear-gradient(135deg, #111827 0%, #0b1020 55%, #151515 100%);
}

#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
}

/*#about {*/
/*    background:*/
/*        linear-gradient(180deg, #f7f7f2 0%, #ffffff 100%);*/
/*}*/

#about {
    background:
        radial-gradient(circle at 80% 10%, rgba(255, 56, 96, 0.12), transparent 28%),
        #dee8da;
}

#benefits {
    background:
        radial-gradient(circle at 10% 80%, rgba(102, 236, 148, 0.58), transparent 30%),
        #98c9ff;
}

#features {
    background:
        radial-gradient(circle at 70% 20%, rgba(72, 199, 116, 0.18), transparent 30%),
        linear-gradient(135deg, #111827 0%, #16181d 100%);
}

#trust {
    background:
        linear-gradient(127deg, #fdcece 0%, #ffffc8 100%);
}

/*#join {*/
/*    background:*/
/*        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.28), transparent 30%),*/
/*        linear-gradient(135deg, #257942 0%, #48c774 100%);*/
/*}*/

.box,
.message {
    border-radius: 18px;
}

.box {
    box-shadow: 0 18px 45px rgba(10, 10, 10, 0.08);
}

#hero .box,
#features .box {
    background: rgba(255, 255, 255, 0.92);
}

.navbar {
    box-shadow: 0 10px 30px rgba(10, 10, 10, 0.18);
}

.title {
    letter-spacing: -0.03em;
}

p {
    line-height: 1.75;
}

@media screen and (max-width: 768px) {
    .hero .title.is-1 {
        font-size: 2.4rem;
    }

    .hero .title.is-2 {
        font-size: 2rem;
    }

    .hero-body {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}