*,
*:before,
*:after {
-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
        box-sizing: border-box;
}

body {
    margin: 0px; /*adds 0 space on all sides*/
}
html {
    scroll-behavior: smooth; /*adds smooth scrolling when using navigation instead if instant teleport :)*/
                            /* u can assign this ti personal element if choose ?? w3cschool :)*/
}

:root {
    --surface-primary: #08050F;
    --color-brand-primary: #7641EF;

    /* --color-brand-secondary: #00FFA3; */

    --color-text-primary: #FFFFFF;
    --color-text-secondary: #AFACC3;
    --color-text-third: #5626C2;
    --color-text-fourth: #07B5D4;
    --color-text-fifth: #545F71;
    /* --color-text-disable: #434959;
    --color-text-tertiary: #0000004d;
    --color-text-stroke: #FFFFFF26; */
}

/* BODY */
body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--surface-primary);
}

/* COLORS */
.color-white {
    color: var(--color-text-primary);
}
.color-gray {
    color: var(--color-text-secondary);
}
.color-grayer {
    color: var(--color-text-fifth);
}
.color-cyan {
    color: var(--color-text-fourth);
}



/* FONTS */
h1 {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 86px;
    line-height: 92px;
    letter-spacing: -3%;
    text-align: center;
    margin: 0px;
}
h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 40px;
    line-height: 46px;
    letter-spacing: -2%;
    margin: 0px;
}
h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -2%;
    vertical-align: middle;
    margin: 0px;
}

p.body1 {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    margin: 0px;
}
p.body2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
    margin: 0px;
}
p.body3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
    vertical-align: middle;
    margin: 0px;
}
p.spanBody, span.spanBody {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
    vertical-align: middle;
    margin: 0px;
}
p.button1 {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -2%;
    text-transform: capitalize;
    margin: 0px;
}
p.button2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -2%;
    vertical-align: middle;
    text-transform: capitalize;
    margin: 0px;
}
p.mobile {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: -2%;
    text-transform: capitalize;
    margin: 0px;
}

p.caption {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -2%;
    vertical-align: middle;
    margin: 0px;
}

/* BUTTONS */
.input-secondary {
    max-width: 240px;
    width: 100%;
    height: 48px;
    padding: 14px 12px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.09) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    outline: none;
    transition: border-color 0.3s ease;
}

.input-secondary::placeholder {
    color: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

.input-secondary:focus {
    border: 1px solid #7641EF;
    outline: none;
}

.input-secondary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    border: 1px solid #434959;
}
.btn-primary-dark {
    position: relative;
    width: fit-content;
    height: 48px;
    border-radius: 8px;
    padding: 12px 16px;
    border: none;
    gap: 10px;
    backdrop-filter: blur(8px);
    background: radial-gradient(
        50% 111.77% at 50% 50%,
        #7641EF 73.08%,
        #976FF3 100%
    );
    overflow: hidden;
}
.btn-primary-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 1px;
    background: linear-gradient(100.85deg, rgba(255, 255, 255, 0.36) 5.11%, rgba(255, 255, 255, 0.04) 49.89%, rgba(255, 255, 255, 0.36) 95.67%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 3;
}

/* make content above overlay */
.btn-primary-dark > * {
    position: relative;
    z-index: 2;
}

/* overlay */
.btn-primary-dark::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #7641EF;
    opacity: 0;
    transition: opacity 0.15s ease;
    border-radius: inherit;
    z-index: 1;   /* BELOW content */
}

.btn-primary-dark:hover::after {
    opacity: 1;
}

