:root {
    --ink: #18233a;
    --dot: #382e4d;
    --text: #8e939e;
    --muted: #a8adba;
    --line: #e7e9ef;
    --soft: #f6f6f8;
    --surface: #ffffff;
    --blue: #3f73f2;
    --cyan: #41ddff;
    --brand-a: #7b2b89;
    --brand-b: #c1237f;
    --brand-c: #d2217d;
    --brand: linear-gradient(45deg, #7b2b89 14%, #c1237f 51%, #d2217d 87%);
    --shadow: 0 24px 70px rgba(24, 35, 58, .12);
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: #fff;
    color: var(--text);
    font-family: "Onest", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

body.is-admin {
    background: #f4f5f9;
}

a {
    color: inherit;
}

img,
svg {
    display: block;
}

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

body.is-admin .main-header,
body.is-admin .floating-request,
body.is-admin .mobile-panel,
body.is-admin .footer-social,
body.is-admin .main-footer {
    display: none;
}

.main-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: 0;
}

.main-header-row {
    position: fixed;
    top: 20px;
    left: 32px;
    right: 32px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    height: 88px;
    padding: 12px 52px;
    border-radius: 48px;
    background: rgba(255, 255, 255, .6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background .24s ease, box-shadow .24s ease, top .24s ease, height .24s ease;
}

.main-header.is-scrolled .main-header-row,
body:not(.home) .main-header-row {
    top: 16px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 60px rgba(24, 35, 58, .09);
}

.main-logo {
    display: block;
    flex: 0 0 auto;
    width: 61px;
    height: 44px;
    overflow: hidden;
    text-decoration: none;
}

.main-logo img {
    width: 61px;
    height: 44px;
    object-fit: contain;
    object-position: left center;
}

.main-header-menu {
    flex: 1 1 auto;
}

.main-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 26px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-menu-item {
    position: relative;
}

.button-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 160px;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}

.button-menu:hover,
.main-menu-item:hover > .button-menu {
    background: #f2f3f6;
}

.main-menu-sub {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    display: grid;
    gap: 4px;
    width: 310px;
    padding: 12px;
    border-radius: 32px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 12px);
    transition: opacity .2s ease, transform .2s ease;
}

.main-menu-sub a {
    padding: 13px 16px;
    border-radius: 160px;
    color: var(--ink);
    font-weight: 700;
    text-decoration: none;
}

.main-menu-sub a:hover {
    background: #f2f3f6;
}

.has-dropdown:hover .main-menu-sub {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.main-header-social,
.footer-social-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.button-social-icon {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(24, 35, 58, .42);
    border-radius: 50%;
    color: #8790a1;
    font-size: 16px;
    font-weight: 850;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.button-social-icon:hover {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;
    transform: translateY(-1px);
}

.main-header-burger {
    display: none;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    cursor: pointer;
}

.main-header-burger span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px auto;
    background: currentColor;
}

.mobile-panel {
    position: fixed;
    top: 116px;
    right: 24px;
    z-index: 99;
    display: none;
    width: min(380px, calc(100% - 48px));
    padding: 18px;
    border-radius: 32px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow);
}

.mobile-panel.is-open {
    display: grid;
}

.mobile-panel a {
    padding: 14px 16px;
    border-radius: 160px;
    color: var(--ink);
    font-weight: 750;
    text-decoration: none;
}

.mobile-panel a:hover {
    background: #f2f3f6;
}

.floating-request {
    position: fixed;
    right: 46px;
    bottom: 62px;
    z-index: 60;
    display: grid;
    width: 152px;
    height: 152px;
    place-items: center;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 27px;
    font-weight: 760;
    line-height: 1.05;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 24px 60px rgba(63, 115, 242, .28);
    transition: transform .2s ease;
}

.floating-request:hover {
    transform: scale(1.04);
}

.home-hero {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 150px 32px 90px;
    overflow: hidden;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.home-hero-inner {
    width: min(1240px, 100%);
    color: #fff;
    text-align: center;
}

.home-hero h1 {
    margin: 0;
    color: #fff;
    font-size: 82px;
    font-weight: 850;
    line-height: 1.02;
    text-transform: uppercase;
}

.home-hero h1 span {
    display: block;
}

.home-hero p {
    max-width: 880px;
    margin: 34px auto 0;
    color: rgba(255, 255, 255, .9);
    font-size: 24px;
    line-height: 1.45;
}

.hero-actions,
.about-actions,
.dot-case-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-actions {
    justify-content: center;
    margin-top: 38px;
}

.btn,
.dot-arrow-link,
.dot-outline-link,
.dot-gradient-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 0 32px;
    border-radius: 160px;
    font-size: 16px;
    font-weight: 780;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover,
.dot-arrow-link:hover,
.dot-outline-link:hover,
.dot-gradient-link:hover {
    transform: translateY(-1px);
}

.btn {
    background: linear-gradient(90deg, #8853ff, #41ddff);
    color: #fff;
}

.btn--dark {
    background: var(--ink);
    color: #fff;
}

.btn--light {
    background: rgba(255, 255, 255, .9);
    color: var(--ink);
}

.btn--ghost {
    border: 1px solid #7d58ff;
    background: #fff;
    color: var(--dot);
}

.dot-arrow-link,
.dot-gradient-link {
    background: linear-gradient(90deg, #8853ff, #41ddff);
    color: #fff;
}

.dot-outline-link {
    border: 1px solid #7d58ff;
    color: #382e4d;
    background: #fff;
}

.gradient-text {
    background-image: var(--brand);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.section__nums {
    position: relative;
    overflow: hidden;
    padding: 140px 100px 180px;
    background: #fff;
}

.section__nums-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    min-height: 570px;
}

.section__nums-column {
    position: relative;
    min-height: 420px;
}

.section__nums-column-second,
.section__nums-column-four {
    padding-top: 90px;
}

.section__nums-column-third {
    padding-top: 355px;
}

.section__nums-num {
    font-size: 120px;
    font-weight: 860;
    line-height: .9;
    text-transform: uppercase;
}

.section__nums-num span {
    color: var(--brand-c);
    font-size: 20px;
    font-weight: 850;
}

.section__nums-caption {
    max-width: 290px;
    margin-top: 26px;
    color: #1b1b1b;
    font-size: 24px;
    font-weight: 820;
    line-height: 1.08;
    text-transform: uppercase;
}

.section__nums-column h2 {
    max-width: 340px;
    margin: 0 0 24px;
    color: #6090ff;
    font-size: 34px;
    font-weight: 820;
    line-height: 1.08;
    text-transform: uppercase;
}

.section__nums-column p {
    max-width: 320px;
    margin: 0;
    color: #1b1b1b;
    font-size: 18px;
    line-height: 1.45;
}

.dot-line {
    position: absolute;
    top: 0;
    left: -18px;
    width: 1px;
    height: 420px;
    background: #c9cbd3;
}

.dot-line::before,
.dot-line::after {
    content: "";
    position: absolute;
    left: -5px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: linear-gradient(180deg, #7d58ff, #41ddff);
}

.dot-line::before {
    top: 35%;
}

.dot-line::after {
    bottom: 0;
}

.section__nums-place {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 48px;
    align-items: center;
    max-width: 1040px;
    margin: -80px auto 0;
}

.section__nums-place img {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    object-fit: cover;
    filter: saturate(.94);
}

.section__nums-place span {
    color: var(--text);
    font-size: 18px;
    font-weight: 760;
    text-transform: uppercase;
}

.section__nums-place h3 {
    margin: 10px 0 22px;
    color: var(--dot);
    font-size: 38px;
    line-height: 1.05;
    text-transform: uppercase;
}

.section__nums-place p {
    max-width: 700px;
    margin: 0;
    color: #1b1b1b;
    font-size: 21px;
    line-height: 1.5;
}

.section__services,
.section__news,
.section__clients {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 44px;
    background: var(--soft);
}

.section__services {
    padding: 140px 0;
}

.section__services-container,
.dot-section-head,
.dot-cases-list,
.section__about,
.section__clients h2,
.clients-grid,
.section,
.page-hero-inner,
.contacts-grid {
    width: min(1240px, calc(100% - 80px));
    margin-right: auto;
    margin-left: auto;
}

.dot-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 80px;
}

.dot-section-head--row {
    align-items: center;
}

.dot-section-head h2,
.section__about h2,
.section__clients h2 {
    margin: 0;
    color: var(--dot);
    font-size: 60px;
    font-weight: 830;
    line-height: 1.02;
    text-transform: uppercase;
}

.dot-section-head h2 span,
.section__about h2 span,
.section__clients h2 span {
    display: block;
}

.dot-section-head h2 span + span,
.section__about h2 span + span,
.section__clients h2 span + span {
    font-weight: 320;
}

.dot-section-head h2 span + span::before,
.section__clients h2 span + span::before {
    content: "";
    display: inline-block;
    width: 80px;
    height: 2px;
    margin: 0 16px 16px 0;
    background: var(--dot);
    vertical-align: middle;
}

.section__services-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 40px;
}

.section__services-tabs a {
    min-height: 64px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    border-radius: 999px;
    background: #fff;
    color: var(--dot);
    font-weight: 790;
    text-decoration: none;
}

.section__services-tabs a:hover {
    background: #eceef4;
}

.section__services-slider,
.section__news-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 323px;
    gap: 40px;
    overflow-x: auto;
    padding: 0 max(100px, calc((100vw - 1240px) / 2)) 14px;
    scroll-snap-type: x mandatory;
}

.section__services-slider::-webkit-scrollbar,
.section__news-slider::-webkit-scrollbar {
    height: 0;
}

.section__services-slide {
    scroll-snap-align: start;
    min-height: 580px;
    display: flex;
    flex-direction: column;
    padding: 40px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(24, 35, 58, .04);
}

.service-icon {
    display: grid;
    width: 84px;
    height: 84px;
    place-items: center;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(123, 43, 137, .12), rgba(65, 221, 255, .2));
    color: var(--brand-b);
    font-size: 24px;
    font-weight: 850;
}

