/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600;700&display=swap');

/* Helvetica Neue fallback */
@font-face {
    font-family: 'Helvetica Neue';
    src: local('Helvetica Neue'), local('HelveticaNeue'), local('Helvetica'), local('Arial');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: local('Helvetica Neue Bold'), local('HelveticaNeue-Bold'), local('Helvetica-Bold'), local('Arial-Bold');
    font-weight: 700;
    font-style: normal;
}

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

/* Global Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: white;
    overflow-x: hidden;
}

/* Typography */
.font-inter-tight {
    font-family: 'Inter Tight', sans-serif;
}

.font-helvetica {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-bold {
    font-weight: 700;
}

/* Main Container */
.main-container {
    width: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    position: relative;
    width: 100%;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.mobile-content {
    display: none;
}

.logo {
    height: 41px;
    width: 61px;
    position: relative;
}

.logo-svg-wrapper {
    position: absolute;
    bottom: 0;
    left: 2.77%;
    right: 2.76%;
    top: 0;
}

.logo svg {
    display: block;
    width: 100%;
    height: 100%;
}

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

.nav-item .dropdown-toggle,
.nav-element {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 24px;
    border: 1px solid #e1e1e1;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    line-height: normal;
    color: #3b36d0;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    transition: 0.15s;
}

.nav-item:hover .dropdown-toggle,
.nav-item.active .dropdown-toggle,
.nav-element:hover {
    background: #3b36d0;
    color: #fff;
    border: 1px solid #3b36d0;
}

.nav-item.active,
.nav-item .dropdown-toggle.active {
    background: #3b36d0;
    color: #fff;
    border: 1px solid #3b36d0;
}

.nav-item.active .dropdown-toggle {
    pointer-events: none;
}

.nav {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

/* Ссылки */

/* Контейнер дропдауна */
.dropdown {
    position: relative;
}

/* Меню (скрыто по умолчанию) */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 15px;
    margin-top: 6px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    padding: 0;
    display: none;
    flex-direction: column;
    min-width: 120px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.dropdown-menu::before {
    position: absolute;
    content: " ";
    width: 100%;
    height: 20px;
    left: 0;
    top: -10px;
    z-index: -1;
}

/* Появление при наведении */
.dropdown:hover .dropdown-menu {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

/* Элементы меню */
.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 18px;
    color: #3b36d0;
    text-decoration: none;
    transition: 0.25s;
    white-space: nowrap;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background: #3b36d0;
    color: #fff;
    border-radius: 8px;
}

.language {
    display: flex;
    padding: 14px;
    background-color: #fff;
    border-radius: 4px;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    min-width: 80px;
}

.language span {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    padding-right: 10px;
}

.lang-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 16px;
    margin-right: 10px;
}

.lang-img img {
    max-width: 100%;
    object-fit: cover;
    width: 24px;
    height: 16px;
    border-radius: 3px;
    border: 1px solid #3b36d0;
}

.switch-lang {
    position: relative;
}

.switch-lang .language {
    background: #3B36D0;
    border: 0 solid #3B36D0;
    padding: 12px 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 400;
    color: #fff;
    cursor: pointer;
}

.switch-lang .content-lang .language {
    color: #3b36d0;
}

.switch-lang .language:hover {
    background-color: #3B36D0;
    color: #fff;
}

.switch-lang .language span {
    font-size: 16px;
    font-weight: 400;
    color: inherit;
    padding-right: 10px;
}

.switch-lang #open_lang {
    cursor: pointer;
}

.switch-lang.open_lang .content-lang {
    display: block;
}

.switch-lang #open_lang::before {
    position: absolute;
    content: " ";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 50;
}

.switch-lang .content-lang {
    position: absolute;
    content: " ";
    z-index: 3;
    border-radius: 10px;
    border: 1px solid rgba(143, 143, 143, 0.2);
    background: #FFF;
    box-sizing: border-box;
    margin-top: 10px;
    display: none;
    width: 120px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.switch-lang .content-lang::before {
    position: absolute;
    content: " ";
    width: 100%;
    height: 60px;
    top: -60px;
}

.switch-lang .content-lang .language {
    margin-bottom: 5px;
    background: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 32px;
}

.switch-lang .content-lang .language:hover {
    background-color: #3B36D0;
    color: #fff;
}

.switch-lang .content-lang .language:last-child {
    margin-bottom: 0;
}

.mobile-lang {
    display: none;
}

.mobile-content .switch-lang {
    margin-right: 46px;
}

.mobile-content .switch-lang .language {
    background: #fff;
    color: #3b36d0;
}

.telegram-link {
    border-bottom: 1px solid #3b36d0;
    color: #3b36d0;
    text-decoration: none;
    font-weight: 500;
}

.telegram-link:hover {
    border-bottom: none;
}

/* Hero Section */
.hero-section {
    background: white;
    position: relative;
    width: 100%;
}

.hero-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
    height: 100%;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
}

.hero-desktop {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 120px;
    width: 100%;
}

.hero-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 252px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    color: #3b36d0;
}

.hero-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 59px;
    opacity: 0.96;
    width: 545px;
}

.hero-description {
    font-family: 'Inter Tight', sans-serif;
    font-size: 24px;
    line-height: normal;
    width: 564px;
}

.hero-buttons {
    display: flex;
    gap: 4px;
    align-items: flex-start;
}

.hero-section.v2 .hero-text-wrapper {
    gap: 90px;
}

.hero-section.v3 .hero-text-wrapper {
    gap: 240px;
}

.hero-section.v2 .hero-title,
.hero-section.v3 .hero-title {
    font-size: 32px;
    line-height: normal;
    padding-top: 20px;
}

.hero-section.v2 .hero-description,
.hero-section.v3 .hero-description {
    font-size: 20px;
}

.btn-primary {
    background: #3b36d0;
    border: 1px solid #3b36d0;
    box-sizing: border-box;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 12px 48px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.2s;
    color: #fff;
    text-decoration: none;
}

.btn-primary:hover {
    background: #fff;
    color: #3b36d0;
}

.btn-primary p {
    font-family: 'Inter Tight', sans-serif;
    line-height: normal;
    font-size: 24px;
    text-align: center;
}

.icon-button {
    position: relative;
    width: 53px;
    height: 53px;
    transition: 0.2s;
    border-radius: 50%;
}

.icon-button:hover {
    background: #3b36d0;
}

.icon-button svg {
    display: block;
    width: 100%;
    height: 100%;
    transition: 0.2s;
}

.icon-button:hover svg {
    stroke: #fff;
}

.hero-image {
    width: 641px;
    height: 641px;
    position: relative;
    top: -50px;
    right: -60px;
}

.hero-image::before {
    position: absolute;
    content: " ";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50px;
    background: #F4F7FF;
}

.hero-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    border-radius: 8px;
}

