@font-face {
    font-family: "Aileron";
    src: url("/assets/font/aileron/Aileron-Regular.otf") format("opentype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Aileron";
    src: url("/assets/font/aileron/Aileron-SemiBold.otf") format("opentype");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Aileron";
    src: url("/assets/font/aileron/Aileron-Bold.otf") format("opentype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Aileron";
    src: url("/assets/font/aileron/Aileron-Black.otf") format("opentype");
    font-style: normal;
    font-weight: 900;
    font-display: swap;
}

:root {
    --bg-page: #f2f2f2;
    --white: #ffffff;
    --black: #000000;
    --blue: #0c9bfc;
    --blue-strong: #0b9cf8;
    --blue-deep: #1295e7;
    --gray-1: #d9d9d9;
    --gray-2: #cfcfcf;
    --lp-gutter: 98px;
    --lp-shell-max: 1520px;
}

* {
    box-sizing: border-box;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

[x-cloak] {
    display: none !important;
}

[data-reveal] {
    --reveal-distance: 30px;
    --reveal-duration: 760ms;
    --reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --reveal-delay: 0ms;
    opacity: 0;
    transform: translate3d(0, var(--reveal-distance), 0) scale(0.985);
    transition: opacity var(--reveal-duration) var(--reveal-ease) var(--reveal-delay), transform var(--reveal-duration) var(--reveal-ease) var(--reveal-delay);
    will-change: opacity, transform;
}

[data-reveal="left"] {
    transform: translate3d(calc(var(--reveal-distance) * -1), 0, 0) scale(0.99);
}

[data-reveal="right"] {
    transform: translate3d(var(--reveal-distance), 0, 0) scale(0.99);
}

[data-reveal="up"] {
    transform: translate3d(0, var(--reveal-distance), 0) scale(0.985);
}

[data-reveal="scale"] {
    transform: scale(0.94);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.lp-float-soft {
    animation: lpFloatSoft 6.4s ease-in-out infinite;
}

@keyframes lpFloatSoft {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -6px, 0);
    }
}

html {
    scroll-behavior: smooth;
}

body.lp-body {
    margin: 0;
    font-family: "Aileron", Arial, sans-serif;
    font-synthesis: none;
    background: var(--bg-page);
    color: var(--black);
}

.lp-page {
    width: 100%;
    margin: 0 ;
    overflow: hidden;
    position: relative;
    padding-bottom: 80px;
}

.lp-page::after {
    content: "e";
    position: absolute;
    z-index: 0;
    font-family: "Iosevka Charon Mono", monospace;
    color: rgba(0, 0, 0, 0.03);
    font-size: 2100px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.lp-page::after {
    top: 1710px;
    left: -980px;
    transform: rotate(-42deg);
}

.lp-header,
.lp-intro,
.lp-process,
.lp-benefits,
.lp-compare,
.lp-stories,
.lp-faq,
.lp-contact {
    position: relative;
    z-index: 1;
}

.lp-header {
    background: var(--white);
    isolation: isolate;
}

.lp-header-inner {
    height: 96px;
    padding: 0 48px 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
}

.lp-logo-link {
    display: inline-flex;
    align-items: center;
}

.lp-logo {
    width: 139px;
    height: auto;
    display: block;
}

.lp-nav {
    display: flex;
    align-items: center;
    gap: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.lp-nav a {
    text-decoration: none;
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
}

.lp-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: background 0.28s ease, box-shadow 0.28s ease, transform 0.2s ease;
}

.lp-menu-toggle-box {
    width: 22px;
    display: grid;
    gap: 4px;
}

.lp-menu-toggle-box span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: var(--black);
    transform-origin: center;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease, background 0.22s ease;
}

.lp-menu-toggle:active {
    transform: scale(0.96);
}

.lp-menu-toggle:focus-visible {
    outline: 2px solid rgba(12, 155, 252, 0.45);
    outline-offset: 2px;
}

.lp-menu-toggle.is-open {
    background: rgba(12, 155, 252, 0.12);
    box-shadow: inset 0 0 0 1px rgba(12, 155, 252, 0.35);
}

.lp-menu-toggle.is-open .lp-menu-toggle-box span {
    background: var(--blue-deep);
}

.lp-menu-toggle.is-open .lp-menu-toggle-box span:nth-child(1) {
    transform: translateY(6px) rotate(42deg);
}

.lp-menu-toggle.is-open .lp-menu-toggle-box span:nth-child(2) {
    opacity: 0;
}

.lp-menu-toggle.is-open .lp-menu-toggle-box span:nth-child(3) {
    transform: translateY(-6px) rotate(-42deg);
}

.lp-menu-scrim {
    position: fixed;
    inset: 0;
    border: 0;
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 22;
    display: none;
}

.lp-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 41px;
    padding: 0 28px;
    text-decoration: none;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.005em;
    color: var(--white);
    background: var(--blue);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 44px rgba(56, 209, 255, 0.4);
}

.lp-nav-cta-mobile {
    display: none;
}

.lp-intro {
    padding: 96px 120px 0;
    text-align: center;
}

.lp-intro::before {
    content: "e";
    position: absolute;
    left: 50%;
    top: -1170px;
    transform: translateX(-60%) rotate(-31deg);
    z-index: -2;
    font-family: "Iosevka Charon Mono", monospace;
    color: rgba(0, 0, 0, 0.03);
    font-size: 3508px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.lp-intro h1 {
    margin: 0 auto;
    max-width: 1130px;
    font-size: 82px;
    line-height: 1.2;
    letter-spacing: -0.045em;
    font-weight: 700;
}

.lp-intro h1 span {
    color: var(--blue);
}

.lp-intro-kicker {
    display: block;
    font-size: 0.46em;
    font-weight: 400;
    color: var(--blue);
    letter-spacing: -0.02em;
    margin-bottom: 0.55em;
}

.lp-intro-subtitle {
    margin: 30px auto 0;
    max-width: 741px;
    font-size: 21px;
    line-height: 1.55;
    font-weight: 400;
}

.lp-intro-subtitle strong {
    font-weight: 700;
}

.lp-top-buttons {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    gap: 22px;
}

.lp-pill-button {
    width: 322px;
    height: 70px;
    border-radius: 999px;
    background: var(--blue);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 14px 48px rgba(56, 209, 255, 0.34);
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12.35px;
    transform: translateZ(0);
    transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 300ms ease, background 300ms ease;
}

.lp-pill-button:hover,
.lp-pill-button:focus-visible {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 18px 56px rgba(56, 209, 255, 0.42);
    background: var(--blue-deep);
    outline: none;
}

.lp-pill-button span:first-child {
    max-width: 270px;
}

.lp-pill-icon {
    width: 37.88px;
    height: 37.88px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-pill-icon img {
    display: block;
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-pill-button:hover .lp-pill-icon-arrow img,
.lp-pill-button:focus-visible .lp-pill-icon-arrow img {
    transform: translateX(3px);
}

.lp-pill-icon-arrow img {
    width: 12.79px;
    height: 12.79px;
}

.lp-pill-icon-delivery img {
    width: 22px;
    height: 22px;
}

.lp-process {
    padding: 94px var(--lp-gutter) 0;
}

.lp-process-card {
    min-height: 700px;
    border-radius: 52px;
    background: linear-gradient(180deg, #02a9d5 0%, #0d99ff 100%);
    padding: 48px 56px;
    position: relative;
    overflow: visible;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 44%);
    align-items: end;
    gap: 24px;
}


.lp-process-content {
    max-width: 652px;
    position: relative;
    z-index: 1;
    align-self: center;
}

.lp-process-content h2 {
    margin: 0;
    color: var(--white);
    font-size: 54.88px;
    line-height: 1.06;
    font-weight: 400;
}

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

.lp-step-list {
    margin-top: 34px;
    display: grid;
    gap: 24px;
    color: var(--white);
}

.lp-step-list article h3 {
    margin: 0 0 8px;
    font-size: 29.65px;
    line-height: 1.03;
    font-weight: 400;
}

.lp-step-list article p {
    margin: 0;
    font-size: 19.77px;
    line-height: 1.51;
    font-weight: 400;
}

.lp-process-figure {
    position: absolute;
    right: -22px;
    bottom: -4px;
    width: 492px;
    max-width: none;
    height: auto;
    object-fit: contain;
    z-index: 1;
    justify-self: auto;
}

.lp-benefits {
    margin: 12px var(--lp-gutter) 0;
    min-height: 514px;
    border-radius: 52px;
    background: var(--white);
    padding: 46px 58px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 48%);
    gap: 44px;
    align-items: start;
}

.lp-benefits-text h2 {
    margin: 0;
    font-size: 61px;
    line-height: 73px;
    font-weight: 400;
}

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

.lp-benefits-text h2 .blue {
    color: var(--blue);
}

.lp-benefits-text p {
    margin: 22px 0 0;
    max-width: 444px;
    font-size: 33.6px;
    line-height: 127.8%;
    font-weight: 400;
}

.lp-benefits-text p strong {
    font-weight: 700;
}

.lp-benefits-list {
    display: grid;
    align-content: start;
    gap: 22px;
    padding-top: 4px;
    min-width: 0;
}

.lp-benefit-item {
    min-height: 84px;
    border-radius: 22px;
    background: var(--blue);
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--white);
    font-size: 24px;
    line-height: 1.2;
    padding: 0 28px 0 32px;
    white-space: normal;
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), background 280ms ease;
}

.lp-benefit-item:hover {
    background: var(--blue-deep);
    transform: translateY(-2px);
}

.lp-benefit-item strong {
    font-weight: 700;
}

.lp-benefit-item img {
    width: 30px;
    height: 30px;
    display: block;
    flex-shrink: 0;
    transition: transform 250ms ease;
}

.lp-benefit-item:hover img {
    transform: scale(1.09);
}

.lp-compare {
    margin-top: 56px;
    padding: 0 var(--lp-gutter);
}

.lp-compare-title-wrap {
    text-align: center;
}

.lp-compare-line {
    width: 100%;
    max-width: 1430px;
    height: 7px;
    border-radius: 61px;
    background: var(--gray-2);
    margin: 0 auto 30px;
    position: relative;
}

.lp-compare-line::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 50%;
    transform: translateX(-50%);
    width: 560px;
    border-radius: 61px;
    background: var(--blue-strong);
}

