:root {
    color-scheme: dark;
}

/* Base reset */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

html,
body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--bg);
}

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--bg);
}

/* Layout helpers */
.container {
    width: min(1120px, 100% - 48px);
    margin-inline: auto;
}

.container.narrow {
    width: min(1072px, 100% - 96px);
    margin-inline: auto;
}

.grid {
    display: grid;
    gap: 24px;
}

/* Header */
.site-header {
    position: sticky;
    /* было absolute */
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.site-header_wrapper {
    position: static;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    position: sticky;
    top: 10px;
    z-index: 51;
}

/* Липкие элементы: логотип и кнопка "Вход" */
[data-sticky-el],
.header-inner .button-main {
    position: sticky;
    top: 10px;
    z-index: 51;
}

.top-nav {
    display: flex;
}

.top-nav_wrapper {
    position: absolute;
    z-index: 51;
    top: 14px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Весь прозрачный контейнер не должен перехватывать клики,
       иначе он перекрывает кнопку "Вход" в хедере */
    pointer-events: none;
}

/* Hero */
.hero {
    position: relative;
    background-color: var(--bg);
    overflow: hidden;
    margin-top: -100px;
    z-index: 0;
}

.hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero__video--mobile {
    display: none;
}

@media (max-width: 900px) {
    .hero__video--desktop {
        display: none;
    }

    .hero__video--mobile {
        display: block;
    }
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(100% 60% at 50% 0%, rgba(156, 90, 255, 0.25) 0%, rgba(156, 90, 255, 0.08) 38%, rgba(11, 12, 14, 0) 60%);
    pointer-events: none;
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    min-height: 100svh;
    max-height: 767px;
}

.hero-copy h1 {
    font-family: "Manrope-ExtraBold", sans-serif;
    text-align: center;
    font-size: 80px;
    font-style: normal;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: -2.4px;
    background: linear-gradient(90deg, #FFF 58.65%, #B27FFF 90.21%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0px;
    margin-top: 10px;
}

.lead {
    color: rgba(255, 255, 255, 0.90);
    text-align: center;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 100% */
    margin: 37px 0 64px 0;
}

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

.hero-media {
    position: relative;
    aspect-ratio: 4/3;
    max-height: 72vh;
    border-radius: 24px;
    overflow: hidden;
}

.hero-media img,
.hero-media source,
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-video {
    display: none;
}

/* включим, когда будет видео */

#prices-title {
    padding-top: 24px;
    margin-bottom: 44px;
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-media {
        order: 2;
        aspect-ratio: 16/9;
        max-height: none;
    }
}

/* Sections */
/* .section { padding: 80px 0; scroll-margin-top: 80px; } */
.section-solutions {
    padding-top: 37px;
    padding-bottom: 37px;
}

.section h2 {
    font-size: clamp(22px, 3.6vw, 36px);
    margin: 0 0 24px;
}

.card {
    background: var(--bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(15, 18, 34, 0.04);
}

/* Price Slider */
.price-slider {
    position: relative;
}

.price-slider__wrapper {
    overflow: hidden;
    position: relative;
}

.price-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-slider__slide {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Навигация слайдера - скрыта на десктопе */
.price-slider__nav {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.price-slider__arrow {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.price-slider__arrow img {
    width: 24px;
    height: 24px;
    display: block;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.price-slider__arrow:hover:not(:disabled) img,
.price-slider__arrow:focus-visible:not(:disabled) img {
    opacity: 1;
}

.price-slider__arrow:hover:not(:disabled),
.price-slider__arrow:focus-visible:not(:disabled) {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.05);
}

.price-slider__arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.price-slider__arrow:disabled img {
    opacity: 0.3;
}

.price-slider__dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.price-slider__dot {
    all: unset;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.price-slider__dot:hover,
.price-slider__dot:focus-visible {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.price-slider__dot--active {
    background: rgba(255, 255, 255, 0.9);
}

/* Мобильная версия - слайдер */
@media (max-width: 900px) {
    .price-slider__wrapper {
        overflow: hidden;
        position: relative;
    }

    .price-cards {
        display: flex !important;
        flex-direction: row !important;
        grid-template-columns: none !important;
        gap: 0 !important;
        width: 100%;
        position: relative;
    }

    .price-slider__slide {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100% !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        order: 999;
    }

    /* Первый слайд виден по умолчанию */
    .price-slider__slide[data-slide="0"] {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        order: 0;
    }

    .price-slider__slide--active {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        order: 0 !important;
    }

    .price-slider__nav {
        display: flex;
    }
}

/* Footer */

/* Anchor offset for fixed header */
:target {
    scroll-margin-top: 80px;
}

#hero {
    scroll-margin-top: 88px;
    scroll-padding-top: 88px;
}

#contacts {
    scroll-margin-top: 88px;
}

@media (max-width: 640px) {
    #contacts {
        scroll-margin-top: 76px;
    }
}

/* Accessibility */
:focus-visible {
    outline: 3px solid #a5c3ff;
    outline-offset: 2px;
}


/* Typography defaults */
h1,
h2,
h3 {
    font-family: var(--font-sans);
    color: var(--text);
    margin: 0 0 12px;
}

h2 {
    font-size: clamp(22px, 3.6vw, var(--h2-size));
    line-height: var(--h2-lh);
}

body,
p {
    font-size: var(--body-size);
    line-height: var(--body-lh);
}

.site-header {
    border-bottom-color: var(--border);
}

.card {
    border-color: var(--border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

/* Hero background glow */
.hero::before {
    content: "";
    position: absolute;
    inset: -20% -10% auto -10%;
    height: 60vh;
    pointer-events: none;
    background: radial-gradient(50% 60% at 50% 0%, rgba(114, 20, 255, 0.35) 0%, rgba(114, 20, 255, 0.08) 40%, rgba(0, 0, 0, 0) 70%);
    filter: blur(10px);
}

.header-inner {
    transition: padding .2s ease;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}




/* --- Mobile overrides from mobile archive --- */

/* On mobile: logo + Вход must be fixed and always visible */
@media (max-width: 900px) {
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

    * prevent content jump under fixed header */ .header-inner {
        padding: 10px 24px;
        gap: 12px;
        justify-content: space-between;
    }

    /* На мобильных sticky не нужен, элементы уже фиксированы через header */
    .logo,
    [data-sticky-el],
    .header-inner .button-main {
        position: static;
    }

    .logo img,
    .logo svg,
    .logo picture {
        height: 29px;
        width: 127px;
    }

    /* Навигация скрыта через media query выше */

    /* Адаптация кнопки входа на мобильных */
    .header-inner .button-main .frame-5 {
        padding: 9px 32px;
        gap: 6px;
        min-height: 36px;
    }

    .header-inner .div {
        font-size: 12px;
        line-height: 1;
    }

    .header-inner .arrow-arrow-left-right {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 640px) {

    #solutions {
        padding: 0;
        padding-bottom: 24px;
    }

    .section-solutions {
        padding-top: 24px;
        background: var(--bg);
        padding-bottom: 24px;
        border-bottom-left-radius: 24px;
        border-bottom-right-radius: 24px;
        overflow: hidden;
        margin-bottom: 0;
        position: relative;
    }

    #team {
        margin-top: -45px;
    }

    /* Hero must always fit in 1st screen; media can shrink but text stays fully visible */
    .hero-inner {
        min-height: calc(100svh - 176px);
    }

    .hero-copy {
        padding-top: 500px;
        flex: 0 0 auto;
        align-items: start !important;
        text-align: start !important;
        max-width: 100%;
        order: 2;
    }

    .hero-copy h1 {
        text-align: start;
        font-family: Manrope;
        font-size: 36px;
        font-style: normal;
        font-weight: 800;
        line-height: 100%;
        /* 36px */
        letter-spacing: -1.08px;
        background: linear-gradient(92deg, #FFF 3.51%, #B180FF 79.23%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent
    }

    .hero-copy .lead {
        text-align: start;
        color: rgba(255, 255, 255, 0.80);
        font-family: Manrope;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        /* 125% */
        margin: 24px 0 32px 0;
    }

    .hero-media {
        aspect-ratio: 16/9;
        flex: 1 1 auto;
        min-height: 0;
        max-height: 50vh;
        max-height: 50svh;
        order: 1;
        margin-bottom: 16px;
    }

    /* Мобильная версия кнопок CTA */
    .hero .cta {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    /* Кнопка "Подробнее" - слева, только стрелка */
    .button-cta-more {
        order: 1;
    }

    .button-cta-more .div {
        display: none !important;
        /* Скрываем текст */
    }

    .button-cta-more .frame-5 {
        padding: 24px;
        gap: 0;
        min-width: 52px;
        width: 52px;
        height: 52px;
        justify-content: center;
        align-items: center;
    }

    .button-cta-more .arrow-arrow-left-right {
        margin: 0;
    }

    /* Кнопка "Начать" - справа, с текстом и стрелкой */
    .button-cta-start {
        order: 2;
        margin-left: auto;
    }


    /* Footer nav remains simple anchors */
    .footer-nav {
        font-size: 14px;
        font-weight: 500;
        justify-content: space-between;
        width: 100%;
        flex-wrap: wrap;
    }
}

/* Improve tap targets */
@media (hover: none) {
    .footer-nav a {
        padding-block: 12px;
    }
}

/* Larger anchor offset for fixed header on small screens */
@media (max-width: 640px) {
    html {
        scroll-padding-top: 76px;
    }

    :target {
        scroll-margin-top: 76px;
    }

    #hero {
        scroll-margin-top: 76px;
        scroll-padding-top: 76px;
    }

    .hero .cta {
        flex-direction: row-reverse;
        margin-bottom: 50px;
    }
}

/* Fine-tune hero layout to match Figma */
.hero {
    position: relative;
    scroll-margin-top: 88px;
}

.hero-inner {
    grid-template-columns: 1fr;
    gap: 20px;
}

.hero-copy {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.5;
}

.hero-copy,
.hero-feature {
    position: relative;
    z-index: 1;
}

/* Feature strip under heading (the "iPhone 13 & 14..." image) */
.hero-feature {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

.hero-feature picture {
    display: block;
}

.hero-feature img {
    width: min(980px, 96%);
    height: auto;
    border-radius: 18px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .35);
}

/* Desktop overlap effect: push the services closer under the hero */

@media (max-width: 900px) {
    .hero-feature img {
        width: min(780px, 96%);
        border-radius: 16px;
    }
}

@media (max-width: 640px) {
    .hero-feature img {
        width: 96%;
        border-radius: 14px;
    }

    .hero-media {
        opacity: 0.4;
    }
}

/* --- Prices (Figma-spec) --- */
.price.price--figma {
    padding: 24px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
    outline: 1px rgba(255, 255, 255, 0.08) solid;
    outline-offset: -0.5px;
}

.price.price--figma .price-head {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#prices {
    padding-bottom: 80px;
}

.section .section-prices .price-title {
    font-family: 'Manrope', var(--font-sans);
    font-size: 24px;
    font-weight: 800;
    line-height: 26.4px;
    color: #fff;
    margin: 0;
}

.price.price--figma .price-desc {
    font-family: 'Manrope';
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    color: rgba(255, 255, 255, 0.80);
    margin: 0;
}

.price.price--figma .price-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.price.price--figma .price-features li {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 8px;
}

.price.price--figma .chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.04);
    outline: 0.5px rgba(255, 255, 255, 0.08) solid;
    outline-offset: -0.5px;
}

.price.price--figma .chip img {
    width: 12px;
    height: 12px;
    opacity: 0.9;
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
}

.price.price--figma .price-features li span:last-child {
    font-family: 'Manrope', var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    line-height: 19.6px;
    color: #fff;
}

.price.price--figma .price-amount {
    font-family: 'Manrope', var(--font-sans);
    font-size: 32px;
    font-weight: 800;
    line-height: 35.2px;
    color: #fff;
}

/* Контейнер меню — фиксируем сверху по центру */
.top-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: rgba(255, 255, 255, 0.16);
    border-radius: 9999px;
    outline: 1px solid rgba(255, 255, 255, 0.16);
    outline-offset: -1px;
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    /* А вот само меню должно оставаться кликабельным */
    pointer-events: auto;
}

.top-nav__list {
    margin: 0;
    padding: 4px;
    list-style: none;
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

/* Каждый пункт */
.top-nav__item {
    display: flex;
    align-items: center;
    border-radius: 9999px;
}

/* Ссылка внутри пункта */
.top-nav__link {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 9999px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
    min-height: 44px;
    box-sizing: border-box;
    transition: background-color .2s ease, color .2s ease, opacity .2s ease;
}

/* Кнопка активного пункта — полупрозрачная капсула */
.top-nav__item--active .top-nav__link {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* Ховер/фокус для остальных */
.top-nav__item:not(.top-nav__item--active) .top-nav__link:hover,
.top-nav__item:not(.top-nav__item--active) .top-nav__link:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    outline: none;
}

/* Точка-иконка слева */
.top-nav__dot {
    width: 24px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.top-nav__dot::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 6px;
    width: 12px;
    height: 12px;
    border: 1.5px solid #fff;
    border-radius: 2px;
    background: transparent;
}

.top-nav__dot--filled::after {
    background: #fff;
    border-color: #fff;
}

@media (max-width: 1200px) {
    .top-nav__link {
        padding: 10px 12px;
        font-size: 13px;
        min-height: 40px;
    }

    .top-nav__list {
        gap: 8px;
    }

    .top-nav__dot {
        width: 20px;
        height: 20px;
    }

    .top-nav__dot::after {
        width: 10px;
        height: 10px;
        left: 5px;
        top: 5px;
    }

    /* Адаптация кнопки входа под размер навигации */
    .header-inner .frame-5 {
        padding: 10px 12px;
        min-height: 40px;
    }

    .header-inner .div {
        font-size: 13px;
        line-height: 1;
    }

    .header-inner .arrow-arrow-left-right {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 1080px) {
    .top-nav__link {
        padding: 8px 10px;
        font-size: 12px;
        min-height: 36px;
    }

    .top-nav__list {
        gap: 6px;
        padding: 2px;
    }

    /* Адаптация кнопки входа под размер навигации */
    .header-inner .frame-5 {
        padding: 8px 10px;
        min-height: 36px;
    }

    .header-inner .div {
        font-size: 12px;
        line-height: 1;
    }

    .header-inner .arrow-arrow-left-right {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 1080px) {
    .top-nav {
        display: none;
    }

    .header-inner {
        gap: 12px;
    }

    .header-inner .button-main .frame-5 {
        padding: 9px 32px;
    }

    .header-inner .div {
        font-size: 12px;
    }

    .header-inner .arrow-arrow-left-right {
        width: 18px;
        height: 18px;
    }
}

/* CTA Block - BEM naming */
.cta-block,
.cta-block * {
    box-sizing: border-box;
}

.cta-block {
    background: #0b0c0e;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    min-height: 376px;
}

.cta-block__container {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    max-width: 100%;
    position: relative;
}

.cta-block__card {
    background: linear-gradient(180deg,
            rgba(11, 12, 14, 1) 0%,
            rgba(33, 25, 47, 1) 100%);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: center;
    flex: 1;
    position: relative;
    box-shadow: 0px 20px 32px 0px rgba(48, 36, 68, 0.16);
    overflow: hidden;
}

.cta-block__media {
    align-self: stretch;
    flex-shrink: 0;
    height: 220px;
    position: relative;
}

.cta-block__image {
    width: 100%;
    height: 220px;
    position: absolute;
    inset: 0;
    object-fit: cover;
    overflow: visible;
}

.cta-block__icon {
    background: linear-gradient(180deg,
            rgba(183, 134, 255, 1) 0%,
            rgba(156, 90, 255, 1) 100%);
    border-radius: 50%;
    border: 2.89px solid #c59eff;
    width: 89.51px;
    height: 89.51px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    top: 65px;
    box-shadow:
        0px -2.17px 3.61px 0px rgba(0, 0, 0, 0.09),
        0px 8.68px 9.4px 0px rgba(0, 0, 0, 0.17),
        0px 2.89px 4.34px 0px rgba(0, 0, 0, 0.12),
        0px -8.68px 21.69px 0px rgba(0, 0, 0, 0.12),
        0px 39.04px 39.76px 0px rgba(0, 0, 0, 0.25),
        inset 0px -1.45px 0px 5.06px rgba(134, 71, 232, 1);
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}


.cta-block__icon-img {
    width: 53.63%;
    height: 48px;
    position: relative;
    object-fit: contain;
    overflow: visible;
}

.cta-block__title {
    background: linear-gradient(91.81deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 1) 95.52%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
    font-family: "Manrope-ExtraBold", sans-serif;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -0.03em;
    font-weight: 800;
    position: relative;
    align-self: stretch;
    margin: 0;
}

.cta-block__button {
    padding: 20px 20px 40px 20px;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 900px) {
    .cta-block__container {
        width: 100%;
        padding: 0 24px;
        margin-bottom: 58px;
    }

    .cta-block__card {
        border-radius: 32px;
    }

}

@media (max-width: 640px) {
    .cta-block__container {
        padding: 0 24px;
    }

    .cta-block__card {
        border-radius: 24px;
    }

    .cta-block__content {
        padding: 0 20px 22px 20px;
    }

    .cta-block__title {
        font-size: 20px;
    }

    .cta-block__button {
        padding: 0 20px 20px 20px;
    }
}

.button-main {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}

.frame-5-padding {
    padding: 20px 0px 0px 0px;
}

.frame-5 {
    background: rgb(255 255 255 / 8%);
    border-radius: 9999px;
    border-style: solid;
    border-color: rgb(255 255 255 / 8%);
    border-width: 1px;
    padding: 16px 32px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.frame-5-price {
    width: 100%;
}

.frame-5-team {
    padding: 16px 94px;
}

/* Специальные стили для кнопки входа в хедере */
.header-inner .button-main {
    align-self: center;
    flex-shrink: 0;
}

.header-inner .button-main .frame-5 {
    margin: 4px;
    align-items: center;
}

.div {
    color: #ffffff;
    text-align: left;
    font-family: "Manrope-Medium", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    line-height: 1;
}

.arrow-arrow-left-right {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
}

.arrow-arrow-left-md {
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0%;
    left: 0%;
    bottom: 0%;
    top: 0%;
    overflow: visible;
}

.section-team {
    background-image: url('img/section-team.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 80px 0px;
    margin: 24px 0px;
}

/* Адаптивность для секции about */
.section-team .container.narrow {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-team h2 {
    margin-bottom: 0px;
    font-size: 80px;
    font-weight: 800;
}

.section-team p {
    margin-top: 0px;
    max-width: 610px;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
    font-family: "Manrope-Regular", sans-serif;
    font-size: 20px;
    line-height: 140%;
    font-weight: 400;
}


#services {
    .frame-5 {
        background: rgba(255, 255, 255, 0.08);
        border-radius: 9999px;
        border-style: solid;
        border-color: rgba(255, 255, 255, 0.08);
        border-width: 1px;
        padding: 3px 32px 3px 32px;
        display: flex;
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 276px;
        height: 52px;
        position: relative;
        overflow: hidden;
    }

    .div {
        color: #ffffff;
        text-align: left;
        font-family: "Manrope-Medium", sans-serif;
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        position: relative;
    }

    .arrow-arrow-left-right {
        flex-shrink: 0;
        width: 24px;
        height: 24px;
        position: relative;
    }

    .arrow-arrow-left-md {
        width: 100%;
        height: 100%;
        position: absolute;
        right: 0%;
        left: 0%;
        bottom: 0%;
        top: 0%;
        overflow: visible;
    }
}

/* Services List - BEM naming */
.services-list,
.services-list * {
    box-sizing: border-box;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 37px;
    align-items: center;
    justify-content: center;
    position: relative;
}

.services-list__container {
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: flex-start;
    flex-shrink: 0;
    width: 100%;
    position: relative;
}

.services-card {
    background: #0b0c0e;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.services-card__header {
    background: linear-gradient(180deg,
            rgba(49, 37, 70, 1) 0%,
            rgba(11, 12, 14, 1) 100%);
    align-self: stretch;
    flex-shrink: 0;
    height: 259px;
    position: relative;
    overflow: hidden;
}

.services-card--frame1 .services-card__header {
    background-image: url("img/frame1.png");
    background-size: cover;
    /* или contain, если нужно целиком влезть */
    background-position: center;
    background-repeat: no-repeat;
}

.services-card--frame2 .services-card__header {
    background-image: url("img/frame2.png");
    background-size:
        100% 100%,
        cover,
        auto;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
}

.services-card__title-wrapper {
    height: 232px;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    backdrop-filter: blur(1px);
    background: linear-gradient(180deg, rgba(11, 12, 14, 0) 0%, rgba(11, 12, 14, 0.8) 62.0192289352417%, rgb(0 0 0) 100%);
}


.services-card__overlay {
    height: 128px;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
}

.services-card__title-container {
    padding: 6px 24px 0 24px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-end;
    justify-content: flex-start;
}

.services-card__title {
    padding-left: 24px;
    margin-top: -24px;
    text-align: left;
    font-family: "Manrope-ExtraBold", sans-serif;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.03em;
    font-weight: 800;
    position: relative;
    flex: 1;
    margin: 0;
}

.services-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    justify-content: flex-end;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}

.services-card__description {
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
    font-size: 14px;
    line-height: 140%;
    font-weight: 400;
    position: relative;
    margin: 0;
    max-width: 456px;
}

@media (max-width: 900px) {
    .services-list__container {
        flex-direction: column;
        gap: 20px;
    }

    .services-card__header {
        height: 200px;
    }

}

@media (max-width: 640px) {
    .services-list {
        gap: 20px;
    }

    .services-card__header {
        height: 180px;
    }

    .services-card__title {
        font-size: 24px;
        font-style: normal;
        font-weight: 800;
        line-height: 120%;
        /* 28.8px */
        letter-spacing: -0.72px;
    }

    .services-card__body {
        padding: 24px;
        color: rgba(255, 255, 255, 0.80);
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 140%;
        /* 19.6px */
    }
}

.features {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.features__item {
    background: rgba(255, 255, 255, 0.04);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1;
    min-height: 249px;
    width: 100%;
    position: relative;
}

.features__item:last-child {
    border-right: none;
}

.features__icon {
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    position: relative;
    overflow: visible;
}

.features__icon--gradient {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.features__icon img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
    overflow: visible;
    aspect-ratio: 1;
}

.features__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    align-self: stretch;
    flex: 1;
    position: relative;
}

.features__title {
    background: linear-gradient(91.81deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 95.52%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
    font-family: "Manrope-Bold", sans-serif;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: -0.03em;
    font-weight: 700;
    position: relative;
    align-self: stretch;
    margin: 0;
}

.features__description {
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
    font-family: "Manrope-Regular", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 400;
    position: relative;
    padding: 0px;
    margin: 0px;
}

@media (max-width: 900px) {
    .features {
        flex-direction: column;
        gap: 0;
    }

    .features__item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        min-height: auto;
    }

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

@media (max-width: 640px) {
    .features {
        border-radius: 16px;
    }

    .features__item {
        padding: 20px;
        gap: 24px;
    }

    .features__title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .features__description {
        font-size: 13px;
        line-height: 1.5;
        max-width: 218px;
    }
}

.reset-button {
    all: unset;
    display: inline-block;
    cursor: pointer;
}

.button-cta-more {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 9999px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.08);
    border-width: 1px;
    backdrop-filter: blur(40px);
}

.button-cta-start {
    background: rgb(255, 255, 255);
    border-radius: 9999px;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    border-width: 1px;
    backdrop-filter: blur(40px);

    .div {
        color: rgb(0, 0, 0) !important;

    }
}


.footer {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    border-top: 1px solid var(--footer-border);
    padding: 40px 24px;
    color: var(--text);
    background-image: url('img/footer.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer__inner {
    width: 1032px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    /* красиво на узких экранах */
}

.footer__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    min-width: 260px;
}

.footer__logo img {
    display: block;
    width: 195px;
    height: auto;
}

.footer__actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 9999px;
    text-decoration: none;
    font: 500 14px/1 Manrope, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    text-transform: uppercase;
    color: var(--text);
    transition: transform .15s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease;
    will-change: transform;
}

.button--glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-stroke);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button__text {
    white-space: nowrap;
}

.icon {
    width: 24px;
    height: 24px;
    display: inline-block;
}

/* навигация в футере */
.footer__nav {
    margin-left: auto;
}

.footer-nav {
    display: grid;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav__item {
    margin: 0;
}

.footer-nav__link {
    color: var(--text-dim);
    text-decoration: none;
    font: 500 14px/1 Manrope, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    text-transform: uppercase;
    transition: color .2s ease, opacity .2s ease;
}

.footer-nav__link:hover,
.footer-nav__link:focus-visible {
    color: var(--text);
}

@media (max-width: 900px) {
    .footer__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .footer__left {
        display: contents;
        /* Разрушает контейнер, чтобы элементы стали прямыми детьми footer__inner */
    }

    .footer__logo {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        order: 1;
        width: 100%;
    }

    .footer-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        list-style: none;
        margin: 0;
        padding: 0;
        order: 3;
    }

    .footer-nav__item {
        width: auto;
        text-align: left;
    }

    .footer-nav__link {
        display: block;
    }

    .footer__nav {
        margin-left: 0;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        order: 2;
    }

    .footer__actions {
        display: flex;
        gap: 12px;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .footer__inner {
        gap: 40px;
    }

    .footer__left {
        gap: 0px;
    }

    .footer__logo img {
        width: 178px;
        height: auto;
    }

    .footer__actions {
        gap: 12px;
        width: 100%;
        max-width: 300px;
    }

    .footer__actions .div {
        font-size: 12px;
    }

    .footer__actions .arrow-arrow-left-right {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 520px) {
    .footer__actions {
        max-width: 100%;
    }

    .footer__actions .div {
        font-size: 11px;
    }
}

.a-reset {
    all: unset;
    cursor: pointer;
    display: inline;
    color: inherit;
    text-decoration: none;
}

/* Фиксированный размер бабочки на мобильных устройствах */
@media (max-width: 900px) {
    .hero {
        background-size:
            100% 100%,
            cover,
            auto;
        background-position: center, center top, center;
        margin-top: -60px;
    }
}

@media (max-width: 640px) {
    .hero {
        background-size:
            100% 100%,
            1000px auto,
            auto;
        background-position: center, center top, center;
        background-attachment: scroll, fixed, scroll;
        margin-top: -60px;
    }
}



.frame__2087327842,
.frame__2087327842 * {
    box-sizing: border-box;
}

.frame__2087327842 {
    background: #0b0c0e;
    border-radius: 20px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.08);
    border-width: 1px;
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.image {
    background: linear-gradient(180deg,
            rgba(49, 37, 70, 1) 0%,
            rgba(11, 12, 14, 1) 100%);
    align-self: stretch;
    flex-shrink: 0;
    height: 259px;
}

.image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 122px;
    background: linear-gradient(180deg, rgba(11, 12, 14, 0) 5%, rgba(11, 12, 14, 0.7) 25%, rgb(11 12 14) 100%);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    pointer-events: none;
}

.ellipse__16 {
    background: #9151f7;
    border-radius: 50%;
    width: 259px;
    height: 259px;
    position: absolute;
    left: 50%;
    translate: -50%;
    top: -130px;
    filter: blur(69.05px);
}

.component__2 {
    position: absolute;
    overflow: visible;
    left: 0;
}

.component__1 {
    position: absolute;
    overflow: visible;
    right: 0;
}

.group__12 {
    position: absolute;
    inset: 0;
}

.frame__2087327888 {
    background: linear-gradient(180deg,
            rgba(56, 19, 113, 1) 0%,
            rgba(11, 12, 14, 1) 100%);
    border-radius: 32px;
    border-width: 1.5px;
    border-style: solid;
    border-image-slice: 1;
    width: 131.37px;
    height: 131.37px;
    position: absolute;
    left: calc(50% - 120.95px);
    top: -48.89px;
    box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.04),
        0px 12px 13px 0px rgba(0, 0, 0, 0.12), 0px 4px 6px 0px rgba(0, 0, 0, 0.08),
        0px -12px 30px 0px rgba(0, 0, 0, 0.08),
        0px 54px 55px 0px rgba(0, 0, 0, 0.16);
    transform-origin: 0 0;
    transform: rotate(15deg) scale(1, 1);
    overflow: hidden;
}

.preview-app {
    border-radius: 29.94px;
    width: 100%;
    height: 131.37px;
    position: absolute;
    right: 0.28%;
    left: -0.28%;
    top: 50%;
    translate: 0 -50%;
    object-fit: cover;
    aspect-ratio: 1;
}

.frame__2087327890 {
    border-radius: 32px;
    width: 131.37px;
    height: 131.37px;
    position: absolute;
    left: calc(50% - 276.21px);
    top: -18.76px;
    transform-origin: 0 0;
    transform: rotate(15deg) scale(1, 1);
    background: url('img/Frame2087327893.svg') center no-repeat;
    background-size: 118% 118%;
}

.frame__2087327893 {
    border-radius: 32px;
    width: 131.37px;
    height: 131.37px;
    position: absolute;
    left: calc(50% - -154.56px);
    top: 24.94px;
    transform-origin: 0 0;
    transform: rotate(15deg) scale(1, 1);
    background: url('img/Frame2087327893.svg') center no-repeat;
    background-size: 118% 118%;
}

.frame__2087327887 {
    border-radius: 32px;
    width: 131.37px;
    height: 131.37px;
    position: absolute;
    left: calc(50% - -35.23px);
    top: -82.49px;
    transform-origin: 0 0;
    transform: rotate(14deg) scale(1, 1);
    background: url('img/Frame2087327893.svg') center no-repeat;
    background-size: 118% 118%;
}

.frame__20873278872 {
    border-radius: 32px;
    width: 131.37px;
    height: 131.37px;
    position: absolute;
    left: calc(50% - 84.16px);
    top: -186.21px;
    transform-origin: 0 0;
    transform: rotate(15deg) scale(1, 1);
    background: url('img/Frame2087327893.svg') center no-repeat;
    background-size: 118% 118%;
}

.frame__2087327891 {
    border-radius: 32px;
    width: 131.37px;
    height: 131.37px;
    position: absolute;
    left: calc(50% - 239.41px);
    top: -156.08px;
    transform-origin: 0 0;
    transform: rotate(15deg) scale(1, 1);
    background: url('img/Frame2087327893.svg') center no-repeat;
    background-size: 118% 118%;
}

.frame__2087327894 {
    border-radius: 32px;
    width: 131.37px;
    height: 131.37px;
    position: absolute;
    left: calc(50% - -191.35px);
    top: -112.38px;
    transform-origin: 0 0;
    transform: rotate(15deg) scale(1, 1);
    background: url('img/Frame2087327893.svg') center no-repeat;
    background-size: 118% 118%;
}

.frame__20873278873 {
    border-radius: 32px;
    width: 131.37px;
    height: 131.37px;
    position: absolute;
    left: calc(50% - 38.36px);
    top: 192.15px;
    transform-origin: 0 0;
    transform: rotate(15deg) scale(1, 1);
    background: url('img/Frame2087327893.svg') center no-repeat;
    background-size: 118% 118%;
}

.frame__20873278874 {
    border-radius: 32px;
    width: 131.37px;
    height: 131.37px;
    position: absolute;
    left: calc(50% - 157.75px);
    top: 88.43px;
    transform-origin: 0 0;
    transform: rotate(15deg) scale(1, 1);
    background: url('img/Frame2087327893.svg') center no-repeat;
    background-size: 118% 118%;
}

.frame__2087327892 {
    border-radius: 32px;
    isolation: isolate;
    width: 131.37px;
    height: 131.37px;
    position: absolute;
    left: calc(50% - 313px);
    top: 118.56px;
    transform-origin: 0 0;
    transform: rotate(15deg) scale(1, 1);
}

.frame__2087327892::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    background:
        repeating-conic-gradient(from 0deg,
            white 6deg 12deg,
            /* длина штриха */
            transparent 12deg 20deg
            /* промежуток */
        );
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.frame__2087327895 {
    border-radius: 32px;
    isolation: isolate;
    width: 131.37px;
    height: 131.37px;
    position: absolute;
    left: calc(50% - -117.76px);
    top: 162.26px;
    transform-origin: 0 0;
    transform: rotate(15deg) scale(1, 1);

    background: url('img/Frame2087327893.svg') center no-repeat;
    background-size: 118% 118%;
}

.frame__2087327896 {
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(150, 160, 255, 1) 100%);
    border-radius: 32px;
    border-width: 1.5px;
    border-image: linear-gradient(180deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.12) 100%);
    border-image-slice: 1;
    width: 131.37px;
    height: 131.37px;
    position: absolute;
    left: calc(50% - 1.13px);
    top: 54.95px;
    box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.04),
        0px 12px 13px 0px rgba(0, 0, 0, 0.12), 0px 4px 6px 0px rgba(0, 0, 0, 0.08),
        0px -12px 30px 0px rgba(0, 0, 0, 0.08),
        0px 54px 55px 0px rgba(0, 0, 0, 0.16);
    transform-origin: 0 0;
    transform: rotate(15deg) scale(1, 1);
    overflow: hidden;
}

.frame {
    width: 55.21%;
    height: 72px;
    position: absolute;
    right: 26.31%;
    left: 28.49%;
    top: 50%;
    translate: 0 -50%;
    overflow: hidden;
}

.capa__2 {
    height: auto;
    position: absolute;
    left: 0px;
    top: 0px;
    overflow: visible;
}

.union {
    width: 59.37px;
    height: 71.98px;
    position: absolute;
    left: 0px;
    top: 0px;
    overflow: visible;
}

.frame__2087327845 {
    height: 128px;
    position: absolute;
    right: 0px;
    left: 0px;
    bottom: 0px;
    backdrop-filter: blur(4px);
}

.frame__20873278452 {
    background: linear-gradient(180deg,
            rgba(11, 12, 14, 0) 0%,
            rgba(11, 12, 14, 1) 100%);
    height: 128px;
    position: absolute;
    right: 0px;
    left: 0px;
    bottom: 0px;
}

.frame__2087327844 {
    padding: 24px 24px 0px 24px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-end;
    justify-content: flex-start;
    height: 82px;
    position: absolute;
    right: 0px;
    left: 0px;
    bottom: 0px;
}

.frame__2087327767 {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-end;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}

.frame__2087327768 {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}

.i__os-android {
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
    font-family: "Manrope-Regular", sans-serif;
    font-size: 14px;
    line-height: 140%;
    font-weight: 400;
    position: relative;
    flex: 1;
}

.frame-2087327843,
.frame-2087327843 * {
    box-sizing: border-box;
}

.frame-2087327843 {
    background: #0b0c0e;
    border-radius: 20px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.08);
    border-width: 1px;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.image {
    background: linear-gradient(180deg,
            rgba(49, 37, 70, 1) 0%,
            rgba(11, 12, 14, 1) 100%);
    align-self: stretch;
    flex-shrink: 0;
    height: 200px;
}

.ellipse-16 {
    background: #9151f7;
    border-radius: 50%;
    width: 259px;
    height: 259px;
    position: absolute;
    left: 50%;
    translate: -50%;
    top: -130px;
    filter: blur(69.05px);
}

.mask-group {
    height: auto;
    position: absolute;
    left: 0;
    top: 0;
    overflow: visible;
}

.frame-2087327898 {
    width: 252px;
    height: 291.59px;
    position: absolute;
    left: 146px;
    top: 19px;
}

.frame-20873278982 {
    width: 306px;
    height: 292px;
    position: absolute;
    left: 59.17px;
    top: 0;
    transform-origin: 0 0;
    transform: rotate(15deg) scale(1, 1);
}

.group-13 {
    position: absolute;
    inset: 0;
}

.frame-2087327888 {
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(188, 195, 255, 1) 100%);
    border-radius: 16px;
    border-width: 1.5px;
    border-image-slice: 1;
    height: 291.59px;
    position: absolute;
    right: 0px;
    left: 0px;
    top: 0px;
    transform-origin: 0 0;
    transform: rotate(0deg) scale(1, 1);
    backdrop-filter: blur(20px);
}

.traffic-lights {
    width: 52px;
    height: 12px;
    position: absolute;
    left: 12px;
    top: 12px;
    overflow: visible;
}

.frame-2087327906 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-start;
    position: absolute;
    right: 12px;
    left: 12px;
    top: 35px;
    box-shadow: 0 8px 24px 0 rgba(149, 157, 165, 0.2);
}

