@font-face {
    font-family: "Barlow";
    src: url("../../assets/fonts/barlow-regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Barlow";
    src: url("../../assets/fonts/barlow-bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Barlow Condensed";
    src: url("../../assets/fonts/barlow-condensed-light.ttf") format("truetype");
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: "IBM Plex Mono";
    src: url("../../assets/fonts/ibm-plex-mono-regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Barlow Condensed";
    src: url("../../assets/fonts/barlow-condensed-bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --lp-orange: #e04a18;
    --lp-orange-dark: #a33915;
    --lp-dark: #1e1a17;
    --lp-cream: #fcedE8;
    --lp-white: #fff;
    --lp-container: 1216px;
    --lp-gutter: 24px;
    --lp-header-height: 118px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.lp-especialista {
    margin: 0;
    overflow-x: hidden;
    background: var(--lp-dark);
    color: var(--lp-white);
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    line-height: 1.55;
}

body.lp-especialista.menu-is-open {
    overflow: hidden;
}

body.lp-especialista.admin-bar {
    --lp-admin-offset: 32px;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button, a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 2px solid var(--lp-orange);
    outline-offset: 4px;
}

[id] {
    scroll-margin-top: calc(var(--lp-header-height) + 24px);
}

.lp-skip-link {
    position: fixed;
    z-index: 10000;
    top: 12px;
    left: 12px;
    padding: 12px 16px;
    transform: translateY(-160%);
    background: var(--lp-white);
    color: var(--lp-dark);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.lp-skip-link:focus {
    transform: translateY(0);
}

.lp-header {
    position: fixed;
    z-index: 100;
    top: var(--lp-admin-offset, 0);
    left: 0;
    width: 100%;
    min-height: var(--lp-header-height);
    border-bottom: 1px solid rgb(255 255 255 / 8%);
    background: rgb(30 26 23 / 94%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.lp-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    width: min(100% - (2 * var(--lp-gutter)), var(--lp-container));
    min-height: var(--lp-header-height);
    margin-inline: auto; }

.lp-header__brand {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    min-width: 117px;
    min-height: 59px;
}

.lp-header__brand img {
    width: 117px;
    height: 59px;
}

.lp-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
}

.lp-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 1.7vw, 34px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.lp-nav__list > li {
    display: flex;
}

.lp-nav__list a {
    display: flex;
    align-items: center;
    min-height: 44px;
    color: rgb(255 255 255 / 72%);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 180ms ease;
}

.lp-nav__list a:hover, .lp-nav__list a:focus-visible, .current-menu-item > a {
    color: var(--lp-white);
}

.lp-header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0;
    padding: 0;
    border: 1px solid rgb(255 255 255 / 48%);
    border-radius: 8px;
    background: transparent;
    color: var(--lp-white);
    appearance: none;
}

.lp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.lp-button:hover {
    transform: translateY(-1px);
}

.lp-button--header {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 10px 24px;
    border-color: var(--lp-orange);
    border-radius: 999px;
    text-transform: uppercase;
}

.lp-button--header:hover {
    background: var(--lp-orange);
}

.lp-button--header-mobile {
    display: none;
}

.lp-button--primary {
    background: var(--lp-orange);
    color: var(--lp-white);
}

.lp-button--primary:hover {
    background: var(--lp-orange-dark);
}

.lp-button--secondary {
    border-color: rgb(255 255 255 / 28%);
    background: rgb(30 26 23 / 70%);
    color: rgb(255 255 255 / 78%);
}

.lp-button--secondary:hover {
    border-color: var(--lp-white);
    color: var(--lp-white);
}

@media (min-width: 961px) {
    .lp-header__toggle {
        display: none;
    }
}

.lp-hero {
    position: relative;
    display: flex;
    min-height: 100svh;
    padding-top: var(--lp-header-height);
    overflow: hidden;
    isolation: isolate;
    background: var(--lp-dark);
}

.lp-hero__backdrop, .lp-hero__veil, .lp-hero__shape, .lp-hero__professional {
    position: absolute;
}

.lp-hero__backdrop {
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.lp-hero__veil {
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, rgb(13 11 10 / 42%) 0%, rgb(13 11 10 / 24%) 42%, rgb(13 11 10 / 6%) 72%, rgb(13 11 10 / 14%) 100%);
}

.lp-hero__shape {
    z-index: 2;
    top: -6%;
    right: -1%;
    width: min(50vw, 1144px);
    height: 118%;
    object-fit: contain;
    opacity: .98;
}

.lp-hero__professional {
    z-index: 6;
    right: max(-34px, calc((100vw - var(--lp-container)) / 2 - 150px));
    bottom: 0;
    width: min(46vw, 720px);
    height: auto;
    max-height: calc(100% - 80px);
    object-fit: contain;
    object-position: bottom right;
}

.lp-hero__inner {
    position: relative;
    z-index: 7;
    display: flex;
    align-items: center;
    width: min(100% - (2 * var(--lp-gutter)), var(--lp-container));
    margin-inline: auto; padding-block: 92px 180px; }

.lp-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    width: min(57%, 700px);
}

.lp-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
    color: rgb(255 255 255 / 66%);
    font-size: 14px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.lp-hero__eyebrow span {
    display: block;
    width: 30px;
    height: 1px;
    background: var(--lp-orange);
}

.lp-hero__title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    color: var(--lp-cream);
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(76px, 7.05vw, 130px);
    font-style: normal;
    font-weight: 300;
    letter-spacing: -1.3px;
    line-height: .91;
}

.lp-hero__title span, .lp-hero__title strong {
    display: block;
}

.lp-hero__title strong {
    color: var(--lp-orange);
    font-weight: 700;
}

.lp-hero__lead {
    max-width: 670px;
    margin: 0;
    color: rgb(255 255 255 / 82%);
    font-size: 18px;
    line-height: 1.55;
}

.lp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.lp-hero__proof {
    position: absolute;
    z-index: 8;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 126px;
    border-top: 1px solid rgb(255 255 255 / 12%);
    background: linear-gradient(0deg, rgb(30 26 23 / 94%), rgb(30 26 23 / 0%));
}

.lp-hero__proof-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    width: min(100% - (2 * var(--lp-gutter)), var(--lp-container));
    min-height: 126px;
    margin-inline: auto; }

.lp-proof {
    display: flex;
    align-items: center;
    gap: 14px;
    /* min-height: 64px; */
    color: var(--lp-white);
}

.lp-proof + .lp-proof {
    padding-left: 32px;
    border-left: 1px solid rgb(255 255 255 / 16%);
}

.lp-proof strong {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    line-height: .9;
}

.lp-proof span {
    display: flex;
    flex-direction: column;
    color: rgb(255 255 255 / 62%);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.lp-proof span b {
    color: var(--lp-orange);
    font-size: 14px;
}

.lp-proof--experience strong {
    font-size: 42px;
}

.lp-proof--experience {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.lp-proof__experience-top {
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.lp-proof__experience-top b {
    color: var(--lp-orange);
    font-size: 14px;
    letter-spacing: .12em;
    line-height: 1;
    text-transform: uppercase;
}

.lp-proof--country {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.lp-proof--country strong {
    font-size: 34px;
}

.lp-proof--compliance {
    margin-left: auto;
    padding-left: 0 !important;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    border-left: 0 !important;
    text-align: right;
}

.lp-proof--compliance strong {
    font-size: 14px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.lp-proof--compliance span {
    font-family: "IBM Plex Mono", monospace;
}

.lp-svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.lp-section-kicker {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    color: var(--lp-orange);
    font-size: 14px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.lp-section-kicker > span {
    display: block;
    width: 30px;
    height: 1px;
    background: currentColor;
}

.lp-about {
    position: relative;
    display: flex;
    min-height: 820px;
    overflow: hidden;
    background: var(--lp-cream);
    color: var(--lp-dark);
}

.lp-about__decoration {
    position: absolute;
    z-index: 0;
    top: -10%;
    left: 0;
    width: min(31vw, 470px);
    height: 120%;
    object-fit: cover;
    object-position: right center;
}

.lp-about__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 72px;
    width: min(100% - (2 * var(--lp-gutter)), var(--lp-container));
    margin-inline: auto; padding-block: 120px; }

.lp-about__media {
    display: flex;
    flex: 0 0 614px;
    align-items: center;
    justify-content: center;
}

.lp-about__media img {
    width: 100%;
    max-width: 614px;
    aspect-ratio: 614 / 554;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 18px 48px rgb(30 26 23 / 16%);
}

.lp-about__content {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.lp-about__title {
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(52px, 4.5vw, 76px);
    font-weight: 300;
    letter-spacing: -1.3px;
    line-height: .98;
}

.lp-about__title strong {
    color: var(--lp-orange);
    font-weight: 700;
}

@media (min-width: 961px) {
    .lp-about__title > span,
    .lp-about__title > strong {
        display: block;
    }
}

.lp-about__subheading {
    margin: -8px 0 0;
    font-size: 18px;
    font-weight: 700;
}

.lp-about__divider {
    width: 52px;
    height: 3px;
    background: var(--lp-orange);
}

.lp-about__content > p:not(.lp-section-kicker, .lp-about__subheading) {
    margin: 0;
    color: #514741;
    font-size: 18px;
    line-height: 1.55;
}

.lp-about__content > p strong {
    color: var(--lp-dark);
}

.lp-about__features {
    display: flex;
    width: 100%;
    margin: 4px 0 0;
    padding: 24px 0 0;
    border-top: 1px solid rgb(30 26 23 / 14%);
    list-style: none;
}

.lp-about__features li {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    gap: 10px;
    min-height: 84px;
    padding-inline: 20px; color: #615650;
    font-size: 14px;
    line-height: 1.35;
}

.lp-about__features li:first-child {
    padding-left: 0;
}

.lp-about__features li + li {
    border-left: 1px solid rgb(30 26 23 / 12%);
}

.lp-about__features svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--lp-orange);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lp-scenarios {
    display: flex;
    background: var(--lp-cream);
    color: var(--lp-dark);
}

.lp-scenarios__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 72px;
    width: min(100% - (2 * var(--lp-gutter)), 1024px);
    margin-inline: auto; padding-block: 80px 140px; }

.lp-scenarios__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 820px;
    text-align: center;
}

.lp-section-kicker--center {
    justify-content: center;
}

.lp-scenarios__heading h2 {
    display: flex;
    flex-direction: column;
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(48px, 4vw, 64px);
    font-weight: 300;
    letter-spacing: -1.3px;
    line-height: .98;
}

.lp-scenarios__heading h2 strong {
    font-weight: 700;
}

.lp-scenarios__cards {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 40px;
    width: 100%;
}

.lp-scenarios__versus {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: var(--lp-cream);
    color: #8b7e77;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
}

.lp-scenario-card {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    min-width: 0;
    padding: 36px 36px 32px;
    border: 1px solid #dccbc4;
    border-top: 3px solid var(--lp-orange-dark);
    border-radius: 4px;
}

.lp-scenario-card--without {
    background: rgb(255 255 255 / 32%);
}

.lp-scenario-card--with {
    background: var(--lp-dark);
    color: var(--lp-cream);
    border-color: var(--lp-dark);
    border-top-color: var(--lp-orange);
}

.lp-scenario-card__badge {
    width: 52px;
    height: 52px;
}

.lp-scenario-card__eyebrow {
    margin: 0;
    font-family: "IBM Plex Mono", monospace;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.lp-scenario-card h3 {
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(38px, 3vw, 48px);
    font-weight: 700;
    letter-spacing: -.5px;
    line-height: .94;
}

.lp-scenario-card h3 strong {
    color: var(--lp-orange);
}

.lp-scenario-card--without h3 strong {
    color: var(--lp-orange-dark);
}

.lp-scenario-card--with h3 {
    color: var(--lp-cream);
}

.lp-scenario-card__caption {
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(30 26 23 / 14%);
    color: #615650;
    font-family: "IBM Plex Mono", monospace;
    font-size: 13px;
    letter-spacing: .05em;
}

.lp-scenario-card--with .lp-scenario-card__caption {
    border-bottom-color: rgb(252 237 232 / 14%);
    color: rgb(252 237 232 / 74%);
}

.lp-scenario-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
}

.lp-scenario-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #675c56;
    font-size: 14px;
    line-height: 1.35;
}

.lp-scenario-card--with .lp-scenario-list li {
    color: rgb(252 237 232 / 84%);
}

.lp-scenario-list svg {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--lp-orange-dark);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lp-scenario-card--with .lp-scenario-list svg {
    stroke: var(--lp-orange);
}

.lp-scenario-list strong {
    color: var(--lp-dark);
}

.lp-scenario-card--with .lp-scenario-list strong {
    color: var(--lp-cream);
}

.lp-scenario-card__status {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 42px;
    margin: auto 0 0;
    padding: 10px 14px;
    background: var(--lp-orange-dark);
    color: var(--lp-white);
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
}

.lp-scenario-card--with .lp-scenario-card__status {
    background: var(--lp-cream);
    color: var(--lp-dark);
}

.lp-scenario-card__status svg {
    flex: 0 0 17px;
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lp-solutions {
    display: flex;
    background: var(--lp-dark);
    color: var(--lp-cream);
}

.lp-solutions__inner {
    display: flex;
    flex-direction: column;
    gap: 44px;
    width: min(100% - (2 * var(--lp-gutter)), var(--lp-container));
    margin-inline: auto; padding-block: 120px 128px; }

.lp-solutions__heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.lp-solutions__heading h2 {
    display: flex;
    flex-direction: column;
    margin: 0;
    color: var(--lp-cream);
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(48px, 4.25vw, 68px);
    font-weight: 300;
    letter-spacing: -1.3px;
    line-height: .98;
}

.lp-solutions__heading h2 strong {
    font-weight: 700;
}

.lp-solutions__heading h2 span {
    font-weight: 300;
}

.lp-solutions__heading h2 b {
    color: var(--lp-orange);
    font-weight: 700;
}

.lp-solutions__tabs {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 16px;
    width: 100%;
    padding-bottom: 18px;
}

.lp-solutions__tabs::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: rgb(252 237 232 / 16%);
    content: "";
}

.lp-solutions__tab {
    position: relative;
    z-index: 1;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 12px 34px;
    border: 1px solid rgb(252 237 232 / 34%);
    border-radius: 8px;
    background: transparent;
    color: rgb(252 237 232 / 62%);
    font: 400 18px/1.2 "Barlow", sans-serif;
    cursor: pointer;
    transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.lp-solutions__tab::after {
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lp-orange);
    content: "";
    transition: width 180ms ease;
}

.lp-solutions__tab:hover {
    border-color: rgb(252 237 232 / 62%);
    color: var(--lp-cream);
}

.lp-solutions__tab.is-active {
    border-color: var(--lp-orange);
    background: var(--lp-orange);
    color: var(--lp-white);
}

.lp-solutions__tab.is-active::after {
    width: 112px;
}

.lp-solutions__panels {
    display: flex;
    width: 100%;
}

.lp-solutions-panel {
    display: flex;
    align-items: center;
    gap: 48px;
    width: 100%;
}

.lp-solutions-panel[hidden] {
    display: none;
}

.lp-solutions-panel__media {
    display: flex;
    flex: 1 1 584px;
    align-items: center;
    max-width: 584px;
}

.lp-solutions-panel__media img {
    width: 100%;
    height: auto;
    aspect-ratio: 584 / 440;
    object-fit: cover;
    border-radius: 8px;
}

.lp-solutions-panel__content {
    display: flex;
    flex: 1 1 584px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: min(100%, 584px);
    max-width: 584px;
}

.lp-solutions-panel__content h3 {
    display: block;
    margin: 0;
    color: var(--lp-cream);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 42px;
    font-weight: 300;
    letter-spacing: -1.3px;
    line-height: 1;
}

.lp-solutions-panel__content h3 strong {
    font-weight: 700;
}

.lp-solutions-panel__divider {
    width: 52px;
    height: 3px;
    background: var(--lp-orange);
}

.lp-solutions-panel__content > p,
.lp-solutions-panel__body p {
    margin: 0;
    color: rgb(252 237 232 / 70%);
    font-size: 16px;
    line-height: 1.6;
}

.lp-solutions-panel__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-solutions-panel__list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 6px 0 0;
    padding: 0;
    list-style: none;
}

.lp-solutions-panel__list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: rgb(252 237 232 / 72%);
    font-size: 16px;
    line-height: 1.45;
}

.lp-solutions-panel__list svg {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--lp-orange);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lp-solutions-panel__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
    padding-top: 4px;
}

.lp-impact {
    display: flex;
    flex-direction: column;
    background: var(--lp-dark);
    color: var(--lp-cream);
}

.lp-impact__banner {
    display: flex;
    min-height: 226px;
    overflow: hidden;
    background: linear-gradient(112deg, #f04b13 0%, #e04a18 46%, #a33915 100%);
}

.lp-impact__banner-inner {
    display: flex;
    align-items: center;
    width: min(100% - (2 * var(--lp-gutter)), var(--lp-container));
    margin-inline: auto; padding-block: 44px; }

.lp-impact__banner h2 {
    display: flex;
    flex-direction: column;
    margin: 0;
    color: var(--lp-cream);
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(58px, 5.5vw, 82px);
    font-weight: 700;
    letter-spacing: -1.3px;
    line-height: .91;
}

.lp-impact__banner h2 strong {
    color: var(--lp-dark);
    font-weight: 700;
}

.lp-impact-carousel {
    --lp-carousel-duration: 7000ms;
    position: relative;
    display: flex;
    min-height: 777px;
    overflow: hidden;
    isolation: isolate;
    background: #171310;
}

.lp-impact-carousel__slides {
    position: absolute;
    z-index: 0;
    inset: 0;
    display: flex;
}

.lp-impact-slide {
    position: absolute;
    z-index: 0;
    display: flex;
    visibility: hidden;
    inset: 0;
    width: 100%;
    min-height: 777px;
    opacity: 0;
    transition: opacity 560ms ease, visibility 0s linear 560ms;
}

.lp-impact-slide.is-active {
    z-index: 1;
    visibility: visible;
    opacity: 1;
    transition: opacity 560ms ease, visibility 0s linear 0s;
}

.lp-impact-slide__background, .lp-impact-slide__veil {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.lp-impact-slide__background {
    z-index: 0;
    object-fit: cover;
    object-position: center;
}

.lp-impact-slide__veil {
    z-index: 1;
    background: transparent;
}

.lp-impact-slide__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    width: min(100% - (2 * var(--lp-gutter)), var(--lp-container));
    margin-inline: auto; padding-block: 100px 180px; }

.lp-impact-slide__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    width: min(48%, 620px);
}

.lp-impact-slide__content h3 {
    display: flex;
    flex-direction: column;
    margin: 0;
    color: var(--lp-cream);
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(44px, 3.7vw, 60px);
    font-weight: 300;
    letter-spacing: -1.3px;
    line-height: .96;
}

.lp-impact-slide__content h3 strong {
    font-weight: 700;
}

.lp-impact-slide__divider {
    width: 46px;
    height: 3px;
    background: var(--lp-orange);
}

.lp-impact-slide__content > p {
    max-width: 590px;
    margin: 0;
    color: rgb(252 237 232 / 76%);
    font-size: 16px;
    line-height: 1.6;
}

.lp-impact-slide__stats {
    display: flex;
    align-items: stretch;
    gap: 28px;
    width: min(100%, 540px);
    margin-top: 10px;
    padding: 28px 34px;
    border: 1px solid rgb(252 237 232 / 42%);
    border-radius: 16px;
    background: rgb(30 26 23 / 30%);
    backdrop-filter: blur(3px);
}

.lp-impact-slide__stats > div {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 0;
    text-align: center;
}

.lp-impact-slide__stats strong {
    color: var(--lp-orange);
    font-family: "Barlow", sans-serif;
    font-size: clamp(25px, 2vw, 34px);
    font-weight: 700;
    letter-spacing: -1.2px;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.lp-impact-slide__stats span {
    color: var(--lp-cream);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
}

.lp-impact-slide__stats--admin {
    justify-content: center;
    gap: 0;
    width: min(100%, 400px);
    padding-inline: 30px;
}

.lp-impact-slide__stats--admin > div {
    flex: 0 1 50%;
    align-items: flex-start;
    justify-content: center;
    padding-inline: 28px;
    text-align: left;
}

.lp-impact-slide__stats--admin > div + div {
    border-left: 2px solid var(--lp-orange);
}

.lp-impact-slide__stats--admin strong,
.lp-impact-slide__stats--admin span {
    font-family: "Barlow", sans-serif;
    font-size: 13px;
    letter-spacing: 0;
    line-height: 1.35;
    text-transform: none;
    white-space: normal;
}

.lp-impact-slide__stats--admin strong {
    color: var(--lp-orange);
}

.lp-impact-slide__stats--cost {
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: min(100%, 400px);
}

.lp-impact-slide__stats--cost svg {
    flex: 0 0 32px;
    width: 32px;
    height: 40px;
    fill: none;
    stroke: var(--lp-orange);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.lp-impact-slide__stats--cost p {
    margin: 0;
    color: var(--lp-cream);
    font-size: 13px;
    line-height: 1.45;
}

.lp-impact-slide__stats--cost p strong {
    color: var(--lp-orange);
    font-family: inherit;
    font-size: inherit;
    font-weight: 700;
    letter-spacing: 0;
    line-height: inherit;
    text-transform: none;
    white-space: normal;
}

.lp-impact-carousel__controls {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    gap: 24px;
    width: min(100% - (2 * var(--lp-gutter)), var(--lp-container));
    margin-inline: auto; padding-bottom: 48px;
}

.lp-impact-carousel__control {
    display: flex;
    flex: 1 1 0;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 18px 0 0;
    border: 0;
    background: transparent;
    color: rgb(252 237 232 / 76%);
    font: 400 16px/1.3 "Barlow", sans-serif;
    text-align: left;
    cursor: pointer;
}

.lp-impact-carousel__progress {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 3px;
    overflow: hidden;
    background: rgb(252 237 232 / 35%);
}

.lp-impact-carousel__progress > span {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left center;
    background: var(--lp-cream);
}

.lp-impact-carousel__control {
    position: relative;
}

.lp-impact-carousel__control.is-active {
    color: var(--lp-cream);
    font-weight: 700;
}

.lp-impact-carousel__control.is-progressing .lp-impact-carousel__progress > span {
    animation: lp-carousel-progress var(--lp-carousel-duration) linear forwards;
}

.lp-impact-carousel.is-paused .lp-impact-carousel__progress > span {
    animation-play-state: paused;
}

.lp-impact-carousel__number {
    color: var(--lp-orange);
    font-family: "IBM Plex Mono", monospace;
    font-size: 14px;
    font-weight: 400;
}

.lp-impact-carousel__label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lp-guarantees {
    display: flex;
    background: var(--lp-cream);
    color: var(--lp-dark);
}

.lp-guarantees__inner {
    display: flex;
    flex-direction: column;
    gap: 72px;
    width: min(100% - (2 * var(--lp-gutter)), var(--lp-container));
    margin-inline: auto; padding-block: 120px 140px; }

.lp-guarantees__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}

.lp-guarantees__title-group {
    display: flex;
    flex: 0 0 calc(50% - 16px);
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.lp-guarantees__title-group h2 {
    display: flex;
    flex-direction: column;
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(52px, 4.5vw, 72px);
    font-weight: 300;
    letter-spacing: -1.3px;
    line-height: .95;
}

.lp-guarantees__title-group h2 strong {
    font-weight: 700;
}

.lp-guarantees__lead {
    flex: 0 0 calc(50% - 16px);
    max-width: none;
    margin: 0 0 12px;
    color: #514741;
    font-size: 18px;
    line-height: 1.55;
}

.lp-guarantees__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    width: 100%;
}

.lp-guarantee-card {
    display: flex;
    flex: 1 1 calc(50% - 16px);
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--color-border, #dccbc4);
    border-top: 2px solid var(--lp-orange);
    border-radius: 8px;
    background: rgb(255 255 255 / 22%);
}

.lp-guarantee-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}

.lp-guarantee-card__content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    min-height: 230px;
    padding: 28px 36px 34px;
}