.lp-compare-title-wrap h2 {
    margin: 0;
    margin-top: 20px;
    font-size: 71.22px;
    line-height: 0.98;
    letter-spacing: -0.02em;
    font-weight: 400;
}

.lp-compare-title-wrap h2 span {
    color: var(--blue);
    font-weight: 700;
}

.lp-compare-title-wrap h2 .lp-compare-vs {
    color: var(--black);
    font-size: 44.23px;
    font-weight: 600;
    margin: 0 0.14em 0 0.06em;
}

.lp-compare-title-wrap p {
    margin: 18px auto 0;
    max-width: 882.14px;
    font-size: 26.81px;
    line-height: 139.4%;
}

.lp-compare-title-wrap p strong {
    font-weight: 700;
}

.lp-compare-grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    position: relative;
}

.lp-compare-card {
    border-radius: 62px;
    min-height: 726px;
    padding: 40px 44px;
}

.lp-compare-card-blue {
    background: var(--blue);
    position: relative;
}

.lp-compare-card-blue::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 42px;
    transform: translateX(-50%);
    width: 76%;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
}

.lp-compare-card-light {
    border: 1px solid var(--black);
    background: var(--bg-page);
}

.lp-compare-logo {
    width: 310px;
    display: block;
    margin: 8px auto 42px;
}

.lp-compare-card h3 {
    margin: 4px 0 56px;
    font-size: 82px;
    line-height: 1;
    font-weight: 700;
    text-align: center;
}

.lp-compare-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.lp-compare-card li {
    min-height: 62px;
    border-radius: 11px;
    font-size: 39px;
    line-height: 1.12;
    display: flex;
    align-items: center;
}

.lp-compare-card-blue li {
    background: var(--white);
    color: #0b0b0b;
    padding: 0 18px;
}

.lp-compare-card-light li {
    color: var(--black);
    padding: 0 18px;
}

.lp-compare-card li strong {
    font-weight: 700;
}

.lp-stories {
    --lp-story-visible: 3;
    --lp-story-gap: 44px;
    --lp-story-gap-total: 88px;
    margin-top: 74px;
    text-align: center;
    padding: 0 var(--lp-gutter);
    position: relative;
}

.lp-stories h2 {
    margin: 0 auto;
    max-width: 1120px;
    font-size: 71.22px;
    line-height: 85px;
    letter-spacing: 0em;
    font-weight: 400;
}

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

.lp-stories h2 span {
    color: var(--blue);
}

.lp-stories > p {
    margin: 16px auto 0;
    font-size: 30.66px;
    line-height: 37px;
}

.lp-story-slider {
    margin-top: 56px;
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    padding: 4px 3px 12px;
}

.lp-story-slider:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 8px;
    border-radius: 36px;
}

.lp-story-grid {
    margin-top: 0;
    display: flex;
    gap: var(--lp-story-gap);
    will-change: transform;
    transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-story-grid:not(.is-ready),
.lp-story-grid.is-dragging,
.lp-story-grid.is-jumping {
    transition: none;
}

.lp-story-grid.is-dragging {
    cursor: grabbing;
}

.lp-story-card {
    background: #cfcfcf;
    border-radius: 34px;
    flex: 0 0 calc((100% - var(--lp-story-gap-total)) / var(--lp-story-visible));
    min-width: 0;
    padding: 40px 30px 40px;
    box-shadow: none;
    transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1), background 360ms ease;
}

.lp-story-card:hover {
    background: #d8d8d8;
    box-shadow: none;
    transform: translateY(-6px);
}

.lp-story-card h3 {
    margin: 0;
    font-size: 37.09px;
    line-height: 1.36;
    font-weight: 700;
}

.lp-story-card h4 {
    margin: 0;
    font-size: 24px;
    line-height: 1.36;
    font-weight: 500;
}

.lp-story-card hr {
    margin-bottom: 18px;
    margin-top: 21px;
    border: 0;
    border-top: 1px solid var(--black);
    width: 95%;
    opacity: 0.75;
}

.lp-story-card p {
    margin: 0 auto;
    max-width: 425px;
    font-size: 24px;
    line-height: 1.36;
}