.frame-2087327901 {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    height: 69px;
    position: relative;
}

.frame-2087327902 {
    background: #ffffff;
    border-radius: 8px;
    border-width: 1px;
    border-style: solid;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    align-self: stretch;
    flex: 1;
    position: relative;
    box-shadow: 0px 8px 24px 0px rgba(149, 157, 165, 0.2);
    overflow: hidden;
}

.frame-2087327904 {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}

.ftd {
    color: rgba(44, 44, 44, 0.5);
    text-align: left;
    font-family: "Manrope-SemiBold", sans-serif;
    font-size: 12px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    flex: 1;
}

.frame-2087327903 {
    background: rgba(97, 197, 84, 0.24);
    border-radius: 999px;
    border-style: solid;
    border-color: rgba(73, 178, 60, 0.16);
    border-width: 1px;
    padding: 0px 6px 0px 6px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}

._51-2 {
    color: #49b23c;
    text-align: left;
    font-family: "Manrope-Bold", sans-serif;
    font-size: 10px;
    line-height: 140%;
    font-weight: 700;
    position: relative;
}

.frame-2087327905 {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}

._12-345 {
    color: #2c2c2c;
    text-align: left;
    font-family: "Manrope-Bold", sans-serif;
    font-size: 12px;
    line-height: 140%;
    font-weight: 700;
    position: relative;
    flex: 1;
}