.hero-mobile {
    display: none;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

/* Section 2: Работа стабильно */
.work-stable-section {
    overflow: visible;
    position: relative;
    width: 100%;
}

.work-stable-container {
    width: 100%;
    height: 100%;
    padding: 100px 0 128px;
}

.work-stable-container::before {
    position: absolute;
    content: " ";
    border-radius: 75px;
    background: #F4F7FF;
    max-width: 1440px;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.work-stable-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    position: relative;
}

.work-stable-image {
    position: absolute;
    right: 0;
    width: 668px;
    height: 668px;
    top: -50px;
}

.work-stable-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-stable-buttons {
    display: flex;
    gap: 4px;
    align-items: flex-start;
    left: 0;
    top: 575px;
}

.work-stable-text {
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: flex-start;
    left: 0;
    top: 100px;
}

.work-stable-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 65px;
    color: #3b36d0;
    width: 593px;
    word-wrap: break-word;
}

.work-stable-desc {
    display: flex;
    flex-direction: column;
    font-family: 'Inter Tight', sans-serif;
    gap: 24px;
    align-items: flex-start;
    line-height: normal;
    color: #3b36d0;
    font-size: 20px;
    width: 564px;
    margin-bottom: 46px;
}

.work-stable-desc p {
    width: 100%;
}

.work-stable-mobile {
    display: none;
}

/* Service Cards Section */
.service-cards-section {
    background: white;
    position: relative;
    width: 100%;
}

.service-cards-section.v2 {
    border-radius: 35px;
}

.service-cards-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    height: 100%;
}

.service-cards-inner {
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    padding: 120px 0;
    position: relative;
    width: 100%;
}

.service-cards-content {
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
}

.section-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    line-height: 65px;
    color: #3b36d0;
    font-size: 64px;
    text-align: center;
    width: 943px;
    max-width: 100%;
    word-wrap: break-word;
}

.cards-grid {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
}

.service-card {
    flex: 1;
    background: #3b36d0;
    height: 325px;
    position: relative;
    border-radius: 35px;
}

.service-card-inner {
    height: 100%;
}

.service-card-content {
    display: flex;
    flex-direction: column;
    height: 325px;
    align-items: flex-start;
    justify-content: space-between;
    padding: 24px;
    position: relative;
    color: white;
    width: 100%;
}

.service-card-title {
    display: flex;
    flex-direction: column;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    justify-content: center;
    font-size: 24px;
    width: 100%;
}

.service-card-title p {
    line-height: normal;
}

.service-card-desc {
    font-family: 'Inter Tight', sans-serif;
    line-height: normal;
    font-size: 20px;
    width: 100%;
}

.service-card-desc p {
    margin-bottom: 0;
}

.service-card-desc .service-card-desc-top {
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
    font-family: "Helvetica Neue";
}

.service-cards-section.v2 {
    border-radius: 75px;
    background: #F4F7FF;
}

/* Steps Section */
.steps-section {
    background: white;
    position: relative;
    width: 100%;
}

.steps-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    height: 100%;
}

.steps-inner {
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    padding: 120px 80px;
    position: relative;
    width: 100%;
}

.steps-content {
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
}

.steps-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
}

.step-card {
    background: #f4f7ff;
    height: 325px;
    position: relative;
    border-radius: 35px;
}

.step-card.flex-2 {
    flex: 2;
}

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

.step-card-content {
    display: flex;
    flex-direction: column;
    height: 325px;
    align-items: flex-start;
    justify-content: space-between;
    padding: 24px;
    position: relative;
    width: 100%;
}

.step-number {
    display: flex;
    flex-direction: column;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    justify-content: center;
    color: #3b36d0;
    font-size: 96px;
    position: relative;
    z-index: 3;
}

.step-number p {
    line-height: normal;
    white-space: pre;
}

.step-text {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    line-height: normal;
    min-width: 100%;
    color: #3b36d0;
    font-size: 20px;
    width: min-content;
}

.step-text p {
    margin-bottom: 0;
}

.step-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    line-height: normal;
    color: #3b36d0;
    width: 100%;
    position: relative;
    z-index: 3;
}

.step-details-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 20px;
    width: 100%;
}

.step-details-desc {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    width: 100%;
}

.step-decorative-img {
    position: absolute;
    max-width: none;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    width: 100%;
    height: 100%;
    right: 0;
}

.step-decorative-img img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.step-01-img {
    right: 0;
    width: 389px;
    height: 389px;
    top: -55px;
}

.step-02-img {
    right: 0;
    width: 220px;
    height: 220px;
    top: -40px;
}

.step-04-left-img {
    right: 0;
    width: 236px;
    height: 236px;
    top: -49px;
}

.step-04-right-img {
    right: 0;
    width: 297px;
    height: 297px;
    top: -34px;
}

/* CTA Section */
.cta-section {
    background: white;
    height: 250px;
    position: relative;
    width: 100%;
}

.cta-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
}

.cta-box {
    background: #3b36d0;
    display: flex;
    gap: 64px;
    justify-content: space-between;
    padding: 60px 40px;
    border-radius: 50px;
    width: 100%;
    align-items: center;
}

.cta-text {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    line-height: 65px;
    font-size: 64px;
    color: white;
    flex: 1;
    word-wrap: break-word;
}

.cta-arrow {
    position: relative;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    transition: 0.2s;
}

.cta-arrow:hover {
    transform: rotate(90deg);
}

.cta-arrow svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Benefits Section */
.benefits-section {
    background: white;
    position: relative;
    width: 100%;
}

.benefits-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    height: 100%;
}

.benefits-inner {
    display: flex;
    flex-direction: column;
    gap: 86px;
    align-items: center;
    padding: 120px 80px;
    position: relative;
    width: 100%;
}

.benefits-content {
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    gap: 86px;
    align-items: center;
}

.benefits-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    line-height: 65px;
    color: #3b36d0;
    font-size: 64px;
    text-align: center;
    width: 943px;
    max-width: 100%;
}

.benefits-title p {
    margin-bottom: 0;
    word-wrap: break-word;
}

.benefits-grid {
    display: flex;
    gap: 16px;
    align-items: center;
    width: 100%;
}

.benefit-card {
    background: #3b36d0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: flex-end;
    padding: 24px;
    position: relative;
    border-radius: 35px;
    width: 33.333%;
    height: 425px;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    line-height: normal;
    color: white;
    width: 100%;
}

.benefit-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 24px;
    width: 100%;
}

.benefit-desc {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    width: 100%;
}

.benefit-button {
    box-sizing: border-box;
    background: #fff;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 12px 48px;
    position: relative;
    border-radius: 50px;
    width: 377px;
    text-decoration: none;
    font-family: 'Inter Tight', sans-serif;
    line-height: normal;
    color: #3b36d0;
    font-size: 14px;
    text-align: center;
    transition: 0.2s;
    border: 1px solid #fff;
}

.benefit-button:hover {
    color: #fff;
    background: #3b36d0;
}

.benefit-img-01 {
    position: absolute;
    width: 354px;
    height: 354px;
    top: -82px;
    left: 50%;
    transform: translateX(-50%);
}

.benefit-img-02 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 296px;
    height: 296px;
    top: -51px;
}

.benefit-img-03 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 292px;
    height: 292px;
    top: -54px;
}

