/* =============================================================================
   CTA Section — Dark & Light versions

   HTML structure:
   .cta-section.section.cta-section--dark | .cta-section--light
     .container
       .cta-section-inner
         .cta-section-left
           p.cta-section-subtitle
           .cta-section-title  (h1/h2 inside)
           ul.cta-section-items
             li.cta-section-item
               span.cta-section-item-icon  (SVG)
               span.cta-section-item-text
           .cta-section-buttons
             a.btn | a.btn.blue-btn | a.btn.transparent-blue | a.btn.transparent-blur
         .cta-section-right
           .cta-section-form
             [wpforms shortcode output]

   Colors:
     charcoal_blue: #2A3E49
     stormy_blue:   #53707F
     golden_yellow: #F4CA35
     dirty_white:   #F4F5F3
     light_slate:   #CACFD7
     white:         #FFFFFF
   ============================================================================= */


/* =============================================================================
   SHARED BASE — both versions
   ============================================================================= */

/* Inner two-column layout */
.cta-section .cta-section-inner {
    display: flex;
    align-items: center;
    gap: 56px;
}

/* Left column */
.cta-section .cta-section-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Right column — form card */
.cta-section .cta-section-right {
    flex-shrink: 0;
    width: 100%;
    max-width: 520px;
}

/* Subtitle (small label above title) */
.cta-section .cta-section-subtitle {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 16px;
}

/* Title wrapper */
.cta-section .cta-section-title {
    margin-bottom: 32px;
}

.cta-section .cta-section-title h1,
.cta-section .cta-section-title h2,
.cta-section .cta-section-title .h1,
.cta-section .cta-section-title .h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 110%;
    margin: 0;
}

/* Checkmark list */
.cta-section .cta-section-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 32px;
    row-gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.cta-section .cta-section-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta-section .cta-section-item-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-section .cta-section-item-icon svg {
    width: 48px;
    height: 48px;
}

.cta-section .cta-section-item-text {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: normal;
}

/* Buttons row */
.cta-section .cta-section-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-section .cta-section-buttons .btn {
    height: 48px;
    min-width: 240px;
    padding: 14px 24px;
}

/* Form card wrapper */
.cta-section .cta-section-form {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 40px 0 rgba(42, 62, 73, 0.12);
}

/* Form card title ("Prefer a call back?") — rendered by wpforms or custom HTML */
.cta-section .cta-section-form .cta-form-title,
.cta-section .cta-section-form h2,
.cta-section .cta-section-form h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 120%;
    color: #2A3E49;
    margin: 0 0 24px;
}

/* Override submit button inside this form → dark blue */
.cta-section .cta-section-form .wpforms-submit-container button[type="submit"],
.cta-section .cta-section-form .wpforms-submit-container button[type="submit"]:not(:hover):not(:active) {
    background-color: #2A3E49;
    color: #FFFFFF;
}

.cta-section .cta-section-form .wpforms-submit-container button[type="submit"]:hover {
    background-color: #53707F;
}


/* =============================================================================
   DARK VERSION  (.cta-section--dark)
   Dark blue-gray background image (background_big_blue_2.webp)
   ============================================================================= */

