@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');
* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
body {
    background-color: #fff;
    margin: 0px;
    padding: 0px;
    background-image: url(../img/backg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.menu_action_header {
    background-color: #8B60FF;
}

.menu_action_background {
    background-size: cover;
    background-position: center;
    background-image: url(../img/star.svg);
}

.menu_action_container {
    max-width: 1920px;
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 0 346px;
    margin: auto;

    max-height: 200px;
    opacity: 1;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
}

.menu_action_container.hide {
    max-height: 0;
    opacity: 0;
    padding: 0 346px 0 346px;
}

.menu_action_inner p {
    font-family: Onest;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    color: #FFFFFF;
}

.menu_container {
    max-width: 1920px;
    margin: auto;
    padding: 0 346px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.menu_inner:last-child {
    display: flex;
    gap: 16px;
}

.menu_nav {
    display: flex;
    gap: 48px;
}

.menu_nav li {
    list-style: none;
}

.menu_link {
    font-family: Onest;
    font-weight: 500;
    font-style: Medium;
    text-decoration: none;
    color: #FFFFFFCC;
}


.menu_link:hover {
    color: #FFFFFF;
}


.menu_language {
    width: 165px;
    height: 46px;
    background-color: #FFFFFF29;
    border-radius: 1111px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Onest;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    color: #FFFFFF;
    border: 0px;
    cursor: pointer;
    padding: 0 20px;
    transition: all 0.3s ease;
    display: flex;
}

.menu_language:hover {
    background-color: #ffffff47;
}

.menu_order {
    width: 160px;
    height: 46px;
    background-color: #8B60FF;
    border-radius: 1111px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Onest;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    color: #FFFFFF;
    border: 0px;
    cursor: pointer;
    padding: 0 20px;
    transition: all 0.3s ease;
    display: flex;
}

.menu_order:hover {
    background-color: #9B76FF;
}

/* Бургер-меню */
.burger_menu_toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
    position: relative;
    transition: all 0.3s ease;
}

.burger_menu_toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.burger_line {
    width: 20px;
    height: 2px;
    background-color: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
    margin: 2.5px 0;
}

.burger_menu_toggle.active {
    background: rgba(139, 96, 255, 0.2);
    border-color: #8B60FF;
}

.burger_menu_toggle.active .burger_line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger_menu_toggle.active .burger_line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger_menu_toggle.active .burger_line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Мобильное меню */
.mobile_menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, #100D26 0%, #1A1538 100%);
    backdrop-filter: blur(30px);
    z-index: 10000;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile_menu_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.mobile_menu.active ~ .mobile_menu_overlay,
body.mobile_menu_open .mobile_menu_overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.mobile_menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../img/star.svg);
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    pointer-events: none;
}

.mobile_menu_content {
    position: relative;
    z-index: 1;
    padding: 100px 20px 40px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    max-width: 100%;
}