.btn-secondary-dark {
    position: relative;
    height: 48px;
    width: fit-content;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 8px;
    border: none;
    background: radial-gradient(50% 111.77% at 50% 50%, rgba(116, 95, 163, 0.08) 75.96%, rgba(116, 95, 163, 0.28) 100%);
    backdrop-filter: blur(8px);
}
.btn-secondary-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 1px;
    background: linear-gradient(100.85deg, rgba(121, 108, 150, 0.36) 5.11%, rgba(192, 172, 236, 0.04) 49.89%, rgba(192, 172, 236, 0.36) 95.67%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.btn-secondary-dark:hover {
    background: radial-gradient(50% 111.77% at 50% 50%, rgba(116, 95, 163, 0.28) 75.96%, rgba(116, 95, 163, 0.28) 100%);
}
.btn-secondary-dark:active {
    background: radial-gradient(50% 111.77% at 50% 50%, rgba(116, 95, 163, 0.36) 75.96%, rgba(116, 95, 163, 0.36) 100%);
}

.label-button {
    position: relative;
    width: fit-content;
    height: 40px;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 8px;
    background: radial-gradient(50% 111.77% at 50% 50%, rgba(116, 95, 163, 0.08) 75.96%, rgba(116, 95, 163, 0.13) 100%);
    backdrop-filter: blur(4px);
}
.label-button::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 1px;
    background: linear-gradient(100.85deg, rgba(121, 108, 150, 0.36) 5.11%, rgba(192, 172, 236, 0.04) 49.89%, rgba(192, 172, 236, 0.36) 95.67%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* LABEL TAG (same look as label-button, no hover/interactive) */
.label-tag {
    position: relative;
    width: fit-content;
    height: 40px;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 8px;
    background: radial-gradient(50% 111.77% at 50% 50%, rgba(116, 95, 163, 0.08) 75.96%, rgba(116, 95, 163, 0.13) 100%);
    backdrop-filter: blur(4px);
    cursor: default;
    pointer-events: none;
}
.label-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 1px;
    background: linear-gradient(100.85deg, rgba(121, 108, 150, 0.36) 5.11%, rgba(192, 172, 236, 0.04) 49.89%, rgba(192, 172, 236, 0.36) 95.67%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}


/* HEADER */
.header-outer-container {
    position: sticky;
    top: 0;
    z-index: 9999;
    max-width: 1440px;
    width: 100%;
    height: 72px;
    margin: 0 auto;
    background: #08050F;
    border-bottom: 1px solid rgba(121, 108, 150, 0.3); /* was: #130E1B */
    backdrop-filter: blur(6px);
}
.header-container {
    padding: 12px 150px;
    gap: 10px;
}
.sticky-container {
    /* max-width: 1140px; */
    position: relative;
    width: 100%;
    overflow: hidden;
    /* height: 64px; */
    /* border-radius: 12px; */
    /* padding: 8px 8px 8px 12px; */
    /* background blur saturate(180%)*/
    /* backdrop-filter: blur(6px);*/
    background-color: #08050F; 
}
.sticky-bg-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}
.sticky-container > *:not(.sticky-bg-svg) {
    position: relative;
    z-index: 1;
}

.header-logo-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.header-logo {
    height: 42px;
}

.header-logo img {
    height: 100%;
    max-width: 170px;
    height: auto;
}
.header-buttons-container {
    display: flex; 
    flex-direction: row;
    align-items: center;
    background-color: var(--color-text-white-50);
    border-radius: 12px;
    border: 1px dashed var(--color-text-white-50);
    padding-left: 36px;
    padding-right: 36px;
    padding-top: 8px;
    padding-bottom: 8px;
    gap: 36px;
}
.link-container {
    display: flex; 
    flex-direction: row;
    align-items: center;
    gap:42px;
}
.link {
    margin-right: 16px;
    margin-bottom: 0px;
    cursor: pointer;
}

.hamburger-icon {
    display: none;
    font-size: 24px;
    color: var(--Text-Color-text-primary-white);
    cursor: pointer;
}

.close-icon {
    display: none;
    font-size: 24px;
    color: var(--Text-Color-text-primary-white);
    cursor: pointer;
}

.header-mobile-menu {
    display: none;
    flex-direction: column;
    align-self: start;
    margin-top: 20px;
    padding-bottom: 12px;
    padding-left: 12px;
    padding-right: 12px;
    width: 100%;
    backdrop-filter: blur(6px);
    background-color: hsla(0, 0%, 0%, 0.856);
}

.header-mobile-menu.show {
    display: flex!important;
}

.header-mobile-menu .close-icon {
    display: block;
}

.header-mobile-menu a {
    padding: 8px 0;
}
.header-mobile-menu a.openContactModal {
    width: 100%;
}
.header-mobile-menu a.openContactModal .btn-secondary-dark {
    width: 100%;
}

.closeMenu {
    transition: opacity 0.2s ease;
}

.closeMenu:hover {
    opacity: 0.8;
}

.header-buttons-container1 {
    display: flex;
    flex-direction: row;
    align-items: center;
}


/* MAIN */
.main-container {
    position: relative;
    max-width: 1440px;
    display: flex;
    /* flex-direction: column; */
    margin-top: -67px;
    padding-top: 100px;
}
.main-outer-text-container {
    display: flex;
    position: relative;
    flex-direction: column;
    margin: 0 auto;
    height: 100%;
    justify-content: center;
    align-items: center;
    gap: 64px;
}
.web-bg-svg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    z-index: -1;
    pointer-events: none;
}
.main-text-container {
    display: flex;
    position: relative;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}
.main-text-container img {
    max-width: 454px;
    width: 100%;
}
.main-buttons {
    justify-content: center;
    flex-direction: row;
    gap:12px;
}
.main-order-1 {
    order: 1;
}

.main-order-2 {
    order: 2;
}

.main-order-3 {
    order: 3;
}