.lp-guarantee-card__index {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    color: var(--lp-orange);
    font-size: 13px;
    letter-spacing: .12em;
    line-height: 1;
}

.lp-guarantee-card__index i {
    display: block;
    width: 34px;
    height: 1px;
    background: var(--lp-orange);
    opacity: .72;
}

.lp-guarantee-card h3 {
    display: flex;
    flex-direction: column;
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(34px, 2.7vw, 42px);
    font-weight: 300;
    letter-spacing: -1px;
    line-height: .94;
}

.lp-guarantee-card h3 strong {
    font-weight: 700;
}

.lp-guarantee-card__content > p:last-child {
    max-width: 510px;
    margin: auto 0 0;
    color: #5b514b;
    font-size: 16px;
    line-height: 1.55;
}

.lp-segments {
    position: relative;
    display: flex;
    min-height: 920px;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(112deg, #f05a1c 0%, var(--lp-orange) 56%, #d94112 100%);
    color: var(--lp-cream);
}

.lp-segments__map, .lp-segments__shape {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    user-select: none;
}

.lp-segments__map {
    top: 50%;
    left: 5%;
    width: min(72vw, 712px);
    height: auto;
    transform: translateY(-50%);
    opacity: .24;
}

.lp-segments__shape--left {
    top: -400px;
    left: -271px;
    width: min(56vw, 712px);
    height: calc(100% + 2px);
    object-fit: fill;
    object-position: left center;
}

.lp-segments__shape--right {
    top: 0;
    right: 0;
    width: min(66vw, 475px);
    height: 100%;
    object-fit: fill;
    object-position: right center;
}

.lp-segments__inner {
    display: flex;
    align-items: center;
    gap: 56px;
    width: min(100% - (2 * var(--lp-gutter)), var(--lp-container));
    margin-inline: auto; padding-block: 120px; }

.lp-segments__heading {
    display: flex;
    flex: 0 0 39%;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    min-width: 0;
    padding-left: clamp(80px, 7vw, 112px);
}

.lp-section-kicker--light {
    color: rgb(252 237 232 / 78%);
}

.lp-section-kicker--light span {
    background: var(--lp-cream);
    opacity: .72;
}

.lp-segments__heading h2 {
    display: flex;
    flex-direction: column;
    margin: 0;
    color: var(--lp-white);
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(52px, 3.7vw, 68px);
    font-weight: 300;
    letter-spacing: -1.3px;
    line-height: .95;
}

.lp-segments__heading h2 strong {
    color: var(--lp-white);
    font-weight: 700;
}

.lp-segments__cards {
    display: flex;
    flex: 0 0 auto;
    align-items: stretch;
    gap: 24px;
    min-width: 0;
}

.lp-segments--v2 .lp-segments__inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding-block: 96px 120px;
}

