.ait-home-cta,
.ait-home-cta * {
    box-sizing: border-box;
}

.ait-home-cta {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 70px 20px 90px;
    background-color: #182642;
    background-image: url("../images/home/cta/CTA-Section.png");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ait-home-cta__inner {
    position: relative;
    z-index: 1;
    width: min(100%, 650px);
    margin: 0 auto;
    text-align: center;
}

.ait-home-cta__title {
    margin: 0 0 15px;
    color: #fff;
    font-family: "Space Grotesk", "Open Sans", Arial, sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0;
}

.ait-home-cta__description {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
}

.ait-home-cta__button-wrap {
    position: relative;
    z-index: 0;
    display: inline-flex;
    margin-top: 20px;
    isolation: isolate;
}

.ait-home-cta__button-wrap::before {
    position: absolute;
    z-index: -1;
    right: -8px;
    bottom: -8px;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(255, 255, 255, 0.77);
    border-radius: 5px;
    content: "";
    transition: border-color 0.4s ease;
    pointer-events: none;
}

.ait-home-cta__button-wrap:hover::before,
.ait-home-cta__button-wrap:focus-within::before {
    border-color: transparent;
}

.ait-home-cta__button {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 20px 25px 20px 36px;
    border: 0;
    border-radius: 5px;
    background: #fc3737;
    color: #fff;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.ait-home-cta__button:hover,
.ait-home-cta__button:focus-visible {
    background: #ff3838;
    color: #fff;
    text-decoration: none;
}

.ait-home-cta__button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.85);
    outline-offset: 3px;
}

.ait-home-cta__button svg {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin: -2px 10px 0;
}

.ait-home-cta__button path {
    fill: currentColor;
}

.ait-home-offer-modal,
.ait-home-offer-modal * {
    box-sizing: border-box;
}

.ait-home-offer-modal[hidden] {
    display: none !important;
}

.ait-home-offer-modal {
    position: fixed;
    z-index: 1999999999;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    padding: 100px 20px 40px;
    background: rgba(0, 0, 0, 0.62);
    animation: ait-home-offer-fade 350ms ease both;
}

.ait-home-offer-modal__panel {
    position: relative;
    width: min(100%, 640px);
    min-height: 380px;
    padding: 46px 48px 42px;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
}

.ait-home-offer-modal__close {
    position: absolute;
    top: 14px;
    right: 17px;
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #212c4a;
    font: 400 32px/1 Arial, sans-serif;
    cursor: pointer;
}

.ait-home-offer-modal__close:hover,
.ait-home-offer-modal__close:focus-visible {
    color: #ff3838;
}

.ait-home-offer-modal__title {
    margin: 0 42px 28px 0;
    color: #212c4a;
    font-family: "Space Grotesk", "Open Sans", Arial, sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.ait-home-offer-modal__form {
    display: grid;
    gap: 16px;
}

.ait-home-offer-modal__field {
    display: block;
}

.ait-home-offer-modal__field input {
    display: block;
    width: 100%;
    height: 58px;
    padding: 0 18px;
    border: 1px solid #d7d9df;
    border-radius: 2px;
    background: #fff;
    color: #212c4a;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1;
    outline: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ait-home-offer-modal__field input:focus {
    border-color: #ff3838;
    box-shadow: 0 0 0 3px rgba(255, 56, 56, 0.14);
}

.ait-home-offer-modal__field input::placeholder {
    color: #7b8190;
    opacity: 1;
}

.ait-home-offer-modal__honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.ait-home-offer-modal__submit {
    justify-self: start;
    min-width: 155px;
    min-height: 54px;
    padding: 14px 28px;
    border: 0;
    border-radius: 3px;
    background: #ff3838;
    color: #fff;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
}

.ait-home-offer-modal__submit:hover,
.ait-home-offer-modal__submit:focus-visible {
    background: #e82f2f;
}

.ait-home-offer-modal__submit:disabled {
    cursor: wait;
    opacity: 0.7;
}

.ait-home-offer-modal__status {
    min-height: 24px;
    margin: 0;
    color: #212c4a;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

.ait-home-offer-modal__status.is-error {
    color: #d82727;
}

.ait-home-offer-modal__status.is-success {
    color: #17763b;
}

body.ait-home-offer-is-open {
    overflow: hidden;
}

@keyframes ait-home-offer-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 1024px) {
    .ait-home-cta {
        padding-top: 55px;
        padding-bottom: 62px;
    }

    .ait-home-cta__title {
        font-size: 35px;
    }
}

@media (max-width: 767px) {
    .ait-home-cta {
        padding-right: 15px;
        padding-left: 15px;
    }

    .ait-home-cta__title {
        font-size: 30px;
        line-height: 40px;
    }

    .ait-home-cta__button {
        min-height: 50px;
        padding: 15px 15px 15px 25px;
    }

    .ait-home-cta__button-wrap::before {
        right: -5%;
        bottom: -3%;
        height: 82%;
    }

    .ait-home-offer-modal {
        padding: 40px 15px;
    }

    .ait-home-offer-modal__panel {
        min-height: 0;
        padding: 38px 22px 30px;
    }

    .ait-home-offer-modal__title {
        font-size: 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ait-home-cta__button,
    .ait-home-cta__button-wrap::before,
    .ait-home-offer-modal {
        animation: none;
        transition: none;
    }
}

/* AIT CTA ORIGINAL VISUAL MATCH START */
@media (min-width: 1025px) {
    .ait-home-cta {
        padding: 90px 20px 110px;
    }

    .ait-home-cta__title {
        font-size: 35px;
        line-height: 44px;
    }

    .ait-home-cta__button-wrap {
        margin-top: 65px;
    }

    .ait-home-cta__button {
        min-height: 62px;
    }
}
/* AIT CTA ORIGINAL VISUAL MATCH END */
