.breadcrumbs-wrap {
    padding-bottom: 40px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    line-height: 16px;
    color: #6b6382;
}

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

.breadcrumbs__item + .breadcrumbs__item::before {
    content: "/";
    margin-right: 10px;
    color: rgba(107, 99, 130, 0.5);
}

.breadcrumbs__item._active {
    color: #15102c;
    font-weight: 600;
}

.breadcrumbs__link {
    transition: color 0.25s ease;
}

.breadcrumbs__link:hover {
    color: #15102c;
}

.header__item--dropdown {
    position: relative;
}

.header__item-link--button,
.header__burger-link--button {
    background: transparent;
    border: none;
    cursor: pointer;
    color: inherit;
    font: inherit;
}

.header__item-link--button {
    display: inline-block;
    position: relative;
    padding-right: 18px;
}

.header__item-link--wide {
    width: auto;
    min-width: 130px;
}

.header__item-link--button::after {
    content: "";
    position: absolute;
    right: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.25s ease, top 0.25s ease;
}

.header__item-link--button[aria-expanded="true"]::after {
    transform: rotate(-135deg);
    top: 10px;
}

.header__dropdown {
    position: absolute;
    top: calc(100% + 18px);
    left: -18px;
    width: 340px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(19, 16, 40, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 80px rgba(9, 7, 24, 0.32);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.98);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 40;
}

.header__dropdown::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 226, 5, 0.12), rgba(116, 240, 255, 0.04));
    pointer-events: none;
}

.header__dropdown--active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.header__dropdown-link {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 16px;
    border-radius: 18px;
    color: #fff;
    transition: transform 0.25s ease, background 0.25s ease;
}

.header__dropdown-link span {
    font-size: 15px;
    line-height: 18px;
    font-weight: 600;
}

.header__dropdown-link small {
    font-size: 12px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.68);
}

.header__dropdown-link:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.05);
}

.header__dropdown-link--overview {
    margin-bottom: 10px;
    background: linear-gradient(135deg, rgba(255, 226, 5, 0.1), rgba(255, 255, 255, 0.03));
}

.header__burger-link--button {
    width: 100%;
    text-align: left;
    position: relative;
    padding-right: 20px;
}

.header__burger-link--button::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    transition: transform 0.25s ease;
}

.header__burger-link--active::after {
    transform: rotate(45deg);
}

.header__burger-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.header__burger-submenu--active {
    max-height: 420px;
}

.header__burger-sublink {
    display: block;
    margin-top: 12px;
    padding-left: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 17px;
}

.services-preview {
    padding: 70px 0 120px;
    position: relative;
    overflow: hidden;
}

.services-preview::before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 226, 5, 0.18) 0%, rgba(255, 226, 5, 0) 70%);
    top: -140px;
    right: -120px;
}

.services-preview__inner {
    position: relative;
}

.services-preview__title {
    max-width: 680px;
    margin-bottom: 18px;
    font-size: 52px;
    line-height: 1;
    text-transform: uppercase;
}

.services-preview__text {
    max-width: 650px;
    margin-bottom: 42px;
    color: #5f5875;
}

.services-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.services-preview__card {
    position: relative;
    min-height: 250px;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f4eefc 100%);
    border: 1px solid rgba(186, 163, 215, 0.35);
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(26, 17, 52, 0.08);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-preview__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 90px rgba(26, 17, 52, 0.14);
}

.services-preview__card-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    right: -40px;
    top: -40px;
    background: radial-gradient(circle, rgba(116, 240, 255, 0.26) 0%, rgba(116, 240, 255, 0) 72%);
    animation: floatGlow 8s ease-in-out infinite;
}

.services-preview__card-title {
    position: relative;
    margin-bottom: 12px;
    font-size: 28px;
    line-height: 1.08;
    color: #15102c;
}

.services-preview__card-text {
    position: relative;
    margin-bottom: 26px;
    color: #5f5875;
}

.services-preview__card-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #15102c;
}

.services-preview__card-link::after {
    content: "";
    width: 28px;
    height: 1px;
    background: #15102c;
    transition: width 0.25s ease;
}

.services-preview__card-link:hover::after {
    width: 42px;
}

.services-page,
.service-detail {
    padding: 60px 0 110px;
    background: linear-gradient(180deg, #fff 0%, #f8f3ff 52%, #fff 100%);
}

.services-page {
    overflow: hidden;
}

.services-page__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 48px;
    align-items: center;
    margin-bottom: 42px;
}