.mobile_menu_nav {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile_menu_nav li {
    list-style: none;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.4s ease forwards;
}

.mobile_menu.active .mobile_menu_nav li:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile_menu.active .mobile_menu_nav li:nth-child(2) {
    animation-delay: 0.2s;
}

.mobile_menu.active .mobile_menu_nav li:nth-child(3) {
    animation-delay: 0.3s;
}

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

.mobile_menu_link {
    font-family: Onest;
    font-weight: 500;
    font-size: 20px;
    text-decoration: none;
    color: #FFFFFF;
    display: block;
    padding: 16px 20px;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.mobile_menu_link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 96, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.mobile_menu_link:hover::before,
.mobile_menu_link:active::before {
    left: 100%;
}

.mobile_menu_link:hover,
.mobile_menu_link:active {
    color: #FFFFFF;
    background: rgba(139, 96, 255, 0.15);
    border-color: rgba(139, 96, 255, 0.5);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(139, 96, 255, 0.2);
}

.mobile_menu_actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    padding-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.4s, transform 0.4s ease 0.4s;
}

.mobile_menu.active .mobile_menu_actions {
    opacity: 1;
    transform: translateY(0);
}

.mobile_menu_language {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile_menu_language:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.mobile_menu_order {
    width: 100%;
    background-color: #8B60FF;
    border: none;
}

.mobile_menu_order:hover {
    background-color: #9B76FF;
}

.mobile_language_dropdown {
    width: 100%;
}

.mobile_language_options {
    position: static;
    margin-top: 8px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    background: rgba(16, 13, 38, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 8px;
}

.hero_container {
    max-width: 1920px;
    padding: 0 346px;
    margin: auto;
    text-align: center;
    margin-top: 59px;
}

.hero_inner h1 {
    font-family: Onest;
    font-weight: 500;
    font-style: Medium;
    font-size: 64px;
    background: linear-gradient(300deg, #A98CFF7A, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; 
    color: transparent;
    display: inline-block;
    margin: 0px;
}

.hero_inner span {
    border-radius: 1111px;
    
    padding: 8px 22px;
    
    border: 1px solid;
    border-image: linear-gradient(
        to bottom right,
        #D3B8FFDB 10%,
        transparent 33%,
        #D3B8FFDB 55%,
        #D3B8FFDB 70%,
        transparent 80%,
        #D3B8FFDB 100%
    ) 1;
    
    -webkit-mask: content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    
    background: rgba(0, 0, 0, 0.103);
    backdrop-filter: blur(10px);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}



.title {
      font-size: 64px;
      font-weight: 500  ;
      line-height: 60px;
      color: #e6e6f7;
      position: relative;
      font-family: onest;
}

.highlight {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50px;
    rotate: 2.5deg;
    display: inline-block;
    border: 4px solid transparent; 
    border-image-source: radial-gradient(
            26.93% 114.11% at 58.31% 12.39%,
            rgba(211, 184, 255, 0.86) 0%,
            rgba(211, 184, 255, 0.12) 29.01%,
            rgba(211, 184, 255, 0.12) 82.03%,
            rgba(211, 184, 255, 0.86) 100%
    );
    border-image-slice: 1;    
    backdrop-filter: blur(18px);
    margin-top: -30px;
}


.hero_title {
    font-family: Onest;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    color: #FFFFFFA6;
    margin: 0px;
    padding-top: 31px;
    padding-bottom: 31px;
}


.hero_flex {
    display: flex;  
    gap: 24px;
    justify-content: center;
}

.hero_technical {
    width: 198px;
    height: 46px;
    border-radius: 1111px;
    background-color: #8B60FF;
    color: #FFFFFF;
    font-family: Onest;
    border: 0px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero_technical:hover {
    background-color: #9B76FF;
}


.hero_contact {
    width: 249px;
    height: 46px;
    border-radius: 1111px;
    border: 1px solid #FFFFFF59;
    background-color: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    cursor: pointer;
    color: #FFFFFF;
    transition: all 0.3s ease;
}


.hero_contact:hover {
    border: 1px solid #FFFFFF;
}


.peculiarities_container {
    max-width: 1920px;
    margin: auto;
    padding: 0 346px;
    display: flex;
    margin-top: 58px;
}

/* Добавляем стили для SVG в peculiarities_container */
.peculiarities_inner svg,
.peculiarities_inner_end svg {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 13px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(255, 255, 255, 0.1);
}

/* Добавляем стеклянный эффект с белым цветом в углах */
.peculiarities_inner svg::before,
.peculiarities_inner_end svg::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.3);
    bottom: 5px;
    left: 5px;
    border-radius: 50%;
    filter: blur(3px);
    z-index: -1;
}

.peculiarities_inner svg::after,
.peculiarities_inner_end svg::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.3);
    top: 5px;
    right: 5px;
    border-radius: 50%;
    filter: blur(3px);
    z-index: -1;
}

/* Добавляем эффект при наведении */
.peculiarities_inner svg:hover,
.peculiarities_inner_end svg:hover {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.15);
}

/* Стилизуем прямоугольник внутри SVG */
.peculiarities_inner svg rect,
.peculiarities_inner_end svg rect {
    transition: all 0.3s ease;
    fill: rgba(255, 255, 255, 0.08);
}

.peculiarities_inner svg:hover rect,
.peculiarities_inner_end svg:hover rect {
    fill: rgba(255, 255, 255, 0.15);
}

.peculiarities_inner {
    width: 382px;
    text-align: center;
    border-right: 1px solid #FFFFFF29;
}

.peculiarities_inner_end {
    width: 382px;
    text-align: center;
}

.peculiarities_text {
    font-family: Onest;
    font-weight: 500;
    font-style: Medium;
    font-size: 24px;
    text-align: center;
    color: #FFFFFF;
    margin: 0px;
    padding-top: 23px;
}

