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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: #040406;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
    overflow-x: clip;
}

.w {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 44px;
}

.logo img {
    width: 194px;
}

nav {
    position: fixed;
    top: 0;
    z-index: 100;
    padding: 20px 0;
    background: transparent;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-r {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-r a {
    font-size: 14px;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.2s;
    text-transform: uppercase;
    font-weight: 400;
}

.nav-r a:hover {
    color: #ffffff;
}

.nav-cta {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    min-width: fit-content;
    height: auto;
    background: rgba(31, 217, 122, 0.2);
    border: 1px solid #1FD97A;
    border-radius: 100px;
}

.nav-cta::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    background-image: url(images/arrow-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 13px;
}

.nav-cta:hover {
    background: rgba(31, 217, 122, 0.28);
    border-color: #1FD97A;
    color: #FFFFFF;
}

/* HERO */
.hero {
    position: relative;
    padding: 180px 0 60px;
    text-align: center;
}

.hero-g1 {
    position: absolute;
    top: -150px;
    left: -30%;
    width: 1180px;
    height: 1000px;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
}

.hero-g1::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        radial-gradient(ellipse at 50% 48%,
            rgba(78, 138, 255, 0.28) 0%,
            rgba(66, 126, 245, 0.22) 16%,
            rgba(48, 104, 220, 0.16) 30%,
            rgba(31, 77, 182, 0.10) 44%,
            rgba(20, 56, 145, 0.05) 58%,
            rgba(12, 36, 102, 0.02) 68%,
            rgba(12, 36, 102, 0) 78%);
    filter: blur(46px);
    transform: scale(1.08);
    -webkit-mask-image: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.35) 10%,
            rgba(0, 0, 0, 0.78) 22%,
            #000 34%,
            #000 66%,
            rgba(0, 0, 0, 0.78) 78%,
            rgba(0, 0, 0, 0.35) 90%,
            transparent 100%);
    mask-image: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.35) 10%,
            rgba(0, 0, 0, 0.78) 22%,
            #000 34%,
            #000 66%,
            rgba(0, 0, 0, 0.78) 78%,
            rgba(0, 0, 0, 0.35) 90%,
            transparent 100%);
}

.hero-g2 {
    position: absolute;
    right: -90px;
    bottom: -450px;
    width: 800px;
    height: 800px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.95;
}

