* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    background: #f7f5f2;
    color: #292725;
    line-height: 1.6;
}

.page {
    width: 100%;
    overflow: hidden;
}

/* HERO */

.hero {
    min-height: 92vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 70px 25px;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(255, 255, 255, 0.95),
            rgba(247, 245, 242, 0.85)
        );
}

.badge {
    margin-bottom: 28px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;

    color: #8c8175;
}

.hero h1 {
    max-width: 850px;

    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -2px;

    margin-bottom: 30px;
}

.hero-text {
    max-width: 650px;

    font-size: 19px;
    line-height: 1.7;

    color: #6d665f;

    margin-bottom: 40px;
}

/* HERO BUTTON */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 220px;

    padding: 16px 30px;

    border: none;
    border-radius: 50px;

    background: #292725;
    color: white;

    font-size: 16px;
    font-weight: 600;

    text-decoration: none;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.button:hover {
    background: #49443f;
    transform: translateY(-2px);
}

/* SECTIONS */

.section {
    max-width: 1100px;

    margin: 0 auto;

    padding: 110px 25px;
}

.section h2 {
    text-align: center;

    font-size: 42px;
    font-weight: 400;

    margin-bottom: 60px;
}

/* FEATURES */

.features {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.feature {
    padding: 40px 30px;

    background: #ffffff;

    border-radius: 20px;

    text-align: center;
}

.icon {
    width: 60px;
    height: 60px;

    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eee9e3;

    font-size: 25px;
}

.feature h3 {
    font-size: 21px;
    font-weight: 500;

    margin-bottom: 12px;
}

.feature p {
    color: #716b65;
}

/* HOW IT WORKS */

.how {
    max-width: 900px;
}

.steps {
    display: flex;
    flex-direction: column;

    gap: 25px;
}

.step {
    display: flex;
    align-items: flex-start;

    gap: 25px;

    padding: 30px;

    background: #ffffff;

    border-radius: 18px;
}

.step > span {
    flex-shrink: 0;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #292725;
    color: white;

    font-weight: 600;
}

.step h3 {
    font-size: 20px;
    font-weight: 500;

    margin-bottom: 5px;
}

.step p {
    color: #716b65;
}

/* SUBSCRIBE */

.subscribe {
    padding: 100px 25px;

    background: #ebe6df;
}

.subscribe-card {
    max-width: 620px;

    margin: 0 auto;

    padding: 60px 40px;

    background: #ffffff;

    border-radius: 28px;

    text-align: center;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.06);
}

.small-title {
    font-size: 12px;
    font-weight: 600;

    letter-spacing: 2px;

    color: #8c8175;

    margin-bottom: 15px;
}

.subscribe-card h2 {
    font-size: 56px;
    font-weight: 400;

    margin-bottom: 15px;
}

.subscribe-card h2 span {
    font-size: 20px;
    color: #77716b;
}

.subscribe-card > p {
    max-width: 430px;

    margin: 0 auto 30px;

    color: #6d665f;
}

/* SUBSCRIBE BUTTON */

.subscribe-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 220px;

    padding: 16px 30px;

    border: none;
    border-radius: 50px;

    background: #292725;
    color: #ffffff;

    font-size: 16px;
    font-weight: 600;

    text-decoration: none;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.subscribe-button:hover {
    background: #49443f;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.12);
}

.subscribe-button:active {
    transform: translateY(0);
}

.note {
    font-size: 13px !important;

    color: #918b85 !important;

    margin-bottom: 0 !important;
}

/* FOOTER */

footer {
    padding: 50px 25px;

    text-align: center;

    font-size: 13px;

    color: #88817a;
}

footer p {
    max-width: 650px;

    margin: 0 auto 15px;
}

footer .copyright {
    margin-top: 25px;
}

/* MOBILE */

@media (max-width: 750px) {

    .hero {
        min-height: 85vh;

        padding:
            60px 20px;
    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .hero-text {
        font-size: 17px;
    }

    .section {
        padding: 75px 20px;
    }

    .section h2 {
        font-size: 34px;

        margin-bottom: 40px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .feature {
        padding: 35px 25px;
    }

    .subscribe {
        padding: 70px 20px;
    }

    .subscribe-card {
        padding: 45px 25px;
    }

    .subscribe-card h2 {
        font-size: 48px;
    }

    .subscribe-button {
        width: 100%;
        min-width: 0;
    }

    .step {
        padding: 25px 20px;
    }
}