.section__services-slide h3 {
    margin: 34px 0 16px;
    color: var(--dot);
    font-size: 24px;
    line-height: 1.12;
    text-transform: uppercase;
}

.section__services-slide h3 a,
.dot-case-content h3 a {
    text-decoration: none;
}

.section__services-slide p {
    margin: 0;
    color: #5f6572;
    font-size: 16px;
    line-height: 1.42;
}

.service-mini-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.service-mini-tags span,
.tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f0f2f8;
    color: var(--dot);
    font-size: 12px;
    font-weight: 760;
}

.section__services-bottom {
    display: grid;
    gap: 20px;
    margin-top: auto;
}

.section__services-bottom > span {
    color: var(--dot);
    font-weight: 780;
}

.section__services-bottom a {
    display: grid;
    min-height: 58px;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(90deg, #8853ff, #41ddff);
    color: #fff;
    font-weight: 820;
    text-decoration: none;
    text-transform: uppercase;
}

.section__cases {
    padding: 140px 0 120px;
    background: #fff;
}

.dot-case {
    display: grid;
    grid-template-columns: 529px minmax(0, 571px);
    gap: 120px;
    align-items: center;
    margin-bottom: 120px;
}

.dot-case.is-reverse {
    grid-template-columns: minmax(0, 571px) 529px;
}

.dot-case.is-reverse .dot-case-visual {
    order: 2;
}

.dot-case-visual {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 340px;
    padding: 34px;
    border-radius: 20px;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .42), transparent 26%),
        linear-gradient(135deg, #18233a 0%, #7b2b89 48%, #23a6d5 100%);
    color: #fff;
    text-decoration: none;
}

.dot-case-visual span {
    color: rgba(255, 255, 255, .72);
    font-weight: 760;
    text-transform: uppercase;
}

.dot-case-visual strong {
    max-width: 390px;
    font-size: 36px;
    line-height: 1.02;
    text-transform: uppercase;
}

.dot-case-content > span {
    color: var(--blue);
    font-size: 14px;
    font-weight: 820;
    text-transform: uppercase;
}

.dot-case-content h3 {
    margin: 14px 0 28px;
    color: var(--dot);
    font-size: 32px;
    line-height: 1.12;
    text-transform: uppercase;
}

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

.dot-case-stats div {
    min-height: 84px;
    padding: 16px;
    border-radius: 14px;
    background: linear-gradient(90deg, rgba(136, 83, 255, .12), rgba(65, 221, 255, .14));
}

.dot-case-stats strong {
    display: block;
    color: #7d58ff;
    font-size: 30px;
}

.dot-case-stats small {
    color: var(--dot);
    font-weight: 700;
}

.dot-case-content p {
    margin: 0 0 28px;
    color: #5f6572;
    font-size: 18px;
    line-height: 1.45;
}

.dot-case-actions a {
    display: inline-grid;
    min-height: 54px;
    place-items: center;
    padding: 0 28px;
    border-radius: 999px;
    background: #f2f3f6;
    color: var(--dot);
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.dot-case-actions a + a {
    background: linear-gradient(90deg, #8853ff, #41ddff);
    color: #fff;
}

.section__news {
    padding: 140px 0;
}

.news-arrows {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--dot);
}

.news-arrows span {
    width: 144px;
    height: 2px;
    background: var(--dot);
}

.section__news-slider {
    grid-auto-columns: 600px;
}

.section__news-card {
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    border-radius: 20px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(24, 35, 58, 0), rgba(24, 35, 58, .74)),
        linear-gradient(135deg, rgba(123, 43, 137, .55), rgba(210, 33, 125, .42)),
        #dfe3ec;
    color: #fff;
    text-decoration: none;
}

.section__news-card:nth-child(2) {
    background:
        linear-gradient(180deg, rgba(24, 35, 58, 0), rgba(24, 35, 58, .7)),
        linear-gradient(135deg, rgba(35, 166, 213, .66), rgba(35, 213, 171, .42)),
        #dfe3ec;
}

.section__news-card span {
    color: rgba(255, 255, 255, .7);
    font-weight: 780;
    text-transform: uppercase;
}

.section__news-card h3 {
    max-width: 420px;
    margin: 12px 0;
    font-size: 28px;
    line-height: 1.12;
    text-transform: uppercase;
}

.section__news-card p {
    max-width: 450px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    line-height: 1.45;
}

.section__about {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 520px;
    gap: 80px;
    align-items: center;
    padding: 140px 0;
}

.section__about h2 {
    color: var(--dot);
}

.section__about p {
    margin: 56px 0 46px;
    color: #5f6572;
    font-size: 21px;
    line-height: 1.55;
}

.about-photo {
    min-height: 430px;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, #f0f2f8, #fff);
}

.about-photo img {
    width: 100%;
    height: 420px;
    border-radius: 20px;
    object-fit: cover;
}

.section__clients {
    padding: 140px 0;
    border-radius: 44px 44px 0 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 72px;
    border: 1px solid #dde0e8;
    border-width: 1px 0 0 1px;
}

.clients-grid span {
    display: grid;
    min-height: 140px;
    place-items: center;
    border: 1px solid #dde0e8;
    border-width: 0 1px 1px 0;
    color: #6f7480;
    font-size: 20px;
    font-weight: 850;
    text-transform: uppercase;
}

.page-hero {
    min-height: 650px;
    display: grid;
    align-items: center;
    padding: 170px 0 90px;
    overflow: hidden;
    background:
        radial-gradient(circle at 77% 30%, rgba(136, 83, 255, .22), transparent 30%),
        linear-gradient(180deg, #f9f8ff 0%, #fff 72%);
}

.page-hero-inner,
.page-hero {
    color: var(--dot);
}

.page-hero > * {
    width: min(1240px, calc(100% - 80px));
    margin-right: auto;
    margin-left: auto;
}

.page-hero h1 {
    max-width: none;
    margin: 0 auto;
    color: var(--dot);
    font-size: 70px;
    line-height: 1.05;
    font-weight: 850;
    text-transform: uppercase;
}

.page-hero p {
    max-width: 760px;
    margin: 30px auto 0;
    color: #6f7480;
    font-size: 22px;
    line-height: 1.48;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
    color: var(--muted);
    font-weight: 760;
    text-transform: uppercase;
}

.breadcrumbs a {
    text-decoration: none;
}

.summary-box {
    margin: 38px auto 0;
    padding: 30px;
    border-radius: 24px;
    background: #fff;
    color: #5f6572;
    line-height: 1.62;
    box-shadow: 0 18px 50px rgba(24, 35, 58, .07);
}

.section {
    padding: 110px 0;
}

.section--soft {
    width: 100%;
    padding-right: max(40px, calc((100vw - 1240px) / 2));
    padding-left: max(40px, calc((100vw - 1240px) / 2));
    border-radius: 44px;
    background: var(--soft);
}

.section-head {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(320px, .55fr);
    gap: 60px;
    align-items: end;
    margin-bottom: 56px;
}

.section-title {
    margin: 0;
    color: var(--dot);
    font-size: 56px;
    line-height: 1.05;
    font-weight: 830;
    text-transform: uppercase;
}

.section-lead {
    margin: 0;
    color: #6f7480;
    font-size: 19px;
    line-height: 1.55;
}

.service-grid,
.case-grid,
.news-grid,
.contacts-grid,
.admin-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-card,
.case-card,
.news-card,
.content-card,
.admin-card {
    min-height: 270px;
    padding: 34px;
    border-radius: 20px;
    background: #fff;
    color: #5f6572;
    text-decoration: none;
    box-shadow: 0 16px 38px rgba(24, 35, 58, .05);
    transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover,
.case-card:hover,
.news-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.service-card h3,
.case-card h3,
.news-card h3,
.content-card h2,
.admin-card h2 {
    margin: 0 0 16px;
    color: var(--dot);
    font-size: 26px;
    line-height: 1.12;
    text-transform: uppercase;
}

.service-card p,
.case-card p,
.news-card p,
.content-card p,
.admin-card p {
    margin: 0 0 12px;
    line-height: 1.55;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .55fr);
    gap: 48px;
    align-items: start;
}

.bullet-list,
.process-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bullet-list li,
.process-list li {
    min-height: 72px;
    padding: 22px 26px;
    border-radius: 18px;
    background: #fff;
    color: var(--dot);
    font-weight: 760;
    box-shadow: 0 10px 30px rgba(24, 35, 58, .05);
}

.process-list {
    counter-reset: step;
}

.process-list li {
    counter-increment: step;
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
}

.process-list li::before {
    content: counter(step, decimal-leading-zero);
    color: #7d58ff;
    font-size: 24px;
    font-weight: 850;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.tabs a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    padding: 0 20px;
    border-radius: 999px;
    background: #f2f3f6;
    color: var(--dot);
    font-weight: 790;
    text-decoration: none;
}

.tabs a.is-active,
.tabs a:hover {
    background: linear-gradient(90deg, #8853ff, #41ddff);
    color: #fff;
}

.contacts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.map-placeholder {
    min-height: 360px;
    border-radius: 28px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .4)),
        radial-gradient(circle at 25% 35%, rgba(136, 83, 255, .22), transparent 28%),
        radial-gradient(circle at 72% 60%, rgba(65, 221, 255, .28), transparent 30%),
        #e9edf6;
}