.lp-segments--v2 .lp-segments__heading {
    flex: 0 0 auto;
    width: min(100%, 1098px);
    padding-left: 0;
}

.lp-segments--v2 .lp-segments__cards {
    justify-content: center;
    width: 100%;
}

.lp-segments--v2 .lp-segment-card {
    flex-basis: 350px;
}

.lp-segment-card {
    display: flex;
    flex: 0 0 380px;
    flex-direction: column;
    min-width: 0;
    min-height: 482px;
    overflow: hidden;
    border: 1px solid rgb(163 57 21 / 24%);
    border-radius: 8px;
    background: var(--lp-cream);
    color: var(--lp-dark);
    box-shadow: 0 18px 40px rgb(112 43 19 / 26%);
}

.lp-segment-card__image {
    width: 100%;
    height: 205px;
    object-fit: cover;
    object-position: center;
}

.lp-segment-card__content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 24px 28px 28px;
}

.lp-segment-card__index {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    color: var(--lp-orange);
    font-size: 13px;
    letter-spacing: .12em;
    line-height: 1;
}

.lp-segment-card__index i {
    display: block;
    width: 42px;
    height: 1px;
    background: var(--lp-orange);
}

.lp-segment-card h3 {
    display: flex;
    flex-direction: column;
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 34px;
    font-weight: 300;
    letter-spacing: -1px;
    line-height: .97;
}

