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

:root {
    --primary-color: #1E50FF;
    --background: #FFFFFF;
    --text-color: #333333;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background);
    font-size: 16px;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Header */
.header {
    padding: 20px 0;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #0A0D12;
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0;
    max-width: 1200px;
}

.logo {
    height: 24px;
    width: auto;
    max-width: 237px;
    object-fit: contain;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.nav-link {
    color: #717680;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 16px;
    line-height: 1.25em;
}

.nav-link:hover {
    color: #0A0D12;
}

.language-selector {
    display: flex;
    align-items: center;
    position: relative;
}

.lang-dropdown {
    position: relative;
}

.lang-button {
    width: 128px;
    padding: 10px 12px;
    border: 1px solid #E9EAEB;
    border-radius: 8px;
    background-color: #FAFAFA;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #0A0D12;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-button:hover {
    background-color: #F5F5F5;
}

.lang-dropdown.active .lang-button {
    background-color: #FFFFFF;
    border: 2px solid #034694;
}

.lang-flag {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
}

.lang-code {
    flex: 1;
    text-align: left;
}

.lang-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #0A0D12;
    transition: transform 0.2s ease;
}

.lang-dropdown.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 128px;
    background-color: #FFFFFF;
    border: 1px solid #E9EAEB;
    border-radius: 10px;
    box-shadow: 0px 16px 32px -12px rgba(88, 92, 95, 0.1);
    padding: 4px;
    display: none;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
}

.lang-dropdown-menu.active {
    display: flex;
}

.lang-option {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 8px;
    background-color: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #0A0D12;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-align: left;
}

.lang-option:hover {
    background-color: #F5F5F5;
}

.lang-option-flag {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-option-code {
    flex: 1;
    text-align: left;
}

.lang-check {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #0A0D12;
    display: none;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
    background-image: url('img/hero-bg-new-62bcec.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
    overflow: hidden;
    height: 780px;
    width: 100%;
    max-width: 1200px;
    padding: 0;
}

.hero-content {
    position: absolute;
    top: 86px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1006px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-title {
    font-size: 40px;
    font-weight: 800;
    margin: 0;
    animation: fadeInUp 1s ease;
    color: white;
    font-family: 'Inter', sans-serif;
    line-height: 1.4em;
    text-align: center;
    width: 100%;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 500;
    opacity: 0.8;
    animation: fadeInUp 1s ease 0.2s both;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    line-height: 1.1em;
    text-align: center;
    margin: 0;
    width: 100%;
    max-width: 804px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Four Columns Section */
.four-columns {
    padding: 120px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0 80px;
    margin-bottom: 56px;
}

.section-description-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    margin: 0;
    color: #0A0D12;
    line-height: 1.1176470588235294em;
    font-family: 'Inter', sans-serif;
}

.section-description {
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    color: #717680;
    max-width: 680px;
    line-height: 1.2em;
    font-family: 'Inter', sans-serif;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    color: #717680;
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.2em;
    max-width: 680px;
}

.section-subsubtitle {
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    color: #717680;
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.2em;
    max-width: 732px;
}

.columns-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Services Section */
#services {
    background-color: #FAFAFA;
    width: 100%;
    padding: 120px 0;
}

.services-wrapper {
    display: flex;
    flex-direction: column;
    gap: 56px;
    max-width: 1200px;
    margin: 0 auto;
}

#services .services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    row-gap: 16px;
    column-gap: 16px;
    align-items: stretch;
}

#services .services-grid .column:nth-child(1),
#services .services-grid .column:nth-child(2),
#services .services-grid .column:nth-child(3) {
    grid-column: span 2;
}

#services .services-grid .column:nth-child(4),
#services .services-grid .column:nth-child(5) {
    grid-column: span 3;
}

#services .column {
    background: #FFFFFF;
    border: 1px solid #E9EAEB;
    padding: 24px;
    gap: 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

#services .column-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#services .column-icon img {
    width: 32px;
    height: 32px;
}

#services .column-title {
    font-size: 18px;
    font-weight: 700;
    color: #050505;
    margin-bottom: 0;
}

#services .column-text {
    font-size: 16px;
    font-weight: 400;
    color: #717680;
    line-height: 1.25em;
    flex-grow: 1;
}

#services .column-text ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

#services .column-text li {
    line-height: 1.5em;
    margin-bottom: 0;
}

/* Сетка для секции portfolio: 3 колонки */
#portfolio .columns-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

#portfolio .column {
    background: #FAFAFA;
    border: 1px solid #E9EAEB;
    padding: 24px;
    gap: 16px;
}