.footer-social {
    padding: 120px 32px 90px;
    background: #fff;
    text-align: center;
}

.footer-social h2 {
    margin: 0;
    color: #000;
    font-size: 58px;
    line-height: 1.08;
    font-weight: 760;
}

.footer-social p {
    max-width: 760px;
    margin: 48px auto 0;
    color: var(--text);
    font-size: 22px;
    line-height: 1.35;
}

.footer-social-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 62px;
}

.footer-social-actions a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 72px;
    padding: 0 32px;
    border-radius: 999px;
    background: #f2f2f3;
    color: var(--ink);
    font-size: 18px;
    font-weight: 820;
    text-decoration: none;
}

.footer-social-actions svg,
.footer-social-actions span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    background: #25a7e8;
    color: #fff;
}

.main-footer {
    padding: 80px 0 40px;
    border-radius: 48px 48px 0 0;
    background: var(--ink);
    color: rgba(255, 255, 255, .72);
}

.main-footer-row,
.main-footer-meta {
    width: min(1376px, calc(100% - 64px));
    margin: 0 auto;
}

.main-footer-row {
    display: grid;
    grid-template-columns: 1.2fr 1.6fr 1fr 1fr;
    gap: 56px;
}

.footer-items > span,
.footer-menu::before {
    display: block;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, .45);
    font-size: 16px;
}

.footer-menu:first-of-type::before {
    content: "Услуги";
}

.footer-menu:last-of-type::before {
    content: "Разделы";
}

.footer-items a,
.footer-menu a {
    display: block;
    margin-bottom: 14px;
    color: #fff;
    font-size: 18px;
    font-weight: 720;
    text-decoration: none;
}

.footer-items p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.45;
}

.main-footer .button-social-icon {
    border-color: rgba(255, 255, 255, .45);
    color: rgba(255, 255, 255, .66);
}

.main-footer-meta {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-top: 72px;
    padding-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.main-footer-meta p {
    max-width: 650px;
    margin: 0;
    text-align: right;
    color: rgba(255, 255, 255, .54);
    line-height: 1.45;
}

.cookie-popup {
    position: fixed;
    left: 50%;
    bottom: 32px;
    z-index: 150;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 26px;
    align-items: center;
    width: min(1110px, calc(100% - 48px));
    padding: 34px;
    border-radius: 32px;
    background: rgba(255, 255, 255, .98);
    color: var(--text);
    box-shadow: var(--shadow);
    transform: translateX(-50%);
}

.cookie-popup[hidden] {
    display: none;
}

.cookie-popup p {
    margin: 0;
    font-size: 17px;
    line-height: 1.45;
}

.cookie-popup a {
    color: var(--ink);
    font-weight: 800;
}

.cookie-popup div {
    display: flex;
    gap: 12px;
}

.cookie-popup button,
.cookie-popup div a {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    border: 0;
    border-radius: 999px;
    background: #f2f2f3;
    color: #000;
    font: inherit;
    font-weight: 820;
    text-decoration: none;
    cursor: pointer;
}

.cookie-popup button {
    background: var(--ink);
    color: #fff;
}

.admin-shell {
    min-height: 100vh;
    padding: 36px;
}

.admin-panel {
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: 28px;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}

.admin-topbar strong,
.admin-title {
    color: var(--dot);
}

.admin-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    background: #f2f3f6;
    color: var(--dot);
    font-weight: 760;
    text-decoration: none;
}

.admin-nav a:hover,
.admin-nav a.is-active {
    background: linear-gradient(90deg, #8853ff, #41ddff);
    color: #fff;
}

.admin-title {
    margin: 0 0 22px;
    font-size: 36px;
    line-height: 1.1;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 16px;
}

.admin-table th,
.admin-table td {
    padding: 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    color: var(--dot);
    font-size: 13px;
    text-transform: uppercase;
}

.form-grid {
    display: grid;
    gap: 16px;
}

.form-grid label {
    display: grid;
    gap: 8px;
    color: var(--dot);
    font-weight: 760;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--ink);
    font: inherit;
}

