* {
    box-sizing: border-box;
}

:root {
    --blue: #0d58ff;
    --blue-light: #2d76ff;
    --blue-dark: #063fe2;
    --white: #ffffff;
    --text: rgba(255, 255, 255, 0.86);
    --muted: rgba(255, 255, 255, 0.64);
    --line: rgba(255, 255, 255, 0.22);
    --panel: rgba(3, 8, 14, 0.84);
    --font: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
    --header-height: 112px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: var(--font);
    color: var(--white);
    background: #020407;
}

main > section {
    scroll-margin-top: var(--header-height);
}

button,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

.hero {
    position: relative;
    height: 100vh;
    height: 100svh;
    padding-top: var(--header-height);
    overflow: hidden;
    isolation: isolate;
    background: #03070b;
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image: url("../img/hero/hero-fon.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: scale(1.018);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(1, 5, 9, 0.98) 0%,
            rgba(2, 6, 10, 0.91) 25%,
            rgba(3, 6, 10, 0.62) 50%,
            rgba(3, 6, 9, 0.2) 78%,
            rgba(3, 6, 9, 0.04) 100%
        ),
        linear-gradient(
            180deg,
            rgba(1, 5, 8, 0.22) 0%,
            rgba(1, 5, 8, 0.02) 45%,
            rgba(1, 5, 8, 0.4) 100%
        );
}

.hero::after {
    content: "";
    position: absolute;
    left: -180px;
    bottom: -120px;
    z-index: -1;
    width: 620px;
    height: 460px;
    pointer-events: none;
    background: rgba(13, 88, 255, 0.14);
    border-radius: 50%;
    filter: blur(120px);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    min-height: 112px;
    padding: 22px 30px 20px;
    display: grid;
    grid-template-columns: 310px 1fr auto;
    align-items: center;
    gap: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(1, 5, 8, 0.68);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.site-header__logo {
    display: block;
    width: 248px;
}

.site-header__logo img {
    display: block;
    width: 100%;
    height: auto;
}

.site-header__nav {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    padding-left: 34px;
    border-left: 1px solid rgba(255, 255, 255, 0.32);
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1;
    white-space: nowrap;
}

.site-header__nav a {
    transition: color 0.24s ease;
}

.site-header__nav a:hover {
    color: var(--blue-light);
}

.site-header__button,
.site-header__menu-toggle,
.hero__button,
.services__button,
.consultation-form__submit {
    border: 0;
    cursor: pointer;
}

.site-header__button {
    width: max-content;
    max-width: 100%;
    min-height: 62px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    gap: 12px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
    border-radius: 14px;
    box-shadow:
        0 18px 42px rgba(13, 88, 255, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    font-size: 19px;
    line-height: 1;
    white-space: nowrap;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.site-header__button:hover,
.hero__button--primary:hover,
.services__button:hover,
.consultation-form__submit:hover {
    transform: translateY(-2px);
    box-shadow:
        0 24px 50px rgba(13, 88, 255, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.consultation-modal__chat-icon {
    position: relative;
    flex: 0 0 auto;
    display: inline-block;
    border: 3px solid currentColor;
    border-radius: 50%;
}

.consultation-modal__chat-icon::after {
    content: "";
    position: absolute;
    left: 1px;
    bottom: -5px;
    width: 12px;
    height: 12px;
    border-left: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    border-bottom-left-radius: 10px;
    transform: rotate(-14deg);
}

.site-header__button-icon,
.hero__chat-icon,
.hero__play-icon {
    flex: 0 0 auto;
    display: inline-grid;
    place-items: center;
}

.site-header__button-icon {
    width: 32px;
    height: 32px;
}

.site-header__button-icon img,
.hero__chat-icon img,
.hero__play-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero__inner {
    width: min(100%, 1540px);
    height: calc(100svh - var(--header-height));
    margin: 0 auto;
    padding: 78px 60px 78px;
    display: flex;
    flex-direction: column;
}

section[id] {
    scroll-margin-top: calc(var(--header-height) + 24px);
}

.hero__content {
    width: min(100%, 980px);
}

.hero__title {
    margin: 0;
    font-size: 90px;
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: 0;
    color: var(--white);
    text-wrap: balance;
}

.hero__description {
    margin: 44px 0 0;
    max-width: 670px;
    color: var(--text);
    font-size: 41px;
    font-weight: 300;
    line-height: 1.34;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 56px;
}

.hero__button {
    min-width: 286px;
    min-height: 68px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-radius: 12px;
    color: var(--white);
    font-size: 23px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.hero__button--primary {
    background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
    box-shadow:
        0 22px 54px rgba(13, 88, 255, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.hero__button--outline {
    border: 2px solid rgba(255, 255, 255, 0.82);
    background: rgba(2, 6, 10, 0.46);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 18px 46px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero__button--outline:hover {
    transform: translateY(-2px);
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.hero__chat-icon {
    width: 34px;
    height: 34px;
}

.hero__play-icon {
    width: 34px;
    height: 34px;
}

.hero__benefits {
    width: min(100%, 1320px);
    margin: clamp(96px, 10vh, 128px) 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    list-style: none;
}

.hero__benefit {
    min-height: 112px;
    display: flex;
    align-items: center;
    gap: 24px;
    padding-right: 30px;
    color: var(--text);
    font-size: 28px;
    font-weight: 300;
    line-height: 1.32;
}

.hero__benefit + .hero__benefit {
    padding-left: 42px;
    border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.hero__benefit img {
    flex: 0 0 auto;
    width: 86px;
    height: 86px;
    object-fit: contain;
}

.about {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 80px 0;
    background:
        linear-gradient(180deg, #020407 0%, #03070b 48%, #020407 100%);
}

.about::before {
    content: "";
    position: absolute;
    left: -360px;
    bottom: -300px;
    z-index: -1;
    width: 820px;
    height: 620px;
    pointer-events: none;
    opacity: 0.28;
    background:
        repeating-radial-gradient(
            ellipse at center,
            rgba(45, 118, 255, 0.22) 0,
            rgba(45, 118, 255, 0.22) 1px,
            transparent 2px,
            transparent 32px
        );
    transform: rotate(-8deg);
}

.about::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(2, 4, 7, 0.98) 0%, rgba(2, 6, 10, 0.96) 42%, rgba(2, 6, 10, 0.88) 100%),
        linear-gradient(135deg, rgba(13, 88, 255, 0.08), transparent 42%);
}

.about__inner {
    width: min(100%, 1540px);
    margin: 0 auto;
    padding: 0 46px 0 70px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: 35px;
}

.about__content {
    min-width: 0;
    padding-top: 77px;
}

.about__eyebrow {
    margin: 0 0 43px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--blue);
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.about__eyebrow span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 20px rgba(13, 88, 255, 0.55);
}

.about__title {
    margin: 0;
    color: var(--white);
    font-size: clamp(50px, 3.9vw, 60px);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: 0;
    max-width: 100%;
}

.about__title span {
    display: block;
    width: max-content;
    max-width: none;
    transform: none;
    transform-origin: left center;
}

.about__accent {
    width: 75px;
    height: 5px;
    margin: 44px 0 45px;
    display: block;
    border-radius: 999px;
    background: var(--blue);
    box-shadow: 0 0 24px rgba(13, 88, 255, 0.4);
}

.about__text {
    max-width: 570px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 24px;
    font-weight: 300;
    line-height: 1.58;
    overflow-wrap: break-word;
}

.about__text p {
    margin: 0;
}

.about__text p + p {
    margin-top: 24px;
}

.about__visual {
    min-width: 0;
    padding-top: 23px;
}

.about__image {
    position: relative;
    margin: 0;
    aspect-ratio: 1.535;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow:
        0 38px 90px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.about__image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.16)),
        linear-gradient(90deg, rgba(0, 0, 0, 0.16), transparent 35%);
}

.about__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__stats {
    margin: 22px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    list-style: none;
}

.about__stat {
    min-width: 0;
    min-height: 276px;
    padding: 34px 18px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    color: var(--white);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
        rgba(3, 8, 14, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 24px 58px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.about__stat:hover {
    transform: translateY(-5px);
    border-color: rgba(45, 118, 255, 0.52);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 28px 64px rgba(0, 0, 0, 0.26),
        0 0 32px rgba(13, 88, 255, 0.16);
}

.about__stat > img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.about__stat strong {
    margin-top: 35px;
    display: block;
    color: var(--white);
    font-size: 52px;
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: 0;
    white-space: nowrap;
}

.about__stat small {
    font-size: 30px;
    font-weight: 300;
}

.about__rating-star {
    width: 31px;
    height: 31px;
    margin-left: 5px;
    display: inline-block;
    object-fit: contain;
    vertical-align: -2px;
}

.about__stat span {
    margin-top: 18px;
    display: block;
    color: rgba(255, 255, 255, 0.82);
    font-size: 22px;
    font-weight: 300;
    line-height: 1.28;
}

.services {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 80px 0;
    background:
        linear-gradient(180deg, #020407 0%, #050a10 48%, #020407 100%);
}

.services::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: 0.48;
    background:
        linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.035) 38.08%, transparent 38.18%),
        linear-gradient(162deg, transparent 0 70%, rgba(255, 255, 255, 0.028) 70.08%, transparent 70.18%),
        linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 150px 150px, 150px 150px;
    mask-image: linear-gradient(180deg, transparent, #000 16%, #000 86%, transparent);
}

.services::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(2, 4, 7, 0.98) 0%, rgba(2, 6, 10, 0.88) 50%, rgba(2, 4, 7, 0.96) 100%);
}

.services__inner {
    width: min(100%, 1540px);
    margin: 0 auto;
    padding: 0 70px;
}

.services__heading {
    max-width: 980px;
}

.services__eyebrow {
    margin: 0 0 26px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--blue);
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.services__eyebrow span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 20px rgba(13, 88, 255, 0.55);
}

.services__title {
    margin: 0;
    color: var(--white);
    font-size: clamp(50px, 3.9vw, 60px);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: 0;
}

.services__accent {
    width: 75px;
    height: 5px;
    margin: 28px 0 28px;
    display: block;
    border-radius: 999px;
    background: var(--blue);
    box-shadow: 0 0 24px rgba(13, 88, 255, 0.4);
}

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

.services__card {
    position: relative;
    height: 296px;
    overflow: hidden;
    color: var(--white);
    background: rgba(3, 8, 14, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    box-shadow:
        0 26px 64px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.services__card:hover {
    transform: translateY(-6px);
    border-color: rgba(45, 118, 255, 0.58);
    box-shadow:
        0 34px 76px rgba(0, 0, 0, 0.32),
        0 0 34px rgba(13, 88, 255, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.services__card picture,
.services__card picture img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.services__card picture img {
    display: block;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.services__card:hover picture img {
    transform: scale(1.065);
}

.services__card::before,
.services__card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.services__card::before {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.22) 42%, rgba(1, 4, 8, 0.88) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.26), transparent 48%);
}

.services__card::after {
    z-index: 2;
    border-radius: inherit;
    box-shadow: inset 0 -92px 100px rgba(0, 0, 0, 0.54);
}

.services__card-content {
    position: relative;
    z-index: 3;
    height: 100%;
    padding: 154px 24px 20px;
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    align-items: start;
    gap: 18px;
}

.services__icon {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    background: rgba(3, 8, 14, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 14px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 18px 42px rgba(0, 0, 0, 0.24);
}

.services__icon img {
    width: 54px;
    height: 54px;
    display: block;
    object-fit: contain;
}

.services__card h3 {
    margin: 0;
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0;
}

.services__card p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.28;
}

.services__button {
    min-width: 416px;
    min-height: 78px;
    margin: 24px auto 0;
    padding: 0 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
    border-radius: 12px;
    box-shadow:
        0 22px 54px rgba(13, 88, 255, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.services__button-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    display: inline-grid;
    place-items: center;
}

.services__button-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.advantages {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 80px 0;
    background: #020407;
}

.advantages__background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image: url("../img/bl%204/bl%204%20fonov.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    transform: scale(1.01);
}

.advantages::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(2, 4, 7, 0.98) 0%,
            rgba(2, 6, 10, 0.88) 34%,
            rgba(2, 6, 10, 0.54) 62%,
            rgba(2, 4, 7, 0.3) 100%
        ),
        linear-gradient(
            180deg,
            rgba(2, 4, 7, 0.2) 0%,
            rgba(2, 4, 7, 0.64) 38%,
            rgba(2, 4, 7, 0.94) 100%
        );
}

.advantages::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 150px 150px;
    opacity: 0.44;
    mask-image: linear-gradient(180deg, transparent, #000 18%, #000 86%, transparent);
}

.advantages__inner {
    width: min(100%, 1540px);
    margin: 0 auto;
    padding: 0 40px;
}

.advantages__heading {
    max-width: 830px;
}

.advantages__eyebrow {
    margin: 0 0 26px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--blue);
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.advantages__eyebrow span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 20px rgba(13, 88, 255, 0.55);
}

.advantages__title {
    margin: 0;
    color: var(--white);
    font-size: clamp(50px, 3.9vw, 60px);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: 0;
}

.advantages__description {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 24px;
    font-weight: 300;
    line-height: 1.42;
}

.advantages__accent {
    width: 64px;
    height: 5px;
    margin: 32px 0 28px;
    display: block;
    border-radius: 999px;
    background: var(--blue);
    box-shadow: 0 0 24px rgba(13, 88, 255, 0.4);
}

.advantages__grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.advantages__card {
    min-width: 0;
    height: 266px;
    padding: 34px 22px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    color: var(--white);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014)),
        rgba(3, 8, 14, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 24px 58px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        background-color 0.28s ease;
}

.advantages__card:hover {
    transform: translateY(-6px);
    border-color: rgba(45, 118, 255, 0.56);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 28px 66px rgba(0, 0, 0, 0.3),
        0 0 34px rgba(13, 88, 255, 0.16);
}

.advantages__card > img {
    width: 66px;
    height: 66px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(13, 88, 255, 0.36));
}

.advantages__card h3 {
    margin: 28px 0 0;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 0;
}

.advantages__card p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.32;
}

.advantages__card > span {
    width: 46px;
    height: 4px;
    margin-top: auto;
    display: block;
    border-radius: 999px;
    background: var(--blue);
    box-shadow: 0 0 20px rgba(13, 88, 255, 0.44);
}

.portfolio {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 80px 0;
    background: #020407;
}

.portfolio__background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image: url("../img/bl%205/bl%205%20img%201.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    transform: scale(1.02);
    filter: saturate(0.9);
}

.portfolio::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(2, 4, 7, 0.98) 0%,
            rgba(2, 5, 9, 0.94) 34%,
            rgba(2, 5, 9, 0.7) 58%,
            rgba(2, 4, 7, 0.34) 100%
        ),
        linear-gradient(
            180deg,
            rgba(2, 4, 7, 0.22) 0%,
            rgba(2, 4, 7, 0.72) 36%,
            rgba(2, 4, 7, 0.98) 100%
        );
}