.lp-story-controls {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.lp-story-arrow {
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    background: var(--blue);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 16px 38px rgba(12, 155, 252, 0.28);
    transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.lp-story-arrow span {
    display: block;
    font-size: 42px;
    line-height: 1;
    transform: translateY(-2px);
}

.lp-story-arrow:hover,
.lp-story-arrow:focus-visible {
    background: var(--blue-deep);
    box-shadow: 0 20px 46px rgba(12, 155, 252, 0.38);
    transform: translateY(-2px) scale(1.04);
    outline: none;
}

.lp-story-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.lp-story-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.18);
    cursor: pointer;
    transition: width 260ms ease, background 260ms ease, transform 260ms ease;
}

.lp-story-dot.is-active {
    width: 34px;
    background: var(--blue);
}

.lp-story-dot:hover,
.lp-story-dot:focus-visible {
    transform: scale(1.2);
    outline: none;
}

.lp-faq {
    --lp-faq-gap: 46px;
    margin-top: 148px;
    padding: 0 var(--lp-gutter);
    display: grid;
    grid-template-columns: minmax(0, 553.01fr) minmax(0, 705fr);
    gap: var(--lp-faq-gap);
    width: 100%;
    max-width: calc(553.01px + 705px + var(--lp-faq-gap) + (var(--lp-gutter) * 2));
    margin-left: auto;
    margin-right: auto;
}

.lp-faq-title h2 {
    margin: 0;
    font-size: 80.85px;
    line-height: 97px;
    font-weight: 400;
}

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

.lp-faq-title p {
    margin: 22px 0 0;
    font-size: 30.66px;
    line-height: 139.9%;
    max-width: 470px;
}

.lp-faq-items {
    display: grid;
    gap: 16px;
}

.lp-faq-item {
    background: var(--blue);
    border-radius: 30px;
    min-height: auto;
    padding: 20px 24px 18px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(12, 155, 252, 0.16);
    transition: border-radius 320ms ease, padding 320ms ease, box-shadow 320ms ease, transform 320ms ease, background 320ms ease;
}

.lp-faq-item:hover {
    box-shadow: 0 24px 56px rgba(12, 155, 252, 0.24);
    transform: translateY(-2px);
}

.lp-faq-item h3 {
    margin: 0;
    font-size: 27.13px;
    line-height: 33px;
    font-weight: 700;
}

.lp-faq-question {
    width: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
}

.lp-faq-question:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 6px;
    border-radius: 16px;
}

.lp-faq-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    position: relative;
    transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1), background 260ms ease;
}

.lp-faq-icon::before,
.lp-faq-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 3px;
    border-radius: 999px;
    background: var(--white);
    transform: translate(-50%, -50%);
    transition: background 260ms ease;
}

.lp-faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.lp-faq-item-open .lp-faq-icon {
    background: var(--white);
    transform: rotate(45deg);
}

.lp-faq-item-open .lp-faq-icon::before,
.lp-faq-item-open .lp-faq-icon::after {
    background: var(--blue);
}

.lp-faq-answer {
    overflow: hidden;
}

.lp-faq-item p {
    margin: 12px 0 0;
    font-size: 20px;
    line-height: 141.1%;
    animation: lpFaqAnswerIn 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-faq-item-open {
    border-radius: 40px;
    min-height: auto;
    justify-content: flex-start;
    padding-top: 24px;
    padding-bottom: 24px;
}

@keyframes lpFaqAnswerIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal],
    [data-reveal].is-visible,
    .lp-pill-button,
    .lp-pill-icon img,
    .lp-benefit-item,
    .lp-benefit-item img,
    .lp-float-soft,
    .lp-story-grid,
    .lp-story-card,
    .lp-story-arrow,
    .lp-story-dot,
    .lp-faq-item,
    .lp-faq-icon,
    .lp-faq-item p,
    .lp-menu-toggle,
    .lp-menu-toggle-box span,
    .lp-menu-scrim,
    .lp-nav,
    .lp-nav a {
        transition-duration: 1ms !important;
        animation-duration: 1ms !important;
    }

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

    .lp-float-soft {
        animation: none !important;
    }
}

.lp-contact {
    margin-top: 96px;
    padding: 0 var(--lp-gutter);
}

.lp-contact-panel {
    --lp-contact-gap: 34px;
    min-height: auto;
    border-radius: 56px;
    background: linear-gradient(180deg, var(--blue-deep) 0%, var(--blue) 100%);
    padding: 44px 44px 38px;
    display: grid;
    grid-template-columns: minmax(0, 553fr) minmax(0, 620.54fr);
    gap: var(--lp-contact-gap);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: calc(553px + 620.54px + var(--lp-contact-gap) + 88px);
    margin-left: auto;
    margin-right: auto;
}

.lp-contact-panel::before {
    content: none;
}

.lp-contact-info {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 4px 10px 10px;
}

.lp-contact-info h2 {
    margin: 0;
    color: var(--white);
    font-size: 47.19px;
    line-height: 136.9%;
    font-weight: 400;
}

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

.lp-contact-info p {
    margin: 24px 0 0;
    max-width: 490px;
    color: var(--white);
    font-size: 26.36px;
    line-height: 155.3%;
}

.lp-contact-info p + p {
    margin-top: 34px;
}

.lp-contact-divider {
    display: block;
    width: 160px;
    height: 5px;
    margin-top: 32px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
}

.lp-contact-logo {
    display: block;
    width: 226px;
    height: auto;
    margin-top: 40px;
}

.lp-contact-form {
    position: relative;
    z-index: 1;
    background: var(--bg-page);
    border-radius: 46px;
    min-height: auto;
    padding: 40px 40px 34px;
}

.lp-contact-form h3 {
    margin: 0;
    font-size: 36px;
    line-height: 136.9%;
    font-weight: 400;
}

.lp-contact-form h3 strong {
    font-weight: 700;
}

.lead-form {
    margin-top: 22px;
    display: grid;
    gap: 14px;
}

.lead-form-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 19px;
    line-height: 1.14;
}

.lead-form-field input {
    width: 100%;
    height: 60px;
    border-radius: 10px;
    border: 1px solid #c7c7c7;
    background: transparent;
    color: #8f8f8f;
    font-family: "Aileron", Arial, sans-serif;
    font-size: 18px;
    line-height: 1;
    padding: 0 16px;
}

.lead-form-field input::placeholder {
    color: #c7c7c7;
}

.lead-form-field input:focus {
    outline: 2px solid rgba(12, 155, 252, 0.28);
    border-color: rgba(12, 155, 252, 0.55);
}

.lead-form-field select {
    width: 100%;
    height: 60px;
    border-radius: 10px;
    border: 1px solid #c7c7c7;
    background: transparent;
    color: #8f8f8f;
    font-family: "Aileron", Arial, sans-serif;
    font-size: 18px;
    line-height: 1;
    padding: 0 16px;
    cursor: pointer;
}

.lead-form-field select:focus {
    outline: 2px solid rgba(12, 155, 252, 0.28);
    border-color: rgba(12, 155, 252, 0.55);
}

.lead-form-field select option {
    background: #fff;
    color: #333;
}

.autocomplete-wrapper {
    position: relative;
}