.peculiarities_paragraph {
    font-family: Onest;
    font-weight: 400;
    font-style: Regular;
    font-size: 15px;
    color: #FFFFFF;
    margin: 0px;
    margin-top: 12px;
    padding: 0 10px;
}


.peculiarities_paragraph:first-child {
    text-align: start;
}


.our_developers_cont {
    display: flex;
    justify-content: space-between;
    padding: 0 346px;
    margin: auto;
    max-width: 1920px;
    margin-top: 120px;
}

.our_developer_inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.our_developer_inner h1 {
    font-family: Onest;
    font-weight: 500;
    font-style: Medium;
    font-size: 48px;
    margin: 0px;
    color: #FFFFFF;
}


.our_developer_inner button {
    width: 168px;
    height: 46px;
    border: 1px solid #FFFFFF;
    background-color: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #FFFFFF;
    font-family: Onest;
    border-radius: 1111px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our_developer_inner button:hover {
    border: 1px solid #FFFFFF59;
}


.our_developer_inners {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.our_developer_inners img {
    transition: all 0.3s ease;
}


.our_developer_container {
    display: flex;
    justify-content: center; 
    max-width: 1920px;
    padding: 0 346px;
    margin: auto;
}
 
    
.our_developer-name {
    font-family: Onest;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    color: #FFFFFF;
    margin: 0px;
    position: absolute;
    bottom: 53px;
    z-index: 9999;
    margin-left: 28px;
}

.our_developer-description {
    font-family: Onest;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 22px;
    color: #FFFFFF;
    margin: 0px;
    position: absolute;
    bottom: 24px;
    z-index: 9999;
    margin-left: 28px;
}


.our_developer_inners::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 00px;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    pointer-events: none; 
}

.our_developer_inners img:hover {
    transform: scale(1.1);
}



.profile_services_cont {
    max-width: 1920px;
    margin: auto;
    padding: 0 346px;
    display: flex;
    justify-content: space-between;
    margin-top: 123px;
    align-items: center;
}

.profile_services_in p {
    font-family: Onest;
    font-weight: 500;
    font-style: Medium;
    font-size: 44px;
    color: #1C1B27;
}

.profile_services_in {
    display: flex;
    gap: 16px;
}

.profile_services_button {
    padding: 10px;
    background-color: #FFFFFF;
    border-radius: 1111px;
    cursor: pointer;
    border: 0px;
    font-family: Onest;
    font-weight: 500;
}


.profile_services_button span {
    color: #1C1B2780;
}

.profile_services_button_active {
    color: #FFFFFF;
    background-color: #1C1B27;
    font-family: Onest;
    font-weight: 500;
    padding: 9px 16px;
}


.profile_services_button_active span {
    color: #FFFFFF80;
}


.profile_services_container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 20px;
}

.profile_services_wrapper {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none; /* Убираем полосу прокрутки для Firefox */
  gap: 12px;
  padding: 20px 325px;
  -webkit-overflow-scrolling: touch;
  cursor: grab; /* Добавляем курсор "рука" для указания возможности перетаскивания */
}

/* Убираем полосу прокрутки для Chrome, Safari и других браузеров */
.profile_services_wrapper::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

/* Убираем стили для полосы прокрутки */
.profile_services_wrapper::-webkit-scrollbar-track {
  display: none;
}

.profile_services_wrapper::-webkit-scrollbar-thumb {
  display: none;
}

