
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.hidden {
    display: none;
}

@media (max-width: 768px) {
    .desktop {
        display: none;
    }
}
@media (min-width: 768px) {
    .mobile {
        display: none;
    }
}


body {
    font-family: 'Lato', sans-serif;
    background: #fff;
    color: #000;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}


.header-section {
    background: #fff;
    border-bottom: 1px solid #F2F2F6;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    right: 0;
}
.header-section-container {
    max-width: 1640px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    height: 80px;
    position: relative;
    justify-content: space-between;
}
.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.header-logo img {
    height: 24px;
    width: auto;
    margin-right: 8px;
}
.header-logo-text {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #111;
}
.header-main-menu {
    display: flex;
    align-items: center;
    gap: 36px;
    flex: 1;
    justify-content: center;
}
.header-main-menu a {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    color: #222;
    text-decoration: none;
    font-weight: 400;
    transition: color .2s;
    padding: 0 2px;
}
.header-investors-btn {
    margin-left: 32px;
    padding: 0 28px !important;
    height: 30px;
    line-height: 30px;
    border-radius: 22px;
    background: linear-gradient(93.3deg, #8966F0 10.65%, #0040FF 91.3%);
    color: #fff !important;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    border: none;
    outline: none;
    transition: box-shadow .2s;
    box-shadow: 0 2px 8px 0 rgba(27, 71, 255, 0.07);
    display: inline-block;
}
.header-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 16px;
    z-index: 110;
}
.header-burger span {
    display: block;
    height: 4px;
    width: 32px;
    border-radius: 2px;
    background: #222;
    margin: 3px 0;
    transition: all .3s;
}

@media (max-width: 1024px) {
    .header-main-menu {
        display: none;
    }
    .header-burger {
        display: flex;
    }
    .header-section-container {
        height: 60px;
        padding: 0 18px;
    }
}

.header-mobile-menu {
    position: fixed;
    left: 0; top: 0;
    right: 0; bottom: 0;
    z-index: 120;
    background: rgba(68,33,170,0.97);
    display: none;
    align-items: flex-start;
    justify-content: center;
    animation: fadeIn .28s;
}
.header-mobile-menu.open {
    display: flex;
}
.header-mobile-menu-inner {
    width: 100%;
    padding: 40px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}
.header-mobile-logo {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.header-mobile-logo img {
    height: 48px;
    width: auto;
    margin-right: 8px;
}
.header-mobile-close {
    position: absolute;
    top: 28px;
    right: 32px;
    background: none;
    border: none;
    width: 36px;
    height: 36px;
    z-index: 140;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-mobile-close span {
    position: absolute;
    width: 32px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}
.header-mobile-close span:first-child {
    transform: rotate(45deg);
}
.header-mobile-close span:last-child {
    transform: rotate(-45deg);
}
.header-mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 48px;
    width: 100%;
}
.header-mobile-menu nav a {
    color: #fff;
    font-size: 28px;
    font-family: 'Manrope', sans-serif;
    text-decoration: none;
    font-weight: 400;
    transition: color .18s;
    padding: 8px 0;
    width: 100%;
    text-align: center;
    border-radius: 10px;
}
.header-mobile-menu nav a.active,
.header-mobile-menu nav a:hover {
    color: #80A2FF;
    background: rgba(0,0,0,0.09);
}
.header-mobile-menu .header-investors-btn {
    background: linear-gradient(93.3deg, #8966F0 10.65%, #0040FF 91.3%);
    color: #fff;
    font-size: 24px;
    padding: 0 24px;
    margin: 30px 0 0 0;
    height: 50px;
    line-height: 50px;
    font-weight: 600;
}

@keyframes fadeIn {
    from { opacity: 0;}
    to   { opacity: 1;}
}


.marker-top {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 40px;
}
.marker-tr {
    position: absolute;
    right: 0;
    margin: auto;
    width: 24px;
}
.marker-bl {
    position: absolute;
    left: 0;
    width: 24px;
    bottom: 0;
}
.marker-br {
    position: absolute;
    right: 0;
    width: 24px;
    bottom: 0px;
}
.marker-bcross {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    margin: auto;
    width: 40px;
}


@media (max-width: 1024px) {
    .marker-top,
    .marker-tr,
    .marker-bl,
    .marker-br,
    .marker-bcross {
        display: none;
    }
}

.hero-section {
    width: 100%;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 120px;
}
.hero-section-container {
    max-width: 1280px;
    width: 100%;
    text-align: left;
    position: relative;
}
.hero-section-title {
    font-size: 94px;
    font-weight: 400;
    color: #000;
    line-height: 1.2;
    margin-bottom: 40px;
    margin-top: 100px;
}
.hero-section-title .hero-section-highlight {
    display: block;
    font-weight: 700;
    color: #5E5AFF; /* Gradient start */

    background: linear-gradient(93.3deg, #8966F0 10.65%, #0040FF 91.3%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;

}
.hero-section-mission {
    max-width: 600px;
    margin-left: 30px;
    margin-bottom: 50px;
}
.hero-section-mission-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
}
.hero-section-mission-text {
    font-size: 16px;
    color: #333;
    margin-bottom: 16px;
}
.hero-section-mission-bold {
    font-size: 16px;
    font-weight: 700;
}
.hero-section-offset {
    height: 60px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-section-mission {
        margin-left: 0;
    }

    .hero-section {
        padding: 40px 16px;
    }

    .hero-section-title {
        font-size: 60px;
    }

    .hero-section-title .hero-section-highlight {
        font-size: 60px;
    }

    .hero-section-mission-title {
        font-size: 18px;
    }

    .hero-section-mission-text,
    .hero-section-mission-bold {
        font-size: 14px;
    }
}


/* IDS Section */
.ids-section {
    width: 100%;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ids-section-container {
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 60px;
}
.ids-section-image img {
    max-width: 400px;
    height: auto;
    display: block;
}
.ids-section-content {
    flex: 1;
}
.ids-section-title {
    font-size: 32px;
    font-weight: 400;
    color: #000;
    line-height: 1.4;
    margin-bottom: 16px;
}
.ids-section-highlight {
    font-weight: 700;
    color: #5E5AFF;
    background: linear-gradient(90deg, #8B6FF4, #346AFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ids-section-text {
    font-size: 16px;
    color: #333;
}

/* Responsive */
@media (max-width: 1024px) {
    .ids-section-content {
        text-align: left;
    }

    .ids-section-container {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .ids-section-image img {
        max-width: 260px;
    }

    .ids-section-title {
        font-size: 20px;
    }

    .ids-section-text {
        font-size: 14px;
    }
}


.about-section {
    width: 100%;
    padding: 80px 20px;
    position: relative;
    background: #fff;
}

.about-section-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    text-align: left;
}

/* Маркеры */
.about-section .marker-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.about-section .marker-bl {
    position: absolute;
    bottom: 0;
    left: 0;
}
.about-section .marker-br {
    position: absolute;
    bottom: 0;
    right: 0;
}
.about-section .marker-cross {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

/* Заголовки */
.about-section-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 56px;
    margin-bottom: 16px;
    color: #000;
}
.about-section-subtitle {
    font-size: 18px;
    color: #333;
    max-width: 800px;
    margin-bottom: 60px;
}

/* Команда */
.about-section-team {
    display: flex;

    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}
.about-section-member {
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.about-section-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin-bottom: 16px;
    object-fit: cover;
    border: 5px solid #e9e9e9;
}
.about-section-name {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 8px;
}
.about-section-role {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
}
.about-section-desc {
    font-size: 16px;
    color: #333;
}

/* Philosophy */
.about-section-philosophy {
    max-width: 600px;
    position: absolute;
    right: 0;
}
.about-section-philosophy-title {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(90deg, #8B6FF4, #346AFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}
.about-section-philosophy-text {
    font-size: 16px;
    color: #333;
}

.about-section-offset {
    height: 240px;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-section-title {
        font-size: 32px;
    }

    .about-section-subtitle {
        font-size: 16px;
    }

    .about-section-team {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .about-section-member {
        text-align: left;
        align-items: start;
    }

    .about-section-role {
        font-size: 18px;
    }

    .about-section-philosophy-title {
        font-size: 18px;
    }

    .about-section-philosophy-text {
        font-size: 14px;
    }
}



/* Подключи Manrope и Geologica через @import или link в <head> */

.projects-section {
    width: 100%;
    background: #fff;
    padding: 0 0 48px 0;
}
.projects-section-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 48px 24px 0 24px;
}
.projects-section-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 56px;
    line-height: 1;
    color: #111111;
    margin-bottom: 12px;
    letter-spacing: 0;
}
.projects-section-subtitle {
    font-family: 'Manrope', Arial, sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 120%;
    color: #111111;
    margin-bottom: 44px;
    max-width: 630px;
}
.projects-section-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px 20px;
    justify-content: flex-start;
}
.project-card {
    background: linear-gradient(140.66deg, #F9F4FF 23.27%, #F1F6FC 85.88%);
    box-shadow: inset 6px 6px 1px rgba(255,255,255,0.5), inset -6px -6px 1px #C4DBF1;
    border-radius: 24px;
    width: calc(100% / 3 - 20px);
    min-height: 282px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 28px 24px 28px;
    box-sizing: border-box;
    position: relative;
    transition: box-shadow 0.15s;

}

/*.project-card:hover {*/
/*    box-shadow: 0 6px 28px 0 rgba(56, 82, 255, 0.10), 0 1.5px 3px 0 rgba(36,201,193,0.03);*/
/*}*/

.project-card-header, .project-card-row {
    display: flex;
    flex-direction: column;
    /*justify-content: space-between;*/
    align-items: flex-start;
    gap: 0;
    margin-bottom: 20px;
}
.project-card-title {
    font-family: 'Manrope', Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    color: #4419C6;
    margin: 0 0 8px 0;
}
.project-card-status {
    font-family: 'Geologica', Arial, sans-serif;
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
    padding: 2px 10px;
    border-radius: 16px;
    border: 1px solid #8966F0;
    /*margin-left: 8px;*/
    display: inline-flex;
    align-items: center;
}
.project-card-status.active {
    border: 1px solid #8966F0;
    background: none;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(93.3deg, #8966F0 10.65%, #0040FF 91.3%);
}
.project-card-status.soon {
    border: 1px solid #8966F0;
    color: #8966F0;
    background: none;
}
.project-card-logo {
    margin-left: auto;
    margin-bottom: 8px;
    width: 54px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    right: 30px;
    top: 20px;
}
.project-card-logo img {
    width: auto;
    height: 24px;
    object-fit: contain;
    display: block;
}
.project-card-desc {
    font-family: 'Manrope', Arial, sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 120%;
    color: #000;
    margin: 12px 0 18px 0;
}
.project-card-tags {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.project-card-tags span {
    font-family: 'Geologica', Arial, sans-serif;
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
    color: #CCB0F1;
    border: 1px solid #CCB0F1;
    border-radius: 16px;
    padding: 2px 10px;
    background: none;
    display: flex;
    align-items: center;
    margin-bottom: 2px;
}
.project-card-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-top: auto;
}
.project-card-growth {
    font-family: 'Manrope', Arial, sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 120%;
    color: #24C9C1;
}
.project-card-btn {
    font-family: 'Geologica', Arial, sans-serif;
    font-weight: 200;
    font-size: 12px;
    line-height: 15px;
    color: #fff;
    padding: 4px 22px;
    border-radius: 16px;
    background: linear-gradient(93.3deg, #8966F0 10.65%, #0040FF 91.3%);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: background 0.15s;
    box-shadow: none;
    border: none;
    outline: none;
}
.project-card-btn:hover {
    background: linear-gradient(93.3deg, #0040FF 10.65%, #8966F0 91.3%);
}

@media (max-width: 1300px) {
    .projects-section-container {
        max-width: 100%;
        padding: 32px 12px 0 12px;
    }
    .projects-section-grid {
        gap: 24px 12px;
    }
    .project-card {
        /*width: 340px;*/
        min-width: 0;
        padding: 24px 16px 18px 16px;
    }
}

@media (max-width: 1100px) {
    .projects-section-title {
        font-size: 42px;
    }
    .project-card {
        /*width: 100%;*/
        min-width: 0;
        /*max-width: 480px;*/
        margin: 0 auto;
    }
    .projects-section-grid {
        gap: 20px 0;
        justify-content: center;
    }
}

@media (max-width: 750px) {
    .projects-section-container {
        padding: 0 20px;
    }
    .projects-section-title {
        font-size: 32px;
    }
    .project-card {
        width: 100%;
        min-width: 0;
        padding: 20px 8px 16px 8px;
        font-size: 15px;
    }
    .project-card-header, .project-card-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .project-card-logo {
        width: 38px;
        height: 28px;
        margin-bottom: 0;
    }
    .project-card-btn {
        padding: 4px 10px;
        font-size: 12px;
    }
}

@media (max-width: 1024px) {
    .projects-section-title {
        font-size: 26px;
    }
    .projects-section-grid {
        flex-direction: column;
        gap: 16px 0;
    }
    .project-card {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        margin: 0 auto;
        padding: 14px 10px 12px 15px;
        border-radius: 16px;
        font-size: 13px;
    }
}



/* GENERAL */
.services-section {
    margin: 0 auto 72px;
    padding: 0 24px;
    font-family: 'Manrope', Arial, sans-serif;
    color: #111111;
}
.services-section-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    /*padding: 48px 24px 0 24px;*/
    position: relative;
    padding: 0 20px;
}
.services-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 56px;
    margin: 0 0 12px 0;
    line-height: 1;
}
.services-lead {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 32px;
}
.services-lead-bold { font-weight: 600; }
.services-main-gradient {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    background: linear-gradient(93.3deg, #8966F0 10.65%, #0040FF 91.3%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
    margin-top: 20px;
}
.services-main-purple { font-weight: 800; }
.services-main-gray { font-weight: 400; color: #111; -webkit-text-fill-color: initial; background: none; }
.services-desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 38px;
    max-width: 680px;
}
.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}
.services-card {
    background: linear-gradient(140.66deg, #F9F4FF 23.27%, #F1F6FC 85.88%);
    box-shadow: inset 6px 6px 1px rgba(255,255,255,0.5), inset -6px -6px 1px #C4DBF1;
    border-radius: 24px;
    width: calc(100% / 4 - 20px);
    min-height: 191px;
    padding: 24px 20px 18px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 0;
}
.services-card-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px 0;
}
.services-card-list {
    margin: 0;
    padding-left: 20px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.2;
    color: #111;
    list-style-type: disc;
}
.services-benefits {
    display: flex;
    gap: 32px;
    margin: 48px 0 44px 0;
    flex-wrap: wrap;
}
.services-benefit-col {
    width: calc(100% / 3 - 25px);
    min-width: 210px;
}
.services-benefit-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    background: linear-gradient(93.3deg, #8966F0 10.65%, #0040FF 91.3%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
}
.blue { color: #4419C6; }
.blue-underline { color: #0040FF; text-decoration: underline; }
.services-benefit-col ul {
    margin: 0;
    padding-left: 18px;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.2;
    color: #111;
    list-style-type: disc;
}
.services-process {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: 44px;
    margin-top: 24px;
    flex-wrap: wrap;


}
.services-process-item {
    font-size: 14px;
    font-weight: 500;
    color: #4419C6;
    /* background: #F9F4FF; */
    padding: 12px 22px;
    /* box-shadow: 0 1px 3px rgba(204, 176, 241, 0.08); */
    height: 120px;
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 6px solid #9d70f9;

    border-radius: 50%;
    /*border-image: linear-gradient(135deg, #9d70f9 10%, #6394fc 100%) 1;*/
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    background: #fff;
}
.services-process-arrow {
    width: 50px;
    height: 2px;
    background: linear-gradient(93.3deg, #8966F0 10.65%, #CCB0F1 91.3%);
    border-radius: 1px;
    margin: 0 2px;
    position: relative;
}
.services-process-arrow:after {
    content: '';
    position: absolute;
    right: 0;
    top: -6px;
    border: solid #CCB0F1;
    border-width: 0 2.5px 2.5px 0;
    display: inline-block;
    padding: 6px;
    transform: rotate(-45deg);
    background: transparent;
}
.services-cta {
    margin-top: 42px;
    position: absolute;
    right: 0;
    padding: 0 20px;

}
.services-cta-gradient {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    background: linear-gradient(93.3deg, #8966F0 10.65%, #0040FF 91.3%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 14px;
}
.services-cta-gradient span {
    color: #4419C6;
    -webkit-text-fill-color: #4419C6;
    background: none;
    font-weight: 400;
}
.services-cta-desc {
    font-size: 16px;
    font-weight: 300;
    color: #111;
    line-height: 1.2;
    max-width: 540px;
}

/* MOBILE */
@media (max-width: 1024px) {
    .services-section { padding: 0; }
    .services-title { font-size: 32px; }
    .services-cards {
        flex-direction: column;
        gap: 16px;
    }
    .services-card {
        width: 100%;
        min-width: 0;
        padding: 18px 10px 14px 10px;
    }
    .services-benefits { flex-direction: column; gap: 18px; }
    .services-benefit-col { width: 100%; min-width: 0; }
    .services-process { gap: 10px; flex-wrap: wrap; }
    .services-process-item { font-size: 12px; padding: 8px 12px; }
    .services-cta-gradient { font-size: 22px; }
    .services-cta-desc { font-size: 13px; }

    .services-process {
        display: none;
    }
}

.service-section-offset {
    height: 260px;
}



.ecosystem-section {
    /*margin: 0 auto 48px auto;*/
    /*padding: 32px 24px 0 24px;*/
    font-family: 'Manrope', 'Geologica', Arial, sans-serif;
    background: #fff;
    padding: 0 10px;
}
.ecosystem-section-container {
    max-width: 1280px;
    width: 100%;
    margin: auto;
    position: relative;
    padding: 0 20px;
}
.ecosystem-section-offset {
    height: 100px;
}
.ecosystem-header {
    margin-bottom: 28px;
}
.ecosystem-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 56px;
    line-height: 100%;
    color: #111;
    /*margin: 0 0 8px 0;*/
    margin-bottom: 8px;
}
.ecosystem-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    color: #222;
    max-width: 580px;
}
.ecosystem-brand {
    font-weight: 700;
}

.ecosystem-graph {
    position: relative;
    width: 100%;
    /*max-width: 650px;*/
    /*height: 500px;*/
    margin: 0 auto 36px auto;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ecosystem-bg {
    width: 100%;
    height: auto;
    /*max-width: 650px;*/
    pointer-events: none;
    user-select: none;
    /*position: absolute;*/
    left: 0; top: 0; z-index: 1;
}
.ecosystem-core {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 210px; height: 210px;
    background: radial-gradient(65% 65% at 55% 60%, #fff 60%, #d8c7fc 97%);
    box-shadow: 0 0 32px 6px #f4eaff, 0 2px 64px 2px #dad8ff;
    border-radius: 50%;
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: #916bf1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-align: center;
    border: 6px solid #e3dcfd;
    filter: blur(0px);
    /* Soft highlight inside: */
    box-shadow:
            0 0 32px 6px #f4eaff,
            0 2px 64px 2px #dad8ff,
            0 0 0 16px rgba(185,155,255,0.07),
            0 0 0 30px rgba(185,155,255,0.06);
}

.ecosystem-badge {
    position: absolute;
    min-width: 142px;
    max-width: 180px;
    min-height: 56px;
    background: #fff;
    border: 2px solid #d2c6ff;
    border-radius: 16px;
    box-shadow: 0 2px 16px 0 rgba(169, 140, 241, 0.14);
    text-align: left;
    padding: 12px 18px 10px 18px;
    z-index: 3;
    font-family: 'Manrope', sans-serif;
}
.ecosystem-badge .badge-title {
    font-size: 21px;
    font-weight: 700;
    color: #7b3fee;
    margin-bottom: 2px;
}
.ecosystem-badge .badge-sub {
    font-size: 13px;
    font-weight: 400;
    color: #a59ddb;
    margin-bottom: 0;
}

.ecosystem-badge-ecommerce    { left: 50%; top: 44px;   transform: translate(-50%, 0); }
.ecosystem-badge-analytics    { left: 20px; top: 188px;}
.ecosystem-badge-marketing    { right: 22px; top: 212px;}
.ecosystem-badge-logistics    { left: 66px; bottom: 34px;}
.ecosystem-badge-payments     { right: 60px; bottom: 36px;}

.ecosystem-benefits {
    width: 100%;
    max-width: 900px;
    margin: 52px auto 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 48px;
}
.benefit-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 23px;
    line-height: 120%;
    background: linear-gradient(93.3deg, #8966F0 10.65%, #0040FF 91.3%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 10px;
}
.benefit-desc {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #2a2a2a;
    line-height: 1.35;
}

@media (max-width: 1024px) {
    .ecosystem-section { padding: 18px 0 0 0; }
    .ecosystem-title   { font-size: 34px; }
    .ecosystem-subtitle { font-size: 11.5px; }
    .ecosystem-graph { max-width: 340px; height: 270px; }
    .ecosystem-bg { max-width: 340px; }
    .ecosystem-core {
        width: 104px; height: 104px;
        font-size: 23px;
        border-width: 4px;
    }
    .ecosystem-badge {
        min-width: 82px; max-width: 124px; padding: 7px 12px 6px 12px;
        border-radius: 10px;
    }
    .ecosystem-badge .badge-title { font-size: 13px; }
    .ecosystem-badge .badge-sub { font-size: 9px; }
    .ecosystem-badge-ecommerce { left: 50%; top: 10px; }
    .ecosystem-badge-analytics { left: 3px; top: 62px; }
    .ecosystem-badge-marketing { right: 2px; top: 82px; }
    .ecosystem-badge-logistics { left: 22px; bottom: 4px; }
    .ecosystem-badge-payments  { right: 20px; bottom: 8px; }
    .ecosystem-benefits {
        flex-direction: column;
        gap: 18px;
        margin: 32px 0 0 0;

    }
    .benefit-title { font-size: 17px; }
    .benefit-desc { font-size: 11px; }
}




.investor-section {
    width: 100%;
    background: #fff;
    padding: 0;
}
.investor-section-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 48px 32px 48px 32px;
    box-sizing: border-box;
}
.investor-section-header {
    margin-bottom: 48px;
}
.investor-section-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 56px;
    color: #111111;
    line-height: 1;
    margin: 0 0 12px 0;
}
.investor-section-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #555;
    line-height: 1.2;
}
.investor-section-metrics {
    display: flex;
    justify-content: flex-start;
    gap: 70px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}
.investor-metric {
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    /*min-width: 210px;*/
    margin-bottom: 32px;
    width: calc(100% / 4 - 55px);
}
.investor-metric-value {
    font-family: 'Manrope', sans-serif;
    font-size: 60px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 6px;
}
.gradient-text {
    background: linear-gradient(93.3deg, #8966F0 10.65%, #0040FF 91.3%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.investor-metric-label {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #111;
    line-height: 1.2;
}
.investor-section-options-advantages {
    display: flex;
    gap: 64px;
    margin-top: 48px;
    align-items: flex-start;
}
.investor-section-options, .investor-section-advantages {
    flex: 1 1 0;
    min-width: 280px;
}
.investor-section-options-title,
.investor-section-advantages-title {
    font-family: 'Manrope', sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 32px;
}
.investor-option-block {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 24px;
    line-height: 1.2;
}
.investor-option-block .investor-option-desc {
    font-weight: 400;
    font-size: 15px;
    color: #222;
    display: block;
    margin-top: 2px;
}
.investor-option-block ul {
    font-size: 14px;
    font-weight: 300;
    color: #333;
    margin: 8px 0 0 0;
    padding-left: 18px;
}
.investor-advantages-list {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin: 0;
    padding: 0;
    list-style: none;
}
.investor-advantages-list li {
    margin-bottom: 20px;
}
.investor-advantages-list span {
    font-weight: 400;
    color: #333;
    font-size: 15px;
    display: block;
    margin-top: 2px;
}

@media (max-width: 1024px) {
    .investor-section-container {
        padding: 0 20px;
    }
    .investor-section-title {
        font-size: 38px;
    }
    .investor-section-header {
        margin-bottom: 24px;
    }
    .investor-section-metrics {
        gap: 24px;
        margin-bottom: 32px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .investor-metric {
        min-width: 135px;
        margin-bottom: 20px;
    }
    .investor-metric-value {
        font-size: 38px;
    }
    .investor-metric-label {
        font-size: 17px;
    }
    .investor-section-options-advantages {
        flex-direction: column;
        gap: 32px;
        margin-top: 24px;
    }
    .investor-section-options-title,
    .investor-section-advantages-title {
        font-size: 23px;
        margin-bottom: 18px;
    }
    .investor-section-options,
    .investor-section-advantages {
        min-width: 0;
    }
    .investor-advantages-list li {
        margin-bottom: 14px;
    }
}




.investor-cta-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 48px;
    margin-bottom: 48px;
}
.investor-cta-container {
    width: 100%;
    max-width: 900px;
    min-width: 320px;
    margin: auto;
    background: linear-gradient(141deg, #fcf7ff 7.71%, #edf6fd 97.12%);
    box-shadow: 0px 4px 12px 0px rgba(66, 130, 255, 0.10), 0px 2px 0px 0px #c2d7ff inset;
    border-radius: 32px;
    border: 3px solid transparent;
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.investor-cta-title {
    font-family: 'Manrope', Arial, sans-serif;
    font-weight: 600;
    font-size: 38px;
    line-height: 1.1;
    margin: 0 0 16px 0;
    background: linear-gradient(93.3deg, #8966F0 10.65%, #0040FF 91.3%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.investor-cta-subtitle {
    font-family: 'Manrope', Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #222;
    margin-bottom: 32px;
}
.investor-cta-buttons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.investor-cta-btn {
    min-width: 220px;
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 17px;
    font-weight: 500;
    padding: 14px 0;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    transition: box-shadow 0.2s, background 0.2s;
    box-shadow: 0 2px 12px 0 rgba(100, 160, 255, 0.13);
}
.investor-cta-btn-primary {
    background: linear-gradient(90deg, #3073ff 10.65%, #2e53ff 91.3%);
    color: #fff;
}
.investor-cta-btn-primary:hover {
    background: linear-gradient(90deg, #1e54e8 10.65%, #0037dd 91.3%);
}
.investor-cta-btn-secondary {
    background: #a98ffa;
    color: #fff;
}
.investor-cta-btn-secondary:hover {
    background: #825eda;
}

@media (max-width: 1024px) {
    .investor-cta-container {
        padding: 32px 12px;
        border-radius: 24px;
        margin: 0 20px;
    }
    .investor-cta-title {
        font-size: 26px;
    }
    .investor-cta-subtitle {
        font-size: 15px;
    }
    .investor-cta-buttons {
        flex-direction: column;
        gap: 16px;
        width: 75%;
    }
    .investor-cta-btn {
        min-width: 0;
        width: 100%;
        font-size: 16px;
    }
}



.contact-section {
    width: 100%;
    padding: 0;
    background: #fff;
}
.contact-section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    box-sizing: border-box;
}
.contact-section-header h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 56px;
    line-height: 100%;
    color: #111111;
    margin-bottom: 12px;
}
.contact-section-subtitle {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 19px;
    line-height: 120%;
    color: #333;
    margin-bottom: 48px;
    max-width: 700px;
}
.contact-section-content {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 120px;
}
.contact-form {
    flex: 1;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 60px;
}
.contact-form-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 120%;
    color: #111111;
    margin-bottom: 8px;
}
.contact-input {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #111;
    padding: 14px 18px;
    border: 2px solid #bfa9ef;
    border-radius: 10px;
    background: #fff;
    outline: none;
    margin-bottom: 0;
    transition: border 0.2s;
}
.contact-input:focus {
    border-color: #8966F0;
}
.contact-textarea {
    min-height: 96px;
    resize: vertical;
}
.contact-submit-btn {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    background: linear-gradient(93.3deg, #8966F0 10.65%, #6C7AFF 91.3%);
    border: none;
    border-radius: 24px;
    padding: 14px 0;
    margin-top: 8px;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-submit-btn:hover {
    background: linear-gradient(93.3deg, #7e56e7 10.65%, #4a56e6 91.3%);
}
.contact-info {
    flex: 1;
    margin-top: 130px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 32px;
    font-family: 'Manrope', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #111;
    word-break: break-all;
}
.contact-email {
    font-size: 22px;
    font-weight: 400;
}
.contact-website {
    font-size: 18px;
    font-weight: 400;
    margin-top: 16px;
}

@media (max-width: 1024px) {
    .contact-section-container {
        padding: 0 20px;
    }
    .contact-section-header h2 {
        font-size: 42px;
    }
    .contact-section-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }
    .contact-section-content {
        flex-direction: column;
        gap: 24px;
    }
    .contact-form {
        max-width: 100%;
        width: 100%;
    }
    .contact-form-title {
        font-size: 24px;
    }
    .contact-info {
        margin-top: 38px;
        font-size: 18px;
        gap: 10px;
        align-items: flex-start;
    }
    .contact-email {
        font-size: 18px;
    }
    .contact-website {
        font-size: 16px;
        margin-top: 10px;
    }
}



.footer-section {
    background: #916DF7;
    padding: 0;
    min-height: 320px;
    width: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    margin-top: 100px;
}
.footer-section-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}
.footer-logo-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 60px;
}
.footer-logo img {
    height: 56px;
    display: block;
}
.footer-nav ul {
    display: flex;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-nav ul li a {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    transition: opacity .2s;
    opacity: 0.95;
}
.footer-nav ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .footer-section-container {
        padding: 0 12px;
        min-height: 240px;
    }
    .footer-logo-nav {
        flex-direction: column;
        gap: 32px;
        align-items: center;
        justify-content: center;
    }
    .footer-logo img {
        height: 48px;
    }
    .footer-nav ul {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .footer-nav ul li a {
        font-size: 18px;
    }
}