.autocomplete-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #c7c7c7;
    border-radius: 10px;
    margin-top: 4px;
    list-style: none;
    padding: 0;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.autocomplete-list li {
    padding: 12px 16px;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    transition: background 0.2s;
}

.autocomplete-list li:hover {
    background: #f0f0f0;
}

.lead-form-error {
    display: block;
    margin-top: 4px;
    color: #dd1b1b;
    font-size: 14px;
    line-height: 1.2;
}

.lead-form-button {
    margin-top: 12px;
    width: 338px;
    max-width: 100%;
    height: 64px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 72px;
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 10px 42px rgba(56, 209, 255, 0.34);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    cursor: pointer;
    text-transform: uppercase;
    padding: 0 7px 0 36px;
    justify-self: center;
    margin-left: auto;
    margin-right: auto;
}

.lead-form-button-text {
    text-align: center;
}

.lead-form-button-text strong {
    display: block;
    font-size: 14.8px;
    line-height: 1.25;
    font-weight: 700;
}

.lead-form-button-text small {
    display: block;
    font-size: 11.8px;
    line-height: 1.3;
    color: rgba(235, 235, 235, 0.58);
    font-weight: 700;
}

.lead-form-button-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lead-form-button-icon img {
    width: 15px;
    height: 15px;
    display: block;
}

.lead-form-status {
    margin-top: 8px;
    font-size: 15px;
    color: #0a7ecb;
}

.lead-form-loading {
    opacity: 0.7;
}

.lp-footer {
    position: relative;
    z-index: 1;
    margin-top: 80px;
    padding: 0 var(--lp-gutter);
}

.lp-footer-inner {
    background: var(--white);
    border-radius: 32px;
    padding: 40px 48px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.lp-footer-logo {
    display: inline-flex;
    align-items: center;
    padding-right: 48px;
    border-right: 1px solid rgba(0, 0, 0, 0.12);
    align-self: center;
}

.lp-footer-logo img {
    width: 150px;
    height: auto;
    display: block;
}

.lp-footer-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 48px;
}

.lp-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.75);
    font-size: 17px;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.lp-footer-link:hover {
    color: var(--black);
}

.lp-footer-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    background: rgba(12, 155, 252, 0.12);
    border-radius: 8px;
}

.lp-footer-icon svg {
    width: 18px;
    height: 18px;
}

.lp-footer-social {
    display: flex;
    gap: 12px;
    padding-left: 48px;
    border-left: 1px solid rgba(0, 0, 0, 0.12);
    align-items: center;
}

.lp-footer-social-link {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.75);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lp-footer-social-link:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}

.lp-footer-social-link svg {
    width: 20px;
    height: 20px;
}

