.all-caps.max-width-275 {
    max-width: 524px;
}

.all-small {
    text-transform: lowercase;
}

.hero-bottom-block {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
}



.section {
    height: auto;
    overflow: hidden;
}

.container.align-center {
    min-height: 100vh;
    padding-top: 150px;
}

@media screen and (max-width: 479px) {
    .hero-bottom-wrapper {
        flex-flow: wrap;
    }
}

.mockup-hero {
    z-index: -1;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    height: 58vh;
    margin-top: -156px;
    right: 128px;
    position: absolute;
}

.text-wrapper {
    font-size: 24px;
}

.label-text {
    color: var(--black-40, #707070);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.size36 {
    font-size: 36px;
}

.hero-bottom-wrapper {
    overflow: unset;
}

/* Industry Cards Grid */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
    row-gap: 90px;
    width: 100%;
    margin-bottom: 40px;
    position: relative;
}

.wrapper-content {
    align-self: flex-start;
}

.industry-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.industry-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.8);
}

.card-ecommerce {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
}

.card-neobank {
    grid-column: 2;
    grid-row: 1;
}

.card-web3 {
    grid-column: 3;
    grid-row: 1;
    position: absolute;
    top: 30px
}

.card-tech {
    grid-column: 2;
    grid-row: 2;
}

/* Infrastructure Section */
.infrastructure-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    color: #fff;
}

.infrastructure-header {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.infrastructure-title {

    font-weight: 600;
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
}

.infrastructure-title span.highlight {
    color: #FF7A3D;
}

.infrastructure-subtitle {

    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    color: #fff;
}

.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 68px;
    row-gap: 75px;
    width: 100%;
}