.form-grid textarea {
    min-height: 132px;
    resize: vertical;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

@media (max-width: 1100px) {
    .main-header-row {
        padding: 12px 26px;
    }

    .main-menu {
        gap: 8px;
    }

    .button-menu {
        font-size: 16px;
        padding: 0 12px;
    }

    .home-hero h1,
    .page-hero h1 {
        font-size: 54px;
    }

    .section__nums,
    .section__cases,
    .section__news,
    .section__clients {
        padding-right: 40px;
        padding-left: 40px;
    }

    .section__nums-container,
    .dot-case,
    .dot-case.is-reverse,
    .section__about,
    .main-footer-row {
        grid-template-columns: 1fr;
    }

    .dot-case.is-reverse .dot-case-visual {
        order: 0;
    }

    .section__nums-column,
    .section__nums-column-second,
    .section__nums-column-third,
    .section__nums-column-four {
        min-height: auto;
        padding-top: 0;
    }

    .dot-line {
        display: none;
    }

    .section__nums-place {
        margin-top: 60px;
    }
}

@media (max-width: 860px) {
    .main-header-row {
        top: 24px;
        left: 20px;
        right: 20px;
        height: 60px;
        padding: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .main-header.is-scrolled .main-header-row,
    body:not(.home) .main-header-row {
        background: transparent;
        box-shadow: none;
    }

    .main-logo {
        width: 62px;
        height: 48px;
    }

    .main-header-menu,
    .main-header-social {
        display: none;
    }

    .main-header-burger {
        display: block;
    }

    .floating-request {
        display: none;
        right: 16px;
        bottom: 36px;
        width: 118px;
        height: 118px;
        font-size: 22px;
    }

    .home-hero {
        align-items: start;
        padding: 170px 20px 110px;
    }

    .home-hero h1 {
        font-size: 45px;
        text-align: center;
    }

    .home-hero p {
        font-size: 21px;
    }

    .dot-section-head,
    .section-head,
    .two-col,
    .section__nums-place,
    .service-grid,
    .case-grid,
    .news-grid,
    .contacts-grid,
    .admin-grid {
        grid-template-columns: 1fr;
    }

    .section__services-tabs,
    .clients-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dot-section-head h2,
    .section__about h2,
    .section__clients h2,
    .section-title,
    .footer-social h2 {
        font-size: 40px;
    }

    .section__services-slider,
    .section__news-slider {
        grid-auto-columns: minmax(280px, 82vw);
        padding-right: 24px;
        padding-left: 24px;
    }

    .dot-case {
        gap: 28px;
        margin-bottom: 70px;
    }

    .dot-case-visual {
        min-height: 260px;
    }

    .main-footer-row,
    .main-footer-meta {
        width: min(100% - 40px, 1376px);
    }

    .main-footer-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .main-footer-meta p {
        text-align: left;
    }

    .cookie-popup {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .home-hero h1 {
        font-size: 38px;
    }

    .page-hero {
        min-height: 540px;
        padding-top: 140px;
    }

    .page-hero > *,
    .section__services-container,
    .dot-section-head,
    .dot-cases-list,
    .section__about,
    .section__clients h2,
    .clients-grid,
    .section,
    .contacts-grid {
        width: calc(100% - 32px);
    }

    .page-hero h1 {
        font-size: 38px;
    }

    .page-hero p,
    .section__about p,
    .section-lead {
        font-size: 17px;
    }

    .section,
    .section__services,
    .section__cases,
    .section__news,
    .section__clients,
    .section__about,
    .section__nums {
        padding-top: 82px;
        padding-bottom: 82px;
    }

    .section__nums {
        padding-right: 16px;
        padding-left: 16px;
    }

    .section__nums-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 18px;
    }

    .section__nums-column-second,
    .section__nums-column-four {
        padding-left: 16px;
        border-left: 1px solid #c9cbd3;
    }

    .section__nums-column-third {
        grid-column: 1;
    }

    .section__nums-column-four {
        grid-column: 2;
        padding-top: 72px;
    }

    .section__nums-num {
        font-size: 64px;
    }

    .section__nums-num span {
        font-size: 14px;
    }

    .section__nums-caption {
        font-size: 16px;
    }

    .section__nums-column h2 {
        max-width: 160px;
        font-size: 21px;
    }

    .section__nums-column p {
        font-size: 13px;
    }

    .section__nums-place {
        grid-template-columns: 1fr;
    }

    .section__nums-place img {
        width: 260px;
        height: 260px;
    }

    .section__services-tabs,
    .clients-grid {
        grid-template-columns: 1fr;
    }

    .dot-case-content h3,
    .section__news-card h3 {
        font-size: 24px;
    }

    .footer-social-actions,
    .cookie-popup div,
    .hero-actions,
    .about-actions,
    .dot-case-actions {
        display: grid;
    }

    .cookie-popup {
        bottom: 16px;
        width: calc(100% - 24px);
        padding: 22px;
        border-radius: 24px;
    }

    .floating-request {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

/* Reference redo: measured layouts from addamant.ru header/footer and dot.ru sections. */
html.menu-open {
    overflow: hidden;
}

.main-header-row,
.main-header.is-scrolled .main-header-row,
body:not(.home) .main-header-row {
    top: 20px;
    left: 32px;
    right: 32px;
    height: 88px;
    padding: 12px 52px;
    border-radius: 48px;
    background: rgba(255, 255, 255, .6);
    box-shadow: 0 0 0 1px rgba(24, 35, 58, .035);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.main-header-menu {
    padding-right: 32px;
}

.main-menu {
    justify-content: flex-end;
    gap: 0;
}

.button-menu {
    min-height: 48px;
    padding: 12.5px 24px;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 23px;
}

.main-logo {
    width: 61px;
    height: 44px;
}

.button-social-icon {
    width: 48px;
    height: 48px;
    border: 0;
    color: rgba(24, 35, 58, .48);
    background: transparent;
}

.button-social-icon:hover {
    color: #fff;
    background: transparent;
    transform: translateY(-1px);
}

.button-social-icon:hover .social-svg circle {
    fill: #3f73f2;
    stroke: #3f73f2;
}

.social-svg {
    width: 48px;
    height: 48px;
}

.mobile-panel {
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: grid;
    align-content: start;
    width: min(430px, 100%);
    height: 100dvh;
    padding: 128px 24px 28px;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    transform: translateX(100%);
    transition: transform .28s ease;
}

.mobile-panel.is-open {
    display: grid;
    transform: translateX(0);
}

.floating-request {
    background: #3f73f2;
}

.section__nums {
    position: relative;
    height: 1357px;
    padding: 0;
    overflow: hidden;
    background: #fff;
}

.section__nums-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 1440px;
    height: 1357px;
    max-width: 100%;
    min-height: 0;
    margin: 0 auto;
    padding: 112px 100px 140px;
}

.section__nums-column {
    position: relative;
    min-height: 1105px;
    padding: 0;
}

.section__nums-column-first {
    width: 313px;
}

.section__nums-column-second,
.section__nums-column-third {
    width: 300px;
}

.section__nums-column-four {
    width: 283px;
}

.section__nums-column-second,
.section__nums-column-four {
    padding-top: 0;
}

.section__nums-column-third {
    padding-top: 7px;
}

.section__nums-num {
    display: flex;
    align-items: flex-end;
    margin: 0;
    font-size: 230px;
    font-weight: 700;
    line-height: 200px;
    text-transform: uppercase;
}

.section__nums-num span {
    padding-bottom: 6px;
    color: var(--brand-c);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.section__nums-column-second .section__nums-num {
    margin-top: 371px;
    font-size: 160px;
    line-height: 160px;
}

.section__nums-column-second .section__nums-num span {
    max-width: 120px;
}

.section__nums-column-four .section__nums-num {
    margin-top: 893px;
    font-size: 120px;
    line-height: 120px;
}

.section__nums-caption {
    max-width: 313px;
    margin-top: 20px;
    color: #292929;
    font-size: 34px;
    font-weight: 700;
    line-height: 40px;
    text-transform: uppercase;
}

.section__nums-column-second .section__nums-caption {
    font-weight: 300;
}

.section__nums-column h2 {
    max-width: 300px;
    margin: 0 0 30px;
    color: transparent;
    background-image: var(--brand);
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 34px;
    font-weight: 700;
    line-height: 40px;
    text-transform: uppercase;
}

.section__nums-column p {
    max-width: 300px;
    color: #292929;
    font-size: 18px;
    font-weight: 300;
    line-height: 26px;
}

.dot-line {
    display: block;
    top: 0;
    left: -20px;
    height: 1105px;
    background: #d6d8df;
}

.dot-line::before,
.dot-line::after {
    background: var(--brand);
}

.section__nums-place {
    position: absolute;
    left: max(100px, calc((100vw - 1240px) / 2));
    bottom: 140px;
    display: flex;
    grid-template-columns: none;
    gap: 30px;
    align-items: center;
    width: 840px;
    max-width: calc(100% - 200px);
    height: 228px;
    margin: 0;
    padding: 30px;
    border-radius: 40px 40px 40px 0;
    background: #f5f6fb;
    box-shadow: 0 18px 50px rgba(24, 35, 58, .05);
}

.section__nums-place img {
    flex: 0 0 auto;
    width: 168px;
    height: 168px;
    border-radius: 30px;
    object-fit: cover;
}

.section__nums-place span {
    color: #8e939e;
    font-size: 14px;
    font-weight: 700;
}

.section__nums-place h3 {
    margin: 7px 0 12px;
    color: #382e4d;
    font-size: 30px;
    font-weight: 700;
    line-height: 34px;
}

.section__nums-place p {
    max-width: 560px;
    color: #292929;
    font-size: 17px;
    line-height: 25px;
}

.section__services,
.section__news {
    border-radius: 44px;
    background: #f6f6f8;
}

.section__services {
    min-height: 1262px;
    padding: 0;
}

.section__services-container {
    width: 100%;
    max-width: none;
    padding: 140px 15px;
}

.section__services-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: min(1240px, calc(100% - 170px));
    margin: 0 auto 82px;
}

.section__services-row .dot-section-head {
    display: block;
    width: 610px;
    margin: 0;
}

.dot-section-head h2,
.section__about h2,
.section__clients h2 {
    color: #382e4d;
    font-size: 60px;
    font-weight: 700;
    line-height: 70px;
}

.dot-section-head h2 span + span,
.section__about h2 span + span,
.section__clients h2 span + span {
    font-weight: 300;
}

.dot-section-head h2 span + span::before,
.section__clients h2 span + span::before {
    width: 100px;
    height: 2px;
    margin: 0 40px 18px 0;
    background: #382e4d;
}

.section__services-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 305px));
    gap: 18px 0;
    width: 610px;
    margin: 0;
}

.section__services-tabs a {
    min-height: 34px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #382e4d;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
}

.section__services-tabs a:hover {
    background: transparent;
    color: #c1237f;
}

.slider-arrows {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 58px;
}

.slider-arrows::before {
    content: "";
    width: 150px;
    height: 2px;
    background: #382e4d;
}

.slider-arrows button {
    position: relative;
    width: 52px;
    height: 52px;
    border: 1px solid #382e4d;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.slider-arrows button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-top: 2px solid #382e4d;
    border-right: 2px solid #382e4d;
    transform: translate(-60%, -50%) rotate(45deg);
}

.slider-arrows button[data-slider-direction="prev"]::before {
    transform: translate(-40%, -50%) rotate(-135deg);
}

.section__services-slider {
    grid-auto-columns: 323px;
    gap: 40px;
    padding: 0 max(100px, calc((100vw - 1240px) / 2)) 16px;
}

.section__services-slide {
    min-height: 580px;
    padding: 40px;
    border-radius: 20px;
    box-shadow: none;
}

.service-icon {
    width: 92px;
    height: 92px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(123, 43, 137, .13), rgba(210, 33, 125, .12));
    color: #c1237f;
}

.section__services-slide h3 {
    margin-top: 40px;
    color: #382e4d;
    font-size: 26px;
    font-weight: 700;
    line-height: 31px;
}

.section__services-slide p {
    color: #8e939e;
    font-size: 16px;
    line-height: 24px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.service-mini-tags span {
    background: #f5f6fb;
    color: #382e4d;
}

.service-mini-tags span:nth-child(n + 4) {
    display: none;
}

.section__cases {
    padding: 140px 0 120px;
    background: #fff;
}

.dot-case {
    grid-template-columns: 529px minmax(0, 571px);
    gap: 120px;
    margin-bottom: 126px;
}

.dot-case.is-reverse {
    grid-template-columns: minmax(0, 571px) 529px;
}

.dot-case-visual {
    min-height: 350px;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(24, 35, 58, 0), rgba(24, 35, 58, .72)),
        radial-gradient(circle at 78% 22%, rgba(255, 255, 255, .35), transparent 26%),
        var(--brand);
}

.dot-case-content h3 {
    color: #382e4d;
    font-size: 34px;
    font-weight: 700;
    line-height: 40px;
}

.dot-case-stats div {
    background: #f6f6f8;
}

.dot-case-stats strong {
    color: transparent;
    background: var(--brand);
    background-clip: text;
    -webkit-background-clip: text;
}

.section__news {
    padding: 140px 0;
}

.section__news-slider {
    grid-auto-columns: 600px;
    gap: 40px;
    padding: 0 max(100px, calc((100vw - 1240px) / 2)) 16px;
}

.section__news-card {
    min-height: 560px;
    border-radius: 20px;
}

.section__about {
    grid-template-columns: minmax(0, 610px) 520px;
    width: min(1240px, calc(100% - 200px));
}

.section__clients {
    padding: 140px 0;
    border-radius: 44px 44px 0 0;
}

.clients-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: min(1240px, calc(100% - 200px));
    margin-top: 80px;
}

.clients-grid span {
    min-height: 174px;
    color: #a1a6b1;
    font-size: 18px;
    letter-spacing: 0;
    filter: grayscale(1);
}

.section__bread {
    height: 237px;
    padding-top: 145px;
    background: #fff;
}

.section__bread .breadcrumbs {
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 0;
    width: auto;
    margin: 0 0 0 max(100px, calc((100vw - 1240px) / 2));
    padding: 6px;
    border-radius: 999px;
    background: #f6f6f8;
}