@media (min-width: 1600px) {
    .lp-header-inner,
    .lp-intro,
    .lp-process,
    .lp-compare,
    .lp-stories,
    .lp-contact {
        max-width: var(--lp-shell-max);
        margin-left: auto;
        margin-right: auto;
    }

    .lp-benefits {
        width: min(calc(100% - (var(--lp-gutter) * 2)), calc(var(--lp-shell-max) - (var(--lp-gutter) * 2)));
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 1280px) {
    :root {
        --lp-gutter: 40px;
    }

    .lp-header-inner {
        height: 88px;
        padding: 0 32px 0 20px;
        gap: 20px;
    }

    .lp-nav {
        gap: 26px;
    }

    .lp-nav a {
        font-size: 14px;
    }

    .lp-nav-cta {
        width: auto;
        height: 46px;
        padding: 0 24px;
        font-size: 14.2px;
    }

    .lp-intro {
        padding: 76px 72px 0;
    }

    .lp-intro::before {
        top: -700px;
        font-size: 1880px;
    }

    .lp-intro h1 {
        max-width: 980px;
        font-size: clamp(4rem, 5vw, 4.8rem);
    }

    .lp-intro-subtitle {
        max-width: 760px;
        font-size: 20px;
        line-height: 1.43;
    }

    .lp-top-buttons {
        margin-top: 30px;
        gap: 16px;
    }

    .lp-pill-button {
        width: min(346px, 100%);
        height: 68px;
        font-size: 14.4px;
        padding: 0 18px;
    }

    .lp-pill-button span:first-child {
        max-width: 246px;
    }

    .lp-pill-icon {
        width: 40px;
        height: 40px;
    }

    .lp-pill-icon-arrow img {
        width: 12.79px;
        height: 12.79px;
    }

    .lp-pill-icon-delivery img {
        width: 22px;
        height: 22px;
    }

    .lp-process {
        padding-top: 80px;
    }

    .lp-process-card {
        min-height: 620px;
        padding: 44px 44px;
        grid-template-columns: minmax(0, 1fr) minmax(220px, 42%);
    }

    .lp-process-card::before {
        right: -36px;
        top: -32px;
        font-size: 880px;
    }

    .lp-process-content {
        max-width: 590px;
    }

    .lp-process-content h2 {
        font-size: 54px;
    }

    .lp-step-list article h3 {
        font-size: 27px;
    }

    .lp-step-list article p {
        font-size: 19px;
    }

    .lp-process-figure {
        width: 442px;
        max-width: none;
        right: -12px;
        bottom: -4px;
    }

    .lp-benefits {
        padding: 40px 40px;
        grid-template-columns: minmax(0, 1fr) minmax(300px, 48%);
        min-height: 470px;
        gap: 32px;
    }

    .lp-benefits-text h2 {
        font-size: 54px;
        line-height: 55px;

    }

    .lp-benefits-text p {
        max-width: 100%;
        font-size: 30px;
    }

    .lp-benefits-list {
        gap: 16px;
    }

    .lp-benefit-item {
        min-height: 74px;
        border-radius: 18px;
        font-size: 21px;
        padding: 0 20px 0 24px;
    }

    .lp-benefit-item img {
        width: 34px;
        height: 34px;
    }

    .lp-compare {
        margin-top: 52px;
    }

    .lp-compare-line {
        height: 6px;
        margin-bottom: 26px;
    }

    .lp-compare-line::before {
        width: 470px;
    }

    .lp-compare-title-wrap h2 {
        font-size: 68px;
    }

    .lp-compare-title-wrap p {
        max-width: 910px;
        font-size: 31px;
    }

    .lp-compare-grid {
        margin-top: 46px;
        gap: 22px;
    }

    .lp-compare-card {
        min-height: 620px;
        padding: 32px 34px;
        border-radius: 52px;
    }

    .lp-compare-card-blue::after {
        bottom: 30px;
        height: 3px;
    }

    .lp-compare-card h3 {
        margin-bottom: 40px;
        font-size: 58px;
    }

    .lp-compare-logo {
        width: 240px;
        margin-bottom: 36px;
    }

    .lp-compare-card li {
        min-height: 52px;
        font-size: 26px;
    }

    .lp-compare-card-blue li {
        padding: 0 14px;
    }

    .lp-stories {
        --lp-story-gap: 26px;
        --lp-story-gap-total: 52px;
        margin-top: 60px;
    }

    .lp-stories h2 {
        max-width: 950px;
        font-size: 70px;
    }

    .lp-stories > p {
        font-size: 28px;
    }

    .lp-story-slider {
        margin-top: 42px;
    }

    .lp-story-grid {
        gap: 26px;
    }

    .lp-story-card {
        min-height: 362px;
        border-radius: 28px;
        padding: 30px 26px 24px;
    }

    .lp-story-card h3 {
        font-size: 42px;
    }

    .lp-story-card h4 {
        font-size: 27px;
    }

    .lp-story-card hr {
        margin: 22px auto 18px;
    }

    .lp-story-card p {
        max-width: 356px;
        font-size: 22px;
    }

    .lp-stories::after {
        width: 46px;
        height: 8px;
        margin-top: 64px;
    }

    .lp-faq {
        --lp-faq-gap: 24px;
        margin-top: 116px;
        grid-template-columns: minmax(0, 553.01fr) minmax(0, 705fr);
        gap: var(--lp-faq-gap);
    }

    .lp-faq-title h2 {
        font-size: 68px;
        line-height: 82px;
    }

    .lp-faq-title p {
        max-width: 380px;
        font-size: 26px;
        line-height: 139.9%;
    }

    .lp-faq-items {
        gap: 14px;
    }

    .lp-faq-item {
        min-height: auto;
        border-radius: 22px;
        padding: 16px 18px 14px;
    }

    .lp-faq-item h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .lp-faq-item p {
        font-size: 17.5px;
        line-height: 141.1%;
    }

    .lp-faq-item-open {
        min-height: auto;
        border-radius: 32px;
        padding-top: 20px;
        padding-bottom: 22px;
    }

    .lp-contact {
        margin-top: 80px;
    }

    .lp-contact-panel {
        --lp-contact-gap: 22px;
        min-height: auto;
        grid-template-columns: minmax(0, 499fr) minmax(0, 560fr);
        padding: 34px 34px 30px;
        gap: var(--lp-contact-gap);
        border-radius: 46px;
        max-width: calc(499px + 560px + var(--lp-contact-gap) + 68px);
    }

    .lp-contact-panel::before {
        content: none;
    }

    .lp-contact-info {
        padding: 8px 0 6px 0;
    }

    .lp-contact-info h2 {
        font-size: 42.57px;
        line-height: 136.9%;
    }

    .lp-contact-info p {
        max-width: 420px;
        font-size: 23.78px;
        line-height: 155.3%;
    }

    .lp-contact-info p + p {
        margin-top: 28px;
    }

    .lp-contact-divider {
        width: 132px;
        height: 4px;
        margin-top: 24px;
    }

    .lp-contact-logo {
        width: 186px;
        margin-top: 30px;
    }

    .lp-contact-form {
        min-height: auto;
        border-radius: 36px;
        padding: 34px 34px 28px;
    }

    .lp-contact-form h3 {
        font-size: 32.47px;
        line-height: 136.9%;
    }

    .lead-form {
        margin-top: 18px;
        gap: 12px;
    }

    .lead-form-field label {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .lead-form-field input {
        height: 52px;
        font-size: 16.5px;
        border-radius: 9px;
    }

    .lead-form-button {
        width: 316px;
        height: 60px;
        padding: 0 6px 0 31px;
    }

    .lead-form-button-text strong {
        font-size: 13.6px;
    }

    .lead-form-button-text small {
        font-size: 10.8px;
    }

    .lead-form-button-icon {
        width: 30px;
        height: 30px;
    }

    .lead-form-button-icon img {
        width: 13px;
        height: 13px;
    }
}

@media (max-width: 1120px) {
    :root {
        --lp-gutter: 28px;
    }

    .lp-header-inner {
        height: 82px;
        padding: 0 24px 0 18px;
        gap: 14px;
    }

    .lp-logo {
        width: 146px;
    }

    .lp-nav {
        gap: 18px;
    }

    .lp-nav a {
        font-size: 13px;
    }

    .lp-nav-cta {
        width: auto;
        height: 40px;
        padding: 0 20px;
        font-size: 12.8px;
    }

    .lp-intro {
        padding-top: 66px;
        padding-left: 48px;
        padding-right: 48px;
    }

    .lp-intro::before {
        top: -620px;
        font-size: 1660px;
    }

    .lp-process {
        padding-top: 74px;
    }

    .lp-process-card {
        min-height: 560px;
        padding: 36px 34px;
        grid-template-columns: minmax(0, 1fr) minmax(200px, 40%);
    }

    .lp-process-card::before {
        right: -26px;
        top: -22px;
        font-size: 760px;
    }

    .lp-process-content {
        max-width: 530px;
    }

    .lp-process-content h2 {
        font-size: 48px;
    }

    .lp-step-list {
        margin-top: 24px;
        gap: 22px;
    }

    .lp-step-list article h3 {
        margin-bottom: 7px;
        font-size: 24px;
    }

    .lp-step-list article p {
        font-size: 16.8px;
    }

    .lp-process-figure {
        width: 402px;
        max-width: none;
        right: -10px;
        bottom: -2px;
    }

    .lp-benefits {
        padding: 34px 30px;
        gap: 24px;
    }

    .lp-benefits-text h2 {
        font-size: 50px;
    }

    .lp-benefits-text p {
        font-size: 27px;
    }

    .lp-benefits-list {
        gap: 14px;
    }

    .lp-benefit-item {
        min-height: 74px;
        border-radius: 16px;
        font-size: 20px;
        padding: 0 16px 0 20px;
    }

    .lp-benefit-item img {
        width: 30px;
        height: 30px;
    }

    .lp-intro h1 {
        max-width: 930px;
        font-size: clamp(3.3rem, 5.2vw, 4.2rem);
    }

    .lp-intro-subtitle {
        max-width: 690px;
        font-size: 19px;
        line-height: 1.4;
    }

    .lp-top-buttons {
        margin-top: 24px;
        gap: 12px;
    }

    .lp-pill-button {
        width: min(320px, 100%);
        height: 64px;
        font-size: 13.8px;
        padding: 0 14px;
    }

    .lp-pill-button span:first-child {
        max-width: 225px;
    }

    .lp-pill-icon {
        width: 36px;
        height: 36px;
    }

    .lp-pill-icon-arrow img {
        width: 11.6px;
        height: 11.6px;
    }

    .lp-pill-icon-delivery img {
        width: 20px;
        height: 20px;
    }

    .lp-compare-line {
        margin-bottom: 18px;
    }

    .lp-compare-line::before {
        width: 360px;
    }

    .lp-compare-title-wrap h2 {
        font-size: 56px;
    }

    .lp-compare-title-wrap p {
        max-width: 820px;
        font-size: 22px;
    }

    .lp-compare-grid {
        margin-top: 34px;
        gap: 16px;
    }

    .lp-compare-card {
        min-height: 548px;
        border-radius: 42px;
        padding: 24px 24px;
    }

    .lp-compare-card h3 {
        margin: 2px 0 30px;
        font-size: 46px;
    }

    .lp-compare-logo {
        width: 192px;
        margin-bottom: 28px;
    }

    .lp-compare-card ul {
        gap: 10px;
    }

    .lp-compare-card li {
        min-height: 44px;
        font-size: 20px;
    }

    .lp-compare-card-blue li {
        padding: 0 12px;
    }

    .lp-compare-card-blue::after {
        bottom: 24px;
        width: 72%;
    }

    .lp-stories {
        --lp-story-gap: 20px;
        --lp-story-gap-total: 40px;
        margin-top: 52px;
    }

    .lp-stories h2 {
        max-width: 860px;
        font-size: 62px;
    }

    .lp-stories > p {
        font-size: 21px;
    }

    .lp-story-slider {
        margin-top: 34px;
    }

    .lp-story-grid {
        gap: 20px;
    }

    .lp-story-card {
        min-height: 300px;
        border-radius: 24px;
        padding: 24px 20px 20px;
    }

    .lp-story-card h3 {
        font-size: 34px;
    }

    .lp-story-card h4 {
        margin-top: 8px;
        font-size: 22px;
    }

    .lp-story-card hr {
        margin: 18px auto 14px;
    }

    .lp-story-card p {
        max-width: 310px;
        font-size: 19px;
        line-height: 1.24;
    }

    .lp-stories::after {
        width: 40px;
        height: 7px;
        margin-top: 50px;
    }

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

    .lp-faq {
        margin-top: 86px;
        gap: 16px;
    }

    .lp-faq-title h2 {
        font-size: 54px;
        line-height: 1.2;
    }

    .lp-faq-title p {
        margin-top: 12px;
        max-width: 520px;
        font-size: 21px;
        line-height: 139.9%;
    }

    .lp-faq-items {
        gap: 10px;
    }

    .lp-faq-item {
        min-height: auto;
        border-radius: 18px;
        padding: 12px 14px;
    }

    .lp-faq-item h3 {
        font-size: 22px;
        line-height: 28px;
    }

    .lp-faq-item p {
        margin-top: 7px;
        font-size: 16.8px;
        line-height: 141.1%;
    }

    .lp-faq-item-open {
        min-height: auto;
        border-radius: 26px;
        padding-top: 16px;
        padding-bottom: 18px;
    }

    .lp-contact {
        margin-top: 72px;
    }

    .lp-contact-panel {
        min-height: auto;
        padding: 30px 30px 24px;
        gap: 18px;
        border-radius: 38px;
    }

    .lp-contact-panel::before {
        content: none;
    }

    .lp-contact-info {
        padding: 0;
    }

    .lp-contact-info h2 {
        max-width: 760px;
        font-size: 46px;
        line-height: 1.05;
    }

    .lp-contact-info p {
        margin-top: 18px;
        max-width: 640px;
        font-size: 20px;
        line-height: 1.34;
    }

    .lp-contact-info p + p {
        margin-top: 22px;
    }

    .lp-contact-divider {
        width: 118px;
        height: 4px;
        margin-top: 20px;
    }

    .lp-contact-logo {
        width: 172px;
        margin-top: 24px;
    }

    .lp-contact-form {
        min-height: auto;
        border-radius: 30px;
        padding: 26px 26px 22px;
    }

    .lp-contact-form h3 {
        font-size: 34px;
        line-height: 1.12;
    }

    .lead-form {
        margin-top: 14px;
        gap: 10px;
    }

    .lead-form-field label {
        font-size: 15px;
    }

    .lead-form-field input {
        height: 46px;
        border-radius: 8px;
        font-size: 16px;
    }

    .lead-form-button {
        width: 294px;
        height: 56px;
        margin-top: 8px;
        padding: 0 5px 0 28px;
    }

    .lead-form-button-text strong {
        font-size: 13.2px;
    }

    .lead-form-button-text small {
        font-size: 10.5px;
    }

    .lead-form-button-icon {
        width: 28px;
        height: 28px;
    }

    .lead-form-button-icon img {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 1024px) {
    :root {
        --lp-gutter: 24px;
    }

    .lp-header-inner {
        height: 76px;
        padding: 0 18px 0 14px;
        gap: 10px;
    }

    .lp-logo {
        width: 134px;
    }

    .lp-header {
        z-index: 40;
    }

    .lp-menu-toggle {
        display: inline-flex;
        position: relative;
        z-index: 33;
    }

    .lp-nav-cta-desktop {
        display: none;
    }

    .lp-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: calc(100% + 8px);
        transform: none;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        width: auto;
        padding: 12px;
        border-radius: 20px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        background: var(--white);
        box-shadow: 0 20px 56px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(2, 158, 209, 0.06);
        z-index: 35;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate3d(0, -10px, 0) scale(0.985);
        transform-origin: top center;
        transition: opacity 0.3s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.3s ease;
    }

    .lp-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate3d(0, 0, 0) scale(1);
    }

    .lp-nav a {
        font-size: 14px;
        white-space: normal;
        letter-spacing: 0;
        padding: 10px 12px;
        border-radius: 10px;
        opacity: 0;
        transform: translateY(-7px);
        transition: background 0.22s ease, color 0.22s ease, opacity 0.26s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .lp-nav a:hover {
        background: rgba(12, 155, 252, 0.09);
        color: var(--blue-deep);
    }

    .lp-nav.is-open a {
        opacity: 1;
        transform: translateY(0);
    }

    .lp-nav.is-open a:nth-child(1) {
        transition-delay: 0.03s;
    }

    .lp-nav.is-open a:nth-child(2) {
        transition-delay: 0.07s;
    }

    .lp-nav.is-open a:nth-child(3) {
        transition-delay: 0.11s;
    }

    .lp-nav.is-open a:nth-child(4) {
        transition-delay: 0.15s;
    }

    .lp-nav.is-open a:nth-child(5) {
        transition-delay: 0.19s;
    }

    .lp-nav-cta-mobile {
        display: inline-flex;
        width: 100%;
        height: 46px;
        font-size: 14px;
        margin-top: 2px;
    }

    .lp-menu-scrim {
        display: block;
    }

    .lp-menu-scrim.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .lp-intro {
        padding-top: 58px;
        padding-left: 34px;
        padding-right: 34px;
    }

    .lp-intro h1 {
        font-size: clamp(2.8rem, 5.1vw, 3.5rem);
        line-height: 1.08;
    }

    .lp-intro-subtitle {
        max-width: 640px;
        font-size: 17px;
    }

    .lp-top-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .lp-pill-button {
        width: min(288px, 100%);
        height: 60px;
        font-size: 13px;
        padding: 0 12px;
    }

    .lp-pill-button span:first-child {
        max-width: 204px;
    }

    .lp-pill-icon {
        width: 34px;
        height: 34px;
    }

    .lp-process {
        padding-top: 62px;
    }

    .lp-process-card {
        min-height: 500px;
        padding: 30px 28px;
        grid-template-columns: minmax(0, 1fr) minmax(180px, 37%);
    }

    .lp-process-content h2 {
        font-size: 42px;
    }

    .lp-step-list article h3 {
        font-size: 22px;
    }

    .lp-step-list article p {
        font-size: 16px;
    }

    .lp-process-figure {
        width: 350px;
        right: -0px;
    }

    .lp-compare-title-wrap h2 {
        font-size: 50px;
    }

    .lp-compare-title-wrap p {
        max-width: 760px;
        font-size: 20px;
    }

    .lp-compare-card {
        min-height: 510px;
    }

    .lp-compare-card h3 {
        font-size: 40px;
    }

    .lp-compare-card li {
        font-size: 18px;
    }

    .lp-stories h2 {
        font-size: 50px;
        line-height: 1.08;
    }

    .lp-stories > p {
        font-size: 19px;
    }

    .lp-stories {
        --lp-story-gap: 14px;
        --lp-story-gap-total: 28px;
    }

    .lp-story-grid {
        gap: 14px;
    }

    .lp-story-card {
        min-height: auto;
        padding: 20px 16px;
    }

    .lp-story-card h3 {
        font-size: 28px;
    }

    .lp-story-card h4 {
        font-size: 20px;
    }

    .lp-story-card p {
        max-width: none;
        font-size: 17px;
    }

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

    .lp-contact-form h3 {
        font-size: 31px;
    }
}

@media (max-width: 900px) {
    .lp-intro::before {
        display: none;
    }

    .lp-process-card::before {
        display: none;
    }

    .lp-header-inner {
        height: 72px;
        padding: 0 16px;
        gap: 10px;
    }

    .lp-intro h1 br,
    .lp-process-content h2 br,
    .lp-benefits-text h2 br,
    .lp-stories h2 br,
    .lp-contact-info h2 br,
    .lp-contact-form h3 br {
        display: none;
    }

    .lp-intro h1 {
        font-size: 40px;
        line-height: 1.05;
    }

    .lp-intro-subtitle {
        font-size: 18px;
        line-height: 1.4;
    }

    .lp-top-buttons {
        align-items: center;
    }

    .lp-process-card {
        padding: 28px 22px 0px;
        gap: 18px;
    }

    .lp-process-content h2 {
        font-size: 42px;
    }

    .lp-step-list article h3 {
        font-size: 24px;
    }

    .lp-step-list article p {
        font-size: 14px;
    }

    .lp-process-figure {
        position: static;
        margin: 18px auto 0;
        width: min(420px, 100%);
        display: block;
        justify-self: center;
    }

    .lp-benefits-text h2 {
        font-size: 47px;
    }

    .lp-benefits-text p {
        font-size: 24px;
    }

    .lp-benefit-item {
        white-space: normal;
    }

    .lp-compare-title-wrap h2 {
        font-size: 44px;
    }

    .lp-compare-title-wrap p {
        font-size: 19px;
    }


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

    .lp-compare-card li {
        font-size: 16px;
    }

    .lp-stories h2 {
        font-size: 46px;
    }

    .lp-stories > p {
        font-size: 20px;
    }

    .lp-stories {
        --lp-story-visible: 2;
        --lp-story-gap: 14px;
        --lp-story-gap-total: 14px;
    }

    .lp-faq-title h2 {
        font-size: 50px;
    }

    .lp-faq-title p {
        font-size: 18px;
    }

    .lp-faq-item h3 {
        font-size: 22px;
    }

    .lp-faq-item p {
        font-size: 16.8px;
    }
}

@media (max-width: 768px) {
    .lp-intro {
        padding-top: 55px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .lp-intro h1 {
        font-size: clamp(2.35rem, 7.2vw, 2.85rem);
        line-height: 1.08;
    }

    .lp-intro-subtitle {
        font-size: 16px;
        line-height: 1.42;
    }

    .lp-process-content {
        margin-inline: auto;
        
    }

    .lp-process-card {
        grid-template-columns: 1fr;
    }


    .lp-benefits-text h2 {
        font-size: 42px;
        line-height: 50px;
        text-align: center;
    }


    .lp-benefits-text {
        max-width: 460px;
        margin-inline: auto;
    }

    .lp-benefits-text p {
        text-align: center;
        font-size: 21px;
        line-height: 1.2;
    }

    .lp-compare-grid {
        grid-template-columns: 1fr;
    }   

    .lp-compare-title-wrap h2 {
        font-size: 40px;
        line-height: 1.06;
    }

    .lp-compare-title-wrap p {
        font-size: 18px;
        line-height: 1.38;
    }

    .lp-compare-card h3 {
        font-size: 34px;
    }

    .lp-compare-card li {
        font-size: 18px;
    }

    .lp-stories h2 {
        font-size: 42px;
        max-width: 560px;
        
    }

    .lp-stories > p {
        font-size: 18px;
    }

    .lp-faq {
        grid-template-columns: 1fr;
    }

    .lp-faq-title h2 {
        font-size: 38px;
    }

    .lp-faq-title p {
        font-size: 17px;
    }

    .lp-contact-panel {
        grid-template-columns: 1fr;
    }

    .lp-contact-info h2 {
        font-size: 37px;
    }

    .lp-contact-form h3 {
        font-size: 30px;
    }

    .lp-footer {
        margin-top: 40px;
    }

    .lp-footer-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        padding: 32px 28px;
        gap: 0;
        border-radius: 24px;
    }

    .lp-footer-logo {
        display: flex;
        padding-right: 0;
        padding-bottom: 24px;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
        width: 100%;
        justify-content: center;
    }

    .lp-footer-logo img {
        width: 130px;
    }

    .lp-footer-info {
        align-items: center;
        gap: 14px;
        padding: 24px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
        width: 100%;
    }

    .lp-footer-link {
        font-size: 16px;
        gap: 10px;
    }

    .lp-footer-icon {
        width: 28px;
        height: 28px;
        border-radius: 6px;
    }

    .lp-footer-icon svg {
        width: 16px;
        height: 16px;
    }

    .lp-footer-social {
        justify-content: center;
        padding-left: 0;
        padding-top: 20px;
        border-left: none;
    }

    .lp-footer-social-link {
        width: 40px;
        height: 40px;
    }

    .lp-footer-social-link svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 620px) {
    :root {
        --lp-gutter: 16px;
    }

    .lp-nav {
        left: 12px;
        right: 12px;
        padding: 10px;
        gap: 4px;
    }

    .lp-nav a {
        font-size: 13px;
        letter-spacing: 0;
        text-align: left;
    }

    .lp-nav-cta-mobile {
        width: 100%;
        height: 44px;
        font-size: 13px;
    }

    .lp-page {
        padding-bottom: 56px;
    }

    .lp-page::after {
        font-size: 1100px;
    }

    .lp-page::after {
        top: 1400px;
        left: -640px;
    }

    .lp-intro {
        padding: 30px 16px 0;
    }

    .lp-intro h1 {
        font-size: clamp(1.9rem, 9vw, 2.75rem);
        line-height: 1.08;
    }

    .lp-intro-subtitle {
        margin-top: 12px;
        font-size: 17px;
        line-height: 1.45;
    }

    .lp-pill-button {
        width: 100%;
        min-height: 62px;
        height: auto;
        padding: 10px 12px;
        font-size: 13px;
    }

    .lp-top-buttons {
        margin-top: 100px;
    }

    .lp-benefits {
        grid-template-columns: 1fr;
    }

    .lp-process {
        padding-top: 28px;
    }

    .lp-process-card {
        border-radius: 16px;
        min-height: auto;
    }

    .lp-process-content h2 {
        font-size: clamp(2rem, 8vw, 2.4rem);
    }

    .lp-step-list {
        gap: 16px;
    }

    .lp-step-list article h3 {
        font-size: 21px;
    }

    .lp-step-list article p {
        font-size: 16px;
    }

    .lp-benefits {
        margin: 12px var(--lp-gutter) 0;
        padding: 24px 16px;
        border-radius: 16px;
        gap: 22px;
    }

    .lp-benefits-text h2 {
        font-size: clamp(2rem, 9vw, 2.6rem);
        line-height: 1.02;
    }

    .lp-benefits-text p {
        font-size: clamp(1.25rem, 5.8vw, 1.6rem);
        line-height: 1.2;
    }

    .lp-benefits-list {
        gap: 10px;
    }

    .lp-benefit-item {
        min-height: 46px;
        border-radius: 8px;
        padding: 8px 10px;
        font-size: 14px;
        gap: 8px;
    }

    .lp-benefit-item img {
        width: 18px;
        height: 18px;
    }

    .lp-compare {
        margin-top: 26px;
    }

    .lp-compare-line {
        margin-bottom: 10px;
    }

    .lp-compare-line::before {
        width: 38%;
    }

    .lp-compare-title-wrap h2 {
        font-size: 32px;
        line-height: 1.05;
    }

    .lp-compare-title-wrap p {
        font-size: 16px;
        line-height: 1.35;
    }

    .lp-compare-grid {
        margin-top: 14px;
        gap: 10px;
    }

    .lp-compare-card {
        min-height: auto;
        border-radius: 16px;
        padding: 14px 10px 12px;
    }

    .lp-compare-logo {
        width: 86px;
        margin-bottom: 10px;
    }

    .lp-compare-card h3 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .lp-compare-card ul {
        gap: 8px;
    }

    .lp-compare-card li {
        min-height: 28px;
        font-size: 16px;
        line-height: 1.2;
    }

    .lp-stories {
        --lp-story-visible: 1;
        --lp-story-gap: 8px;
        --lp-story-gap-total: 0px;
        margin-top: 28px;
    }

    .lp-stories h2 {
        font-size: clamp(2rem, 9vw, 2.6rem);
        line-height: 1.08;
    }

    .lp-stories > p {
        margin-top: 4px;
        font-size: 16px;
        line-height: 1.35;
    }

    .lp-story-slider {
        margin-top: 18px;
    }

    .lp-story-grid {
        gap: var(--lp-story-gap);
    }

    .lp-story-card {
        min-height: auto;
        border-radius: 10px;
        padding: 12px 10px;
    }

    .lp-story-card h3 {
        font-size: 24px;
    }

    .lp-story-card h4 {
        font-size: 16px;
        margin-top: 1px;
    }

    .lp-story-card hr {
        margin: 8px auto;
    }

    .lp-story-card p {
        font-size: 16px;
        line-height: 1.32;
    }

    .lp-story-controls {
        margin-top: 14px;
        gap: 12px;
    }

    .lp-story-arrow {
        width: 42px;
        height: 42px;
    }

    .lp-story-arrow span {
        font-size: 34px;
    }

    .lp-story-dot {
        width: 9px;
        height: 9px;
    }

    .lp-story-dot.is-active {
        width: 28px;
    }

    .lp-faq {
        margin-top: 34px;
        gap: 12px;
    }

    .lp-faq-title h2 {
        font-size: clamp(2rem, 9vw, 2.6rem);
    }

    .lp-faq-title p {
        margin-top: 6px;
        font-size: 18px;
    }

    .lp-faq-items {
        gap: 8px;
    }

    .lp-faq-item {
        border-radius: 10px;
        padding: 10px 10px 8px;
    }

    .lp-faq-question {
        gap: 10px;
    }

    .lp-faq-icon {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .lp-faq-icon::before,
    .lp-faq-icon::after {
        width: 13px;
        height: 2px;
    }

    .lp-faq-item-open {
        border-radius: 12px;
    }

    .lp-faq-item h3 {
        font-size: 20px;
        line-height: 1.25;
    }

    .lp-faq-item p {
        margin-top: 6px;
        font-size: 15px;
        line-height: 1.4;
    }

    .lp-contact {
        margin-top: 26px;
    }

    .lp-contact-panel {
        border-radius: 16px;
        padding: 20px 12px 12px;
        gap: 10px;
    }

    .lp-contact-info h2 {
        font-size: clamp(2rem, 8.5vw, 2.5rem);
        line-height: 1.12;
    }

    .lp-contact-info p {
        margin-top: 8px;
        font-size: 16px;
        line-height: 1.45;
        max-width: none;
    }

    .lp-contact-info p + p {
        margin-top: 12px;
    }

    .lp-contact-divider {
        width: 74px;
        height: 3px;
        margin-top: 14px;
    }

    .lp-contact-logo {
        width: 120px;
        margin-top: 14px;
    }

    .lp-contact-form {
        border-radius: 12px;
        padding: 14px 12px 10px;
    }

    .lp-contact-form h3 {
        font-size: 28px;
        line-height: 1.15;
    }

    .lead-form {
        margin-top: 10px;
        gap: 10px;
    }

    .lead-form-field label {
        margin-bottom: 4px;
        font-size: 14px;
        line-height: 1.25;
    }

    .lead-form-field input {
        height: 42px;
        font-size: 14px;
        padding: 0 12px;
        border-radius: 8px;
    }

    .lead-form-button {
        width: 100%;
        max-width: 100%;
        height: 52px;
        gap: 6px;
        margin-top: 8px;
        justify-self: center;
        padding: 0 4px 0 24px;
    }

    .lead-form-button-text strong {
        font-size: 12px;
    }

    .lead-form-button-text small {
        font-size: 10px;
    }

    .lead-form-button-icon {
        width: 21px;
        height: 21px;
    }

    .lead-form-button-icon img {
        width: 10px;
        height: 10px;
    }

    .lead-form-status {
        text-align: center;
        font-size: 13px;
    }

    .lp-footer {
        margin-top: 32px;
        padding: 0 16px;
    }

    .lp-footer-inner {
        padding: 28px 20px;
        border-radius: 20px;
        gap: 0;
    }

    .lp-footer-logo img {
        width: 110px;
    }

    .lp-footer-info {
        gap: 12px;
    }

    .lp-footer-link {
        font-size: 15px;
        gap: 10px;
    }

    .lp-footer-icon {
        width: 28px;
        height: 28px;
        border-radius: 6px;
    }

    .lp-footer-icon svg {
        width: 16px;
        height: 16px;
    }

    .lp-footer-social-link {
        width: 40px;
        height: 40px;
    }

    .lp-footer-social-link svg {
        width: 18px;
        height: 18px;
    }
}

@media (min-width: 901px) {
    .lp-compare-card {
        display: flex;
        flex-direction: column;
    }

    .lp-compare-card-head {
        height: 138px;
        margin-bottom: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lp-compare-card-head .lp-compare-logo,
    .lp-compare-card-head .lp-compare-card-title {
        margin: 0;
    }

    .lp-compare-card-blue .lp-compare-logo {
        transform: translateY(12px);
    }

    .lp-compare-card-light .lp-compare-card-title {
        transform: translateY(14px);
    }

    .lp-compare-card-blue::after {
        content: none;
    }

    .lp-compare-card-blue ul::after {
        content: "";
        display: block;
        width: 76%;
        height: 4px;
        border-radius: 999px;
        margin: 40px auto 0;
        background: rgba(255, 255, 255, 0.9);
    }

    .lp-compare-card ul {
        grid-template-rows: repeat(4, minmax(62px, auto));
    }

    .lp-compare-card li {
        min-height: 62px;
        font-size: 18px;
        line-height: 124.2%;
    }

    .lp-compare-card h3 {
        font-size: 54.63px;
        line-height: 127.8%;
    }
}
