* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    background-image: url('../imgs/main.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
}


.st_container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}


@font-face {
    font-family: 'Hikasami Regular';
    src: url('../fonts/Hikasami-Regular.otf') format('opentype');
    font-weight: 400;
    font-display: swap;
}

.st_title {
    font-family: 'Hikasami Regular', sans-serif;
    font-weight: 400;
    font-size: 56px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
}

.st_title span {
    background: linear-gradient(90deg, #a468ff, #b662bd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.st_subtitle {
    display: inline-block;
    border: 1px solid #6a33d9;
    border-radius: 32px;
    padding: 6px 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.st_text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

.st_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #6100df;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.st_button:hover {
    background: #7a2aff!important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -8px rgba(97, 0, 223, 0.4);
}


.st_block {
    background: #0c0d0e;
    border-radius: 8px;
    padding: 32px;
    transition: transform 0.2s;
}


.st_header {
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.st_logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.st_logo img {
    height: 40px;
    width: auto;
}

.st_brand {
    font-size: 26px;
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.5px;
}

.st_nav {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}

.st_nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    text-transform: uppercase;
    transition: 0.2s;
    font-size: 16px;
}

.st_nav a:hover {
    color: #b662bd;
}

.st_menu_btn {
    background: transparent;
    border: none;
    display: none;
    cursor: pointer;
}

@media (max-width: 880px) {
    .st_menu_btn {
        display: block;
    }

    .st_nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100%;
        background: #0c0d0e;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 40px;
        gap: 28px;
        z-index: 1000;
        transition: left 0.3s ease;
        box-shadow: 4px 0 25px rgba(0, 0, 0, 0.7);
    }

    .st_nav.st_nav_open {
        left: 0;
    }

    .st_nav a {
        font-size: 18px;
    }

    .st_overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 999;
        display: none;
    }

    .st_overlay.active {
        display: block;
    }
}


.st_banner {
    text-align: center;
    padding: 100px 0 120px;
}

.st_grid_3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.st_about_full {
    margin: 60px 0;
}

.st_about_full img {
    width: 100%;
    border-radius: 20px;
    margin: 32px 0;
    display: block;
}

.st_cap_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 48px;
}

.st_cap_header .st_text {
    max-width: 380px;
}

.st_features_grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.st_row_double {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.st_row_double>*:first-child {
    flex: 1;
}

.st_row_double>*:last-child {
    flex: 2;
}

.st_row_triple {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.st_row_triple>* {
    flex: 1;
}

.st_feature_card {
    background: #0c0d0e;
    border-radius: 8px;
    padding: 28px;
}

.st_feature_card img {
    height: 40px;
    color: #fff;
    margin-bottom: 10px;
    display: inline-block;
}

.st_feature_card h3 {
    font-size: 22px;
    font-weight: 400;
    margin: 0px 0 12px;
    color: #fff;
}

.st_why {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
    margin: 80px 0;
}

.st_why_img {
    flex: 1;
}

.st_why_img img {
    width: 100%;
    border-radius: 24px;
    display: block;
}

.st_why_content {
    flex: 1;
}

.st_list {
    list-style: none;
    margin: 24px 0;
}

.st_list li {
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
}

.st_list li:before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #a468ff;
}

.st_cta {
    background: url('../imgs/bg_cta.avif') center bottom/cover no-repeat;
    border-radius: 32px;
    text-align: center;
    padding: 80px 24px;
    margin: 70px 0;
}

.st_footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

.st_footer_grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.st_footer_col {
    flex: 1;
    min-width: 180px;
}

.st_footer_col p,
.st_footer_col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
}

.st_footer_col a:hover {
    color: #b662bd;
}

.st_footer_bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.st_footer_links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-left: 28px;
}

.st_footer_links a:first-child {
    margin-left: 0;
}

.st_contact_hero {
    background: url('../imgs/bg_cta.avif') center bottom/cover;
    position: relative;
}

.st_contact_hero .st_hero_inner {
    text-align: center;
    padding: 100px 0 80px;
}

.st_breadcrumbs {
    color: rgba(255, 255, 255, 0.7);
}

.st_breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.st_breadcrumbs a:hover {
    color: #a468ff;
}

.st_breadcrumbs span {
    margin: 0 8px;
}

.st_breadcrumbs .st_current {
    color: #a468ff;
}