.portfolio::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(2, 4, 7, 0.1), #020407 100%),
        radial-gradient(circle at 6% 45%, rgba(13, 88, 255, 0.12), transparent 28%);
}

.portfolio__inner {
    width: min(100%, 1540px);
    margin: 0 auto;
    padding: 0 70px;
}

.portfolio__heading {
    max-width: 980px;
}

.portfolio__eyebrow {
    margin: 0 0 34px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.portfolio__eyebrow span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 20px rgba(13, 88, 255, 0.55);
}

.portfolio__title {
    margin: 0;
    color: var(--white);
    font-size: clamp(50px, 3.9vw, 60px);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: 0;
}

.portfolio__description {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 25px;
    font-weight: 300;
    line-height: 1.38;
}

.portfolio__accent {
    width: 66px;
    height: 5px;
    margin: 32px 0 36px;
    display: block;
    border-radius: 999px;
    background: var(--blue);
    box-shadow: 0 0 24px rgba(13, 88, 255, 0.44);
}

.portfolio__tabs {
    margin: 20px 0 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.portfolio__tab {
    min-width: 146px;
    min-height: 54px;
    padding: 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(3, 8, 14, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
    white-space: nowrap;
    transition:
        color 0.24s ease,
        background 0.24s ease,
        border-color 0.24s ease,
        box-shadow 0.24s ease,
        transform 0.24s ease;
}

.portfolio__tab:hover {
    transform: translateY(-2px);
    border-color: rgba(45, 118, 255, 0.5);
}

.portfolio__tab.is-active {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
    border-color: rgba(45, 118, 255, 0.78);
    box-shadow:
        0 18px 42px rgba(13, 88, 255, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

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

.portfolio__grid.is-switching .portfolio__card {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
}

.portfolio__card {
    position: relative;
    min-height: 278px;
    aspect-ratio: 1.64 / 1;
    overflow: hidden;
    color: var(--white);
    background: rgba(3, 8, 14, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    box-shadow:
        0 24px 58px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition:
        opacity 0.28s ease,
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.portfolio__card:hover {
    transform: translateY(-5px);
    border-color: rgba(45, 118, 255, 0.5);
    box-shadow:
        0 32px 76px rgba(0, 0, 0, 0.34),
        0 0 34px rgba(13, 88, 255, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.portfolio__card > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.56s ease;
}

.portfolio__card:hover > img {
    transform: scale(1.065);
}

.portfolio__card::before,
.portfolio__card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.portfolio__card::before {
    z-index: 1;
    background:
        linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.14) 44%, rgba(1, 4, 8, 0.9) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.26), transparent 52%);
}

.portfolio__card::after {
    z-index: 2;
    border-radius: inherit;
    box-shadow: inset 0 -92px 94px rgba(0, 0, 0, 0.6);
}

.portfolio__card-content {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 18px;
    z-index: 3;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.portfolio__card h3 {
    margin: 0;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.15;
}

.portfolio__card p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.24;
}

.portfolio__card-link {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    background: rgba(3, 8, 14, 0.56);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    transition:
        background 0.24s ease,
        border-color 0.24s ease,
        transform 0.24s ease;
}

.portfolio__card-link:hover {
    transform: translateY(-2px);
    background: rgba(13, 88, 255, 0.2);
    border-color: rgba(45, 118, 255, 0.6);
}

.portfolio__card-link img {
    width: 19px;
    height: 19px;
    display: block;
    object-fit: contain;
}

.portfolio__grid .reveal-item:nth-child(1) {
    transition-delay: 0.1s;
}

.portfolio__grid .reveal-item:nth-child(2) {
    transition-delay: 0.18s;
}

.portfolio__grid .reveal-item:nth-child(3) {
    transition-delay: 0.26s;
}

.portfolio__grid .reveal-item:nth-child(4) {
    transition-delay: 0.34s;
}

.portfolio__grid .reveal-item:nth-child(5) {
    transition-delay: 0.42s;
}

.portfolio__grid .reveal-item:nth-child(6) {
    transition-delay: 0.5s;
}

body.has-reveal .reveal-item {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.72s ease,
        transform 0.72s ease;
}

body.has-reveal .reveal-section.is-visible .reveal-item {
    opacity: 1;
    transform: translateY(0);
}

body.has-reveal .reveal-section.is-visible .reveal-item:nth-child(2) {
    transition-delay: 0.08s;
}

body.has-reveal .reveal-section.is-visible .reveal-item:nth-child(3) {
    transition-delay: 0.16s;
}

body.has-reveal .reveal-section.is-visible .reveal-item:nth-child(4) {
    transition-delay: 0.24s;
}

.about__stats .reveal-item:nth-child(1) {
    transition-delay: 0.1s;
}

.about__stats .reveal-item:nth-child(2) {
    transition-delay: 0.18s;
}

.about__stats .reveal-item:nth-child(3) {
    transition-delay: 0.26s;
}

.about__stats .reveal-item:nth-child(4) {
    transition-delay: 0.34s;
}

.services__grid .reveal-item:nth-child(1) {
    transition-delay: 0.1s;
}

.services__grid .reveal-item:nth-child(2) {
    transition-delay: 0.18s;
}

.services__grid .reveal-item:nth-child(3) {
    transition-delay: 0.26s;
}

.services__grid .reveal-item:nth-child(4) {
    transition-delay: 0.34s;
}

.services__grid .reveal-item:nth-child(5) {
    transition-delay: 0.42s;
}

.services__grid .reveal-item:nth-child(6) {
    transition-delay: 0.5s;
}

.advantages__grid .reveal-item:nth-child(1) {
    transition-delay: 0.1s;
}

.advantages__grid .reveal-item:nth-child(2) {
    transition-delay: 0.16s;
}

.advantages__grid .reveal-item:nth-child(3) {
    transition-delay: 0.22s;
}

.advantages__grid .reveal-item:nth-child(4) {
    transition-delay: 0.28s;
}

.advantages__grid .reveal-item:nth-child(5) {
    transition-delay: 0.34s;
}

.advantages__grid .reveal-item:nth-child(6) {
    transition-delay: 0.4s;
}

.advantages__grid .reveal-item:nth-child(7) {
    transition-delay: 0.46s;
}

.advantages__grid .reveal-item:nth-child(8) {
    transition-delay: 0.52s;
}

.process,
.contacts {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 80px 0;
    background:
        linear-gradient(180deg, #020407 0%, #050a10 52%, #020407 100%);
}

.process::before,
.contacts::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
    background-size: 150px 150px;
    opacity: 0.42;
    mask-image: linear-gradient(180deg, transparent, #000 18%, #000 86%, transparent);
}

.process::after,
.contacts::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 8% 32%, rgba(13, 88, 255, 0.13), transparent 30%),
        linear-gradient(90deg, rgba(2, 4, 7, 0.98), rgba(2, 6, 10, 0.88), rgba(2, 4, 7, 0.98));
}

.process__inner,
.contacts__inner {
    width: min(100%, 1540px);
    margin: 0 auto;
    padding: 0 70px;
}

.process__heading,
.contacts__content {
    max-width: 820px;
}

.process__eyebrow,
.contacts__eyebrow {
    margin: 0 0 26px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--blue);
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.process__eyebrow span,
.contacts__eyebrow span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 20px rgba(13, 88, 255, 0.55);
}

.process__title,
.contacts__title {
    margin: 0;
    color: var(--white);
    font-size: clamp(50px, 3.9vw, 60px);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: 0;
}

.contacts__description {
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 24px;
    font-weight: 300;
    line-height: 1.42;
}

.process__description {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 24px;
    font-weight: 300;
    line-height: 1.42;
}

.process__accent {
    width: 64px;
    height: 5px;
    margin: 32px 0 28px;
    display: block;
    border-radius: 999px;
    background: var(--blue);
    box-shadow: 0 0 24px rgba(13, 88, 255, 0.4);
}

.process__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.process__card,
.contacts__panel {
    color: var(--white);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014)),
        rgba(3, 8, 14, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 24px 58px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.process__card {
    min-height: 252px;
    padding: 30px 22px 24px;
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.process__card:hover,
.contacts__panel:hover {
    transform: translateY(-5px);
    border-color: rgba(45, 118, 255, 0.5);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 28px 64px rgba(0, 0, 0, 0.28),
        0 0 32px rgba(13, 88, 255, 0.15);
}

.process__card span {
    display: block;
    color: var(--blue-light);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.process__card h3 {
    margin: 34px 0 0;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.16;
}

.process__card p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 19px;
    font-weight: 300;
    line-height: 1.34;
}

.process__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(620px, 1fr);
    align-items: center;
    gap: 58px;
}

.process__intro {
    min-width: 0;
}

.process__visual {
    position: relative;
    width: 100%;
    min-height: 530px;
    margin: 20px 0 0;
    overflow: hidden;
    background: rgba(3, 8, 14, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0;
    box-shadow: 0 30px 82px rgba(0, 0, 0, 0.34);
}

.process__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(2, 4, 7, 0.28) 0%, rgba(2, 4, 7, 0.08) 38%, rgba(2, 4, 7, 0.72) 100%),
        linear-gradient(90deg, rgba(2, 4, 7, 0.58) 0%, rgba(2, 4, 7, 0.18) 34%, rgba(2, 4, 7, 0.5) 100%),
        radial-gradient(circle at 52% 43%, rgba(255, 255, 255, 0.08), transparent 42%);
}

.process__visual img {
    width: 100%;
    height: 100%;
    min-height: 530px;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.process__visual:hover img {
    transform: scale(1.035);
}

.process__steps {
    position: relative;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 32px;
    list-style: none;
}

.process__steps::before {
    content: "";
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 39px;
    width: 1px;
    background:
        linear-gradient(180deg, transparent, rgba(45, 118, 255, 0.72) 10%, rgba(255, 255, 255, 0.2) 50%, rgba(45, 118, 255, 0.72) 90%, transparent);
    box-shadow: 0 0 20px rgba(13, 88, 255, 0.48);
}

.process__step {
    position: relative;
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    align-items: center;
    gap: 36px;
}

.process__step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 35px;
    bottom: -20px;
    z-index: 2;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--blue-light);
    box-shadow:
        0 0 0 4px rgba(13, 88, 255, 0.1),
        0 0 18px rgba(45, 118, 255, 0.72);
}