.infra-card {
    position: relative;
    width: 320px;
    height: 240px;
    background: #000;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 991px) {
    .infrastructure-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 479px) {
    .infrastructure-grid {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .infrastructure-title {
        font-size: 32px;
    }

    .infra-card {
        width: 100%;
    }
}



.infra-card-bg {
    position: absolute;
    top: -30px;
    z-index: 1;
    pointer-events: none;
    right: -20px;
}



.infra-card-content {
    position: relative;
    z-index: 2;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.infra-card-icon-box {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.infra-card-icon {
    width: 40px;
    height: 40px;
}

.infra-card-title {

    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 12px;
}

.infra-card-desc {

    font-weight: 600;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #707070;
    margin-bottom: 0;
}

.card-gaming {
    grid-column: 3;
    grid-row: 2;
    position: absolute;
    top: 30px
}

.industry-title {

    font-weight: 600;
    line-height: 1.2;
    color: #141414;
    margin: 0;
    padding-top: 60px;
}

.industry-desc {

    font-weight: 600;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
}

.industry-icon {
    width: 128px;
    height: 128px;
    position: absolute;
    transform: translate(30px, -80%);
}

@media (max-width: 991px) {
    .industry-grid {
        grid-template-columns: 1fr 1fr;
    }

    .card-ecommerce {
        grid-column: 1 / span 2;
        grid-row: auto;
        position: relative;
    }

    .card-neobank {
        grid-column: 1;
        grid-row: auto;
        position: relative;
    }

    .card-web3 {
        grid-column: 2;
        grid-row: auto;
        position: relative;
    }

    .card-tech {
        grid-column: 1;
        grid-row: auto;
        position: relative;
    }

    .card-gaming {
        grid-column: 2;
        grid-row: auto;
        position: relative;
    }
}

@media (max-width: 479px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }

    .card-ecommerce,
    .card-neobank,
    .card-web3,
    .card-tech,
    .card-gaming {
        grid-column: 1;
        grid-row: auto;
    }
}

.mockup.is-globe {
    /* width: 33vw; */
    left: auto;
    right: 0;
}

.mockup.is-wallets {
    /* width: 33vw; */
    left: 0;
    right: auto;
}

.section.is-white-bg {
    background: rgba(255, 255, 255, 0.4);
}

.max-width-500 {
    max-width: 560px;
}

.is-fixed-composite-bg {
    background-image: linear-gradient(180deg, rgba(20, 20, 20, 0.8) 0%, rgba(20, 20, 20, 0.4) 100%), url('../images/bg-wood.png');
    background-position: 0px 0px, 50% 50%;
    background-size: auto, cover;
    background-repeat: repeat, no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

/* Process Section */
.process-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0;
    min-height: 100vh;
    justify-content: center;
}

.process-title {

    font-weight: 600;
    font-size: 64px;
    line-height: 1.1;
    text-align: center;
    color: #FFFFFF;
    max-width: 910px;
    margin-bottom: 80px;
}

.process-title .text-orange {
    color: #FF7A3D;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    margin-bottom: 60px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 200px;
}

.step-pill {
    border: 1px solid #FFFFFF;
    border-radius: 100px;
    padding: 8px 24px;

    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    color: #FFFFFF;
    background-color: black;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.process-step.is-active .step-pill {
    background-color: #FFFFFF;
    color: #000000;
    border-color: #FFFFFF;
}

.step-description {

    font-weight: 600;
    font-size: 36px;
    line-height: 1.2;
    text-align: center;
    color: #FFFFFF;
    margin-top: 16px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.process-step.is-active .step-description {
    opacity: 1;
}

.step-description .text-orange {
    color: #FF7A3D;
}

.step-connector {
    flex-grow: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin-top: 20px;
    min-width: 60px;
    max-width: 160px;
}

.process-cta {
    margin-top: 40px;
    padding: 16px 32px;
    align-self: center !important;
}

.process-subtitle {
    color: var(--White, #FFF);
    text-align: center;
    /* H5 Alt */

    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    /* 25.2px */
    letter-spacing: 0.9px;
    text-transform: uppercase;
    padding: 64px 20px;
}

/* Responsive */
@media screen and (max-width: 991px) {
    .process-title {
        font-size: 48px;
        max-width: 100%;
        padding: 0 20px;
    }

    .step-connector {
        min-width: 40px;
    }

    .process-step {
        width: 160px;
    }

    .step-description {
        font-size: 24px;
    }
}

@media screen and (max-width: 767px) {
    .process-steps {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .step-connector {
        display: none;
    }

    .process-step {
        width: auto;
        flex-direction: column;
        gap: 12px;
    }

    .process-step::after {
        content: '';
        position: absolute;
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
        width: 1px;
        height: calc(100% + 40px);
        background-color: rgba(255, 255, 255, 0.3);
        z-index: -1;
    }

    .process-step:last-child::after {
        display: none;
    }

    .step-description {
        margin-top: 0;
        font-size: 28px;
    }

    .process-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
}

.button-primary {
    max-width: 276px;
}

.height-96 {
    height: 96%;
}

.footer {
    height: unset;
}

.footer-center-title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: #FFFFFF;
    margin-top: 60px;
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .footer-center-title {
        font-size: 32px;
        margin: 40px 0;
    }
}


.white-label-isolated-form.form-wrapper {
    flex-flow: row-reverse;
    max-width: 90;
}

/* Form Section */
.white-label-isolated-form.form-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: 60px;
    max-width: 900px;
    padding: 40px;
    background: black;
    margin: 40px 0;
}

.white-label-isolated-form .w-form {
    flex: 1;
    width: 100%;
}

.white-label-isolated-form .form-content {
    flex: 1;
    max-width: 480px;
}

.white-label-isolated-form .form-container {
    flex: 1;
    max-width: 480px;
}

.white-label-isolated-form .form-title {

    font-weight: 600;
    font-size: 36px;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.white-label-isolated-form .form-description {

    font-weight: 600;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #707070;
}

.white-label-isolated-form .form-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.white-label-isolated-form .form-group {
    margin-bottom: 16px;
    width: 100%;
}


/* Responsive Form */
@media screen and (max-width: 991px) {
    .white-label-isolated-form.form-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .white-label-isolated-form .form-content,
    .white-label-isolated-form .form-container {
        max-width: 100%;
    }
}

@media screen and (max-width: 479px) {
    .white-label-isolated-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .white-label-isolated-form .form-title {
        font-size: 28px;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes cardFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

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

.socials-wrapper {
    order: 0;
}

.footer-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    padding-top: 60px;
}

/* Pricing Cards */
.pricing-cards-container {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 40px 0;
    width: 100%;
}

.pricing-card {
    position: relative;
    width: 440px;
    background: #000000;
    border-radius: 4px;
    padding: 64px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.pricing-card-header {
    position: relative;
    text-align: center;
}

.pricing-card-accent {
    position: absolute;
    height: 12px;
    background: #FF9C4C;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-card:nth-child(1) .pricing-card-accent {
    width: 200px;
}

.pricing-card:nth-child(2) .pricing-card-accent {
    width: 230px;
}

.pricing-card-title {
    font-family: 'PP Mori', sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0;
    text-align: center;
}

.pricing-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.pricing-feature-value {
    font-family: 'PP Mori', sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    color: #FFFFFF;
    text-align: center;
}

.pricing-feature-label {
    font-family: 'PP Mori', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    color: #707070;
    text-align: center;
}

.pricing-feature-row {
    display: flex;
    gap: 32px;
    justify-content: space-between;
}

.pricing-feature-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.pricing-divider {
    width: 100%;
    height: 2px;
    background: #444444;
}

/* Responsive Pricing Cards */
@media screen and (max-width: 991px) {
    .pricing-cards-container {
        gap: 24px;
        padding: 32px 0;
    }

    .pricing-card {
        width: 100%;
        max-width: 440px;
        padding: 56px 28px 28px;
        gap: 28px;
    }

    .pricing-card-title {
        font-size: 42px;
    }

    .pricing-feature-value {
        font-size: 24px;
    }

    .pricing-feature-label {
        font-size: 18px;
    }
}

@media screen and (max-width: 767px) {
    .pricing-cards-container {
        gap: 32px;
        padding: 24px 16px;
    }

    .pricing-card {
        padding: 48px 24px 24px;
        gap: 24px;
    }

    .pricing-card-title {
        font-size: 36px;
    }

    .pricing-feature-value {
        font-size: 22px;
    }

    .pricing-feature-label {
        font-size: 16px;
    }

    .pricing-feature-row {
        gap: 16px;
    }
}

@media screen and (max-width: 479px) {
    .pricing-cards-container {
        padding: 20px 12px;
    }

    .pricing-card {
        padding: 40px 20px 20px;
        gap: 20px;
    }

    .pricing-card-title {
        font-size: 32px;
    }

    .pricing-card-accent {
        top: -24px;
        height: 10px;
    }

    .pricing-card:nth-child(1) .pricing-card-accent {
        width: 160px;
    }

    .pricing-card:nth-child(2) .pricing-card-accent {
        width: 180px;
    }

    .pricing-feature-value {
        font-size: 20px;
    }

    .pricing-feature-label {
        font-size: 14px;
    }

    .pricing-feature-row {
        gap: 12px;
        flex-wrap: wrap;
    }

    .pricing-feature-col {
        min-width: calc(33.333% - 8px);
    }
}