:root {
    --px-inner-primary: #1b84ff;
    --px-inner-navy: #071637;
    --px-inner-title: #30374f;
    --px-inner-text: #667085;
    --px-inner-line: #e4e7ec;
    --px-inner-soft: #f5f9ff;
}

body.px-inner-body {
    margin: 0;
    overflow-x: hidden;
    color: var(--px-inner-text);
    background: #fff;
}

.px-inner-body *,
.px-inner-body *::before,
.px-inner-body *::after {
    box-sizing: border-box;
}

.px-inner-body img {
    max-width: 100%;
}

.px-inner-body a {
    text-decoration: none;
}

.px-inner-shell {
    width: min(1296px, calc(100% - 40px));
    margin-inline: auto;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.px-inner-button {
    min-height: 44px;
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.px-inner-button:hover {
    transform: translateY(-2px);
}

.px-inner-button--primary {
    color: #fff;
    background: var(--px-inner-primary);
    box-shadow: 0 1px 2px rgba(16, 24, 40, .05);
}

.px-inner-button--primary:hover,
.px-inner-button--primary:focus {
    color: #fff;
    background: #0876f4;
    box-shadow: 0 8px 20px rgba(27, 132, 255, .22);
}

.px-inner-header {
    padding-block: 28px 24px;
    position: relative;
    z-index: 100;
}

.px-inner-header__inner {
    min-height: 64px;
    padding: 9px 16px;
    border: 1px solid #d0d5dd;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(16, 24, 40, .04);
}

.px-inner-header__logo,
.px-inner-header__logo img {
    width: 80px;
    height: 44px;
}

.px-inner-header__logo {
    display: flex;
    align-items: center;
}

.px-inner-header__logo img {
    object-fit: contain;
}

.px-inner-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.px-inner-header__nav a {
    min-height: 42px;
    padding: 9px 2px;
    position: relative;
    color: #5f6471;
    font-size: 14px;
    font-weight: 500;
}

.px-inner-header__nav a:hover,
.px-inner-header__nav a.is-active {
    color: var(--px-inner-primary);
}

.px-inner-header__nav a.is-active::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--px-inner-primary);
}

.px-inner-header__action {
    min-width: 142px;
}

.px-inner-header__toggle {
    width: 44px;
    height: 44px;
    padding: 11px;
    border: 0;
    border-radius: 8px;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: #eef6ff;
    cursor: pointer;
}

.px-inner-header__toggle span:not(.screen-reader-text) {
    height: 2px;
    border-radius: 2px;
    background: var(--px-inner-title);
    transition: transform .2s ease, opacity .2s ease;
}

.px-inner-eyebrow {
    min-height: 30px;
    padding: 5px 13px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--px-inner-primary);
    background: #eef6ff;
    font-size: 12px;
    font-weight: 600;
}

.px-inner-section-title {
    margin: 0;
    color: var(--px-inner-title);
    font-size: clamp(25px, 2.5vw, 36px);
    font-weight: 700;
    line-height: 1.6;
}

.px-inner-section-copy {
    max-width: 760px;
    margin: 10px auto 0;
    color: var(--px-inner-text);
    font-size: 15px;
    line-height: 2;
}

.px-inner-cta {
    min-height: 330px;
    margin-top: 84px;
    padding: 70px 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        linear-gradient(rgba(48, 55, 79, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(48, 55, 79, .035) 1px, transparent 1px);
    background-size: 96px 96px;
}

.px-inner-cta h2 {
    width: min(650px, 100%);
    margin: 0;
    color: #111827;
    font-size: clamp(26px, 2.7vw, 38px);
    font-weight: 700;
    line-height: 1.55;
}

.px-inner-cta p {
    margin: 12px 0 26px;
    font-size: 16px;
}

.px-inner-cta .px-inner-button {
    min-width: 220px;
}

.px-inner-cta__icon {
    width: 52px;
    height: 52px;
    padding: 10px;
    border: 1px solid #eef2f6;
    border-radius: 10px;
    position: absolute;
    display: grid;
    place-items: center;
    background: #fff;
    box-shadow: 0 8px 28px rgba(48, 55, 79, .08);
}

.px-inner-cta__icon img {
    width: 30px;
    height: 30px;
}

.px-inner-cta__icon--right {
    top: 74px;
    right: 10%;
    transform: rotate(-10deg);
}

.px-inner-cta__icon--left {
    bottom: 58px;
    left: 12%;
    transform: rotate(9deg);
}

.px-inner-footer {
    margin-top: 48px;
    padding: 48px 0 30px;
    color: #d0d5dd;
    background: var(--px-inner-navy);
}

.px-inner-footer__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.px-inner-footer__brand a {
    width: 76px;
    height: 48px;
    padding: 5px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: #fff;
}

.px-inner-footer__brand img {
    width: 70px;
    height: 38px;
    object-fit: contain;
}

.px-inner-footer__brand p {
    margin: 0;
    color: #e7e9ee;
    font-size: 17px;
}

.px-inner-footer__nav {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.px-inner-footer__nav a {
    padding: 4px 18px;
    position: relative;
    color: #d0d5dd;
    font-size: 13px;
}

.px-inner-footer__nav a:not(:last-child)::after {
    content: "•";
    position: absolute;
    left: -2px;
    color: #667085;
}

.px-inner-footer__nav a:hover {
    color: #fff;
}

.px-inner-footer__trust {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.px-inner-footer__trust-item {
    width: 86px;
    height: 76px;
    padding: 7px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #475467;
    background: #fff;
    font-size: 9px;
}

.px-inner-footer__trust-item img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.px-inner-footer__bottom {
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid rgba(152, 162, 179, .22);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.px-inner-footer__bottom p {
    margin: 0;
    color: #98a2b3;
    font-size: 12px;
}

.px-inner-footer__socials {
    display: flex;
    gap: 9px;
    direction: ltr;
}

.px-inner-footer__socials a {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #98a2b3;
    font: 11px Arial, sans-serif;
}

.px-inner-footer__socials a:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .45);
}

@media (max-width: 991.98px) {
    .px-inner-header__toggle {
        display: flex;
        order: 3;
    }

    .px-inner-header__logo {
        order: 1;
    }

    .px-inner-header__action {
        display: none;
    }

    .px-inner-header__nav {
        padding: 12px 18px;
        border: 1px solid #d0d5dd;
        border-radius: 12px;
        position: absolute;
        top: calc(100% + 8px);
        right: 20px;
        left: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        background: #fff;
        box-shadow: 0 14px 30px rgba(16, 24, 40, .12);
    }

    .px-inner-header__nav.is-open {
        display: flex;
    }

    .px-inner-header__nav a {
        padding: 10px 4px;
    }

    .px-inner-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .px-inner-shell {
        width: min(100% - 28px, 540px);
    }

    .px-inner-header {
        padding-block: 18px;
    }

    .px-inner-header__inner {
        min-height: 60px;
        padding: 8px 10px;
    }

    .px-inner-footer__brand {
        flex-direction: column;
        text-align: center;
    }

    .px-inner-footer__trust {
        max-width: 200px;
        margin-inline: auto;
        flex-wrap: wrap;
    }

    .px-inner-cta__icon {
        width: 44px;
        height: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .px-inner-button,
    .px-inner-header__toggle span {
        transition: none;
    }
}