.benefit-img-01 img,
.benefit-img-02 img,
.benefit-img-03 img {
    position: absolute;
    inset: 0;
    max-width: none;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

/* FAQ Section */
.faq-section {
    background: white;
    position: relative;
    width: 100%;
}

.faq-container {
    height: 100%;
}

.faq-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 80px;
    position: relative;
    width: 100%;
}

.faq-content {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.faq-wrapper {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    width: 100%;
}

.faq-title {
    flex: 1;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    line-height: 1.1;
    color: #3b36d0;
    font-size: 64px;
    word-wrap: break-word;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 34px;
    width: 681px;
    max-width: 100%;
}

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

.faq-question {
    display: flex;
    gap: 40px;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.faq-icon {
    position: relative;
    width: 50px;
    height: 50px;
    margin-top: 4px;
}

.faq-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.faq-question-text {
    flex: 1;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    line-height: 1.1;
    color: #3b36d0;
    font-size: 36px;
    letter-spacing: -1.44px;
    word-wrap: break-word;
}

.faq-answer {
    display: none;
    margin-top: 24px;
}

.faq-answer p {
    font-family: 'Inter Tight', sans-serif;
    font-size: 20px;
    line-height: 1.4;
    color: #3b36d0;
    padding-left: 90px;
}

.faq-item-open .faq-question {
    align-items: flex-start;
}

.faq-item-open .faq-answer {
    display: block;
}

/* Form Section */
.form-section {
    background: white;
    position: relative;
    width: 100%;
}

.form-container {
    overflow: hidden;
    height: 100%;
}

.form-inner {
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: flex-start;
    padding: 120px 24px;
    position: relative;
    width: 100%;
}

.form-content {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: flex-start;
}

.form-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    line-height: 65px;
    color: #3b36d0;
    font-size: 64px;
}

.form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 48px;
}

.form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.form-label {
    font-family: 'Inter Tight', sans-serif;
    line-height: normal;
    color: #3b36d0;
    font-size: 24px;
    opacity: 1;
    box-shadow: none;
    width: 100%;
    border: none;
}

.form-label::placeholder {
    opacity: 1;
    border: none;
    box-shadow: none;
    color: #3b36d0;
}

.form-input-line {
    height: 1px;
    position: relative;
    width: 100%;
}

.form-input-line svg {
    display: block;
    width: 100%;
    height: 100%;
}

.form-submit {
    background: #3b36d0;
    box-sizing: border-box;
    border: 1px solid #3b36d0;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 12px 48px;
    position: relative;
    border-radius: 50px;
    width: 50%;
    cursor: pointer;
    font-family: 'Inter Tight', sans-serif;
    line-height: normal;
    font-size: 24px;
    text-align: center;
    color: #fff;
    transition: 0.2s;
}

.form-submit:hover {
    color: #3b36d0;
    background: #fff;
    outline: none;
}

.form-submit:focus,
.form-submit:active {
    border: none;
    outline: none;
}

/* Footer */
.footer {
    background: white;
    width: 100%;
}

.footer-container {
    height: 100%;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: flex-start;
    padding: 120px 80px;
    position: relative;
    height: 100%;
}

.footer-content {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

.footer-logo {
    height: 51px;
    position: relative;
    width: 207px;
}

.footer-logo svg {
    display: block;
    width: 100%;
    height: 100%;
}

.footer-nav {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    width: 650px;
}

.footer-nav-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.footer-nav-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    line-height: 1.1;
    color: #3b36d0;
    font-size: 20px;
    width: 100%;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.1;
}

.footer-nav-list a {
    margin: 0;
    color: #3b36d0;
    font-size: 16px;
    width: 100%;
    text-decoration: none;
}

.footer-nav-list a:hover {
    text-decoration: underline;
}

.footer-nav-flex {
    display: flex;
}

.footer-nav-list-columns ul {
    margin-top: 10px;
    padding-left: 20px;
    color: #3b36d0;
}

.footer-nav-list-columns li {
    margin-bottom: 5px;
}

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

.footer-legal {
    display: flex;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    gap: 32px;
    align-items: center;
    line-height: normal;
}

.footer-legal a {
    margin: 0;
    color: #3b36d0;
    font-size: 14px;
    text-decoration: none;
}

.footer-legal a:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 30px;
    align-items: center;
}

.footer-social-icon {
    position: relative;
    width: 16px;
    height: 16px;
}

.footer-social-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.default-container {
    background-color: white;
    text-align: center;
    overflow: auto;
}

.default-title {
    font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    font-weight: bold;
    color: #3b36d0;
    margin-bottom: 0;
}

.default-content {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    color: #3b36d0;
    text-align: center;
}

.default-content p {
    margin-bottom: 0;
    line-height: normal;
}

.default-content ul {
    list-style-type: disc;
    list-style-position: inside;
    margin-bottom: 0;
    text-align: center;
}

.default-content ul li {
    margin-bottom: 0;
    width: 100%;
}

.default-content ul li span {
    line-height: normal;
}

.default-subtitle {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    color: #3b36d0;
}

/* About Us Form Styles */
.about-us-section {
    background-color: white;
    overflow: auto;
    padding: 40px 24px;
}

