:root {
    --home-blue: #2a4451;
    --home-blue-dark: #203743;
    --home-blue-soft: #3c5e6d;
    --home-green: #a4bd3c;
    --home-green-soft: #e8eece;
    --home-grey: #e1e6e9;
    --home-grey-soft: #f6f8f9;
}

.homepage-messaging {
    color: var(--home-blue);
    overflow-x: clip;
}

.homepage-messaging h1,
.homepage-messaging h2,
.homepage-messaging h3,
.homepage-messaging h4,
.homepage-messaging .home-eyebrow {
    font-family: Saira, Open Sans, sans-serif;
    text-wrap: balance;
}

.homepage-messaging p {
    font-size: 16px;
    line-height: 1.7;
}

.home-section {
    padding: 80px 0;
}

.home-section-tight {
    padding: 48px 0;
}

.home-eyebrow {
    color: var(--home-green);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.home-section-heading {
    margin: 0 auto 42px;
    max-width: 780px;
    text-align: center;
}

.home-section-heading h2 {
    color: var(--home-blue);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 18px;
}

.home-section-heading p {
    color: var(--home-blue-soft);
    margin-bottom: 0;
}

.home-hero {
    background: #eaeef1;
    min-height: clamp(480px, 62vh, 620px);
    overflow: hidden;
    padding: clamp(72px, 9vh, 96px) 0 clamp(56px, 7vh, 80px);
    position: relative;
}

.home-hero__media {
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 0;
}

.home-hero__photo {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    transform: translateX(85px);
    width: 100%;
}

.home-hero-content {
    position: relative;
    z-index: 1;
}

.home-hero h1 {
    color: var(--home-blue);
    font-size: clamp(40px, 5.4vw, 72px);
    font-weight: 800;
    line-height: 0.98;
    margin-bottom: 18px;
    max-width: 640px;
    padding: 0;
}

.home-hero-divider {
    background: var(--home-green);
    border-radius: 2px;
    height: 4px;
    margin-bottom: 22px;
    width: 56px;
}

.home-hero .lead {
    color: var(--home-blue);
    font-size: clamp(20px, 2.1vw, 28px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 18px;
    max-width: 560px;
}

.home-hero-lead-line {
    display: block;
}

.home-hero-copy {
    color: var(--home-blue-soft);
    max-width: 420px;
}

.home-hero-card {
    align-items: flex-start;
    background: #ffffff;
    border-radius: 18px;
    bottom: clamp(12px, 2.5vh, 24px);
    box-shadow: 0 16px 42px rgba(32, 55, 67, 0.14);
    display: flex;
    gap: 14px;
    max-width: 520px;
    padding: 18px 20px;
    position: absolute;
    right: 12px;
    width: min(520px, 54vw);
    z-index: 2;
}

.home-hero-card__icon {
    align-items: center;
    background: var(--home-green-soft);
    border-radius: 50%;
    color: var(--home-blue);
    display: flex;
    flex: 0 0 44px;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.home-hero-card__copy {
    min-width: 0;
}

.home-hero-card__copy p {
    color: var(--home-blue-soft);
    font-size: 14px;
    line-height: 1.45;
    margin: 0;
}

.home-hero-card__title {
    color: var(--home-blue);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 6px;
    padding: 0;
}

.home-hero-panel-body ul,
.home-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.home-hero-panel-body li,
.home-list li {
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.home-hero-panel-body li:last-child,
.home-list li:last-child {
    margin-bottom: 0;
}

.home-hero-panel-body li::before,
.home-list li::before {
    background: var(--home-green);
    border-radius: 50%;
    content: "";
    height: 10px;
    left: 0;
    position: absolute;
    top: 8px;
    width: 10px;
}

.home-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.home-btn-primary,
.home-btn-secondary {
    border-radius: 25px;
    display: inline-flex;
    font-size: 13px;
    justify-content: center;
    letter-spacing: 0.04em;
    min-width: 180px;
    padding: 12px 28px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 180ms ease;
}

.home-btn-primary {
    background: var(--home-green);
    color: #ffffff;
}

.home-btn-primary:hover {
    background: var(--home-blue);
    color: #ffffff;
}

.home-btn-secondary {
    background: var(--home-grey);
    color: var(--home-blue);
}

.home-btn-secondary:hover {
    background: var(--home-blue);
    color: #ffffff;
}

.home-trust-strip {
    background: var(--home-blue);
    color: #ffffff;
}

.home-trust-strip p {
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 0;
}

.home-trust-strip strong {
    color: #ffffff;
    display: block;
    font-family: Saira, Open Sans, sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 6px;
    text-wrap: balance;
}

.home-trust-strip-item {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 22px;
    height: 100%;
    text-align: center;
}

.home-trust-strip-copy {
    max-width: 30rem;
}

.home-trust-strip-icon {
    align-items: center;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 28px rgba(16, 32, 40, 0.16);
    display: flex;
    flex: 0 0 auto;
    height: 112px;
    justify-content: center;
    padding: 14px;
    width: 112px;
}

.home-trust-strip-icon img {
    height: 76px;
    object-fit: contain;
    width: 76px;
}

.home-trust-strip-icon--logo img {
    height: 72px;
    max-width: 84px;
    width: auto;
}

.home-proof-card,
.home-use-case-card,
.home-partner-card {
    background: #ffffff;
    border-radius: 26px;
    box-shadow: 0 15px 40px rgba(32, 55, 67, 0.09);
    height: 100%;
    padding: 30px;
}

.home-channel-card {
    background: #ffffff;
    border-radius: 26px;
    box-shadow: 0 15px 40px rgba(32, 55, 67, 0.09);
    height: 100%;
    padding: 0;
}

.home-proof-card {
    border-top: 7px solid var(--home-green);
    padding: 32px;
}

.home-proof-card h3,
.home-channel-card h3,
.home-use-case-card h3,
.home-partner-card h3 {
    color: var(--home-blue);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 14px;
    padding: 0;
}

.home-proof-number {
    align-items: center;
    background: var(--home-green-soft);
    border-radius: 18px;
    color: var(--home-green);
    display: flex;
    font-family: Saira, Open Sans, sans-serif;
    font-size: 22px;
    font-weight: 800;
    height: 54px;
    justify-content: center;
    line-height: 1;
    margin-bottom: 22px;
    width: 54px;
}

.home-proof-card-header {
    align-items: center;
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.home-proof-card-header .home-proof-number,
.home-proof-card-header h3 {
    margin-bottom: 0;
}

.home-proof-card h3 {
    max-width: 360px;
}

.home-proof-card p {
    max-width: 430px;
}

.home-testimonial-section {
    background: linear-gradient(135deg, var(--home-blue) 0%, var(--home-blue-dark) 100%);
    color: #ffffff;
}

.home-testimonial-section .home-section-heading h2,
.home-testimonial-section .home-section-heading p {
    color: #ffffff;
}

.home-testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 26px;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px;
}

.home-testimonial-card.featured {
    background: #ffffff;
    color: var(--home-blue);
}

.home-testimonial-card blockquote {
    color: #ffffff;
    font-family: Saira, Open Sans, sans-serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.18;
    margin: 0 0 22px;
    text-wrap: balance;
}

.home-testimonial-card.featured blockquote {
    color: var(--home-blue);
    font-size: 32px;
}

.home-testimonial-card p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 26px;
}

.home-testimonial-card.featured p {
    color: var(--home-blue-soft);
}

.home-testimonial-person {
    margin-top: auto;
}

.home-testimonial-logo {
    display: block;
    margin-bottom: 14px;
    max-height: 48px;
    max-width: 168px;
    object-fit: contain;
    object-position: left center;
}

.home-testimonial-card:not(.featured) .home-testimonial-logo {
    background: #ffffff;
    border-radius: 10px;
    display: inline-block;
    max-height: 52px;
    max-width: 175px;
    padding: 10px 14px;
}

.home-testimonial-person strong {
    color: #ffffff;
    display: block;
    font-family: Saira, Open Sans, sans-serif;
    font-size: 22px;
    margin-bottom: 2px;
}

.home-testimonial-card.featured .home-testimonial-person strong {
    color: var(--home-blue);
}

.home-testimonial-person span {
    color: rgba(255, 255, 255, 0.72);
    display: block;
    font-size: 14px;
}

.home-testimonial-card.featured .home-testimonial-person span {
    color: var(--home-blue-soft);
}

.home-statement-band {
    background: var(--home-green-soft);
    overflow: hidden;
    padding: 0;
    position: relative;
}

.home-statement-band__layout {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 315px;
    position: relative;
}

.home-statement-band__figure {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    min-height: 270px;
    overflow: hidden;
    position: relative;
    width: min(62%, 780px);
}

.home-statement-band__figure img {
    display: block;
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: left top;
    position: absolute;
    top: 0;
    width: 100%;
}

.home-statement-band__copy {
    align-self: center;
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    margin-left: 0;
    max-width: min(680px, calc(100% - 48px));
    padding: 48px 24px;
    position: relative;
    text-align: center;
    z-index: 1;
}

.home-statement-band h2 {
    color: var(--home-blue);
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    margin: 0 0 15px;
    padding: 0;
}

.home-statement-band__line {
    display: block;
}

.home-statement-band__copy p {
    color: var(--home-blue-soft);
    margin: 0 auto;
    max-width: 520px;
    padding: 0;
}

@media all and (min-width: 992px) {
    .home-statement-band__line {
        white-space: nowrap;
    }
}

.home-channel-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: center;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-channel-card:hover {
    box-shadow: 0 18px 44px rgba(32, 55, 67, 0.12);
    transform: translateY(-2px);
}

.home-channel-logo {
    align-items: center;
    background: linear-gradient(180deg, rgba(241, 244, 246, 0.9) 0%, #ffffff 100%);
    display: flex;
    justify-content: center;
    min-height: 210px;
    padding: 30px 20px 16px;
}

.home-channel-logo img {
    display: block;
    height: auto;
    margin: 0 auto;
    max-width: min(100%, 240px);
    object-fit: contain;
    width: auto;
}

.home-channel-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 6px 28px 30px;
    text-align: left;
}

.home-channel-body h3 {
    margin-bottom: 12px;
}

.home-channel-body p {
    color: var(--home-blue-soft);
    flex: 1 1 auto;
    margin-bottom: 24px;
    min-width: 0;
}

.home-channel-inline-icon {
    border: 0;
    display: inline;
    height: 1em;
    margin: 0 0.2em 0 0;
    vertical-align: -0.15em;
    width: 1em;
}

.home-channel-cta {
    align-self: flex-start;
    background: var(--home-green);
    border-radius: 25px;
    color: #ffffff;
    display: inline-flex;
    font-size: 13px;
    font-weight: 600;
    justify-content: center;
    letter-spacing: 0.04em;
    margin-top: auto;
    min-width: 150px;
    padding: 11px 24px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 180ms ease, color 180ms ease;
}

.home-channel-cta:hover {
    background: var(--home-blue);
    color: #ffffff;
}

.home-use-case-card p,
.home-partner-card p,
.home-proof-card p {
    color: var(--home-blue-soft);
    margin-bottom: 0;
}

.home-use-case-section {
    background: var(--home-grey-soft);
}

.home-use-case-card {
    background: #ffffff;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.home-use-case-card::after {
    background: var(--home-green);
    border-radius: 999px;
    content: "";
    height: 7px;
    left: 30px;
    position: absolute;
    right: 30px;
    top: 0;
}

.home-use-case-card__image {
    aspect-ratio: 16 / 9;
    margin: 0;
    overflow: hidden;
}

.home-use-case-card__image img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.home-use-case-card__content {
    padding: 26px 30px 30px;
}

.home-partner-section {
    background: var(--home-blue);
    color: #ffffff;
}

.home-partner-section .home-section-heading h2,
.home-partner-section .home-section-heading p {
    color: #ffffff;
}

.home-partner-card {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.home-partner-card h3 {
    color: #ffffff;
}

.home-partner-card p {
    color: rgba(255, 255, 255, 0.82);
}

.home-partner-card--with-photo {
    overflow: hidden;
    padding: 0;
}

.home-partner-card__photo {
    aspect-ratio: 3 / 2;
    margin: 0 0 18px;
    overflow: hidden;
}

.home-partner-card__photo picture {
    display: block;
    height: 100%;
    width: 100%;
}

.home-partner-card__photo img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.home-partner-card__content {
    padding: 0 30px 30px;
}

.home-clients-intro {
    padding-bottom: 0;
}

.home-clients-intro + .clients {
    padding-top: 34px;
}

.home-final-cta {
    background:
        radial-gradient(circle at right top, rgba(164, 189, 60, 0.28), transparent 34%),
        var(--home-grey);
    text-align: center;
}

.home-final-cta h2 {
    color: var(--home-blue);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 18px;
}

.home-final-cta-lead {
    margin-left: auto;
    margin-right: auto;
    max-width: 680px;
}

.homepage-messaging .clients {
    padding-bottom: 24px;
    padding-top: 0;
}

.homepage-messaging .clients > .container > .row:first-child {
    display: none;
}

.homepage-messaging #clientscont {
    display: block;
}

.homepage-messaging .slick-wrapper {
    padding-top: 8px;
}

.homepage-messaging .carouselSlick {
    width: 100%;
}

.homepage-messaging .carouselSlick:not(.slick-initialized) {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.homepage-messaging .carouselSlick:not(.slick-initialized) > div {
    flex: 0 0 20%;
    scroll-snap-align: center;
}

.homepage-messaging .slick-slide {
    margin: 8px 6px;
    min-width: 0;
}

.homepage-messaging .slick-list {
    overflow: hidden;
}

.homepage-messaging .slick-track {
    align-items: center;
    display: flex;
}

.homepage-messaging .slick-slide > div {
    display: flex;
    justify-content: center;
}

.homepage-messaging .slick-slide img {
    border: 0;
    height: auto;
    max-height: 72px;
    max-width: 160px;
    object-fit: contain;
    width: auto;
}

body.page-homepage #homelogo {
    left: 0;
    padding-left: 0;
}

body.page-homepage .navbar .col-12 {
    padding-left: 0;
}

body.page-homepage #navbarSupportedContentDesktop .navbar-nav > .nav-item:first-child {
    padding-left: 0;
}

body.page-homepage #navbarSupportedContentDesktop .navbar-nav > .nav-item:first-child > .nav-link {
    margin-left: 0;
}

body.page-homepage .topbar > .container,
body.page-homepage .navbar > .container,
body.page-homepage .home-hero-content.container {
    max-width: 1140px;
}

body.page-homepage #navbarSupportedContentDesktop {
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

body.page-homepage #navbarSupportedContentDesktop .navbar-nav {
    margin-left: 0;
    padding-left: 0;
}