.hero-g2::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(ellipse at 52% 52%,
            rgba(78, 138, 255, 0.22) 0%,
            rgba(66, 126, 245, 0.17) 16%,
            rgba(48, 104, 220, 0.11) 30%,
            rgba(31, 77, 182, 0.07) 44%,
            rgba(20, 56, 145, 0.03) 58%,
            rgba(12, 36, 102, 0.01) 68%,
            rgba(12, 36, 102, 0) 80%);
    filter: blur(38px);
    transform: scale(1.08);
    -webkit-mask-image:
        radial-gradient(circle at center, #000 68%, transparent 100%),
        linear-gradient(to top,
            transparent 0%,
            rgba(0, 0, 0, 0.35) 12%,
            rgba(0, 0, 0, 0.78) 24%,
            #000 38%,
            #000 100%);
    -webkit-mask-composite: source-in;
    mask-image:
        radial-gradient(circle at center, #000 68%, transparent 100%),
        linear-gradient(to top,
            transparent 0%,
            rgba(0, 0, 0, 0.35) 12%,
            rgba(0, 0, 0, 0.78) 24%,
            #000 38%,
            #000 100%);
    mask-composite: intersect;
}

.hero-inner {
    position: relative;
    z-index: 2;
}

.hero-brand {
    font-size: 14px;
    font-weight: 500;
    color: #4087FF;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
    display: block;
}

.hook {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -2.8px;
    background: linear-gradient(128deg, #ffffff 28%, #6ab4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    padding-bottom: 6px;
}

.hero-sub {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.58);
    max-width: 480px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.hero-sub .b {
    background: linear-gradient(90deg, #ffffff, #6ab4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    min-width: fit-content;
    height: auto;
    border: 1px solid #1FD97A;
    border-radius: 100px;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #FFFFFF0A;
}

.btn::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    background-image: url(images/arrow-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 13px;
}

.btn:hover {
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
}

.btn.hi {
    background: #1FD97A33;
}

.btn.btn-sec {
    border: 1px solid #FFFFFF29;
}

.btn.btn-sec::after {
    content: none;
}

.btn.hi:hover, .nav-r a.nav-cta:hover {
    border-color: #4087FF;
    background: rgba(106, 180, 255, 0.2);
}

.btn.btn-sec:hover {
    border-color: #4087FF;
    background: rgba(106, 180, 255, 0.2);
}

.g-line {
    margin-top: 30px;
    color: #FFFFFFCC;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-weight: 400;
    font-size: 11px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.g-line .dot {
    color: #1fd97a;
    font-size: 7px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-top: 52px;
    padding-top: 44px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
}

.stat-n {
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 6px;
    background: linear-gradient(128deg, #ffffff 30%, #6ab4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-l {
    font-weight: 400;
    font-size: 11px;
    line-height: 100%;
    letter-spacing: 0.3px;
    text-align: center;
    text-transform: uppercase;
}

.nav-r a:not(.nav-cta) {
    position: relative;
    transition: color 0.25s ease;
}

.nav-r a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: rgba(106, 180, 255, 0.9);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-r a:not(.nav-cta):hover {
    color: #FFFFFF;
}

.nav-r a:not(.nav-cta):hover::after {
    transform: scaleX(1);
}

/* PULSE DOT */
@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    70% {
        transform: scale(2.6);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.pulse-dot {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1fd97a;
    animation: pulse-ring 2s ease-out infinite;
}

.pulse-dot .inner {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1fd97a;
    position: relative;
    z-index: 1;
}

/* LOGOS */
.logos {
    padding: 100px 0 0 0;
}

.logos .w {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.logos-lbl {
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.logos-r {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.logo-img {
    display: block;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    flex: 0 0 auto;
}

.logo-walmart {
    width: 187px;
    height: 44px;
}

.logo-hubspot {
    width: 106px;
    height: 31px;
}

.logo-zoho {
    width: 117px;
    height: 52px;
}

.logo-payoneer {
    width: 222px;
    height: 79px;
}

/* SECTIONS */
.sec {
    padding: 150px 0;
}

.all-pad-0 {
    padding: 0;
}

.p-t-0 {
    padding-top: 0;
}

.p-b-0 {
    padding-bottom: 0;
}

.flex-box {
    display: flex;
    align-items: flex-start;
    gap: 55px;
}

.w-inner-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.left-right-section .qcard {
    max-width: 488px;
}

.amb {
    font-size: clamp(58px, 11vw, 116px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.04);
    letter-spacing: -4px;
    line-height: 1;
    margin-bottom: -12px;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
}

.s-tag {
    text-transform: uppercase;
    color: #4087FF;
    margin-bottom: 13px;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
}

h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -1.8px;
    margin-bottom: 13px;
    background: linear-gradient(128deg, #ffffff 30%, #6ab4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    padding-bottom: 6px;
}

.white-text h2 {
    font-size: 32px;
    background: linear-gradient(102.33deg, #FFFFFF 30%, #6AB4FF 100%);
    background-clip: text;
}

.ssub {
    font-size: 16px;
    color: #FFFFFFCC;
    line-height: 30px;
    font-weight: 400;
    max-width: 400px;
}

/* GLASS CARD */
.gc {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    padding: 22px 24px;
    overflow: hidden;
    transition: background 0.2s, border-color 0.2s;
}

.gc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.gc::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 44px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
    border-radius: 14px 14px 0 0;
}

.gc:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.14);
}

.qcard p {
    font-size: 16px;
    font-style: italic;
    color: #FFFFFFCC;
    line-height: 30px;
    margin-bottom: 13px;
}

.qcard cite {
    font-size: 16px;
    color: #FFFFFF99;
    font-style: normal;
}

/* SOCIAL PROOF */
#results {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

#results::before {
    content: "";
    position: absolute;
    left: -22%;
    top: 8%;
    width: 760px;
    height: 760px;
    border-radius: 50%;
    background: radial-gradient(ellipse at 50% 50%,
            rgba(72, 132, 255, 0.14) 0%,
            rgba(56, 116, 235, 0.10) 18%,
            rgba(36, 84, 190, 0.06) 36%,
            rgba(20, 52, 128, 0.025) 54%,
            rgba(20, 52, 128, 0) 74%);
    filter: blur(42px);
    pointer-events: none;
    z-index: 0;
}

#results::after {
    content: "";
    position: absolute;
    right: -14%;
    top: 10%;
    width: 620px;
    height: 820px;
    border-radius: 50%;
    background: radial-gradient(ellipse at 50% 50%,
            rgba(72, 132, 255, 0.12) 0%,
            rgba(56, 116, 235, 0.08) 20%,
            rgba(36, 84, 190, 0.05) 38%,
            rgba(20, 52, 128, 0.02) 56%,
            rgba(20, 52, 128, 0) 76%);
    filter: blur(46px);
    pointer-events: none;
    z-index: 0;
}

#results .w {
    position: relative;
    z-index: 2;
}

.featured-result-card {
    width: 100%;
    margin-bottom: 40px;
}

.featured-result-card__inner {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 30px;
    padding: 40px;
    background: rgba(106, 180, 255, 0.1);
    border: 1px solid #254B89;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.featured-result-card__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg,
            rgba(10, 22, 45, 0.18) 0%,
            rgba(10, 22, 45, 0) 28%,
            rgba(10, 22, 45, 0) 72%,
            rgba(10, 22, 45, 0.18) 100%);
}

.featured-result-card__left,
.featured-result-card__right {
    position: relative;
    z-index: 2;
}

.featured-result-card__left {
    width: 438px;
    min-height: 405px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.featured-result-card__badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 6px 14px;
    border: 1px solid rgba(106, 180, 255, 0.3);
    border-radius: 100px;
    background: rgba(106, 180, 255, 0.1);
    color: #84B2FF;
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.featured-result-card__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.featured-result-card__title {
    margin: 0;
    font-size: 32px;
    line-height: 46px;
    letter-spacing: -0.01em;
}

.featured-result-card__desc {
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.featured-result-card__result {
    box-sizing: border-box;
    width: 178px;
    height: 97px;
    padding: 14px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
    background: rgba(31, 217, 122, 0.2);
    border: 1px solid #1FD97A;
    border-radius: 10px;
    text-align: center;
}

.featured-result-card__result-big {
    font-weight: 600;
    font-size: 28px;
    line-height: 34px;
    letter-spacing: -1px;
    color: #FFFFFF;
}

.featured-result-card__result-small {
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
    color: #FFFFFF;
    text-align: center;
}

.featured-result-card__right {
    width: 492px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.featured-result-card__email {
    width: 100%;
    min-height: auto;
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 10px;
    box-sizing: border-box;
}

.featured-result-card__toolbar {
    height: 20px;
    padding: 6px 16px;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(5, 6, 11, 0.04);
}

.featured-result-card__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: block;
    flex: 0 0 8px;
}

.featured-result-card__dot--red {
    background: rgba(255, 70, 70, 0.7);
}

.featured-result-card__dot--yellow {
    background: rgba(255, 169, 70, 0.7);
}

.featured-result-card__dot--green {
    background: #1FD97A;
}

.featured-result-card__header {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 12px 16px 15px;
    border-bottom: 1px solid rgba(5, 6, 11, 0.08);
    background: #FFFFFF;
}

.featured-result-card__meta {
    margin: 0;
    font-size: 12px;
    line-height: 15px;
    color: rgba(5, 6, 11, 0.88);
}

.featured-result-card__meta strong {
    font-weight: 500;
    color: rgba(5, 6, 11, 0.88);
}

.featured-result-card__addr {
    color: #3E82FF;
}

.featured-result-card__to {
    color: rgba(5, 6, 11, 0.7);
}

.featured-result-card__subject {
    color: rgba(5, 6, 11, 0.5);
    font-weight: 400;
}

.featured-result-card__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 16px;
}

.featured-result-card__message {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.featured-result-card__hello {
    display: block;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: rgba(5, 6, 11, 0.88);
}

.featured-result-card__reply {
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: rgba(5, 6, 11, 0.7);
}

.featured-result-card__signature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.featured-result-card__regards {
    font-weight: 400;
    font-size: 12px;
    line-height: 19px;
    color: rgba(5, 6, 11, 0.4);
}

.featured-result-card__name {
    font-weight: 600;
    font-size: 12px;
    line-height: 19px;
    color: rgba(5, 6, 11, 0.8);
}

.featured-result-card__role {
    margin-top: -10px;
    font-weight: 400;
    font-size: 12px;
    line-height: 19px;
    color: rgba(5, 6, 11, 0.4);
}

.featured-result-card__logo {
    width: 81px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.featured-result-card__logo img {
    display: block;
    max-width: 81px;
    max-height: 20px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.featured-result-card__context {
    box-sizing: border-box;
    min-height: auto;
    padding: 14px;
    border: 1px solid #4087FF;
    border-radius: 8px;
    background: rgba(64, 135, 255, 0.4);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #FFFFFF;
}

.featured-result-card__context strong {
    font-weight: 700;
    color: #FFFFFF;
}

.results-inner-wrapper {
    max-width: 450px;
}

.results-inner-wrapper .ssub {
    width: 100%;
    max-width: 100%;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.case-card {
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 278px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 14px;
    overflow: hidden;
}

.case-card::before {
    display: none;
}

.case-rev {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 33px;
    padding: 6px 14px;
    margin-bottom: 20px;
    background: rgba(31, 217, 122, 0.2);
    border: 1px solid #1FD97A;
    border-radius: 99px;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 21px;
    letter-spacing: -0.8px;
    color: #FFFFFF;
    background-clip: initial;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: #FFFFFF;
}

.case-tag {
    margin-bottom: 20px;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    letter-spacing: -0.01em;
    text-transform: none;
    color: transparent;
    background: linear-gradient(102.33deg, #FFFFFF 30%, #6AB4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-client {
    margin-bottom: 20px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.case-stats {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
}

.cs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.cs strong {
    display: block;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
}

/* STEPS */
#process .w {
    display: flex;
    justify-content: space-between;
    column-gap: 60px;
}

#process .process-inner-wrapper {
    max-width: 485px;
}

#process .ssub {
    max-width: 100%;
}

#process .steps {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#process .step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    max-width: 490px;
    padding: 0 0 34px;
}

#process .step:last-child {
    padding-bottom: 0;
}

#process .step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 30px;
    width: 1px;
    height: 79.72px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
}

#process .sn {
    position: relative;
    z-index: 2;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.024);
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

#process .step>div:last-child {
    max-width: 440px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
}

#process .step h3 {
    margin: 0;
    padding: 4px 0 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: -0.3px;
    color: #FFFFFF;
}

#process .step p {
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.8);
}

#process.sf .step {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

#process.sf.on .step {
    opacity: 1;
    transform: translateY(0);
}