.section__bread .breadcrumbs a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 24px;
    border-radius: 999px;
    color: #382e4d;
    font-size: 15px;
    font-weight: 700;
    text-transform: none;
}

.section__bread .breadcrumbs a:last-child {
    background: #fff;
}

.section__top-about {
    position: relative;
    overflow: visible;
    background: #fff;
}

.service-top-container {
    position: relative;
    width: min(1240px, calc(100% - 200px));
    margin: 0 auto;
}

.service-top,
.cases-page-top,
.contacts-top,
.case-detail-top {
    padding: 40px 0 130px;
}

.section__top-title-services {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 1240px;
    margin: 0;
    padding-right: 380px;
    color: #382e4d;
    font-size: 80px;
    font-weight: 700;
    line-height: 90px;
    text-transform: uppercase;
}

.service-top-actions {
    position: absolute;
    top: 0;
    right: 0;
    display: grid;
    gap: 14px;
    width: 320px;
}

.service-main-lead {
    max-width: 780px;
    margin: 58px 0 0;
    color: #382e4d;
    font-size: 30px;
    font-weight: 300;
    line-height: 40px;
}

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

.service-top-cards article,
.cost-grid article {
    min-height: 250px;
    padding: 34px;
    border-radius: 28px;
    background: #f6f6f8;
}

.service-top-cards span,
.advantage-row > span,
.project-steps span {
    color: transparent;
    background: var(--brand);
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 40px;
    font-weight: 700;
    line-height: 46px;
}

.service-top-cards h2,
.cost-grid h3 {
    margin: 24px 0 14px;
    color: #382e4d;
    font-size: 28px;
    font-weight: 700;
    line-height: 34px;
    text-transform: uppercase;
}

.service-top-cards p,
.cost-grid p,
.cost-grid li {
    color: #707683;
    font-size: 17px;
    line-height: 26px;
}

.service-summary {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 32px;
    margin-top: 30px;
    padding: 34px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(24, 35, 58, .07);
}

.service-summary strong {
    color: #382e4d;
    font-size: 22px;
    text-transform: uppercase;
}

.service-summary p {
    margin: 0;
    color: #707683;
    font-size: 18px;
    line-height: 30px;
}

.section__advantages {
    padding: 140px 0;
    background: #fff;
}

.section__advantages > .dot-section-head,
.advantages-list,
.project-steps,
.cost-grid,
.factor-line,
.cases-tabs {
    width: min(1240px, calc(100% - 200px));
    margin-right: auto;
    margin-left: auto;
}

.section__advantages > .dot-section-head {
    margin-bottom: 80px;
}

.advantages-list {
    display: grid;
    border-top: 1px solid #e2e4ea;
}

.advantage-row {
    display: grid;
    grid-template-columns: 120px minmax(280px, 410px) minmax(0, 1fr);
    gap: 50px;
    align-items: start;
    padding: 38px 0;
    border-bottom: 1px solid #e2e4ea;
    color: inherit;
    text-decoration: none;
}

.advantage-row h3 {
    margin: 0;
    color: #382e4d;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    text-transform: uppercase;
}

.advantage-row p {
    margin: 0;
    color: #707683;
    font-size: 18px;
    line-height: 28px;
}

.section__services-cost {
    min-height: 0;
    padding: 0;
}

.section__services-cost .section__services-container {
    padding: 140px 15px;
}

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

.cost-grid ul {
    display: grid;
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.cost-grid li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 10px;
    border-radius: 50%;
    background: #c1237f;
}

.factor-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.factor-line span,
.cases-tabs a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    background: #fff;
    color: #382e4d;
    font-weight: 700;
    text-decoration: none;
}

.project-steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    padding: 0;
    list-style: none;
}

.project-steps li {
    min-height: 250px;
    padding: 30px;
    border-radius: 28px;
    background: #f6f6f8;
}

.project-steps p {
    margin: 46px 0 0;
    color: #382e4d;
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
}

.cases-page-top .service-main-lead {
    max-width: 720px;
}

.cases-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 70px 0 0;
}

.cases-tabs a {
    background: #f6f6f8;
}

.cases-tabs a.is-active,
.cases-tabs a:hover {
    color: #fff;
    background: var(--brand);
}

.section__cases-page {
    padding-top: 70px;
}

.contact-list-section .contacts-grid {
    width: min(1240px, calc(100% - 200px));
}

.footer-social {
    padding-top: 120px;
}

.footer-social h2 {
    font-size: 58px;
    font-weight: 700;
    line-height: 64px;
}

.footer-social-actions a {
    min-height: 72px;
    border-radius: 50px;
    background: #f5f5f5;
}

.footer-social-actions .social-svg,
.footer-social-actions span {
    background: transparent;
    color: #fff;
}

.footer-social-actions a .social-svg circle,
.footer-social-actions a span {
    fill: #18233a;
}