.process__number {
    position: relative;
    z-index: 3;
    width: 80px;
    height: 80px;
    display: inline-grid;
    place-items: center;
    color: var(--white);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
        rgba(3, 8, 14, 0.82);
    border: 3px solid var(--blue-dark);
    border-radius: 50%;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 0 24px rgba(13, 88, 255, 0.26);
    font-size: 47px;
    font-weight: 700;
    line-height: 1;
}

.process__panel {
    min-height: 110px;
    padding: 24px 30px;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    align-items: center;
    gap: 28px;
    color: var(--white);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
        rgba(3, 8, 14, 0.64);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 24px 58px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        background-color 0.28s ease;
}

.process__panel:hover {
    transform: translateX(6px);
    border-color: rgba(45, 118, 255, 0.55);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 28px 66px rgba(0, 0, 0, 0.28),
        0 0 32px rgba(13, 88, 255, 0.16);
}

.process__panel img {
    width: 62px;
    height: 62px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(13, 88, 255, 0.42));
}

.process__panel h3 {
    margin: 0;
    color: var(--white);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.16;
}

.process__panel p {
    margin: 9px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 21px;
    font-weight: 300;
    line-height: 1.32;
}

.process__steps .reveal-item:nth-child(1) {
    transition-delay: 0.1s;
}

.process__steps .reveal-item:nth-child(2) {
    transition-delay: 0.16s;
}

.process__steps .reveal-item:nth-child(3) {
    transition-delay: 0.22s;
}

.process__steps .reveal-item:nth-child(4) {
    transition-delay: 0.28s;
}

.process__steps .reveal-item:nth-child(5) {
    transition-delay: 0.34s;
}

.process__steps .reveal-item:nth-child(6) {
    transition-delay: 0.4s;
}

.contacts__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
    align-items: center;
    gap: 48px;
}

.contacts__panel {
    padding: 34px;
    display: grid;
    gap: 22px;
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.contacts__item span {
    display: block;
    color: var(--blue-light);
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
}

.contacts__item a,
.contacts__item p {
    margin: 9px 0 0;
    color: var(--white);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.16;
}

.contacts__button {
    min-height: 66px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    box-shadow:
        0 22px 54px rgba(13, 88, 255, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    font-size: 21px;
    line-height: 1;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.contacts__button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 26px 58px rgba(13, 88, 255, 0.44),
        inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.contacts__button-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    display: inline-grid;
    place-items: center;
}

.contacts__button-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.process__grid .reveal-item:nth-child(1) {
    transition-delay: 0.1s;
}

.process__grid .reveal-item:nth-child(2) {
    transition-delay: 0.18s;
}

.process__grid .reveal-item:nth-child(3) {
    transition-delay: 0.26s;
}

.process__grid .reveal-item:nth-child(4) {
    transition-delay: 0.34s;
}

.workscope {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 80px 0;
    background: #020407;
}

.workscope::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: -3;
    height: clamp(560px, 40vw, 620px);
    pointer-events: none;
    background-image:
        linear-gradient(
            90deg,
            rgba(2, 4, 7, 1) 0%,
            rgba(2, 4, 7, 0.98) 18%,
            rgba(2, 4, 7, 0.78) 38%,
            rgba(2, 4, 7, 0.28) 66%,
            rgba(2, 4, 7, 0.08) 100%
        ),
        linear-gradient(
            180deg,
            rgba(2, 4, 7, 0.1) 0%,
            rgba(2, 4, 7, 0.1) 42%,
            rgba(2, 4, 7, 0.68) 74%,
            #020407 100%
        ),
        url("../img/bl 7/bl 7img.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.workscope::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(2, 4, 7, 0.08) 0%, rgba(2, 4, 7, 0.36) 34%, rgba(2, 4, 7, 0.92) 55%, #020407 82%),
        linear-gradient(90deg, rgba(2, 4, 7, 0.94) 0%, rgba(2, 4, 7, 0.68) 30%, rgba(2, 4, 7, 0.18) 74%, rgba(2, 4, 7, 0.26) 100%),
        radial-gradient(circle at 8% 24%, rgba(13, 88, 255, 0.12), transparent 27%),
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 150px 150px, 150px 150px;
    opacity: 0.9;
    mask-image: linear-gradient(180deg, transparent, #000 8%, #000 92%, transparent);
}

.workscope__inner {
    width: min(100%, 1540px);
    margin: 0 auto;
    padding: 0 52px;
}

.workscope__heading {
    max-width: 620px;
}

.workscope__eyebrow {
    margin: 0 0 26px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--blue);
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.workscope__eyebrow span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 20px rgba(13, 88, 255, 0.55);
}

.workscope__title {
    margin: 0;
    color: var(--white);
    font-size: clamp(50px, 3.9vw, 60px);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: 0;
}

.workscope__accent {
    width: 64px;
    height: 5px;
    margin: 30px 0 28px;
    display: block;
    border-radius: 999px;
    background: var(--blue);
    box-shadow: 0 0 24px rgba(13, 88, 255, 0.4);
}

.workscope__description {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 24px;
    font-weight: 300;
    line-height: 1.42;
}

.workscope__grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px 18px;
}

.workscope__card {
    min-height: 206px;
    padding: 24px 22px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(45, 118, 255, 0.08), transparent 44%),
        linear-gradient(155deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.012)),
        rgba(3, 8, 14, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: 14px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 24px 58px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        background-color 0.28s ease;
}

.workscope__card:hover {
    transform: translateY(-6px);
    border-color: rgba(45, 118, 255, 0.56);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 30px 70px rgba(0, 0, 0, 0.32),
        0 0 34px rgba(13, 88, 255, 0.15);
}

.workscope__icon {
    width: 66px;
    height: 66px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 13px rgba(13, 88, 255, 0.42));
    transition: transform 0.28s ease;
}

.workscope__card:hover .workscope__icon {
    transform: translateY(-3px) scale(1.04);
}

.workscope__card h3 {
    margin: 16px 0 0;
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: 0;
}

.workscope__card-accent {
    width: 28px;
    height: 3px;
    margin: 9px 0 0;
    display: block;
    border-radius: 999px;
    background: var(--blue);
    box-shadow: 0 0 18px rgba(13, 88, 255, 0.45);
}

.workscope__card p {
    max-width: 265px;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.3;
}

.workscope__grid .reveal-item:nth-child(1) {
    transition-delay: 0.1s;
}

.workscope__grid .reveal-item:nth-child(2) {
    transition-delay: 0.14s;
}

.workscope__grid .reveal-item:nth-child(3) {
    transition-delay: 0.18s;
}

.workscope__grid .reveal-item:nth-child(4) {
    transition-delay: 0.22s;
}

.workscope__grid .reveal-item:nth-child(5) {
    transition-delay: 0.26s;
}

.workscope__grid .reveal-item:nth-child(6) {
    transition-delay: 0.3s;
}

.workscope__grid .reveal-item:nth-child(7) {
    transition-delay: 0.34s;
}

.workscope__grid .reveal-item:nth-child(8) {
    transition-delay: 0.38s;
}

.workscope__grid .reveal-item:nth-child(9) {
    transition-delay: 0.42s;
}

.workscope__grid .reveal-item:nth-child(10) {
    transition-delay: 0.46s;
}

.workscope__grid .reveal-item:nth-child(11) {
    transition-delay: 0.5s;
}

.workscope__grid .reveal-item:nth-child(12) {
    transition-delay: 0.54s;
}

.guarantees {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 80px 0;
    background: #020407;
}

.guarantees::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background-image:
        linear-gradient(
            90deg,
            rgba(2, 4, 7, 1) 0%,
            rgba(2, 4, 7, 0.98) 22%,
            rgba(2, 4, 7, 0.82) 43%,
            rgba(2, 4, 7, 0.34) 69%,
            rgba(2, 4, 7, 0.2) 100%
        ),
        linear-gradient(
            180deg,
            rgba(2, 4, 7, 0.08) 0%,
            rgba(2, 4, 7, 0.14) 44%,
            rgba(2, 4, 7, 0.72) 75%,
            #020407 100%
        ),
        url("../img/bl 8/bl 8 fon.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    transform: scale(1.01);
}