.about-us-title {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.about-us-section-title {
    font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    font-weight: bold;
    color: #3b36d0;
    text-align: left;
}

.about-us-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

.about-us-form-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.about-us-form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-us-form-field-full {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-us-input {
    font-family: 'Inter Tight', sans-serif;
    font-size: 20px;
    color: #3b36d0;
    border: none;
    outline: none;
    background: transparent;
    padding: 0;
}

.about-us-input::placeholder {
    color: #3b36d0;
    opacity: 1;
}

.about-us-input-line {
    width: 100%;
    height: 1px;
    background-color: #E1E1E1;
}

.about-us-info-text {
    font-family: 'Inter Tight', sans-serif;
    font-size: 20px;
    color: #3b36d0;
    line-height: normal;
}

.about-us-button {
    background: #3b36d0;
    border: 1px solid #3b36d0;
    border-radius: 50px;
    padding: 12px 48px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 24px;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
    width: 100%;
}

.about-us-button:hover {
    background: white;
    color: #3b36d0;
}

/* Contact Us Styles */
.contact-us-wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.contact-us-header {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.contact-us-info-section {
    font-family: 'Inter Tight', sans-serif;
    color: #3b36d0;
    text-align: center;
    width: 100%;
}

.contact-us-info-item {
    margin-bottom: 0;
    line-height: normal;
}

.contact-us-info-label {
    font-weight: 700;
}

.contact-us-info-value {
    font-weight: 400;
}

.contact-us-form-section {
    background-color: white;
    overflow: auto;
}

.contact-us-form-title {
    font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    font-weight: bold;
    color: #3b36d0;
    text-align: left;
}

.contact-us-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-us-form-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.contact-us-form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-us-form-field-full {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-us-input {
    font-family: 'Inter Tight', sans-serif;
    color: #3b36d0;
    border: none;
    outline: none;
    background: transparent;
    padding: 0;
    width: 100%;
}

.contact-us-input::placeholder {
    color: #3b36d0;
    opacity: 1;
}

.contact-us-input-line {
    width: 100%;
    height: 1px;
    background-color: #E1E1E1;
}

.contact-us-submit-button {
    background: #3b36d0;
    border: 1px solid #3b36d0;
    border-radius: 50px;
    font-family: 'Inter Tight', sans-serif;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
    width: 100%;
    outline: none;
}

.contact-us-submit-button:hover {
    background: white;
    color: #3b36d0;
}

/* Application Form Styles */
.application-form-container {
    background-color: white;
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
}

.application-form-title {
    font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    font-weight: bold;
    color: #3b36d0;
    line-height: 65px;
}

.application-form-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.application-form-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.application-form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.application-form-field-full {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.application-form-label {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    font-family: 'Inter Tight', sans-serif;
    color: #3b36d0;
    line-height: normal;
}

.application-form-input {
    font-family: 'Inter Tight', sans-serif;
    color: #3b36d0;
    border: none;
    outline: none;
    background: transparent;
    padding: 0;
    width: 100%;
}

.application-form-input::placeholder {
    color: #3b36d0;
    opacity: 1;
}

.application-form-line {
    width: 100%;
    height: 1px;
    background-color: #E1E1E1;
}

.application-form-info {
    font-family: 'Inter Tight', sans-serif;
    color: #3b36d0;
    line-height: normal;
}

.application-form-submit {
    background: #3b36d0;
    border: 1px solid #3b36d0;
    border-radius: 50px;
    padding: 12px 48px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 24px;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
    width: 100%;
    border: 1px solid #3b36d0;
}

.application-form-submit:hover {
    background: white;
    color: #3b36d0;
}

.application-form-submit:focus {
    outline: none;
}

/* Cooperation Form Styles */
.cooperation-form-container {
    background-color: white;
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
}

.cooperation-form-header {
    display: flex;
    flex-direction: column;
    color: #3b36d0;
}

.cooperation-form-title {
    font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
    font-weight: bold;
    color: #3b36d0;
    line-height: 65px;
}

.cooperation-form-description {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    color: #3b36d0;
    line-height: normal;
}

.cooperation-form-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.cooperation-form-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.cooperation-form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cooperation-form-input {
    font-family: 'Inter Tight', sans-serif;
    color: #3b36d0;
    border: none;
    outline: none;
    background: transparent;
    padding: 0;
    width: 100%;
}

.cooperation-form-input::placeholder {
    color: #3b36d0;
    opacity: 1;
}

.cooperation-form-line {
    width: 100%;
    height: 1px;
    background-color: #E1E1E1;
}

.cooperation-form-checkboxes {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.cooperation-form-checkbox-item {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.cooperation-form-checkbox {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 6px solid #3b36d0;
    border-radius: 10px;
    background: #3b36d0;
    cursor: pointer;
    appearance: none;
    margin: 0;
}

.cooperation-form-checkbox:checked {
    background: white;
}

.cooperation-form-checkbox-label {
    font-family: 'Inter Tight', sans-serif;
    color: #3b36d0;
    line-height: normal;
    cursor: pointer;
}

.cooperation-form-submit {
    background: #3b36d0;
    border: 1px solid #3b36d0;
    border-radius: 50px;
    padding: 12px 48px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 24px;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
    width: 100%;
}

.cooperation-form-submit:hover {
    background: white;
    color: #3b36d0;
}

.cooperation-form-submit:focus {
    outline: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    padding: 20px;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner-container {
    max-width: 1280px;
    margin: 0 auto;
}

.cookie-banner-content {
    background: #fff;
    border-radius: 35px;
    padding: 32px 40px;
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cookie-banner-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cookie-banner-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: #3b36d0;
    margin: 0;
}

.cookie-banner-description {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #3b36d0;
    margin: 0;
}

.cookie-banner-link {
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #3b36d0;
    margin: 0;
}

.cookie-banner-link a {
    color: #3b36d0;
    text-decoration: underline;
    transition: opacity 0.2s;
}

.cookie-banner-link a:hover {
    opacity: 0.7;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 32px;
    border-radius: 50px;
    border: 1px solid #3b36d0;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: #3b36d0;
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #fff;
    color: #3b36d0;
}

.cookie-btn-decline {
    background: #fff;
    color: #3b36d0;
}

.cookie-btn-decline:hover {
    background: #3b36d0;
    color: #fff;
}

/* Desktop стили (по умолчанию для больших экранов) */
@media (min-width: 1361px) {
    .default-container {
        width: 100%;
        max-width: 1280px;
        padding: 40px 0;
        display: flex;
        flex-direction: column;
        gap: 64px;
        overflow: hidden;
    }

    .default-title {
        font-size: 64px;
        line-height: 65px;
        white-space: pre;
    }

    .default-content {
        font-size: 20px;
        line-height: 0;
    }

    .default-content p {
        line-height: normal;
    }

    .default-content ul li {
        margin-left: 30px;
    }

    .default-subtitle {
        font-size: 24px;
        line-height: normal;
    }

    .about-us-section {
        padding: 120px 0;
    }

    .about-us-section-title {
        font-size: 64px;
        line-height: 65px;
    }

    .about-us-input {
        font-size: 20px;
    }

    .about-us-info-text {
        font-size: 20px;
    }

    .about-us-button {
        font-size: 24px;
    }

    .contact-us-info-section {
        font-size: 20px;
    }

    .contact-us-form-section {
        padding: 120px 0;
    }

    .contact-us-form-title {
        font-size: 64px;
        line-height: 65px;
        margin-bottom: 64px;
    }

    .contact-us-form {
        gap: 32px;
    }

    .contact-us-input {
        font-size: 20px;
    }

    .contact-us-submit-button {
        padding: 12px 48px;
        font-size: 24px;
    }

    .application-form-container {
        padding: 120px 0;
        gap: 64px;
    }

    .application-form-title {
        font-size: 64px;
    }

    .application-form-wrapper {
        gap: 32px;
    }

    .application-form-label {
        font-size: 20px;
    }

    .application-form-input {
        font-size: 20px;
    }

    .application-form-info {
        font-size: 20px;
    }

    .application-form-submit {
        font-size: 24px;
        padding: 12px 48px;
    }

    .cooperation-form-container {
        padding: 120px 80px;
        gap: 64px;
    }

    .cooperation-form-header {
        gap: 24px;
    }

    .cooperation-form-title {
        font-size: 64px;
    }

    .cooperation-form-description {
        font-size: 24px;
    }

    .cooperation-form-wrapper {
        gap: 32px;
    }

    .cooperation-form-input {
        font-size: 20px;
    }

    .cooperation-form-checkboxes {
        gap: 24px;
    }

    .cooperation-form-checkbox-item {
        gap: 24px;
    }

    .cooperation-form-checkbox-label {
        font-size: 20px;
    }

    .cooperation-form-submit {
        font-size: 24px;
        padding: 12px 48px;
    }
}

/* Tablet Styles (850px - 1360px) */
@media (max-width: 1360px) {
    .header {
        padding: 14px 24px;
    }

    .logo {
        height: 28.5px;
        width: 42.5px;
    }

    .nav {
        gap: 8px;
    }

    .nav-item,
    .nav-item .dropdown-toggle {
        padding: 8px 16px;
        border-radius: 17px;
        font-size: 11px;
    }

    .nav-item.dropdown {
        padding: 0;
    }

    .dropdown-menu {
        left: 5px;
    }

    .switch-lang .language {
        padding: 8px 8px 8px 16px;
        border-radius: 17px;
        min-width: 70px;
    }

    .switch-lang .language span {
        font-size: 11px;
    }

    .switch-lang .content-lang {
        width: 75px;
    }

    .switch-lang .content-lang .language {
        padding: 8px;
    }

    .lang-img {
        width: 18px;
        height: 12px;
        margin-right: 5px;
    }

    .lang-img img {
        width: 18px;
        height: 12px;
    }


    .hero-section {
        height: auto;
    }

    .hero-desktop {
        width: 100%;
        padding-top: 70px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-text-wrapper {
        height: auto;
        gap: 170px;
        width: 100%;
    }

    .hero-title {
        font-size: 44px;
        line-height: 46px;
        width: 100%;
        max-width: 380px;
    }

    .hero-description {
        font-size: 17px;
        width: 100%;
        max-width: 380px;
    }

    .btn-primary {
        padding: 8px 32px;
    }

    .btn-primary p {
        font-size: 17px;
    }

    .icon-button {
        width: 36px;
        height: 36px;
    }

    .hero-image {
        width: 100%;
        height: 450px;
        right: -128px;
    }

    .hero-image::before {
        width: 348px;
        height: 348px;
    }

    .hero-section.v2 .hero-text-wrapper {
        gap: 60px;
    }

    .hero-section.v3 .hero-text-wrapper {
        gap: 160px;
    }

    .hero-section.v2 .hero-title,
    .hero-section.v3 .hero-title {
        font-size: 22px;
        line-height: normal;
        padding-top: 0;
    }

    .hero-section.v2 .hero-description,
    .hero-section.v3 .hero-description {
        font-size: 14px;
    }

    .work-stable-section {
        height: auto;
    }

    .work-stable-container {
        padding: 70px 24px 90px;
        position: relative;
        border-radius: 52px;
        background: #F4F7FF;
    }

    .work-stable-container::before {
        display: none;
    }

    .work-stable-bg {
        position: relative;
        height: auto;
    }

    .work-stable-image {
        width: 464px;
        height: 464px;
        top: -40px;
    }

    .work-stable-buttons {
        position: relative;
        left: auto;
        top: auto;
    }

    .work-stable-text {
        position: relative;
        left: auto;
        top: auto;
    }

    .work-stable-title {
        font-size: 44px;
        line-height: 46px;
        width: 100%;
        max-width: 412px;
    }

    .work-stable-desc {
        font-size: 14px;
        width: 100%;
        max-width: 392px;
        gap: 16px;
        margin-bottom: 27px;
    }

    .service-cards-inner {
        padding: 80px 24px;
        gap: 48px;
    }

    .service-cards-content {
        gap: 44px;
    }

    .section-title {
        font-size: 44px;
        line-height: 46px;
        width: 100%;
        max-width: 646px;
    }

    .cards-grid {
        gap: 12px;
    }

    .service-card {
        width: 33.333%;
        height: 226px;
        border-radius: 24px;
    }

    .service-card-content {
        height: 226px;
        padding: 16px;
    }

    .service-card-title {
        font-size: 17px;
    }

    .service-card-desc {
        font-size: 14px;
    }

    .steps-inner {
        padding: 80px 24px;
        gap: 48px;
    }

    .steps-content {
        gap: 48px;
    }

    .steps-grid {
        gap: 12px;
    }

    .steps-row {
        gap: 12px;
    }

    .step-card {
        width: 100%;
        height: 226px;
        border-radius: 24px;
    }

    .step-card-content {
        height: 226px;
        padding: 16px;
    }

    .step-number {
        font-size: 67px;
    }

    .step-text {
        font-size: 14px;
    }

    .step-details {
        gap: 12px;
    }

    .step-details-title {
        font-size: 14px;
    }

    .step-details-desc {
        font-size: 12px;
    }

    .step-01-img {
        width: 270px;
        height: 270px;
        top: -40px;
        left: initial;
        right: 0;
    }

    .step-02-img {
        width: 152px;
        height: 152px;
        top: -22px;
        left: initial;
        right: 0;
    }

    .step-04-left-img {
        width: 236px;
        height: 236px;
    }

    .step-04-right-img {
        width: 298px;
        height: 298px;
        left: initial;
        right: 0;
    }

    .cta-section {
        height: auto;
    }

    .cta-container {
        padding: 0;
    }

    .cta-box {
        position: relative;
        padding: 40px 56px;
        border-radius: 35px;
        align-items: flex-start;
        gap: 32px;
    }

    .cta-text {
        font-size: 44px;
        line-height: 46px;
        width: 100%;
        max-width: 654px;
    }

    .cta-arrow {
        width: 89px;
        height: 89px;
    }

    .benefits-inner {
        padding: 80px 24px;
        gap: 64px;
    }

    .benefits-content {
        gap: 64px;
    }

    .benefits-title {
        font-size: 44px;
        line-height: 46px;
        width: 100%;
    }

    .benefits-grid {
        gap: 12px;
    }

    .benefit-card {
        width: 100%;
        height: 295px;
        border-radius: 24px;
        padding: 16px;
        gap: 12px;
    }

    .benefit-text {
        gap: 6px;
    }

    .benefit-title {
        font-size: 17px;
    }

    .benefit-desc {
        font-size: 12px;
    }

    .benefit-button {
        width: 100%;
        padding: 8px 32px;
    }

    .benefit-button p {
        font-size: 10px;
    }

    .benefit-img-01 {
        width: 246px;
        height: 246px;
        top: -57px;
    }

    .benefit-img-02 {
        width: 206px;
        height: 206px;
        top: -35px;
    }

    .benefit-img-03 {
        width: 203px;
        height: 203px;
        top: -37px;
    }

    .faq-inner {
        padding: 56px 24px;
    }

    .faq-wrapper {
        gap: 40px;
    }

    .faq-title {
        font-size: 44px;
    }

    .faq-list {
        width: 100%;
        gap: 24px;
        max-width: 682px;
    }

    .faq-question {
        gap: 28px;
    }

    .faq-icon {
        width: 35px;
        height: 35px;
        margin-top: -5px;
    }

    .faq-question-text {
        font-size: 24px;
        letter-spacing: -1px;
    }

    .faq-answer p {
        font-size: 14px;
        padding-left: 62px;
    }

    .form-inner {
        padding: 80px 24px;
        gap: 48px;
    }

    .form-content {
        gap: 48px;
    }

    .form-title {
        font-size: 44px;
        line-height: 46px;
    }

    .form-grid {
        gap: 12px;
    }

    .form-row {
        gap: 12px;
    }

    .form-field {
        width: 50%;
    }

    .form-label {
        font-size: 17px;
    }

    .form-submit {
        padding: 8px 32px;
    }

    .form-submit p {
        font-size: 17px;
    }

    .footer-inner {
        padding: 80px 56px;
        gap: 48px;
    }

    .footer-content {
        gap: 48px;
    }

    .footer-top {
        gap: 40px;
    }

    .footer-logo {
        height: 35px;
        width: 144px;
    }

    .footer-nav {
        gap: 16px;
    }

    .footer-nav-column {
        gap: 16px;
    }

    .footer-nav-title {
        font-size: 14px;
    }

    .footer-nav-list {
        font-size: 12px;
        gap: 8px;
    }

    .footer-bottom {
        align-items: flex-start;
        gap: 24px;
    }

    .footer-legal {
        font-size: 10px;
        gap: 20px;
        align-items: flex-start;
    }

    .footer-social {
        gap: 20px;
    }

    .footer-social-icon {
        width: 11px;
        height: 11px;
    }

    .default-container {
        width: 100%;
        padding: 30px 24px;
        display: flex;
        flex-direction: column;
        gap: 44.444px;
    }

    .default-title {
        font-size: 44.444px;
        line-height: 45.139px;
        white-space: pre;
    }

    .default-content {
        font-size: 14px;
        line-height: 0;
    }

    .default-content p {
        line-height: normal;
    }

    .default-content ul li {
        margin-left: 21px;
    }

    .default-subtitle {
        font-size: 16.667px;
        line-height: normal;
    }

    .about-us-section {
        padding: 83.333px 24px;
    }

    .about-us-section-title {
        font-size: 44.444px;
        line-height: 45.139px;
    }

    .about-us-form {
        gap: 22.222px;
    }

    .about-us-form-row {
        gap: 11.111px;
    }

    .about-us-form-field {
        gap: 8.333px;
    }

    .about-us-form-field-full {
        gap: 8.333px;
    }

    .about-us-input {
        font-size: 13.889px;
    }

    .about-us-info-text {
        font-size: 13.889px;
    }

    .about-us-button {
        padding: 8.333px 33.333px;
        font-size: 16.667px;
        border-radius: 34.722px;
    }

    .contact-us-info-section {
        font-size: 13.889px;
    }

    .contact-us-form-section {
        padding: 83.333px 24px;
    }

    .contact-us-form-title {
        font-size: 44.444px;
        line-height: 45.139px;
        margin-bottom: 44.444px;
    }

    .contact-us-form {
        gap: 22.222px;
    }

    .contact-us-form-row {
        gap: 11.111px;
    }

    .contact-us-form-field {
        gap: 8.333px;
    }

    .contact-us-form-field-full {
        gap: 8.333px;
    }

    .contact-us-input {
        font-size: 13.889px;
    }

    .contact-us-submit-button {
        padding: 8.333px 33.333px;
        font-size: 16.667px;
        border-radius: 34.722px;
    }

    .application-form-container {
        padding: 83.333px 24px;
        gap: 44.444px;
    }

    .application-form-title {
        font-size: 44.444px;
        line-height: 45.139px;
    }

    .application-form-wrapper {
        gap: 22.222px;
    }

    .application-form-row {
        gap: 11.111px;
    }

    .application-form-field {
        gap: 8.333px;
    }

    .application-form-field-full {
        gap: 8.333px;
    }

    .application-form-label {
        font-size: 13.889px;
    }

    .application-form-input {
        font-size: 13.889px;
    }

    .application-form-info {
        font-size: 13.889px;
    }

    .application-form-submit {
        font-size: 16.667px;
        padding: 8.333px 33.333px;
        border-radius: 34.722px;
    }

    .cooperation-form-container {
        padding: 83.333px 55.556px;
        gap: 44.444px;
    }

    .cooperation-form-header {
        gap: 16.667px;
    }

    .cooperation-form-title {
        font-size: 44.444px;
        line-height: 45.139px;
    }

    .cooperation-form-description {
        font-size: 16.667px;
    }

    .cooperation-form-wrapper {
        gap: 22.222px;
    }

    .cooperation-form-row {
        gap: 11.111px;
    }

    .cooperation-form-field {
        gap: 8.333px;
    }

    .cooperation-form-input {
        font-size: 13.889px;
    }

    .cooperation-form-checkboxes {
        gap: 16.667px;
    }

    .cooperation-form-checkbox-item {
        gap: 16.667px;
    }

    .cooperation-form-checkbox {
        width: 13.889px;
        height: 13.889px;
        min-width: 13.889px;
        border-width: 4.167px;
    }

    .cooperation-form-checkbox-label {
        font-size: 13.889px;
    }

    .cooperation-form-submit {
        font-size: 16.667px;
        padding: 8.333px 33.333px;
        border-radius: 34.722px;
    }
    .cookie-banner {
        padding: 16px;
    }

    .cookie-banner-content {
        border-radius: 24px;
        padding: 24px 28px;
        gap: 24px;
    }

    .cookie-banner-title {
        font-size: 20px;
    }

    .cookie-banner-description {
        font-size: 14px;
    }

    .cookie-banner-link {
        font-size: 12px;
    }

    .cookie-btn {
        font-size: 14px;
        padding: 10px 24px;
    }
}

@media (max-width: 1300px) {
    .hero-image {
        right: 15%;
        transform: translateX(40%);
    }
}

/* Mobile Styles (до 850px) */
@media (max-width: 850px) {
    .header {
        padding: 20px 25px;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 999;
    }

    .header-content {
        max-width: none;
    }

    .mobile-content {
        display: block;
    }

    /* Кнопка бургера */
    .menu-button {
        top: 24px;
        right: 24px;
        z-index: 40;
        background-color: #3b36d0;
        color: white;
        border: none;
        padding: 10px;
        border-radius: 50%;
        cursor: pointer;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s;
        margin-left: 10px;
    }

    .menu-button:hover {
        background-color: #2f2ba8;
    }

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

    /* Оверлей */
    .overlay {
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 50;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s, visibility 0.2s;
    }

    .overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Меню */
    .menu-container {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 448px;
        z-index: 50;
        transform: translateX(100%);
        transition: transform 0.3s ease-out;
    }

    .menu-container.active {
        transform: translateX(0);
    }

    .menu-wrapper {
        height: 100%;
        padding: 8px;
    }

    /* Кнопка закрытия */
    .close-button {
        position: absolute;
        top: 32px;
        right: 24px;
        background-color: rgba(255, 255, 255, 0.2);
        color: white;
        border: none;
        padding: 8px;
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.3s;
        z-index: 1003;
    }

    .close-button:hover {
        background-color: rgba(255, 255, 255, 0.3);
    }

    .close-button svg {
        width: 28px;
        height: 28px;
        display: block;
    }

    /* Мобильное меню */
    .mobile-menu {
        background-color: #3b36d0;
        border-radius: 25px;
        width: 100%;
        padding-bottom: 80px;
    }

    .menu-content {
        display: flex;
        flex-direction: column;
        gap: 36px;
        padding: 24px;
        height: 100%;
    }

    /* Header с логотипом и языком */
    .menu-header {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        width: 100%;
    }

    .logo {
        width: 75px;
        height: 51px;
        position: relative;
    }

    .logo svg {
        width: 100%;
        height: 100%;
    }

    .language-selector {
        background-color: white;
        display: flex;
        gap: 10px;
        align-items: center;
        justify-content: center;
        padding: 12px 24px;
        border-radius: 24px;
        margin-right: 48px;
    }

    .flag {
        background-color: #1a47b8;
        height: 17px;
        width: 25px;
        border-radius: 3px;
        border: 1px solid #3b36d0;
        overflow: hidden;
        position: relative;
    }

    .flag-white {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 33.33%;
        background-color: white;
    }

    .flag-red {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 33.33%;
        background-color: #F93939;
    }

    .language-text {
        font-family: 'Inter Tight', sans-serif;
        color: #3b36d0;
        font-size: 16px;
    }

    /* Разделы */
    .section {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .section-title {
        font-family: 'Helvetica Neue', sans-serif;
        font-weight: bold;
        font-size: 20px;
    }

    .section-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
        font-family: 'Helvetica Neue', sans-serif;
        font-size: 16px;
        line-height: 1.1;
        color: #fff;
        text-decoration: none;
    }

    .section-list a {
        cursor: pointer;
        transition: opacity 0.2s;
        color: #fff;
        text-decoration: none;
    }

    .section-list a:hover {
        opacity: 0.8;
    }

    .section-list .dropdown-mobile ul {
        padding-left: 20px;
        margin-top: 10px;
    }

    .section-list .dropdown-mobile li {
        margin-bottom: 5px;
    }

    .logo {
        height: 41px;
        width: 61px;
    }

    .nav {
        display: none;
    }

    .mobile-lang {
        display: flex;
    }

    .hero-desktop {
        display: none;
    }

    .hero-mobile {
        display: flex;
        padding-top: 50px;
    }

    .hero-section {
        height: auto;
    }

    .hero-container {
        height: auto;
        padding: 30px 25px;
    }

    .hero-content-wrapper {
        max-width: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .hero-mobile .hero-text {
        gap: 16px;
        order: 2;
        margin-top: -20px;
    }

    .hero-mobile .hero-title {
        font-size: 36px;
        line-height: normal;
        width: 100%;
        max-width: 100%;
    }

    .hero-mobile .hero-description {
        font-size: 16px;
        line-height: normal;
        width: 100%;
        max-width: 100%;
    }

    .hero-mobile .hero-image {
        width: 100%;
        max-height: 388px;
        position: relative;
        right: initial;
        transform: initial;
        top: initial;
        order: 1;
    }

    .hero-mobile .btn-primary {
        padding: 8.333px 33.333px;
        border-radius: 34.722px;
        min-width: 246px;
        font-size: 16px;
    }

    .hero-mobile .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .hero-mobile .icon-button {
        width: 36.806px;
        height: 36.806px;
    }

    .hero-buttons {
        order: 3;
    }

    .lang-selector p {
        font-size: 16px;
    }

    .work-stable-section {
        display: none;
    }

    .work-stable-mobile {
        display: block;
        position: relative;
        width: 100%;
        padding: 30px 0;
        border-radius: 35px;
        background: #F4F7FF;
    }

    .work-stable-mobile-inner {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        height: 100%;
    }

    .work-stable-mobile-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
        padding: 0 25px;
        position: relative;
        width: 100%;
    }

    .work-stable-mobile .hero-text {
        display: flex;
        flex-direction: column;
        gap: 24px;
        color: #3b36d0;
        order: 2;
    }

    .hero-buttons {
        order: 3;
    }

    .hero-image img {
        position: relative;
        left: initial;
        top: initial;
        transform: none;
    }

    .work-stable-mobile .hero-title {
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        font-weight: 700;
        font-size: 36px;
        line-height: normal;
        word-wrap: break-word;
    }

    .work-stable-mobile-desc {
        display: flex;
        flex-direction: column;
        font-family: 'Inter Tight', sans-serif;
        gap: 16px;
        align-items: flex-start;
        line-height: normal;
        font-size: 16px;
    }

    .work-stable-mobile-image {
        width: 100%;
        position: relative;
        background: #f4f7ff;
        border-radius: 34.722px;
        max-height: 362px;
    }

    .work-stable-mobile-image img {
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .work-stable-mobile .btn-primary {
        padding: 8.333px 33.333px;
        border-radius: 34.722px;
        font-size: 16px;
        min-width: 246px;
    }

    .work-stable-mobile .icon-button {
        width: 36.806px;
        height: 36.806px;
    }

    .content-wrapper {
        max-width: none;
    }

    .service-cards-inner {
        padding: 30px 24px;
        gap: 40px;
    }

    .service-cards-content {
        max-width: none;
        gap: 40px;
    }

    .section-title {
        font-size: 36px;
        line-height: normal;
        width: 100%;
    }

    .cards-grid {
        gap: 12px;
        flex-direction: column;
    }

    .service-card {
        width: 100%;
        height: 226px;
        border-radius: 24px;
    }

    .service-card-content {
        height: 226px;
        padding: 16.667px;
    }

    .service-card-title {
        font-size: 16.667px;
    }

    .service-card-desc {
        font-size: 13.889px;
    }

    .steps-inner {
        padding: 30px 24px;
        gap: 40px;
    }

    .steps-content {
        max-width: none;
        gap: 40px;
    }

    .steps-grid {
        gap: 12px;
    }

    .steps-row {
        gap: 12px;
        flex-direction: column;
    }

    .step-card {
        height: 100%;
        border-radius: 24px;
    }

    .step-card-content {
        height: 100%;
        padding: 16.667px;
    }

    .step-number {
        font-size: 66.667px;
        order: 2;
    }

    .step-number p {
        font-size: 48px;
        position: relative;
        z-index: 2;
        margin-top: -30px;
    }

    .step-text {
        font-size: 24px;
        order: 3;
    }

    .step-details {
        gap: 11.111px;
        order: 3;
    }

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

    .step-details-desc {
        font-size: 14px;
    }

    .step-decorative-img {
        top: initial;
        left: initial;
        right: initial;
        position: relative;
        max-height: 308px;
        height: 100%;
        width: 100%;
        order: 1;
    }

    .cta-container {
        padding: 0 25px;
        max-width: none;
    }

    .cta-box {
        padding: 25px;
        border-radius: 35px;
        gap: 24px;
        align-items: center;
    }

    .cta-text {
        font-size: 24px;
        line-height: normal;
        width: 100%;
    }

    .cta-arrow {
        width: 83.333px;
        height: 83.333px;
    }

    .benefits-inner {
        padding: 30px 24px;
        gap: 48px;
    }

    .benefits-content {
        max-width: none;
        gap: 48px;
    }

    .benefits-title {
        font-size: 36px;
        line-height: normal;
        width: 100%;
    }

    .benefits-grid {
        gap: 12px;
        flex-direction: column;
    }

    .benefit-card {
        width: 100%;
        height: 100%;
        border-radius: 24px;
        padding: 16.667px;
        gap: 11.111px;
    }

    .benefit-text {
        gap: 5.556px;
        order: 2;
        margin-top: -40px;
    }

    .benefit-title {
        font-size: 16.667px;
    }

    .benefit-desc {
        font-size: 11.111px;
    }

    .benefit-button {
        width: 100%;
        padding: 8.333px 33.333px;
        order: 3;
    }

    .benefit-button p {
        font-size: 9.722px;
    }

    .benefit-img-01 {
        width: 245.833px;
        height: 245.833px;
        margin-bottom: -20px;
    }

    .benefit-img-02 {
        width: 205.556px;
    }

    .benefit-img-03 {
        width: 202.778px;
    }

    .benefit-img-01,
    .benefit-img-02,
    .benefit-img-03 {
        position: relative;
        left: initial;
        transform: initial;
        order: 1;
        top: -30px;
    }

    .faq-inner {
        padding: 25px;
    }

    .faq-content {
        max-width: none;
    }

    .faq-wrapper {
        gap: 6.944px;
        flex-direction: column;
    }

    .faq-title {
        font-size: 44.444px;
        margin-bottom: 24px;
    }

    .faq-list {
        gap: 34px;
    }

    .faq-question {
        gap: 24px;
        flex-wrap: wrap;
    }

    .faq-item {
        flex-direction: initial;
        flex-wrap: wrap;
    }

    .faq-question div {
        flex: initial !important;
    }

    .faq-icon {
        width: 34.722px;
        height: 34.722px;
    }

    .faq-question-text {
        font-size: 25px;
        width: 100%;
        letter-spacing: -1px;
        min-width: 100%;
    }

    .faq-answer p {
        font-size: 13.889px;
        padding-left: 0;
    }

    .form-inner {
        padding: 30px 24px;
        gap: 44.444px;
    }

    .form-content {
        max-width: none;
        gap: 32px;
    }

    .form-title {
        font-size: 32px;
        line-height: normal;
    }

    .form-grid {
        gap: 16px;
    }

    .form-row {
        gap: 16px;
        flex-direction: column;
        margin-bottom: 0;
    }

    .form-field {
        gap: 8.333px;
        width: 100%;
    }

    .form-label {
        font-size: 16.667px;
    }

    .form-submit {
        padding: 8.333px 33.333px;
        width: 100%;
        font-size: 14px;
    }

    .footer-inner {
        padding: 30px 24px;
        gap: 44.444px;
    }

    .footer-content {
        max-width: none;
        gap: 44.444px;
    }

    .footer-top {
        gap: 22.222px;
        flex-direction: column;
    }

    .footer-logo {
        height: 35.417px;
        width: 143.75px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 13.889px;
        width: 100%;
    }

    .footer-nav-column {
        gap: 13.889px;
    }

    .footer-nav-title {
        font-size: 20px;
    }

    .footer-nav-list {
        font-size: 11.111px;
        gap: 6.944px;
    }

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

    .footer-legal {
        font-size: 9.722px;
        gap: 13.889px;
        flex-direction: column;
    }

    .footer-social {
        gap: 20.833px;
    }

    .footer-social-icon {
        width: 11.111px;
        height: 11.111px;
    }

    .switch-lang .language {
        padding: 12px 24px;
        border-radius: 24px;
    }

    .switch-lang .language span {
        font-size: 16px;
    }

    .switch-lang .content-lang {
        min-width: 100px;
        width: 100px;
        right: 8px;
    }

    .lang-img {
        width: 24px;
        height: 16px;
        margin-right: 10px;
    }

    .lang-img img {
        width: 24px;
        height: 16px;
    }

    .default-container {
        width: 100%;
        padding: 100px 24px 30px;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .default-title {
        font-size: 24px;
        line-height: normal;
        white-space: normal;
        max-width: 274px;
        margin-left: auto;
        margin-right: auto;
    }

    .default-content {
        font-size: 16px;
        line-height: normal;
    }

    .default-content p {
        line-height: normal;
    }

    .default-content ul li {
        margin-left: 0;
        padding-left: 20px;
    }

    .default-subtitle {
        font-size: 14px;
        line-height: normal;
    }

    .about-us-section {
        padding: 30px 24px;
    }

    .about-us-section-title {
        font-size: 24px;
        line-height: normal;
    }

    .about-us-form {
        gap: 32px;
    }

    .about-us-form-row {
        flex-direction: column;
        gap: 32px;
    }

    .about-us-form-field {
        gap: 12px;
    }

    .about-us-form-field-full {
        gap: 12px;
    }

    .about-us-input {
        font-size: 16px;
    }

    .about-us-info-text {
        font-size: 16px;
    }

    .about-us-button {
        padding: 12px 48px;
        font-size: 24px;
    }

    .contact-us-header {
        gap: 8px;
    }

    .contact-us-info-section {
        font-size: 16px;
    }

    .contact-us-form-section {
        padding: 30px 24px;
    }

    .contact-us-form-title {
        font-size: 24px;
        line-height: normal;
        margin-bottom: 32px;
    }

    .contact-us-form {
        gap: 32px;
    }

    .contact-us-form-row {
        flex-direction: column;
        gap: 32px;
    }

    .contact-us-form-field {
        gap: 12px;
    }

    .contact-us-form-field-full {
        gap: 12px;
    }

    .contact-us-input {
        font-size: 16px;
    }

    .contact-us-submit-button {
        padding: 12px 48px;
        font-size: 24px;
    }

    .application-form-container {
        padding: 30px 24px;
        gap: 32px;
    }

    .application-form-title {
        font-size: 24px;
        line-height: normal;
    }

    .application-form-wrapper {
        gap: 32px;
    }

    .application-form-row {
        flex-direction: column;
        gap: 32px;
    }

    .application-form-field {
        gap: 12px;
    }

    .application-form-field-full {
        gap: 12px;
    }

    .application-form-label {
        font-size: 16px;
    }

    .application-form-input {
        font-size: 16px;
    }

    .application-form-info {
        font-size: 14px;
    }

    .application-form-submit {
        font-size: 24px;
        padding: 12px 48px;
    }

    .cooperation-form-container {
        padding: 30px 25px;
        gap: 32px;
    }

    .cooperation-form-header {
        gap: 12px;
    }

    .cooperation-form-title {
        font-size: 24px;
        line-height: normal;
    }

    .cooperation-form-description {
        font-size: 20px;
    }

    .cooperation-form-wrapper {
        gap: 32px;
    }

    .cooperation-form-row {
        flex-direction: column;
        gap: 32px;
    }

    .cooperation-form-field {
        gap: 12px;
    }

    .cooperation-form-input {
        font-size: 16px;
    }

    .cooperation-form-checkboxes {
        gap: 24px;
    }

    .cooperation-form-checkbox-item {
        gap: 12px;
    }

    .cooperation-form-checkbox-label {
        font-size: 14px;
    }

    .cooperation-form-submit {
        font-size: 24px;
        padding: 12px 48px;
    }
    .cookie-banner {
        padding: 12px;
    }

    .cookie-banner-content {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        border-radius: 20px;
    }

    .cookie-banner-text {
        gap: 10px;
    }

    .cookie-banner-title {
        font-size: 18px;
    }

    .cookie-banner-description {
        font-size: 13px;
    }

    .cookie-banner-link {
        font-size: 11px;
    }

    .cookie-banner-buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .cookie-btn {
        width: 100%;
        font-size: 14px;
        padding: 12px 24px;
    }
}
