:root {
    --px-primary: #1b84ff;
    --px-navy: #253a6c;
    --px-ink: #30374f;
    --px-body: #475467;
    --px-muted: #717784;
    --px-line: #e1e4ea;
    --px-surface: #f5f7fa;
    --px-soft-blue: #e3f2ff;
    --px-success: #1fc16b;
}

html {
    scroll-behavior: smooth;
}

body.px-home-body {
    margin: 0;
    background: #fff;
    overflow-x: hidden;
}

.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-home-body img {
    max-width: 100%;
}

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

.px-home {
    overflow: hidden;
}

.px-section {
    padding-block: 112px 0;
}

.px-section-heading {
    width: min(772px, 100%);
    margin-inline: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.px-section-heading h2,
.px-cta h2 {
    margin: 0;
    color: var(--px-ink);
    font-size: clamp(25px, 2.2vw, 30px);
    font-weight: 700;
    line-height: 1.4;
}

.px-section-heading p,
.px-cta > p {
    width: min(650px, 100%);
    margin: 0;
    color: var(--px-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.px-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 36px;
    padding: 7px 16px;
    border-radius: 999px;
    background: var(--px-soft-blue);
    color: var(--px-primary);
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    position: relative;
}

.px-kicker::before,
.px-kicker::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 32px;
    height: 30px;
    transform: translateY(-50%);
    opacity: .75;
    background:
        linear-gradient(90deg, transparent 0 4px, #b9dcff 4px 5px, transparent 5px 10px, #b9dcff 10px 11px, transparent 11px 16px, #b9dcff 16px 17px, transparent 17px);
}

.px-kicker::before {
    right: calc(100% + 8px);
}

.px-kicker::after {
    left: calc(100% + 8px);
    transform: translateY(-50%) scaleX(-1);
}

.px-kicker img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.px-kicker--light {
    background: #fff;
    color: #14151a;
    box-shadow: 0 2px 30px #abacc4;
    font-size: 16px;
}

.px-kicker--light::before,
.px-kicker--light::after {
    display: none;
}

.px-button {
    min-height: 44px;
    padding: 10px 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

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

.px-button img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

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

.px-button--primary:hover,
.px-button--primary:focus {
    color: #fff;
    background: #0675f5;
    box-shadow: 0 8px 18px rgba(27, 132, 255, .22);
}

.px-button--outline-light {
    min-width: 231px;
    min-height: 56px;
    border-color: #fff;
    color: #fff;
    background: transparent;
    font-size: 20px;
}

.px-button--outline-light:hover,
.px-button--outline-light:focus {
    color: #fff;
    background: rgba(255, 255, 255, .1);
}

.px-button--outline-light img {
    width: 24px;
    height: 24px;
}

.px-header {
    padding-top: 40px;
    position: relative;
    z-index: 100;
}

.px-header__inner {
    min-height: 66px;
    padding: 10px 16px;
    border: 1px solid #cccddc;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(10, 13, 20, .03);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.px-header__logo {
    width: 80px;
    height: 44px;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.px-header__logo img {
    width: 80px;
    height: 44px;
    object-fit: contain;
}

.px-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    margin-inline: auto;
}

.px-header__nav a {
    color: #717680;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    position: relative;
}

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

.px-header__nav a.is-active {
    font-weight: 600;
}

.px-header__nav a.is-active::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: -11px;
    height: 1px;
    background: var(--px-primary);
}

.px-header__action {
    min-width: 155px;
    flex: 0 0 auto;
}

.px-header__toggle {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 8px;
    background: var(--px-soft-blue);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
}

.px-header__toggle span:not(.screen-reader-text) {
    width: 20px;
    height: 2px;
    background: var(--px-navy);
    border-radius: 4px;
    transition: .2s ease;
}

.px-hero {
    height: 754px;
    margin-top: 46px;
    border-radius: 24px;
    background: var(--px-navy);
    overflow: hidden;
    position: relative;
}

.px-hero__grid {
    position: absolute;
    inset: -160px;
    opacity: .2;
    transform: rotate(0deg);
    background-image:
        linear-gradient(rgba(255, 255, 255, .26) 2px, transparent 2px),
        linear-gradient(90deg, rgba(255, 255, 255, .26) 2px, transparent 2px);
    background-size: 162px 162px;
}

.px-hero__visual {
    position: absolute;
    inset: 0 auto 0 0;
    width: 45%;
}

.px-hero__phone {
    position: absolute;
    width: 374px;
    height: auto;
    left: 64px;
    top: 80px;
    object-fit: contain;
}

.px-hero__floating-card {
    position: absolute;
    top: 509px;
    left: 287px;
    width: 380px;
    padding: 24px;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, .3);
    direction: ltr;
    display: flex;
    align-items: center;
    gap: 20px;
}

.px-hero__floating-card > img {
    width: 70px;
    height: 70px;
    flex: 0 0 auto;
}

.px-hero__floating-card strong,
.px-hero__floating-card p {
    direction: ltr;
    font-family: Arial, sans-serif !important;
    text-align: left;
}

.px-hero__floating-card strong {
    display: block;
    color: #29263b;
    font-size: 17px;
    margin-bottom: 8px;
}

.px-hero__floating-card p {
    color: #838282;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

.px-hero__content {
    position: absolute;
    z-index: 2;
    top: 80px;
    right: 64px;
    width: 668px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.px-hero__content h1 {
    color: #fff;
    margin: 0;
    font-size: clamp(34px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.55;
    letter-spacing: -.8px;
}

.px-hero__content > p {
    color: #e9d7fe;
    margin: 0;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.9;
}

.px-hero__content .px-button {
    margin-top: 24px;
}

.px-features {
    padding-top: 204px;
}

.px-feature-grid {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-areas:
        "collect ai analytics"
        "payment ai preview";
    gap: 24px;
}

.px-feature-card {
    min-height: 239px;
    padding: 20px;
    border-radius: 16px;
    background: var(--px-surface);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.px-feature-card--collect {
    grid-area: collect;
}

.px-feature-card--payment {
    grid-area: payment;
}

.px-feature-card--ai {
    grid-area: ai;
    min-height: 502px;
    padding-block: 40px;
}

.px-feature-card--analytics {
    grid-area: analytics;
}

.px-feature-card--preview {
    grid-area: preview;
}

.px-feature-card__decoration {
    position: absolute;
    top: -36px;
    left: -25px;
    width: 164px;
    height: 164px;
    object-fit: contain;
    opacity: .9;
}

.px-feature-card--ai .px-feature-card__decoration {
    top: -14px;
    left: 0;
}

.px-icon-bubble {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 1px #ebebeb, 0 1px 3px rgba(143, 143, 143, .2), inset 0 -2px 0 rgba(62, 62, 62, .04);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
}

.px-icon-bubble img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.px-icon-bubble--small {
    width: 40px;
    height: 40px;
}

.px-icon-bubble--small img {
    width: 24px;
    height: 24px;
}

.px-feature-card h3 {
    color: #424242;
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}

.px-feature-card p {
    color: var(--px-body);
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

.px-ai .px-section-heading {
    margin-bottom: 80px;
}

.px-ai__steps {
    width: min(1200px, 100%);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-block: 1px solid #ebebeb;
}

.px-ai__steps article {
    min-height: 108px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 1px solid #ebebeb;
    position: relative;
}

.px-ai__steps article:last-child {
    border-left: 0;
}

.px-ai__steps article.is-active::before {
    content: "";
    position: absolute;
    top: -1px;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(227, 242, 255, .2), var(--px-primary));
}

.px-ai__steps strong {
    display: block;
    color: #717784;
    margin-bottom: 3px;
    font-size: 14px;
    font-weight: 500;
}

.px-ai__steps .is-active strong {
    color: var(--px-primary);
    font-weight: 700;
}

.px-ai__steps p {
    margin: 0;
    color: #717784;
    font-size: 14px;
    line-height: 1.6;
}

.px-ai__stage {
    min-height: 914px;
    margin-top: 32px;
    padding: 32px 20px 20px;
    border-radius: 32px;
    background: linear-gradient(180deg, #fff 0 45%, #e5eeff 45%, #f9fbff 100%);
    overflow: hidden;
    position: relative;
}

.px-ai__pattern {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: .45;
    object-fit: cover;
}

.px-ai__screen {
    width: min(1026px, calc(100% - 80px));
    height: 642px;
    margin: 0 auto;
    padding: 8px;
    border-radius: 32px;
    background: #fbfbfe;
    box-shadow: 0 12px 20px -4px rgba(150, 144, 155, .22);
    position: relative;
    z-index: 2;
}

.px-ai__screen::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 67px 67px rgba(88, 83, 128, .04), 0 17px 37px rgba(88, 83, 128, .06);
}

.px-ai__screen > img {
    position: absolute;
    z-index: 2;
    width: 128px;
    height: 124px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
}

.px-ai__stats {
    position: relative;
    z-index: 3;
    margin-top: -10px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: .5px solid #d9dbe9;
    border-radius: 24px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(25, 33, 61, .06);
}

.px-ai__stats article {
    padding: 24px 44px;
    border-left: .5px solid #d9dbe9;
}

.px-ai__stats article:last-child {
    border-left: 0;
}

.px-ai__stats strong {
    color: #170f49;
    font-size: 24px;
    font-weight: 800;
}

.px-ai__stats strong::before {
    content: "↑";
    color: #31b34b;
    padding-left: 4px;
}

.px-ai__stats h3 {
    margin: 8px 0;
    color: #2b303b;
    font-size: 20px;
}

.px-ai__stats p {
    margin: 0;
    color: #717784;
    font-size: 16px;
    line-height: 1.65;
}

.px-brands {
    padding-block: 152px 80px;
}

.px-brand-cloud {
    width: 868px;
    max-width: 100%;
    height: 358px;
    margin: 64px auto 0;
    position: relative;
}

.px-brand-cloud::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    border-top: 2px dashed #e7e9ef;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.px-brand-cloud__item {
    width: 100px;
    height: 102px;
    padding: 22px;
    border: 1px solid var(--px-line);
    border-radius: 24px;
    position: absolute;
    background: #fff;
    box-shadow: 0 2px 4px -2px rgba(24, 39, 75, .12), 0 4px 4px -2px rgba(24, 39, 75, .08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.px-brand-cloud__item:nth-child(1)  { left: 0; top: 128px; }
.px-brand-cloud__item:nth-child(2)  { left: 128px; top: 64px; }
.px-brand-cloud__item:nth-child(3)  { left: 128px; top: 192px; }
.px-brand-cloud__item:nth-child(4)  { left: 256px; top: 0; }
.px-brand-cloud__item:nth-child(5)  { left: 256px; top: 128px; }
.px-brand-cloud__item:nth-child(6)  { left: 256px; top: 256px; }
.px-brand-cloud__item:nth-child(7)  { left: 384px; top: 64px; }
.px-brand-cloud__item:nth-child(8)  { left: 384px; top: 192px; }
.px-brand-cloud__item:nth-child(9)  { left: 512px; top: 0; }
.px-brand-cloud__item:nth-child(10) { left: 512px; top: 128px; }
.px-brand-cloud__item:nth-child(11) { left: 512px; top: 256px; }
.px-brand-cloud__item:nth-child(12) { left: 640px; top: 64px; }
.px-brand-cloud__item:nth-child(13) { left: 640px; top: 192px; }
.px-brand-cloud__item:nth-child(14) { left: 768px; top: 128px; }

.px-brand-cloud__item.is-framed {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.px-brand-cloud__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.px-pricing {
    padding-top: 112px;
}

.px-pricing__grid {
    margin-top: 64px;
    display: grid;
    grid-template-columns: 2.08fr 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.px-plan {
    min-height: 296px;
    padding: 24px;
    border: 1px solid #cacfd8;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 2px 4px -2px rgba(24, 39, 75, .12), 0 4px 4px -2px rgba(24, 39, 75, .08);
    overflow: hidden;
    position: relative;
}

.px-plan.is-featured {
    background: var(--px-surface);
    border-color: #ebebf0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.px-plan.is-featured::before {
    content: "";
    position: absolute;
    inset: -80px 45% 10% -10%;
    background: url("../images/figma-home/how_it_works-imggrid.svg") center/cover no-repeat;
    opacity: .45;
}

.px-plan__summary {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.px-plan__title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.px-plan__title h3 {
    color: #000;
    margin: 0;
    font-size: 32px;
    line-height: 1.4;
}

.px-plan__title span {
    color: #525866;
    font-size: 20px;
    font-weight: 600;
    direction: ltr;
}

.px-plan__summary > p {
    margin: 2px 0 0;
    color: #2b303b;
    font-size: 14px;
    line-height: 1.65;
}

.px-plan__price {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #717784;
}

.px-plan__price img {
    width: 24px;
    height: 24px;
}

.px-plan__price span {
    font-size: 18px;
}

.px-plan__price strong {
    color: var(--px-success);
    font-size: 24px;
}

.px-plan__price small {
    color: #717784;
    font-size: 16px;
}

.px-plan .px-button {
    width: 100%;
    margin-top: 26px;
    min-height: 40px;
    padding-block: 8px;
    font-size: 14px;
}

.px-plan__badge {
    position: absolute;
    z-index: 3;
    top: 24px;
    right: 130px;
    min-width: 82px;
    min-height: 24px;
    padding: 2px 12px;
    border: 1px dashed #abacc4;
    border-radius: 8px;
    background: #fff;
    color: #605b89;
    font-size: 12px;
    text-align: center;
}

.px-plan__features {
    margin: 0;
    padding: 16px;
    border: 1px solid #f2f5f8;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 6px -4px rgba(24, 39, 75, .12), 0 8px 8px -4px rgba(24, 39, 75, .08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    list-style: none;
    position: relative;
    z-index: 2;
}

.px-plan__features li {
    color: #525866;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.px-plan__features img {
    width: 20px;
    height: 20px;
}

.px-faq {
    margin-top: 112px;
    padding: 80px 48px;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    background: linear-gradient(0deg, #e5eeff, #f9fbff);
    box-shadow: 0 4px 8px rgba(143, 143, 143, .06);
    display: grid;
    grid-template-columns: minmax(0, 711px) minmax(280px, 346px);
    justify-content: center;
    align-items: start;
    gap: 64px;
}

.px-faq .px-section-heading {
    width: 100%;
}

.px-accordion {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.px-accordion__item {
    border: 1px solid var(--px-line);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.px-accordion__item.is-open {
    border-color: #99a0ae;
    box-shadow: 0 2px 4px -2px rgba(24, 39, 75, .12), 0 4px 4px -2px rgba(24, 39, 75, .08);
}

.px-accordion__item button {
    width: 100%;
    min-height: 56px;
    padding: 15px 16px;
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
}

.px-accordion__item button span {
    flex: 1;
    color: #2b303b;
    font-size: 18px;
    font-weight: 600;
    text-align: right;
}

.px-accordion__item button img {
    width: 24px;
    height: 24px;
}

.px-accordion__minus {
    display: none;
}

.px-accordion__item.is-open .px-accordion__minus {
    display: block;
}

.px-accordion__item.is-open .px-accordion__plus {
    display: none;
}

.px-accordion__answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .25s ease;
}

.px-accordion__answer p {
    min-height: 0;
    overflow: hidden;
    margin: 0;
    padding-inline: 16px;
    color: #525866;
    font-size: 17px;
    line-height: 1.75;
}

.px-accordion__item.is-open .px-accordion__answer {
    grid-template-rows: 1fr;
}

.px-accordion__item.is-open .px-accordion__answer p {
    padding-bottom: 16px;
}

.px-link-button {
    display: inline-block;
    margin-top: 20px;
    color: var(--px-primary);
    font-size: 16px;
    font-weight: 500;
}

.px-faq__ask {
    padding-top: 44px;
    text-align: center;
}

.px-faq__question-mark {
    width: 250px;
    height: 250px;
    margin-inline: auto;
    border-radius: 30px;
    background:
        radial-gradient(circle at center, #1b84ff 0 28%, rgba(27, 132, 255, .32) 29% 48%, rgba(27, 132, 255, .13) 49% 68%, transparent 69%);
    color: #fff;
    font-family: Arial, sans-serif !important;
    font-size: 90px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 6px 22px rgba(27, 132, 255, .24));
}

.px-faq__ask h3 {
    margin: 28px 0 12px;
    color: #000;
    font-size: 24px;
}

.px-faq__ask > p {
    margin: 0;
    color: var(--px-body);
    font-size: 18px;
    line-height: 28px;
}

.px-faq__ask form {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.px-faq__ask label {
    height: 48px;
    padding: 10px 12px;
    border: 1px solid var(--px-line);
    border-radius: 8px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.px-faq__ask label img {
    width: 24px;
    height: 24px;
}

.px-faq__ask input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #2b303b;
    font-size: 16px;
}

.px-faq__ask input::placeholder {
    color: #99a0ae;
}

.px-testimonials {
    padding-top: 112px;
}

.px-testimonials__grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.px-testimonial {
    min-height: 330px;
    padding: 28px;
    border: 1px solid var(--px-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(37, 58, 108, .08);
    display: flex;
    flex-direction: column;
}

.px-testimonial.is-highlighted {
    color: #fff;
    background: var(--px-navy);
    border-color: var(--px-navy);
    transform: translateY(-16px);
}

.px-testimonial__stars {
    color: #ffb423;
    direction: ltr;
    text-align: right;
    letter-spacing: 3px;
}

.px-testimonial blockquote {
    margin: 24px 0 32px;
    color: var(--px-body);
    font-size: 17px;
    line-height: 1.9;
}

.px-testimonial.is-highlighted blockquote,
.px-testimonial.is-highlighted footer strong,
.px-testimonial.is-highlighted footer b {
    color: #fff;
}

.px-testimonial footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.px-testimonial__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--px-primary), #86bdff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.px-testimonial footer div {
    display: flex;
    flex-direction: column;
}

.px-testimonial footer strong {
    color: #2b303b;
    font-size: 15px;
}

.px-testimonial footer span {
    color: #99a0ae;
    font-size: 13px;
}

.px-testimonial footer b {
    margin-right: auto;
    color: var(--px-navy);
}

.px-cta {
    min-height: 440px;
    margin-top: 112px;
    padding: 80px 24px;
    border: 1px solid #eef1f7;
    border-radius: 20px;
    background: #fff;
    text-align: center;
    box-shadow: 0 16px 50px rgba(37, 58, 108, .06);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.px-cta .px-button {
    min-width: 190px;
    margin-top: 12px;
}

.px-cta__sparkles i {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    background: var(--px-primary);
    position: absolute;
    transform: rotate(45deg);
    opacity: .75;
}

.px-cta__sparkles i:nth-child(1) {
    left: 7%;
    top: 27%;
}

.px-cta__sparkles i:nth-child(2) {
    left: 19%;
    bottom: 19%;
    width: 8px;
    height: 8px;
}

.px-cta__sparkles i:nth-child(3) {
    right: 9%;
    top: 24%;
    width: 9px;
    height: 9px;
}

.px-cta__sparkles i:nth-child(4) {
    right: 22%;
    bottom: 17%;
}

.px-cta__sparkles i:nth-child(5) {
    left: 50%;
    top: 12%;
    opacity: .25;
}

.px-blog {
    padding-block: 112px;
}

.px-blog__grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.px-post-card {
    border: 1px solid var(--px-line);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(37, 58, 108, .06);
}

.px-post-card__image {
    height: 205px;
    background: linear-gradient(135deg, #d5e7fb, #85b7ec);
    display: block;
    overflow: hidden;
}

.px-post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.px-post-card:hover .px-post-card__image img {
    transform: scale(1.04);
}

.px-post-card__image span {
    width: 100%;
    height: 100%;
    display: block;
    background:
        linear-gradient(135deg, rgba(27, 132, 255, .78), rgba(37, 58, 108, .25)),
        radial-gradient(circle at 70% 25%, #fff 0 4%, transparent 5%);
}

.px-post-card__image--2 {
    background: linear-gradient(135deg, #f0d7bb, #927052);
}

.px-post-card__image--3 {
    background: linear-gradient(135deg, #d5d7e2, #606a84);
}

.px-post-card > div:last-child {
    padding: 20px;
}

.px-post-card > div > span {
    color: var(--px-primary);
    font-size: 13px;
}

.px-post-card h3 {
    min-height: 58px;
    margin: 9px 0;
    font-size: 19px;
    line-height: 1.55;
}

.px-post-card h3 a {
    color: #2b303b;
}

.px-post-card p {
    min-height: 50px;
    margin: 0;
    color: var(--px-body);
    font-size: 14px;
    line-height: 1.7;
}

.px-post-card .px-link-button {
    margin-top: 14px;
    font-size: 14px;
}

.px-blog__more {
    display: table;
    margin: 36px auto 0;
    color: var(--px-primary);
    font-weight: 500;
}

.px-footer {
    padding: 64px 0 30px;
    background: #0c1b3d;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.px-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .08;
    background-image:
        linear-gradient(rgba(255, 255, 255, .35) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .35) 1px, transparent 1px);
    background-size: 54px 54px;
}

.px-footer__main,
.px-footer__bottom {
    position: relative;
    z-index: 2;
}

.px-footer__main {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.25fr;
    align-items: start;
    gap: 52px;
}

.px-footer__brand img {
    width: 105px;
}

.px-footer__brand p {
    max-width: 310px;
    margin: 18px 0 0;
    color: #c8d2e6;
    font-size: 15px;
    line-height: 1.8;
}

.px-footer__nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 28px;
}

.px-footer__nav a {
    color: #d9e2f2;
    font-size: 15px;
}

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

.px-footer__trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.px-footer__trust-item {
    min-height: 98px;
    padding: 8px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

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

.px-footer__trust-item span {
    color: #5d6880;
    font-size: 10px;
    text-align: center;
}

.px-footer__bottom {
    margin-top: 44px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.px-footer__bottom p {
    margin: 0;
    color: #aebbd1;
    font-size: 13px;
}

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

.px-footer__socials a {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif !important;
    font-size: 10px;
}

@media (max-width: 1199.98px) {
    .px-header__nav {
        gap: 30px;
    }

    .px-hero__content {
        right: 44px;
        width: 54%;
    }

    .px-hero__visual {
        width: 42%;
    }

    .px-hero__phone {
        left: 10px;
    }

    .px-hero__floating-card {
        left: 160px;
        width: 350px;
    }

    .px-faq {
        padding-inline: 28px;
        gap: 36px;
    }
}

@media (max-width: 991.98px) {
    .px-section {
        padding-top: 88px;
    }

    .px-header {
        padding-top: 20px;
    }

    .px-header__inner {
        position: relative;
    }

    .px-header__toggle {
        display: flex;
        order: 3;
    }

    .px-header__logo {
        order: 1;
    }

    .px-header__action {
        min-width: 140px;
        order: 2;
        margin-right: auto;
    }

    .px-header__nav {
        position: absolute;
        z-index: 20;
        top: calc(100% + 10px);
        right: 0;
        left: 0;
        padding: 22px;
        border: 1px solid var(--px-line);
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 16px 35px rgba(37, 58, 108, .14);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

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

    .px-header__nav a {
        padding: 10px;
        text-align: right;
    }

    .px-header__nav a.is-active::after {
        display: none;
    }

    .px-header__toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .px-header__toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .px-header__toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .px-hero {
        height: auto;
        min-height: 1040px;
        margin-top: 32px;
    }

    .px-hero__content {
        top: 60px;
        right: 40px;
        left: 40px;
        width: auto;
        align-items: center;
        text-align: center;
    }

    .px-hero__content h1,
    .px-hero__content > p {
        text-align: center;
    }

    .px-hero__content h1 {
        font-size: 34px;
    }

    .px-hero__content > p {
        font-size: 19px;
        line-height: 1.8;
    }

    .px-hero__content .px-button {
        margin-top: 8px;
    }

    .px-hero__visual {
        top: 430px;
        right: 0;
        width: 100%;
        height: 610px;
    }

    .px-hero__phone {
        width: 330px;
        left: 50%;
        top: 30px;
        transform: translateX(-50%);
    }

    .px-hero__floating-card {
        top: 385px;
        left: 50%;
        width: min(380px, calc(100% - 40px));
        transform: translateX(-50%);
    }

    .px-features {
        padding-top: 120px;
    }

    .px-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            "collect analytics"
            "ai ai"
            "payment preview";
    }

    .px-feature-card--ai {
        min-height: 300px;
    }

    .px-ai__steps {
        grid-template-columns: 1fr;
    }

    .px-ai__steps article {
        border-left: 0;
        border-bottom: 1px solid #ebebeb;
    }

    .px-ai__steps article:last-child {
        border-bottom: 0;
    }

    .px-ai__stage {
        min-height: auto;
    }

    .px-ai__screen {
        height: 480px;
    }

    .px-ai__stats {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }

    .px-ai__stats article {
        border-left: 0;
        border-bottom: .5px solid #d9dbe9;
    }

    .px-ai__stats article:last-child {
        border-bottom: 0;
    }

    .px-pricing__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .px-plan.is-featured {
        grid-column: 1 / -1;
    }

    .px-faq {
        grid-template-columns: 1fr;
        padding-block: 64px;
    }

    .px-faq__ask {
        width: min(440px, 100%);
        margin-inline: auto;
        padding-top: 0;
    }

    .px-testimonials__grid {
        grid-template-columns: 1fr;
    }

    .px-testimonial.is-highlighted {
        transform: none;
    }

    .px-blog__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .px-post-card:last-child {
        grid-column: 1 / -1;
    }

    .px-footer__main {
        grid-template-columns: 1fr 1fr;
    }

    .px-footer__trust {
        grid-column: 1 / -1;
        width: min(520px, 100%);
    }
}

@media (max-width: 767.98px) {
    .px-shell {
        width: min(100% - 28px, 560px);
    }

    .px-section-heading h2,
    .px-cta h2 {
        font-size: 24px;
        line-height: 1.55;
    }

    .px-section-heading p,
    .px-cta > p {
        font-size: 15px;
        line-height: 25px;
    }

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

    .px-header__logo,
    .px-header__logo img {
        width: 70px;
    }

    .px-header__action {
        display: none;
    }

    .px-header__toggle {
        margin-right: auto;
    }

    .px-hero {
        min-height: 964px;
        border-radius: 18px;
    }

    .px-hero__content {
        top: 36px;
        right: 20px;
        left: 20px;
    }

    .px-kicker--light {
        font-size: 12px;
        box-shadow: 0 2px 18px rgba(171, 172, 196, .7);
    }

    .px-hero__content h1 {
        font-size: 27px;
        line-height: 1.6;
    }

    .px-hero__content > p {
        font-size: 16px;
    }

    .px-button--outline-light {
        min-width: 205px;
        min-height: 48px;
        font-size: 16px;
    }

    .px-hero__visual {
        top: 444px;
        height: 520px;
    }

    .px-hero__phone {
        width: 285px;
        top: 25px;
    }

    .px-hero__floating-card {
        top: 350px;
        padding: 16px;
        gap: 14px;
    }

    .px-hero__floating-card > img {
        width: 52px;
        height: 52px;
    }

    .px-hero__floating-card strong {
        font-size: 14px;
    }

    .px-hero__floating-card p {
        font-size: 11px;
    }

    .px-features {
        padding-top: 88px;
    }

    .px-feature-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "collect"
            "analytics"
            "ai"
            "payment"
            "preview";
    }

    .px-feature-card,
    .px-feature-card--ai {
        min-height: 220px;
        padding: 20px;
    }

    .px-ai .px-section-heading {
        margin-bottom: 48px;
    }

    .px-ai__stage {
        padding: 14px;
        border-radius: 22px;
    }

    .px-ai__screen {
        width: 100%;
        height: 310px;
        border-radius: 20px;
    }

    .px-ai__screen::before {
        border-radius: 14px;
    }

    .px-ai__screen > img {
        width: 86px;
        height: 86px;
    }

    .px-ai__stats article {
        padding: 22px;
    }

    .px-brands {
        padding-block: 96px 30px;
    }

    .px-brand-cloud {
        width: min(100%, 360px);
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
    }

    .px-brand-cloud__item {
        position: static;
        width: 72px;
        height: 72px;
        padding: 14px;
        border-radius: 18px;
    }

    .px-brand-cloud__item.is-framed {
        padding: 0;
        border-radius: 0;
    }

    .px-pricing__grid {
        grid-template-columns: 1fr;
    }

    .px-plan.is-featured {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .px-plan__features {
        margin-top: 12px;
    }

    .px-plan__badge {
        right: auto;
        left: 22px;
    }

    .px-faq {
        width: 100%;
        margin-top: 88px;
        padding: 56px 14px;
        border-radius: 0;
    }

    .px-accordion__item button {
        flex-direction: row-reverse;
    }

    .px-accordion__item button span {
        font-size: 15px;
    }

    .px-accordion__answer p {
        font-size: 14px;
    }

    .px-faq__question-mark {
        width: 190px;
        height: 190px;
        font-size: 68px;
    }

    .px-cta {
        min-height: 390px;
        width: calc(100% - 28px);
        margin-top: 88px;
        padding-inline: 18px;
    }

    .px-blog {
        padding-block: 88px;
    }

    .px-blog__grid {
        grid-template-columns: 1fr;
    }

    .px-post-card:last-child {
        grid-column: auto;
    }

    .px-footer__main {
        grid-template-columns: 1fr;
    }

    .px-footer__nav {
        grid-template-columns: repeat(2, 1fr);
    }

    .px-footer__trust {
        grid-column: auto;
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .px-button,
    .px-post-card__image img,
    .px-accordion__answer {
        transition: none;
    }
}