.lp-segment-card h3 strong {
    font-weight: 700;
}

.lp-segment-card__divider {
    display: block;
    width: 52px;
    height: 2px;
    background: var(--lp-orange);
}

.lp-segment-card__content > p:not(.lp-segment-card__index) {
    margin: 0;
    color: #514741;
    font-size: 16px;
    line-height: 1.55;
}

.lp-segment-card__content > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    margin-top: auto;
    color: #756b65;
    font-size: 12px;
    letter-spacing: .22em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 180ms ease;
}

.lp-segment-card__content > a:hover, .lp-segment-card__content > a:focus-visible {
    color: var(--lp-orange-dark);
}

.lp-segment-card__content > a svg {
    flex: 0 0 auto;
}

.lp-testimonials {
    display: flex;
    background: var(--lp-cream);
    color: var(--lp-dark);
}

.lp-testimonials__inner {
    display: flex;
    flex-direction: column;
    gap: 72px;
    width: min(100% - (2 * var(--lp-gutter)), var(--lp-container));
    margin-inline: auto; padding-block: 120px 140px; }

.lp-testimonials__heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.lp-testimonials__heading h2 {
    display: flex;
    flex-direction: column;
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(52px, 4.5vw, 72px);
    font-weight: 300;
    letter-spacing: -1.3px;
    line-height: .95;
}

.lp-testimonials__heading h2 strong {
    font-weight: 700;
}

.lp-testimonials__cards {
    display: flex;
    align-items: stretch;
    gap: 48px;
    width: 100%;
}

.lp-testimonial {
    position: relative;
    display: flex;
    min-width: 0;
    overflow: hidden;
    border-radius: 8px;
}

.lp-testimonial::before {
    position: absolute;
    top: 0;
    left: 52px;
    width: 68px;
    height: 3px;
    background: var(--lp-orange);
    content: "";
}

.lp-testimonial blockquote {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
}

.lp-testimonial__quote {
    flex: 0 0 auto;
}

.lp-testimonial blockquote > p {
    margin: 0;
}

.lp-testimonial__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid currentColor;
}