.guarantees::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(circle at 78% 28%, rgba(45, 118, 255, 0.22), transparent 18%),
        radial-gradient(circle at 11% 29%, rgba(13, 88, 255, 0.14), transparent 27%),
        linear-gradient(180deg, rgba(2, 4, 7, 0.02) 0%, rgba(2, 4, 7, 0.36) 52%, #020407 94%),
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 150px 150px, 150px 150px;
    opacity: 0.92;
    mask-image: linear-gradient(180deg, transparent, #000 7%, #000 93%, transparent);
}

.guarantees__inner {
    width: min(100%, 1540px);
    margin: 0 auto;
    padding: 0 68px;
}

.guarantees__hero {
    min-height: 460px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
    align-items: start;
    gap: 44px;
}

.guarantees__content {
    max-width: 820px;
}

.guarantees__eyebrow {
    margin: 0 0 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.guarantees__eyebrow span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 20px rgba(13, 88, 255, 0.58);
}

.guarantees__title {
    margin: 0;
    color: var(--white);
    font-size: clamp(50px, 4vw, 64px);
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: 0;
}

.guarantees__title span {
    display: block;
    white-space: nowrap;
}

.guarantees__description {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 24px;
    font-weight: 300;
    line-height: 1.48;
}

.guarantees__accent {
    width: 64px;
    height: 5px;
    margin: 30px 0 28px;
    display: block;
    border-radius: 999px;
    background: var(--blue);
    box-shadow: 0 0 24px rgba(13, 88, 255, 0.44);
}

.guarantees__visual {
    position: relative;
    min-height: 365px;
    display: grid;
    justify-items: center;
    align-content: start;
    padding-top: 58px;
}

.guarantees__shield {
    position: relative;
    z-index: 2;
    width: clamp(165px, 15.4vw, 218px);
    height: auto;
    display: block;
    filter:
        drop-shadow(0 22px 42px rgba(0, 0, 0, 0.42))
        drop-shadow(0 0 22px rgba(45, 118, 255, 0.38));
    animation: guaranteesFloat 5.6s ease-in-out infinite;
}

.guarantees__badge {
    position: relative;
    z-index: 1;
    width: min(100%, 270px);
    min-height: 154px;
    margin-top: -7px;
    padding: 26px 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(3, 8, 14, 0.7);
    border: 1px solid rgba(45, 118, 255, 0.48);
    border-radius: 16px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 24px 60px rgba(0, 0, 0, 0.34),
        0 0 34px rgba(13, 88, 255, 0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.guarantees__badge strong {
    color: #78a9ff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 0 0 24px rgba(13, 88, 255, 0.34);
}

.guarantees__badge span {
    margin-top: 10px;
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.05;
    white-space: nowrap;
    text-transform: uppercase;
}

.guarantees__badge small {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 19px;
    font-weight: 300;
    line-height: 1.2;
}

.guarantees__grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.guarantees__card {
    min-height: 356px;
    padding: 38px 28px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(45, 118, 255, 0.1), transparent 44%),
        linear-gradient(155deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.012)),
        rgba(3, 8, 14, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 24px 58px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        background-color 0.28s ease;
}

.guarantees__card:hover {
    transform: translateY(-6px);
    border-color: rgba(45, 118, 255, 0.58);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 30px 70px rgba(0, 0, 0, 0.32),
        0 0 34px rgba(13, 88, 255, 0.15);
}

.guarantees__icon {
    width: 100px;
    height: 100px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(13, 88, 255, 0.42));
    transition: transform 0.28s ease;
}

.guarantees__card:hover .guarantees__icon {
    transform: translateY(-3px) scale(1.04);
}

.guarantees__card-accent {
    width: 44px;
    height: 4px;
    margin: 22px 0 0;
    display: block;
    border-radius: 999px;
    background: var(--blue);
    box-shadow: 0 0 18px rgba(13, 88, 255, 0.46);
}

.guarantees__card h3 {
    margin: 24px 0 0;
    color: var(--white);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: 0;
}

.guarantees__card p {
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 21px;
    font-weight: 300;
    line-height: 1.38;
}

.guarantees__grid .reveal-item:nth-child(1) {
    transition-delay: 0.1s;
}

.guarantees__grid .reveal-item:nth-child(2) {
    transition-delay: 0.18s;
}

.guarantees__grid .reveal-item:nth-child(3) {
    transition-delay: 0.26s;
}

.guarantees__grid .reveal-item:nth-child(4) {
    transition-delay: 0.34s;
}

@keyframes guaranteesFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.privacy-page {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 100svh;
    padding: calc(var(--header-height) + 80px) 0 80px;
    background: #020407;
}

.privacy-page::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(circle at 9% 18%, rgba(13, 88, 255, 0.16), transparent 28%),
        radial-gradient(circle at 82% 12%, rgba(45, 118, 255, 0.1), transparent 26%),
        linear-gradient(180deg, rgba(4, 11, 18, 0.98), rgba(2, 4, 7, 1));
}

.privacy-page::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
    background-size: 150px 150px;
    opacity: 0.38;
    mask-image: linear-gradient(180deg, transparent, #000 12%, #000 90%, transparent);
}

.privacy-page__inner {
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 0 52px;
}

.privacy-page__eyebrow {
    margin: 0 0 26px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--blue);
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.privacy-page__eyebrow span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 20px rgba(13, 88, 255, 0.55);
}

.privacy-page__title {
    max-width: 850px;
    margin: 0;
    color: var(--white);
    font-size: clamp(42px, 4vw, 64px);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: 0;
}

.privacy-page__accent {
    width: 64px;
    height: 5px;
    margin: 30px 0 28px;
    display: block;
    border-radius: 999px;
    background: var(--blue);
    box-shadow: 0 0 24px rgba(13, 88, 255, 0.44);
}

.privacy-page__back {
    width: max-content;
    max-width: 100%;
    min-height: 52px;
    margin: 0 0 28px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 12px;
    background: rgba(2, 6, 10, 0.48);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 18px 46px rgba(0, 0, 0, 0.18);
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.privacy-page__back::before {
    content: "";
    width: 11px;
    height: 11px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
}

.privacy-page__back:hover {
    transform: translateY(-2px);
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 22px 52px rgba(0, 0, 0, 0.24);
}

.privacy-page__content {
    padding: 42px 46px;
    color: rgba(255, 255, 255, 0.82);
    background:
        radial-gradient(circle at 50% 0%, rgba(45, 118, 255, 0.08), transparent 44%),
        linear-gradient(155deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.012)),
        rgba(3, 8, 14, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 24px 58px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.privacy-page__content p {
    margin: 0;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.48;
}

.privacy-page__content p + h2 {
    margin-top: 34px;
}

.privacy-page__content h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.18;
}

.privacy-page__content a {
    color: var(--blue-light);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition: color 0.24s ease;
}

.privacy-page__content a:hover {
    color: var(--white);
}

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

.sitemap-page__group {
    min-width: 0;
    min-height: 296px;
    padding: 30px 28px 28px;
    color: rgba(255, 255, 255, 0.82);
    background:
        radial-gradient(circle at 50% 0%, rgba(45, 118, 255, 0.08), transparent 44%),
        linear-gradient(155deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.012)),
        rgba(3, 8, 14, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 24px 58px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.sitemap-page__group h2 {
    margin: 0 0 22px;
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.18;
}

.sitemap-page__group ul {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
    list-style: none;
}

.sitemap-page__group a {
    min-height: 48px;
    padding: 13px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    transition:
        transform 0.24s ease,
        border-color 0.24s ease,
        background-color 0.24s ease;
}

.sitemap-page__group a::after {
    content: "";
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    opacity: 0.72;
}

.sitemap-page__group a:hover {
    transform: translateX(4px);
    border-color: rgba(45, 118, 255, 0.52);
    background: rgba(13, 88, 255, 0.16);
}

.thanks-page {
    display: flex;
    align-items: center;
}

.thanks-page__panel {
    width: min(100%, 780px);
    padding: 48px 50px;
    color: rgba(255, 255, 255, 0.82);
    background:
        radial-gradient(circle at 50% 0%, rgba(45, 118, 255, 0.13), transparent 48%),
        linear-gradient(155deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.014)),
        rgba(3, 8, 14, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 28px 70px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.thanks-page__check {
    width: 72px;
    height: 72px;
    margin-bottom: 28px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
    border-radius: 50%;
    box-shadow:
        0 18px 42px rgba(13, 88, 255, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.thanks-page__check svg {
    width: 36px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.thanks-page__title {
    max-width: 620px;
}

.thanks-page__accent {
    margin-bottom: 26px;
}

.thanks-page__text {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 25px;
    font-weight: 300;
    line-height: 1.42;
}

.thanks-page__actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.thanks-page__button,
.thanks-page__link {
    margin: 0;
}

.site-footer {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 80px 0;
    background: #020407;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(circle at 8% 12%, rgba(13, 88, 255, 0.14), transparent 26%),
        radial-gradient(circle at 84% 20%, rgba(45, 118, 255, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(4, 11, 18, 0.96), rgba(2, 4, 7, 1));
}

.site-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
    background-size: 150px 150px;
    opacity: 0.36;
    mask-image: linear-gradient(180deg, transparent, #000 16%, #000 88%, transparent);
}

.site-footer__inner {
    width: min(100%, 1540px);
    margin: 0 auto;
    padding: 0 30px;
}

.site-footer__top {
    display: grid;
    grid-template-columns: minmax(300px, 0.98fr) minmax(300px, 1.02fr) minmax(280px, 0.94fr) minmax(300px, 0.9fr);
    gap: 30px;
}

.site-footer__brand,
.site-footer__column {
    min-width: 0;
}

.site-footer__column {
    position: relative;
    padding-left: 50px;
}

.site-footer__column::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.16) 10%, rgba(255, 255, 255, 0.18) 88%, transparent);
}

.site-footer__logo {
    width: min(100%, 330px);
    display: inline-block;
}

.site-footer__logo img {
    width: 100%;
    height: auto;
    display: block;
}

.site-footer__brand p {
    margin: 56px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 23px;
    font-weight: 300;
    line-height: 1.6;
}

.site-footer__column h2 {
    margin: 30px 0 62px;
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0;
}

.site-footer__column--social h2 {
    white-space: nowrap;
}

.site-footer__list,
.site-footer__socials {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 48px;
    list-style: none;
}

.site-footer__link,
.site-footer__schedule,
.site-footer__social {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: start;
    gap: 24px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 22px;
    font-weight: 300;
    line-height: 1.52;
}

.site-footer__link,
.site-footer__social {
    transition:
        color 0.24s ease,
        transform 0.24s ease;
}

.site-footer__link:hover,
.site-footer__social:hover {
    color: var(--white);
    transform: translateX(4px);
}

.site-footer__icon {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
}

.site-footer__icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(13, 88, 255, 0.44));
}

.site-footer__schedule p {
    margin: 0;
}

.site-footer__schedule p span {
    display: inline-block;
    margin-top: 22px;
}

.site-footer__socials {
    gap: 26px;
}

.site-footer__social {
    grid-template-columns: 60px minmax(0, 1fr);
    align-items: center;
    gap: 20px;
}

.site-footer__social span {
    width: 60px;
    height: 60px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(13, 88, 255, 0.92);
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 18%, rgba(45, 118, 255, 0.18), transparent 58%),
        rgba(3, 8, 14, 0.54);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 24px rgba(13, 88, 255, 0.1);
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        border-color 0.24s ease;
}

.site-footer__social:hover span {
    transform: scale(1.05);
    border-color: var(--blue-light);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 28px rgba(13, 88, 255, 0.24);
}

.site-footer__social img {
    width: 32px;
    height: 32px;
    display: block;
    object-fit: contain;
}

.site-footer__bottom {
    margin-top: 80px;
    padding-top: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 21px;
    font-weight: 300;
    line-height: 1.3;
}

.site-footer__nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.site-footer__nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.68);
    font-size: 21px;
    font-weight: 300;
    line-height: 1.2;
    transition: color 0.24s ease;
}