#process.sf.on .step:nth-child(1) {
    transition-delay: 0.08s;
}

#process.sf.on .step:nth-child(2) {
    transition-delay: 0.18s;
}

#process.sf.on .step:nth-child(3) {
    transition-delay: 0.28s;
}

#process.sf.on .step:nth-child(4) {
    transition-delay: 0.38s;
}

#process .step:hover .sn {
    transform: translateY(-2px);
    border-color: #4087FF;
    background: rgba(64, 135, 255, 0.08);
}

#process .step:hover h3 {
    color: #FFFFFF;
}

/* CARD GRID */
.included-sec {
    position: relative;
    isolation: isolate;
}

.included-sec::before {
    content: "";
    position: absolute;
    left: -18%;
    top: -10%;
    width: 720px;
    height: 980px;
    border-radius: 50%;
    background: radial-gradient(ellipse at 42% 34%,
            rgba(72, 132, 255, 0.16) 0%,
            rgba(58, 118, 235, 0.11) 18%,
            rgba(38, 88, 195, 0.07) 34%,
            rgba(20, 52, 128, 0.03) 52%,
            rgba(20, 52, 128, 0) 74%);
    filter: blur(44px);
    pointer-events: none;
    z-index: 0;
}

.included-sec::after {
    content: "";
    position: absolute;
    left: 2%;
    top: 12%;
    width: 420px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(ellipse at 50% 40%,
            rgba(86, 145, 255, 0.08) 0%,
            rgba(86, 145, 255, 0.05) 24%,
            rgba(86, 145, 255, 0.02) 42%,
            rgba(86, 145, 255, 0) 68%);
    filter: blur(30px);
    pointer-events: none;
    z-index: 0;
}