@media (max-width: 1180px) {
    .section__nums-container,
    .section__services-row,
    .section__about,
    .clients-grid,
    .service-top-container,
    .section__advantages > .dot-section-head,
    .advantages-list,
    .project-steps,
    .cost-grid,
    .factor-line,
    .cases-tabs,
    .contact-list-section .contacts-grid {
        width: min(100% - 80px, 1240px);
    }

    .section__nums-container {
        padding-right: 40px;
        padding-left: 40px;
    }

    .section__nums-place {
        left: 40px;
        max-width: calc(100% - 80px);
    }

    .section__services-row,
    .section__about {
        grid-template-columns: 1fr;
    }

    .dot-case,
    .dot-case.is-reverse {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }

    .dot-case.is-reverse .dot-case-visual {
        order: 0;
    }

    .project-steps,
    .cost-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .main-header-row,
    .main-header.is-scrolled .main-header-row,
    body:not(.home) .main-header-row {
        top: 20px;
        left: 0;
        right: 0;
        height: 81px;
        padding: 8px 16px;
        border-radius: 48px;
        background: rgba(255, 255, 255, .6);
        box-shadow: 0 0 0 1px rgba(24, 35, 58, .035);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .main-logo {
        width: 61px;
        height: 44px;
    }

    .main-header-burger {
        display: grid;
        width: 48px;
        height: 48px;
    }

    .home-hero {
        padding-top: 150px;
    }

    .home-hero h1 {
        font-size: 42px;
        line-height: 46px;
    }

    .home-hero p {
        font-size: 18px;
        line-height: 28px;
    }

    .section__nums {
        height: 607px;
    }

    .section__nums-container {
        display: grid;
        grid-template-columns: repeat(2, 180px);
        justify-content: center;
        gap: 0;
        width: 390px;
        height: 607px;
        min-height: 0;
        padding: 50px 15px 40px;
    }

    .section__nums-column {
        min-height: 0;
        width: 180px;
    }

    .section__nums-column-first,
    .section__nums-column-second,
    .section__nums-column-third,
    .section__nums-column-four {
        width: 180px;
        padding: 0;
    }

    .section__nums-column-second,
    .section__nums-column-four {
        padding-left: 15px;
        border-left: 1px solid #d6d8df;
    }

    .section__nums-column-third {
        padding-top: 0;
    }

    .section__nums-num,
    .section__nums-column-second .section__nums-num {
        margin: 0;
        font-size: 100px;
        line-height: 100px;
    }

    .section__nums-column-second .section__nums-num {
        margin-top: 98px;
        font-size: 90px;
        line-height: 80px;
    }

    .section__nums-column-second .section__nums-num span {
        max-width: 54px;
        font-size: 10px;
        line-height: 12px;
        word-break: break-word;
    }

    .section__nums-column-four .section__nums-num {
        margin-top: 72px;
        font-size: 60px;
        line-height: 50px;
    }

    .section__nums-num span {
        font-size: 12px;
        line-height: 16px;
    }

    .section__nums-caption {
        margin-top: 12px;
        font-size: 14px;
        line-height: 18px;
    }

    .section__nums-column-second .section__nums-caption,
    .section__nums-column-four .section__nums-caption {
        font-size: 12px;
        line-height: 18px;
    }

    .section__nums-column h2 {
        max-width: 160px;
        font-size: 14px;
        line-height: 18px;
    }

    .section__nums-column p {
        max-width: 160px;
        font-size: 10px;
        line-height: 16px;
    }

    .section__nums-place,
    .dot-line {
        display: none;
    }

    .section__services,
    .section__news,
    .section__clients {
        border-radius: 28px;
    }

    .section__services-container,
    .section__services-cost .section__services-container {
        padding: 80px 15px;
    }

    .section__services-row {
        display: grid;
        width: calc(100% - 30px);
        margin-bottom: 42px;
    }

    .section__services-row .dot-section-head,
    .section__services-tabs {
        width: 100%;
    }

    .dot-section-head h2,
    .section__about h2,
    .section__clients h2,
    .section-title,
    .footer-social h2 {
        font-size: 38px;
        line-height: 44px;
    }

    .section__services-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 18px;
    }

    .section__services-tabs a {
        font-size: 14px;
        line-height: 18px;
    }

    .slider-arrows {
        margin-top: 30px;
    }

    .slider-arrows::before {
        width: 90px;
    }

    .section__services-slider,
    .section__news-slider {
        grid-auto-columns: minmax(280px, 82vw);
        padding-right: 15px;
        padding-left: 15px;
    }

    .section__bread {
        height: auto;
        padding: 120px 0 26px;
    }

    .section__bread .breadcrumbs {
        margin-left: 15px;
    }

    .service-top-container,
    .section__advantages > .dot-section-head,
    .advantages-list,
    .project-steps,
    .cost-grid,
    .factor-line,
    .cases-tabs,
    .contact-list-section .contacts-grid,
    .section__about,
    .clients-grid {
        width: calc(100% - 30px);
    }

    .service-top,
    .cases-page-top,
    .contacts-top,
    .case-detail-top,
    .section__advantages,
    .section__cases,
    .section__news,
    .section__clients,
    .section__about {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .section__top-title-services {
        padding-right: 0;
        font-size: 44px;
        line-height: 50px;
    }

    .service-top-actions {
        position: static;
        width: 100%;
        margin-top: 28px;
    }

    .service-main-lead {
        margin-top: 32px;
        font-size: 21px;
        line-height: 31px;
    }

    .service-top-cards,
    .cost-grid,
    .project-steps,
    .service-grid,
    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .service-summary {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .advantage-row {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 18px;
    }

    .advantage-row p {
        grid-column: 2;
    }

    .clients-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .clients-grid span {
        min-height: 120px;
        font-size: 15px;
    }
}

@media (max-width: 430px) {
    .section__nums-container {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section__nums-column,
    .section__nums-column-first,
    .section__nums-column-second,
    .section__nums-column-third,
    .section__nums-column-four {
        width: auto;
    }
}

/* Targeted reference pass: addamant header/mobile/footer and dot.ru home sections. */
.floating-request {
    display: none !important;
}

.btn,
.dot-gradient-link,
.dot-arrow-link,
.section__services-bottom a,
.dot-case-actions a + a,
.tabs a.is-active,
.tabs a:hover,
.cases-tabs a.is-active,
.cases-tabs a:hover,
.cookie-popup button {
    background: var(--brand) !important;
}

.main-header-row,
.main-header.is-scrolled .main-header-row,
body:not(.home) .main-header-row {
    top: 20px;
    height: 88px;
    background: rgba(255, 255, 255, .6);
    box-shadow: 0 0 0 1px rgba(24, 35, 58, .035);
}

.main-header.is-open .main-header-row {
    opacity: 0;
    pointer-events: none;
}

.button-menu,
.footer-items a,
.footer-menu a {
    font-weight: 700;
}

.main-menu-sub {
    top: calc(100% + 20px);
    left: 50%;
    grid-template-columns: repeat(5, minmax(130px, 1fr));
    gap: 20px;
    width: min(960px, calc(100vw - 64px));
    padding: 32px;
    border-radius: 34px;
    background: #fff;
    transform: translate(-50%, 18px);
}

.main-menu-sub::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -24px;
    height: 24px;
}

.main-menu-sub-group {
    display: grid;
    align-content: start;
    gap: 2px;
}

.main-menu-sub a {
    padding: 8px 0;
    border-radius: 0;
    color: #8e939e;
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
}

.main-menu-sub a:hover {
    background: transparent;
    color: #382e4d;
}

.main-menu-sub-title {
    margin-bottom: 8px;
    color: #000 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 23px !important;
}

.has-dropdown:hover .main-menu-sub,
.has-dropdown:focus-within .main-menu-sub {
    transform: translate(-50%, 0);
}

.button-social-icon {
    border: 0;
    color: #8e939e;
}

.button-social-icon .social-svg circle {
    fill: transparent;
    stroke: currentColor;
    transition: fill .2s ease, stroke .2s ease;
}

.button-social-icon:hover {
    color: #fff;
}

.button-social-icon:hover .social-svg circle {
    fill: #18233a;
    stroke: #18233a;
}

.js .section__nums .section__nums-column,
.js .section__nums .section__nums-place,
.js .section__services .section__services-row,
.js .section__services .section__services-slide,
.js .section__cases .dot-section-head,
.js .section__cases .dot-case,
.js .section__news .dot-section-head,
.js .section__news .section__news-card,
.js .section__about > *,
.js .section__clients h2,
.js .section__clients .clients-grid {
    opacity: 0;
    transform: translateY(54px);
    transition: opacity .72s ease, transform .72s cubic-bezier(.2, .7, .2, 1);
}

.js .section__nums .dot-line {
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .95s cubic-bezier(.2, .7, .2, 1);
}

.section__nums.is-inview .section__nums-column,
.section__nums.is-inview .section__nums-place,
.section__services.is-inview .section__services-row,
.section__services.is-inview .section__services-slide,
.section__cases.is-inview .dot-section-head,
.section__cases.is-inview .dot-case,
.section__news.is-inview .dot-section-head,
.section__news.is-inview .section__news-card,
.section__about.is-inview > *,
.section__clients.is-inview h2,
.section__clients.is-inview .clients-grid {
    opacity: 1;
    transform: translateY(0);
}

.section__nums.is-inview .dot-line {
    transform: scaleY(1);
}

.section__services.is-inview .section__services-slide:nth-child(2),
.section__cases.is-inview .dot-case:nth-child(2),
.section__news.is-inview .section__news-card:nth-child(2) {
    transition-delay: .08s;
}

.section__services.is-inview .section__services-slide:nth-child(3),
.section__cases.is-inview .dot-case:nth-child(3),
.section__news.is-inview .section__news-card:nth-child(3) {
    transition-delay: .16s;
}

.section__services-tabs {
    grid-template-columns: repeat(2, minmax(0, 305px));
    gap: 0;
}

.section__services-tabs-column {
    display: grid;
    align-content: start;
    gap: 18px;
}

.section__services-tabs-column a {
    position: relative;
}

.section__services-tabs-column a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: width .24s ease;
}

.section__services-tabs-column a:hover::after {
    width: 58px;
}

.section__services-slide {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), #fff),
        radial-gradient(circle at 50% 0, rgba(123, 43, 137, .12), transparent 35%);
}

.service-icon {
    position: relative;
    overflow: hidden;
    background: #f6f6f8;
    color: transparent;
}

.service-icon::before {
    content: "";
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: var(--brand);
    box-shadow: 16px 16px 0 rgba(123, 43, 137, .16);
}

.service-icon::after {
    content: attr(aria-label);
}

.dot-case-visual {
    position: relative;
    min-height: 350px;
    background:
        linear-gradient(180deg, rgba(24, 35, 58, 0), rgba(24, 35, 58, .74)),
        radial-gradient(circle at 20% 18%, rgba(255, 255, 255, .44), transparent 18%),
        linear-gradient(135deg, #232b3f 0%, #7b2b89 48%, #d2217d 100%);
}

.dot-case-visual::after {
    content: "";
    position: absolute;
    inset: 34px 34px auto auto;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
}

.dot-case-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.section__news-card {
    position: relative;
    min-height: 560px;
    isolation: isolate;
}

.section__news-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 68% 32%, rgba(255, 255, 255, .58), transparent 18%),
        linear-gradient(135deg, rgba(123, 43, 137, .5), rgba(210, 33, 125, .7));
}

.section__about {
    display: flex;
    grid-template-columns: none;
    gap: 55px;
    align-items: flex-start;
    width: 100%;
    padding: 140px 100px;
}

.section__about > div:first-child {
    flex: 0 0 587px;
}

.section__about h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 70px;
}

.section__about h2 span + span::before {
    content: "";
    display: inline-block;
    width: 100px;
    height: 2px;
    margin: 0 40px 18px 0;
    background: #382e4d;
    vertical-align: middle;
}

.section__about p {
    max-width: 587px;
    margin: 80px 0 46px;
    color: #382e4d;
    font-size: 18px;
    font-weight: 300;
    line-height: 34px;
}

.about-photo {
    flex: 1 1 auto;
    min-height: 700px;
    padding: 0;
    border-radius: 20px;
    background: transparent;
}

.about-photo img {
    height: 700px;
    border-radius: 20px;
    object-fit: cover;
}

.clients-grid {
    background: rgba(255, 255, 255, .25);
}

.clients-grid span {
    min-height: 174px;
    background: rgba(255, 255, 255, .02);
    color: #6b6f78;
    font-size: 20px;
    font-weight: 850;
    filter: grayscale(1);
}

.footer-social-actions {
    gap: 18px;
}

.footer-social-actions a {
    min-width: 216px;
    justify-content: center;
    font-weight: 700;
}

.footer-social-actions a .social-svg {
    color: #fff;
}

.footer-social-actions a .social-svg circle {
    fill: #18233a;
    stroke: #18233a;
}

.main-footer {
    background: #171f31;
}

.footer-logo img {
    object-fit: contain;
}

.main-footer-meta p {
    font-weight: 700;
}