.lp-testimonial__author {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.lp-testimonial__initials {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 2px;
    background: #4e4641;
    color: var(--lp-cream);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .04em;
}

.lp-testimonial cite {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    font-style: normal;
}

.lp-testimonial cite strong {
    font-size: 15px;
    line-height: 1.25;
}

.lp-testimonial cite span {
    color: #80756f;
    font-size: 10px;
    letter-spacing: .13em;
    line-height: 1.35;
    text-transform: uppercase;
}

.lp-testimonial--featured {
    flex: 1 1 68%;
    min-height: 520px;
    padding: 36px 52px 40px;
    background: var(--lp-dark);
    color: var(--lp-cream);
}

.lp-testimonial--featured .lp-testimonial__label {
    position: absolute;
    top: 32px;
    right: 42px;
    margin: 0;
    color: rgb(252 237 232 / 20%);
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.lp-testimonial--featured blockquote {
    gap: 40px;
}

.lp-testimonial--featured blockquote > p {
    margin-block: auto; color: rgb(252 237 232 / 82%);
    font-size: 18px;
    line-height: 1.75;
}

.lp-testimonial--featured .lp-testimonial__footer {
    padding-top: 32px;
    border-color: rgb(252 237 232 / 12%);
}

.lp-testimonial--featured .lp-testimonial__company {
    flex: 0 0 auto;
    padding: 8px 16px;
    border: 1px solid rgb(252 237 232 / 14%);
    color: rgb(252 237 232 / 26%);
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.lp-testimonials__secondary {
    display: flex;
    flex: 0 0 34%;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    min-width: 0;
}

.lp-testimonial--compact {
    flex: 1 1 0;
    min-height: 252px;
    padding: 30px 34px 28px;
    border: 1px solid var(--color-border, #dccbc4);
    background: rgb(255 255 255 / 18%);
    color: #514741;
}

.lp-testimonial--compact::before {
    left: 30px;
    width: 38px;
    height: 2px;
}

.lp-testimonial--compact blockquote {
    gap: 20px;
}

.lp-testimonial--compact blockquote > p {
    margin-block: auto; font-size: 15px;
    line-height: 1.55;
}

.lp-testimonial--compact .lp-testimonial__footer {
    padding-top: 20px;
    border-color: rgb(30 26 23 / 12%);
}

.lp-testimonial--compact .lp-testimonial__initials {
    width: 38px;
    height: 38px;
    font-size: 13px;
}

.lp-clients {
    display: flex;
    overflow: hidden;
    background: #4a433f;
    color: var(--lp-cream);
}

.lp-clients__inner {
    display: flex;
    flex-direction: column;
    gap: 56px;
    width: min(100% - (2 * var(--lp-gutter)), var(--lp-container));
    margin-inline: auto; padding-block: 88px 104px; }

.lp-clients__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}

.lp-clients__heading > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.lp-clients__heading h2 {
    display: flex;
    flex-direction: column;
    margin: 0;
    color: var(--lp-cream);
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(40px, 3.7vw, 58px);
    font-weight: 300;
    letter-spacing: -1.3px;
    line-height: .96;
}

.lp-clients__heading h2 span {
    display: block;
}

.lp-clients__heading h2 strong {
    color: var(--lp-orange);
    font-weight: 700;
}

.lp-clients__heading h2 b {
    color: var(--lp-cream);
    font-weight: 700;
}

.lp-clients__marquees {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lp-clients__viewport {
    display: flex;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
}

.lp-clients__track {
    display: flex;
    flex: 0 0 auto;
    width: max-content;
    will-change: transform;
    animation: lp-clients-left 110s linear infinite;
}

.lp-clients__track--reverse {
    transform: translateX(-50%);
    animation-name: lp-clients-right;
    animation-duration: 106s;
}

.lp-clients__group {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 0 16px 0 0;
    list-style: none;
}

.lp-clients__group li {
    display: flex;
    flex: 0 0 124px;
    align-items: center;
    justify-content: center;
    width: 124px;
    height: 65px;
    overflow: hidden;
    border-radius: 3px;
}

.lp-clients__group img {
    width: 124px;
    height: 65px;
    object-fit: cover;
}

.lp-contact {
    display: flex;
    background: var(--lp-dark);
    color: var(--lp-cream);
}

.lp-contact__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 88px;
    width: min(100% - (2 * var(--lp-gutter)), var(--lp-container));
    margin-inline: auto; padding-block: 104px 120px; }

.lp-contact__content {
    display: flex;
    flex: 0 1 390px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    min-width: 0;
}

.lp-contact__content h2 {
    display: flex;
    flex-direction: column;
    margin: 0;
    color: var(--lp-cream);
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(52px, 4.2vw, 68px);
    font-weight: 300;
    letter-spacing: -1.3px;
    line-height: .95;
}

.lp-contact__content h2 strong {
    color: var(--lp-orange);
    font-weight: 700;
}

.lp-contact__lead {
    margin: 8px 0 0;
    color: rgb(252 237 232 / 68%);
    font-size: 16px;
    line-height: 1.65;
}

.lp-contact__details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.lp-contact__details li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
}

.lp-contact__details img {
    flex: 0 0 32px;
}

.lp-contact__details span {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.lp-contact__details a, .lp-contact__details b {
    color: var(--lp-cream);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
}

.lp-contact__details a:hover, .lp-contact__details a:focus-visible {
    color: var(--lp-orange);
}

.lp-contact__details small {
    color: rgb(252 237 232 / 42%);
    font-size: 12px;
    line-height: 1.35;
}

.lp-contact__form-column {
    display: flex;
    flex: 1 1 650px;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.lp-contact__notice {
    margin: 0;
    padding: 14px 16px;
    border: 1px solid currentColor;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.45;
}

.lp-contact__notice--success {
    border-color: rgb(46 125 50 / 54%);
    background: rgb(46 125 50 / 16%);
    color: #b7ddb9;
}

.lp-contact__notice--error {
    border-color: rgb(224 74 24 / 54%);
    background: rgb(224 74 24 / 12%);
    color: #f7c4b3;
}

.lp-contact-form {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 18px 16px;
    width: 100%;
}

.lp-contact-form__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.lp-contact-form__field {
    display: flex;
    flex: 1 1 calc(50% - 8px);
    flex-direction: column;
    gap: 8px;
    min-width: 240px;
}

.lp-contact-form__field--wide {
    flex-basis: 100%;
}

.lp-contact-form__field label {
    color: rgb(252 237 232 / 78%);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .11em;
    line-height: 1.2;
    text-transform: uppercase;
}

.lp-contact-form input:not([type="checkbox"]), .lp-contact-form select, .lp-contact-form textarea {
    width: 100%;
    border: 1px solid rgb(252 237 232 / 12%);
    border-radius: 4px;
    background: #37322e;
    color: var(--lp-cream);
    font: 400 14px/1.4 "Barlow", sans-serif;
    transition: border-color 180ms ease, background-color 180ms ease;
}

.lp-contact-form input:not([type="checkbox"]), .lp-contact-form select {
    min-height: 52px;
    padding: 13px 16px;
}

.lp-contact-form textarea {
    min-height: 132px;
    padding: 15px 16px;
    resize: vertical;
}

.lp-contact-form select {
    padding-right: 38px;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, rgb(252 237 232 / 54%) 50%), linear-gradient(135deg, rgb(252 237 232 / 54%) 50%, transparent 50%);
    background-position: calc(100% - 18px) 22px, calc(100% - 13px) 22px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.lp-contact-form input::placeholder, .lp-contact-form textarea::placeholder {
    color: rgb(252 237 232 / 30%);
    opacity: 1;
}

.lp-contact-form input:not([type="checkbox"]):hover, .lp-contact-form select:hover, .lp-contact-form textarea:hover {
    border-color: rgb(252 237 232 / 24%);
}

.lp-contact-form input:not([type="checkbox"]):focus, .lp-contact-form select:focus, .lp-contact-form textarea:focus {
    border-color: var(--lp-orange);
    background-color: #3d3732;
    outline: 0;
}

.lp-contact-form__consent {
    display: flex;
    flex: 1 1 100%;
    align-items: flex-start;
    gap: 10px;
    color: rgb(252 237 232 / 50%);
    font-size: 12px;
    line-height: 1.45;
    cursor: pointer;
}

.lp-contact-form__consent input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--lp-orange);
}

.lp-contact-form__consent a {
    color: var(--lp-cream);
    text-underline-offset: 2px;
}

.lp-contact-form__submit {
    display: inline-flex;
    flex: 1 1 100%;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    padding: 14px 24px;
    border: 0;
    border-radius: 4px;
    background: var(--lp-orange);
    color: var(--lp-white);
    font: 700 14px/1.2 "Barlow", sans-serif;
    letter-spacing: .03em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 180ms ease, transform 180ms ease;
}

.lp-contact-form__submit:hover {
    transform: translateY(-1px);
    background: var(--lp-orange-dark);
}

.lp-contact-form__note {
    flex: 1 1 100%;
    margin: -4px 0 0;
    color: rgb(252 237 232 / 28%);
    font-size: 11px;
    line-height: 1.4;
    text-align: center;
}

.lp-footer {
    display: flex;
    background: var(--lp-dark);
    color: var(--lp-cream);
    border-top: 1px solid rgb(252 237 232 / 7%);
}

.lp-footer__inner {
    width: min(100% - (2 * var(--lp-gutter)), var(--lp-container));
    margin-inline: auto; padding-block: 48px 30px; }

.lp-footer__top {
    display: grid;
    grid-template-columns: minmax(230px, 1.35fr) repeat(3, minmax(170px, 1fr));
    align-items: center;
    min-height: 112px;
}

.lp-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-right: 48px;
}

.lp-footer__brand a {
    display: inline-flex;
}

.lp-footer__brand img {
    display: block;
    width: 117px;
    height: auto;
}

.lp-footer__brand p {
    max-width: 220px;
    margin: 0;
    color: rgb(252 237 232 / 42%);
    font-size: 12px;
    letter-spacing: .12em;
    line-height: 1.4;
}

.lp-footer__item {
    display: flex;
    align-self: stretch;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    min-width: 0;
    padding-inline: 48px 24px; border-left: 1px solid rgb(252 237 232 / 8%);
}

.lp-footer__label {
    margin: 0;
    color: rgb(252 237 232 / 48%);
    font-family: "IBM Plex Mono", monospace;
    font-size: 9px;
    letter-spacing: .24em;
    line-height: 1.2;
    text-transform: uppercase;
}

.lp-footer__item > a, .lp-footer__item > span {
    overflow-wrap: anywhere;
    color: rgb(252 237 232 / 82%);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
}

.lp-footer__item > a:hover, .lp-footer__item > a:focus-visible {
    color: var(--lp-orange);
}

.lp-footer__social-column {
    padding-right: 0;
}

.lp-footer__socials {
    display: flex;
    align-items: center;
    gap: 9px;
}

.lp-footer__socials a {
    display: inline-flex;
    border-radius: 5px;
}

.lp-footer__socials a {
    transition: transform 180ms ease, filter 180ms ease;
}

.lp-footer__socials a:hover {
    transform: translateY(-2px);
    filter: brightness(.9);
}

.lp-footer__socials img {
    display: block;
    width: 35px;
    height: 34px;
}

.lp-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid rgb(252 237 232 / 36%);
}

