body {
    font-size: 100%;
}


/*! CSS Used from: /_next/static/css/734e034a887ccfbc.css */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 8;
    padding: 0;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}

.header-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
    gap: 20px;
    border: none;
    border-radius: 0;
    padding: 24px 40px;
    position: relative;
    z-index: 1;
}

.header-content,
.header-logo {
    display: flex;
    align-items: center;
}

.header-logo {
    flex-shrink: 0;
    z-index: 2;
}

.header-logo img {
    height: 40px;
    width: auto;
}

.header-nav-desktop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

.header-nav-desktop .header-nav-item {
    pointer-events: auto;
}

.header-nav-item {
    color: rgba(26, 26, 26, .7);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color .2s;
    position: relative;
    padding: 8px 0;
}

.header-nav-item:hover {
    color: #1a1a1a;
}

.header-nav-item.active {
    color: #0500FF;
    background: none;
    box-shadow: none;
    background-image: var(--sunrent-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-connect-btn {
    background: #0500FF;
    color: #ffffff;
    border: none;
    padding: 12px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s;
    font-family: Manrope, sans-serif;
    white-space: nowrap;
    box-shadow: none;
    height: 44px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.header-connect-btn:hover {
    background: #3333ff;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    z-index: 2;
}

.header-language {
    position: relative;
    margin-right: 10px;
}

.header-language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #0500ff22;
    border: 1px solid #0500ff;
    border-radius: 999px;
    color: #0500FF;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    font-family: Manrope, sans-serif;
    height: 44px;
    box-sizing: border-box;
}

.header-language-btn:hover {
    background: #0500ff21;
}

.header-language-flag {
    width: 20px;
    height: 20px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.header-language-arrow {
    font-size: 10px;
    color: #0500FF;
    transition: transform .2s;
}

.header-right-desktop {
    display: flex;
}

.header-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
    flex-shrink: 0;
    margin-left: auto;
}

.header-burger span {
    width: 24px;
    height: 2px;
    background: #000000;
    border-radius: 2px;
    transition: all .3s;
}

.header-burger:hover span {
    background: var(--sunrent-gradient);
}

@media (max-width:1024px) {

    .header-nav-desktop,
    .header-right-desktop {
        display: none;
    }

    .header-burger {
        display: flex;
    }

    .header {
        padding: 0;
    }

    .header-content {
        margin: 0 auto;
        padding: 20px 24px;
    }

    .header-logo img {
        height: 32px;
    }
}

@media (max-width:768px) {
    .header-content {
        padding: 18px 20px;
    }

    .header-logo img {
        height: 30px;
    }
}

@media (max-width:480px) {
    .header {
        padding: 0;
    }

    .header-content {
        margin: 0 auto;
        padding: 16px 20px;
        gap: 12px;
    }

    .header-logo img {
        height: 28px;
    }

    .header-nav-item {
        font-size: 14px;
        padding: 10px 0;
    }
}

/*! CSS Used from: /_next/static/css/cda8ba6a726b0760.css */
:root {
    --sunrent-gradient: linear-gradient(135deg, #0000ff, #0500FF);
    --sunrent-gradient-hover: linear-gradient(135deg, #1a1aff, #3333ff);
    --sunrent-text-primary: #1a1a1a;
    --sunrent-text-secondary: rgba(26, 26, 26, 0.8);
    --sunrent-text-muted: rgba(26, 26, 26, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: Manrope, sans-serif;
}

html {
    height: 100%;
    padding: 0;
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body,
html {
    width: 100%;
    margin: 0;
    background: #ffffff;
}

body {
    font-family: Manrope, sans-serif;
    color: var(--sunrent-text-primary);
    position: relative;
    min-height: 100vh;
    padding: 96px 0 0;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (max-width:768px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width:480px) {
    .container {
        padding: 0 12px;
    }
}

/* body>:not(.liquid-ether-container):not(.header):not(.auth-modal-root):not(.wallet-modal-root):not(.token-modal-overlay):not(.loading-modal-overlay):not(.get-card-modal-overlay):not(.get-card-modal-root) {
    z-index: 1;
} */

.container {
    width: 100%;
}

/*! CSS Used from: /_next/static/css/6e48048022a69e58.css */
.simple-hero {
    padding: 140px 0 0;
    background: transparent;
}

.simple-hero-wrapper {
    background: transparent;
    padding-bottom: 120px;
}

.simple-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.simple-hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    text-align: left;
}

.simple-hero-image {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.simple-hero-image img {
    width: 90%;
    height: auto;
    max-width: 700px;
    -o-object-fit: contain;
    object-fit: contain;
}

.simple-hero-title {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.1;
    color: #000000;
    font-family: Manrope, sans-serif;
    margin: 0;
}

.simple-hero-title-accent {
    color: #0500FF;
}

.simple-hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(26, 26, 26, .7);
    max-width: 600px;
    font-family: Manrope, sans-serif;
    margin: 0;
}

.simple-hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.simple-hero-cta {
    background: #0500FF;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s;
    font-family: Manrope, sans-serif;
}

.simple-hero-cta:hover {
    background: #3333ff;
}

.simple-hero-cta-secondary {
    background: transparent;
    color: #0500FF;
    border: 1px solid #0500ff;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    font-family: Manrope, sans-serif;
    height: 50px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.simple-hero-cta-secondary:hover {
    background: transparent;
    border-color: #3333ff;
    color: #3333ff;
}

@media (max-width:1024px) {
    .simple-hero {
        padding: 80px 0 0;
    }

    .simple-hero-wrapper {
        padding-bottom: 100px;
    }

    .simple-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .simple-hero-image {
        order: 1;
        justify-content: center;
    }

    .simple-hero-content {
        order: 0;
        text-align: center;
        align-items: center;
    }

    .simple-hero-title {
        font-size: 48px;
    }

    .simple-hero-subtitle {
        font-size: 18px;
    }

    .simple-hero-image img {
        width: 90%;
        max-width: 600px;
    }
}

@media (max-width:768px) {
    .simple-hero {
        padding: 60px 0 0;
    }

    .simple-hero-wrapper {
        padding-bottom: 80px;
    }

    .simple-hero-grid {
        gap: 32px;
    }

    .simple-hero-content {
        text-align: center;
        align-items: center;
    }

    .simple-hero-title {
        font-size: 40px;
    }

    .simple-hero-subtitle {
        font-size: 16px;
        max-width: 100%;
    }

    .simple-hero-buttons {
        width: 100%;
        flex-direction: column;
    }

    .simple-hero-cta,
    .simple-hero-cta-secondary {
        width: 100%;
        padding: 16px 32px;
    }

    .simple-hero-image img {
        width: 90%;
        max-width: 500px;
    }
}

@media (max-width:480px) {
    .simple-hero {
        padding: 50px 0 0;
    }

    .simple-hero-wrapper {
        padding-bottom: 60px;
    }

    .simple-hero-grid {
        gap: 24px;
    }

    .simple-hero-content {
        gap: 20px;
        text-align: center;
        align-items: center;
    }

    .simple-hero-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .simple-hero-subtitle {
        font-size: 15px;
    }

    .simple-hero-image img {
        width: 90%;
        max-width: 400px;
    }
}

.trust-indicators {
    padding: 60px 0;
    background: #ffffff;
}

.trust-indicators-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    align-items: center;
}

.trust-indicator-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.trust-indicator-label {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.trust-indicator-label,
.trust-indicator-value {
    font-family: Manrope, sans-serif;
    line-height: 1.4;
}

.trust-indicator-value {
    font-size: 32px;
    font-weight: 700;
    white-space: nowrap;
    word-break: break-word;
}

.trust-indicator-number {
    color: #0500FF;
}

.trust-indicator-text {
    color: #1a1a1a;
}

.trust-indicator-text-blue {
    color: #0500FF;
}

.trust-indicator-stars {
    display: flex;
    gap: 4px;
    justify-content: center;
}

.trust-indicator-stars .star {
    color: #0500FF;
    font-size: 32px;
    line-height: 1;
}

@media (max-width:1200px) {
    .trust-indicators-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

@media (max-width:1024px) {
    .trust-indicators-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .trust-indicator-label {
        font-size: 18px;
    }

    .trust-indicator-value {
        font-size: 28px;
    }
}

@media (max-width:768px) {
    .trust-indicators {
        padding: 40px 0;
    }

    .trust-indicators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .trust-indicator-label {
        font-size: 16px;
        font-weight: 600;
    }

    .trust-indicator-value {
        font-size: 26px;
        font-weight: 700;
    }

    .trust-indicator-stars .star {
        font-size: 26px;
    }
}

@media (max-width:640px) {
    .trust-indicators {
        padding: 32px 0;
    }

    .trust-indicators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .trust-indicator-label {
        font-size: 14px;
        font-weight: 600;
    }

    .trust-indicator-value {
        font-size: 22px;
        font-weight: 700;
        white-space: normal;
    }

    .trust-indicator-stars .star {
        font-size: 22px;
    }
}

@media (max-width:480px) {
    .trust-indicators {
        padding: 32px 0;
    }

    .trust-indicators-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trust-indicator-item {
        padding: 0 10px;
    }

    .trust-indicator-label {
        font-size: 14px;
        font-weight: 600;
    }

    .trust-indicator-value {
        font-size: 20px;
        font-weight: 700;
        white-space: normal;
    }

    .trust-indicator-stars .star {
        font-size: 20px;
    }
}

.banner {
    width: 100%;
    padding: 100px 0 60px;
}

.banner-wrapper {
    position: relative;
    background: #0500FF;
    border: none;
    border-radius: 32px;
    padding: 60px 40px;
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.banner-image {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.banner-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.banner-left {
    gap: 32px;
    align-items: flex-start;
    text-align: left;
    padding-left: 0;
    margin-left: 0;
}

.banner-left,
.banner-text {
    display: flex;
    flex-direction: column;
}

.banner-text {
    gap: 16px;
}

.banner-title {
    font-size: 56px;
    font-weight: 600;
    color: #ffffff;
    font-family: Manrope, sans-serif;
    margin: 0;
    line-height: 1.2;
}

.banner-title-line {
    display: block;
}

.banner-subtitle {
    font-size: 20px;
    margin: 0;
}

.banner-cta,
.banner-subtitle {
    color: #ffffff;
    font-family: Manrope, sans-serif;
}

.banner-cta {
    background: transparent;
    border: 1px solid #ffffff;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 0;
    align-self: flex-start;
}

.banner-cta:hover {
    background: #ffffff;
    color: #0500FF;
}

.banner-cta-arrow {
    color: #ffffff;
    font-size: 18px;
    transition: transform .2s;
}

.banner-cta:hover .banner-cta-arrow {
    color: #0500FF;
    transform: translateX(4px);
}

@media (max-width:1024px) {
    .banner {
        padding: 50px 0;
    }

    .banner-wrapper {
        padding: 50px 24px;
    }

    .banner-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .banner-left {
        order: 1;
        align-items: center;
        text-align: center;
    }

    .banner-image {
        order: 2;
        justify-content: center;
    }

    .banner-title {
        font-size: 36px;
        text-align: center;
    }

    .banner-subtitle {
        font-size: 16px;
        text-align: center;
    }

    .banner-cta {
        width: 100%;
        padding: 16px 32px;
        justify-content: center;
    }
}

@media (max-width:768px) {
    .banner {
        padding: 40px 0;
    }

    .banner-wrapper {
        padding: 40px 20px;
    }

    .banner-content {
        gap: 32px;
    }

    .banner-left {
        order: 1;
        align-items: center;
        text-align: center;
    }

    .banner-image {
        order: 2;
    }

    .banner-title {
        font-size: 32px;
        text-align: center;
    }

    .banner-subtitle {
        font-size: 15px;
        text-align: center;
    }

    .banner-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width:480px) {
    .banner {
        padding: 32px 0;
    }

    .banner-wrapper {
        padding: 32px 16px;
    }

    .banner-content {
        gap: 24px;
    }

    .banner-image {
        order: 2;
    }

    .banner-title {
        font-size: 28px;
        text-align: center;
        line-height: 1.2;
    }

    .banner-subtitle {
        font-size: 14px;
        text-align: center;
    }

    .banner-cta {
        width: 100%;
        justify-content: center;
        font-size: 15px;
    }
}

.benefits {
    padding: 120px 0;
    background: transparent;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.benefits-header {
    margin-bottom: 80px;
    text-align: left;
}

.benefits-title {
    font-size: 48px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.benefits-subtitle,
.benefits-title {
    font-family: Manrope, sans-serif;
    text-align: left;
}

.benefits-subtitle {
    font-size: 20px;
    color: rgba(26, 26, 26, .7);
    margin: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    text-align: left;
    position: relative;
    min-width: 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
    transition: all .3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(5, 0, 255, .2);
}

.benefit-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 12px;
}

.benefit-image,
.benefit-image img {
    width: 100%;
    transition: transform .3s ease;
}

.benefit-image img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.benefit-card:hover .benefit-image img {
    transform: scale(1.05);
}

.benefit-headline {
    font-size: 21px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: Manrope, sans-serif;
    margin: 0 0 16px;
    line-height: 1.3;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .3s ease;
}

.benefit-card:hover .benefit-headline {
    color: #0500FF;
}

.benefit-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(26, 26, 26, .7);
    font-family: Manrope, sans-serif;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(1.6em * 2);
}

@media (max-width:1024px) {
    .benefits {
        padding: 100px 0;
    }

    .benefits-header {
        margin-bottom: 60px;
        text-align: left;
    }

    .benefits-title {
        font-size: 40px;
        margin-bottom: 16px;
        white-space: normal;
    }

    .benefits-subtitle {
        font-size: 18px;
    }

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

    .benefit-card {
        padding: 28px 20px;
        align-items: center;
        text-align: center;
    }

    .benefit-image {
        height: 160px;
        margin-bottom: 20px;
    }
}

@media (max-width:768px) {
    .benefits {
        padding: 80px 0;
    }

    .benefits-header {
        margin-bottom: 48px;
        text-align: left;
    }

    .benefits-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .benefits-subtitle {
        font-size: 16px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 24px 20px;
        align-items: center;
        text-align: center;
    }

    .benefit-image {
        height: 140px;
        margin-bottom: 16px;
    }

    .benefit-headline {
        font-size: 18px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .benefit-description {
        font-size: 15px;
    }
}

@media (max-width:480px) {
    .benefits {
        padding: 60px 0;
    }

    .benefits-header {
        margin-bottom: 40px;
        text-align: left;
    }

    .benefits-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .benefits-subtitle {
        font-size: 15px;
    }

    .benefit-card {
        padding: 20px 16px;
        align-items: center;
        text-align: center;
    }

    .benefit-image {
        height: 120px;
        margin-bottom: 16px;
    }

    .benefit-headline {
        font-size: 16px;
        margin-bottom: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .benefit-description {
        font-size: 14px;
    }
}

.faq-two-column {
    padding: 120px 0;
    background: transparent;
    width: 100%;
}

.faq-two-column-header {
    margin-bottom: 60px;
    text-align: left;
}

.faq-two-column-title {
    font-size: 48px;
    font-weight: 600;
    color: #000000;
    font-family: Manrope, sans-serif;
    margin: 0 0 16px;
}

.faq-two-column-subtitle {
    font-size: 20px;
    color: rgba(26, 26, 26, .7);
    font-family: Manrope, sans-serif;
    margin: 0;
}

.faq-two-column-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.faq-two-column-questions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-two-column-question {
    width: 100%;
    padding: 24px 28px;
    background: #ffffff;
    border: 1px solid rgba(26, 26, 26, .1);
    border-radius: 16px;
    text-align: left;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 600;
    font-family: Manrope, sans-serif;
    cursor: pointer;
    transition: all .3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

.faq-two-column-question:hover {
    background: #ffffff;
    color: #0500FF;
    border-color: rgba(5, 0, 255, .3);
    transform: translateY(-2px);
}

.faq-two-column-question.active {
    background: #ffffff;
    color: #0500FF;
    border-color: #0500FF;
}

.faq-two-column-question span {
    flex: 1;
    text-align: left;
}

.faq-two-column-question svg {
    flex-shrink: 0;
    color: rgba(26, 26, 26, .5);
    transition: all .3s ease;
    width: 16px;
    height: 16px;
}

.faq-two-column-question:hover svg {
    color: #0500FF;
}

.faq-two-column-question.active svg {
    color: #0500FF;
    transform: rotate(90deg);
}

.faq-two-column-answer {
    min-height: 200px;
    padding: 40px;
    background: #ffffff;
    border: 1px solid rgba(26, 26, 26, .1);
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
    transition: all .3s ease;
}

.faq-two-column-answer-content {
    color: rgba(26, 26, 26, .85);
    font-size: 18px;
    line-height: 1.8;
    font-family: Manrope, sans-serif;
}

.faq-two-column-answer-content p {
    margin: 0;
}

.faq-two-column-item {
    display: flex;
    flex-direction: column;
}

.faq-two-column-answer-mobile {
    max-height: 0;
    padding: 0;
    margin: 0;
    background: #ffffff;
    border: 1px solid rgba(26, 26, 26, .1);
    border-top: none;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    transition: max-height .3s ease-out, padding .3s ease-out, opacity .3s ease-out;
    opacity: 0;
}

.faq-two-column-answer-mobile .faq-two-column-answer-content {
    padding: 0;
    margin: 0;
}

@media (min-width:1025px) {
    .faq-two-column-answer-mobile {
        display: none !important;
    }
}

@media (max-width:1024px) {
    .faq-two-column {
        padding: 100px 0;
    }

    .faq-two-column-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .faq-two-column-answer {
        display: none;
    }

    .faq-two-column-answer-mobile.active {
        max-height: 1000px;
        padding: 20px 24px;
        margin-top: -1px;
        opacity: 1;
    }

    .faq-two-column-answer-mobile.active .faq-two-column-answer-content {
        padding: 0;
        margin: 0;
    }

    .faq-two-column-question.active {
        border-bottom: none;
    }
}

@media (max-width:768px) {
    .faq-two-column {
        padding: 80px 0;
    }

    .faq-two-column-header {
        margin-bottom: 40px;
    }

    .faq-two-column-title {
        font-size: 32px;
    }

    .faq-two-column-subtitle {
        font-size: 16px;
    }

    .faq-two-column-question {
        padding: 20px 24px;
        font-size: 16px;
        border-radius: 12px;
    }

    .faq-two-column-answer {
        display: none;
    }

    .faq-two-column-answer-mobile {
        padding: 0;
    }

    .faq-two-column-answer-mobile.active {
        max-height: 1000px;
        padding: 16px 20px;
        margin-top: -1px;
        opacity: 1;
    }

    .faq-two-column-question.active {
        border-bottom: none;
    }

    .faq-two-column-answer-content {
        font-size: 15px;
    }
}

@media (max-width:480px) {
    .faq-two-column {
        padding: 60px 0;
    }

    .faq-two-column-title {
        font-size: 28px;
    }

    .faq-two-column-question {
        padding: 18px 20px;
        font-size: 15px;
        border-radius: 12px;
    }

    .faq-two-column-answer {
        display: none;
    }

    .faq-two-column-answer-mobile {
        padding: 0;
    }

    .faq-two-column-answer-mobile.active {
        max-height: 1000px;
        padding: 14px 16px;
        margin-top: -1px;
        opacity: 1;
    }

    .faq-two-column-question.active {
        border-bottom: none;
    }

    .faq-two-column-answer-content {
        font-size: 14px;
    }
}

.cta-banner {
    padding: 120px 0;
    background: transparent;
    width: 100%;
}

.cta-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 40px;
    background: #0500FF;
    border: none;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.cta-banner-left {
    gap: 32px;
    align-items: flex-start;
    text-align: left;
    padding-left: 0;
    margin-left: 0;
}

.cta-banner-left,
.cta-banner-text {
    display: flex;
    flex-direction: column;
}

.cta-banner-text {
    gap: 16px;
}

.cta-banner-image {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.cta-banner-image img {
    width: 70%;
    height: auto;
    max-width: 500px;
    -o-object-fit: contain;
    object-fit: contain;
}

.cta-banner-title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.2;
}

.cta-banner-subtitle,
.cta-banner-title {
    color: #ffffff;
    font-family: Manrope, sans-serif;
    margin: 0;
}

.cta-banner-subtitle {
    font-size: 20px;
}

.cta-banner-button {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    font-family: Manrope, sans-serif;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
    margin: 0;
    align-self: flex-start;
}

.cta-banner-button:hover {
    background: #ffffff;
    color: #0500FF;
}

.cta-banner-button-arrow {
    color: #ffffff;
    font-size: 18px;
    transition: all .2s;
}

.cta-banner-button:hover .cta-banner-button-arrow {
    color: #0500FF;
    transform: translateX(4px);
}

@media (max-width:1024px) {
    .cta-banner {
        padding: 50px 0;
    }

    .cta-banner-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 24px;
    }

    .cta-banner-left {
        order: 1;
    }

    .cta-banner-left,
    .cta-banner-text {
        align-items: center;
        text-align: center;
    }

    .cta-banner-button {
        width: 100%;
        padding: 16px 32px;
        justify-content: center;
        margin: 0 auto;
    }

    .cta-banner-image {
        order: 2;
        justify-content: center;
    }

    .cta-banner-image img {
        width: 100%;
        max-width: 100%;
    }

    .cta-banner-title {
        font-size: 36px;
        text-align: center;
    }

    .cta-banner-subtitle {
        font-size: 16px;
        text-align: center;
    }
}

@media (max-width:768px) {
    .cta-banner {
        padding: 40px 0;
    }

    .cta-banner-content {
        padding: 40px 20px;
        border-radius: 24px;
        gap: 32px;
    }

    .cta-banner-left {
        order: 1;
    }

    .cta-banner-left,
    .cta-banner-text {
        align-items: center;
        text-align: center;
    }

    .cta-banner-image {
        order: 2;
    }

    .cta-banner-title {
        font-size: 32px;
        text-align: center;
    }

    .cta-banner-subtitle {
        font-size: 15px;
        text-align: center;
    }

    .cta-banner-button {
        width: 100%;
        justify-content: center;
        font-size: 15px;
    }
}

@media (max-width:480px) {
    .cta-banner {
        padding: 32px 0;
    }

    .cta-banner-content {
        padding: 32px 16px;
        border-radius: 20px;
        gap: 24px;
    }

    .cta-banner-left {
        order: 1;
        gap: 24px;
    }

    .cta-banner-left,
    .cta-banner-text {
        align-items: center;
        text-align: center;
    }

    .cta-banner-image {
        order: 2;
    }

    .cta-banner-title {
        font-size: 28px;
        line-height: 1.2;
        text-align: center;
    }

    .cta-banner-subtitle {
        font-size: 14px;
        text-align: center;
    }

    .cta-banner-button {
        width: 100%;
        justify-content: center;
        font-size: 14px;
    }
}

.main-footer {
    padding: 40px 0;
    background: transparent;
    width: 100%;
    border-top: 1px solid rgba(26, 26, 26, .1);
}

.main-footer-content {
    justify-content: space-between;
    gap: 40px;
}

.main-footer-content,
.main-footer-left,
.main-footer-logo-wrapper {
    display: flex;
    align-items: center;
}

.main-footer-logo-wrapper {
    gap: 12px;
}

.main-footer-logo {
    display: flex;
    align-items: center;
}

.main-footer-logo img {
    height: 40px;
    width: auto;
}

.main-footer-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-footer-copyright {
    font-size: 14px;
    color: rgba(26, 26, 26, .5);
    font-family: Manrope, sans-serif;
    margin: 0;
    text-align: center;
}

.main-footer-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.main-footer-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.main-footer-language {
    position: relative;
}

.main-footer-language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border: 1px solid rgba(26, 26, 26, .1);
    border-radius: 999px;
    color: #0500FF;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    font-family: Manrope, sans-serif;
}

.main-footer-language-btn:hover {
    background: rgba(5, 0, 255, .05);
    border-color: rgba(5, 0, 255, .2);
}

.main-footer-language-flag {
    width: 20px;
    height: 20px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.main-footer-language-arrow {
    font-size: 10px;
    color: rgba(26, 26, 26, .7);
    transition: transform .2s;
}

.main-footer-get-card-btn {
    background: #0500FF;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    font-family: Manrope, sans-serif;
    white-space: nowrap;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.main-footer-get-card-btn:hover {
    background: #3333ff;
}

@media (max-width:1024px) {
    .main-footer-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }

    .main-footer-left {
        width: 100%;
        justify-content: center;
    }

    .main-footer-center {
        width: 100%;
        order: 3;
    }

    .main-footer-right {
        width: 100%;
        justify-content: center;
    }

    .main-footer-actions {
        flex-direction: row;
        gap: 16px;
    }
}

@media (max-width:768px) {
    .main-footer {
        padding: 32px 0;
    }

    .main-footer-content {
        gap: 24px;
    }

    .main-footer-logo-wrapper {
        justify-content: center;
    }

    .main-footer-logo img {
        height: 36px;
    }

    .main-footer-copyright {
        font-size: 13px;
    }

    .main-footer-right {
        justify-content: center;
    }

    .main-footer-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .main-footer-get-card-btn {
        width: auto;
        max-width: 200px;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width:480px) {
    .main-footer {
        padding: 24px 0;
    }

    .main-footer-logo img {
        height: 36px;
    }

    .main-footer-copyright {
        font-size: 12px;
    }

    .main-footer-get-card-btn {
        font-size: 14px;
        padding: 10px 20px;
        width: auto;
        max-width: 180px;
        justify-content: center;
        text-align: center;
        margin: 0 auto;
    }
}

/*! CSS Used fontfaces */
@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggqxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggOxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggSxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggixSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggmxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggexSvfedN4.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggqxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggOxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggSxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggixSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggmxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggexSvfedN4.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggqxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggOxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggSxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggixSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggmxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggexSvfedN4.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggqxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggOxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggSxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggixSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggmxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggexSvfedN4.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggqxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggOxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggSxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggixSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggmxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggexSvfedN4.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggqxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggOxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggSxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggixSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggmxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggexSvfedN4.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


.get-card-modal {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border-radius: 12px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
    border: 1px solid rgba(26, 26, 26, .1);
    font-family: Manrope, sans-serif;
    margin: auto;
    display: block;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.get-card-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: rgba(26, 26, 26, .7);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .2s;
}

.get-card-modal-close:hover {
    color: #1a1a1a;
}

.get-card-modal-content {
    padding-top: 20px;
}

.get-card-modal-title {
    font-family: Manrope, sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 40px;
    text-align: center;
}

.get-card-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.get-card-step {
    display: flex;
    gap: 20px;
    opacity: .5;
    transition: opacity .3s;
    border-radius: 12px;
    padding: 20px;
    background: rgba(5, 0, 255, .02);
    border: 1px solid rgba(26, 26, 26, .05);
}

.get-card-step.active {
    opacity: 1;
    background: rgba(5, 0, 255, .04);
    border-color: rgba(5, 0, 255, .3);
}

.get-card-step-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 999px;
    background: rgba(5, 0, 255, .1);
    border: 1px solid rgba(5, 0, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: rgba(26, 26, 26, .7);
    font-family: Manrope, sans-serif;
    transition: all .3s;
}

.get-card-step.active .get-card-step-number {
    background: rgba(5, 0, 255, .2);
    border-color: #0500FF;
    color: #0500FF;
}

.get-card-step-content {
    flex: 1;
}

.get-card-step-title {
    font-family: Manrope, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.get-card-step-description {
    font-family: Manrope, sans-serif;
    font-size: 16px;
    color: rgba(26, 26, 26, .7);
    margin: 0 0 16px;
    line-height: 1.5;
}

.get-card-step-button {
    background: #0500FF;
    color: #ffffff;
    margin-top: 15px;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: all .2s;
}

.get-card-step-button:hover {
    background: #3333ff;
    transform: translateY(-2px);
}

.get-card-substeps {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.get-card-substep-item {
    position: relative;
    padding-left: 16px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(26, 26, 26, 0.7);
}

.get-card-substep-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0500FF;
    font-weight: bold;
    font-size: 18px;
}

@media (max-width:768px) {
    .get-card-modal-root {
        padding: 16px;
    }

    .get-card-modal {
        padding: 24px 18px;
        max-width: 100%;
        width: 100%;
        border-radius: 16px;
    }

    .get-card-modal-title {
        font-size: 22px;
        margin-bottom: 24px;
        line-height: 1.3;
    }

    .get-card-steps {
        gap: 18px;
    }

    .get-card-step {
        gap: 12px;
        padding: 14px;
        border-radius: 10px;
    }

    .get-card-step-number {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 16px;
        border-radius: 10px;
    }

    .get-card-step-title {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .get-card-step-description {
        font-size: 13px;
        margin-bottom: 12px;
        line-height: 1.4;
    }

    .get-card-step-button {
        font-size: 14px;
        padding: 10px 18px;
        width: 100%;
    }

    .get-card-substeps {
        margin-top: 14px;
        gap: 8px;
    }

    .get-card-substep-item {
        font-size: 12px;
        padding-left: 14px;
        line-height: 1.5;
    }

    .get-card-substep-item::before {
        left: 0;
        font-size: 16px;
    }

    .get-card-modal-close {
        top: 14px;
        right: 14px;
        font-size: 28px;
        width: 28px;
        height: 28px;
    }
}

@media (max-width:480px) {
    .get-card-modal-root {
        padding: 12px;
    }

    .get-card-modal {
        padding: 20px 16px;
        max-width: 100%;
        width: 100%;
        border-radius: 12px;
    }

    .get-card-modal-title {
        font-size: 20px;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .get-card-steps {
        gap: 14px;
    }

    .get-card-step {
        padding: 12px;
        border-radius: 8px;
        gap: 10px;
    }

    .get-card-step-number {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 15px;
        border-radius: 8px;
    }

    .get-card-step-title {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .get-card-step-description {
        font-size: 12px;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .get-card-step-button {
        font-size: 13px;
        padding: 9px 16px;
        width: 100%;
    }

    .get-card-substeps {
        margin-top: 12px;
        gap: 6px;
    }

    .get-card-substep-item {
        font-size: 11px;
        padding-left: 12px;
        line-height: 1.45;
    }

    .get-card-substep-item::before {
        left: 0;
        font-size: 14px;
    }

    .get-card-modal-close {
        top: 12px;
        right: 12px;
        font-size: 26px;
        width: 26px;
        height: 26px;
    }
}

/*! CSS Used from: https://trustpay.energy/_next/static/css/cda8ba6a726b0760.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: Manrope, sans-serif;
}

/*! CSS Used fontfaces */
@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggqxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggOxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggSxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggixSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggmxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggexSvfedN4.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggqxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggOxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggSxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggixSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggmxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggexSvfedN4.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggqxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggOxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggSxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggixSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggmxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggexSvfedN4.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggqxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggOxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggSxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggixSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggmxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggexSvfedN4.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggqxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggOxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggSxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggixSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggmxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggexSvfedN4.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggqxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggOxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggSxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggixSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggmxSvfedN62Zw.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggexSvfedN4.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


/* Modal styles */
.get-card-modal-root {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    align-items: center;
    justify-content: center;
}

/* .get-card-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
} */

.get-card-modal {
    position: relative;
    z-index: 10000;
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.get-card-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(26, 26, 26, 0.5);
    transition: color 0.2s ease;
    z-index: 10001;
}

.get-card-modal-close:hover {
    color: rgba(26, 26, 26, 0.8);
}



@media (max-width: 768px) {
    /* .get-card-modal-content {
        padding: 30px 20px;
    } */
    
    .get-card-modal-title {
        font-size: 24px;
    }
}


.header-mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(26, 26, 26, .1);
    border-radius: 12px;
    padding: 20px;
    z-index: 99;
}

.header-nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
}

.header-nav-item.active {
    color: #0500FF;
    background: none;
    box-shadow: none;
    background-image: var(--sunrent-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-nav-item {
    color: rgba(26, 26, 26, .7);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color .2s;
    position: relative;
    padding: 8px 0;
}

.header-mobile-actions {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.header-language-mobile {
    width: 100%;
}

.header-connect-btn-mobile {
    width: 100%;
}

.header-language-mobile .header-language-btn {
    width: 100%;
    justify-content: space-between;
}

.header-language-dropdown-mobile {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    margin-top: 8px;
    width: 100%;
}

.header-language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(26, 26, 26, .1);
    border-radius: 12px;
    padding: 8px;
    min-width: 180px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .5);
}



.header-language-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 12px;
    background: transparent;
    border: none;
    border-radius: 999px;
    color: rgba(26, 26, 26, .9);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    font-family: Manrope, sans-serif;
    text-align: left;
}

.header-language-item:hover {
    background: rgba(5, 0, 255, .1);
    color: #1a1a1a;
}

.header-language-item.active {
    background: rgba(5, 0, 255, .12);
    background-image: var(--sunrent-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-footer-language-dropdown {
    position: absolute;
    bottom: calc(100% + 8px);
    right: 0;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(26, 26, 26, .1);
    border-radius: 12px;
    padding: 8px;
    min-width: 180px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .5);
}

.get-card-modal-overlay {
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: auto;
}


.get-card-step.active {
    opacity: 1;
    background: rgba(5, 0, 255, .04);
    border-color: rgba(5, 0, 255, .3);
}

@media (max-width: 480px) {
    .get-card-step {
        padding: 14px;
        border-radius: 8px;
    }
}
@media (max-width: 768px) {
    .get-card-step {
        gap: 16px;
        padding: 16px;
        border-radius: 10px;
    }
}
.get-card-step {
    display: flex;
    gap: 20px;
    opacity: .5;
    transition: opacity .3s;
    border-radius: 12px;
    padding: 20px;
    background: rgba(5, 0, 255, .02);
    border: 1px solid rgba(26, 26, 26, .05);
}

.get-card-modal-title {
    font-family: Manrope, sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 40px;
    text-align: center;
}



@media (max-width: 480px) {
    .get-card-modal {
        padding: 24px 20px;
    }
}

@media (max-width: 768px) {
    .get-card-modal {
        padding: 32px 24px;
        max-width: 95%;
    }
}
.get-card-modal {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border-radius: 12px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
    border: 1px solid rgba(26, 26, 26, .1);
    font-family: Manrope, sans-serif;
    margin: auto;
    display: block;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.get-card-modal-content {
    padding-top: 2px;
}

.get-card-modal-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.get-card-instructions {
    margin-top: 20px;
}

.get-card-instructions-list {
    list-style: none;
    counter-reset: instruction-counter;
    padding: 0;
    margin: 0;
}

.get-card-instruction-item {
    counter-increment: instruction-counter;
    position: relative;
    padding: 16px 20px 16px 50px;
    margin-bottom: 12px;
    background: rgba(5, 0, 255, 0.03);
    border: 1px solid rgba(5, 0, 255, 0.1);
    border-radius: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    transition: all 0.2s ease;
}

.get-card-instruction-item:hover {
    background: rgba(5, 0, 255, 0.05);
    border-color: rgba(5, 0, 255, 0.2);
}

.get-card-instruction-item::before {
    content: counter(instruction-counter);
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: #0500FF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.get-card-inline-button {
    display: inline-block;
    background: white;
    color: #0500FF;
    border: 2px solid #0500FF;
    border-radius: 6px;
    padding: 4px 12px;
    margin: 0 4px;
    font-size: inherit;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.get-card-inline-button:hover {
    background: #0500FF;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(5, 0, 255, 0.3);
}

@media (max-width: 768px) {
    .get-card-modal-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .get-card-instruction-item {
        padding: 14px 18px 14px 45px;
        font-size: 15px;
    }
    
    .get-card-instruction-item::before {
        width: 24px;
        height: 24px;
        font-size: 13px;
        left: 14px;
    }
}