.cta-section--dark {
    background-color: #2A3E49;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Subtitle — yellow label */
.cta-section--dark .cta-section-subtitle,
.cta-section--dark .cta-section-left .cta-section-subtitle {
    color: #FFFFFF !important;
}

/* Title — all heading variants white */
.cta-section--dark .cta-section-title,
.cta-section--dark .cta-section-title h1,
.cta-section--dark .cta-section-title h2,
.cta-section--dark .cta-section-title h3,
.cta-section--dark .cta-section-title h4,
.cta-section--dark .cta-section-title .h1,
.cta-section--dark .cta-section-title .h2,
.cta-section--dark .cta-section-title p,
.cta-section--dark .cta-section-title strong {
    font-size: 48px;
    font-weight: 800;
    line-height: 110%;
    color: #FFFFFF !important;
}

/* Checkmark item text — off-white */
.cta-section--dark .cta-section-item-text,
.cta-section--dark .cta-section-items .cta-section-item .cta-section-item-text {
    color: #F4F5F3 !important;
}

/* transparent-blue btn in dark version — white outline */
.cta-section--dark .cta-section-buttons .btn.transparent-blue {
    color: #FFFFFF;
    border-color: #FFFFFF;
	border-width: 1px;
}

.cta-section--dark .cta-section-buttons .btn.transparent-blue:hover {
    color: #F4CA35;
    border-color: #F4CA35;
}


/* =============================================================================
   LIGHT VERSION  (.cta-section--light)
   Light off-white / noise texture background
   ============================================================================= */

.cta-section--light {
    background-color: #F4F5F3;
    background-image: url("../../images/background_noise_white.webp");
    background-repeat: repeat;
    background-size: contain;
}

.cta-section--light .cta-section-subtitle {
    color: #53707F;
}

.cta-section--light .cta-section-title,
.cta-section--light .cta-section-title h1,
.cta-section--light .cta-section-title h2,
.cta-section--light .cta-section-title h3,
.cta-section--light .cta-section-title h4,
.cta-section--light .cta-section-title .h1,
.cta-section--light .cta-section-title .h2,
.cta-section--light .cta-section-title p,
.cta-section--light .cta-section-title strong {
    color: #2A3E49;
    font-size: 48px;
    font-weight: 800;
    line-height: 110%;
}

.cta-section--light .cta-section-item-text {
    color: #2A3E49;
}

/* transparent-blue btn stays dark-outline on light bg */
.cta-section--light .cta-section-buttons .btn.transparent-blue {
    color: #2A3E49;
    border-color: #2A3E49;
	border-width: 1px;
}


/* =============================================================================
   RESPONSIVE — Tablet  (≤ 1024px)
   Compress gaps, shrink form column
   ============================================================================= */
@media (max-width: 1024px) {
    .cta-section .cta-section-inner {
        gap: 32px;
    }

    .cta-section .cta-section-right {
        max-width: 400px;
    }

    .cta-section .cta-section-title,
    .cta-section .cta-section-title h1,
    .cta-section .cta-section-title h2,
    .cta-section .cta-section-title h3,
    .cta-section .cta-section-title h4,
    .cta-section .cta-section-title .h1,
    .cta-section .cta-section-title .h2,
    .cta-section .cta-section-title p,
    .cta-section .cta-section-title strong {
        font-size: 40px;
    }

    .cta-section .cta-section-form {
        padding: 32px 28px;
    }
}


/* =============================================================================
   RESPONSIVE — Tablet portrait  (≤ 768px)
   Stack columns vertically; form goes below content
   ============================================================================= */
@media (max-width: 768px) {
    .cta-section .cta-section-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 56px;
    }

    .cta-section .cta-section-right {
        max-width: 100%;
        width: 100%;
    }

    .cta-section .cta-section-title {
        margin-bottom: 32px;
    }

    .cta-section .cta-section-title,
    .cta-section .cta-section-title h1,
    .cta-section .cta-section-title h2,
    .cta-section .cta-section-title h3,
    .cta-section .cta-section-title h4,
    .cta-section .cta-section-title .h1,
    .cta-section .cta-section-title .h2,
    .cta-section .cta-section-title p,
    .cta-section .cta-section-title strong {
        font-size: 36px;
    }

    .cta-section .cta-section-items {
        row-gap: 16px;
        margin-bottom: 0;
    }

    .cta-section .cta-section-buttons .btn {
        min-width: 160px;
    }

    .cta-section .cta-section-form {
        padding: 28px 24px;
    }

    .cta-section .cta-section-form h2,
    .cta-section .cta-section-form h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .cta-section .cta-section-buttons {
        display: none;
    }
    .cta-section .cta-section-items {
        gap: 12px;
    }
    .cta-section .cta-section-item {
        min-height: 46px;
    }
    .cta-section .cta-section-item-icon svg {
        width: 32px;
        height: 32px;
    }
    .cta-section .cta-section-item-icon {
        width: 32px;
        height: 32px;
    }
    .cta-section .cta-section-subtitle {
        font-size: 18px;
        margin-bottom: 16px;
    }
}


/* =============================================================================
   RESPONSIVE — Mobile  (≤ 576px)
   Single column list, full-width buttons
   ============================================================================= */
@media (max-width: 576px) {

    .cta-section .cta-section-title h1,
    .cta-section .cta-section-title h2,
    .cta-section .cta-section-title .h1,
    .cta-section .cta-section-title .h2 {
        font-size: 30px;
    }

    /* Checkmarks: single column on mobile */
    .cta-section .cta-section-items {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 0;
    }

    .cta-section .cta-section-item-text {
        font-size: 15px;
    }

    /* Buttons: stack vertically */
    .cta-section .cta-section-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-section .cta-section-buttons .btn {
        min-width: unset;
        width: 100%;
    }

    .cta-section .cta-section-form {
        padding: 24px 16px;
    }

    .cta-section--light .cta-section-form {
        /* on mobile remove card shadow, it floats edge to edge */
        border-radius: 12px;
    }
}
/*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiJjdGEtc2VjdGlvbi5jc3MiLCJzb3VyY2VzQ29udGVudCI6W119 */