.cookie-popup {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 22px;
    width: min(1352px, calc(100% - 88px));
    padding: 30px 38px;
    border-radius: 38px;
    background: linear-gradient(100deg, #f4f1ff 0%, #f7fbff 100%);
    color: #382e4d;
    text-align: center;
    box-shadow: 0 18px 45px rgba(24, 35, 58, .16);
}

.cookie-popup p {
    max-width: 1220px;
    color: #382e4d;
    font-size: 24px;
    font-weight: 300;
    line-height: 34px;
}

.cookie-popup p::before {
    content: "ДАННЫЙ САЙТ ИСПОЛЬЗУЕТ COOKIE-ФАЙЛЫ";
    display: block;
    margin-bottom: 18px;
    color: #382e4d;
    font-size: 26px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
}

.cookie-popup div {
    justify-content: center;
}

.cookie-popup button,
.cookie-popup div a {
    min-width: 240px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

.cookie-popup div a {
    display: none;
}

@media (max-width: 1180px) {
    .main-menu-sub {
        grid-template-columns: repeat(3, minmax(150px, 1fr));
    }

    .section__about {
        flex-direction: column;
        width: 100%;
        padding-right: 40px;
        padding-left: 40px;
    }

    .section__about > div:first-child {
        flex-basis: auto;
    }

    .about-photo {
        width: 100%;
        min-height: 520px;
    }

    .about-photo img {
        height: 520px;
    }
}

@media (max-width: 860px) {
    .main-header-row,
    .main-header.is-scrolled .main-header-row,
    body:not(.home) .main-header-row {
        top: 20px;
        left: 0;
        right: 0;
        height: 81px;
        padding: 8px 16px;
        background: rgba(255, 255, 255, .6);
    }

    .main-header-burger {
        position: relative;
        display: block;
        width: 64px;
        height: 65px;
        padding: 7px 0 7px 16px;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: #fff;
    }

    .main-header-burger::before {
        content: "";
        position: absolute;
        top: 8px;
        right: 0;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: #18233a;
    }

    .main-header-burger span {
        position: absolute;
        right: 15px;
        z-index: 1;
        width: 18px;
        height: 2px;
        margin: 0;
        border-radius: 2px;
        background: currentColor;
    }

    .main-header-burger span:nth-child(1) {
        top: 24px;
    }

    .main-header-burger span:nth-child(2) {
        top: 31px;
    }

    .main-header-burger span:nth-child(3) {
        top: 38px;
    }

    .mobile-panel {
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 130;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: none;
        height: 100dvh;
        padding: 0 24px 24px;
        overflow-y: auto;
        border-radius: 0;
        background: #fff;
        transform: translateX(100%);
    }

    .mobile-panel.is-open {
        display: flex;
        transform: translateX(0);
    }

    .mobile-panel-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 81px;
        padding: 8px 0;
    }

    .mobile-panel-close {
        position: relative;
        width: 48px;
        height: 48px;
        border: 0;
        border-radius: 50%;
        background: #f5f5f5;
        color: #111;
    }

    .mobile-panel-close span {
        position: absolute;
        top: 23px;
        left: 15px;
        width: 18px;
        height: 2px;
        border-radius: 2px;
        background: currentColor;
    }

    .mobile-panel-close span:first-child {
        transform: rotate(45deg);
    }

    .mobile-panel-close span:last-child {
        transform: rotate(-45deg);
    }

    .mobile-panel-menu {
        display: grid;
        gap: 24px;
        margin-top: 0;
    }

    .mobile-panel a,
    .mobile-menu-link {
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: #000;
        font-size: 24px;
        font-weight: 500;
        line-height: 31px;
        text-decoration: none;
    }

    .mobile-menu-link {
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        gap: 16px;
        width: max-content;
    }

    .mobile-menu-link--button {
        cursor: pointer;
        font-family: inherit;
    }

    .mobile-services-panel {
        display: none;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 0 0 4px 18px;
    }

    .mobile-services-panel.is-open {
        display: grid;
    }

    .mobile-services-panel div {
        display: grid;
        gap: 8px;
    }

    .mobile-services-panel a {
        color: #8e939e;
        font-size: 18px;
        font-weight: 500;
        line-height: 23px;
    }

    .mobile-panel-social {
        display: flex;
        gap: 8px;
        margin-top: auto;
        margin-bottom: 32px;
    }

    .mobile-panel-social .button-social-icon {
        width: 48px;
        height: 48px;
        color: #8e939e;
    }

    .mobile-manager {
        display: grid;
        grid-template-columns: 80px minmax(0, 1fr);
        gap: 16px;
        min-height: 128px;
        align-items: center;
        padding: 24px;
        border-radius: 32px;
        background: #f5f5f5;
    }

    .mobile-manager img {
        width: 80px;
        height: 80px;
        border-radius: 24px;
        object-fit: cover;
    }

    .mobile-manager p {
        margin: 5px 0 0;
        color: #8e939e;
        font-size: 20px;
        font-weight: 500;
        line-height: 24px;
    }

    .mobile-manager strong {
        display: block;
        color: #000;
        font-size: 24px;
        font-weight: 500;
        line-height: 30px;
    }

    .mobile-manager a {
        grid-column: 1 / 3;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 138px;
        min-height: 58px;
        margin-top: 8px;
        border-radius: 50px;
        background: #fff;
        color: #000;
        font-size: 18px;
        font-weight: 500;
    }

    .section__services-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 18px;
    }

    .section__services-tabs-column {
        gap: 14px;
    }

    .section__about {
        padding: 80px 15px;
    }

    .section__about p {
        margin-top: 42px;
        font-size: 16px;
        line-height: 28px;
    }

    .about-photo,
    .about-photo img {
        min-height: 360px;
        height: 360px;
    }

    .cookie-popup {
        bottom: 16px;
        width: calc(100% - 32px);
        padding: 24px 18px;
        border-radius: 28px;
    }

    .cookie-popup p {
        font-size: 16px;
        line-height: 24px;
    }

    .cookie-popup p::before {
        font-size: 18px;
        line-height: 22px;
    }

    .cookie-popup button {
        min-width: 210px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .section__nums .section__nums-column,
    .section__nums .section__nums-place,
    .section__services .section__services-row,
    .section__services .section__services-slide,
    .section__cases .dot-section-head,
    .section__cases .dot-case,
    .section__news .dot-section-head,
    .section__news .section__news-card,
    .section__about > *,
    .section__clients h2,
    .section__clients .clients-grid {
        opacity: 1;
        transform: none;
    }
}

/* Targeted corrections 2026-05-31. */
.home-hero .btn {
    background: linear-gradient(90deg, #8853ff, #41ddff) !important;
    color: #fff;
}

.home-hero .btn--dark {
    background: var(--ink) !important;
    color: #fff;
}

.home-hero .btn--light {
    background: rgba(255, 255, 255, .9) !important;
    color: var(--ink);
}

.slider-arrows::before {
    display: none;
}

.section__nums-column-four .section__nums-caption {
    font-size: 20px;
    line-height: 28px;
}

.section__nums-place {
    border-radius: 40px;
}

.section__services-tabs-column button,
.cases-tabs button {
    appearance: none;
    border: 0;
    font: inherit;
    cursor: pointer;
}

.section__services-tabs-column button {
    position: relative;
    min-height: 34px;
    padding: 0;
    background: transparent;
    color: #382e4d;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    text-transform: uppercase;
}

.section__services-tabs-column button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: width .24s ease;
}

.section__services-tabs-column button:hover,
.section__services-tabs-column button.is-active {
    color: #c1237f;
}

.section__services-tabs-column button:hover::after,
.section__services-tabs-column button.is-active::after {
    width: 58px;
}

.section__services-slide[hidden],
.dot-case[hidden],
[data-contact-city-panel][hidden],
[data-contact-city-map][hidden] {
    display: none !important;
}

.section__services-slide {
    min-height: 500px;
}

.service-mini-tags {
    margin-top: auto;
    padding-top: 24px;
}

.about-actions .dot-gradient-link {
    display: none;
}

.about-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    background: #f6f6f8;
}

.about-photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: contain;
    object-position: center;
}

.section__clients h2 {
    width: min(1240px, calc(100% - 200px));
    margin-right: auto;
    margin-left: auto;
}

.main-footer-meta p {
    font-weight: 400;
}

.mobile-services-panel {
    padding-left: 0;
}

.mobile-services-group {
    display: grid;
    gap: 8px;
}

.mobile-services-panel .mobile-services-title {
    color: #000;
    font-size: 20px;
    line-height: 26px;
}

.mobile-services-panel .mobile-services-child {
    padding-left: 22px;
    color: #8e939e;
}

.mobile-services-panel .mobile-services-child::before {
    content: "—";
    margin-right: 8px;
    color: #c1237f;
}

.section__bread {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, .32), rgba(246, 246, 248, .42)),
        linear-gradient(-45deg, rgba(136, 83, 255, .78), rgba(65, 221, 255, .74), rgba(231, 60, 126, .72), rgba(255, 255, 255, .48));
    background-size: 100% 100%, 260% 260%;
    animation: internalGradient 18s ease infinite;
}

.page-hero {
    background:
        linear-gradient(180deg, rgba(249, 248, 255, .42) 0%, rgba(255, 255, 255, .62) 72%),
        linear-gradient(-45deg, rgba(136, 83, 255, .78), rgba(65, 221, 255, .74), rgba(231, 60, 126, .72), rgba(255, 255, 255, .48));
    background-size: 100% 100%, 260% 260%;
    animation: internalGradient 18s ease infinite;
}

.section__bread .breadcrumbs {
    position: relative;
    z-index: 1;
}

@keyframes internalGradient {
    0% { background-position: 0 0, 0% 50%; }
    50% { background-position: 0 0, 100% 50%; }
    100% { background-position: 0 0, 0% 50%; }
}

.cases-tabs button {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    background: #f6f6f8;
    color: #382e4d;
    font-weight: 700;
    text-decoration: none;
}

.cases-tabs button.is-active,
.cases-tabs button:hover {
    color: #fff;
    background: var(--brand);
}