.site-footer__nav a + a {
    padding-left: 36px;
}

.site-footer__nav a + a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-50%);
}

.site-footer__nav a:hover {
    color: var(--white);
}

.site-footer__top .reveal-item:nth-child(1) {
    transition-delay: 0.1s;
}

.site-footer__top .reveal-item:nth-child(2) {
    transition-delay: 0.18s;
}

.site-footer__top .reveal-item:nth-child(3) {
    transition-delay: 0.26s;
}

.site-footer__top .reveal-item:nth-child(4) {
    transition-delay: 0.34s;
}

.consultation-modal {
    position: fixed;
    inset: 0;
    z-index: 20;
    padding: 24px;
    display: grid;
    place-items: center;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.consultation-modal.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.consultation-modal__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 35%, rgba(13, 88, 255, 0.16), transparent 36%),
        rgba(0, 4, 8, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.site-header__menu-toggle {
    position: absolute;
    top: 50%;
    right: 16px;
    z-index: 2;
    width: 44px;
    height: 44px;
    padding: 0;
    display: inline-grid;
    place-items: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 11px;
    transform: translateY(-50%);
}

.site-header__menu-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    grid-area: 1 / 1;
    background: currentColor;
    border-radius: 999px;
    transition:
        transform 0.22s ease,
        opacity 0.22s ease;
}

.site-header__menu-toggle span:nth-child(1) {
    transform: translateY(-7px);
}

.site-header__menu-toggle span:nth-child(3) {
    transform: translateY(7px);
}

.site-header.is-menu-open .site-header__menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
}

.site-header.is-menu-open .site-header__menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.is-menu-open .site-header__menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
}

.consultation-modal__dialog {
    position: relative;
    width: min(100%, 640px);
    max-height: calc(100svh - 48px);
    padding: 44px;
    overflow-y: auto;
    color: var(--white);
    background:
        linear-gradient(150deg, rgba(16, 24, 36, 0.97), rgba(2, 6, 11, 0.98)),
        var(--panel);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    box-shadow:
        0 42px 120px rgba(0, 0, 0, 0.7),
        0 0 58px rgba(13, 88, 255, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(22px) scale(0.97);
    transition:
        transform 0.34s ease,
        opacity 0.34s ease;
}

.consultation-modal.is-open .consultation-modal__dialog {
    transform: translateY(0) scale(1);
}

.consultation-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    padding: 0;
    display: grid;
    place-items: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    cursor: pointer;
}

.consultation-modal__close span {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 6px;
    background: currentColor;
}

.consultation-modal__close span:first-child {
    transform: rotate(45deg);
}

.consultation-modal__close span:last-child {
    transform: rotate(-45deg);
}

.consultation-modal__heading {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding-right: 48px;
}

.consultation-modal__chat-icon {
    width: 52px;
    height: 52px;
    color: var(--white);
}

.consultation-modal__label {
    display: block;
    margin-bottom: 8px;
    color: var(--blue-light);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.consultation-modal__title {
    margin: 0;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0;
}

.consultation-modal__description {
    margin: 24px 0 28px;
    color: var(--text);
    font-size: 19px;
    font-weight: 300;
    line-height: 1.5;
}

.consultation-form {
    display: grid;
    gap: 18px;
}

.consultation-form__field {
    display: grid;
    gap: 8px;
}

.consultation-form__field label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.2;
}

.consultation-form__field label span {
    color: var(--muted);
}

.consultation-form__label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.2;
}

.consultation-form__field > input,
.consultation-form__field > textarea {
    width: 100%;
    min-height: 58px;
    padding: 16px 18px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    outline: none;
    font-size: 18px;
    line-height: 1.35;
}

.consultation-form__field textarea {
    min-height: 106px;
    resize: vertical;
}

.consultation-form__field > input::placeholder,
.consultation-form__field > textarea::placeholder {
    color: rgba(255, 255, 255, 0.38);
}

.consultation-form__field > input:focus,
.consultation-form__field > textarea:focus {
    border-color: var(--blue-light);
    box-shadow: 0 0 0 4px rgba(13, 88, 255, 0.16);
}

.consultation-form__field.is-invalid > input,
.consultation-form__field.is-invalid > textarea {
    border-color: #ff6666;
    box-shadow: 0 0 0 4px rgba(255, 102, 102, 0.12);
}

.consultation-form__messenger-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.consultation-form__messenger {
    position: relative;
    min-height: 76px;
    display: grid;
    cursor: pointer;
}

.consultation-form__messenger input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.consultation-form__messenger .consultation-form__messenger-card {
    width: 100%;
    min-height: 76px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 10px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 8px;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.consultation-form__messenger .consultation-form__messenger-icon {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--messenger-color);
    background: color-mix(in srgb, var(--messenger-color) 20%, transparent);
    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.consultation-form__messenger .consultation-form__messenger-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.consultation-form__messenger .consultation-form__messenger-name {
    color: currentColor;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.1;
}

.consultation-form__messenger[data-messenger="telegram"] {
    --messenger-color: #229ed9;
}

.consultation-form__messenger[data-messenger="whatsapp"] {
    --messenger-color: #35c66b;
}

.consultation-form__messenger[data-messenger="viber"] {
    --messenger-color: #7360a9;
}

.consultation-form__messenger input:focus-visible + .consultation-form__messenger-card {
    border-color: var(--messenger-color);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--messenger-color) 20%, transparent);
}

.consultation-form__messenger input:checked + .consultation-form__messenger-card {
    color: var(--white);
    background:
        linear-gradient(
            180deg,
            color-mix(in srgb, var(--messenger-color) 20%, rgba(255, 255, 255, 0.035)),
            color-mix(in srgb, var(--messenger-color) 10%, rgba(255, 255, 255, 0.025))
        );
    border-color: color-mix(in srgb, var(--messenger-color) 72%, rgba(255, 255, 255, 0.22));
    box-shadow:
        0 0 0 1px color-mix(in srgb, var(--messenger-color) 30%, transparent),
        0 14px 34px color-mix(in srgb, var(--messenger-color) 24%, transparent);
}

.consultation-form__messenger input:checked + .consultation-form__messenger-card .consultation-form__messenger-icon {
    color: var(--white);
    background: var(--messenger-color);
    transform: translateY(-1px);
}

.consultation-form__messengers.is-invalid .consultation-form__messenger-card {
    border-color: #ff6666;
}

.consultation-form__error {
    display: none;
    color: #ff9a9a;
    font-size: 14px;
    line-height: 1.3;
}

.consultation-form__field.is-invalid .consultation-form__error {
    display: block;
}

.consultation-form__privacy {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.45;
    cursor: pointer;
}

.consultation-form__privacy input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.consultation-form__checkbox {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 6px;
}

.consultation-form__checkbox svg {
    width: 14px;
    fill: none;
    stroke: var(--white);
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
    transform: scale(0.6);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.consultation-form__privacy input:checked + .consultation-form__checkbox {
    background: var(--blue);
    border-color: var(--blue);
}

.consultation-form__privacy input:checked + .consultation-form__checkbox svg {
    opacity: 1;
    transform: scale(1);
}

.consultation-form__privacy.is-invalid .consultation-form__checkbox {
    border-color: #ff6666;
}

.consultation-form__submit {
    min-height: 62px;
    margin-top: 2px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
    border-radius: 12px;
    box-shadow:
        0 18px 44px rgba(13, 88, 255, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.26);
    font-size: 20px;
    font-weight: 700;
}

.consultation-form__success {
    display: none;
    padding: 15px 16px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(48, 199, 116, 0.1);
    border: 1px solid rgba(48, 199, 116, 0.3);
    border-radius: 12px;
}

.consultation-form__success.is-visible {
    display: block;
}

.consultation-form__success strong {
    display: block;
    margin-bottom: 3px;
    color: #83efb6;
    font-size: 16px;
}

.consultation-form__success p {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
}

body.is-modal-open {
    overflow: hidden;
}

@media (min-width: 1321px) {
    .site-header__menu-toggle {
        display: none;
    }
}

@media (max-width: 1500px) {
    .site-header {
        grid-template-columns: 268px 1fr auto;
        gap: 20px;
    }

    .site-header__logo {
        width: 224px;
    }

    .site-header__nav {
        gap: 18px;
        padding-left: 22px;
        font-size: 16px;
    }

    .site-header__button {
        min-height: 58px;
        padding: 0 18px;
        font-size: 18px;
    }
}

@media (max-width: 1400px) {
    .process__inner,
    .contacts__inner {
        padding: 0 56px;
    }

    .process__title,
    .contacts__title {
        font-size: 50px;
    }

    .process__description,
    .contacts__description {
        font-size: 22px;
    }

    .process__card {
        min-height: 238px;
    }

    .process__card h3 {
        font-size: 22px;
    }

    .process__card p {
        font-size: 18px;
    }

    .site-header {
        grid-template-columns: 278px 1fr auto;
        gap: 22px;
    }

    .site-header__logo {
        width: 224px;
    }

    .site-header__nav {
        gap: 22px;
        padding-left: 22px;
        font-size: 17px;
    }

    .site-header__button {
        min-height: 58px;
        padding: 0 18px;
        font-size: 17px;
    }

    .hero__inner {
        padding-top: 68px;
    }

    .hero__title {
        font-size: 76px;
    }

    .hero__description {
        font-size: 34px;
    }

    .hero__button {
        min-width: 260px;
        min-height: 64px;
        font-size: 21px;
    }

    .hero__benefit {
        font-size: 26px;
    }

    .about__inner {
        padding: 0 38px 0 56px;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 35px;
    }

    .about__eyebrow {
        margin-bottom: 44px;
    }

    .about__title {
        font-size: 50px;
    }

    .about__text {
        max-width: 520px;
        font-size: 22px;
    }

    .about__stat {
        min-height: 246px;
        padding: 28px 14px 24px;
    }

    .about__stat > img {
        width: 48px;
        height: 48px;
    }

    .about__stat strong {
        margin-top: 29px;
        font-size: 46px;
    }

    .about__stat small {
        font-size: 27px;
    }

    .about__stat span {
        font-size: 20px;
    }

    .services__inner {
        padding: 0 56px;
    }

    .services__title {
        font-size: 50px;
    }

    .services__grid {
        gap: 20px;
    }

    .services__card {
        height: 284px;
    }

    .services__card-content {
        height: 100%;
    }

    .services__card-content {
        padding: 146px 18px 18px;
        grid-template-columns: 74px minmax(0, 1fr);
        gap: 16px;
    }

    .services__icon {
        width: 74px;
        height: 74px;
    }

    .services__icon img {
        width: 50px;
        height: 50px;
    }

    .services__card h3 {
        font-size: 21px;
    }

    .services__card p {
        font-size: 16px;
    }

    .advantages__inner {
        padding: 0 38px;
    }

    .advantages__title {
        font-size: 50px;
    }

    .advantages__description {
        font-size: 24px;
    }

    .advantages__card {
        height: 252px;
        min-height: 0;
        padding: 32px 22px 22px;
    }

    .advantages__card > img {
        width: 66px;
        height: 66px;
    }

    .advantages__card h3 {
        margin-top: 26px;
        font-size: 23px;
    }

    .advantages__card p {
        font-size: 20px;
    }
}

@media (max-width: 1320px) {
    .site-header {
        grid-template-columns: auto 1fr;
    }

    .site-header__nav {
        display: none;
    }

    .site-header__button {
        justify-self: end;
    }
}

@media (max-width: 1120px) {
    .process__inner,
    .contacts__inner {
        padding: 0 42px;
    }

    .process__heading,
    .contacts__content {
        max-width: 720px;
    }

    .process__title,
    .contacts__title {
        font-size: 46px;
    }

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

    .contacts__inner {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .contacts__panel {
        max-width: 520px;
    }

    .site-header {
        grid-template-columns: auto 1fr;
    }

    .site-header__nav {
        display: none;
    }

    .site-header__button {
        justify-self: end;
    }

    .hero__inner {
        height: calc(100svh - var(--header-height));
        padding: 58px 42px 64px;
    }

    .hero__title {
        font-size: 68px;
    }

    .hero__description {
        font-size: 29px;
    }

    .hero__benefits {
        width: 100%;
        margin-top: 78px;
    }

    .hero__benefit {
        padding-right: 24px;
        gap: 18px;
        font-size: 21px;
    }

    .hero__benefit + .hero__benefit {
        padding-left: 24px;
    }

    .hero__benefit img {
        width: 70px;
        height: 70px;
    }

    .about__inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .about__content {
        max-width: 720px;
        padding-top: 0;
    }

    .about__visual {
        padding-top: 0;
    }

    .about__eyebrow {
        margin-bottom: 30px;
    }

    .about__title {
        font-size: 46px;
        font-weight: 700;
    }

    .about__title span {
        transform: none;
    }

    .about__accent {
        margin: 32px 0 30px;
    }

    .about__text {
        max-width: 680px;
        font-size: 22px;
    }

    .about__stats {
        gap: 12px;
    }

    .about__stat {
        min-height: 220px;
    }

    .about__stat strong {
        margin-top: 24px;
    }

    .services__inner {
        padding: 0 42px;
    }

    .services__heading {
        max-width: 720px;
    }

    .services__title {
        font-size: 46px;
    }

    .services__accent {
        margin-bottom: 30px;
    }

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

    .services__card {
        height: 286px;
    }

    .services__card-content {
        height: 100%;
    }

    .services__button {
        min-width: 360px;
        min-height: 70px;
        font-size: 22px;
    }

    .advantages__inner {
        padding: 0 42px;
    }

    .advantages__heading {
        max-width: 680px;
    }

    .advantages__title {
        font-size: 46px;
    }

    .advantages__description {
        font-size: 22px;
    }

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

    .advantages__card {
        height: 238px;
        min-height: 0;
    }
}

@media (max-width: 1320px) {
    .site-header__nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: grid;
        gap: 0;
        padding: 8px 30px 16px;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(1, 5, 8, 0.94);
        box-shadow: 0 24px 42px rgba(0, 0, 0, 0.34);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition:
            opacity 0.24s ease,
            visibility 0.24s ease,
            transform 0.24s ease;
    }

    .site-header.is-menu-open .site-header__nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-header__nav a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 18px;
        white-space: normal;
    }
}