.frame-2087327899 {
    background: rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    border-style: dashed;
    border-color: #ffffff;
    border-width: 1px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.frame-2087327900 {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    height: 69px;
    position: relative;
}

.frame-20873279002 {
    background: #ffffff;
    border-radius: 8px;
    border-width: 1px;
    border-style: solid;
    border-image: transparent;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    align-self: stretch;
    flex: 1;
    position: relative;
    box-shadow: 0px 8px 24px 0px rgba(149, 157, 165, 0.2);
    overflow: hidden;
}

.rd {
    color: rgba(44, 44, 44, 0.5);
    text-align: left;
    font-family: "Manrope-SemiBold", sans-serif;
    font-size: 12px;
    line-height: 140%;
    font-weight: 600;
    position: relative;
    flex: 1;
}

._19 {
    color: #49b23c;
    text-align: left;
    font-family: "Manrope-Bold", sans-serif;
    font-size: 10px;
    line-height: 140%;
    font-weight: 700;
    position: relative;
}

._9-120 {
    color: #2c2c2c;
    text-align: left;
    font-family: "Manrope-Bold", sans-serif;
    font-size: 12px;
    line-height: 140%;
    font-weight: 700;
    position: relative;
    flex: 1;
}

.frame-20873279022 {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    height: 69px;
    position: relative;
}

.frame-20873279032 {
    background: rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    border-style: dashed;
    border-color: #ffffff;
    border-width: 1px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.frame-20873278992 {
    position: absolute;
    left: -150.42px;
    top: 18.48px;
    box-shadow: 0px 4px 29.8px 0px rgba(0, 0, 0, 0.16);
    transform-origin: 0 0;
    transform: rotate(1deg) scale(1, 1);
}

.rotate-me-to-0-i-phone {
    width: 141px;
    height: 285.31px;
    position: static;
}

.chrome {
    position: static;
}

.body-outside {
    position: absolute;
    left: 50%;
    translate: -50%;
    top: calc(50% - 146px);
    overflow: visible;
}

.body-internal {
    position: absolute;
    left: 50%;
    translate: -50%;
    top: calc(50% - 144.44px);
    overflow: visible;
}

.mask-group2 {
    position: absolute;
    left: 50%;
    translate: -50%;
    top: calc(50% - 139px);
    overflow: visible;
}

.material-symbols-speed-rounded {
    border-radius: 25299.56px;
    width: 60.73px;
    height: 60.73px;
    position: absolute;
    left: 140.43px;
    top: 47.22px;
    aspect-ratio: 1;
}

.frame-2087327845 {
    height: 128px;
    position: absolute;
    right: 0px;
    left: 0px;
    bottom: 0px;
    backdrop-filter: blur(4px);
}

.frame-20873278452 {
    background: linear-gradient(180deg,
            rgba(11, 12, 14, 0) 0%,
            rgba(11, 12, 14, 0.8) 62.0192289352417%,
            rgba(11, 12, 14, 1) 100%);
    height: 128px;
    position: absolute;
    right: 0px;
    left: 0px;
    bottom: 0px;
}

.frame-2087327767 {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-end;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}

.frame-2087327768 {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}

@media (max-width: 640px) {
    .services-card__title-wrapper {
        height: 249px !important;
        background: linear-gradient(180deg, rgba(11, 12, 14, 0) 0%, rgba(11, 12, 14, 1) 46.019229%, rgb(0 0 0) 100%)
    }

    .section {
        padding: 40px 0;
    }

    footer {
        padding: 40px 24px !important;
    }
}

/* На мобильных устройствах - элементы друг под другом */

@media (max-width: 900px) {
    .section-team {
        padding: 90px 0;
    }
}


@media (max-width: 640px) {
    .section-team {
        padding-top: 90px;
        padding-bottom: 80px;
        background-size: cover;
        background-position: center;
    }

    .section-team .container.narrow {
        gap: 40px;
        margin-top: 30px;
    }

    .section-team h2 {
        margin-bottom: 0px;
        font-size: 40px;
    }

    .section-team p {
        margin-top: 0px;
        margin-bottom: 0px;
        color: #FFF;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 140%;
        /* 19.6px */
    }

    .section-team {
        margin: 0px;
        background-image: url('img/team-bg.svg');
    }

    #prices {
        margin-top: -20px;
        background: var(--bg);
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
        overflow: hidden;
        margin-bottom: 0;
        position: relative;
        padding: 48px 0;
    }

    #prices-title {
        padding-top: 0px;
        font-size: 40px;
    }

    .price-title {
        margin: 0px;
        font-size: 24px;
    }

    .price.price--figma .price-head {
        gap: 24px;
    }

    .price-slider__nav {
        margin-top: 20px;
    }

    .price-desc {
        font-size: 14px;
    }

    .cta-block__title {
        font-size: 24px;
        text-align: center;
        text-align: center;
        font-style: normal;
        font-weight: 800;
        line-height: 100%;
        /* 24px */
        letter-spacing: -0.72px;
    }

    .cta-block__button {
        width: 100%;
    }

    .footer__actions .button-main .frame-5 {
        padding: 10.5px 24px 10.5px 8px;
    }

    .site-header {
        position: absolute;
    }

    .logo,
    [data-sticky-el],
    .header-inner .button-main {
        position: relative;
    }

    .site-header_wrapper {
        position: relative;
    }

    .frame-5-team {
        width: 100%;
    }

    .hero {
        background:
            radial-gradient(100% 60% at 50% 0%, rgba(156, 90, 255, 0.25) 0%, rgba(156, 90, 255, 0.08) 38%, rgba(11, 12, 14, 0) 60%),
            url("img/butterfly-mobile.png"),
            var(--bg);
        background-size:
            100% 100%,
            900px auto,
            auto;
        background-position:
            center,
            center top,
            center;
        background-repeat:
            no-repeat,
            no-repeat,
            repeat;
    }

    .header-inner {
        padding: 0px 24px;
    }

    .hero-copy h1 {
        background: linear-gradient(90deg,
                rgba(255, 255, 255, 1) 58.65384340286255%,
                rgba(178, 127, 255, 1) 90.20791053771973%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
    }
}

@media (max-width: 360px) {

    .hero-copy {
        padding-top: 420px;
    }
}

.footer__actions .button-main .frame-5 {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    padding: 13px 24px 13px 8px !important;
}

@media (max-width: 640px) {
  /* Уменьшаем боковые отступы у секции "Почему Mercurio" */
  .section-team {
    padding-left: 25px;
    padding-right: 25px;
  }

  .section-team .container.narrow {
    width: 100%;
    margin-inline: 0;
  }
}