.lp-footer__bottom > p {
    margin: 0;
    color: rgb(252 237 232 / 36%);
    font-size: 11px;
    letter-spacing: .11em;
    line-height: 1.4;
}

.lp-footer__credit {
    display: flex;
    align-items: center;
    gap: 24px;
    color: rgb(252 237 232 / 42%);
    font-size: 12px;
}

.lp-footer__credit a {
    display: inline-flex;
    border-radius: 4px;
}

.lp-footer__credit img {
    display: block;
    width: 68px;
    height: 32px;
}

/* Content stays visible until JavaScript progressively enables scroll reveals. */
.lp-reveal-ready [data-lp-reveal] {
    opacity: 0;
    transition:
        opacity 620ms cubic-bezier(.22, 1, .36, 1) var(--lp-reveal-delay, 0ms),
        transform 620ms cubic-bezier(.22, 1, .36, 1) var(--lp-reveal-delay, 0ms);
    will-change: opacity, transform;
}

.lp-reveal-ready [data-lp-reveal="up"] {
    transform: translate3d(0, 28px, 0);
}

.lp-reveal-ready [data-lp-reveal="left"] {
    transform: translate3d(-32px, 0, 0);
}

.lp-reveal-ready [data-lp-reveal="right"] {
    transform: translate3d(32px, 0, 0);
}

.lp-reveal-ready [data-lp-reveal="fade"] {
    transform: scale(.985);
}

.lp-reveal-ready [data-lp-reveal].is-revealed {
    opacity: 1;
    transform: none;
    will-change: auto;
}

.lp-button:active,
.lp-segment-card__content > a:active {
    transform: scale(.98);
}

@media (hover: hover) and (pointer: fine) {
    .lp-scenario-card,
    .lp-guarantee-card,
    .lp-segment-card,
    .lp-testimonial {
        transition:
            opacity 620ms cubic-bezier(.22, 1, .36, 1) var(--lp-reveal-delay, 0ms),
            transform 260ms cubic-bezier(.22, 1, .36, 1),
            box-shadow 260ms ease,
            border-color 260ms ease;
    }

    .lp-reveal-ready .is-revealed.lp-scenario-card:hover,
    .lp-reveal-ready .is-revealed.lp-guarantee-card:hover,
    .lp-reveal-ready .is-revealed.lp-segment-card:hover,
    .lp-reveal-ready .is-revealed.lp-testimonial:hover {
        transform: translateY(-6px) scale(1.012);
    }

    .lp-guarantee-card:hover,
    .lp-segment-card:hover,
    .lp-testimonial:hover {
        box-shadow: 0 22px 48px rgb(30 26 23 / 18%);
    }

    .lp-guarantee-card__image,
    .lp-segment-card__image {
        transition: transform 500ms cubic-bezier(.22, 1, .36, 1);
    }

    .lp-guarantee-card:hover .lp-guarantee-card__image,
    .lp-segment-card:hover .lp-segment-card__image {
        transform: scale(1.025);
    }
}

@keyframes lp-carousel-progress {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes lp-clients-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes lp-clients-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

@media (min-width: 1536px) {
    .lp-segments__heading {
        padding-left: 0;
    }
}

@media (max-width: 1180px) {
    .lp-header__inner {
        gap: 18px;
    }

    .lp-nav__list {
        gap: 14px;
    }

    .lp-nav__list a {
        font-size: 12px;
    }

    .lp-button--header {
        padding-inline: 18px; font-size: 12px;
    }

    .lp-hero__shape {
        right: 1%;
    }

    .lp-hero__professional {
        right: -80px;
    }

    .lp-segments__inner {
        gap: 40px;
    }

    .lp-segments__heading {
        flex-basis: 36%;
    }

    .lp-segment-card {
        flex-basis: 350px;
    }
}

@media (max-width: 960px) {
    :root {
        --lp-header-height: 88px;
    }

    body.lp-especialista.admin-bar {
        --lp-admin-offset: 46px;
    }

    .lp-header__inner {
        position: relative;
        min-height: var(--lp-header-height);
        padding-right: 64px;
    }

    .lp-header__brand img {
        width: 98px;
        height: auto;
    }

    .lp-header button.lp-header__toggle {
        position: absolute;
        z-index: 1000;
        top: 50%;
        right: 0;
        display: inline-flex !important;
        visibility: visible !important;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        margin: 0;
        padding: 0;
        transform: translateY(-50%);
        opacity: 1 !important;
        border: 1px solid rgb(255 255 255 / 48%);
        border-radius: 8px;
        background: transparent;
        color: #fff;
        appearance: none;
    }

    .lp-header__toggle-icon--open {
        display: block;
    }

    .lp-header__toggle-label {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .lp-header__toggle-icon--close {
        display: none;
    }

    .lp-header__toggle[aria-expanded="true"] .lp-header__toggle-icon--open {
        display: none;
    }

    .lp-header__toggle[aria-expanded="true"] .lp-header__toggle-icon--close {
        display: block;
    }

    .lp-nav {
        position: fixed;
        z-index: 90;
        top: calc(var(--lp-header-height) + var(--lp-admin-offset, 0px));
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 28px;
        height: calc(100dvh - var(--lp-header-height) - var(--lp-admin-offset, 0px));
        padding: 28px var(--lp-gutter);
        overflow-y: auto;
        background: rgb(30 26 23 / 98%);
    }

    .lp-nav.is-open {
        display: flex;
    }

    .lp-nav__list {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 4px;
    }

    .lp-nav__list a {
        justify-content: center;
        width: 100%;
        min-height: 52px;
        border-bottom: 1px solid rgb(255 255 255 / 10%);
        font-size: 16px;
        text-align: center;
    }

    .lp-button--header {
        display: none;
    }

    .lp-button--header-mobile {
        display: inline-flex;
        width: 100%;
        min-height: 52px;
        border-color: var(--lp-orange);
        border-radius: 8px;
        text-transform: uppercase;
    }

    .lp-hero {
        min-height: auto;
    }

    .lp-hero__shape {
        right: -12%;
        width: 66vw;
    }

    .lp-hero__professional {
        right: -22%;
        width: 64vw;
        opacity: 1;
    }

    .lp-hero__veil {
        background: linear-gradient(90deg, rgb(13 11 10 / 92%) 0%, rgb(13 11 10 / 78%) 55%, rgb(13 11 10 / 38%) 100%);
    }

    .lp-hero__inner {
        min-height: 820px;
        padding-block: 72px 180px; }

    .lp-hero__content {
        width: 60%;
    }

    .lp-hero__title {
        font-size: clamp(60px, 10vw, 92px);
    }

    .lp-hero__lead {
        max-width: 460px;
    }

    .lp-proof--compliance {
        gap: 4px;
    }

    .lp-about {
        min-height: auto;
    }

    .lp-about__decoration {
        top: -8%;
        left: -12%;
        width: 48vw;
        height: 90%;
        opacity: .85;
    }

    .lp-about__inner {
        flex-direction: column;
        gap: 56px;
        padding-block: 88px; }

    .lp-about__media {
        width: 82%;
    }

    .lp-about__content {
        width: 82%;
    }

    .lp-scenarios__cards {
        gap: 24px;
    }

    .lp-scenario-card {
        padding: 28px 24px;
    }

    .lp-solutions-panel {
        flex-direction: column;
        gap: 48px;
    }

    .lp-solutions-panel__media, .lp-solutions-panel__content {
        width: 82%;
    }

    .lp-impact-slide__content {
        width: 58%;
    }

    .lp-guarantees__heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .lp-guarantees__lead {
        flex-basis: auto;
        margin-bottom: 0;
    }

    .lp-segments {
        min-height: auto;
    }

    .lp-segments__map {
        top: 22%;
        left: 20%;
        width: 74vw;
        transform: none;
    }

    .lp-segments__shape--left {
        width: 36vw;
    }

    .lp-segments__shape--right {
        width: 34vw;
    }

    .lp-segments__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 56px;
        padding-block: 96px; }

    .lp-segments__heading {
        flex-basis: auto;
        width: min(100%, 540px);
        padding-left: 0;
    }

    .lp-segments__cards {
        width: calc(100% + var(--lp-gutter));
        padding-right: var(--lp-gutter);
        padding-bottom: 20px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scrollbar-color: var(--lp-cream) rgb(252 237 232 / 22%);
    }

    .lp-segment-card {
        scroll-snap-align: start;
    }

    .lp-segments--v2 .lp-segments__inner {
        align-items: stretch;
    }

    .lp-segments--v2 .lp-segments__heading {
        width: min(100%, 540px);
    }

    .lp-segments--v2 .lp-segments__cards {
        justify-content: flex-start;
        width: calc(100% + var(--lp-gutter));
    }

    .lp-testimonials__cards {
        flex-direction: column;
        gap: 24px;
    }

    .lp-testimonials__secondary {
        flex-basis: auto;
        flex-direction: row;
        gap: 24px;
    }

    .lp-testimonial--compact {
        flex-basis: calc(50% - 12px);
    }

    .lp-clients__inner {
        padding-block: 80px 88px; }

    .lp-contact__inner {
        flex-direction: column;
        gap: 64px;
        padding-block: 88px 96px; }

    .lp-contact__content, .lp-contact__form-column {
        flex-basis: auto;
        width: 100%;
    }

    .lp-contact__content {
        max-width: 560px;
    }

    .lp-footer__top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 36px;
    }

    .lp-footer__brand {
        padding-right: 32px;
    }

    .lp-footer__item {
        min-height: 90px;
        padding-inline: 32px 16px; }

    .lp-footer__social-column {
        padding-right: 16px;
    }
}