.included-sec .w {
    position: relative;
    z-index: 2;
}

.included-sec .cgrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 52px;
}

.included-sec .gc {
    box-sizing: border-box;
    min-height: 222.55px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    overflow: hidden;
}

.included-sec .gc::before,
.included-sec .gc::after {
    display: none;
}

.included-sec .cgrid .gc .ctag {
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0;
    text-transform: none;
    color: #6AB4FF;
}

.included-sec .cgrid .gc h3 {
    width: 100%;
    margin: 0;
    padding: 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: -0.3px;
    color: #FFFFFF;
}

.included-sec .cgrid .gc p {
    width: 100%;
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.5);
}

.included-sec.sf .gc {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease, border-color 0.25s ease, background 0.25s ease;
}

.included-sec.sf.on .gc {
    opacity: 1;
    transform: translateY(0);
}

.included-sec.sf.on .gc:nth-child(1) {
    transition-delay: 0.05s;
}

.included-sec.sf.on .gc:nth-child(2) {
    transition-delay: 0.10s;
}

.included-sec.sf.on .gc:nth-child(3) {
    transition-delay: 0.15s;
}

.included-sec.sf.on .gc:nth-child(4) {
    transition-delay: 0.20s;
}

.included-sec.sf.on .gc:nth-child(5) {
    transition-delay: 0.25s;
}

.included-sec.sf.on .gc:nth-child(6) {
    transition-delay: 0.30s;
}

.included-sec .gc:hover {
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(106, 180, 255, 0.45);
    transform: translateY(-2px);
}

/* COMPARE */
.compare-sec .ssub {
    width: 488px;
}

.compare-sec .cmpg {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    margin-top: 52px;
}

.compare-sec .cmpg .gc {
    position: relative;
    box-sizing: border-box;
    min-height: 216.97px;
    padding: 23px 25px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    overflow: hidden;
}

.compare-sec .cmpg .gc::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 8.18%;
    right: 8.18%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.18) 50%, rgba(255, 255, 255, 0) 100%);
}

.compare-sec .cmpg .gc::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    height: 44px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 14px 14px 0 0;
    pointer-events: none;
}

.compare-sec .cmpg .gc.good {
    background: rgba(106, 180, 255, 0.1);
    border: 1px solid rgba(106, 180, 255, 0.4);
}

.compare-sec .cmpg .gc.good::before {
    background: linear-gradient(90deg, rgba(106, 180, 255, 0) 0%, rgba(106, 180, 255, 0.28) 50%, rgba(106, 180, 255, 0) 100%);
}