.contacts-dot-page {
    padding: 40px 0 0;
    background:
        linear-gradient(180deg, rgba(246, 248, 255, .94), rgba(255, 255, 255, 1)),
        linear-gradient(120deg, rgba(136, 83, 255, .18), rgba(65, 221, 255, .16));
}

.contacts-dot-container,
.contacts-request-container {
    width: min(1240px, calc(100% - 200px));
    margin: 0 auto;
}

.contacts-dot-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    color: #382e4d;
    font-size: 80px;
    font-weight: 700;
    line-height: 90px;
    text-transform: uppercase;
}

.contacts-dot-title span + span {
    font-weight: 300;
}

.contacts-dot-row {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 610px);
    gap: 80px;
    align-items: start;
    margin-top: 62px;
}

.contacts-dot-links {
    display: grid;
    gap: 14px;
}

.contacts-dot-links a {
    color: #382e4d;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    text-decoration: none;
}

.contacts-dot-links a + a {
    font-weight: 300;
}

.contacts-city-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 58px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(56, 46, 77, .05);
}

.contacts-city-tabs button {
    border: 0;
    background: transparent;
    color: #382e4d;
    font: inherit;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.contacts-city-tabs button.is-active {
    color: #fff;
    background: linear-gradient(91deg, #8a50ff 2.49%, #41ddff 99.48%);
}

.contacts-city-addresses {
    margin-top: 28px;
}

.contacts-city-addresses a {
    display: block;
    color: #382e4d;
    font-size: 24px;
    font-weight: 300;
    line-height: 34px;
    text-decoration: none;
}

.contacts-map-stack {
    height: 520px;
    margin-top: 70px;
    overflow: hidden;
    border-radius: 40px 40px 0 0;
    background: #e8eaf0;
}

.contacts-map-stack iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(.35) saturate(.85);
}

.contacts-request {
    padding: 120px 0;
    background:
        linear-gradient(100deg, rgba(136, 83, 255, .98), rgba(65, 221, 255, .96)),
        var(--brand);
    color: #fff;
}

.contacts-request-container {
    display: grid;
    grid-template-columns: 430px minmax(0, 1fr);
    gap: 80px;
}

.contacts-request h2 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    color: #fff;
    font-size: 58px;
    font-weight: 700;
    line-height: 64px;
    text-transform: uppercase;
}

.contacts-request h2 span + span {
    font-weight: 300;
}

.contacts-request p {
    margin: 34px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: 20px;
    font-weight: 300;
    line-height: 32px;
}

.contacts-form {
    display: grid;
    gap: 36px;
}

.contacts-form fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.contacts-form legend {
    margin-bottom: 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-interest-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-interest-grid button {
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 999px;
    background: transparent;
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.contact-interest-grid button.is-active,
.contact-interest-grid button:hover {
    background: #fff;
    color: #382e4d;
}

.contacts-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.contacts-fields label {
    display: grid;
    gap: 8px;
}

.contacts-fields span {
    color: rgba(255, 255, 255, .74);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.contacts-fields input,
.contacts-fields textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .58);
    border-radius: 0;
    background: transparent;
    color: #fff;
    font: inherit;
    font-size: 20px;
    outline: none;
}

.contacts-fields input {
    height: 52px;
}

.contacts-fields textarea {
    min-height: 112px;
    resize: vertical;
}

.contacts-field-wide {
    grid-column: 1 / -1;
}

.contacts-form-bottom {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) 170px;
    gap: 22px;
    align-items: center;
}

.contacts-file {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.contacts-file input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.contacts-form-bottom p {
    margin: 0;
    font-size: 13px;
    line-height: 20px;
}

.contacts-form-bottom a {
    color: #fff;
    font-weight: 700;
}

.contacts-form-bottom .dot-gradient-link {
    min-height: 58px;
    border: 0;
    background: #fff !important;
    color: #382e4d;
    font: inherit;
    cursor: pointer;
    text-transform: uppercase;
}

.contacts-form-bottom strong {
    display: none;
    grid-column: 1 / -1;
    color: #fff;
    font-size: 16px;
}

.contacts-form.is-sent .contacts-form-bottom strong {
    display: block;
}

@media (max-width: 1180px) {
    .section__clients h2,
    .contacts-dot-container,
    .contacts-request-container {
        width: min(100% - 80px, 1240px);
    }

    .contacts-dot-row,
    .contacts-request-container {
        grid-template-columns: 1fr;
        gap: 42px;
    }
}

@media (max-width: 860px) {
    .home-hero .btn--light {
        background: rgba(255, 255, 255, .92) !important;
    }

    .section__nums-column-four .section__nums-caption {
        font-size: 20px;
        line-height: 24px;
    }

    .section__services-tabs-column button {
        font-size: 14px;
        line-height: 18px;
    }

    .section__clients h2,
    .contacts-dot-container,
    .contacts-request-container {
        width: calc(100% - 30px);
    }

    .about-photo,
    .about-photo img {
        min-height: 0;
        height: auto;
    }

    .mobile-services-panel {
        gap: 18px;
    }

    .mobile-services-panel .mobile-services-title {
        font-size: 20px;
        line-height: 26px;
    }

    .mobile-services-panel .mobile-services-child {
        font-size: 17px;
        line-height: 22px;
    }

    .contacts-dot-page {
        padding-top: 30px;
    }

    .contacts-dot-title {
        align-items: center;
        font-size: 42px;
        line-height: 48px;
        text-align: center;
    }

    .contacts-dot-row {
        margin-top: 38px;
        text-align: center;
    }

    .contacts-dot-links a {
        font-size: 18px;
        line-height: 26px;
    }

    .contacts-city-tabs {
        min-height: 44px;
    }

    .contacts-city-tabs button {
        font-size: 13px;
    }

    .contacts-city-addresses a {
        font-size: 18px;
        line-height: 28px;
    }

    .contacts-map-stack {
        height: 330px;
        margin: 42px -15px 0;
        border-radius: 0;
    }

    .contacts-request {
        padding: 76px 0;
    }

    .contacts-request h2 {
        font-size: 36px;
        line-height: 42px;
    }

    .contacts-request p {
        font-size: 17px;
        line-height: 27px;
    }

    .contacts-fields,
    .contacts-form-bottom {
        grid-template-columns: 1fr;
    }
}

/* Targeted mobile/layout fixes 2026-06-01. */
.section__nums-column-third {
    width: 360px;
    overflow: visible;
}

.section__nums-column-third h2 {
    max-width: 360px;
    overflow: visible;
    font-size: 32px;
    line-height: 38px;
    overflow-wrap: normal;
    word-break: normal;
}

@media (max-width: 860px) {
    .dot-section-head h2 span + span::before,
    .section__clients h2 span + span::before {
        display: none;
    }

    .mobile-manager .mobile-manager-email {
        display: block;
        grid-column: auto;
        width: auto;
        min-height: 0;
        margin-top: 4px;
        padding: 0;
        border-radius: 0;
        background: transparent;
        color: #8e939e;
        font-size: 18px;
        font-weight: 500;
        line-height: 24px;
        text-decoration: none;
    }

    .mobile-manager .mobile-manager-cta {
        grid-column: 1 / 3;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 138px;
        min-height: 58px;
        margin-top: 8px;
        border-radius: 50px;
        background: #fff;
        color: #000;
        font-size: 18px;
        font-weight: 500;
        text-decoration: none;
    }

    .section__cases,
    .section__news {
        overflow: hidden;
    }

    .section__cases .dot-section-head--row,
    .section__news .dot-section-head--row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: start;
        width: calc(100% - 30px);
        margin-right: auto;
        margin-bottom: 42px;
        margin-left: auto;
    }

    .section__cases .dot-outline-link {
        justify-self: start;
        max-width: 100%;
        min-height: 52px;
        padding: 0 24px;
        white-space: nowrap;
    }

    .section__cases .dot-case,
    .section__cases .dot-case.is-reverse {
        width: calc(100% - 30px);
        margin-right: auto;
        margin-bottom: 72px;
        margin-left: auto;
        gap: 28px;
    }

    .section__cases .dot-case-visual {
        min-height: 320px;
        padding: 32px;
    }

    .section__cases .dot-case-visual strong,
    .section__cases .dot-case-content h3 {
        max-width: 100%;
        font-size: clamp(30px, 10vw, 48px);
        line-height: 1.08;
        overflow-wrap: anywhere;
    }

    .section__news .slider-arrows {
        justify-self: start;
        margin-top: 0;
    }

    .section__news-slider {
        display: flex;
        gap: 24px;
        scroll-snap-type: x mandatory;
        padding-right: 32px;
        padding-left: 32px;
    }

    .section__news-card {
        flex: 0 0 calc(100vw - 64px);
        max-width: calc(100vw - 64px);
        min-height: 520px;
        padding: 34px;
        scroll-snap-align: start;
    }

    .section__news-card h3 {
        max-width: 100%;
        font-size: clamp(28px, 8.5vw, 42px);
        line-height: 1.08;
        overflow-wrap: anywhere;
    }

    .section__news-card p {
        font-size: 18px;
        line-height: 1.45;
    }

    .section__nums-column-third,
    .section__nums-column-third h2 {
        width: auto;
        max-width: 160px;
    }
}

@media (max-width: 430px) {
    .section__news-slider {
        gap: 20px;
        padding-right: 24px;
        padding-left: 24px;
    }

    .section__news-card {
        flex-basis: calc(100vw - 48px);
        max-width: calc(100vw - 48px);
        padding: 30px;
    }
}
