/* =========================================
   FINAL CTA
========================================= */

.final-cta {
    padding: 100px 0;
    background: #ffffff;
}


/* =========================================
   CTA BOX
========================================= */

.final-cta-box {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #1d2928;
    color: #ffffff;
}


/* =========================================
   CTA CONTENT
========================================= */

.final-cta-content {
    position: relative;
    z-index: 2;

    width: 58%;

    padding: 70px;
}

.final-label {
    display: inline-block;

    margin-bottom: 20px;

    color: #9fc0ba;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.final-cta-content h2 {
    max-width: 650px;

    margin: 0;

    font-size: clamp(42px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -2.5px;
    font-weight: 800;
}

.final-cta-content h2 span {
    display: block;

    color: #9fc0ba;
}

.final-cta-content p {
    max-width: 520px;

    margin: 25px 0 30px;

    color: #c3cecc;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   FORM
========================================= */

.final-form {
    max-width: 520px;
}

.final-form label {
    display: block;

    margin-bottom: 8px;

    color: #e5ebe9;

    font-size: 12px;
    font-weight: 700;
}

.final-input-wrap {
    display: flex;

    background: #ffffff;
}

.final-input-wrap input {
    width: 100%;
    min-width: 0;

    padding: 17px;

    border: 0;
    outline: none;

    color: #1d2928;

    font-size: 15px;
}

.final-input-wrap button {
    flex-shrink: 0;

    padding: 0 22px;

    border: 0;

    background: #356b68;
    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition: background 0.25s ease;
}

.final-input-wrap button:hover {
    background: #274f4d;
}

.final-input-wrap button span {
    margin-left: 8px;

    font-size: 17px;
}


/* =========================================
   NOTE
========================================= */

.final-note {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-top: 14px;

    color: #9ca9a6;

    font-size: 11px;
}

.final-note span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 18px;
    height: 18px;

    border-radius: 50%;

    background: #31504d;
    color: #9fc0ba;

    font-size: 10px;
}


/* =========================================
   CTA IMAGE
========================================= */

.final-cta-decoration {
    position: absolute;

    top: 0;
    right: 0;

    width: 42%;
    height: 100%;

    overflow: hidden;

    background: #29413f;
}

.final-cta-decoration::after {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.18);
}

.final-cta-decoration img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .final-cta-content {
        width: 65%;
        padding: 50px;
    }

    .final-cta-decoration {
        width: 35%;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .final-cta {
        padding: 70px 0;
    }

    .final-cta-box {
        display: block;
    }

    .final-cta-content {
        width: 100%;
        padding: 45px 28px;
    }

    .final-cta-content h2 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .final-cta-content p {
        font-size: 14px;
    }

    .final-input-wrap {
        display: block;

        background: transparent;
    }

    .final-input-wrap input {
        margin-bottom: 10px;

        background: #ffffff;
    }

    .final-input-wrap button {
        width: 100%;

        min-height: 52px;
    }

    .final-cta-decoration {
        position: relative;

        width: 100%;
        height: 280px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .final-cta-content {
        padding: 40px 22px;
    }

    .final-cta-content h2 {
        font-size: 37px;
    }

    .final-cta-decoration {
        height: 230px;
    }
}