.services-page__title {
    max-width: 760px;
    margin-bottom: 22px;
    font-size: 64px;
    line-height: 0.95;
    text-transform: uppercase;
    color: #15102c;
}

.services-page__lead {
    max-width: 660px;
    margin-bottom: 30px;
    color: #5f5875;
    font-size: 18px;
    line-height: 1.6;
}

.services-page__cta,
.service-detail__cta,
.case-study-detail__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 18px 28px;
    border-radius: 999px;
    background: #ffe205;
    color: #15102c;
    box-shadow: 0 18px 40px rgba(255, 226, 5, 0.28);
    border: 1px solid rgba(21, 16, 44, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.services-page__cta:hover,
.service-detail__cta:hover,
.case-study-detail__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 48px rgba(255, 226, 5, 0.34);
    background: #ffea3d;
}

.services-page__visual {
    position: relative;
    min-height: 430px;
}

.services-page__ring {
    position: absolute;
    border: 1px solid rgba(127, 113, 160, 0.24);
    border-radius: 50%;
    animation: rotateSlow 18s linear infinite;
}

.services-page__ring--one {
    width: 360px;
    height: 360px;
    top: 18px;
    left: 28px;
}

.services-page__ring--two {
    width: 260px;
    height: 260px;
    top: 66px;
    left: 78px;
    animation-direction: reverse;
}

.services-page__ring--three {
    width: 140px;
    height: 140px;
    top: 128px;
    left: 138px;
}

.services-page__visual-panel {
    position: absolute;
    right: 0;
    bottom: 24px;
    max-width: 280px;
    padding: 26px;
    border-radius: 26px;
    background: rgba(21, 16, 44, 0.96);
    color: #fff;
    box-shadow: 0 24px 60px rgba(14, 10, 32, 0.2);
}

.services-page__visual-panel p {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.62);
}

.services-page__visual-panel strong {
    font-size: 32px;
    line-height: 1.05;
    text-transform: uppercase;
}

.services-page__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.services-page__card {
    padding: 30px;
    border-radius: 32px;
    background: #fff;
    border: 1px solid rgba(188, 170, 217, 0.38);
    box-shadow: 0 18px 50px rgba(21, 16, 44, 0.08);
}

.services-page__card-top {
    margin-bottom: 18px;
}

.services-page__card-eyebrow {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 15px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #7a6e95;
}

.services-page__card-title {
    font-size: 34px;
    line-height: 1;
    color: #15102c;
}

.services-page__card-text {
    min-height: 78px;
    margin-bottom: 24px;
    color: #5f5875;
}

.services-page__card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.services-page__card-tags span,
.service-detail__chips span {
    padding: 10px 14px;
    border-radius: 999px;
    background: #f4eefc;
    font-size: 12px;
    line-height: 15px;
    color: #4f4468;
}

.services-page__card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 24px;
    border-radius: 999px;
    background: #15102c;
    color: #fff;
}

.case-studies-page,
.case-study-detail {
    padding: 60px 0 110px;
    background: linear-gradient(180deg, #fff 0%, #f7f2ff 48%, #fff 100%);
}

.case-studies-page__hero {
    margin-bottom: 36px;
}

.case-studies-page__title {
    max-width: 820px;
    margin-bottom: 18px;
    font-size: 60px;
    line-height: 0.96;
    text-transform: uppercase;
    color: #15102c;
}

.case-studies-page__lead {
    max-width: 720px;
    color: #5f5875;
    font-size: 18px;
    line-height: 1.6;
}

.case-studies-page__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.case-studies-page__card {
    overflow: hidden;
    border-radius: 30px;
    background: #fff;
    border: 1px solid rgba(188, 170, 217, 0.35);
    box-shadow: 0 20px 55px rgba(21, 16, 44, 0.08);
}

.case-studies-page__preview {
    height: 280px;
    overflow: hidden;
}

.case-studies-page__preview img,
.case-study-detail__preview img,
.case-study-detail__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.case-studies-page__content {
    padding: 28px;
}

.case-studies-page__meta {
    margin-bottom: 12px;
    color: #7a6e95;
    font-size: 13px;
    line-height: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.case-studies-page__card-title {
    margin-bottom: 14px;
    font-size: 34px;
    line-height: 1.02;
    color: #15102c;
}

.case-studies-page__card-text {
    margin-bottom: 24px;
    color: #5f5875;
}

.case-studies-page__card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 24px;
    border-radius: 999px;
    background: #15102c;
    color: #fff;
}

.case-study-detail__hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 34px;
    align-items: center;
    margin-bottom: 30px;
}