.wallet-image {
    width: 100%;
    max-width: 1440px;
    height: auto;
    object-fit: contain;
}
 /* ABOUT */
 .about-container-1 {
    position: relative;
    max-width: 1440px; 
    gap: 64px;
    opacity: 1;
    padding-top: 0px;
    padding-right: 150px;
    padding-left: 150px;
    margin: 0 auto;
    display: flex;
    /* justify-content: center; */
    flex-direction: row;
    overflow: hidden;
}
.container-inner-1 {
    max-width: 538px;
    width: 100%;
    gap: 36px;
    opacity: 1;
    display: flex; 
    flex-direction: column;
    position: relative;
    align-items: center;
    margin: 0 auto;
}
.container-inner-2 {
    max-width: 538px;
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 16px;
    padding: 0 24px 24px 24px;
    background: radial-gradient(50% 111.77% at 50% 50%, rgba(116, 95, 163, 0.08) 75.96%, rgba(116, 95, 163, 0.28) 100%);
    border: 1px solid;
    border-image-source: linear-gradient(100.85deg, rgba(121, 108, 150, 0.36) 5.11%, rgba(192, 172, 236, 0.04) 49.89%, rgba(192, 172, 236, 0.36) 95.67%);
    backdrop-filter: blur(8px);
}
.button-like {
    display: flex;
    flex-direction: row;
    max-height: 64px;
    height: 100%;
    padding: 8px 12px 8px 8px;
    gap: 24px;
    border: 1px solid;
    border-radius: 8px;
    background: radial-gradient(50% 111.77% at 50% 50%, rgba(116, 95, 163, 0.08) 75.96%, rgba(116, 95, 163, 0.13) 100%);
    border-image-source: linear-gradient(100.85deg, rgba(121, 108, 150, 0.36) 5.11%, rgba(192, 172, 236, 0.04) 49.89%, rgba(192, 172, 236, 0.36) 95.67%);
    backdrop-filter: blur(4px);
}
.icon-square {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    opacity: 1;
    gap: 10px;
    padding: 12px;
    background: radial-gradient(132.29% 132.29% at 14.58% -9.38%, rgba(0, 235, 180, 0.8) 0%, rgba(65, 129, 239, 0.8) 100%);
    border: none;
    box-shadow: 0px 15px 30px -6px #000000;
}
.icon-square::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 1px;
    background: linear-gradient(100.85deg, rgba(255, 255, 255, 0.36) 5.11%, rgba(255, 255, 255, 0.04) 49.89%, rgba(255, 255, 255, 0.36) 95.67%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* WORKS  */
.works-container-1 {
    position: relative;
    max-width: 1440px; 
    opacity: 1;
    padding-top: 0px;
    padding-right: 150px;
    padding-left: 150px;
    margin: 0 auto;
    display: flex;
    /* justify-content: center; */
    flex-direction: column;
}
.works-inner-1 {
    gap: 36px;
    opacity: 1;
    display: flex; 
    flex-direction: column;
    position: relative;
    align-items: center;
    margin: 0 auto;
}
.works-inner-1 .row {
    margin-top: -70px;
}
.works-svg {
    width: 100%;
    height: auto;
    max-width: 1140px;
}
.works-link-container {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 24px;
    border-radius: 16px;
    padding: 24px;
    background: radial-gradient(50% 111.77% at 50% 50%, rgba(116, 95, 163, 0.08) 75.96%, rgba(116, 95, 163, 0.28) 100%);
    backdrop-filter: blur(8px);
}
.works-link-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(100.85deg, rgba(121, 108, 150, 0.36) 5.11%, rgba(192, 172, 236, 0.04) 49.89%, rgba(192, 172, 236, 0.36) 95.67%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* FEATURES  */
.features-container-1 {
    position: relative;
    max-width: 1440px; 
    opacity: 1;
    padding-top: 0px;
    padding-right: 150px;
    padding-left: 150px;
    margin: 0 auto;
    display: flex;
    gap: 36px;
    /* justify-content: center; */
    flex-direction: column;
}
.features-inner-1 {
    gap: 16px;
    opacity: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    margin: 0 auto;
}
.features-dots {
    display: none;
}
.world-jpg {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.features-link-container {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 24px;
    border-radius: 16px;
    background: #08050F33;
    backdrop-filter: blur(8px);
    overflow: hidden;
}
.features-link-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(100.85deg, rgba(121, 108, 150, 0.36) 5.11%, rgba(192, 172, 236, 0.04) 49.89%, rgba(192, 172, 236, 0.36) 95.67%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}
.feat-cont-1 {
    padding: 24px;
    display: flex;
    gap: 8px;
    flex-direction: column;
}

/* APLICATION  */
.aplication-container-1 {
    position: relative;
    max-width: 1440px; 
    opacity: 1;
    padding-top: 0px;
    padding-right: 150px;
    padding-left: 150px;
    margin: 0 auto;
    display: flex;
    gap: 36px;
    /* justify-content: center; */
    flex-direction: column;
}
.aplication-inner-1 {
    gap: 16px;
    opacity: 1;
    display: flex; 
    flex-direction: column;
    position: relative;
    align-items: center;
    margin: 0 auto;
}
.aplication-link-container {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 24px;
    border-radius: 16px;
    background: #08050F33;
    backdrop-filter: blur(8px);
    overflow: hidden;
}
.container-2 {
    position: relative;
    gap: 36px;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 316px;
    /* bottom: 100px; */
}
.con-2-1 {
    display: flex; 
    position: relative;
    flex-direction: column;
    max-height: 316px;
    height: 100%;
    width: 2px;
}
.ele-2-1 {
    position: absolute;
    width: 2;
    height: 80;
    opacity: 1;
    border-radius: 4px;
    background: #4C53F8;
}
.ele-2-12 {
    position: absolute;
    width: 2;
    top: 80px;
    height: 120;
    opacity: 1;
    border-radius: 4px;
    background: #4C53F8;
}
.ele-2-14 {
    position: absolute;
    width: 2;
    top: 130;
    height: 120;
    opacity: 1;
    border-radius: 4px;
    background: #4C53F8;
}
.ele-2-13 {
    position: absolute;
    width: 2;
    height: 80;
    bottom: 0;
    opacity: 1;
    border-radius: 4px;
    background: #4C53F8;
}
.ele-2-2 {
    width: 2;
    height: 100%;
    opacity: 1;
    border-radius: 4px;
    background: #FFFFFF26;
}
.con-2-2 {
    display: flex; 
    flex-direction: column;
    align-items: baseline;
    gap: 16px;
}

/* APLICATION  */
.benefits-container-1 {
    position: relative;
    max-width: 1440px;
    opacity: 1;
    padding-top: 0px;
    padding-right: 150px;
    padding-left: 150px;
    margin: 0 auto;
    display: flex;
    gap: 36px;
    /* justify-content: center; */
    flex-direction: column;
}
.benefits-container-1 .b-c > img {
    width: 100%;
    height: auto;
}
.rocket2-img {
    display: none;
}
.bussines-buttons-container {
    display: none;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
.b-c {
    display: flex;
    flex-direction: column;
    gap: 36px;
    position: relative;
    margin: 0 auto;
    align-items: center !important;
    max-width: 1440px;
}
.benefit-tags-container {
    display: flex; 
    flex-direction: column;
    gap: 12px;
    width: fit-content;
}
.benefit-tags {
    gap: 12px;
    display: flex; 
    flex-direction: row;
    align-self: center;
    width: 100%;
    justify-content: center;
}
.bussines-link-container {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 16px;
    border-radius: 16px;
    padding: 16px;
    background: radial-gradient(50% 111.77% at 50% 50%, rgba(116, 95, 163, 0.08) 75.96%, rgba(116, 95, 163, 0.28) 100%);
    backdrop-filter: blur(8px);
}
.bussines-link-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(100.85deg, rgba(121, 108, 150, 0.36) 5.11%, rgba(192, 172, 236, 0.04) 49.89%, rgba(192, 172, 236, 0.36) 95.67%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.icon-square2 {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    opacity: 1;
    gap: 10px;
    padding: 12px;
    background: radial-gradient(132.29% 132.29% at 14.58% -9.38%, rgba(0, 184, 235, 0.8) 0%, rgba(118, 65, 239, 0.8) 100%);
    border: none;
    box-shadow: 0px 15px 30px -6px #000000;
}
.icon-square2::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 1px;
    background: linear-gradient(100.85deg, rgba(255, 255, 255, 0.36) 5.11%, rgba(255, 255, 255, 0.04) 49.89%, rgba(255, 255, 255, 0.36) 95.67%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
/* FLEXIBLE */
.pricing-container-1 {
    position: relative;
    max-width: 1440px;
    opacity: 1;
    padding-top: 0px;
    padding-right: 150px;
    padding-left: 150px;
    margin: 0 auto;
    display: flex;
    gap: 36px;
    /* justify-content: center; */
    flex-direction: column;
}
.pricing-container-1 .pricing-container-2 > img {
    max-width: 800px;
    width: 100%;
    height: auto;
    margin: auto;
}
.pricing-container-1 > a {
    align-self: center;
}
.pricing-container-2 {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    border: none;
    gap: 24px;
    background: #08050F33;
    backdrop-filter: blur(8px);
}
.pricing-container-2::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(100.85deg, rgba(121, 108, 150, 0.36) 5.11%, rgba(192, 172, 236, 0.04) 49.89%, rgba(192, 172, 236, 0.36) 95.67%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}


/* FAQ */
.faq-container {
    position: relative;
    max-width: 1440px;
    gap: 42px;
    opacity: 1;
    padding-top: 0px;
    padding-right: 150px;
    padding-bottom: 50px;
    padding-left: 150px;
    align-items: center;
    margin: 0 auto;
    display: flex;
    /* justify-content: center; */
    flex-direction: column;
    /* overflow: hidden; */
}

.faq-container-1 {
    display: flex; 
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    gap: 42px;
    max-width: 1140px;
    width: 100%;
}

.faq-container-2 {
    display: flex;
    flex-direction: row;
    gap: 64px;
    /* max-width: 1140px; */
    width: 100%;
    justify-content: space-between;
    z-index: 10;
}

.faq-left {
    position: relative;
    gap: 36px;
    display: flex;
    flex-direction: column;
    height: fit-content;
    align-items: left;
    max-width: 320px;
    width: 100%;
}

.faq-right {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 24px;
}
.faq-question {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 24px;
    border-radius: 16px;
    padding: 24px;
    background: radial-gradient(50% 111.77% at 50% 50%, rgba(116, 95, 163, 0.08) 75.96%, rgba(116, 95, 163, 0.28) 100%);
    backdrop-filter: blur(8px);
}
.faq-question::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(100.85deg, rgba(121, 108, 150, 0.36) 5.11%, rgba(192, 172, 236, 0.04) 49.89%, rgba(192, 172, 236, 0.36) 95.67%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.faq-quest-1 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* align-items: center; */
    cursor: pointer;
}

/* FAQ accordion states */
.faq-question .body3-text {
    display: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question.active .body3-text {
    display: block;
    opacity: 1;
    max-height: 500px;
    margin-top: 16px;
}

.faq-quest-1 img[src*="close.svg"] {
    display: none;
}

.faq-question.active .faq-quest-1 img[src*="plus.svg"] {
    display: none;
}

.faq-question.active .faq-quest-1 img[src*="close.svg"] {
    display: block;
}

/* GET STARTED */
.getstarted-container-1 {
    position: relative;
    max-width: 1440px;
    max-height: 480px;
    height: 100%;
    opacity: 1;
    padding-top: 0px;
    padding-right: 150px;
    padding-left: 150px;
    margin: 0 auto;
    display: flex;
    gap: 36px;
    justify-content: center;
    flex-direction: column;
    /* overflow: hidden; */
}
.getstarted-container-1 > *:not(.getstarted-web-svg):not(.getstarted-world-svg) {
    position: relative;
    z-index: 1;
}
.getstarted-container-1 > a {
    align-self: center;
}
.getstarted-container-1 div div a {
    width: 100%;
}
.getstarted-web-svg {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    z-index: 0;
    pointer-events: none;
}
.enter-mail {
    display: flex;
    flex-direction: row;
}
.getstarted-world-svg {
    position: absolute;
    max-width: 1200px;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    /* width: auto; */
    z-index: 0;
    pointer-events: none;
}
.rev-con {
    flex-direction: row;
}

/* FOOTER */
.footer-container {
    position: relative;
    max-width: 1440px;
    gap: 42px;
    opacity: 1;
    padding-top: 64px;
    padding-right: 150px;
    padding-bottom: 100px;
    padding-left: 150px;
    align-items: center;
    margin: 0 auto;
    display: flex;
    /* justify-content: center; */
    flex-direction: column;
    /* overflow: hidden; */
}
.footer-inside-container {
    display: flex;
    max-width: 1140px;
    gap: 24px;
    width: 100%;
    flex-direction: column;
}

.footer-top {
    position: relative;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    height: fit-content;
    align-items: left;
    width: 100%;
    padding: 32px;
    opacity: 1;
    border-radius: 16px;
    background: radial-gradient(50% 111.77% at 50% 50%, rgba(116, 95, 163, 0.08) 75.96%, rgba(116, 95, 163, 0.28) 100%);
    backdrop-filter: blur(12px);
}

.footer-top::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(100.85deg, rgba(121, 108, 150, 0.36) 5.11%, rgba(192, 172, 236, 0.04) 49.89%, rgba(192, 172, 236, 0.36) 95.67%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.footer-top > div {
    text-align: start;
}
.footer-card {
    position: relative;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    opacity: 1;
    border-radius: 20px;
    padding: 24px;
    background: #0000004D;
    gap: 36px;
    backdrop-filter: blur(20px);
    height: 100%;
}
.footer-card-links {
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.footer-icon-links {
    display: flex;
    flex-direction: row;
    gap: 12px;
}
.footer-inside-container .row {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
}
.footer-inside-container .row>* {
    padding: 0px;
}
.footer-logo-container {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.footer-logo-container img {
    height: 32px;
}

/* UTILS */
.remove-a {
  text-decoration: none;
  position: relative;
  width: fit-content;
  /* width: 100%; */
}
.footer-link {
    text-decoration: none;
    color: var(--color-text-primary);
}
.mobile :hover p {
    color: var(--color-brand-primary);
}
.footer-link:active p {
    color: var(--color-brand-primary);
}
a:hover p.mobile {
    color: var(--color-brand-primary)!important;
}
a:active p.mobile {
    color: var(--color-brand-primary)!important;
}
.w-800 {
    max-width: 800px;
    width: 100%;
}

#auto-rotate  {
    z-index: 5;
    /* overflow: hidden; */
}

/* Auto-rotate carousel */
#auto-rotate .service-container-1 {
    position: relative;
    min-height: 316px;
    width: 100%;
}

#auto-rotate .container-1 {
    position: relative;
    z-index: 10;
}

#auto-rotate .container-2 {
    position: absolute;
    /* width: calc(100% - 300px);
    left: 150px; */
    top: auto;
}

#auto-rotate #element-1 {
    animation: rotateCarousel1 28s ease-in-out infinite;
}

#auto-rotate #element-2 {
    animation: rotateCarousel2 28s ease-in-out infinite;
}

#auto-rotate #element-3 {
    animation: rotateCarousel3 28s ease-in-out infinite;
}

#auto-rotate #element-4 {
    animation: rotateCarousel4 28s ease-in-out infinite;
}

@keyframes rotateCarousel1 {
    0% {
        transform: translateY(0);
        opacity: 1;
        z-index: 3;
    }
    22% {
        transform: translateY(0);
        opacity: 1;
        z-index: 3;
    }
    25% {
        transform: translateY(-400px);
        opacity: 0;
        z-index: 1;
    }
    97% {
        transform: translateY(400px);
        opacity: 0;
        z-index: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
        z-index: 3;
    }
}

@keyframes rotateCarousel2 {
    0% {
        transform: translateY(400px);
        opacity: 0;
        z-index: 1;
    }
    22% {
        transform: translateY(400px);
        opacity: 0;
        z-index: 1;
    }
    25% {
        transform: translateY(0);
        opacity: 1;
        z-index: 3;
    }
    47% {
        transform: translateY(0);
        opacity: 1;
        z-index: 3;
    }
    50% {
        transform: translateY(-400px);
        opacity: 0;
        z-index: 1;
    }
    100% {
        transform: translateY(-400px);
        opacity: 0;
        z-index: 1;
    }
}

@keyframes rotateCarousel3 {
    0% {
        transform: translateY(400px);
        opacity: 0;
        z-index: 1;
    }
    47% {
        transform: translateY(400px);
        opacity: 0;
        z-index: 1;
    }
    50% {
        transform: translateY(0);
        opacity: 1;
        z-index: 3;
    }
    72% {
        transform: translateY(0);
        opacity: 1;
        z-index: 3;
    }
    75% {
        transform: translateY(-400px);
        opacity: 0;
        z-index: 1;
    }
    100% {
        transform: translateY(-400px);
        opacity: 0;
        z-index: 1;
    }
}

@keyframes rotateCarousel4 {
    0% {
        transform: translateY(400px);
        opacity: 0;
        z-index: 1;
    }
    72% {
        transform: translateY(400px);
        opacity: 0;
        z-index: 1;
    }
    75% {
        transform: translateY(0);
        opacity: 1;
        z-index: 3;
    }
    97% {
        transform: translateY(0);
        opacity: 1;
        z-index: 3;
    }
    100% {
        transform: translateY(-400px);
        opacity: 0;
        z-index: 1;
    }
}

/* Horizontal carousel animations for mobile */
@keyframes rotateCarouselHorizontal1 {
    0% {
        transform: translateX(0);
        opacity: 1;
        z-index: 3;
    }
    22% {
        transform: translateX(0);
        opacity: 1;
        z-index: 3;
    }
    23.5% {
        transform: translateX(-200px);
        opacity: 0.5;
        z-index: 2;
    }
    25% {
        transform: translateX(-400px);
        opacity: 0;
        z-index: 1;
    }
    97% {
        transform: translateX(400px);
        opacity: 0;
        z-index: 1;
    }
    98.5% {
        transform: translateX(200px);
        opacity: 0.5;
        z-index: 2;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
        z-index: 3;
    }
}

@keyframes rotateCarouselHorizontal2 {
    0% {
        transform: translateX(400px);
        opacity: 0;
        z-index: 1;
    }
    22% {
        transform: translateX(400px);
        opacity: 0;
        z-index: 1;
    }
    23.5% {
        transform: translateX(200px);
        opacity: 0.5;
        z-index: 2;
    }
    25% {
        transform: translateX(0);
        opacity: 1;
        z-index: 3;
    }
    47% {
        transform: translateX(0);
        opacity: 1;
        z-index: 3;
    }
    48.5% {
        transform: translateX(-200px);
        opacity: 0.5;
        z-index: 2;
    }
    50% {
        transform: translateX(-400px);
        opacity: 0;
        z-index: 1;
    }
    100% {
        transform: translateX(-400px);
        opacity: 0;
        z-index: 1;
    }
}

@keyframes rotateCarouselHorizontal3 {
    0% {
        transform: translateX(400px);
        opacity: 0;
        z-index: 1;
    }
    47% {
        transform: translateX(400px);
        opacity: 0;
        z-index: 1;
    }
    48.5% {
        transform: translateX(200px);
        opacity: 0.5;
        z-index: 2;
    }
    50% {
        transform: translateX(0);
        opacity: 1;
        z-index: 3;
    }
    72% {
        transform: translateX(0);
        opacity: 1;
        z-index: 3;
    }
    73.5% {
        transform: translateX(-200px);
        opacity: 0.5;
        z-index: 2;
    }
    75% {
        transform: translateX(-400px);
        opacity: 0;
        z-index: 1;
    }
    100% {
        transform: translateX(-400px);
        opacity: 0;
        z-index: 1;
    }
}

@keyframes rotateCarouselHorizontal4 {
    0% {
        transform: translateX(400px);
        opacity: 0;
        z-index: 1;
    }
    72% {
        transform: translateX(400px);
        opacity: 0;
        z-index: 1;
    }
    73.5% {
        transform: translateX(200px);
        opacity: 0.5;
        z-index: 2;
    }
    75% {
        transform: translateX(0);
        opacity: 1;
        z-index: 3;
    }
    97% {
        transform: translateX(0);
        opacity: 1;
        z-index: 3;
    }
    98.5% {
        transform: translateX(-200px);
        opacity: 0.5;
        z-index: 2;
    }
    100% {
        transform: translateX(-400px);
        opacity: 0;
        z-index: 1;
    }
}










.wallet-small-image {
    /* width: 100%;
    max-width: 300px;
    height: auto; */
    max-height: 316px;
    height: 100%;
    object-fit: contain;
}


/* MODAL EMAIL */
.email-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;

}
.email-container {
    display: flex;
    position: relative;
    flex-direction: row;
    margin: auto;
    border-radius: 20px;
    gap: 42px;
    background: linear-gradient(0deg, #000000, #000000), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    backdrop-filter: blur(20px)
}
.email-container button .btn-primary-dark {
        width: 100%;
    }
.email-contactus-container {
    display: flex;
    flex-direction: column;
    gap: 36px;
    opacity: 1;
    padding-top: 42px;
    padding-right: 42px;
    padding-bottom: 42px;
    width: 380px;
}
.email-input-container {
    gap: 24px;
    opacity: 1;
    display: flex;
    flex-direction: column;
}
.email-input-container .input-secondary {
    max-width: 100%;
    width: 100%;
}
.thank-you-container {
    position: relative;
    max-width: 1440px;
    gap: 36px;
    opacity: 1;
    align-items: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.send-container-1 {
    display: flex; 
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    gap: 42px;
    max-width: 1140px;
    width: 100%;
}




/* OLD CODE IF U WANT TO USE COPY OVER AND ABOVE */



#about, #features, #cases, #benefits, #pricing {
    display: block;
    position: relative;
    top: -50px;
    visibility: hidden;
}
#faq {
    display: block;
    position: relative;
    top: -50px;
    overflow: hidden;
}


#main-section {
    overflow: hidden;
}