.st_wrap {
    padding: 20px;
    border-radius: 10px;
    background: #0c0d0e;
}


.st_contact_section {
    padding: 40px 0;
}

.st_contact_grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.st_contact_info {
    flex: 1;
    min-width: 280px;
}

.st_contact_block {
    background: #0c0d0e;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 14px;
    transition: transform 0.2s;
}

.st_icon_wrap img{
    height: 40px;
}


.st_contact_block .st_icon_wrap {
    margin-bottom: 10px;
}

.st_contact_block .st_icon_wrap i {
    width: 40px;
    height: 40px;
    color: #a468ff;
}

.st_contact_block h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 400;
}

.st_contact_block p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.st_contact_block a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.st_contact_block a:hover {
    color: #a468ff;
}


.st_contact_form_wrap {
    flex: 1.2;
    min-width: 320px;
    background: #0c0d0e;
    border-radius: 8px;
    padding: 40px;
}

.st_contact_form_wrap h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 8px;
}

.st_form_group {
    margin-bottom: 20px;
}

.st_form_row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.st_form_row .st_form_group {
    flex: 1;
}

.st_form_group input,
.st_form_group select,
.st_form_group textarea {
    width: 100%;
    padding: 14px 18px;
    background: #1a1b1e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    transition: all 0.2s;
}

.st_form_group input:focus,
.st_form_group select:focus,
.st_form_group textarea:focus {
    outline: none;
    border-color: #a468ff;
}

.st_form_group textarea {
    resize: vertical;
    min-height: 100px;
}

.st_form_submit {
    margin-top: 10px;
}

.st_thanks_message {
    margin-top: 20px;
    padding: 14px 20px;
    background: rgba(164, 104, 255, 0.15);
    border: 1px solid rgba(164, 104, 255, 0.4);
    border-radius: 8px;
    color: #a468ff;
    text-align: center;
    font-weight: 500;
    display: none;
}

.st_thanks_message.show {
    display: block;
}


@media (max-width: 900px) {
    .st_title {
        font-size: 40px;
    }

    .st_contact_hero .st_hero_inner {
        padding: 60px 0 50px;
    }

    .st_contact_section {
        padding: 50px 0;
    }

    .st_contact_form_wrap {
        padding: 28px;
    }
}







.st_legal_hero {
    background: url('../imgs/bg_cta.avif') center bottom;
    position: relative;
}

.st_legal_hero .st_hero_inner {
    text-align: center;
    padding: 100px 0 80px;
}

.st_breadcrumbs {
    color: rgba(255, 255, 255, 0.7);
}

.st_breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.st_breadcrumbs a:hover {
    color: #a468ff;
}

.st_breadcrumbs span {
    margin: 0 8px;
}

.st_breadcrumbs .st_current {
    color: #a468ff;
}


.st_legal_section {
    padding: 60px 0 80px;
}

.st_legal_content {
    background: #0c0d0e;
    border-radius: 8px;
    padding: 48px;
}

.st_legal_content h2 {
    color: #fff;
    font-size: 28px;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 400;
}

.st_legal_content h2:first-of-type {
    margin-top: 0;
}

.st_legal_content h3 {
    color: #fff;
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.st_legal_content p {
    margin-bottom: 16px;
}

.st_legal_content ul,
.st_legal_content ol {
    margin: 16px 0 20px 24px;
}

.st_legal_content li {
    margin-bottom: 8px;
}

.st_legal_content a {
    color: #a468ff;
    text-decoration: none;
}

.st_legal_content a:hover {
    text-decoration: underline;
}

.st_legal_content .st_update_date {
    background: rgba(164, 104, 255, 0.15);
    border-left: 3px solid #a468ff;
    padding: 12px 20px;
    margin-bottom: 32px;
    font-size: 14px;
}

.st_legal_content hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 32px 0;
}


.st_legal_contacts {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.st_legal_contacts h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 16px;
}

.st_legal_contacts p {
    margin-bottom: 8px;
}

.st_legal_contacts a {
    color: #a468ff;
    text-decoration: none;
}


@media (max-width: 900px) {
    .st_title {
        font-size: 40px;
    }

    .st_legal_hero .st_hero_inner {
        padding: 60px 0 50px;
    }

    .st_legal_content {
        padding: 28px;
    }

    .st_legal_content h2 {
        font-size: 24px;
    }
}