.case-study-detail__title {
    margin-bottom: 18px;
    font-size: 58px;
    line-height: 0.96;
    text-transform: uppercase;
    color: #15102c;
}

.case-study-detail__lead {
    margin-bottom: 26px;
    max-width: 680px;
    color: #5f5875;
    font-size: 18px;
    line-height: 1.6;
}

.case-study-detail__preview {
    min-height: 360px;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: 0 20px 55px rgba(21, 16, 44, 0.12);
}

.case-study-detail__sections {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 28px;
}

.case-study-detail__section,
.case-study-detail__gallery-block,
.case-study-detail__bottom-cta {
    padding: 30px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid rgba(188, 170, 217, 0.35);
    box-shadow: 0 18px 50px rgba(21, 16, 44, 0.06);
}

.case-study-detail__section p,
.case-study-detail__bottom-cta p {
    color: #5f5875;
}

.case-study-detail__gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.case-study-detail__gallery-item {
    height: auto;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(188, 170, 217, 0.2);
}

.case-study-detail__gallery-item img {
    height: 220px;
}

.case-study-detail__gallery-caption {
    padding: 14px 16px 18px;
    color: #5f5875;
    font-size: 14px;
    line-height: 1.5;
}

.case-study-detail__bottom-cta {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: #15102c;
}

.case-study-detail__bottom-cta h2 {
    margin-bottom: 12px;
    font-size: 36px;
    line-height: 1.04;
    color: #fff;
}

.case-study-detail__bottom-cta p,
.case-study-detail__bottom-cta .section-title {
    color: rgba(255, 255, 255, 0.76);
}

.service-detail {
    position: relative;
    overflow: hidden;
}

.service-detail::before {
    content: "";
    position: absolute;
    width: 580px;
    height: 580px;
    right: -180px;
    top: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 226, 5, 0.18) 0%, rgba(255, 226, 5, 0) 72%);
    pointer-events: none;
}

.service-detail__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 48px;
    align-items: center;
    margin-bottom: 44px;
}

.service-detail__title {
    margin-bottom: 22px;
    font-size: 68px;
    line-height: 0.94;
    text-transform: uppercase;
    color: #15102c;
}

.service-detail__lead {
    max-width: 700px;
    margin-bottom: 28px;
    color: #5f5875;
    font-size: 18px;
    line-height: 1.65;
}

.service-detail__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.service-detail__chips span {
    background: rgba(21, 16, 44, 0.06);
    color: #15102c;
    font-size: 13px;
    line-height: 16px;
    padding: 12px 16px;
}

.service-detail__motion {
    position: relative;
    min-height: 420px;
    border-radius: 38px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(238, 229, 252, 0.9));
    border: 1px solid rgba(188, 170, 217, 0.35);
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.service-detail__orb {
    position: absolute;
    border-radius: 50%;
    animation: floatOrb 9s ease-in-out infinite;
}

.service-detail__orb--one {
    width: 240px;
    height: 240px;
    top: 38px;
    left: 42px;
    background: radial-gradient(circle, rgba(255, 226, 5, 0.78) 0%, rgba(255, 226, 5, 0.05) 72%);
}

.service-detail__orb--two {
    width: 160px;
    height: 160px;
    bottom: 36px;
    right: 52px;
    background: radial-gradient(circle, rgba(116, 240, 255, 0.72) 0%, rgba(116, 240, 255, 0.04) 72%);
    animation-delay: -2s;
}

.service-detail__orb--three {
    width: 92px;
    height: 92px;
    top: 104px;
    right: 84px;
    background: radial-gradient(circle, rgba(172, 122, 255, 0.72) 0%, rgba(172, 122, 255, 0.06) 72%);
    animation-delay: -4s;
}