/* UTILS */

.w-100 {
    width: 100%;
}
.height-72 {
    height: 72px;
}

.margin-top-20 {
    margin-top: 20px;
}
.margin-top-80 {
    margin-top: 80px;
}
.margin-top-64 {
    margin-top: 64px;
}
.margin-top-100 {
    margin-top: 100px;
}
.margin-bottom-100 {
    margin-bottom: 100px;
}
.margin-top-135 {
    margin-top: 135px;
}
.margin-top-190 {
    margin-top: 190px;
}
.icon-size-24 {
    font-size: 24px;
}
.overlay-visible {
    overflow: visible;
}
.padding-bottom-200 {
    padding-bottom: 200px;
}
.padding-bottom-20 {
    padding-bottom: 20px;
}
.height-50 {
    height: 28%;
}
.padding-top-20 {
    padding-top: 20px;
}
.padding-top-80 {
    padding-top: 80px;
}
.padding-bottom-80 {
    padding-bottom: 80px;
}
.text-width-80 {
    width: 80%;
}
.height-300 {
    height: 300px!important;
}


/* MEDIA QUERIES */

/* Up to 1399.98px (Extra large) */
@media (max-width: 1399.98px) {
    /* Your styles for mid-size desktops */
    /* .gridImage-header {
        height: 70%;
    }
    .gridText-text-container {
        width: 50%;
    } */
     .header-container {
        padding: 16px 50px;
    }
    .link-container  {
        gap:16px;
    }
}