.st_about_section {
    padding: 60px 0 10px;
}

.st_about_grid {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}


.st_about_text .st_text {
    margin-bottom: 0;
}

.st_about_image_full {
    width: 100%;
    margin: 50px 0 60px;
}

.st_about_image_full img {
    width: 100%;
    border-radius: 20px;
    display: block;
}


.st_stats_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #0c0d0e;
    border-radius: 16px;
    padding: 40px 20px;
    margin-top: 20px;
}

.st_stat_item {
    flex: 1;
    text-align: center;
    min-width: 140px;
    padding: 0 16px;
}

.st_stat_number {
    font-family: 'Hikasami Regular', sans-serif;
    font-size: 42px;
    font-weight: 400;
    background: linear-gradient(135deg, #fff, #a468ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
    line-height: 1.2;
}

.st_stat_label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    letter-spacing: 0.3px;
}

.st_stat_divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
}


@media (max-width: 900px) {
    .st_about_section {
        padding: 40px 0 60px;
    }

    .st_about_grid {
        gap: 40px;
    }

    .st_about_text .st_title {
        font-size: 36px;
    }

    .st_stats_row {
        flex-wrap: wrap;
        gap: 20px;
        padding: 30px 16px;
    }

    .st_stat_item {
        min-width: calc(33% - 20px);
        padding: 12px 0;
    }

    .st_stat_divider {
        display: none;
    }

    .st_stat_number {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .st_stat_item {
        min-width: calc(50% - 10px);
    }

    .st_about_text .st_title {
        font-size: 32px;
    }
}


.st_capabilities_section {
    padding: 60px 0 80px;
}

.st_capabilities_intro {
    text-align: center;
    margin-bottom: 60px;
}

.st_capabilities_intro .st_subtitle {
    margin-bottom: 16px;
}

.st_capabilities_intro .st_title {
    margin-bottom: 20px;
}

.st_capabilities_intro .st_text {
    margin: 0 auto;
}


.st_capability_item {
    display: flex;
    gap: 20px;
    background: #0c0d0e;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.st_capability_icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.st_capability_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.st_capability_content {
    flex: 1;
}

.st_capability_content h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}

.st_capability_content .st_text {
    margin-bottom: 20px;
    line-height: 1.6;
}

.st_capability_list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 24px 24px;
    margin-top: 16px;
}

.st_capability_list li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    padding-left: 20px;
    position: relative;
    flex: 1;
    min-width: 240px;
}

.st_capability_list li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #a468ff;
    font-size: 14px;
}

.st_capabilities_cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
}


@media (max-width: 900px) {
    .st_capabilities_section {
        padding: 40px 0 60px;
    }

    .st_capability_item {
        flex-direction: column;
        gap: 24px;
        padding: 30px;
    }

    .st_capability_icon {
        width: 60px;
        height: 60px;
    }

    .st_capability_content h3 {
        font-size: 22px;
    }

    .st_capability_list {
        flex-direction: column;
        gap: 10px;
    }

    .st_capability_list li {
        min-width: auto;
    }
}

@media (max-width: 600px) {
    .st_capability_item {
        padding: 24px;
    }

    .st_capabilities_intro .st_title {
        font-size: 32px;
    }
}



































.st_grid_3 h3{
    font-weight: 400;
}




@media (max-width: 900px) {

    .st_grid_3,
    .st_row_triple {
        grid-template-columns: 1fr;
    }

    .st_row_double {
        flex-direction: column;
    }

    .st_row_double>*:last-child {
        flex: 1;
    }

    .st_title {
        font-size: 40px;
    }

    .st_banner {
        padding: 50px 0 70px;
    }

    .st_footer_links a {
        margin-left: 18px;
    }
}

@media (max-width: 550px) {
    .st_header {
        flex-direction: row;
    }

    .st_footer_bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .st_row_triple {
        flex-direction: column;
    }

    .st_why {
        flex-direction: column;
    }

    .st_cta .st_title {
        font-size: 32px !important;
    }

    .st_title {
        font-size: 34px !important;
    }

    .st_contact_form_wrap {
        min-width: 100%;
    }

    .st_contact_block {
        margin-bottom: 0;
    }
}

.st_icon_wrap {
    display: inline-flex;
}