.profile_services_inner {
  width: 237px;
  min-width: 237px;
  height: 126px;
  background-color: #FFFFFF;
  border-radius: 24px;
  padding-left: 20px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.profile_services_inner:hover {
  background-color: #F1F3F9;
  border: 2px solid #1C1B2708;
}

.profile_svgs {
  width: 40px;
  height: 40px;
  background-color: #A247FB1F;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile_svgs:hover {
  background-color: #A247FB1F;
}

.profile_services_inner p {
  font-family: Onest;
  font-weight: 500;
  font-size: 20px;
  color: #1C1B27;
  margin: 0;
  padding-top: 20px;
}



.partipication_container {
    max-width: 1920px;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.partipication_text {
    color: #000000;
    font-family: Onest;
    font-weight: 500;
    font-style: Medium;
    font-size: 44px;
    padding-top: 100px;
    justify-content: center;
    margin: auto;
}

.partipication_inner {
    width: 396px;   
    background-color: #FFFFFFC2;
    border-radius: 32px;
    margin-top: 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Базовый стиль для изображений */
.partipication_inner img {
    width: 100%;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none; /* Запрещаем взаимодействие с изображением */
    user-select: none; /* Запрещаем выделение */
    -webkit-user-drag: none; /* Запрещаем перетаскивание */
    transform-origin: center;
}

.studio_prog_button span, .studio_design_button span {
    position: relative;
}

.studio_prog_button:hover span::after, .studio_design_button:hover span::after {
    background-color: #FFFFFF59;
}

.hero_contact a {
    position: relative;
}

.hero_contact:hover a::after {
    background-color: #FFFFFF;
}

.partipication-content {
    transition: transform 0.4s ease;
}

.partipication_title {
    margin: 0px;
    font-family: Onest;
    font-weight: 500;
    font-style: Medium;
    font-size: 24px;
    text-align: center;
    color: #000000;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.partipication_description {
    font-family: Onest;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    text-align: center;
    color: #00000080;
    width: 356px;
    margin: auto;
    padding-top: 12px;
    padding-bottom: 28px;
    transition: color 0.3s ease;
}


.technologies_container {
    max-width: 1144px;
    margin: auto;
    margin-top: 120px;
    text-align: center;
    justify-content: center;
}


.technologies_text {
    width: 169px;
    height: 36px;
    border: 2.5px solid #1C1B274A;
    border-radius: 1172.18px;
    opacity: 1;

    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: Onest;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    text-align: center;
    color: #FFFFFF;
}


.technologies_paragraph {
    text-align: center;
    margin-top: 28px;
    margin-bottom: 28px;
}


.technologies_description {
    font-family: Onest;
    font-weight: 400;
    font-style: Regular;
    font-size: 18.99px;
    text-align: center;
    color: #FFFFFFBF;
}


.technologies_second-inner {
    width: 100%;
    display: flex;
    margin-top: 28px;
    flex-wrap: wrap;
}

.technologies_second_inside {
    width: 228px;
    height: 93.25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #FFFFFF29;
    border-bottom: 1px solid #FFFFFF29;
    transition: all 0.3s ease;
}

.technologies_second_inside svg path,
.technologies_second_inside svg g {
    transition: fill-opacity 0.3s ease;
}

.technologies_second_inside:hover svg path[fill="white"][fill-opacity="0.5"],
.technologies_second_inside:hover svg g[fill="white"][fill-opacity="0.5"] {
    fill-opacity: 1 !important;
}

.technologies_second_inside:nth-child(5) {
    border-right: 0px;
}

.technologies_second_inside:nth-child(10) {
    border-right: 0px;
}

.technologies_second_inside:nth-child(15) {
    border-right: 0px;
}



.technologies_second_inside:nth-child(16) ,
.technologies_second_inside:nth-child(17) ,
.technologies_second_inside:nth-child(18) ,
.technologies_second_inside:nth-child(19) {
    border-bottom: 0px;
}


.technologies_second_inside:nth-child(20) {
    border-right: 0px;
    border-bottom: 0px;
}


.studio_container {
    max-width: 1084px;
    margin: auto;
    padding: 0 346;
}


.studio_first_inner {
    margin: auto;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.studio_first_inner img {
  pointer-events: none; 
  user-select: none; 
  -webkit-user-drag: none; 
  touch-action: none;
}

.studio_first_buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: -180px;
}

.studio_prog_button {
    width: 250px;
    height: 46px;
    border: 1px solid #FFFFFF;
    border-radius: 1111px;
    background-color: inherit;
    color: #FFFFFF;
    font-family: Onest;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.studio_prog_button:hover {
    border: 1px solid #FFFFFF59;
}

.studio_design_button {
    width: 153px;
    height: 46px;
    border: 1px solid #FFFFFF;
    border-radius: 1111px;
    color: #FFFFFF;
    font-family: Onest;
    background-color: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.studio_design_button:hover {
    border: 1px solid #FFFFFF59;
}

.studio_second_inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.studio_inside_inner {
    flex: 1;  
    border-right: 1px solid #FFFFFF29;
    text-align: center;
    margin-top: 54px;
    padding: 0 20px;    
}

.studio_inside_inner:last-child {
    border-right: 0;
}

.studio_inside_text {
    font-family: Onest;
    font-weight: 500;
    font-size: 24px;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
    padding-top: 35px;
}

.studio_inside_description {
    font-family: Onest;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
    padding-top: 15px;
}

 .studio_inside_inner:nth-child(3) .studio_inside_text {
    margin-top: -15px; /* или меньше, чем у остальных */
}


.faq_container {
    max-width: 1228px;
    margin: auto;
    justify-content: center;
    text-align: center;
    margin-top: 120px;
}

.faq_first_title {
    margin: 0px;
    font-family: Onest;
    font-weight: 500;
    font-style: Medium;
    font-size: 64px;
    text-align: center;

    background: -webkit-linear-gradient( #FFFFFF  ,  #A98CFF7A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}


.faq_second_inner {
    width: 712px;
    margin: auto;
    justify-content: center;
    margin-top: 32px;
}

.faq_inside_question {
    width: 100%;
    background-color: #FFFFFF14;
    height: 64px;
    display: flex;
    justify-content: space-between;
    border-radius: 16px;
    margin-top: 12px;
    align-items: center;
    cursor: pointer;
    border: 1px solid #FFFFFF14;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
    position: relative;
}

.faq_inside_question:hover {
    background-color: #FFFFFF1A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq_inside_question.active {
    border: 1px solid #8a60ff;
    background-color: #FFFFFF1A;
    transform: translateY(-2px);
}

.faq_question {
    font-family: Onest;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    letter-spacing: 0%;
    color: #FFFFFF;
    margin-left: 24px;

}

.arrow-icon {
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
    transition: none !important;
    margin-left: 8px;
    vertical-align: middle;
}

.faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
    opacity: 0;
}

.faq_inside_question_active + .faq_answer {
    max-height: 500px;
    opacity: 1;
}


.faq_inside_question_button {
    width: 52px;
    height: 52px;
    background-color: #FFFFFF0F;
    border-radius: 10px;
    cursor: pointer;
    margin-right: 6px;
    border: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: center;
}

.faq_inside_question_button:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}



.faq_inside_question_button svg {
    position: absolute;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}


.icon_minus {
    opacity: 0;
    transform: rotate(-90deg) scale(0.8);
}

.icon_plus {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.faq_inside_question_active .icon_minus {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.faq_inside_question_active .icon_plus {
    opacity: 0;
    transform: rotate(90deg) scale(0.8);
}

.faq_inside_question_active .faq_inside_question_button {
    background-color: #8B60FF29;
}
.faq_inside_question_button_active {
    background-color: #8B60FF29;
}

.faq_answer_text {
    margin-left: 24px;
    width: 688px;
    text-align: start;
    line-height: 28px;
    font-family: Onest;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    color: #FFFFFFBF;

}



.details_container {
    width: 775px;
    margin: auto;
    margin-top: 129px;
    text-align: center;
    position: relative;
}

.details_container_img {
    margin: auto;
    position: absolute;
    left: -380px;
    top: -250px;
}
 
.details_container_img-2 {
    position: absolute;
    top: 350px;
    right: -220px;
}


.details_first_title {
    margin: 0px;
    font-family: Onest;
    font-weight: 500;
    font-style: Medium;
    font-size: 64px;
    text-align: center;

    background: -webkit-linear-gradient(#FFFFFF, #D6C8FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.details_first_inner {
    z-index: 9999;
    position: relative;
}

.details_first_description {
    font-family: Onest;
    font-weight: 400;
    font-style: Regular;
    font-size: 17px;
    text-align: center;
    color: #FFFFFFA6;
}


.details_second_inner {
    width: 666px;
    margin: auto;
    background-color: #FFFFFF14;
    border-radius: 24px;
    margin-top: 38px;
    padding: 0 24px;
    padding-top: 24px;
    position: relative ;
    z-index: 9999;
}

.details_second_contact {
    width: 100%;
    height: 46px;
    border-radius: 1111px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color:  transparent;
    border: 1px solid #FFFFFF59;
    color: #FFFFFF;
    cursor: pointer;
    font-family: Onest;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
}

.details_second_contact a {
    text-decoration: none;
    color: #FFFFFF;
    position: relative;
}

.details_second_contact span {
    width: 90px;
    height: 24px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1111px;
    background-color: #FFFFFF1F;
}


.details_second_or {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.details_second_or p {
    font-family: Onest;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    color: #FFFFFF80;
    margin: 0px;
}

.details_second_or_line {
    width: 214px;
    height: 1px;
    background-color: #FFFFFF3D;
}


.details_second_services_title {
    font-family: Onest;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    color: #FFFFFF80;
    margin: 0px;
    margin-top: 24px;
    text-align: start;
}


.details_second_services {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 16px;
}

.details_second_services button {
    height: 46px;
    border-radius: 1111px;
    border: 1px solid #FFFFFF2B;
    background-color: inherit;
    color: #FFFFFF;
    font-family: Onest;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
}

.details_second_services button:nth-child(1) {
    width: 146px;
}

.details_second_services button:nth-child(2) {
    width: 166px;
}

.details_second_services button:nth-child(3) {
    width: 117px;
}

.details_second_services button:nth-child(4) {
    width: 113px;
}

.details_second_services button:nth-child(5) {
    width: 81px;
}

.details_second_services button:nth-child(6) {
    width: 104px;
}

.details_second_services button:nth-child(7) {
    width: 143px;
}

.details_second_services button:nth-child(8) {
    width: 185px;
}


.details_second_services button:nth-child(9) {
    width: 113px;
}

.details_second_services button:nth-child(10) {
    width: 188px;
}

.details_second_services button:nth-child(11) {
    width: 118px;
}


.details_second_services button:nth-child(12) {
    width: 182px;
}

.details_second_services button:nth-child(13) {
    width: 141px;
}



.details_second_services button:hover {
    border: 1px solid #8B60FF;
}


.details_second_services button:focus {
    border: 1px solid #8B60FF;
}

.details_second_services button.selected {
    background-color: #8B60FF;
    border: 1px solid #8B60FF;
    color: #FFFFFF;
}

.details_second_services button.selected:hover {
    background-color: #7853dd;
    border: 1px solid #7853dd;
}


.details_button_go {
    width: 100%;
    height: 46px;
    background-color: #8B60FF;
    border-radius: 11111px;
    border: 0px;
    font-family: Onest;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    text-align: center;
    color: #FFFFFF;
    margin-top: 24px;
    margin-bottom: 24px;
    cursor: pointer;
    transition: all 0.3s ease;

}


.details_button_go:hover {
    background-color: #8a60ffac;
}

.details_button_go:disabled {
    background-color: #8B60FF50;
    cursor: not-allowed;
    opacity: 0.5;
}

.details_button_go:disabled:hover {
    background-color: #8B60FF50;
}

.faq-ripple-effect {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(1);
        opacity: 0;
    }
}



.footer_container {
    max-width: 1920px;
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 0 346px;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 53px;
}


.footer_left {
    display: flex;
    align-items: center;
}

 

.footer_nav {
    display: flex;
    list-style: none;
    gap: 24px;
}

.footer_link {
    font-family: Onest;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    color: #FFFFFF;
    text-decoration: none;
}

.footer_copy {
    font-family: Onest;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    text-align: center;
    color: #FFFFFF80;
    margin-left: 13px;
}

.footer_right {
    display: flex;
    gap: 8px;
}

.footer_right button {
    background-color: #FFFFFF29;
    border-radius: 1111px;
    cursor: pointer;
    border: 0px;
    height: 40px;            
    padding: 0 16px;          
    display: inline-flex;    
    align-items: center;   
    justify-content: center;  
    gap: 12px;
    color: #FFFFFF;
    font-family: Onest;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
}

.svg-container {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
    width: 396px;
    height: 200px;
}
    
.svg-original, .svg-animated {
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 1.5s ease;
}
    
.svg-animated {
    opacity: 0;
    filter: drop-shadow(0 0 5px rgba(139, 96, 255, 0.3));
}
    
.svg-container:hover .svg-original {
    opacity: 0;
}
    
.svg-container:hover .svg-animated {
    opacity: 1;
}

.partipication_container {
    position: relative;
    z-index: 2;
    margin-top: 20px;
    clear: both;
}

.partipication_text {
    margin-top: 30px;
}

.partipication_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.svg-animation-container {
    width: 100%;
    max-width: 396px;
    margin: 0 auto;
}

svg-animate {
    display: block;
    width: 100%;
    height: auto;
}

svg-animate svg {
    width: 100%;
    height: auto;
}

#Frame\ 43, #Frame\ 44, #download\ \(61\ 1\) {
  transition: transform 0.6s ease-in-out;
  transform-origin: 50% 50%;
}

.partipication_inner:hover #Frame\ 43 {
  transform: rotate(-4deg) scale(1.05);
}

.partipication_inner:hover #Frame\ 44 {
  transform: rotate(-2deg) scale(1.03);
}

.partipication_inner:hover #download\ \(61\ 1\) {
  transform: scale(1.1);
}

.partipication_inner #Logo\ Frame {
  transition: transform 0.6s ease-in-out;
  transform-origin: 50% 50%;
}

.partipication_inner:hover #Logo\ Frame {
  transform: scale(1.1);
}

.partipication_inner #Frame\ 30 {
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  transform-origin: 50% 50%;
  opacity: 1;
  transform: scale(1); /* исходный размер */
}

.partipication_inner:hover #Frame\ 30 {
  transform: scale(0.8); /* уменьшаем на 30% */
  opacity: 0.65;          /* делаем полупрозрачными */
}