/* Up to 1199.98px (Large) */
@media (max-width: 1199.98px) {
    .header-container {
        padding: 16px 16px;
    }
    /* .wallet-image {
        max-width: 500px;
    } */
    .container-2 {
        max-height: 250px;
    }
    .faq-container-2 {
        flex-direction: column;
    }

    .faq-right {
        order: 2;
    }

    .faq-left {
        order: 1;
        max-width: 100%;
    }
    
    .f-1 {
        padding-bottom: 24px!important;
    }
    .f-2 {
        padding-right: 0px!important;
        padding-bottom: 24px!important;
    }
    .f-3 {
        padding-right: 24px!important;
        padding-left: 0px!important;
    }
    .about-container-1 {
        padding: 0 50px;
    }
    .main-container {
        overflow: hidden;
    }
    .footer-card {
        padding-left: 0;
        padding-right: 0;
    }
    .footer-top {
        justify-content: center;
        flex-direction: column;
    } 
    .footer-top > div {
        text-align: center!important;
        align-self: center;
    }
}

@media (max-width: 1199.98px) {
}

/* Up to 991.98px (Medium) */
@media (max-width: 991.98px) {
    /* Your styles for tablets */
    .header-container {
        padding: 32px 16px;
        max-width: 100%;
        background-color: #08050F; 
    }
    .hamburger-icon {
        display: flex;
    }
    .works-container-1 {
        padding: 0 50px;
    }
    .aplication-container-1 {
        padding: 0 50px;
    }
    .pricing-container-1 {
        padding: 0 50px;
    }
    .getstarted-container-1 {
        padding: 0 50px;
    }
    .footer-container {
        padding: 50px;
        padding-bottom: 64px;
    }
    .faq-container {
        padding: 0 50px 50px 50px;
    }
    .service-container-1 {
        padding: 50px 50px 50px 50px;
    }
    .benefits-container-1 {
        padding: 50px 50px 50px 50px;
    }
    .link-container {
        display: none;
    }
    .header-buttons-container {
        display: none;
    }
    .header-buttons-container1 a.remove-a {
        display: none;
    }
    .main-outer-text-container {
        order: 1;
        padding: 20px;
    }
    /* .wallet-image {
        max-width: 450px;
    } */
    .container-2 {
        max-height: 200px;
    }
    
    .f-1 {
        padding-right: 0px!important;
        padding-left: 0px!important;
        padding-bottom: 24px!important;
    }
    .f-2 {
        padding-right: 0px!important;
        padding-left: 0px!important;
        padding-bottom: 24px!important;
    }
    .f-3 {
        padding-right: 0px!important;
        padding-left: 0px!important;
    }
    .about-container-1 {
        flex-direction: column;
    }
    .container-inner-1 {
        max-width: 100%;
    }
    .container-inner-1 .label-button {
        align-self: center !important;
    }
    .container-inner-2 {
        margin: auto;
        max-width: 100%;
    }
    .features-container-1 {
        padding: 0 50px;
    }
    .email-container {
        flex-direction: column;
        gap: 0;
        padding: 10px;
    }
    .email-contactus-container {
        padding-right: 0px;
        max-width: 380px;
        width: 100%;
    }
    .email-container > img {
        max-width: 380px;
        width: 100%;
    }
}

