.cta-final {
    background: var(--blue);
    color: var(--green);
    padding: 7.5rem var(--pad-x);
    position: relative;
    overflow: hidden;
}

.cta-final__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
}

.cta-final h2 {
    font-size: clamp(3rem, 9vw, 9.25rem);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: .88;
    color: var(--green);
}

.cta-final h2 em {
    font-style: normal;
    color: var(--white);
}

.cta-final p {
    font-size: clamp(1.125rem, 1.6vw, 1.5rem);
    line-height: 1.45;
    max-width: 42ch;
    margin-top: 2rem;
    color: var(--green);
}

.cta-final__row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.cta-final__btn {
    display: inline-flex;
    align-items: center;
    gap: .875rem;
    padding: 1.25rem 2rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    background: var(--green);
    color: var(--blue);
    transition: all .25s var(--ease);
}

.cta-final__btn:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.cta-final__btn .arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--blue);
    color: var(--green);
}

.cta-final__btn .arrow svg {
    width: .75rem;
    height: .75rem;
}

.cta-final__btn .arrow svg path {
    stroke: var(--green);
}

/* Email written as plain text, not a button: a mailto link opens the mail
   app on mobile, but on desktop it can do nothing if none is configured.
   Written this way, it can always be read and copied. */
.cta-final__mail {
    margin-top: 1.625rem;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, .85);
}

.cta-final__mail a {
    color: var(--green);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1.5px;
    transition: color .2s var(--ease);
}

.cta-final__mail a:hover {
    color: var(--white);
}

@media (max-width: 560px) {
    .cta-final h2 {
        font-size: clamp(2.375rem, 10.5vw, 2.875rem);
    }
    .cta-final__btn {
        width: 100%;
        justify-content: center;
        white-space: normal;
        text-align: center;
    }    
}