/* Адаптация для MacBook 13 дюймов (1280px - 1440px) */
@media (max-width: 1440px) and (min-width: 1024px) {
  .menu_action_container,
  .menu_container,
  .hero_container,
  .peculiarities_container,
  .our_developers_cont,
  .our_developer_container,
  .profile_services_cont,
  .footer_container {
    padding-left: 80px;
    padding-right: 80px;
  }

  .menu_action_container.hide {
    padding: 0 80px;
  }

  .title {
    font-size: 48px;
    line-height: 50px;
  }

  .hero_inner h1 {
    font-size: 48px;
  }

  .our_developer_inner h1 {
    font-size: 36px;
  }

  .profile_services_in p {
    font-size: 36px;
  }

  .faq_first_title,
  .details_first_title {
    font-size: 48px;
  }

  .peculiarities_inner,
  .peculiarities_inner_end {
    width: 100%;
    padding: 0 20px;
  }

  .profile_services_wrapper {
    padding: 20px 80px;
  }
}

/* Адаптация для телефонов (до 768px) */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  footer {
    display: none;
  }

  .menu_action_container,
  .menu_container,
  .hero_container,
  .peculiarities_container,
  .our_developers_cont,
  .our_developer_container,
  .profile_services_cont,
  .footer_container {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .menu_action_container.hide {
    padding: 0 16px;
  }

  .menu_action_container {
    max-width: 100%;
    width: 100%;
  }

  .menu_container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    position: relative;
    gap: 16px;
  }

  .menu_inner:first-child {
    flex: 0 0 auto;
    z-index: 10002;
  }

  .menu_inner:first-child img {
    max-height: 40px;
    width: auto;
  }

  .menu_inner.menu_nav_flex {
    display: none;
  }

  .menu_inner:last-child {
    display: none;
  }

  .burger_menu_toggle {
    display: flex;
    flex-shrink: 0;
  }

  .mobile_menu {
    display: block;
  }

  .mobile_menu_content {
    padding-top: 80px;
  }

  .hero_container {
    margin-top: 30px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .hero_inner {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .title {
    font-size: 28px;
    line-height: 32px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .title svg {
    width: 100%;
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
  }

  .hero_inner h1 {
    font-size: 28px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero_title {
    font-size: 14px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hero_flex {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero_technical,
  .hero_contact {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .peculiarities_container {
    flex-direction: column;
    margin-top: 30px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .peculiarities_inner,
  .peculiarities_inner_end {
    width: 100%;
    max-width: 100%;
    border-right: none;
    border-bottom: 1px solid #FFFFFF29;
    padding: 20px 0;
    box-sizing: border-box;
  }

  .peculiarities_inner_end {
    border-bottom: none;
  }

  .peculiarities_paragraph {
    padding: 0 16px;
  }

  .peculiarities_text {
    font-size: 20px;
  }

  .peculiarities_paragraph {
    font-size: 14px;
  }

  .our_developers_cont {
    margin-top: 60px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

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

  .our_developer_inner h1 {
    font-size: 28px;
  }

  .our_developer_inner button {
    width: 100%;
  }

  .our_developer_container {
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .our_developer_inners {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .our_developer_inners img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .profile_services_cont {
    flex-direction: column;
    gap: 20px;
    margin-top: 60px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .profile_services_in {
    flex-direction: column;
    width: 100%;
  }

  .profile_services_in p {
    font-size: 28px;
  }

  .profile_services_wrapper {
    padding: 20px 16px;
  }

  .profile_services_inner {
    width: 200px;
    min-width: 200px;
  }

  .partipication_text {
    font-size: 28px;
    padding-top: 50px;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .partipication_container {
    padding: 0 16px;
  }

  .partipication_inner {
    width: 100%;
    max-width: 100%;
  }

  .partipication_description {
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .technologies_container {
    margin-top: 60px;
    padding: 0 16px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .technologies_second-inner {
    justify-content: center;
  }

  .technologies_second_inside {
    width: calc(50% - 1px);
    border-right: 1px solid #FFFFFF29;
  }

  .technologies_second_inside:nth-child(2n) {
    border-right: 0;
  }

  .technologies_second_inside:nth-child(5),
  .technologies_second_inside:nth-child(10),
  .technologies_second_inside:nth-child(15),
  .technologies_second_inside:nth-child(20) {
    border-right: 0;
  }

  .studio_container {
    padding: 0 16px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .studio_first_buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: -100px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .studio_prog_button,
  .studio_design_button {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .studio_second_inner {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .studio_inside_inner {
    border-right: none;
    border-bottom: 1px solid #FFFFFF29;
    padding: 20px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .studio_inside_inner:last-child {
    border-bottom: none;
  }

  .faq_container {
    margin-top: 60px;
    padding: 0 16px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .faq_first_title {
    font-size: 32px;
  }

  .faq_second_inner {
    width: 100%;
    max-width: 100%;
  }

  .faq_answer_text {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    box-sizing: border-box;
  }

  .details_container {
    width: 100%;
    max-width: 100%;
    margin-top: 60px;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .details_container_img,
  .details_container_img-2 {
    display: none;
  }

  .details_first_title {
    font-size: 32px;
  }

  .details_second_inner {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 16px;
    padding-top: 20px;
    margin-top: 24px;
    border-radius: 16px;
  }

  .details_second_contact {
    height: 44px;
    font-size: 14px;
    gap: 8px;
  }

  .details_second_contact svg {
    width: 18px;
    height: 16px;
  }

  .details_second_contact span {
    width: auto;
    padding: 0 12px;
    font-size: 12px;
    height: 20px;
  }

  .details_second_or {
    margin-top: 20px;
    gap: 12px;
  }

  .details_second_or p {
    font-size: 14px;
    white-space: nowrap;
  }

  .details_second_or_line {
    width: 100%;
    flex: 1;
    min-width: 0;
  }

  .details_second_services_title {
    font-size: 14px;
    margin-top: 20px;
  }

  .details_second_services {
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    gap: 6px;
    margin-top: 12px;
  }

  .details_second_services button {
    width: auto !important;
    min-width: auto;
    max-width: 100%;
    padding: 0 14px;
    font-size: 13px;
    height: 40px;
    box-sizing: border-box;
    flex: 0 0 auto;
  }

  .details_button_go {
    height: 44px;
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .footer_container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .footer_left {
    flex-direction: column;
    gap: 16px;
  }

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

  .footer_copy {
    margin-left: 0;
  }

  .footer_right {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Адаптация для маленьких телефонов (до 480px) */
@media (max-width: 480px) {
  .menu_action_container,
  .menu_container,
  .hero_container,
  .peculiarities_container,
  .our_developers_cont,
  .our_developer_container,
  .profile_services_cont,
  .footer_container,
  .technologies_container,
  .studio_container,
  .faq_container,
  .details_container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .title {
    font-size: 24px;
    line-height: 28px;
  }

  .hero_inner h1 {
    font-size: 24px;
  }

  .our_developer_inner h1,
  .profile_services_in p,
  .partipication_text {
    font-size: 24px;
  }

  .faq_first_title,
  .details_first_title {
    font-size: 28px;
  }

  .details_second_inner {
    padding: 0 12px;
    padding-top: 16px;
    margin-top: 20px;
  }

  .details_second_contact {
    height: 40px;
    font-size: 13px;
  }

  .details_second_contact span {
    font-size: 11px;
    padding: 0 10px;
    height: 18px;
  }

  .details_second_or {
    margin-top: 16px;
    gap: 8px;
  }

  .details_second_or p {
    font-size: 12px;
  }

  .details_second_services_title {
    font-size: 13px;
    margin-top: 16px;
  }

  .details_second_services {
    gap: 4px;
    margin-top: 10px;
  }

  .details_second_services button {
    padding: 0 12px;
    font-size: 12px;
    height: 36px;
  }

  .details_button_go {
    height: 40px;
    font-size: 13px;
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .peculiarities_text {
    font-size: 18px;
  }

  .technologies_second_inside {
    width: 100%;
    border-right: 0;
  }

  .partipication_description {
    padding: 0 12px;
  }

  .peculiarities_paragraph {
    padding: 0 12px;
  }
}