/* Up to 767.98px (Small) */
@media (max-width: 767.98px) {
    /* Your styles for phones */

    .main-outer-text-container {
        overflow: hidden;
    }

    .main-container.margin-top-100 {
        margin-top: 0px;
    }
    .main-container {
        flex-direction: column;
    }

    /* Reorder main-outer-text-container children on mobile */
    /* .main-order-1 {
        order: 2;
    }
    .main-order-2 {
        order: 3;
    } */
    .main-order-3 {
        /* max-height: 250px;
        width: auto;
        position: relative;
        left: 50%;
        transform: translateX(-50%); */
    }
    /* .wallet-image {
        max-width: 100%;
        padding: 0 20px;
    } */
    .container-2 {
        max-height: 180px;
    }
    .left-bottom .img-container {
        order: -1;
    }
    .footer-newsletter {
        flex-direction: column!important;
        width: 100%;
    }
    .footer-newsletter input {
        width: 100%;
    }
    .footer-newsletter a {
        width: 100%;
    }
    .footer-newsletter a .btn-primary-dark {
        width: 100%;
    }
    .input-secondary {
        max-width: 100%;
    }
    .footer-card {
        border-bottom: 1px solid rgba(121, 108, 150, 0.3);
        border-radius: 0;
    }
    .footer-inside-container .row .col-12:last-child .footer-card {
        border-bottom: none;
    }
    .faq-left {
        max-width: 100%;
    }
    .faq-container-2 {
        gap: 32px;
    }
    .enter-mail {
        width: 100%;
    }
    .enter-mail div {
        flex-direction: column;
        width: 100%;
    }
    .enter-mail input, .enter-mail a {
        width: 100%;
    }
}