body.page-homepage .navbar form {
    flex-shrink: 0;
    margin-left: auto;
    margin-right: 0;
}

body.page-homepage #shortcuts {
    padding-right: 0;
}

.footerbar {
    margin-top: 0;
}

@media all and (max-width: 991px) {
    .home-section-heading {
        margin-bottom: 34px;
    }

    .home-section-heading h2 {
        font-size: clamp(28px, 6.2vw, 40px);
    }

    .home-hero {
        background: var(--home-blue-dark);
        min-height: 620px;
        padding: 72px 0 48px;
    }

    .home-hero__media {
        height: auto;
        position: absolute;
    }

    .home-hero__media::after {
        background: linear-gradient(180deg, rgba(32, 55, 67, 0.6) 0%, rgba(32, 55, 67, 0.88) 58%, rgba(32, 55, 67, 0.94) 100%);
        content: "";
        inset: 0;
        position: absolute;
    }

    .home-hero__photo {
        object-position: 62% center;
        transform: none;
    }

    .home-hero-content {
        padding-top: 0;
    }

    .home-hero h1 {
        color: #ffffff;
        font-size: clamp(32px, 7.8vw, 48px);
        line-height: 1.04;
        max-width: none;
        text-shadow: 0 2px 16px rgba(0, 0, 0, 0.24);
    }

    .home-hero .home-eyebrow {
        color: var(--home-green);
    }

    .home-hero-divider {
        background: var(--home-green);
    }

    .home-hero .lead {
        color: #ffffff;
        font-size: clamp(18px, 4.2vw, 24px);
        max-width: none;
    }

    .home-hero-copy {
        color: rgba(255, 255, 255, 0.88);
        max-width: none;
    }

    .home-hero-card {
        display: none;
    }

    .home-trust-strip .row {
        --bs-gutter-y: 1.75rem;
    }

    .home-trust-strip .col-md-4:not(:first-child) .home-trust-strip-item {
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        margin-top: 0.25rem;
        padding-top: 2rem;
    }

    .home-proof-card-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .home-proof-card h3 {
        max-width: none;
    }

    .home-testimonial-card blockquote {
        font-size: 22px;
    }

    .home-testimonial-card.featured blockquote {
        font-size: 26px;
    }

    .home-statement-band__layout {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .home-statement-band__figure {
        display: none;
    }

    .home-statement-band__copy {
        margin-left: 0;
        max-width: none;
        padding: 36px 24px 44px;
    }

    .home-statement-band h2 {
        font-size: clamp(30px, 6.8vw, 44px);
    }

    .home-statement-band__line {
        white-space: normal;
    }

    .home-channel-logo {
        min-height: 190px;
        padding-top: 24px;
    }

    .home-channel-logo img {
        max-width: min(100%, 210px);
    }

    .home-partner-card__content {
        padding: 0 24px 24px;
    }
}

@media all and (max-width: 767px) {
    .home-section {
        padding: 64px 0;
    }

    .home-section-tight {
        padding: 40px 0;
    }

    .home-proof-card,
    .home-use-case-card,
    .home-partner-card,
    .home-testimonial-card {
        padding: 24px;
    }

    .home-use-case-card {
        padding: 0;
    }

    .home-use-case-card__content {
        padding: 24px;
    }

    .home-proof-card h3,
    .home-channel-card h3,
    .home-use-case-card h3,
    .home-partner-card h3 {
        font-size: 20px;
    }

    .home-testimonial-card blockquote {
        font-size: 20px;
        line-height: 1.28;
    }

    .home-testimonial-card.featured blockquote {
        font-size: 24px;
    }

    .home-testimonial-person strong {
        font-size: 18px;
    }

    .home-use-case-card::after {
        left: 24px;
        right: 24px;
    }
}

@media all and (max-width: 576px) {
    .home-section {
        padding: 52px 0;
    }

    .home-section-tight {
        padding: 36px 0;
    }

    .home-section-heading {
        margin-bottom: 28px;
    }

    .home-section-heading h2 {
        font-size: clamp(26px, 7.4vw, 34px);
        margin-bottom: 14px;
    }

    .home-eyebrow {
        font-size: 12px;
        letter-spacing: 0.12em;
        margin-bottom: 12px;
    }

    .home-hero-content {
        padding-top: 0;
    }

    .home-hero h1 {
        font-size: clamp(28px, 8.2vw, 36px);
        margin-bottom: 14px;
    }

    .home-hero-divider {
        margin-bottom: 16px;
    }

    .home-hero .lead {
        font-size: clamp(17px, 4.8vw, 21px);
        margin-bottom: 14px;
    }

    .home-hero-card {
        margin-top: 16px;
        padding: 16px 18px;
    }

    .home-hero-card__title {
        font-size: 16px;
    }

    .home-cta-row {
        flex-direction: column;
        gap: 10px;
        margin-top: 22px;
    }

    .home-btn-primary,
    .home-btn-secondary {
        min-width: 0;
        width: 100%;
    }

    .home-trust-strip strong {
        font-size: 18px;
    }

    .home-trust-strip-icon {
        border-radius: 20px;
        height: 96px;
        padding: 12px;
        width: 96px;
    }

    .home-trust-strip-icon img {
        height: 64px;
        width: 64px;
    }

    .home-trust-strip-icon--logo img {
        height: 60px;
        max-width: 72px;
    }

    .home-trust-strip-item {
        gap: 18px;
    }

    .home-proof-card {
        padding: 22px;
    }

    .home-proof-number {
        font-size: 18px;
        height: 46px;
        width: 46px;
    }

    .home-statement-band__figure {
        max-height: 240px;
        min-height: 200px;
    }

    .home-statement-band__copy {
        padding: 28px 20px 36px;
    }

    .home-statement-band h2 {
        font-size: clamp(26px, 7.8vw, 34px);
        margin-bottom: 12px;
    }

    .home-channel-logo {
        min-height: 150px;
        padding: 20px 16px 10px;
    }

    .home-channel-logo img {
        max-width: min(100%, 170px);
    }

    .home-channel-body {
        padding: 4px 20px 22px;
    }

    .home-channel-cta {
        width: 100%;
    }

    .home-partner-card__photo {
        aspect-ratio: 16 / 10;
    }

    .home-final-cta h2 {
        font-size: clamp(26px, 7.8vw, 36px);
    }

    .homepage-messaging .slick-slide {
        margin: 6px 4px;
    }

    .homepage-messaging .slick-slide img {
        max-height: 60px;
        max-width: 130px;
    }
}

@media all and (max-width: 370px) {
    .homepage-messaging #clientscont {
        display: block;
    }

    .homepage-messaging .slick-slide img {
        max-height: 52px;
        max-width: 110px;
    }
}
