/* HEADER */

header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 40px;
}

/* HERO */

.hero {
        margin-bottom: 48px;
}

.hero h1 {
        font-size: 48px;
        line-height: 1.02;
        letter-spacing: -2px;
        font-weight: 700;
        margin-bottom: 18px;
}

.hero p {
        font-size: 18px;
        line-height: 1.5;
        color: var(--muted);
        margin-bottom: 28px;
}

.hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 42px;
}

.hero-buttons a {
        text-decoration: none;
}

.hero-buttons .primary-btn,
.hero-buttons .secondary-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
}

/* SECTIONS */

section {
        margin-top: 70px;
}

.section-title {
        font-size: 34px;
        line-height: 1.1;
        letter-spacing: -1.5px;
        margin-bottom: 16px;
        font-weight: 700;
}

.section-sub {
        color: var(--muted);
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 28px;
}

/* CTA FINAL */

.final-cta {
        margin-top: 90px;
        text-align: center;
        padding-bottom: 60px;
}

.email-box {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-top: 28px;
}

input {
        border: none;
        background: white;
        padding: 18px 20px;
        border-radius: 22px;
        font-size: 16px;
        box-shadow: var(--shadow);
        outline: none;
}

/* PROBLEMS */

.cards {
        display: flex;
        flex-direction: column;
        gap: 16px;
}

/* FOOTER */

footer {
        margin-top: 40px;
        text-align: center;
        color: var(--muted);
        font-size: 14px;
        padding-bottom: 20px;
}