/* Up to 686.98px (Extra small) */
@media (max-width: 686.98px) {
    .main-outer-text-container {
        padding: 0;
    }
    .about-container-1 {
        padding: 0 16px;
    }
    .works-container-1 {
        padding: 0 16px;
    }
    .aplication-container-1 {
        padding: 0 16px;
    }
    .pricing-container-1 {
        padding: 0 16px;
    }
    .getstarted-container-1 {
        padding: 0 16px;
    }
    .footer-container {
        padding: 50px 16px 64px 16px;
    }
    .container-2 {
        flex-direction: column;
        /* max-height: 250px; */
    }
    .features-container-1 {
        padding: 0 16px;
    }
    .con-2-1 {
        flex-direction: row;
        max-width: 316px;
        height: 2px;
        width: 100%;
    }
    .ele-2-2 {
        height: 2px;
        width: 100%;
    }
    .ele-2-1 {
        top: 0;
        left: 0;
        height: 2px;
        width: 80px;
    }
    .ele-2-12 {
        top: 0;
        left: 80px;
        height: 2px;
        width: 80px;
    }
    .ele-2-14 {
        top: 0;
        right: 80;
        height: 2px;
        width: 80px;
    }
    .ele-2-13 {
        top: 0;
        right: 0;
        height: 2px;
        width: 80px;
    }
    .wallet-small-image {
        padding: 0 15px;
    }
    .faq-container {
        padding: 0 20px 20px 20px;
    }
    .service-container-1 {
        padding: 20px 20px 50px 20px;
    }
    .benefits-container-1 {
        margin-top: 100px;
        padding: 0 16px;
    }
    .faq-quest-1 p {
        text-align: left;
    }

    #auto-rotate .service-container-1 {
        overflow: hidden;
    }
    /* Change carousel animation to horizontal on mobile */
    #auto-rotate #element-1 {
        animation: rotateCarouselHorizontal1 28s ease-in-out infinite;
    }

    #auto-rotate #element-2 {
        animation: rotateCarouselHorizontal2 28s ease-in-out infinite;
    }

    #auto-rotate #element-3 {
        animation: rotateCarouselHorizontal3 28s ease-in-out infinite;
    }

    #auto-rotate #element-4 {
        animation: rotateCarouselHorizontal4 28s ease-in-out infinite;
    }
    .b-c {
        gap: 0;
    }
    .benefit-tags-container {
        width: 100%;
    }
    .benefit-tags {
        flex-direction: column;
    }
    .label-tag {
        width: 100%;
    }
    .bussines-buttons-container {
        display: flex;
    }
    .rocket-img {
        display: none;
    }
    .rocket2-img {
        display: block;
    }
    .faq-left a {
        width: 100%;
    }
    .faq-left a div {
        width: 100%;
    }
    

}

/* Up to 575.98px (Extra small) */
@media (max-width: 575.98px) {
    /* Your mobile styles here */
    .header-container {
        padding: 16px 12px;
    }
    .features-link-container {
        height: 537px;
    }
    /* FEATURES CAROUSEL */
    .features-inner-1 .col-12 {
        display: none;
    }
    .features-inner-1 .col-12.features-active {
        display: block;
        animation: featureFadeIn 0.15s ease forwards;
    }
    .features-inner-1 .col-12.features-fading-out {
        display: block;
        animation: featureFadeOut 0.15s ease forwards;
    }
    @keyframes featureFadeIn {
        from { opacity: 0; }
        to   { opacity: 1; }
    }
    @keyframes featureFadeOut {
        from { opacity: 1; }
        to   { opacity: 0; }
    }
    .features-dots {
        display: flex;
        gap: 8px;
        justify-content: center;
        margin-top: 20px;
    }
    .features-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(116, 95, 163, 0.3);
        cursor: pointer;
        transition: background 0.15s ease, width 0.15s ease, border-radius 0.15s ease;
    }
    .features-dot.active {
        width: 20px;
        border-radius: 4px;
        background: #7641EF;
    }
    .main-container {
        padding-bottom: 60px;
        height: fit-content;
    }

    .main-outer-text-container {
        padding: 0px;
        /* padding-top: 60px; */
    }
    /* .wallet-image {
        max-width: 100%;
        padding: 0 10px;
    } */
    .wallet-small-image {
        max-width: 100%;
        padding: 0 10px;
    }
    .main-buttons {
        flex-direction: column;
        width: 100%;
    }
    .main-buttons a.remove-a {
        width: 100%;
    }
    .main-buttons a .btn-primary-dark {
        width: 100%;
    }
    .main-buttons a .btn-secondary-dark {
        width: 100%;
    }
    .workgrid  {
        padding: 40px;
    }
    .footer-card-bottom {
        height: fit-content;
    }
    .everything-container {
        padding: 0 10px 10px 10px;
    }
    .middle-top img {
        width: 100%;
        max-height: 250px;
    }
    .left-bottom .img-container img {
        max-height: 250px;
    }
    .technology-container {
        padding: 0 10px 10px 10px;
    }
    .security-container {
        padding: 0 10px 10px 10px;
    }
    .revolutionize-container {
        padding: 0 10px 10px 10px;
    }
    .faq-container {
        padding: 0 10px 10px 10px;
    }
    .footer-container {
        padding: 50px 10px 64px 10px;
    }
    .service-container-1 {
        padding: 0 10px 10px 10px;
    }
    .rev-con {
        flex-direction: column;
        width: 100%;
    }
    .revolutionize-container-1 .container-1 > div > div > h2 {
        text-align: center;
    }
    .rev-con .input-secondary {
        width: 100%;
    }
    .rev-con a {
        width: 100%;
    }
    .rev-con a .btn-primary-dark {
        width: 100%;
    }
    .features-container-1 > .remove-a,
    .aplication-container-1 > .remove-a,
    .pricing-container-1 > .remove-a {
        width: 100%;
    }
    .features-container-1 > .remove-a .btn-primary-dark,
    .aplication-container-1 > .remove-a .btn-primary-dark,
    .pricing-container-1 > .remove-a .btn-primary-dark {
        width: 100%;
    }
}