.service-detail__gridline {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(92, 76, 130, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(92, 76, 130, 0.1) 1px, transparent 1px);
    background-size: 34px 34px;
    -webkit-mask-image: radial-gradient(circle at center, #000 36%, transparent 86%);
    mask-image: radial-gradient(circle at center, #000 36%, transparent 86%);
}

.service-detail__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.service-detail__stat {
    padding: 26px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(188, 170, 217, 0.35);
    box-shadow: 0 16px 45px rgba(21, 16, 44, 0.06);
}

.service-detail__stat strong {
    display: block;
    margin-bottom: 10px;
    font-size: 34px;
    line-height: 1;
    color: #15102c;
}

.service-detail__stat span {
    color: #5f5875;
}

.service-detail__body {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    margin-bottom: 26px;
}

.service-detail__panel {
    padding: 34px;
    border-radius: 34px;
    background: #fff;
    border: 1px solid rgba(188, 170, 217, 0.35);
    box-shadow: 0 18px 50px rgba(21, 16, 44, 0.06);
}

.service-detail__section-title {
    margin-bottom: 24px;
    font-size: 34px;
    line-height: 1.05;
    color: #15102c;
}

.service-detail__list,
.service-detail__steps,
.service-detail__outcomes-list {
    display: grid;
    gap: 18px;
}

.service-detail__list-item,
.service-detail__step,
.service-detail__outcome {
    display: flex;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 22px;
    background: #f8f3ff;
}

.service-detail__list-item span {
    width: 12px;
    min-width: 12px;
    height: 12px;
    margin-top: 8px;
    border-radius: 50%;
    background: #15102c;
    box-shadow: 0 0 0 6px rgba(21, 16, 44, 0.08);
}

.service-detail__step strong {
    min-width: 38px;
    font-size: 22px;
    line-height: 1;
    color: #15102c;
}

.service-detail__outcomes {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 26px;
    align-items: start;
    padding: 34px;
    border-radius: 34px;
    background: #15102c;
    color: #fff;
    box-shadow: 0 24px 70px rgba(21, 16, 44, 0.18);
}

.service-detail__outcomes .section-title,
.service-detail__outcomes .service-detail__section-title {
    color: #fff;
}

.service-detail__outcome {
    background: rgba(255, 255, 255, 0.07);
}

.service-detail--ai .service-detail__motion {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(229, 255, 247, 0.92));
}

.service-detail--software .service-detail__motion {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(236, 235, 255, 0.94));
}

.service-detail--webapp .service-detail__motion {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(228, 247, 255, 0.94));
}

.service-detail--crm .service-detail__motion {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 243, 228, 0.94));
}

.service-detail--website .service-detail__motion {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 236, 244, 0.94));
}

.service-detail--blockchain .service-detail__motion {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(234, 238, 255, 0.94));
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes floatGlow {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(-16px, 18px, 0);
    }
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(14px, -18px, 0) scale(1.04);
    }
}