@media (max-width: 768px) {
    .lp-hero {
        display: block;
        min-height: auto;
    }

    .lp-hero__inner {
        align-items: flex-start;
        min-height: 1320px;
        padding-block: 72px 700px;
    }

    .lp-hero__content {
        align-items: center;
        width: 100%;
        text-align: center;
    }

    .lp-hero__eyebrow,
    .lp-hero__actions {
        justify-content: center;
    }

    .lp-hero__title,
    .lp-hero__lead {
        width: 100%;
        max-width: 100%;
    }

    .lp-hero__title {
        align-items: center;
    }

    .lp-hero__professional {
        right: 50%;
        bottom: 0;
        width: min(100vw, 712px);
        max-height: none;
        transform: translateX(50%);
        opacity: 1;
        object-position: center bottom;
    }

    .lp-hero__shape {
        top: auto;
        right: 50%;
        bottom: 0;
        width: min(108vw, 760px);
        height: 760px;
        transform: translateX(54%);
    }

    .lp-hero__proof {
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
    }
}

@media (max-width: 640px) {
    :root {
        --lp-gutter: 20px;
        --lp-header-height: 78px;
    }

    .lp-header__brand {
        min-width: 92px;
        min-height: 48px;
    }

    .lp-reveal-ready [data-lp-reveal="left"],
    .lp-reveal-ready [data-lp-reveal="right"] {
        transform: translate3d(0, 24px, 0);
    }

    .lp-header__brand img {
        width: 92px;
    }

    .lp-hero {
        background: #171310;
    }

    .lp-hero__backdrop {
        object-position: 58% center;
        opacity: .72;
    }

    .lp-hero__veil {
        background: linear-gradient(180deg, rgb(13 11 10 / 68%) 0%, rgb(13 11 10 / 84%) 54%, rgb(13 11 10 / 98%) 100%);
    }

    .lp-hero__shape {
        top: auto;
        right: 50%;
        bottom: 0;
        width: 135vw;
        height: 620px;
        transform: translateX(54%);
        opacity: .82;
    }

    .lp-hero__professional {
        right: 50%;
        bottom: 0;
        width: 128vw;
        max-width: none;
        max-height: none;
        transform: translateX(58%);
        opacity: 1;
        object-position: center bottom;
    }

    .lp-hero__inner {
        align-items: flex-start;
        min-height: 1280px;
        padding-block: 64px 600px; }

    .lp-hero__content {
        position: relative;
        z-index: 2;
        width: 100%;
        gap: 22px;
    }

    .lp-hero__eyebrow {
        justify-content: center;
        width: 100%;
        max-width: 100%;
        font-size: 11px;
        letter-spacing: .13em;
        text-align: center;
    }

    .lp-hero__eyebrow span {
        display: none;
    }

    .lp-hero__title {
        width: 100%;
        font-size: 80px;
        line-height: .94;
    }

    .lp-hero__lead {
        width: 100%;
        max-width: 100%;
        font-size: 18px;
        line-height: 1.45;
    }

    .lp-hero__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .lp-button {
        width: 100%;
        min-height: 52px;
    }

    .lp-hero__proof {
        min-height: 198px;
    }

    .lp-hero__proof-inner {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-content: center;
        align-items: center;
        min-height: 190px;
        padding-block: 24px;
        gap: 24px 18px;
    }

    .lp-proof {
        flex: 1;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-align: center;
    }

    .lp-proof + .lp-proof {
        padding-left: 18px;
    }

    .lp-proof--experience strong {
        font-size: 34px;
    }

    .lp-proof--country strong {
        font-size: 28px;
    }

    .lp-proof--experience,
    .lp-proof--country,
    .lp-proof--compliance {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .lp-proof--compliance {
        grid-column: 1 / -1;
        margin-left: 0;
        padding-top: 24px !important;
        border-top: 1px solid rgb(255 255 255 / 16%);
        border-left: 0 !important;
    }

    .lp-section-kicker {
        font-size: 11px;
        letter-spacing: .14em;
    }

    .lp-about__decoration {
        top: -3%;
        left: -40%;
        width: 100vw;
        height: 48%;
        object-fit: contain;
        opacity: .75;
    }

    .lp-about__inner {
        gap: 40px;
        padding-block: 72px 0; }

    .lp-about__media, .lp-about__content {
        width: 100%;
    }

    .lp-about__media img {
        border-radius: 6px;
    }

    .lp-about__title {
        font-size: 40px;
    }

    .lp-about__content > p:not(.lp-section-kicker, .lp-about__subheading) {
        font-size: 18px;
    }

    .lp-about__features {
        flex-direction: column;
        gap: 0;
    }

    .lp-about__features li {
        flex-direction: row;
        align-items: center;
        min-height: 58px;
        padding: 14px 0;
    }

    .lp-about__features li + li {
        border-top: 1px solid rgb(30 26 23 / 12%);
        border-left: 0;
    }

    .lp-scenarios__inner {
        gap: 44px;
        padding-block: 72px 88px; }

    .lp-scenarios__heading h2 {
        font-size: 40px;
    }

    .lp-scenarios__cards {
        flex-direction: column;
        gap: 32px;
    }

    .lp-scenarios__versus {
        top: 50%;
        width: 38px;
        height: 38px;
    }

    .lp-scenario-card {
        padding: 28px 20px 24px;
    }

    .lp-scenario-card h3 {
        font-size: 38px;
    }

    .lp-solutions__inner {
        gap: 36px;
        padding-block: 72px 88px; }

    .lp-solutions__heading h2 {
        font-size: 40px;
    }

    .lp-solutions__tabs {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
        margin-right: 0;
        padding: 0;
        overflow: visible;
    }

    .lp-solutions__tabs::after {
        display: none;
    }

    .lp-solutions__tab {
        width: 100%;
        min-height: 48px;
        padding-inline: 24px;
        font-size: 16px;
    }

    .lp-solutions__tab::after {
        display: none;
    }

    .lp-solutions-panel {
        flex-direction: column;
        gap: 24px;
        padding-block: 12px 20px;
    }

    .lp-solutions-panel__media, .lp-solutions-panel__content {
        width: 100%;
    }

    .lp-solutions-panel__media {
        flex: 0 0 auto;
    }

    .lp-solutions-panel__content h3 {
        font-size: 42px;
    }

    .lp-solutions-panel__content > p, .lp-solutions-panel__body p, .lp-solutions-panel__list li {
        font-size: 16px;
    }

    .lp-solutions-panel__actions {
        flex-direction: column;
    }

    .lp-impact__banner {
        min-height: 180px;
    }

    .lp-impact__banner-inner {
        padding-block: 40px; }

    .lp-impact__banner h2 {
        font-size: 40px;
        line-height: .95;
    }

    .lp-impact-carousel {
        min-height: 900px;
    }

    .lp-impact-slide {
        min-height: 900px;
    }

    .lp-impact-slide__background {
        object-position: 64% center;
    }

    .lp-impact-slide__veil {
        background: linear-gradient(180deg, rgb(14 12 11 / 58%) 0%, rgb(14 12 11 / 86%) 58%, rgb(14 12 11 / 98%) 100%);
    }

    .lp-impact-slide__inner {
        align-items: flex-end;
        padding-block: 190px 250px; }

    .lp-impact-slide__content {
        gap: 18px;
        width: 100%;
    }

    .lp-impact-slide__content h3 {
        font-size: 40px;
    }

    .lp-impact-slide__content > p {
        font-size: 16px;
    }

    .lp-impact-slide__stats {
        gap: 12px;
        width: 100%;
        padding: 22px 14px;
        border-radius: 8px;
    }

    .lp-impact-slide__stats strong {
        font-size: 21px;
        letter-spacing: -.8px;
    }

    .lp-impact-slide__stats span {
        font-size: 11px;
    }

    .lp-impact-carousel__controls {
        gap: 14px;
        padding-bottom: 28px;
    }

    .lp-impact-carousel__control {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: flex-start;
        gap: 6px;
        padding-top: 14px;
        font-size: 12px;
    }

    .lp-impact-carousel__number {
        font-size: 12px;
    }

    .lp-impact-carousel__label {
        width: 100%;
        white-space: normal;
    }

    .lp-guarantees__inner {
        gap: 48px;
        padding-block: 72px 88px; }

    .lp-guarantees__title-group h2 {
        font-size: 40px;
    }

    .lp-guarantees__lead {
        font-size: 18px;
    }

    .lp-guarantees__cards {
        flex-direction: column;
        gap: 24px;
    }

    .lp-guarantee-card {
        flex-basis: auto;
        width: 100%;
    }

    .lp-guarantee-card__image {
        height: 190px;
    }

    .lp-guarantee-card__content {
        gap: 18px;
        min-height: 220px;
        padding: 24px 20px 28px;
    }

    .lp-guarantee-card h3 {
        font-size: 36px;
    }

    .lp-segments__inner {
        gap: 44px;
        padding-block: 72px 80px; }

    .lp-segments__heading {
        gap: 18px;
    }

    .lp-segments__heading h2 {
        font-size: 40px;
    }

    .lp-segments__map {
        top: 16%;
        left: 4%;
        width: 110vw;
        opacity: .34;
    }

    .lp-segments__shape--left {
        width: 58vw;
        opacity: .74;
    }

    .lp-segments__shape--right {
        width: 48vw;
    }

    .lp-segments__cards {
        gap: 18px;
    }

    .lp-segment-card {
        flex-basis: min(86vw, 350px);
        min-height: 468px;
    }

    .lp-segment-card__image {
        height: 190px;
    }

    .lp-segment-card__content {
        padding: 22px 20px 24px;
    }

    .lp-segment-card h3 {
        font-size: 32px;
    }

    .lp-testimonials__inner {
        gap: 48px;
        padding-block: 72px 88px; }

    .lp-testimonials__heading {
        gap: 18px;
    }

    .lp-testimonials__heading h2 {
        font-size: 40px;
    }

    .lp-testimonial--featured {
        min-height: 500px;
        padding: 32px 24px 28px;
    }

    .lp-testimonial::before {
        left: 24px;
        width: 48px;
    }

    .lp-testimonial--featured .lp-testimonial__label {
        top: 24px;
        right: 20px;
    }

    .lp-testimonial--featured blockquote {
        gap: 28px;
    }

    .lp-testimonial--featured blockquote > p {
        font-size: 16px;
        line-height: 1.65;
    }

    .lp-testimonial__footer {
        align-items: flex-start;
    }

    .lp-testimonial--featured .lp-testimonial__company {
        display: none;
    }

    .lp-testimonial cite span {
        font-size: 9px;
    }

    .lp-testimonials__secondary {
        flex-direction: column;
        gap: 20px;
    }

    .lp-testimonial--compact {
        flex-basis: auto;
        min-height: 260px;
        padding: 28px 24px 24px;
    }

    .lp-testimonial--compact::before {
        left: 24px;
    }

    .lp-clients__inner {
        gap: 40px;
        padding-block: 64px 72px; }

    .lp-clients__heading {
        align-items: flex-start;
    }

    .lp-clients__heading h2 {
        font-size: 40px;
    }

    .lp-clients__toggle {
        width: 44px;
        padding: 10px;
    }

    .lp-clients__toggle span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .lp-clients__marquees {
        gap: 12px;
    }

    .lp-clients__group {
        gap: 12px;
        padding-right: 12px;
    }

    .lp-clients__group li {
        flex-basis: 112px;
        width: 112px;
        height: 59px;
    }

    .lp-clients__group img {
        width: 112px;
        height: 59px;
    }

    .lp-contact__inner {
        gap: 48px;
        padding-block: 72px 80px; }

    .lp-contact__content {
        gap: 20px;
    }

    .lp-contact__content h2 {
        font-size: 40px;
    }

    .lp-contact__lead {
        font-size: 16px;
    }

    .lp-contact-form {
        gap: 16px;
    }

    .lp-contact-form__field {
        flex-basis: 100%;
        min-width: 0;
    }

    .lp-contact-form__submit {
        min-height: 54px;
        padding-inline: 16px; font-size: 13px;
    }

    .lp-footer__inner {
        padding-block: 44px 28px; }

    .lp-footer__top {
        grid-template-columns: 1fr;
        row-gap: 0;
        text-align: center;
    }

    .lp-footer__brand {
        align-items: center;
        gap: 10px;
        padding: 0 0 28px;
    }

    .lp-footer__brand img {
        width: 96px;
    }

    .lp-footer__item {
        align-items: center;
        min-height: 0;
        padding: 22px 0;
        border-top: 1px solid rgb(252 237 232 / 8%);
        border-left: 0;
    }

    .lp-footer__social-column {
        padding-bottom: 4px;
    }

    .lp-footer__socials {
        justify-content: center;
    }

    .lp-footer__bottom {
        align-items: center;
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
        text-align: center;
    }

    .lp-footer__credit {
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .lp-reveal-ready [data-lp-reveal] {
        opacity: 1 !important;
        transform: none !important;
    }

    .lp-impact-carousel__control.is-active .lp-impact-carousel__progress > span {
        transform: scaleX(1);
        animation: none;
    }

    .lp-clients__toggle {
        display: none;
    }

    .lp-clients__viewport {
        overflow-x: auto;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .lp-clients__track, .lp-clients__track--reverse {
        transform: none;
        animation: none;
    }

    .lp-clients__group[aria-hidden="true"] {
        display: none;
    }
}