/* RESPONSIVE FONTS */

h1 {
    font-size: clamp(2.5rem, 5vw + 1rem, 6rem); /* 40px → 96px */
    line-height: clamp(2.75rem, 5.5vw + 1rem, 7rem); /* 44px → 112px */
}

h2 {
    font-size: clamp(1.375rem, 2vw + 0.5rem, 2rem); /* 22px → 32px */
    line-height: clamp(1.625rem, 2.2vw + 0.5rem, 2.25rem); /* 26px → 36px */
}

h3 {
    font-size: clamp(1.125rem, 1.5vw + 0.3rem, 1.5rem); /* 18px → 24px */
    line-height: clamp(1.25rem, 1.8vw + 0.3rem, 1.75rem); /* 20px → 28px */
}

p.sfPro {
    font-size: clamp(2rem, 3.5vw + 0.5rem, 3.7125rem); /* 32px → 59.4px */
    line-height: clamp(2.375rem, 4vw + 0.5rem, 4.33125rem); /* 38px → 69.3px */
}

p.body1-text {
    font-size: clamp(1rem, 1.5vw + 0.25rem, 1.25rem); /* 16px → 20px */
    line-height: clamp(1.25rem, 1.8vw + 0.25rem, 1.5rem); /* 20px → 24px */
}

p.body2-text {
    font-size: clamp(1rem, 1.5vw + 0.25rem, 1.25rem); /* 16px → 20px */
    line-height: clamp(1.25rem, 1.8vw + 0.25rem, 1.5rem); /* 20px → 24px */
}

p.body3-text {
    font-size: clamp(0.875rem, 1.2vw + 0.1rem, 1rem); /* 14px → 16px */
    line-height: clamp(1.125rem, 1.4vw + 0.1rem, 1.25rem); /* 18px → 20px */
}

p.body4-text {
    font-size: clamp(0.875rem, 1.2vw + 0.1rem, 1rem); /* 14px → 16px */
    line-height: clamp(1.125rem, 1.4vw + 0.1rem, 1.25rem); /* 18px → 20px */
}

.button-text {
    font-size: clamp(0.875rem, 1.2vw + 0.1rem, 1rem); /* 14px → 16px */
    line-height: clamp(1.125rem, 1.4vw + 0.1rem, 1.25rem); /* 18px → 20px */
}

p.body-text {
    font-size: clamp(0.875rem, 1.2vw + 0.1rem, 1rem); /* 14px → 16px */
    line-height: clamp(1.125rem, 1.4vw + 0.1rem, 1.25rem); /* 18px → 20px */
}


/* PP TOC */
.added-style-32 { max-width: 1000px;margin: auto;margin-bottom: 50px; }
.oph1 {
    margin:0;
    text-transform: uppercase;
    font-size: 18px;
    font-family: 'Neue Montreal Medium', sans-serif;
    font-weight: 500;
}
.oph2 {
    margin:0;
    font-size: 18px;
    font-weight: 300;
    font-family: 'Neue Montreal Regular', sans-serif;
    font-weight: 400;
}
.oph3 {
    margin:0;
    text-transform: uppercase;
    font-size: 24px;
    margin-bottom: 20px;
}
.oph4 {
    line-height: 1.1em;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 34px;
    color: var(--color-text-primary);
}
.oph5 {
    line-height: 1.1em;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--color-text-primary);
}
.lip {
    margin:0;
    font-size: 18px;
    font-weight: 300;
    margin-left: 10px;
    color: var(--color-text-primary);
}
p.ph2 {
    margin:0;
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--color-text-primary);
}
p.ph3 {
    margin:0;
    font-size: 18px;
    /* font-weight: 600; */
    margin-left: 20px;
    margin-bottom: 10px;
    color: var(--color-text-primary);
}
p.ph3-3 {
    margin:0;
    font-size: 18px;
    /* font-weight: 600; */
    /* margin-left: 20px; */
    margin-bottom: 10px;
    color: var(--color-text-primary);
}
p.ph4 {
    margin:0;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--color-text-primary);
}
p.strongItalic {
    font-weight: 500;
    font-style: italic;
    color: var(--color-text-primary);
}
p.ph5 {
    margin:0;
    font-size: 18px;
    font-weight: 300;
    margin-left: 20px;
    margin-bottom: 5px;
    color: var(--color-text-primary);
}
.added-style-32 li {
    color: var(--color-text-primary);
}

li.lispace {
    margin-bottom: 5px;
}

p.fp {
    margin:0;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 10px;
    color: #337ab7;
}