#portfolio .column-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#portfolio .column-icon img {
    width: 32px;
    height: 32px;
}

#portfolio .column-title {
    font-size: 20px;
    font-weight: 700;
    color: #050505;
    margin-bottom: 0;
}

#portfolio .column-text {
    font-size: 16px;
    font-weight: 400;
    color: #717680;
    line-height: 1.25em;
}

/* VexPay Section */
.vexpay-section {
    padding: 136px 0;
    background: linear-gradient(180deg, rgba(3, 70, 148, 1) 0%, rgba(0, 47, 101, 1) 100%);
    width: 100%;
}

.vexpay-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.vexpay-content {
    display: flex;
    gap: 64px;
    align-items: stretch;
}

.vexpay-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.vexpay-title {
    font-size: 48px;
    font-weight: 800;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    line-height: 1.0833333333333333em;
    margin: 0;
    text-align: left;
}

.vexpay-divider {
    width: 160px;
    height: 4px;
    background-color: #2970FF;
    margin: 0;
}

.vexpay-description {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vexpay-main-text {
    font-size: 22px;
    font-weight: 500;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    line-height: 1.1818181818181819em;
    margin: 0;
    text-align: left;
}

.vexpay-secondary-text {
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
    opacity: 0.8;
    font-family: 'Inter', sans-serif;
    line-height: 1.2em;
    margin: 0;
    text-align: left;
}

.btn-learn-more {
    width: 240px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F5F5F5;
    color: #0A0D12;
    text-decoration: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    margin: 0;
    align-self: flex-start;
}

.btn-learn-more:hover {
    background-color: #E5E5E5;
    transform: translateY(-2px);
}

.vexpay-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vexpay-image img {
    width: 100%;
    height: auto;
    max-width: 520px;
}

/* Services Combined Section */
.services-section {
    padding: 128px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.services-content {
    display: flex;
    gap: 72px;
    align-items: center;
}

.services-image img {
    width: 520px;
    height: 664px;
    object-fit: cover;
    border-radius: 32px;
}

.services-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-title {
    font-size: 34px;
    font-weight: 800;
    color: #034694;
    font-family: 'Inter', sans-serif;
    line-height: 1.1176470588235294em;
    margin: 0 0 0 0;
}

.service-description {
    font-size: 24px;
    font-weight: 400;
    color: #717680;
    font-family: 'Inter', sans-serif;
    line-height: 1.1666666666666667em;
    margin: 0;
}

/* About Us Section */
#fouders {
    background-color: #FFFFFF;
}

.about-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}

.about-description {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 710px;
    text-align: center;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 80px;
}

.team-member-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.team-image-large {
    width: 390px;
    height: 464px;
    object-fit: cover;
    border-radius: 16px;
    background-color: #F2F2F4;
}

.team-grid-small {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 0;
}

.about-link {
    color: #034694;
    text-decoration: none;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2em;
    text-align: center;
    vertical-align: middle;
}

.about-link:hover {
    color: #0A0D12;
}

.team-member-small {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.team-image-small {
    width: 288px;
    height: 368px;
    object-fit: cover;
    border-radius: 16px;
    background-color: #F2F2F4;
}

.team-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    width: 100%;
}

.team-name {
    font-size: 20px;
    font-weight: 700;
    color: #050505;
    font-family: 'Inter', sans-serif;
    line-height: 1.1em;
    margin: 0;
}

.team-role {
    font-size: 14px;
    font-weight: 500;
    color: #717680;
    font-family: 'Inter', sans-serif;
    line-height: 1.1428571428571428em;
    margin: 0;
}



/* Solutions Section - One-stop Service */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
}

.solution-card {
    background: #050505;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
}

/* Первая строка - левая карточка */
.solution-card:nth-child(1) {
    padding: 16px 32px 16px 8px;
    border-radius: 16px 0px 0px 0px;
}

/* Первая строка - правая карточка */
.solution-card:nth-child(2) {
    flex-direction: row-reverse;
    padding: 16px 8px 16px 32px;
    border-radius: 0px 16px 0px 0px;
}

/* Вторая строка - левая карточка */
.solution-card:nth-child(3) {
    padding: 16px 32px 16px 8px;
    border-radius: 0px 0px 0px 16px;
}

/* Вторая строка - правая карточка */
.solution-card:nth-child(4) {
    flex-direction: row-reverse;
    padding: 16px 8px 16px 32px;
    border-radius: 0px 0px 16px 0px;
}

.solution-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
}

.solution-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.solution-title {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    line-height: 1.1666666666666667em;
    margin: 0;
}

.solution-text {
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    opacity: 0.8;
    font-family: 'Inter', sans-serif;
    line-height: 1.2222222222222223em;
    margin: 0;
}

