/* Font Face Declarations */
@font-face {
    font-family: 'Inter';
    src: url('./assets/fonts/Inter_text/Inter_28pt-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('./assets/fonts/Manrope_title/Manrope-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('./assets/fonts/Manrope_title/Manrope-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('./assets/fonts/Manrope_title/Manrope-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('./assets/fonts/Manrope_title/Manrope-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('./assets/fonts/Manrope_title/Manrope-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('./assets/fonts/Manrope_title/Manrope-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-display: swap;
}

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

/* Smooth scrolling behavior */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
    width: 100%;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 725px;
    background: linear-gradient(158deg, #010214 -6.72%, #0048FF 111.54%);
    overflow: hidden;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 17.74%;
    position: relative;
    z-index: 10;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.solutions-section .container {
    padding: 0 12%;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 30px;
    margin: 32px 0 0 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 34px;
    height: 34px;
}

.logo-text {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.navigation {
    display: flex;
    gap: 40px;
}

.nav-item {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: white;
}

.connect-button {
    font-family: 'Manrope', sans-serif;
    background: linear-gradient(135deg, #3038d3 0%, #e313d2 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.connect-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(48, 56, 211, 0.4);
}

/* Language Selector */
.language-selector {
    position: relative;
    z-index: 1000;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.language-text {
    font-size: 14px;
    font-weight: 500;
}

.language-arrow {
    transition: transform 0.3s ease;
}

.language-btn.active .language-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: transparent;
    color: #1f2937;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 8px;
    margin: 4px;
}

.language-option:hover {
    background: rgba(48, 56, 211, 0.1);
    color: #3038d3;
}

.language-option.active {
    background: linear-gradient(135deg, #3038d3 0%, #e313d2 100%);
    color: white;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: white;
    margin: 2px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile navigation */
.mobile-navigation {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #F0F0F2;
    padding: 60px 30px 30px;
    z-index: 1002;
    transition: right 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    left: 20px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: #171717;
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-navigation.active {
    right: 0;
    visibility: visible;
    opacity: 1;
}

.mobile-nav-item {
    display: block;
    font-family: 'Inter', sans-serif;
    color: #171717;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 0;
    border-bottom: 1px solid rgba(23, 23, 23, 0.1);
    transition: color 0.3s ease;
}

.mobile-nav-item:last-child {
    border-bottom: none;
    font-family: 'Manrope', sans-serif;
    background: linear-gradient(135deg, #3038d3 0%, #e313d2 100%);
    color: white;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 32px;
    text-align: center;
    margin-top: 16px;
}

.mobile-nav-item:hover {
    color: #3038d3;
}

.mobile-nav-item:last-child:hover {
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(48, 56, 211, 0.4);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Mobile menu button animation when active */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3038d3 0%, #e313d2 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(48, 56, 211, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(48, 56, 211, 0.6);
}

.back-to-top-btn.show {
    display: flex;
    animation: slideInUp 0.3s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments for back to top button */
@media (max-width: 768px) {
    .back-to-top-btn {
        bottom: 20px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .back-to-top-btn {
        bottom: 60px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .back-to-top-btn svg {
        width: 20px;

        height: 20px;
    }
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0;
    gap: 12px;
}

.hero-badge {
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #E9E9E9;
    border: 1px solid rgba(244, 244, 245, 0.25);
    border-radius: 100px;
    padding: 4px 12px 4px 4px;
    height: 40px;
    color: rgba(244, 244, 245, 0.9);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 48px;
}

.badge-text {
    color: #171717;
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}

.badge-icon-container {
    display: flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    background: #FFF;
}

.badge-icon {
    width: 20px;
    height: 20px;
    color: #171717;
}

.hero-title {
    align-self: stretch;
    font-family: 'Manrope', sans-serif;
    font-size: 54px;
    font-weight: 700;
    color: #FFF;
    line-height: 124%;
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.hero-subtitle {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.cta-button {
    font-family: 'Manrope', sans-serif;
    background: #f4f4f5;
    color: #020617;
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 12px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Background Elements */
.bg-elements {
    position: absolute;
    top: 80px;
    left: 80px;
    width: 80%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
    height: inherit;
}

.footer-cta-bg-elements {
    width: 80%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
    height: inherit;
}

.circle {
    position: absolute;
    width: 42.32px;
    height: 62.366px;
    border-radius: 100px;
    background: rgba(242, 244, 247, 0.10);
    transform: rotate(45deg);
    flex-shrink: 0;
}


.circle-1 {
    top: 8.68%;
    left: 3.53%;
    animation-delay: 0s;
}

.circle-2 {
    top: 17.66%;
    left: 7.05%;
    animation-delay: -3s;
}

.circle-3 {
    top: 17.5%;
    left: 14.11%;
    animation-delay: -6s;
}

.cta-circle-3 {
    top: 17.5%;
    left: 14.11%;
    animation-delay: -6s;
}


.circle-4 {
    top: 41.98%;
    left: 24.76%;
    animation-delay: -9s;
}

.cta-circle-4 {
    top: 44.98%;
    left: 29%;
    animation-delay: -6s;
}

.circle-5 {
    top: 59.8%;
    left: 14.11%;
    animation-delay: -12s;
}

.circle-6 {
    top: 72.45%;
    left: 17.64%;
    animation-delay: -15s;
}


.cta-circle-6 {
    top: 89.45%;
    left: 35.64%;
    animation-delay: -15s;
}

.circle-7 {
    top: 80.45%;
    left: 28.29%;
    animation-delay: -18s;
}

.cta-circle-7 {
    top: 44.98%;
    left: 60.76%;
    animation-delay: -18s;
}

.circle-8 {
    top: 17.5%;
    right: 14.11%;
    animation-delay: -21s;
}

.circle-9 {
    top: 26.48%;
    right: 10.58%;
    animation-delay: -24s;
}

.circle-10 {
    top: 35.15%;
    right: 7.06%;
    animation-delay: -27s;
}

.circle-11 {
    top: 77.29%;
    right: 17.64%;
    animation-delay: -30s;
}

.cta-circle-11 {
    top: 77.29%;
    right: 15.64%;
    animation-delay: -30s;
}

.circle-12 {
    top: 17.5%;
    right: 3.53%;
    animation-delay: -33s;
}

.cta-circle-12 {
    top: 17.5%;
    right: 15.64%;
    animation-delay: -33s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.1;
    }
}

/* Button breathing/pulsing animations */
@keyframes buttonPulse {

    0%,
    100% {
        box-shadow: 0 4px 16px rgba(48, 56, 211, 0.4);
    }

    50% {
        box-shadow: 0 4px 24px rgba(48, 56, 211, 0.8);
    }
}

@keyframes buttonGlow {

    0%,
    100% {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    50% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    }
}

@keyframes buttonGlowWhite {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
    }

    50% {
        box-shadow: 0 8px 36px rgba(255, 255, 255, 0.6);
    }
}

/* Contact information breathing light effect */
@keyframes contactGlow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(23, 23, 23, 0.1);
        background-color: rgba(23, 23, 23, 0.02);
    }

    50% {
        box-shadow: 0 0 20px rgba(23, 23, 23, 0.2);
        background-color: rgba(23, 23, 23, 0.05);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 10%;
    }

    .navigation {
        gap: 30px;
    }

    .hero-title {
        font-size: 52px;
    }

    .main-content {
        padding: 60px 0;
    }
}

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

    .hero-container {
        position: relative;
        width: 100%;
        height: 725px;
        min-height: 500px;
    }

    .badge-text {
        flex: 1 0 0;
        color: var(--171717, #171717);
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-align: left;
    }

    .header {
        padding: 12px 30px;
        margin: 16px 0 0 0;
    }

    .navigation {
        display: none;
    }

    .connect-button {
        display: none;
    }

    .language-selector {
        position: absolute;
        right: 80px;
        top: 50%;
        transform: translateY(-50%);
        margin-right: 0;
    }

    .language-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .language-text {
        font-size: 12px;
    }

    .language-dropdown {
        min-width: 110px;
        right: 0;
        font-size: 13px;
    }

    .language-option {
        padding: 10px 12px;
        font-size: 13px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 42px;
    }

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

    .main-content {
        padding: 40px 0;
    }

    .hero-badge {
        font-size: 14px;
        padding: 6px 6px;
    }
}

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

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

    .hero-subtitle {
        font-size: 14px;
        line-height: 18px;
    }

    .header {
        padding: 12px 20px;
        margin: 16px 0 0 0;
    }

    .logo-text {
        font-family: 'Manrope', sans-serif;
        font-size: 16px;
    }


    .main-content {
        padding: 30px 0;
    }

    .connect-button {
        padding: 12px 24px;
        font-size: 14px;
        text-decoration: none;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* Second Section - Stats Section */
.stats-section {
    background: #F0F0F2;
    padding: 80px 0;
}

.stats-content {
    display: flex;
    gap: 124px;
    align-items: center;
}

.stats-cards {
    width: 560px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    background: #FFF;
    border-radius: 20px;
}

.stat-card {
    display: flex;
    padding: 22px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 24px;
    background: #FAFAFA;
}

.stats-container {
    display: flex;
    padding: 0 240px;
    align-items: center;
    gap: 100px;
    align-self: stretch;
}


.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #171717;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #171717;
    line-height: 1.5;
}

.stat-number {
    color: var(--171717, #171717);
    font-family: Manrope;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.finolink-way {
    max-width: 619px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 0 50px 0 0;
}


.section-title {
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #171717;
    line-height: 1.3;
}

.section-description {
    color: #383838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    /* 125% */
}

.section-description:last-child {
    margin-bottom: 0;
}

.partners-section {
    background: #F0F0F2;
    padding: 80px 0;
}

.partners-content {
    display: flex;
    padding: 0 230px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.e-commerce-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.partners-title {
    color: var(--171717, #171717);
    text-align: center;
    font-family: Manrope;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.e-commerce-title {
    margin-top: 2em;
}

.partners-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}


.partner-banks-container {
    display: flex;
    gap: 36px;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.bank-logo-wrapper {
    height: 80px;
    width: 184px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bank-logo-1 {
    width: 140px;
    height: 56px;
    background: url('assets/images/0f13d3db0e1a5b9c00130e7f984c7dd672b0fe63.png') 0px -42.519px / 100% 251.852% no-repeat;
}

.bank-logo-2 {
    width: 140px;
    height: 56px;
    background: url('assets/images/5d7d84640724d4838f6a512cd702337a4e832ee2.png') 0px -42.519px / 100% 251.852% no-repeat;
}

.bank-logo-3 {
    width: 140px;
    height: 56px;
    background: url('assets/images/a5162bcd2ff71bf37add4ed00e2e1a089bffeed8.png') 0px -42.519px / 100% 251.852% no-repeat;
}

.bank-logo-4 {
    width: 140px;
    height: 56px;
    background: url('assets/images/banks4.svg') 0px -42.519px / 100% 251.852% no-repeat;
}

.bank-logo-svg {
    width: 153px;
    height: 23px;
    object-fit: contain;
}

.mb--2 {
    margin-bottom: -2em;
}

.ecommerce-platforms-container {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 1240px;
    max-width: 100%;
    margin: 20px auto;
}

.platforms-row {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.platform-logo-wrapper-2-1 {
    display: flex;
    width: 184px;
    height: 80px;
    padding: 20px 23px 20px 24px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.platform-logo-wrapper-2-2 {
    display: flex;
    width: 184px;
    height: 80px;
    padding: 21px 46px 20px 46px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.platform-logo-wrapper-2-3 {
    display: flex;
    width: 184px;
    height: 80px;
    padding: 14px 42px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.platform-logo-wrapper-2-4 {
    display: flex;
    width: 184px;
    height: 80px;
    padding: 22px 20px 22px 19px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.platform-logo-21 {
    width: 137px;
    height: 40px;
    flex-shrink: 0;
    aspect-ratio: 137/40;
    background: url('assets/images/tt.png') 50% / cover no-repeat;
}

.platform-logo-22 {
    width: 92px;
    height: 39px;
    flex-shrink: 0;
    aspect-ratio: 92/39;
    background: url('assets/images/taobao.png') 50% / cover no-repeat;
}

.platform-logo-23 {
    width: 100px;
    height: 52px;
    flex-shrink: 0;
    aspect-ratio: 25/13;
    background: url('assets/images/jd.png') 0px -7.333px / 100% 128.205% no-repeat;
}

.platform-logo-24 {
    width: 145px;
    height: 36px;
    flex-shrink: 0;
    aspect-ratio: 145/36;
    background: url('assets/images/mt.png') 50% / cover no-repeat;
}

.platform-logo-wrapper-3-1 {
    display: flex;
    width: 184px;
    height: 80px;
    padding: 15px 51px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.platform-logo-31 {
    width: 82px;
    height: 50px;
    flex-shrink: 0;
    aspect-ratio: 41/25;
    background: url('assets/images/redbook.png') 50% / cover no-repeat;
}

.platform-logo-wrapper-3-2 {
    display: flex;
    width: 184px;
    height: 80px;
    padding: 12px 50px 11px 51px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.platform-logo-32 {
    width: 82px;
    height: 50px;
    flex-shrink: 0;
    aspect-ratio: 83/57;
    background: url('assets/images/vip.png') -0.436px -4.145px / 101.052% 123.636% no-repeat;
}

.platform-logo-wrapper-3-3 {
    width: 106px;
    height: 50px;
    flex-shrink: 0;
    aspect-ratio: 53/25;
}

.platform-logo-33 {
    width: 106px;
    height: 50px;
    flex-shrink: 0;
    aspect-ratio: 53/25;
    background: url('assets/images/kwai.png') 3.122px 6.034px / 94.109% 75.862% no-repeat;
}



.platforms-row:nth-child(2) {
    justify-content: center;
}

.platforms-row:nth-child(3) {
    justify-content: center;
}

.platform-logo-wrapper-1 {
    display: flex;
    width: 184px;
    height: 80px;
    padding: 12px 28px 12px 29px;
    justify-content: center;
    align-items: center;
}

.platform-logo-wrapper-2 {
    display: flex;
    width: 184px;
    height: 80px;
    padding: 22px 49px;
    justify-content: center;
    align-items: center;
}


.platform-logo-wrapper-3 {
    display: flex;
    width: 184px;
    height: 80px;
    padding: 21px 34px 20px 34px;
    justify-content: center;
    align-items: center;
}

.platform-logo-wrapper-4 {
    display: flex;
    width: 184px;
    height: 80px;
    padding: 22px 36px;
    justify-content: center;
    align-items: center;
}

.platform-logo-wrapper-5 {
    display: flex;
    width: 184px;
    height: 80px;
    padding: 26px 33px 25px 33px;
    justify-content: center;
    align-items: center;
}

.platform-logo-wrapper-6 {
    display: flex;
    width: 184px;
    padding: 19px 12px 21px 13px;
    justify-content: center;
    align-items: center;
}

.platform-logo {
    width: 127px;
    height: 56px;
    flex-shrink: 0;
    aspect-ratio: 127/56;
}

.platform-logo-1 {
    display: flex;
    width: 184px;
    height: 80px;
    padding: 12px 28px 12px 29px;
    justify-content: center;
    align-items: center;
    background: url('assets/images/amz.png') 50% / cover no-repeat;
}

.platform-logo-2 {
    width: 86px;
    height: 36px;
    flex-shrink: 0;
    aspect-ratio: 43/18;
    background: url('assets/images/ebay.png') 2.804px 1.654px / 93.478% 90.809% no-repeat;
}

.platform-logo-3 {
    width: 116px;
    height: 39px;
    flex-shrink: 0;
    aspect-ratio: 116/39;
    background: url('assets/images/shopee.png') 1.785px 1.631px / 96.923% 91.636% no-repeat;
}

.platform-logo-4 {
    width: 112px;
    height: 36px;
    flex-shrink: 0;
    aspect-ratio: 28/9;
    background: url('assets/images/tmg.png') 2.847px 0.671px / 94.915% 96.271% no-repeat;
}

.platform-logo-5 {
    width: 118px;
    height: 29px;
    flex-shrink: 0;
    aspect-ratio: 118/29;
    background: url('assets/images/jdg.png') 2px 2.94px / 96.61% 79.726% no-repeat;
}

.platform-logo-6 {
    width: 159px;
    height: 40px;
    flex-shrink: 0;
    aspect-ratio: 159/40;
    background: url('assets/images/pdd.png') 50% / cover no-repeat;
}


.partners-two-columns {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.partners-bottom-container {
    margin-top: 2em;
    margin-left: 15em;
    margin-right: 15em;
}

.partners-bottom-text {
    color: var(--171717, #171717);
    text-align: center;
    font-family: Manrope;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
}


.trade-hero-title {
    color: var(--171717, #171717);
    text-align: center;
    font-family: Manrope;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}


/* Responsive Design for Stats Section */
@media (max-width: 1024px) {
    .stats-content {
        gap: 60px;
    }

    .section-title {
        font-size: 28px;
    }

    .stat-number {
        font-size: 28px;
    }
}

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

    .mb--2 {
        margin-bottom: 0;
    }

    .partners-img {
        width: 900px;
    }

    .partners-content {
        padding: 0 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .partner-banks-container {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        max-width: 375px;
        padding: 0 16px;
        justify-content: center;
        align-items: center;
        gap: 12px;
        margin: 0 auto;
    }

    .bank-logo-wrapper {
        width: 167px;
        height: 73px;
        aspect-ratio: 167/73;
        flex: 0 0 calc(50% - 6px);
        max-width: 167px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bank-logo-1 {
        width: 167px;
        height: 73px;
        aspect-ratio: 167/73;
        background: url('assets/images/0f13d3db0e1a5b9c00130e7f984c7dd672b0fe63.png') 19.514px -27.848px / 76.087% 176.296% no-repeat;
    }

    .bank-logo-2 {
        width: 167px;
        height: 73px;
        aspect-ratio: 167/73;
        background: url('assets/images/5d7d84640724d4838f6a512cd702337a4e832ee2.png') 12.908px -34.472px / 84.541% 194.444% no-repeat;
    }

    .bank-logo-3 {
        width: 167px;
        height: 73px;
        aspect-ratio: 167/73;
        background: url('assets/images/bank3mobile.png') 50% / cover no-repeat;
    }

    .bank-logo-4 {
        width: 167px;
        height: 73px;
        aspect-ratio: 167/73;
        background: url('assets/images/a5162bcd2ff71bf37add4ed00e2e1a089bffeed8.png') 50% / cover no-repeat;
    }


    .ecommerce-platforms-container {
        width: 100%;
        padding: 15px 0;
        gap: 20px;
        max-width: 354px;
        margin: 0 auto;
    }

    .platforms-row {
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .platform-logo-wrapper-1,
    .platform-logo-wrapper-2,
    .platform-logo-wrapper-3,
    .platform-logo-wrapper-4,
    .platform-logo-wrapper-5,
    .platform-logo-wrapper-6,
    .platform-logo-wrapper-2-1,
    .platform-logo-wrapper-2-2,
    .platform-logo-wrapper-2-3,
    .platform-logo-wrapper-2-4,
    .platform-logo-wrapper-3-1,
    .platform-logo-wrapper-3-2,
    .platform-logo-wrapper-3-3 {
        width: 167px !important;
        height: 73px !important;
        aspect-ratio: 167/73 !important;
        flex: 0 0 167px !important;
        padding: 10px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .platform-logo,
    .platform-logo-1,
    .platform-logo-2,
    .platform-logo-3,
    .platform-logo-4,
    .platform-logo-5,
    .platform-logo-6,
    .platform-logo-21,
    .platform-logo-22,
    .platform-logo-23,
    .platform-logo-24,
    .platform-logo-31,
    .platform-logo-32,
    .platform-logo-33 {
        width: 100% !important;
        height: 100% !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
    }

    .partners-img-e-commerce {
        width: 650px;
    }

    .partners-img-other {
        width: 400px;
    }

    .stats-content {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .stats-container {
        padding: 0 4em;
    }

    .stats-cards {
        gap: 32px;
        width: 30em;
        padding: 10px 6px;
    }

    .partners-title {
        margin-top: 40px;
    }

    .partners-two-columns {
        flex-direction: column;
    }

    .partners-bottom-container {
        margin-left: 0;
        margin-right: 0;
    }

    .partners-column-2 {
        margin-top: 2em;
    }

    .section-title {
        font-size: 24px;
        text-align: center;
    }

    .finolink-way {
        max-width: 600px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding-right: 0;
    }

    .stat-number {
        font-size: 24px;
    }

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

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

    .partners-section {
        padding: 10px 0;
    }

    .partners-bottom-container {
        margin-left: 0;
        margin-right: 0;
    }

    .stats-cards {
        gap: 24px;
        width: 100%;
        padding: 20px;
    }

    .stats-container {
        padding: 0 4em;
    }

    .stat-card {
        display: flex;
        padding: 16px;
        justify-content: space-between;
        align-items: center;
        align-self: stretch;
        border-radius: 16px;
        background: #FAFAFA;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
    }

    .section-title {
        font-size: 20px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 14px;
    }
}

/* Third Section - Solutions */
.solutions-section {
    background: #FFFFFF;
    padding: 100px 0;
    background: #F0F0F2;
}

.solutions-title {
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #171717;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 60px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    align-self: stretch;
}

.solution-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    gap: 10px;
    border-radius: 16px;
    background: #FFF;
}

.solution-image {
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    background: #F5F5F5;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-title {
    color: var(--171717, #171717);
    font-family: Manrope;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    /* 133.333% */
}

.solution-description {
    color: var(--595959, #595959);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding: 0 10px;
    /* 125% */
}

/* Responsive Design for Solutions Section */
@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .platforms-section {
        padding: 80px 30px;
    }

    .container {
        padding: 0 16px;
        gap: 28px;
        align-self: stretch;
    }

    .solution-image {
        height: 250px;
        width: 440px;
    }

    .solutions-title {
        font-size: 36px;
        margin-bottom: 48px;
    }
}

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

    .partners-section {
        padding: 20px 0;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .solutions-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .solution-image {
        height: auto;
        width: auto;
    }

    .platform-logo-1 {
        background-size: 86% !important;
    }

    .platform-logo-2 {
        background-size: 50% !important;
    }

    .platform-logo-3 {
        background-size: 80% !important;
    }

    .platform-logo-4 {
        background-size: 70% !important;
    }

    .platform-logo-5 {
        background-size: 80% !important;
    }

    .platform-logo-6 {
        background-size: 105% !important;
    }

    .platform-logo-21 {
        background-size: 96% !important;
    }

    .platform-logo-22 {
        background-size: 72% !important;
    }

    .platform-logo-23 {
        background-size: 80% !important;
    }

    .platform-logo-24 {
        background-size: 100% !important;
    }

    .platform-logo-31 {
        background-size: 72% !important;
    }

    .platform-logo-32 {
        background-size: 62% !important;
    }

    .platform-logo-33 {
        background-size: 70% !important;
    }
}

@media (max-width: 480px) {
    .solutions-section {
        display: flex;
        padding: 40px 16px;
        flex-direction: column;
        align-items: center;
        gap: 28px;
        align-self: stretch;
    }

    .solution-card {
        align-items: start
    }

    .solutions-section .container {
        padding: 0;
    }

    .solutions-title {
        font-size: 28px;
        text-align: left;
        margin-bottom: 0;
    }

    .solution-image {
        height: auto;
        width: auto;
    }

    .solution-title {
        font-size: 22px;
    }

    .solution-description {
        color: var(--595959, #595959);
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        /* 125% */
        padding: 0;
    }
}

/* Fourth Section - Features */
.features-section {
    padding: 80px 0;
    background: #F0F0F2;
}

.feature-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.features-title {
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #171717;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 60px;
}

.fourth-section-title {
    color: var(--171717, #171717);
    font-family: Manrope;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    /* 133.333% */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    height: 151px;
    justify-content: space-around;
}


.feature-icon {
    width: 40px;
    height: 40px;
    background: #F0F0F2;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3038d3;
    flex-shrink: 0;
}

.feature-title {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #171717;
    line-height: 1.4;
    margin: 0;
    height: 40px;
}

.feature-description {
    color: var(--595959, #595959);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.platforms-img {
    border-radius: 40px;
    background: #FFF;
    width: 633px;
    height: 435px;
    object-fit: cover;
}


/* Responsive Design for Features Section */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .features-title {
        font-size: 28px;
        margin-bottom: 48px;
    }
}

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

    .platforms-img {
        width: 25em;
    }

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

    .feature-card {
        height: auto;
    }

    .features-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
    }
}

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

    .platforms-img {
        width: 21em;
    }

    .features-title {
        font-size: 28px;
        text-align: left;
        margin-bottom: 0;
    }

    .fourth-section-title {
        font-size: 22px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-description {
        font-size: 16px;
    }
}

/* Fifth Section - Connected Platforms */
.platforms-section {
    background: #F0F0F2;
    padding: 80px 0;
}

.platforms-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10.3em;
    height: 20.6em;
    align-self: stretch;
}

.platforms-text {
    flex: 1;
    max-width: 500px;
}

.platforms-title {
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #171717;
    line-height: 1.3;
    margin-bottom: 20px;
}

.platforms-description {
    color: #383838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    /* 125% */
}

.platforms-visual {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.platform-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

.platform-card.credit-app {
    min-width: 200px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.platform-icon {
    width: 32px;
    height: 32px;
    background: #3038d3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #171717;
}

.application-amount {
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #171717;
    margin-bottom: 4px;
}

.application-status {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #6B7280;
}

.platform-connections {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 8px;
}

.connection-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #3038d3 0%, #e313d2 100%);
}

.connection-dots {
    display: flex;
    gap: 4px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D1D5DB;
}

.dot.active {
    background: #3038d3;
}

.platform-card.data-viz {
    width: 160px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.data-chart {
    position: relative;
    width: 100%;
    height: 60px;
}

.chart-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3038d3 0%, #e313d2 100%);
    border-radius: 1px;
}

.chart-points {
    position: relative;
    width: 100%;
    height: 100%;
}

.point {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.point.red {
    background: #DC2626;
    left: 20%;
}

.point.blue {
    background: #2563EB;
    right: 20%;
}

/* Responsive Design for Platforms Section */
@media (max-width: 1024px) {
    .platforms-content {
        gap: 60px;
    }

    .platforms-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .platforms-section {
        padding: 100px 0 150px 0;
    }

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

    .platforms-content {
        flex-direction: column;
        gap: 48px;
        text-align: center;
    }

    .platforms-title {
        font-size: 24px;
    }

    .platforms-visual {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .platforms-section {
        padding: 100px 0 150px 0;
    }

    .platforms-title {
        font-size: 28px;
        text-align: left;
    }

    .platforms-description {
        font-size: 14px;
        text-align: left;
        line-height: 20px;
    }

    .platforms-visual {
        flex-direction: column;
        gap: 24px;
        height: 235.711px;
        align-self: stretch;
        aspect-ratio: 211/145;
        border-radius: 0%;
    }

    .platforms-img {
        content: url('assets/images/platform_imag_mobile.png');
        width: 100%;
        height: auto;
    }

    .platforms-content {
        gap: 40px
    }

    .platform-connections {
        position: static;
        transform: none;
        flex-direction: column;
    }

    .connection-line {
        width: 2px;
        height: 30px;
    }
}

/* Sixth Section - Global Trade Hero */
.trade-hero-section {
    background: #F0F0F2;
}

.trade-hero-content {
    margin-top: 5em;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.trade-hero-visual {
    height: 400px;
    align-self: stretch;
    aspect-ratio: 31/10;
    border-radius: 40px;
    background: url('assets/images/port.png') 50% / cover no-repeat;
}


/* Responsive Design for Trade Hero Section */
@media (max-width: 1024px) {
    .trade-hero-title {
        font-size: 36px;
        max-width: 800px;
    }

    .trade-hero-content {
        gap: 48px;
    }
}

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

    .trade-hero-visual {
        height: 320px;
        border-radius: 24px;
        background: url('assets/images/e-commerce_img.png') 50% / cover no-repeat;
    }

    .trade-hero-image {
        height: 320px;
    }

    .trade-hero-title {
        font-size: 28px;
        max-width: 600px;
    }

    .trade-hero-content {
        gap: 40px;
    }

    .trade-hero-visual {
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .trade-hero-section {
        padding: 20px 0;
    }

    .trade-hero-title {
        text-align: left;
    }

    .trade-hero-content {
        gap: 32px;
    }

    .trade-hero-visual {
        border-radius: 12px;
    }
}

/* Seventh Section - How FINOLINK Works */
.how-works-section {
    background: #F0F0F2;
    padding: 100px 0;
}

.how-works-title {
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #171717;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 60px;
}

.how-works-grid {
    display: grid;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    grid-template-columns: repeat(4, 1fr);
}

.work-step {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    background: #FFF;
    display: flex;
    align-items: start;
    gap: 10px;
    padding: 10px;
    height: 243px;
    justify-content: space-around;
}

.step-number {
    color: #3038D3;
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    text-align: left;
    padding-left: 10px;
    /* 133.333% */
}

.step-title {
    color: var(--171717, #171717);
    font-family: Manrope;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    /* 133.333% */
}

.step-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #6B7280;
    line-height: 1.5;
    margin: 0;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.arrow-icon {
    width: 36px;
    height: 36px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.arrow-icon:hover {
    opacity: 1;
}

/* Eighth Section - CTA */
.cta-section {
    background: linear-gradient(135deg, #020617 0%, #1e40af 100%);
    padding: 100px 0;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Manrope', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
}

.cta-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

.cta-button-large {
    font-family: 'Manrope', sans-serif;
    background: #FFFFFF;
    color: #020617;
    border: none;
    padding: 20px 40px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 16px;
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

/* Responsive Design for How Works and CTA Sections */
@media (max-width: 1024px) {
    .how-works-grid {
        grid-template-columns: 1fr auto 1fr;
        gap: 32px;
    }

    .work-step:nth-child(n+4) {
        grid-column: 1 / -1;
    }

    .step-arrow:nth-child(n+4) {
        display: none;
    }

    .how-works-title {
        font-size: 28px;
        margin-bottom: 48px;

    }

    .cta-title {
        font-size: 36px;
    }
}

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

    .work-step {
        height: auto;
    }

    .cta-section {
        padding: 80px 0;
    }

    .how-works-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .step-arrow {
        display: none;
    }

    .how-works-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-description {
        font-size: 16px;
    }
}

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

    .cta-section {
        padding: 60px 0;
    }

    .how-works-title {
        font-size: 28px;
        text-align: left;
        margin-bottom: 32px;
    }

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

    .how-works-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }


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

    .cta-title {
        font-size: 24px;
    }

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

    .cta-button-large {
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* Footer CTA Section */
.footer-cta-section {
    background: linear-gradient(158deg, #010214 -6.72%, #0048FF 111.54%);
    padding: 80px 0;
    margin: -140px 17.74% 0 17.74%;
    border-radius: 24px;
}

.footer-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.footer-cta-title {
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: white;
    text-align: center;
    line-height: 124%;
    /* 59.52px */
}

.footer-cta-description {
    color: rgba(255, 255, 255, 0.80);
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.footer-cta-button {
    font-family: 'Manrope', sans-serif;
    background: #FFFFFF;
    color: #020617;
    border: none;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 16px;
    text-decoration: none;
    display: inline-block;
}

.footer-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    padding: 60px 0 40px 0;
}

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.footer-logo-section {
    flex: 0 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-icon {
    height: 38px;
}

.footer-logo-text {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #171717;
    letter-spacing: 0.5px;
}

.footer-contact {
    display: flex;
    flex-direction: row;
    gap: 50px;
    padding: 20px;
    border-radius: 12px;
    animation: contactGlow 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.contact-label {
    color: #171717;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.contact-value {
    color: #595959;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

.contact-value:hover {
    color: #171717;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-licenses {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: flex-start;
}

.license1-logo {
    height: 56px;
    width: 16%;
    opacity: 0.9;
    aspect-ratio: 26/7;
    transition: opacity 0.3s ease;
}

.license2-logo {
    height: 56px;
    width: 8%;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.license3-logo {
    height: 56px;
    width: 16%;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.license4-logo {
    height: 56px;
    width: 8%;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.license1-logo:hover {
    opacity: 1;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    flex: 1;
}

.legal-text {
    color: var(--595959, #595959);
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 50%;
    color: #6B7280;
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    gap: 10px;
}

.social-link:hover {
    background: #3038d3;
    color: white;
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
    .footer-main {
        gap: 60px;
    }

    .stats-container {
        padding: 0 20px;
    }

    .footer-cta-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .footer-cta-section {
        margin: -140px 5% 0 5%;
    }

    .stats-container {
        padding: 0 16px;
    }

    .footer {
        padding: 40px 0 30px 0;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-licenses {
        /* 自动换行 */
        flex-wrap: wrap;
        justify-content: start;
        gap: 10px;
    }

    .license1-logo {
        width: 53%;
    }

    .license2-logo {
        width: 35%;
    }

    .license3-logo {
        width: 53%;
    }

    .license4-logo {
        width: 35%;
    }

    .footer-cta-title {
        font-size: 28px;
    }

    .legal-text {
        text-align: left;
    }

    .footer-cta-description {
        padding: 0 5px;
        font-size: 13px;
    }

    .footer-bottom-row {
        flex-direction: column-reverse;
        gap: 10px;
    }

}

@media (max-width: 480px) {
    .footer-cta-section {
        padding: 40px 0;
    }

    .footer-cta-description {
        color: rgba(255, 255, 255, 0.80);
        text-align: center;
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        width: 311px;
    }

    .footer {
        padding: 60px 0 20px 0;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-cta-title {
        margin-top: 96px;
        color: #FFF;
        text-align: center;
        font-family: Manrope;
        font-size: 28px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        width: 273px;
        /* 33.6px */
    }

    .footer-cta-button {
        padding: 14px 28px;
        font-size: 14px;
        margin-bottom: 40px;
    }

    .footer-license-logos {
        flex-wrap: wrap;
        gap: 12px;
    }

    .footer-social {
        margin-top: 10px;
        gap: 24px;
    }

    .footer-bottom-row {
        align-items: start;
    }
}