.compare-sec .clbl {
    position: relative;
    z-index: 2;
    margin: 0 0 21px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.compare-sec .bad .clbl {
    color: rgba(255, 255, 255, 0.6);
}

.compare-sec .good .clbl {
    color: #6AB4FF;
}

.compare-sec .cr {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 1px;
}

.compare-sec .cr:last-child {
    margin-bottom: 0;
}

.compare-sec .cr .ic {
    width: 10px;
    min-width: 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.compare-sec .bad .ic {
    color: rgba(255, 70, 70, 0.7);
}

.compare-sec .good .ic {
    color: #1FD97A;
}

.compare-sec .cr span:last-child {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.compare-sec.sf .cmpg .gc {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease, border-color 0.25s ease, background 0.25s ease;
}

.compare-sec.sf.on .cmpg .gc {
    opacity: 1;
    transform: translateY(0);
}

.compare-sec.sf.on .cmpg .gc:nth-child(1) {
    transition-delay: 0.06s;
}

.compare-sec.sf.on .cmpg .gc:nth-child(2) {
    transition-delay: 0.14s;
}

.compare-sec .cmpg .gc:hover {
    transform: translateY(-2px);
}

.compare-sec .cmpg .gc.bad:hover {
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(255, 255, 255, 0.4);
}

.compare-sec .cmpg .gc.good:hover {
    background: rgba(106, 180, 255, 0.14);
    border-color: rgba(106, 180, 255, 0.5);
}

/* GUARANTEE */
.guarantee-sec {
    position: relative;
    isolation: isolate;
}

.guarantee-sec::before {
    content: "";
    position: absolute;
    right: -10%;
    top: -55%;
    width: 760px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(ellipse at 52% 36%, rgba(72, 132, 255, 0.16) 0%, rgba(58, 118, 235, 0.11) 18%, rgba(38, 88, 195, 0.07) 34%, rgba(20, 52, 128, 0.03) 52%, rgba(20, 52, 128, 0) 74%);
    filter: blur(46px);
    pointer-events: none;
    z-index: 0;
}

.guarantee-sec::after {
    content: "";
    position: absolute;
    right: 8%;
    top: 4%;
    width: 420px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(ellipse at 50% 40%,
            rgba(86, 145, 255, 0.08) 0%,
            rgba(86, 145, 255, 0.05) 24%,
            rgba(86, 145, 255, 0.02) 42%,
            rgba(86, 145, 255, 0) 68%);
    filter: blur(30px);
    pointer-events: none;
    z-index: 0;
}

.guarantee-sec .w {
    position: relative;
    z-index: 2;
}

.guarantee-sec h2 {
    font-size: 45px;
    margin: 0;
}

.guarantee-sec .g-card {
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 40px;
    width: 100%;
    min-height: 416px;
    background: rgba(64, 135, 255, 0.1);
    border: 1px solid #4087FF;
    border-radius: 18px;
    overflow: hidden;
}

.guarantee-sec .g-card::before,
.guarantee-sec .g-glow {
    display: none;
}

.guarantee-sec .g-content {
    width: 545px;
    max-width: 545px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.guarantee-sec .g-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    min-height: 26px;
    margin: 0;
    border: 1px solid rgba(106, 180, 255, 0.3);
    background: rgba(106, 180, 255, 0.1);
    border-radius: 100px;
    font-style: normal;
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #84B2FF;
}

.guarantee-sec .g-card p {
    width: 440px;
    max-width: 440px;
    margin: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.guarantee-sec .g-card .btn {
    margin-top: 14px;
    position: relative;
    z-index: 2;
}

.guarantee-sec .g-avatar {
    width: 336px;
    height: 336px;
    min-width: 336px;
    border-radius: 99999px;
    overflow: hidden;
    background: radial-gradient(50% 50% at 50% 50%, #BDC5D7 0%, #8190AA 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    position: relative;
    z-index: 2;
}

.guarantee-sec .g-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 99999px;
    object-position: top;
}

.guarantee-sec.sf .g-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.guarantee-sec.sf.on .g-card {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ */
.faq-wrap {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-row {
    border-radius: 10px;
    overflow: hidden;
    background-color: #1a1d28;
    border: 1px solid #32364a;
    transition: border-color 0.2s, background-color 0.2s;
}

.faq-row:hover {
    background-color: #1f2233;
    border-color: #44485e;
}

.faq-btn {
    all: unset;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.5;
    box-sizing: border-box;
    background: transparent;
}

.faq-btn:hover {
    color: #ffffff;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #44485e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8892aa;
    transition: transform 0.25s, color 0.2s, border-color 0.2s;
    background: transparent;
}

.faq-btn.open .faq-icon {
    transform: rotate(45deg);
    color: #6ab4ff;
    border-color: rgba(106, 180, 255, 0.5);
}

.faq-answer {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease, padding 0.3s;
    font-size: 13px;
    font-weight: 400;
    color: #9ca3bb;
    line-height: 1.78;
    padding: 0 22px;
    box-sizing: border-box;
}

.faq-answer.open {
    max-height: 200px;
    padding: 0 22px 18px;
}

/* FINAL CTA */
.final-cta-sec {
    position: relative;
    overflow: hidden;
}

/* .final-cta-sec::before,
.final-cta-sec::after {
    display: none;
} */
.final-cta-sec .w {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
}

.final-cta-sec .final-cta-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    max-width: 490px;
}

.final-cta-sec .final-cta-left h2 {
    margin: 0;
    font-size: 45px;
}

.final-cta-sec .final-cta-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.final-cta-sec p {
    max-width: 100%;
    margin: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.final-cta-right .g-line {
    margin: 0;
    text-transform: inherit;
}

.final-cta-sec .btns {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    padding: 16.5px 0 0;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.final-cta-sec .btns .btn {
    justify-content: center;
}

.final-cta-sec.sf .final-cta-left,
.final-cta-sec.sf .final-cta-right {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.final-cta-sec.sf.on .final-cta-left,
.final-cta-sec.sf.on .final-cta-right {
    opacity: 1;
    transform: translateY(0);
}

.final-cta-sec.sf.on .final-cta-right {
    transition-delay: 0.12s;
}

/* FOOTER */
.site-footer {
    box-sizing: border-box;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0 40px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.site-footer .w.ft {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.site-footer .ftl {
    width: 124.91px;
    height: 18.1px;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.site-footer .ftl .logo {
    display: inline-flex;
    align-items: center;
    width: 125px;
    text-decoration: none;
}

.site-footer .ftl .logo img {
    display: block;
    width: 100%;
    object-fit: contain;
}

.site-footer small {
    margin: 0;
    display: inline-flex;
    align-items: center;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

/* footer and top of footer effect */
.final-cta-sec {
    position: relative;
    isolation: isolate;
    padding-bottom: 220px;
}

.final-cta-sec::before {
    content: "";
    position: absolute;
    left: -16%;
    top: -14%;
    width: 720px;
    height: 820px;
    border-radius: 50%;
    background: radial-gradient(ellipse at 38% 42%,
            rgba(72, 132, 255, 0.16) 0%,
            rgba(58, 118, 235, 0.11) 18%,
            rgba(38, 88, 195, 0.07) 34%,
            rgba(20, 52, 128, 0.03) 52%,
            rgba(20, 52, 128, 0) 74%);
    filter: blur(46px);
    pointer-events: none;
    z-index: 0;
}

.final-cta-sec::after {
    content: "";
    position: absolute;
    left: 2%;
    top: 18%;
    width: 420px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(ellipse at 50% 42%,
            rgba(86, 145, 255, 0.08) 0%,
            rgba(86, 145, 255, 0.05) 24%,
            rgba(86, 145, 255, 0.02) 42%,
            rgba(86, 145, 255, 0) 68%);
    filter: blur(30px);
    pointer-events: none;
    z-index: 0;
}

.final-cta-sec .w {
    position: relative;
    z-index: 2;
}

.sf {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.sf.on {
    opacity: 1;
    transform: none;
}

/* VIDEO */
.video-explainer-sec {
    position: relative;
    isolation: isolate;
    padding-top: 40px;
}

.video-explainer-sec .w {
    position: relative;
    z-index: 2;
}

.video-explainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.video-explainer h2 {
    width: 100%;
    margin: 0;
    display: block;
    text-align: center;
}

.video-explainer__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1040 / 576;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 18px;
    overflow: hidden;
    background: #0a0d14;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.video-explainer__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #0a0d14;
}

.video-explainer__overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    width: 100%;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(180deg, rgba(4, 4, 6, 0) 36.74%, rgba(4, 4, 6, 0.62) 100%),
        linear-gradient(180deg, rgba(6, 10, 20, 0.08) 0%, rgba(6, 10, 20, 0.18) 100%);
    transition: opacity 0.35s ease, visibility 0.35s ease, background 0.25s ease;
}

.video-explainer__overlay:hover {
    background:
        linear-gradient(180deg, rgba(4, 4, 6, 0.03) 32%, rgba(4, 4, 6, 0.68) 100%),
        linear-gradient(180deg, rgba(6, 10, 20, 0.10) 0%, rgba(6, 10, 20, 0.22) 100%);
}

.video-explainer__overlay:focus-visible {
    outline: 2px solid #6AB4FF;
    outline-offset: -2px;
}

.video-explainer__play {
    box-sizing: border-box;
    width: 90.67px;
    height: 90.67px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.video-explainer__overlay:hover .video-explainer__play {
    transform: scale(1.04);
    border-color: rgba(255, 255, 255, 0.68);
    background: rgba(255, 255, 255, 0.08);
}

.video-explainer__play img {
    display: block;
    width: 22px;
    height: 22px;
    object-fit: contain;
    transform: translateX(2px);
}

.video-explainer__frame.is-playing .video-explainer__overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.video-explainer__meta {
    width: 100%;
    text-align: center;
    font-family: 'Inter', system-ui, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #4087FF;
}

.video-explainer__toggle-hitarea {
    position: absolute;
    inset: 0 0 56px 0;
    z-index: 2;
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.video-explainer__frame.is-playing .video-explainer__toggle-hitarea {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* VIDEO */
/* RESPONSIVE */
/* =========================
   1200px
========================= */
@media (max-width: 1200px) {
    .w {
        padding: 0 32px;
    }

    nav {
        padding: 18px 0;
    }

    .logo img {
        width: 178px;
    }

    .nav-r {
        gap: 28px;
    }

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

    .nav-cta {
        padding: 13px 20px;
    }

    .hero {
        padding: 165px 0 56px;
    }

    .hero-g1 {
        top: -120px;
        left: -42%;
        width: 1040px;
        height: 900px;
    }

    .hero-g2 {
        right: -150px;
        bottom: -360px;
        width: 650px;
        height: 650px;
    }

    .hook {
        font-size: clamp(50px, 6vw, 58px);
    }

    .hero-sub {
        max-width: 560px;
    }

    .stats {
        gap: 40px;
    }

    .logos-r {
        gap: 32px;
    }

    .featured-result-card__inner {
        padding: 32px;
        gap: 24px;
    }

    .featured-result-card__title {
        font-size: 28px;
        line-height: 1.25;
    }

    #process .w {
        column-gap: 40px;
    }

    .included-sec .cgrid {
        gap: 12px;
    }

    .compare-sec .cmpg {
        gap: 12px;
    }

    .guarantee-sec .g-card {
        padding: 32px;
    }

    .guarantee-sec h2,
    .final-cta-sec .final-cta-left h2 {
        font-size: 42px;
    }
}

/* =========================
   1024px
========================= */
@media (max-width: 1024px) {
    .video-explainer {
        gap: 18px;
    }

    .video-explainer__play {
        width: 82px;
        height: 82px;
    }

    .video-explainer__play img {
        width: 20px;
        height: 20px;
    }

    .w {
        padding: 0 24px;
    }

    nav {
        padding: 16px 0;
    }

    .logo img {
        width: 168px;
    }

    .nav-r {
        gap: 18px;
    }

    .nav-r a {
        font-size: 12px;
    }

    .nav-cta {
        padding: 12px 16px;
        gap: 8px;
    }

    .hero {
        padding: 150px 0 48px;
    }

    .hero-g1 {
        top: -100px;
        left: -52%;
        width: 930px;
        height: 820px;
    }

    .hero-g2 {
        right: -220px;
        bottom: -290px;
        width: 560px;
        height: 560px;
    }

    .hero-brand {
        font-size: 12px;
        letter-spacing: 1.8px;
        margin-bottom: 22px;
    }

    .hook {
        font-size: 50px;
        line-height: 1.08;
        letter-spacing: -2.2px;
        margin-bottom: 20px;
    }

    .hero-sub {
        max-width: 620px;
        margin-bottom: 28px;
    }

    .stats {
        gap: 28px;
        margin-top: 40px;
        padding-top: 30px;
    }

    .logos {
        padding-top: 70px;
    }

    .logos-r {
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 24px;
    }

    .sec {
        padding: 100px 0;
    }

    .all-pad-0 {
        padding: 0;
    }

    .p-t-0 {
        padding-top: 0;
    }

    .p-b-0 {
        padding-bottom: 0;
    }

    .flex-box,
    #process .w,
    .final-cta-sec .w {
        flex-direction: column;
        gap: 40px;
    }

    .left-right-section .qcard,
    #process .process-inner-wrapper,
    .final-cta-sec .final-cta-left {
        max-width: 100%;
    }

    .results-inner-wrapper,
    .results-inner-wrapper .ssub,
    .compare-sec .ssub {
        max-width: 100%;
        width: 100%;
    }

    .featured-result-card__inner {
        flex-direction: column;
        padding: 28px;
    }

    .featured-result-card__left,
    .featured-result-card__right {
        width: 100%;
        flex: 1 1 100%;
        max-width: 100%;
    }

    .featured-result-card__left {
        min-height: auto;
    }

    .featured-result-card__result {
        width: 100%;
        max-width: 220px;
    }

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

    #process .steps {
        width: 100%;
        max-width: 100%;
    }

    #process .step {
        max-width: 100%;
    }

    .included-sec .cgrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 40px;
    }

    .compare-sec .cmpg {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .guarantee-sec .g-card {
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
    }

    .guarantee-sec .g-content {
        max-width: 100%;
    }

    .guarantee-sec .g-avatar {
        width: 280px;
        height: 280px;
        min-width: 280px;
        align-self: center;
    }

    .final-cta-sec .final-cta-right {
        width: 100%;
    }
}

/* =========================
   900px
========================= */
@media (max-width: 900px) {
    .nav-r .hs {
        display: none;
    }

    .nav-r {
        gap: 0;
    }

    .hero {
        padding: 140px 0 44px;
    }

    .hook {
        font-size: 44px;
        letter-spacing: -1.8px;
    }

    .hero-sub {
        font-size: 15px;
        line-height: 1.75;
    }

    .stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
        width: 100%;
    }

    .stat-item,
    .stats>div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .stat-n {
        font-size: 36px;
    }

    .stat-l {
        line-height: 1.3;
    }

    .logos-r {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-items: center;
        gap: 22px 28px;
    }

    .logo-walmart {
        width: 160px;
        height: auto;
    }

    .logo-hubspot {
        width: 96px;
        height: auto;
    }

    .logo-zoho {
        width: 108px;
        height: auto;
    }

    .logo-payoneer {
        width: 180px;
        height: auto;
    }

    .s-tag {
        font-size: 17px;
    }

    h2 {
        font-size: 40px;
        letter-spacing: -1.4px;
    }

    .ssub,
    .qcard p,
    .qcard cite,
    .featured-result-card__desc,
    .case-client,
    #process .step p,
    .included-sec .cgrid .gc p,
    .compare-sec .cr span:last-child,
    .guarantee-sec .g-card p,
    .final-cta-sec p {
        font-size: 15px;
        line-height: 1.8;
    }

    .case-grid {
        grid-template-columns: 1fr;
    }

    .case-card {
        min-height: auto;
        padding: 24px;
    }

    .case-tag {
        font-size: 22px;
        line-height: 1.22;
        margin-bottom: 14px;
    }

    .case-stats {
        gap: 24px;
    }

    .included-sec .cgrid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .included-sec .gc {
        min-height: auto;
    }

    .guarantee-sec h2,
    .final-cta-sec .final-cta-left h2 {
        font-size: 38px;
        line-height: 1.1;
        letter-spacing: -1.3px;
    }

    .final-cta-sec .btns {
        padding-top: 0;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .final-cta-sec {
        padding-bottom: 150px;
    }

    .site-footer {
        padding: 20px 0 28px;
    }

    .site-footer .w.ft {
        gap: 12px;
    }

    .site-footer small {
        font-size: 12px;
        line-height: 1.4;
    }
}

/* =========================
   767px
========================= */
@media (max-width: 767px) {
    .video-explainer {
        gap: 16px;
    }

    .video-explainer__frame {
        border-radius: 16px;
    }

    .video-explainer__play {
        width: 74px;
        height: 74px;
    }

    .video-explainer__play img {
        width: 18px;
        height: 18px;
    }

    .video-explainer__meta {
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 1.6px;
    }

    .video-explainer__toggle-hitarea {
        inset: 0 0 48px 0;
    }

    .w {
        padding: 0 20px;
    }

    .logo img {
        width: 156px;
    }

    .nav-cta {
        padding: 10px 14px;
        font-size: 11px;
    }

    .nav-cta::after {
        width: 13px;
        height: 13px;
        flex: 0 0 13px;
        background-size: 11px;
    }

    .hero {
        padding: 132px 0 40px;
    }

    .hero-g1 {
        top: -90px;
        left: -78%;
        width: 860px;
        height: 760px;
    }

    .hero-g2 {
        right: -245px;
        bottom: -210px;
        width: 470px;
        height: 470px;
    }

    .hero-brand {
        font-size: 11px;
        letter-spacing: 1.6px;
        margin-bottom: 18px;
    }

    .hook {
        font-size: 40px;
        line-height: 1.08;
        letter-spacing: -1.6px;
    }

    .hook br {
        display: none;
    }

    .hero-sub {
        font-size: 15px;
        max-width: 100%;
        margin-bottom: 24px;
    }

    .btns {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        max-width: 320px;
        min-height: 46px;
        padding: 14px 18px;
    }

    .stats {
        gap: 22px;
        margin-top: 30px;
        padding-top: 24px;
    }

    .g-line .dot {
        font-size: 10px;
    }

    .stat-n {
        font-size: 34px;
    }

    .stat-l {
        font-size: 10px;
    }

    .logos {
        padding-top: 54px;
    }

    .logos .w {
        gap: 16px;
    }

    .logos-lbl {
        font-size: 12px;
        line-height: 1.4;
        letter-spacing: 2px;
    }

    .logos-r {
        gap: 18px 16px;
    }

    .logo-walmart {
        width: 136px;
    }

    .logo-hubspot {
        width: 88px;
    }

    .logo-zoho {
        width: 98px;
    }

    .logo-payoneer {
        width: 154px;
    }

    .sec {
        padding: 90px 0;
    }

    .all-pad-0 {
        padding: 0;
    }

    .p-t-0 {
        padding-top: 0;
    }

    .p-b-0 {
        padding-bottom: 0;
    }

    .final-cta-sec {
        padding-bottom: 140px;
    }

    .flex-box {
        gap: 24px;
    }

    .s-tag {
        font-size: 16px;
        margin-bottom: 10px;
    }

    h2 {
        font-size: 34px;
        line-height: 1.12;
        letter-spacing: -1.2px;
    }

    .qcard {
        padding: 18px 18px 20px;
    }

    .featured-result-card {
        margin-bottom: 24px;
    }

    .featured-result-card__inner {
        padding: 20px;
        gap: 20px;
    }

    .featured-result-card__title {
        font-size: 26px;
        line-height: 1.22;
    }

    .featured-result-card__badge {
        font-size: 9px;
        line-height: 11px;
        letter-spacing: 1px;
    }

    .featured-result-card__result {
        width: 100%;
        max-width: none;
    }

    .featured-result-card__header {
        padding: 12px 12px 14px;
    }

    .featured-result-card__body {
        padding: 12px;
    }

    .featured-result-card__meta,
    .featured-result-card__hello,
    .featured-result-card__reply,
    .featured-result-card__context {
        word-break: break-word;
    }

    #process .step {
        gap: 16px;
        padding-bottom: 28px;
    }

    #process .step:not(:last-child)::before {
        left: 13px;
        top: 30px;
        height: calc(100% - 18px);
    }

    #process .step h3,
    .included-sec .cgrid .gc h3 {
        font-size: 17px;
    }

    .compare-sec .clbl {
        font-size: 13px;
    }

    .compare-sec .cr {
        align-items: flex-start;
    }

    .guarantee-sec .g-card {
        padding: 24px;
    }

    .guarantee-sec .g-avatar {
        width: 240px;
        height: 240px;
        min-width: 240px;
    }

    .guarantee-sec .g-card .btn,
    .final-cta-sec .btns .btn {
        width: 100%;
        max-width: none;
    }

    .final-cta-sec .btns {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .final-cta-right .g-line {
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        line-height: 1.45;
        text-transform: none;
    }

    .site-footer .w.ft {
        flex-direction: column;
        align-items: center;
    }

    .site-footer small {
        text-align: left;
    }

    .video-explainer-sec {
        padding-bottom: 15px;
    }
}

/* =========================
   560px
========================= */
@media (max-width: 560px) {
    nav {
        padding: 14px 0;
    }

    .logo img {
        width: 146px;
    }

    .nav-cta {
        padding: 10px 12px;
        font-size: 10px;
        gap: 6px;
    }

    .hero {
        padding: 122px 0 36px;
    }

    .hero-g1 {
        top: -70px;
        left: -102%;
        width: 780px;
        height: 700px;
        opacity: 0.95;
    }

    .hero-g2 {
        right: -235px;
        bottom: -175px;
        width: 400px;
        height: 400px;
        opacity: 0.85;
    }

    .hero-brand {
        font-size: 10px;
        letter-spacing: 1.4px;
    }

    .hook {
        font-size: 34px;
        letter-spacing: -1.2px;
    }

    .hero-sub {
        font-size: 14px;
        line-height: 1.75;
    }

    .btn {
        font-size: 12px;
    }

    .stats {
        gap: 18px;
    }

    h2 {
        font-size: 32px;
    }

    .featured-result-card__title {
        font-size: 22px;
    }

    .case-tag {
        font-size: 20px;
    }

    .case-stats {
        gap: 18px;
    }

    .case-stats .cs {
        min-width: 62px;
    }

    #process .sn {
        width: 26px;
        height: 26px;
        min-width: 26px;
        font-size: 11px;
    }

    .guarantee-sec h2,
    .final-cta-sec .final-cta-left h2 {
        font-size: 32px;
        letter-spacing: -1.1px;
    }

    .guarantee-sec .g-badge {
        font-size: 9px;
        letter-spacing: 1.2px;
    }

    .video-explainer__play {
        width: 66px;
        height: 66px;
    }

    .video-explainer__play img {
        width: 16px;
        height: 16px;
    }

    .video-explainer__meta {
        font-size: 11px;
        letter-spacing: 1.4px;
    }
}

/* =========================
   420px
========================= */
@media (max-width: 420px) {
    .w {
        padding: 0 16px;
    }

    .logo img {
        width: 138px;
    }

    .nav-cta {
        padding: 9px 11px;
        border-radius: 999px;
    }

    .hero {
        padding: 116px 0 34px;
    }

    .hook {
        font-size: 30px;
        line-height: 1.1;
        letter-spacing: -1px;
    }

    .hero-sub,
    .ssub,
    .qcard p,
    .featured-result-card__desc,
    .case-client,
    #process .step p,
    .included-sec .cgrid .gc p,
    .compare-sec .cr span:last-child,
    .guarantee-sec .g-card p,
    .final-cta-sec p {
        font-size: 14px;
        line-height: 1.75;
    }

    .logos-r {
        grid-template-columns: 1fr;
    }

    .logo-walmart,
    .logo-hubspot,
    .logo-zoho,
    .logo-payoneer {
        width: auto;
        max-width: 160px;
    }

    .featured-result-card__inner,
    .case-card,
    .included-sec .gc,
    .compare-sec .cmpg .gc,
    .guarantee-sec .g-card {
        padding-left: 16px;
        padding-right: 16px;
    }

    .featured-result-card__context {
        font-size: 13px;
        line-height: 1.7;
    }

    .guarantee-sec .g-avatar {
        width: 200px;
        height: 200px;
        min-width: 200px;
    }

    .site-footer small {
        font-size: 11px;
        line-height: 1.45;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .video-explainer__frame {
        border-radius: 14px;
    }

    .video-explainer__meta {
        font-size: 10px;
        line-height: 15px;
        letter-spacing: 1.2px;
    }

    .video-explainer__toggle-hitarea {
        inset: 0 0 44px 0;
    }
}