@media (max-width: 1200px) {
    .services-preview__grid,
    .services-page__grid,
    .service-detail__body,
    .service-detail__stats,
    .service-detail__outcomes {
        grid-template-columns: 1fr;
    }

    .services-page__hero,
    .service-detail__hero,
    .case-study-detail__hero {
        grid-template-columns: 1fr;
    }

    .services-page__title,
    .service-detail__title,
    .case-studies-page__title,
    .case-study-detail__title {
        font-size: 48px;
    }

    .case-studies-page__grid,
    .case-study-detail__sections,
    .case-study-detail__gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1000px) {
    body.menu-open {
        overflow: hidden;
    }

    .header__inner {
        min-height: 88px !important;
        height: auto !important;
        padding: 18px 16px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
        flex-wrap: nowrap !important;
    }

    .header__logo {
        position: static !important;
        flex: 0 0 auto;
    }

    .header__logo-link {
        position: static !important;
        left: auto !important;
        top: auto !important;
        font-size: 22px !important;
        line-height: 1 !important;
        display: block;
    }

    .header__order-btn {
        position: static !important;
        right: auto !important;
        top: auto !important;
        margin: 0 0 0 auto !important;
        padding: 12px 18px !important;
        white-space: nowrap !important;
        font-size: 14px !important;
        line-height: 17px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 0 0 auto;
    }

    .header__burger {
        position: static !important;
        right: auto !important;
        top: auto !important;
        flex: 0 0 auto;
        display: block !important;
    }

    .header__burger-btn {
        width: 44px !important;
        height: 44px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 16px !important;
        background: rgba(255, 255, 255, 0.18) !important;
        backdrop-filter: blur(14px);
        border: none;
        padding: 0 !important;
    }

    .header__burger-ico {
        width: 24px;
        filter: brightness(0) invert(1);
    }

    .header__location {
        display: none;
    }

    .header__dropdown {
        display: none;
    }

    .header__burger-menu {
        display: block;
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        padding: 88px 20px 28px;
        background: radial-gradient(circle at top right, rgba(255, 226, 5, 0.16), transparent 28%), linear-gradient(180deg, rgba(23, 18, 46, 0.98) 0%, rgba(16, 12, 34, 0.98) 100%);
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
        box-shadow: none;
        overflow-y: auto;
        z-index: 120;
    }

    .header__burger-menu.header__burger--active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .header__burger-close {
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.06);
        color: #fff;
        font-size: 22px;
        line-height: 1;
        right: 20px;
        top: 22px;
    }

    .header__burger-list {
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .header__burger-item + .header__burger-item {
        margin-top: 0;
    }

    .header__burger-link,
    .header__burger-link--button {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 18px 20px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.08);
        color: #fff;
        font-size: 20px;
        line-height: 24px;
        font-weight: 600;
        text-align: left;
    }

    .header__burger-link--button::after {
        position: static;
        font-size: 26px;
        line-height: 1;
    }

    .header__burger-submenu {
        max-height: 0;
        margin-top: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, margin-top 0.35s ease;
    }

    .header__burger-submenu--active {
        max-height: 520px;
        margin-top: 12px;
    }

    .header__burger-sublink {
        display: block;
        margin-top: 10px;
        padding: 16px 18px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.07);
        color: rgba(255, 255, 255, 0.84);
        font-size: 15px;
        line-height: 19px;
    }

    .services-preview {
        padding: 40px 0 80px;
    }

    .services-preview__title {
        font-size: 36px;
    }

    .services-page,
    .service-detail {
        padding: 30px 0 80px;
    }

    .services-page__title,
    .service-detail__title,
    .case-studies-page__title,
    .case-study-detail__title {
        font-size: 34px;
    }

    .services-page__visual,
    .service-detail__motion {
        min-height: 300px;
    }

    .case-study-detail__bottom-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 700px) {
    .header__inner {
        padding: 16px 12px !important;
        gap: 8px !important;
    }

    .header__logo-link {
        font-size: 18px !important;
    }

    .header__order-btn {
        padding: 10px 14px !important;
        font-size: 12px !important;
        line-height: 14px !important;
        border-radius: 999px !important;
    }

    .header__burger-btn {
        width: 40px !important;
        height: 40px !important;
    }

    .services-preview__grid,
    .case-studies-page__grid {
        grid-template-columns: 1fr;
    }

    .services-page__card,
    .service-detail__panel,
    .service-detail__outcomes,
    .service-detail__stat,
    .services-preview__card,
    .case-studies-page__content,
    .case-study-detail__section,
    .case-study-detail__gallery-block,
    .case-study-detail__bottom-cta {
        padding: 22px;
        border-radius: 24px;
    }

    .services-page__card-title,
    .service-detail__section-title {
        font-size: 28px;
    }

    .services-page__visual-panel {
        position: relative;
        max-width: 100%;
        right: auto;
        bottom: auto;
    }

    .case-studies-page__preview,
    .case-study-detail__preview,
    .case-study-detail__gallery-item {
        min-height: 220px;
    }

    .case-study-detail__gallery-item img {
        height: 220px;
    }
}

.team__item-section,
.team__people {
    position: relative;
    overflow: hidden;
}

.team__portrait-img {
    position: relative;
    display: block;
    transform-origin: center top;
    animation: portraitFloat 6.8s ease-in-out infinite;
    filter: saturate(1.04) contrast(1.02);
    will-change: transform, filter;
}

.team__portrait-img--lead {
    animation-duration: 7.8s;
}

.team__item-section::after,
.team__people::after {
    content: "";
    position: absolute;
    inset: -12% auto -12% -28%;
    width: 42%;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.28) 45%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(-180%) skewX(-18deg);
    animation: portraitShine 8.5s ease-in-out infinite;
    pointer-events: none;
}

.team__people:nth-child(2n)::after {
    animation-delay: 1.4s;
}

.team__people:nth-child(3n)::after {
    animation-delay: 2.6s;
}

@keyframes portraitFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(0, -6px, 0) scale(1.018);
    }
}

@keyframes portraitShine {
    0%,
    72%,
    100% {
        transform: translateX(-180%) skewX(-18deg);
        opacity: 0;
    }

    16%,
    34% {
        opacity: 1;
    }

    46% {
        transform: translateX(360%) skewX(-18deg);
        opacity: 0;
    }
}