@media (min-width: 761px) and (max-height: 860px) {
    :root {
        --header-height: 88px;
    }

    .site-header {
        min-height: 88px;
        padding-top: 16px;
        padding-bottom: 14px;
    }

    .site-header__logo {
        width: 210px;
    }

    .site-header__button {
        min-height: 52px;
    }

    .hero__inner {
        height: calc(100svh - var(--header-height));
        padding-top: 38px;
        padding-bottom: 38px;
    }

    .hero__title {
        font-size: 62px;
        line-height: 1.1;
    }

    .hero__description {
        margin-top: 26px;
        font-size: 28px;
        line-height: 1.32;
    }

    .hero__actions {
        margin-top: 32px;
    }

    .hero__button {
        min-height: 58px;
    }

    .hero__benefits {
        margin-top: 52px;
    }

    .hero__benefit {
        min-height: 82px;
        font-size: 23px;
    }

    .hero__benefit img {
        width: 66px;
        height: 66px;
    }
}

@media (max-width: 760px) {
    .process,
    .contacts {
        padding: 80px 0;
    }

    .process__inner,
    .contacts__inner {
        padding: 0 28px;
    }

    .process__eyebrow,
    .contacts__eyebrow {
        margin-bottom: 24px;
        font-size: 16px;
    }

    .process__title,
    .contacts__title {
        font-size: 34px;
        line-height: 1.12;
    }

    .process__title br,
    .contacts__title br {
        display: none;
    }

    .contacts__description {
        margin-top: 20px;
        font-size: 20px;
        line-height: 1.36;
    }

    .process__description {
        margin: 0;
        font-size: 20px;
        line-height: 1.36;
    }

    .process__accent {
        margin: 28px 0 28px;
    }

    .process__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .process__card {
        min-height: auto;
        padding: 26px 20px 22px;
    }

    .process__card span {
        font-size: 36px;
    }

    .process__card h3 {
        margin-top: 24px;
        font-size: 22px;
    }

    .process__card p {
        font-size: 18px;
    }

    .contacts__inner {
        gap: 30px;
    }

    .contacts__panel {
        max-width: none;
        padding: 26px 20px;
    }

    .contacts__item a,
    .contacts__item p {
        font-size: 22px;
    }

    .contacts__button {
        width: 100%;
        min-height: 60px;
        padding: 0 18px;
        font-size: 18px;
    }

    :root {
        --header-height: 86px;
    }

    .hero {
        height: auto;
        min-height: auto;
    }

    .hero__background {
        background-position: 68% center;
        transform: none;
    }

    .hero::before {
        background:
            linear-gradient(
                180deg,
                rgba(1, 5, 9, 0.9) 0%,
                rgba(1, 5, 9, 0.76) 34%,
                rgba(1, 5, 9, 0.82) 58%,
                rgba(1, 5, 9, 0.98) 100%
            ),
            linear-gradient(90deg, rgba(1, 5, 9, 0.72), rgba(1, 5, 9, 0.14));
    }

    .site-header {
        min-height: 86px;
        padding: 14px 68px 14px 16px;
        display: block;
        gap: 8px;
        border-bottom-color: rgba(255, 255, 255, 0.12);
        background: rgba(1, 5, 8, 0.82);
    }

    .site-header__logo {
        position: absolute;
        top: 50%;
        left: 16px;
        width: clamp(92px, 29vw, 126px);
        transform: translateY(-50%);
    }

    .site-header__nav {
        order: 4;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: grid;
        gap: 0;
        padding: 8px 16px 16px;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(1, 5, 8, 0.94);
        box-shadow: 0 24px 42px rgba(0, 0, 0, 0.34);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition:
            opacity 0.24s ease,
            visibility 0.24s ease,
            transform 0.24s ease;
    }

    .site-header.is-menu-open .site-header__nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-header__nav a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 18px;
        white-space: normal;
    }

    .site-header__button {
        position: absolute;
        top: 50%;
        right: 68px;
        width: auto;
        min-width: 0;
        width: min(34vw, 146px);
        min-height: 46px;
        padding: 0 12px;
        gap: 8px;
        justify-self: end;
        border-radius: 11px;
        font-size: 14px;
        line-height: 1.08;
        white-space: normal;
        transform: translateY(-50%);
    }

    .site-header__button:hover {
        transform: translateY(-50%);
    }

    .site-header__button-icon {
        width: 22px;
        height: 22px;
    }

    .site-header__menu-toggle {
        right: 16px;
    }

    .hero__inner {
        height: auto;
        min-height: calc(100svh - var(--header-height));
        padding: 84px 28px 46px;
    }

    .hero__content {
        width: 100%;
    }

    .hero__title {
        font-size: 38px;
        line-height: 1.1;
        overflow-wrap: anywhere;
    }

    .hero__description {
        margin-top: 26px;
        font-size: 22px;
        line-height: 1.36;
    }

    .hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 34px;
    }

    .hero__button {
        width: min(100%, 320px);
        min-width: 0;
        min-height: 56px;
        padding: 0 16px;
        gap: 12px;
        font-size: 17px;
        line-height: 1.15;
        white-space: normal;
    }

    .hero__chat-icon,
    .hero__play-icon {
        width: 26px;
        height: 26px;
    }

    .hero__benefits {
        margin-top: 72px;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero__benefit {
        min-height: auto;
        padding: 0;
        gap: 18px;
        font-size: 22px;
    }

    .hero__benefit + .hero__benefit {
        padding-left: 0;
        border-left: 0;
    }

    .hero__benefit img {
        width: 62px;
        height: 62px;
    }

    .consultation-modal {
        align-items: end;
        padding: 10px;
    }

    .consultation-modal__dialog {
        width: 100%;
        max-height: calc(100svh - 20px);
        padding: 30px 20px 22px;
        border-radius: 16px;
    }

    .consultation-modal__heading {
        gap: 14px;
        padding-right: 38px;
    }

    .consultation-modal__chat-icon {
        width: 42px;
        height: 42px;
    }

    .consultation-modal__title {
        font-size: 30px;
    }

    .consultation-modal__description {
        font-size: 17px;
    }

    .about {
        padding: 80px 0;
    }

    .about::before {
        left: -470px;
        bottom: -330px;
        opacity: 0.2;
    }

    .about__inner {
        padding: 0 28px;
        gap: 34px;
    }

    .about__eyebrow {
        margin-bottom: 24px;
        font-size: 16px;
    }

    .about__title {
        font-size: 34px;
        line-height: 1.14;
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .about__title span {
        display: inline;
        width: auto;
        max-width: 100%;
        transform: none;
        white-space: normal;
    }

    .about__title span + span::before {
        content: " ";
    }

    .about__accent {
        width: 74px;
        height: 4px;
        margin: 28px 0;
    }

    .about__text {
        max-width: 100%;
        font-size: 19px;
        line-height: 1.43;
        overflow-wrap: anywhere;
    }

    .about__text p + p {
        margin-top: 20px;
    }

    .about__image {
        border-radius: 16px;
    }

    .about__stats {
        margin-top: 14px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .about__stat {
        min-height: 190px;
        padding: 24px 12px 22px;
        border-radius: 14px;
    }

    .about__stat > img {
        width: 46px;
        height: 46px;
    }

    .about__stat strong {
        margin-top: 20px;
        font-size: 36px;
    }

    .about__stat small {
        font-size: 22px;
    }

    .about__rating-star {
        width: 24px;
        height: 24px;
        margin-left: 3px;
    }

    .about__stat span {
        margin-top: 12px;
        font-size: 17px;
    }

    .services {
        padding: 80px 0;
    }

    .services::before {
        background-size: 100% 100%, 100% 100%, 92px 92px, 92px 92px;
    }

    .services__inner {
        padding: 0 28px;
    }

    .services__eyebrow {
        margin-bottom: 24px;
        font-size: 16px;
    }

    .services__title {
        font-size: 34px;
        line-height: 1.14;
        overflow-wrap: anywhere;
    }

    .services__accent {
        width: 74px;
        height: 4px;
        margin: 28px 0;
    }

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

    .services__card {
        height: 252px;
        border-radius: 16px;
    }

    .services__card-content {
        height: 100%;
        padding: 116px 16px 16px;
        grid-template-columns: 66px minmax(0, 1fr);
        gap: 14px;
    }

    .services__icon {
        width: 66px;
        height: 66px;
        border-radius: 12px;
    }

    .services__icon img {
        width: 46px;
        height: 46px;
    }

    .services__card h3 {
        font-size: 21px;
        line-height: 1.14;
    }

    .services__card p {
        margin-top: 9px;
        font-size: 16px;
        line-height: 1.3;
    }

    .services__button {
        width: 100%;
        min-width: 0;
        min-height: 62px;
        margin-top: 20px;
        padding: 0 18px;
        gap: 13px;
        font-size: 19px;
    }

    .services__button-icon {
        width: 30px;
        height: 30px;
    }

    .advantages {
        padding: 80px 0;
    }

    .advantages__background {
        background-position: 64% top;
    }

    .advantages::before {
        background:
            linear-gradient(
                180deg,
                rgba(2, 4, 7, 0.84) 0%,
                rgba(2, 4, 7, 0.84) 28%,
                rgba(2, 4, 7, 0.94) 58%,
                rgba(2, 4, 7, 0.98) 100%
            ),
            linear-gradient(90deg, rgba(2, 4, 7, 0.82), rgba(2, 4, 7, 0.42));
    }

    .advantages__inner {
        padding: 0 28px;
    }

    .advantages__eyebrow {
        margin-bottom: 24px;
        font-size: 16px;
    }

    .advantages__title {
        font-size: 34px;
        line-height: 1.14;
        overflow-wrap: anywhere;
    }

    .advantages__description {
        margin: 0;
        font-size: 19px;
        line-height: 1.43;
    }

    .advantages__description br {
        display: none;
    }

    .advantages__accent {
        width: 64px;
        height: 4px;
        margin: 28px 0;
    }

    .advantages__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .advantages__card {
        height: auto;
        min-height: 212px;
        padding: 26px 18px 20px;
        border-radius: 14px;
    }

    .advantages__card > img {
        width: 58px;
        height: 58px;
    }

    .advantages__card h3 {
        margin-top: 20px;
        font-size: 22px;
    }

    .advantages__card p {
        margin-top: 12px;
        font-size: 18px;
        line-height: 1.32;
    }

    .advantages__card > span {
        width: 44px;
        height: 4px;
    }
}

@media (max-width: 390px) {
    .process__inner,
    .contacts__inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .process__title,
    .contacts__title {
        font-size: 30px;
    }

    .process__description,
    .contacts__description {
        font-size: 18px;
    }

    .process__card h3 {
        font-size: 20px;
    }

    .process__card p {
        font-size: 17px;
    }

    .contacts__item a,
    .contacts__item p {
        font-size: 20px;
    }

    .site-header {
        padding-left: 12px;
        padding-right: 60px;
        gap: 6px;
    }

    .site-header__logo {
        left: 12px;
        width: clamp(90px, 29vw, 112px);
    }

    .site-header__button {
        right: 60px;
        width: min(34vw, 126px);
        min-height: 44px;
        padding: 0 8px;
        gap: 6px;
        font-size: 13px;
    }

    .site-header__button-icon {
        width: 20px;
        height: 20px;
    }

    .site-header__menu-toggle {
        right: 12px;
        width: 42px;
        height: 42px;
    }

    .hero__inner {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 74px;
    }

    .hero__title {
        font-size: 34px;
    }

    .hero__description {
        font-size: 20px;
    }

    .hero__button {
        font-size: 16px;
    }

    .about__inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about__title {
        font-size: 30px;
    }

    .about__text {
        font-size: 18px;
    }

    .about__stats {
        grid-template-columns: 1fr;
    }

    .about__stat {
        min-height: 168px;
    }

    .services__inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .services__title {
        font-size: 30px;
    }

    .services__card {
        height: 248px;
    }

    .services__card-content {
        height: 100%;
    }

    .services__card-content {
        padding: 112px 14px 15px;
        grid-template-columns: 62px minmax(0, 1fr);
        gap: 12px;
    }

    .services__icon {
        width: 62px;
        height: 62px;
    }

    .services__icon img {
        width: 42px;
        height: 42px;
    }

    .services__card h3 {
        font-size: 20px;
    }

    .services__card p {
        font-size: 16px;
    }

    .advantages__inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .advantages__title {
        font-size: 30px;
    }

    .advantages__description {
        font-size: 18px;
    }

    .advantages__card {
        min-height: 198px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .advantages__card h3 {
        font-size: 20px;
    }

    .advantages__card p {
        font-size: 17px;
    }
}

@media (max-width: 560px) {
    .about__title {
        font-size: 30px;
        line-height: 1.16;
    }

    .about__text {
        font-size: 18px;
    }

    .about__stats {
        grid-template-columns: 1fr;
    }

    .about__stat {
        min-height: 168px;
    }

    .services__title {
        font-size: 30px;
        line-height: 1.16;
    }

    .services__card h3 {
        font-size: 20px;
    }

    .services__card p {
        font-size: 16px;
    }

    .advantages__title {
        font-size: 30px;
        line-height: 1.16;
    }

    .advantages__card h3 {
        font-size: 20px;
    }

    .advantages__card p {
        font-size: 17px;
    }
}

@media (max-width: 1400px) {
    .portfolio__inner {
        padding: 0 56px;
    }

    .portfolio__title {
        font-size: 50px;
    }

    .portfolio__description {
        font-size: 23px;
    }

    .portfolio__tab {
        min-width: 136px;
        min-height: 52px;
        padding: 0 22px;
        font-size: 17px;
    }

    .portfolio__card {
        min-height: 246px;
    }
}

@media (max-width: 1120px) {
    .portfolio__inner {
        padding: 0 42px;
    }

    .portfolio__heading {
        max-width: 760px;
    }

    .portfolio__title {
        font-size: 46px;
    }

    .portfolio__description {
        font-size: 21px;
    }

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

    .portfolio__card {
        min-height: 252px;
    }
}

@media (max-width: 760px) {
    .portfolio {
        padding: 80px 0;
    }

    .portfolio__background {
        background-position: 58% top;
    }

    .portfolio::before {
        background:
            linear-gradient(
                180deg,
                rgba(2, 4, 7, 0.92) 0%,
                rgba(2, 4, 7, 0.88) 28%,
                rgba(2, 4, 7, 0.96) 100%
            );
    }

    .portfolio__inner {
        padding: 0 28px;
    }

    .portfolio__eyebrow {
        margin-bottom: 24px;
        font-size: 16px;
    }

    .portfolio__title {
        font-size: 34px;
        line-height: 1.12;
    }

    .portfolio__title br,
    .portfolio__description br {
        display: none;
    }

    .portfolio__description {
        margin: 0;
        font-size: 20px;
        line-height: 1.36;
    }

    .portfolio__accent {
        margin: 28px 0 28px;
    }

    .portfolio__tabs {
        margin: 20px 0 24px;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .portfolio__tab {
        width: 100%;
        min-width: auto;
        min-height: 50px;
        padding: 0 20px;
        border-radius: 15px;
        font-size: 16px;
    }

    .portfolio__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .portfolio__card {
        min-height: 236px;
        aspect-ratio: 1.25 / 1;
        border-radius: 14px;
    }

    .portfolio__card-content {
        left: 18px;
        right: 18px;
        bottom: 16px;
        gap: 14px;
    }

    .portfolio__card h3 {
        font-size: 20px;
    }

    .portfolio__card p {
        font-size: 16px;
    }

    .portfolio__card-link {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 390px) {
    .portfolio__inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .portfolio__title {
        font-size: 30px;
    }

    .portfolio__description {
        font-size: 18px;
    }

    .portfolio__card {
        min-height: 218px;
    }

    .portfolio__card-content {
        left: 16px;
        right: 16px;
    }
}

@media (max-width: 560px) {
    .about__title,
    .services__title,
    .advantages__title,
    .portfolio__title,
    .process__title,
    .contacts__title {
        font-size: 30px;
        font-weight: 700;
        line-height: 1.16;
    }
}

@media (max-width: 1400px) {
    .process__layout {
        grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1fr);
        gap: 42px;
    }

    .process__visual,
    .process__visual img {
        min-height: 500px;
    }

    .process__step {
        grid-template-columns: 74px minmax(0, 1fr);
        gap: 28px;
    }

    .process__steps::before {
        left: 36px;
    }

    .process__step:not(:last-child)::after {
        left: 32px;
    }

    .process__number {
        width: 74px;
        height: 74px;
        font-size: 43px;
    }

    .process__panel {
        min-height: 108px;
        padding: 22px 26px;
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 24px;
    }

    .process__panel img {
        width: 58px;
        height: 58px;
    }

    .process__panel h3 {
        font-size: 24px;
    }

    .process__panel p {
        font-size: 19px;
    }
}

@media (max-width: 1120px) {
    .process__layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .process__intro {
        max-width: 760px;
    }

    .process__visual,
    .process__visual img {
        min-height: 420px;
    }

    .process__steps {
        width: min(100%, 760px);
    }
}

@media (max-width: 760px) {
    .process__layout {
        gap: 34px;
    }

    .process__visual,
    .process__visual img {
        min-height: 330px;
    }

    .process__steps {
        gap: 20px;
    }

    .process__steps::before {
        top: 28px;
        bottom: 28px;
        left: 29px;
    }

    .process__step {
        grid-template-columns: 60px minmax(0, 1fr);
        gap: 16px;
    }

    .process__step:not(:last-child)::after {
        left: 25px;
        bottom: -14px;
    }

    .process__number {
        width: 60px;
        height: 60px;
        border-width: 2px;
        font-size: 34px;
    }

    .process__panel {
        min-height: auto;
        padding: 20px;
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 16px;
        border-radius: 14px;
    }

    .process__panel:hover {
        transform: translateY(-4px);
    }

    .process__panel img {
        width: 52px;
        height: 52px;
    }

    .process__panel h3 {
        font-size: 21px;
    }

    .process__panel p {
        font-size: 18px;
        line-height: 1.34;
    }
}

@media (max-width: 560px) {
    .process__visual,
    .process__visual img {
        min-height: 270px;
    }

    .process__step {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 12px;
    }

    .process__steps::before {
        left: 25px;
    }

    .process__step:not(:last-child)::after {
        left: 21px;
    }

    .process__number {
        width: 52px;
        height: 52px;
        font-size: 30px;
    }

    .process__panel {
        padding: 18px 16px;
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 13px;
    }

    .process__panel img {
        width: 44px;
        height: 44px;
    }

    .process__panel h3 {
        font-size: 20px;
    }

    .process__panel p {
        margin-top: 7px;
        font-size: 16px;
    }
}

@media (max-width: 390px) {
    .process__visual,
    .process__visual img {
        min-height: 235px;
    }

    .process__step {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 10px;
    }

    .process__steps::before {
        left: 22px;
    }

    .process__step:not(:last-child)::after {
        left: 18px;
    }

    .process__number {
        width: 46px;
        height: 46px;
        font-size: 26px;
    }

    .process__panel {
        padding: 16px 14px;
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 11px;
    }

    .process__panel img {
        width: 38px;
        height: 38px;
    }

    .process__panel h3 {
        font-size: 18px;
    }

    .process__panel p {
        font-size: 15px;
    }
}

@media (max-width: 1400px) {
    .workscope__inner {
        padding: 0 56px;
    }

    .workscope__title {
        font-size: 50px;
    }

    .workscope__description {
        font-size: 22px;
    }

    .workscope__card {
        min-height: 198px;
        padding: 22px 18px 20px;
    }

    .workscope__icon {
        width: 60px;
        height: 60px;
    }

    .workscope__card h3 {
        font-size: 20px;
    }

    .workscope__card p {
        font-size: 17px;
    }
}

@media (max-width: 1120px) {
    .workscope::before {
        background-position: 58% top;
    }

    .workscope__heading {
        max-width: 720px;
    }

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

@media (max-width: 900px) {
    .workscope__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .workscope {
        padding: 80px 0;
    }

    .workscope::before {
        height: 560px;
        background-image:
            linear-gradient(
                90deg,
                rgba(2, 4, 7, 0.96) 0%,
                rgba(2, 4, 7, 0.78) 48%,
                rgba(2, 4, 7, 0.38) 100%
            ),
            linear-gradient(
                180deg,
                rgba(2, 4, 7, 0.28) 0%,
                rgba(2, 4, 7, 0.68) 42%,
                #020407 86%,
                #020407 100%
            ),
            url("../img/bl 7/bl 7img.webp");
        background-position: 62% top;
        background-size: cover;
    }

    .workscope__inner {
        padding: 0 28px;
    }

    .workscope__eyebrow {
        margin-bottom: 24px;
        font-size: 16px;
    }

    .workscope__title {
        font-size: 34px;
        line-height: 1.12;
    }

    .workscope__title br,
    .workscope__description br {
        display: none;
    }

    .workscope__accent {
        margin: 28px 0 24px;
    }

    .workscope__description {
        font-size: 20px;
        line-height: 1.36;
    }

    .workscope__grid {
        margin-top: 20px;
        gap: 16px;
    }

    .workscope__card {
        min-height: 190px;
        border-radius: 13px;
    }
}

@media (max-width: 560px) {
    .workscope__title {
        font-size: 30px;
        font-weight: 700;
        line-height: 1.16;
    }

    .workscope__grid {
        grid-template-columns: 1fr;
    }

    .workscope__card {
        min-height: auto;
        padding: 24px 18px 22px;
    }

    .workscope__icon {
        width: 58px;
        height: 58px;
    }

    .workscope__card p {
        max-width: 310px;
    }
}

@media (max-width: 390px) {
    .workscope__inner {
        padding: 0 22px;
    }

    .workscope__title {
        font-size: 28px;
    }

    .workscope__description {
        font-size: 18px;
    }

    .workscope__card h3 {
        font-size: 19px;
    }

    .workscope__card p {
        font-size: 16px;
    }
}

@media (max-width: 1400px) {
    .site-footer__top {
        grid-template-columns: minmax(260px, 1fr) minmax(270px, 1fr) minmax(250px, 0.9fr) minmax(280px, 0.86fr);
        gap: 28px;
    }

    .site-footer__column {
        padding-left: 34px;
    }

    .site-footer__brand p {
        font-size: 21px;
    }

    .site-footer__column h2 {
        font-size: 26px;
    }

    .site-footer__link,
    .site-footer__schedule,
    .site-footer__social {
        font-size: 20px;
    }

    .guarantees__inner {
        padding: 0 56px;
    }

    .guarantees__hero {
        grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
        min-height: 430px;
    }

    .guarantees__title {
        font-size: 52px;
    }

    .guarantees__description {
        font-size: 22px;
    }

    .guarantees__card {
        min-height: 330px;
        padding: 34px 22px 28px;
    }

    .guarantees__card h3 {
        font-size: 24px;
    }

    .guarantees__card p {
        font-size: 19px;
    }
}

@media (max-width: 1120px) {
    .site-footer__inner {
        padding: 0 42px;
    }

    .sitemap-page__grid {
        grid-template-columns: 1fr;
    }

    .sitemap-page__group {
        min-height: auto;
    }

    .site-footer__top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 44px 36px;
    }

    .site-footer__column--hours {
        padding-left: 0;
    }

    .site-footer__column--hours::before {
        display: none;
    }

    .site-footer__column h2 {
        margin: 8px 0 32px;
    }

    .site-footer__brand p {
        margin-top: 34px;
    }

    .site-footer__list {
        gap: 30px;
    }

    .site-footer__bottom {
        margin-top: 58px;
        padding-top: 34px;
    }

    .guarantees::before {
        background-position: 60% top;
    }

    .guarantees__hero {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .guarantees__content {
        max-width: 720px;
    }

    .guarantees__visual {
        width: min(100%, 520px);
        min-height: auto;
        justify-self: center;
        padding-top: 4px;
    }

    .guarantees__grid {
        margin-top: 20px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .privacy-page {
        padding: calc(var(--header-height) + 80px) 0 80px;
    }

    .privacy-page__inner {
        padding: 0 28px;
    }

    .privacy-page__eyebrow {
        margin-bottom: 24px;
        font-size: 16px;
    }

    .privacy-page__title {
        font-size: 34px;
        line-height: 1.12;
    }

    .privacy-page__accent {
        height: 4px;
        margin: 28px 0 24px;
    }

    .privacy-page__back {
        min-height: 50px;
        margin-bottom: 24px;
        padding: 0 20px;
        font-size: 18px;
    }

    .privacy-page__content {
        padding: 28px 20px;
        border-radius: 14px;
    }

    .privacy-page__content p {
        font-size: 18px;
        line-height: 1.42;
    }

    .privacy-page__content h2 {
        font-size: 23px;
    }

    .privacy-page__content p + h2 {
        margin-top: 28px;
    }

    .sitemap-page__grid {
        gap: 18px;
    }

    .sitemap-page__group {
        padding: 28px 20px;
        border-radius: 14px;
    }

    .sitemap-page__group h2 {
        font-size: 23px;
    }

    .sitemap-page__group a {
        min-height: 46px;
        padding: 12px 14px;
        font-size: 18px;
    }

    .thanks-page__panel {
        padding: 34px 22px;
        border-radius: 14px;
    }

    .thanks-page__check {
        width: 62px;
        height: 62px;
        margin-bottom: 24px;
    }

    .thanks-page__check svg {
        width: 31px;
        height: 24px;
    }

    .thanks-page__text {
        font-size: 20px;
        line-height: 1.4;
    }

    .thanks-page__actions {
        display: grid;
        gap: 14px;
    }

    .thanks-page__button,
    .thanks-page__link {
        width: 100%;
    }

    .site-footer {
        padding: 80px 0;
    }

    .site-footer__inner {
        padding: 0 28px;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .site-footer__brand,
    .site-footer__column {
        padding: 0 0 30px;
    }

    .site-footer__column {
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .site-footer__column::before {
        display: none;
    }

    .site-footer__logo {
        width: min(100%, 250px);
    }

    .site-footer__brand p {
        margin-top: 26px;
        font-size: 19px;
        line-height: 1.52;
    }

    .site-footer__column h2 {
        margin: 0 0 24px;
        font-size: 24px;
    }

    .site-footer__list,
    .site-footer__socials {
        gap: 22px;
    }

    .site-footer__link,
    .site-footer__schedule,
    .site-footer__social {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 18px;
        font-size: 18px;
        line-height: 1.44;
    }

    .site-footer__icon {
        width: 34px;
        height: 34px;
    }

    .site-footer__social {
        grid-template-columns: 52px minmax(0, 1fr);
    }

    .site-footer__social span {
        width: 52px;
        height: 52px;
    }

    .site-footer__social img {
        width: 28px;
        height: 28px;
    }

    .site-footer__bottom {
        margin-top: 22px;
        padding-top: 28px;
        display: grid;
        gap: 22px;
    }

    .site-footer__bottom p,
    .site-footer__nav a {
        font-size: 18px;
    }

    .site-footer__nav {
        flex-wrap: wrap;
        gap: 16px 22px;
    }

    .site-footer__nav a + a {
        padding-left: 22px;
    }

    .site-footer__nav a + a::before {
        height: 28px;
    }

    .guarantees {
        padding: 80px 0;
    }

    .guarantees::before {
        background-image:
            linear-gradient(
                90deg,
                rgba(2, 4, 7, 0.97) 0%,
                rgba(2, 4, 7, 0.8) 48%,
                rgba(2, 4, 7, 0.44) 100%
            ),
            linear-gradient(
                180deg,
                rgba(2, 4, 7, 0.18) 0%,
                rgba(2, 4, 7, 0.62) 46%,
                #020407 87%,
                #020407 100%
            ),
            url("../img/bl 8/bl 8 fon.webp");
        background-position: 64% top;
    }

    .guarantees__inner {
        padding: 0 28px;
    }

    .guarantees__eyebrow {
        margin-bottom: 24px;
        font-size: 16px;
    }

    .guarantees__title {
        font-size: 34px;
        line-height: 1.12;
    }

    .guarantees__description {
        margin: 0;
        font-size: 20px;
        line-height: 1.4;
    }

    .guarantees__accent {
        width: 64px;
        height: 4px;
        margin: 28px 0 24px;
    }

    .guarantees__visual {
        width: 100%;
    }

    .guarantees__shield {
        width: 158px;
    }

    .guarantees__badge {
        width: min(100%, 270px);
        min-height: 138px;
        padding: 22px 18px 18px;
    }

    .guarantees__badge strong {
        font-size: 42px;
    }

    .guarantees__badge span {
        font-size: 18px;
    }

    .guarantees__badge small {
        font-size: 17px;
    }

    .guarantees__grid {
        margin-top: 20px;
        gap: 16px;
    }

    .guarantees__card {
        min-height: 282px;
        padding: 28px 18px 24px;
        border-radius: 14px;
    }

    .guarantees__icon {
        width: 78px;
        height: 78px;
    }

    .guarantees__card-accent {
        margin-top: 18px;
    }

    .guarantees__card h3 {
        margin-top: 20px;
        font-size: 22px;
    }

    .guarantees__card p {
        margin-top: 14px;
        font-size: 18px;
        line-height: 1.34;
    }
}

@media (max-width: 560px) {
    .guarantees__title {
        font-size: 30px;
        font-weight: 700;
        line-height: 1.16;
    }

    .guarantees__grid {
        grid-template-columns: 1fr;
    }

    .guarantees__card {
        min-height: auto;
        padding: 26px 18px 24px;
    }
}

@media (max-width: 390px) {
    .privacy-page__inner {
        padding: 0 22px;
    }

    .privacy-page__title {
        font-size: 30px;
    }

    .privacy-page__content {
        padding: 24px 18px;
    }

    .privacy-page__content p {
        font-size: 16px;
    }

    .privacy-page__content h2 {
        font-size: 21px;
    }

    .site-footer__inner {
        padding: 0 22px;
    }

    .site-footer__logo {
        width: min(100%, 224px);
    }

    .site-footer__brand p {
        font-size: 18px;
    }

    .site-footer__link,
    .site-footer__schedule,
    .site-footer__social {
        font-size: 17px;
    }

    .site-footer__bottom p,
    .site-footer__nav a {
        font-size: 16px;
    }

    .site-footer__nav {
        display: grid;
        gap: 14px;
    }

    .site-footer__nav a + a {
        padding-left: 0;
    }

    .site-footer__nav a + a::before {
        display: none;
    }

    .guarantees__inner {
        padding: 0 22px;
    }

    .guarantees__title {
        font-size: 28px;
    }

    .guarantees__description {
        font-size: 18px;
    }

    .guarantees__shield {
        width: 145px;
    }

    .guarantees__badge strong {
        font-size: 36px;
    }

    .guarantees__badge span {
        font-size: 16px;
    }

    .guarantees__card h3 {
        font-size: 20px;
    }

    .guarantees__card p {
        font-size: 16px;
    }
}