/* Footer */
.footer {
    padding: 80px 0;
    background-color: #0A0D12;
    width: 100%;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 83px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex: 1;
}

.footer-logo {
    height: 24px;
    width: 237px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    line-height: 1.1em;
    margin: 0;
}

.footer-link {
    font-size: 14px;
    font-weight: 500;
    color: #A4A7AE;
    font-family: 'Inter', sans-serif;
    line-height: 1.1428571428571428em;
    margin: 0;
    text-decoration: none;
}

.footer-link:hover {
    color: #FFFFFF;
}

.footer-license-link,
.footer-authority-link {
    color: #2970FF;
    cursor: pointer;
    transition: var(--transition);
}

.footer-license-link:hover,
.footer-authority-link:hover {
    color: #4A8FFF;
    text-decoration: underline;
}

.footer-nav {
    display: flex;
    gap: 48px;
    align-items: center;
}

.footer-nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #A4A7AE;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    line-height: 1.1428571428571428em;
    transition: var(--transition);
}

.footer-nav-link:hover {
    color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header .container,
    .hero,
    .four-columns,
    .vexpay-section,
    .services-section,
    .footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .container {
        padding: 0 20px;
        max-width: calc(100% - 40px);
    }
    
    .hero-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 86px auto 0;
    }
    
    .columns-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-card {
        flex-direction: column !important;
        padding: 16px !important;
        border-radius: 16px !important;
    }
    
    .vexpay-content,
    .services-content {
        flex-direction: column;
    }
    
    .team-grid,
    .team-grid-small {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 20px;
        max-width: calc(100% - 40px);
    }
    
    .header-right {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        justify-content: center;
        gap: 1rem;
        width: 100%;
    }
    
    .footer-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-nav {
        justify-content: center;
        width: 100%;
    }
    
    .hero {
        padding: 0 20px;
    }
    
    .hero .container {
        height: auto;
        min-height: 500px;
        padding: 40px 20px;
    }
    
    .hero-content {
        margin: 0 auto 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .four-columns,
    .vexpay-section,
    .services-section,
    .footer {
        padding: 60px 20px;
    }
    
    .columns-grid {
        grid-template-columns: 1fr;
    }
    
    #services .services-grid {
        grid-template-columns: 1fr;
    }
    
    #services .services-grid .column:nth-child(1),
    #services .services-grid .column:nth-child(2),
    #services .services-grid .column:nth-child(3),
    #services .services-grid .column:nth-child(4),
    #services .services-grid .column:nth-child(5) {
        grid-column: span 1;
    }
    
    #portfolio .columns-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-image {
        width: 100%;
        height: auto;
        max-height: 200px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .vexpay-title {
        font-size: 32px;
    }
    
    .service-title {
        font-size: 24px;
    }
    
    .team-image-large {
        width: 100%;
        max-width: 390px;
        height: auto;
    }
    
    .team-image-small {
        width: 100%;
        max-width: 288px;
        height: auto;
    }
    
    #services .column,
    #portfolio .column {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 20px;
    }
    
    .lang-button {
        width: 100px;
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .lang-dropdown-menu {
        width: 100px;
    }
    
    .lang-flag,
    .lang-option-flag {
        font-size: 18px;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero {
        padding: 2rem 0;
        border-radius: 15px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .four-columns {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 24px;
    }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #0A0D12;
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #FFFFFF;
    z-index: 10000;
    display: none;
    flex-direction: column;
    overflow-y: auto;
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
}

.mobile-menu-logo {
    height: 24px;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #0A0D12;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
    display: block;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    flex: 1;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    padding: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #777E90;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.mobile-menu-link:first-child {
    background-color: #F5F5F5;
    color: #034694;
}

.mobile-menu-link:hover {
    background-color: #F5F5F5;
}

.mobile-menu-footer {
    padding: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

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

.mobile-language-selector .lang-dropdown {
    width: 100%;
}

.mobile-language-selector .lang-button {
    width: 100%;
}

.mobile-language-selector .lang-dropdown-menu {
    width: 100%;
    top: auto;
    bottom: calc(100% + 4px);
}

/* Carousel Styles */
.solutions-carousel-mobile,
.team-carousel-mobile {
    display: none;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
    gap: 4px;
    align-items: center;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Solutions carousel specific - show one card at a time */
.solutions-carousel-mobile .carousel-slide {
    min-width: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    gap: 16px;
}

.carousel-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #0A0D12;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.carousel-btn:hover {
    opacity: 0.7;
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-dots {
    display: flex;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #E9EAEB;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.2s ease;
}

.carousel-dot.active {
    background-color: #034694;
}

/* Mobile Solution Card */
.solution-card-mobile {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    padding: 24px;
    background-color: #050505;
    border-radius: 16px;
    width: 272px;
    max-width: 272px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.solution-image-mobile {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    display: block;
    align-self: flex-start;
}

.solution-content-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    flex: 1;
}

.solution-title-mobile {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2222222222222223em;
    color: #FFFFFF;
    text-align: left;
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

.solution-text-mobile {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2857142857142858em;
    color: #FFFFFF;
    opacity: 0.800000011920929;
    text-align: left;
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

/* Mobile Team Member */
.team-member-small-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.team-image-small-mobile {
    width: 232px;
    height: 296px;
    object-fit: cover;
    border-radius: 16px;
}

.team-info-mobile {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.team-name-mobile {
    font-family: 'Inter', sans-serif;
        font-size: 20px;
    font-weight: 700;
    line-height: 1.1em;
    color: #050505;
    margin: 0;
}

.team-role-mobile {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.14em;
    color: #777E90;
    margin: 0;
}

/* Mobile Responsive Styles (375px - 770px) */
@media (max-width: 770px) {
    /* Hide desktop navigation and language selector */
    .nav,
    .language-selector:not(.mobile-language-selector) {
        display: none;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Header adjustments */
    .header {
        padding: 20px 0;
    }
    
    .header .container {
        padding: 0 16px;
        flex-flow: row;
        justify-content: space-between;
        max-width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .header-right {
        gap: 16px;
        flex-wrap: nowrap;
    }
    
    .logo {
        flex-shrink: 0;
    }
    
    .mobile-menu-toggle {
        flex-shrink: 0;
    }
    
    /* Hide desktop solutions grid, show carousel */
    .solutions-grid {
        display: none;
    }
    
    .solutions-carousel-mobile {
        display: block;
        margin-top: 48px;
        width: 100%;
    }
    
    .solutions-carousel-mobile .carousel-container {
        width: 100%;
        overflow: hidden;
    }
    
    .solutions-carousel-mobile .carousel-track {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 0;
    }
    
    .solutions-carousel-mobile .carousel-slide {
        min-width: 100%;
        width: 100%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        box-sizing: border-box;
    }
    
    .solutions-carousel-mobile .solution-card-mobile {
        margin: 0 auto;
    }
    
    /* Hide desktop team grid small, show carousel */
    .team-grid-small {
        display: none;
    }
    
    .team-carousel-mobile {
        display: block;
        margin-top: 40px;
    }
    
    /* Hero section mobile */
    .hero {
        padding: 0;
        border-radius: 24px;
    }
    
    .hero .container {
        padding: 0;
        height: 542px;
        background-position: -232px 0;
        background-size: 922px 648px;
        max-width: calc(100% - 32px);
        margin: 0 auto;
        box-sizing: border-box;
        border-radius: 24px;
        overflow: hidden;
    }
    
    .hero-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        padding: 44px 24px 163px;
        gap: 24px;
        box-sizing: border-box;
    }
    
    .hero-title {
        font-size: 24px;
        font-weight: 800;
        line-height: 1.33em;
        text-align: center;
        width: 295px;
        margin: 0 auto;
    }
    
    .hero-subtitle {
        font-size: 13px;
        font-weight: 500;
        line-height: 1.23em;
        text-align: center;
        color: rgba(255, 255, 255, 0.8);
        width: 295px;
        margin: 0 auto;
    }
    
    /* Solutions section mobile */
    #solutions {
        padding: 80px 0;
    }
    
    #solutions .container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 16px;
        box-sizing: border-box;
    }
    
    #solutions .section-header {
        gap: 24px;
        margin-bottom: 48px;
        padding: 0;
    }
    
    #solutions .section-title {
        font-size: 24px;
        line-height: 1.17em;
        text-align: center;
    }
    
    #solutions .section-description {
        font-size: 16px;
        line-height: 1.25em;
        text-align: center;
        color: #717680;
    }
    
    /* Services section mobile */
    #services {
        padding: 80px 0;
        background-color: #FAFAFA;
    }
    
    .services-wrapper {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 16px;
        box-sizing: border-box;
        gap: 24px;
    }
    
    #services .section-header {
        gap: 40px;
        margin-bottom: 24px;
        padding: 0;
    }
    
    #services .section-title {
        font-size: 24px;
        line-height: 1.17em;
        text-align: center;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    #services .section-subtitle,
    #services .section-subsubtitle {
        font-size: 16px;
        line-height: 1.25em;
        text-align: center;
        color: #717680;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    #services .services-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }
    
    #services .column {
        padding: 24px;
        border: 1px solid #E9EAEB;
        border-radius: 16px;
        background-color: #FFFFFF;
        width: 100%;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    #services .column-title,
    #services .column-text {
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    #services .column-text ul {
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Portfolio section mobile */
    #portfolio {
        padding: 80px 0;
    }
    
    #portfolio .container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 16px;
        box-sizing: border-box;
    }
    
    #portfolio .section-header {
        gap: 40px;
        margin-bottom: 16px;
        padding: 0;
    }
    
    #portfolio .section-title {
        font-size: 24px;
        line-height: 1.17em;
        text-align: center;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    #portfolio .section-subtitle,
    #portfolio .section-subsubtitle {
        font-size: 16px;
        line-height: 1.25em;
        text-align: center;
        color: #717680;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    #portfolio .columns-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }
    
    #portfolio .column {
        padding: 24px;
        border: 1px solid #E9EAEB;
        border-radius: 16px;
        background-color: #FAFAFA;
        height: auto;
        min-height: 174px;
        width: 100%;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    #portfolio .column-title,
    #portfolio .column-text {
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* VexPay section mobile */
    .vexpay-section {
        padding: 48px 16px 0;
    }
    
    .vexpay-wrapper {
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }
    
    .vexpay-content {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .vexpay-text {
        gap: 32px;
        margin-bottom: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .vexpay-title {
        font-size: 24px;
        font-weight: 600;
        line-height: 1.17em;
        text-align: left;
        color: #FFFFFF;
        margin: 0;
    }
    
    .vexpay-divider {
        width: 80px;
        height: 2px;
        background-color: #2970FF;
        margin: 0;
    }
    
    .vexpay-description {
        display: flex;
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }
    
    .vexpay-main-text {
        font-size: 16px;
        font-weight: 500;
        line-height: 1.25em;
        text-align: left;
        color: #FFFFFF;
        margin: 0;
    }
    
    .vexpay-secondary-text {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.29em;
        text-align: left;
        color: #FFFFFF;
        opacity: 0.800000011920929;
        margin: 0;
    }
    
    .btn-learn-more {
        width: 100%;
        align-self: stretch;
        padding: 16px 24px;
        border-radius: 12px;
        background-color: #F5F5F5;
        color: #0A0D12;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.25em;
        height: auto;
    }
    
    .vexpay-image {
        width: 100vw;
        max-width: 100vw;
        height: 550px;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        margin-top: 40px;
        overflow: hidden;
    }
    
    .vexpay-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.5);
    }
    
    /* Services combined mobile */
    .services-section {
        padding: 80px 0;
    }
    
    .services-section .container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 16px;
        box-sizing: border-box;
    }
    
    .services-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .services-image {
        width: 100%;
        height: 455px;
        order: 2;
    }
    
    .services-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 24px;
    }
    
    .services-text {
        gap: 40px;
        order: 1;
    }
    
    .service-item {
        gap: 24px;
    }
    
    .service-title {
        font-size: 24px;
        line-height: 1.17em;
    }
    
    .service-description {
        font-size: 16px;
        line-height: 1.25em;
        color: #717680;
    }
    
    /* About us section mobile */
    #fouders {
        padding: 80px 0;
    }
    
    #fouders .container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 16px;
        box-sizing: border-box;
    }
    
    .about-header {
        gap: 40px;
        margin-bottom: 40px;
    }
    
    #fouders .section-title {
        font-size: 24px;
        line-height: 1.17em;
        text-align: center;
        width: 343px;
        margin: 0 auto;
    }
    
    #fouders .section-subtitle {
        font-size: 16px;
        line-height: 1.25em;
        text-align: center;
        color: #717680;
        width: 343px;
        margin: 0 auto;
    }
    
    .about-link {
        font-size: 16px;
    }
    
    .team-grid {
        flex-direction: column;
        gap: 48px;
        margin-bottom: 40px;
    }
    
    .team-member-large {
        width: 343px;
        margin: 0 auto;
    }
    
    .team-image-large {
        width: 241.17px;
        height: 326.25px;
    }
    
    /* Footer mobile */
    .footer {
        padding: 80px 0;
    }
    
    .footer-wrapper {
        flex-direction: column;
        gap: 32px;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 16px;
        box-sizing: border-box;
    }
    
    .footer-left {
        gap: 24px;
    }
    
    .footer-logo {
        width: 237px;
        height: 24px;
    }
    
    .footer-nav {
        flex-direction: row;
        gap: 48px;
        width: 100%;
        justify-content: flex-start;
    }
}

