/* =========================================================
   ПРОФЕССИОНАЛЬНАЯ ДЕЗСЛУЖБА
   ЧИСТЫЙ ОСНОВНОЙ СТИЛЬ САЙТА
   ========================================================= */


/* =========================================================
   ПЕРЕМЕННЫЕ
   ========================================================= */

:root {
    --bg: #DCEBF1;
    --bg-light: #F3F8FA;
    --white: #FFFFFF;

    --text: #171717;
    --text-light: #5F686D;
    --text-muted: #879197;

    --orange: #F47B20;
    --orange-dark: #D96510;

    --border: #D2E0E5;

    --dark: #171717;
    --dark-soft: #222222;

    --shadow: 0 18px 50px rgba(38, 55, 63, 0.09);
    --shadow-hover: 0 25px 65px rgba(38, 55, 63, 0.15);

    --radius: 28px;
    --container: 1180px;
}


/* =========================================================
   СБРОС
   ========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    background: var(--bg);
    color: var(--text);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

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

button,
input,
textarea {
    font: inherit;
}

button {
    border: none;
}

.container {
    width: min(
        var(--container),
        calc(100% - 48px)
    );

    margin: 0 auto;
}


/* =========================================================
   ОСНОВНОЙ КОНТЕЙНЕР САЙТА
   ========================================================= */

.site-main {
    position: relative;
    isolation: isolate;
}

.site-main > section {
    position: relative;
    z-index: 2;
}


/* =========================================================
   КНОПКИ
   ========================================================= */

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 56px;
    padding: 0 28px;

    border: none;
    border-radius: 16px;

    background: #ffffff;
    color: var(--text);

    font-size: 14px;
    font-weight: 800;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button--orange {
    background: var(--orange);
    color: #ffffff;

    box-shadow:
        0 12px 30px rgba(244, 123, 32, 0.22);
}

.button--orange:hover {
    background: var(--orange-dark);

    box-shadow:
        0 17px 38px rgba(244, 123, 32, 0.28);
}

.button--light {
    background: #ffffff;
    color: var(--text);

    border: 1px solid var(--border);
}

.button--light:hover {
    box-shadow: var(--shadow);
}


/* =========================================================
   ОБЩИЕ ЗАГОЛОВКИ
   ========================================================= */

.section-heading {
    position: relative;
    z-index: 2;

    max-width: 820px;
    margin-bottom: 60px;
}

.section-heading__label {
    margin-bottom: 18px;

    color: var(--orange);

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.section-heading h2 {
    font-size: clamp(
        40px,
        5vw,
        66px
    );

    line-height: 0.98;
    letter-spacing: -0.045em;
    font-weight: 900;
}

.section-heading h2 span {
    display: block;
    color: var(--orange);
}

.section-heading p {
    max-width: 680px;
    margin-top: 24px;

    color: var(--text-light);

    font-size: 17px;
    line-height: 1.65;
}


/* =========================================================
   HEADER
   ========================================================= */

.header {
    position: relative;
    z-index: 50;

    background:
        rgba(255, 255, 255, 0.92);

    border-bottom:
        1px solid rgba(210, 224, 229, 0.9);

    backdrop-filter: blur(14px);
}

.header__inner {
    min-height: 106px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 28px;
}

.logo {
    display: flex;
    align-items: center;

    gap: 2px;

    flex-shrink: 0;

    color: #171717;
    text-decoration: none;
}

.logo img {
    display: block;

    width: 106px;
    height: 106px;

    object-fit: contain;
}

.logo__text {
    display: flex;
    flex-direction: column;

    gap: 5px;

    margin-left: -18px;

    color: #171717;

    font-size: 13px;
    line-height: 1.1;
    font-weight: 900;

    letter-spacing: 0.02em;
    white-space: nowrap;
}

.logo__text span {
    display: block;
}

.nav {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 27px;
}

.nav a {
    position: relative;

    color: #30383c;

    font-size: 13px;
    font-weight: 800;

    white-space: nowrap;

    transition:
        color 0.25s ease;
}

.nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: var(--orange);

    transition:
        width 0.25s ease;
}

.nav a:hover {
    color: var(--orange);
}

.nav a:hover::after {
    width: 100%;
}

.header__contact {
    display: flex;

    align-items: center;

    gap: 17px;

    flex-shrink: 0;
}

.phone {
    color: var(--text);

    font-size: 14px;
    font-weight: 900;

    white-space: nowrap;
}

.consultant-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 47px;
    padding: 0 19px;

    border-radius: 14px;

    background: var(--orange);
    color: #ffffff;

    font-size: 12px;
    font-weight: 900;

    white-space: nowrap;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.consultant-button:hover {
    background: var(--orange-dark);

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(244, 123, 32, 0.2);
}


/* =========================================================
   ГЛОБАЛЬНАЯ ТЕКСТУРА НАСЕКОМЫХ
   ========================================================= */

.site-main > .site-texture {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    pointer-events: none;

    z-index: 5;
}

.site-texture img {
    position: absolute;

    display: block;

    height: auto;

    object-fit: contain;

    opacity: 0.14;

    filter:
        saturate(0.65)
        contrast(0.85);

    user-select: none;
    pointer-events: none;

    will-change: transform;

    transform-origin: center center;
}

.site-main > section > .container,
.site-main > section > .service-detail,
.site-main > section .section-heading,
.site-main > section .services__grid,
.site-main > section .service-details__action {
    position: relative;
    z-index: 6;
}


/* =========================================================
   НАСЕКОМЫЕ — ГЛОБАЛЬНАЯ ТЕКСТУРА
   14 объектов по всей странице
   ========================================================= */

.site-texture img:nth-child(1) {
    top: 3%;
    left: 8%;
    width: 72px;
    animation: siteBugFloat1 13s ease-in-out infinite;
}

.site-texture img:nth-child(2) {
    top: 10%;
    right: 18%;
    width: 88px;
    animation: siteBugFloat2 17s ease-in-out infinite;
}

.site-texture img:nth-child(3) {
    top: 18%;
    left: 3%;
    width: 58px;
    animation: siteBugFloat3 15s ease-in-out infinite;
}

.site-texture img:nth-child(4) {
    top: 25%;
    right: 7%;
    width: 95px;
    animation: siteBugFloat4 19s ease-in-out infinite;
}

.site-texture img:nth-child(5) {
    top: 33%;
    left: 17%;
    width: 64px;
    animation: siteBugFloat5 16s ease-in-out infinite;
}

.site-texture img:nth-child(6) {
    top: 41%;
    right: 22%;
    width: 72px;
    animation: siteBugFloat6 20s ease-in-out infinite;
}

.site-texture img:nth-child(7) {
    top: 49%;
    left: 5%;
    width: 82px;
    animation: siteBugFloat7 18s ease-in-out infinite;
}

.site-texture img:nth-child(8) {
    top: 56%;
    right: 6%;
    width: 62px;
    animation: siteBugFloat8 14s ease-in-out infinite;
}

.site-texture img:nth-child(9) {
    top: 63%;
    left: 22%;
    width: 70px;
    animation: siteBugFloat9 21s ease-in-out infinite;
}

.site-texture img:nth-child(10) {
    top: 70%;
    right: 25%;
    width: 84px;
    animation: siteBugFloat10 17s ease-in-out infinite;
}

.site-texture img:nth-child(11) {
    top: 77%;
    left: 6%;
    width: 60px;
    animation: siteBugFloat11 15s ease-in-out infinite;
}

.site-texture img:nth-child(12) {
    top: 84%;
    right: 9%;
    width: 76px;
    animation: siteBugFloat12 22s ease-in-out infinite;
}

.site-texture img:nth-child(13) {
    top: 91%;
    left: 28%;
    width: 68px;
    animation: siteBugFloat13 18s ease-in-out infinite;
}

.site-texture img:nth-child(14) {
    top: 96%;
    right: 34%;
    width: 56px;
    animation: siteBugFloat14 16s ease-in-out infinite;
}


/* =========================================================
   НАСЕКОМЫЕ — АНИМАЦИИ
   ========================================================= */

@keyframes siteBugFloat1 {
    0%, 100% {
        transform: translate(0, 0) rotate(-14deg);
    }
    50% {
        transform: translate(28px, -18px) rotate(-5deg);
    }
}

@keyframes siteBugFloat2 {
    0%, 100% {
        transform: translate(0, 0) rotate(18deg);
    }
    50% {
        transform: translate(-25px, 20px) rotate(30deg);
    }
}

@keyframes siteBugFloat3 {
    0%, 100% {
        transform: translate(0, 0) rotate(-10deg);
    }
    50% {
        transform: translate(22px, 17px) rotate(3deg);
    }
}

@keyframes siteBugFloat4 {
    0%, 100% {
        transform: translate(0, 0) rotate(14deg);
    }
    50% {
        transform: translate(-30px, -19px) rotate(5deg);
    }
}

@keyframes siteBugFloat5 {
    0%, 100% {
        transform: translate(0, 0) rotate(-12deg);
    }
    50% {
        transform: translate(18px, -25px) rotate(-23deg);
    }
}

@keyframes siteBugFloat6 {
    0%, 100% {
        transform: translate(0, 0) rotate(12deg);
    }
    50% {
        transform: translate(-27px, 18px) rotate(23deg);
    }
}

@keyframes siteBugFloat7 {
    0%, 100% {
        transform: translate(0, 0) rotate(8deg);
    }
    50% {
        transform: translate(30px, 14px) rotate(17deg);
    }
}

@keyframes siteBugFloat8 {
    0%, 100% {
        transform: translate(0, 0) rotate(-18deg);
    }
    50% {
        transform: translate(-20px, -24px) rotate(-7deg);
    }
}

@keyframes siteBugFloat9 {
    0%, 100% {
        transform: translate(0, 0) rotate(16deg);
    }
    50% {
        transform: translate(23px, -20px) rotate(7deg);
    }
}

@keyframes siteBugFloat10 {
    0%, 100% {
        transform: translate(0, 0) rotate(-7deg);
    }
    50% {
        transform: translate(-28px, 22px) rotate(-19deg);
    }
}

@keyframes siteBugFloat11 {
    0%, 100% {
        transform: translate(0, 0) rotate(20deg);
    }
    50% {
        transform: translate(25px, -14px) rotate(8deg);
    }
}

@keyframes siteBugFloat12 {
    0%, 100% {
        transform: translate(0, 0) rotate(-15deg);
    }
    50% {
        transform: translate(-24px, 20px) rotate(-28deg);
    }
}

@keyframes siteBugFloat13 {
    0%, 100% {
        transform: translate(0, 0) rotate(10deg);
    }
    50% {
        transform: translate(20px, 25px) rotate(20deg);
    }
}

@keyframes siteBugFloat14 {
    0%, 100% {
        transform: translate(0, 0) rotate(-12deg);
    }
    50% {
        transform: translate(-22px, -18px) rotate(2deg);
    }
}


/* =========================================================
   HERO — ПЕРВЫЙ ЭКРАН
   ========================================================= */

.hero {
    position: relative;

    padding: 105px 0 90px;

    background-color: #c7dfe7;

    background-image:

        radial-gradient(
            circle at 88% 34%,
            rgba(255, 255, 255, 0.52),
            transparent 32%
        ),

        radial-gradient(
            circle at 8% 16%,
            rgba(255, 255, 255, 0.38),
            transparent 27%
        ),

        radial-gradient(
            ellipse at 52% 105%,
            rgba(255, 255, 255, 0.20),
            transparent 48%
        ),

        repeating-linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.045) 0,
            rgba(255, 255, 255, 0.045) 1px,
            transparent 1px,
            transparent 12px
        ),

        repeating-linear-gradient(
            45deg,
            rgba(23, 23, 23, 0.018) 0,
            rgba(23, 23, 23, 0.018) 1px,
            transparent 1px,
            transparent 18px
        );

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    top: -260px;
    left: -220px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(244, 123, 32, 0.055),
            rgba(244, 123, 32, 0.018) 48%,
            transparent 72%
        );

    pointer-events: none;

    z-index: 0;
}

.hero__inner {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(400px, 0.88fr);

    align-items: center;

    gap: 60px;

    z-index: 3;
}

.hero__content {
    min-width: 0;

    position: relative;

    top: 0;

    z-index: 4;
}

.hero__label {
    margin-bottom: 20px;

    color: var(--orange);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 0.22em;

    text-transform: uppercase;
}

.hero h1 {
    margin: 25px 0 0;

    font-size:
        clamp(
            52px,
            6vw,
            82px
        );

    line-height: 0.95;

    letter-spacing: -0.055em;

    font-weight: 900;
}

.hero h1 span {
    display: block;

    margin-top: 18px;

    color: var(--orange);
}

.hero__text {
    max-width: 640px;

    margin-top: 30px;

    color: var(--text-light);

    font-size: 16px;

    line-height: 1.65;
}

.hero__buttons {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 34px;
}

.hero__trust {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;

    margin-top: 50px;

    padding-top: 25px;

    border-top:
        1px solid var(--border);
}

.trust-item {
    display: flex;

    flex-direction: column;

    gap: 6px;
}

.trust-item strong {
    color: var(--orange);

    font-size: 11px;

    font-weight: 900;
}

.trust-item span {
    color: var(--text-light);

    font-size: 12px;

    font-weight: 800;

    line-height: 1.35;
}


/* =========================================================
   HERO — ПРАВАЯ ЧАСТЬ
   ========================================================= */

.hero__visual {
    position: relative;

    min-width: 0;

    height: 620px;

    left: -45px;

    z-index: 4;
}

.hero__image {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-end;

    justify-content: center;

    overflow: visible;

    border-radius: 0;

    box-shadow: none;

    z-index: 3;
}

.hero__image::after {
    display: none;
}

.hero__image img {
    display: block;

    width: auto;

    height: 100%;

    max-width: none;

    object-fit: contain;

    transition:
        transform 1.4s ease-out;
}

.hero__visual.visible .hero__image img {
    transform: scale(1.025);
}

.hero__badge {
    position: absolute;

    min-width: 180px;

    padding: 19px 23px;

    background: #ffffff;

    border-radius: 20px;

    box-shadow:
        0 20px 50px rgba(38, 55, 63, 0.15);

    z-index: 5;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.hero__badge--top {
    top: 95px;
    right: -18px;
}

.hero__badge--bottom {
    right: -18px;
    bottom: 27px;
}

.hero__badge:hover {
    transform: translateY(-4px);
    box-shadow:
        0 25px 58px rgba(38, 55, 63, 0.19);
}

.hero__badge span {
    display: block;

    margin-bottom: 4px;

    color: var(--orange);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}

.hero__badge strong {
    font-size: 16px;

    font-weight: 900;
}

.hero__side-note {
    position: absolute;

    top: 120px;

    right: -155px;

    width: 150px;

    display: flex;

    flex-direction: column;

    gap: 8px;

    z-index: 6;

    color: #171717;
}

.hero__side-note span {
    display: block;

    font-size: 11px;

    line-height: 1.3;

    font-weight: 500;

    letter-spacing: 0.03em;

    text-transform: uppercase;
}

.hero__side-note strong {
    display: block;

    font-size: 13px;

    line-height: 1.25;

    font-weight: 900;

    letter-spacing: 0.02em;
}


/* =========================================================
   БЫСТРЫЙ ВЫБОР
   ========================================================= */

.problem-selector {
    padding: 95px 0;

    background: var(--bg-light);
}

.problem-selector__inner {
    position: relative;
    z-index: 6;
}

.problem-selector__heading {
    max-width: 760px;

    margin-bottom: 40px;
}

.problem-selector__heading .section-heading__label {
    margin-bottom: 14px;
}

.problem-selector__heading h2 {
    font-size:
        clamp(
            38px,
            5vw,
            58px
        );

    line-height: 1;
    letter-spacing: -0.045em;

    font-weight: 900;
}

.problem-selector__heading p {
    max-width: 650px;

    margin-top: 18px;

    color: var(--text-light);

    font-size: 16px;

    line-height: 1.6;
}

.problem-selector__list {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}

.problem-selector__item {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 21px;

    background: #ffffff;

    border:
        1px solid var(--border);

    border-radius: 15px;

    color: var(--text);

    font-size: 13px;

    font-weight: 900;

    box-shadow:
        0 8px 25px rgba(38, 55, 63, 0.045);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.problem-selector__item:hover {
    transform: translateY(-4px);

    background: var(--orange);

    border-color: var(--orange);

    color: #ffffff;

    box-shadow:
        0 14px 30px rgba(244, 123, 32, 0.18);
}


/* =========================================================
   УСЛУГИ
   ========================================================= */

.services {
    padding: 130px 0;

    background: var(--bg);
}

.services__grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;

    margin-top: 60px;
}

.service-card {
    position: relative;

    min-height: 430px;

    padding: 0;

    overflow: hidden;

    border:
        1px solid rgba(23, 23, 23, 0.08);

    border-radius: 26px;

    background: #ffffff;

    box-shadow:
        0 12px 35px rgba(23, 23, 23, 0.06);

    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);

    border-color:
        rgba(244, 123, 32, 0.45);

    box-shadow:
        0 25px 60px rgba(23, 23, 23, 0.13);
}

.service-card__image {
    position: relative;

    width: 100%;

    height: 205px;

    overflow: hidden;
}

.service-card__image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.18),
            transparent 45%
        );

    opacity: 0.5;

    transition:
        opacity 0.4s ease;
}

.service-card:hover .service-card__image::after {
    opacity: 0.8;
}

.service-card__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s
        cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-card__image img {
    transform: scale(1.07);
}

.service-card__content {
    position: relative;

    padding: 25px 27px 28px;
}

.service-card__number {
    display: none;
}

.service-card h3 {
    margin-top: 14px;

    font-size: 23px;

    line-height: 1.08;

    letter-spacing: -0.025em;

    font-weight: 900;
}

.service-card p {
    margin-top: 12px;

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.55;
}

.service-card__link {
    display: inline-flex;

    align-items: center;

    margin-top: 18px;

    color: var(--text);

    font-size: 13px;

    font-weight: 900;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.service-card__link:hover {
    color: var(--orange);

    transform:
        translateX(5px);
}

.service-card--special {
    background: #181818;

    color: #ffffff;

    border-color: #181818;
}

.service-card--special p {
    color: #bdbdbd;
}

.service-card--special .service-card__link {
    color: #ffffff;
}

.service-card--special .service-card__link:hover {
    color: var(--orange);
}

.service-card--special:hover {
    border-color: var(--orange);
}

.service-card::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 4px;

    background: var(--orange);

    z-index: 3;

    transition:
        width 0.45s
        cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover::before {
    width: 100%;
}


/* =========================================================
   ПОДРОБНЫЕ УСЛУГИ
   ========================================================= */

.service-details {
    padding: 120px 0;

    background: var(--bg-light);
}

.service-details__list {
    display: flex;

    flex-direction: column;

    gap: 20px;
}

.service-detail {
    position: relative;
    z-index: 6;

    display: grid;

    grid-template-columns:
        minmax(0, 0.75fr)
        minmax(0, 1.25fr);

    gap: 55px;

    align-items: center;

    padding: 48px;

    background: #ffffff;

    border:
        1px solid var(--border);

    border-radius: 30px;

    box-shadow:
        0 12px 40px rgba(38, 55, 63, 0.055);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.service-detail:hover {
    transform: translateY(-5px);

    border-color:
        rgba(244, 123, 32, 0.25);

    box-shadow: var(--shadow-hover);
}

.service-detail__image {
    position: relative;

    overflow: hidden;

    border-radius: 22px;
}

.service-detail__image img {
    width: 100%;

    aspect-ratio: 1.25;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}

.service-detail:hover .service-detail__image img {
    transform: scale(1.035);
}

.service-detail__content {
    min-width: 0;
}

.service-detail__number {
    color: var(--orange);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 0.18em;
}

.service-detail h3 {
    margin-top: 14px;

    font-size:
        clamp(
            30px,
            4vw,
            48px
        );

    line-height: 1;

    letter-spacing: -0.04em;

    font-weight: 900;
}

.service-detail p {
    max-width: 680px;

    margin-top: 20px;

    color: var(--text-light);

    font-size: 16px;

    line-height: 1.65;
}

.service-detail ul {
    display: grid;

    gap: 9px;

    margin-top: 22px;

    padding: 0;

    list-style: none;
}

.service-detail li {
    position: relative;

    padding-left: 21px;

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.5;
}

.service-detail li::before {
    content: "";

    position: absolute;

    top: 9px;
    left: 0;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--orange);
}

.service-details__action {
    display: flex;

    justify-content: center;

    margin-top: 45px;

    position: relative;
    z-index: 6;
}


/* =========================================================
   О НАС
   ========================================================= */

.about {
    padding: 120px 0;

    background: var(--bg);
}

.about__inner {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 70px;

    align-items: center;
}

.about__content h2 {
    max-width: 650px;

    margin:
        18px 0 28px;

    font-size:
        clamp(
            42px,
            5vw,
            68px
        );

    line-height: 0.98;

    letter-spacing: -0.045em;

    font-weight: 900;
}

.about__content h2 span {
    display: block;

    color: var(--orange);
}

.about__content p {
    max-width: 850px;

    margin-bottom: 18px;

    color: var(--text-light);

    font-size: 17px;
}

.about__facts {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 14px;

    margin-top: 25px;
}

.fact {
    min-height: 190px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 26px;

    background: #ffffff;

    border:
        1px solid var(--border);

    border-radius: 22px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.fact:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow);
}

/* =========================================================
   О НАШЕЙ РАБОТЕ — ИНТЕРАКТИВНЫЕ КАРТОЧКИ
   ========================================================= */

.fact--image {
    position: relative;
    padding: 0;
    overflow: hidden;
    cursor: default;

    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}

.fact--image::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 4px;

    background: var(--orange);

    transform: scaleX(0);
    transform-origin: left center;

    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);

    z-index: 4;
}

.fact--image:hover {
    transform: translateY(-9px) scale(1.015);

    border-color:
        rgba(244, 123, 32, 0.38);

    box-shadow:
        0 24px 55px rgba(38, 55, 63, 0.15);
}

.fact--image:hover::after {
    transform: scaleX(1);
}

.fact__image {
    position: relative;

    width: 100%;
    height: 145px;

    overflow: hidden;

    background: #e7f0f3;
}

.fact__image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(23, 23, 23, 0.04),
            rgba(244, 123, 32, 0.08)
        );

    opacity: 0.65;

    transition:
        opacity 0.45s ease;
}

.fact__image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.45s ease;
}

.fact--image:hover .fact__image img {
    transform: scale(1.09);
    filter: saturate(1.08) contrast(1.03);
}

.fact--image:hover .fact__image::after {
    opacity: 0.25;
}

.fact--image .fact__content {
    min-height: 92px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 18px 22px 21px;

    background: #ffffff;
}

.fact--image .fact__content strong {
    display: block;

    margin-bottom: 8px;

    color: var(--orange);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.fact--image .fact__content span {
    display: block;

    max-width: none;

    font-size: 15px;
    font-weight: 900;
    line-height: 1.25;
}


.fact strong {
    color: var(--orange);

    font-size: 12px;

    font-weight: 900;
}

.fact span {
    max-width: 200px;

    font-size: 16px;

    font-weight: 900;

    line-height: 1.25;
}

.about__visual {
    position: relative;

    min-height: 520px;

    overflow: hidden;

    border-radius: 30px;

    box-shadow: var(--shadow);
}

.about__visual img {
    width: 100%;
    height: 100%;

    min-height: 520px;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}

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


/* =========================================================
   ГАРАНТИИ
   ========================================================= */

.guarantees {
    padding: 120px 0;

    background: var(--dark);

    color: #ffffff;
}

.guarantees .section-heading p {
    color:
        rgba(255, 255, 255, 0.62);
}

.guarantees__grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 14px;
}

.guarantee {
    min-height: 310px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    overflow: hidden;

    padding: 0;

    background:
        rgba(255, 255, 255, 0.045);

    border:
        1px solid rgba(255, 255, 255, 0.11);

    border-radius: 22px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.guarantee:hover {
    transform: translateY(-6px);

    background:
        rgba(255, 255, 255, 0.07);

    border-color:
        rgba(244, 123, 32, 0.55);
}

.guarantee__image {
    width: 100%;

    overflow: hidden;

    background: #222222;
}

.guarantee__image img {
    width: 100%;

    aspect-ratio: 1.55;

    object-fit: cover;

    opacity: 0.9;

    transition:
        transform 0.55s ease,
        opacity 0.4s ease;
}

.guarantee:hover .guarantee__image img {
    transform: scale(1.055);

    opacity: 1;
}

.guarantee__content {
    display: flex;

    flex-direction: column;

    justify-content: space-between;

    flex: 1;

    padding: 23px 26px 26px;
}

.guarantee strong {
    font-size: 19px;

    line-height: 1.15;
}

.guarantee p {
    margin-top: 20px;

    color:
        rgba(255, 255, 255, 0.58);

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   ОСОБАЯ УСЛУГА
   ========================================================= */

.special-service {
    padding: 130px 0;

    background:
        linear-gradient(
            135deg,
            #dcebf1 0%,
            #e8f2f5 55%,
            #d4e6ed 100%
        );
}

.special-service__inner {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(380px, 0.8fr);

    gap: 70px;

    align-items: center;
}

.special-service__content {
    max-width: 850px;
}

.special-service h2 {
    margin:
        18px 0 28px;

    font-size:
        clamp(
            42px,
            5vw,
            68px
        );

    line-height: 0.98;

    letter-spacing: -0.045em;

    font-weight: 900;
}

.special-service h2 span {
    display: block;

    color: var(--orange);
}

.special-service p {
    max-width: 720px;

    margin-bottom: 32px;

    color: var(--text-light);

    font-size: 17px;
}

.special-service__list {
    display: grid;

    gap: 10px;

    margin-bottom: 30px;

    list-style: none;
}

.special-service__list li {
    position: relative;

    padding-left: 23px;

    color: var(--text-light);

    font-size: 15px;
}

.special-service__list li::before {
    content: "";

    position: absolute;

    top: 9px;
    left: 0;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--orange);
}

.special-service__visual {
    position: relative;

    overflow: hidden;

    border-radius: 30px;

    box-shadow: var(--shadow);
}

.special-service__visual img {
    width: 100%;

    aspect-ratio: 0.95;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}

.special-service__visual:hover img {
    transform: scale(1.035);
}


/* =========================================================
   ЦЕНЫ / КАЛЬКУЛЯТОР
   ========================================================= */

.prices {
    padding: 120px 0;

    background: var(--bg-light);
}

.calculator {
    max-width: 950px;

    margin: 0 auto;

    padding: 0;

    overflow: hidden;

    background: #ffffff;

    border:
        1px solid var(--border);

    border-radius: 32px;

    box-shadow: var(--shadow);
}

.calculator__image {
    position: relative;

    width: 100%;

    overflow: hidden;
}

.calculator__image img {
    width: 100%;

    aspect-ratio: 2.35;

    object-fit: cover;
}

.calculator__placeholder {
    padding: 55px 40px 65px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;
}

.calculator__number {
    width: 76px;
    height: 76px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin:
        0 auto 25px;

    border-radius: 50%;

    background:
        rgba(244, 123, 32, 0.10);

    color: var(--orange);

    font-size: 30px;

    font-weight: 900;
}

.calculator h3 {
    width: 100%;

    margin: 0 0 12px;

    text-align: center;

    font-size: 30px;

    line-height: 1.15;

    font-weight: 900;
}

.calculator p {
    width: 100%;

    margin: 0 auto 8px;

    text-align: center;

    font-size: 16px;

    line-height: 1.6;

    color: var(--text-light);
}

.prices__action {
    display: flex;

    justify-content: center;

    margin-top: 35px;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq {
    padding: 120px 0;

    background: #ffffff;
}

.faq__list {
    max-width: 900px;

    margin: 0 auto;
}

.faq details {
    border-bottom:
        1px solid var(--border);
}

.faq summary {
    position: relative;

    padding:
        27px 55px 27px 0;

    list-style: none;

    cursor: pointer;

    font-size: 19px;

    font-weight: 900;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: "+";

    position: absolute;

    top: 20px;
    right: 0;

    color: var(--orange);

    font-size: 30px;

    font-weight: 300;

    transition:
        transform 0.3s ease;
}

.faq details[open] summary::after {
    transform: rotate(45deg);
}

.faq details p {
    max-width: 780px;

    padding:
        0 0 28px;

    color: var(--text-light);

    font-size: 15px;

    line-height: 1.65;
}

.faq .section-heading__label {
    margin-left: 8px;
}


/* =========================================================
   ФОРМА ЗАЯВКИ
   ========================================================= */

.application {
    padding: 120px 0;

    background: #D2E5EC;
}

.application__inner {
    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1fr);

    gap: 65px;

    align-items: center;
}

.application__content {
    position: relative;
}

.application__content .section-heading__label {
    margin-left: 8px;
}

.application__content h2 {
    margin:
        18px 0 25px;

    font-size:
        clamp(
            42px,
            5vw,
            65px
        );

    line-height: 0.98;

    letter-spacing: -0.045em;

    font-weight: 900;
}

.application__content h2 span {
    display: block;

    color: var(--orange);
}

.application__content > p {
    max-width: 520px;

    color: var(--text-light);

    font-size: 17px;

    line-height: 1.65;
}

.application__visual {
    position: relative;

    width: min(100%, 430px);

    margin-top: 45px;

    overflow: hidden;

    border-radius: 25px;

    box-shadow: var(--shadow);
}

.application__visual img {
    width: 100%;

    aspect-ratio: 1.45;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}

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

.application__form {
    padding: 36px;

    background: #ffffff;

    border:
        1px solid var(--border);

    border-radius: 28px;

    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    font-size: 13px;

    font-weight: 900;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding:
        15px 16px;

    border:
        1px solid var(--border);

    border-radius: 13px;

    outline: none;

    background: #f8fbfc;

    color: var(--text);

    font-size: 14px;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.form-group textarea {
    min-height: 125px;

    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    background: #ffffff;

    border-color:
        rgba(244, 123, 32, 0.7);

    box-shadow:
        0 0 0 4px
        rgba(244, 123, 32, 0.09);
}

.application__form .button {
    width: 100%;
}

.form-note {
    margin-top: 14px;

    color: var(--text-muted);

    font-size: 11px;

    line-height: 1.5;

    text-align: center;
}


/* =========================================================
   ФИНАЛЬНЫЙ CTA
   ========================================================= */

.cta {
    padding: 100px 0;

    background: var(--orange);

    color: #ffffff;
}

.cta__inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.cta .section-heading__label {
    position: relative;

    left: 12px;

    color:
        rgba(255, 255, 255, 0.72);
}

.cta h2 {
    margin-top: 15px;

    font-size:
        clamp(
            42px,
            5vw,
            70px
        );

    line-height: 0.95;

    letter-spacing: -0.045em;

    font-weight: 900;
}

.cta h2 span {
    display: block;

    color: #171717;
}

.cta p {
    margin-top: 18px;

    color:
        rgba(255, 255, 255, 0.82);

    font-size: 17px;

    line-height: 1.6;
}

.cta .button--orange {
    background: #171717;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.15);
}

.cta .button--orange:hover {
    background: #ffffff;

    color: #171717;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    padding: 65px 0 25px;

    background: var(--dark);

    color: #ffffff;
}

.footer__inner {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 60px;

    padding-bottom: 50px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.10);
}

.footer__main h3 {
    max-width: 450px;

    font-size: 22px;

    line-height: 1.15;
}

.footer__main p {
    margin-top: 14px;

    color:
        rgba(255, 255, 255, 0.52);

    font-size: 13px;

    line-height: 1.6;
}

.footer__contacts {
    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 12px;
}

.footer__contacts a {
    color:
        rgba(255, 255, 255, 0.72);

    font-size: 14px;

    transition:
        color 0.25s ease;
}

.footer__contacts a:hover {
    color: var(--orange);
}

.footer__contacts a:first-child {
    color: #ffffff;

    font-size: 18px;

    font-weight: 900;
}

.footer__bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding-top: 22px;

    color:
        rgba(255, 255, 255, 0.38);

    font-size: 11px;
}

.footer__bottom a {
    transition:
        color 0.25s ease;
}

.footer__bottom a:hover {
    color: var(--orange);
}


/* =========================================================
   АНИМАЦИЯ ПОЯВЛЕНИЯ
   ========================================================= */

.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;

    will-change:
        opacity,
        transform;
}

.reveal {
    transform:
        translateY(55px);

    transition:
        opacity 1.1s ease-out,
        transform 1.1s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}

.reveal-left {
    transform:
        translateX(-65px);

    transition:
        opacity 1.1s ease-out,
        transform 1.1s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}

.reveal-right {
    transform:
        translateX(65px);

    transition:
        opacity 1.1s ease-out,
        transform 1.1s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;

    transform:
        translate3d(
            0,
            0,
            0
        );
}

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.30s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}

.reveal-delay-4 {
    transition-delay: 0.60s;
}


/* =========================================================
   ДОПОЛНИТЕЛЬНАЯ ОБРАБОТКА ИЗОБРАЖЕНИЙ
   ========================================================= */

.about__visual,
.special-service__visual,
.application__visual,
.calculator__image,
.guarantee__image,
.service-card__image,
.service-detail__image {
    isolation: isolate;
}

.about__visual::after,
.special-service__visual::after,
.application__visual::after,
.calculator__image::after {
    content: "";

    position: absolute;

    inset: 0;

    border:
        1px solid
        rgba(255, 255, 255, 0.45);

    border-radius: inherit;

    pointer-events: none;
}

.about__visual,
.special-service__visual,
.application__visual,
.calculator__image {
    position: relative;
}


/* =========================================================
   ПЛАНШЕТ
   ========================================================= */

   /* =========================================================
   CALCULATOR — PREMIUM DESKTOP UI
   ЭТАП 1 — ТОЛЬКО ВНЕШНИЙ ВИД
   ========================================================= */

.prices .calculator {
    max-width: 1080px;

    display: grid;
    grid-template-columns: 42% 58%;

    overflow: hidden;

    margin: 0 auto;

    background: #ffffff;

    border: 1px solid rgba(23, 23, 23, 0.08);
    border-radius: 30px;

    box-shadow:
        0 25px 70px rgba(38, 55, 63, 0.12);
}


/* ---------------------------------------------------------
   ЛЕВАЯ ЧАСТЬ — ФОТО
   --------------------------------------------------------- */

.prices .calculator__image {
    position: relative;

    min-height: 590px;

    overflow: hidden;

    background: #dcebf1;
}

.prices .calculator__image::after {
    content: "";

    position: absolute;
    inset: 0;

    border: none;

    border-radius: 0;

    background:
        linear-gradient(
            180deg,
            rgba(23, 23, 23, 0.02) 0%,
            rgba(23, 23, 23, 0.10) 100%
        );

    pointer-events: none;
}

.prices .calculator__image img {
    width: 100%;
    height: 100%;

    aspect-ratio: auto;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.prices .calculator:hover .calculator__image img {
    transform: scale(1.025);
}


/* ---------------------------------------------------------
   ПРАВАЯ ЧАСТЬ
   --------------------------------------------------------- */

.prices .calculator__content {
    display: flex;

    flex-direction: column;

    justify-content: center;

    min-width: 0;

    padding: 52px 55px 48px;
}


/* ---------------------------------------------------------
   ВСТУПЛЕНИЕ
   --------------------------------------------------------- */

.prices .calculator__intro {
    margin-bottom: 34px;
}

.prices .calculator__eyebrow {
    display: inline-flex;

    align-items: center;

    min-height: 30px;

    margin-bottom: 17px;

    padding: 0 11px;

    border-radius: 8px;

    background:
        rgba(244, 123, 32, 0.09);

    color: var(--orange);

    font-size: 10px;

    line-height: 1;

    font-weight: 900;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}

.prices .calculator h3 {
    width: auto;

    margin: 0;

    text-align: left;

    color: var(--text);

    font-size: 34px;

    line-height: 1.08;

    letter-spacing: -0.035em;

    font-weight: 900;
}

.prices .calculator__intro p {
    max-width: 500px;

    margin: 14px 0 0;

    text-align: left;

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.6;
}


/* ---------------------------------------------------------
   ФОРМА
   --------------------------------------------------------- */

.prices .calculator__form {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px 14px;
}

.prices .calculator__field {
    min-width: 0;
}

.prices .calculator__field:nth-child(3) {
    grid-column: 1 / -1;

    max-width: calc(50% - 7px);
}

.prices .calculator__field label {
    display: block;

    margin-bottom: 8px;

    color: #30383c;

    font-size: 11px;

    line-height: 1.2;

    font-weight: 900;

    letter-spacing: 0.03em;
}

.prices .calculator__field select {
    width: 100%;

    min-height: 52px;

    padding:
        0 42px 0 16px;

    border:
        1px solid #d8e3e7;

    border-radius: 13px;

    outline: none;

    appearance: none;

    -webkit-appearance: none;

    background-color: #f8fbfc;

    background-image:
        linear-gradient(
            45deg,
            transparent 50%,
            #7b8589 50%
        ),
        linear-gradient(
            135deg,
            #7b8589 50%,
            transparent 50%
        );

    background-position:
        calc(100% - 19px) 22px,
        calc(100% - 14px) 22px;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;

    color: var(--text);

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition:
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.prices .calculator__field select:hover {
    border-color:
        rgba(244, 123, 32, 0.45);

    background-color: #ffffff;
}

.prices .calculator__field select:focus {
    border-color:
        rgba(244, 123, 32, 0.75);

    background-color: #ffffff;

    box-shadow:
        0 0 0 4px
        rgba(244, 123, 32, 0.09);
}


/* ---------------------------------------------------------
   РЕЗУЛЬТАТ
   --------------------------------------------------------- */

.prices .calculator__result {
    grid-column: 1 / -1;

    position: relative;

    margin-top: 3px;

    padding: 21px 23px 22px;

    overflow: hidden;

    border:
        1px solid rgba(244, 123, 32, 0.22);

    border-radius: 17px;

    background:
        linear-gradient(
            135deg,
            #fffaf6 0%,
            #fff5ec 100%
        );
}

.prices .calculator__result::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    bottom: 0;

    width: 4px;

    background: var(--orange);
}

.prices .calculator__result-label {
    display: block;

    margin-bottom: 5px;

    color: var(--orange);

    font-size: 9px;

    line-height: 1.2;

    font-weight: 900;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}

.prices .calculator__result strong {
    display: block;

    color: var(--text);

    font-size: 36px;

    line-height: 1;

    letter-spacing: -0.04em;

    font-weight: 900;
}

.prices .calculator__result p {
    width: auto;

    max-width: 520px;

    margin: 9px 0 0;

    text-align: left;

    color: var(--text-light);

    font-size: 12px;

    line-height: 1.5;
}


/* ---------------------------------------------------------
   КОНТАКТЫ
   --------------------------------------------------------- */

.prices .calculator__contact {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 13px 17px;

    margin-top: 20px;
}

.prices .calculator__contact p {
    order: 3;

    width: 100%;

    margin: 0;

    text-align: left;

    color: var(--text-muted);

    font-size: 11px;

    line-height: 1.4;
}

.prices .calculator__contact .button {
    min-height: 51px;

    padding:
        0 25px;

    border-radius: 13px;

    font-size: 12px;
}

.prices .calculator__phone {
    color: var(--text);

    font-size: 13px;

    font-weight: 900;

    white-space: nowrap;

    transition:
        color 0.25s ease;
}

.prices .calculator__phone:hover {
    color: var(--orange);
}


/* ---------------------------------------------------------
   АНИМАЦИЯ ПОЯВЛЕНИЯ РЕЗУЛЬТАТА
   --------------------------------------------------------- */

.prices .calculator__result {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.prices .calculator__result:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(244, 123, 32, 0.08);
}
/* =========================================================
   CALCULATOR — PREMIUM DETAILS
   ЭТАП 2 — ИНТЕРАКТИВНОСТЬ И АКЦЕНТЫ
   ========================================================= */


/* ---------------------------------------------------------
   ПОЛЯ — БОЛЕЕ ЖИВОЕ СОСТОЯНИЕ
   --------------------------------------------------------- */

.prices .calculator__field {
    position: relative;
}

.prices .calculator__field select {
    transform: translateY(0);

    box-shadow:
        0 2px 0 rgba(23, 23, 23, 0.01);

    transition:
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.prices .calculator__field select:hover {
    transform: translateY(-1px);

    border-color:
        rgba(244, 123, 32, 0.40);

    background-color: #ffffff;

    box-shadow:
        0 7px 18px rgba(38, 55, 63, 0.06);
}

.prices .calculator__field select:focus {
    transform: translateY(-1px);

    border-color:
        rgba(244, 123, 32, 0.75);

    background-color: #ffffff;

    box-shadow:
        0 0 0 4px
        rgba(244, 123, 32, 0.09),
        0 8px 20px rgba(38, 55, 63, 0.06);
}


/* ---------------------------------------------------------
   РЕЗУЛЬТАТ — ЦЕНА ГЛАВНЫЙ АКЦЕНТ
   --------------------------------------------------------- */

.prices .calculator__result {
    box-shadow:
        0 7px 20px rgba(244, 123, 32, 0.045);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.prices .calculator__result strong {
    display: inline-block;

    margin-top: 1px;

    font-variant-numeric: tabular-nums;

    transition:
        transform 0.25s ease;
}

.prices .calculator__result:hover {
    transform: translateY(-2px);

    border-color:
        rgba(244, 123, 32, 0.30);

    box-shadow:
        0 14px 35px rgba(244, 123, 32, 0.09);
}


/* ---------------------------------------------------------
   КНОПКА
   --------------------------------------------------------- */

.prices .calculator__contact .button {
    position: relative;

    overflow: hidden;

    box-shadow:
        0 8px 18px rgba(244, 123, 32, 0.18);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.prices .calculator__contact .button::after {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.24),
            transparent
        );

    transform: skewX(-20deg);

    transition:
        left 0.55s ease;

    pointer-events: none;
}

.prices .calculator__contact .button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(244, 123, 32, 0.27);
}

.prices .calculator__contact .button:hover::after {
    left: 140%;
}

.prices .calculator__contact .button:active {
    transform: translateY(0);

    box-shadow:
        0 5px 12px rgba(244, 123, 32, 0.18);
}


/* ---------------------------------------------------------
   ТЕЛЕФОН
   --------------------------------------------------------- */

.prices .calculator__phone {
    display: inline-flex;

    align-items: center;

    min-height: 40px;

    padding: 0 4px;

    color: var(--text);

    font-size: 13px;

    line-height: 1;

    font-weight: 900;

    letter-spacing: -0.01em;

    text-decoration: none;

    white-space: nowrap;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.prices .calculator__phone:hover {
    color: var(--orange);

    transform: translateX(2px);
}

.prices .calculator__phone:focus-visible {
    outline:
        2px solid var(--orange);

    outline-offset: 4px;

    border-radius: 4px;
}


/* ---------------------------------------------------------
   ПОДПИСЬ ПОД КНОПКОЙ
   --------------------------------------------------------- */

.prices .calculator__contact > p {
    opacity: 0.85;
}


/* ---------------------------------------------------------
   ЛЁГКИЙ ВИЗУАЛЬНЫЙ АКЦЕНТ У ПОЛЕЙ
   --------------------------------------------------------- */

.prices .calculator__field label::before {
    content: "";

    display: inline-block;

    width: 4px;
    height: 4px;

    margin:
        0 6px 2px 0;

    border-radius: 50%;

    background: var(--orange);

    opacity: 0.8;
}


/* ---------------------------------------------------------
   ПЛАВНОЕ ПОЯВЛЕНИЕ РЕЗУЛЬТАТА
   --------------------------------------------------------- */

@keyframes calculatorResultPulse {

    0% {
        opacity: 0.65;
        transform: scale(0.985);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.prices .calculator__result strong {
    animation:
        calculatorResultPulse 0.35s ease-out;
}


/* ---------------------------------------------------------
   УБИРАЕМ АНИМАЦИИ ДЛЯ ПОЛЬЗОВАТЕЛЕЙ,
   КОТОРЫМ ОНИ НЕ НУЖНЫ
   --------------------------------------------------------- */

/* =========================================================
   АДАПТИВНЫЙ CSS
   ЕДИНАЯ СИСТЕМА: DESKTOP → TABLET → MOBILE
   ========================================================= */

/* ---------------------------------------------------------
   TABLET / SMALL LAPTOP
   1100px and below
   --------------------------------------------------------- */
@media (max-width: 1100px) {

    .container {
        width: calc(100% - 40px);
        max-width: var(--container);
        margin-inline: auto;
    }

    /* HEADER */
    .header__inner {
        min-height: 88px;
        flex-wrap: wrap;
        padding: 10px 0 14px;
        gap: 14px 22px;
    }

    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    /* HERO */
    .hero {
        padding: 80px 0;
    }

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

    .hero__content {
        top: 0;
        width: 100%;
        max-width: 850px;
    }

    .hero h1 {
        max-width: 820px;
        font-size: clamp(50px, 8vw, 76px);
    }

    .hero__visual {
        width: min(100%, 680px);
        height: 540px;
        margin-inline: auto;
        left: 0;
    }

    .hero__side-note {
        right: -45px;
    }

    /* GRID-РАЗДЕЛЫ */
    .services__grid,
    .guarantees__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .about__visual {
        width: min(100%, 720px);
        margin-inline: auto;
    }

    .special-service__inner {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .special-service__content {
        max-width: 850px;
    }

    .special-service__visual {
        width: min(100%, 680px);
        margin-inline: auto;
    }

    .application__inner {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .application__visual {
        width: min(100%, 560px);
        margin-inline: auto;
    }

    .service-detail {
        grid-template-columns:
            minmax(0, 0.9fr)
            minmax(0, 1.1fr);
        gap: 35px;
        padding: 36px;
    }

    /* CALCULATOR */
    .prices .calculator {
        width: 100%;
        max-width: 760px;
        grid-template-columns: 1fr;
        margin-inline: auto;
        border-radius: 28px;
    }

    .prices .calculator__image {
        width: 100%;
        min-height: 360px;
        height: 360px;
    }

    .prices .calculator__content {
        width: 100%;
        padding: 42px;
    }

    .prices .calculator__form {
        width: 100%;
    }

    .prices .calculator__field:nth-child(3) {
        max-width: calc(50% - 7px);
    }

    /* FOOTER */
    .footer__inner {
        gap: 40px;
    }
}


/* ---------------------------------------------------------
   MOBILE
   700px and below
   --------------------------------------------------------- */
@media (max-width: 700px) {

    /* ---------- ГЛОБАЛЬНАЯ ГЕОМЕТРИЯ ---------- */

    .container {
        width: calc(100% - 30px);
        max-width: none;
        margin-inline: auto;
    }

    body {
        min-width: 320px;
        overflow-x: hidden;
    }

    /* ---------- HEADER ---------- */

    .header__inner {
        width: 100%;
        min-height: 0;
        padding: 8px 0 14px;
        gap: 10px 12px;
    }

    .logo {
        min-width: 0;
    }

    .logo img {
        width: 64px;
        height: 64px;
    }

    .logo__text {
        min-width: 0;
        margin-left: -8px;
        gap: 3px;
        font-size: 9px;
    }

    .header__contact {
        margin-left: auto;
        flex-shrink: 0;
    }

    .phone {
        display: none;
    }

    .consultant-button {
        min-height: 40px;
        padding: 0 12px;
        border-radius: 12px;
        font-size: 10px;
    }

    .nav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        gap: 18px;
        overflow-x: auto;
        padding: 2px 0 1px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .nav::-webkit-scrollbar {
        display: none;
    }

    .nav a {
        flex: 0 0 auto;
        font-size: 11px;
    }

    /* ---------- HERO ---------- */

    .hero {
        padding: 55px 0 62px;
    }

    .hero__inner {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero__content {
        width: 100%;
        max-width: none;
        top: 0;
    }

    .hero h1 {
        width: 100%;
        max-width: none;
        margin-top: 18px;
        font-size: clamp(40px, 12.5vw, 60px);
        line-height: 0.95;
        letter-spacing: -0.05em;
    }

    .hero h1 span {
        margin-top: 12px;
    }

    .hero__text {
        width: 100%;
        max-width: none;
        margin-top: 22px;
        font-size: 14px;
        line-height: 1.58;
    }

    .hero__buttons {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-top: 27px;
    }

    .hero__buttons .button {
        width: 100%;
    }

    .hero__trust {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 29px;
        padding-top: 20px;
    }

    .hero__visual {
        width: 100%;
        max-width: none;
        height: 360px;
        margin-inline: auto;
        left: 0;
    }

    .hero__image {
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: center;
    }

    .hero__image img {
        width: 100%;
        height: 100%;
        max-width: 100%;
        object-fit: contain;
    }

    .hero__badge {
        min-width: 0;
        width: 150px;
        max-width: calc(100% - 14px);
        box-sizing: border-box;
        padding: 13px 12px;
        border-radius: 15px;
    }

    .hero__badge--top,
    .hero__side-note {
        display: none;
    }

    .hero__badge--bottom {
        right: 7px;
        bottom: 7px;
    }

    .hero__badge span {
        margin-bottom: 3px;
        font-size: 8px;
        line-height: 1.1;
        letter-spacing: 0.12em;
    }

    .hero__badge strong {
        display: block;
        font-size: 11px;
        line-height: 1.2;
        letter-spacing: 0;
        overflow-wrap: break-word;
    }

    /* ---------- DECORATIVE INSECTS ---------- */

    .site-texture img {
        opacity: 0.065;
    }

    .site-texture img:nth-child(1) { width: 42px; }
    .site-texture img:nth-child(2) { width: 50px; }
    .site-texture img:nth-child(3) { width: 36px; }
    .site-texture img:nth-child(4) { width: 54px; }
    .site-texture img:nth-child(5) { width: 40px; }
    .site-texture img:nth-child(6) { width: 45px; }
    .site-texture img:nth-child(7) { width: 48px; }
    .site-texture img:nth-child(8) { width: 38px; }
    .site-texture img:nth-child(9) { width: 43px; }
    .site-texture img:nth-child(10) { width: 49px; }
    .site-texture img:nth-child(11) { width: 36px; }
    .site-texture img:nth-child(12) { width: 45px; }
    .site-texture img:nth-child(13) { width: 40px; }
    .site-texture img:nth-child(14) { width: 34px; }

    /* ---------- SECTION SPACING ---------- */

    .problem-selector,
    .services,
    .service-details,
    .about,
    .guarantees,
    .prices,
    .faq,
    .application {
        padding: 70px 0;
    }

    .special-service {
        padding: 74px 0;
    }

    .section-heading {
        width: 100%;
        max-width: none;
        margin-bottom: 34px;
    }

    .section-heading h2 {
        width: 100%;
        font-size: clamp(35px, 10vw, 44px);
        line-height: 0.98;
    }

    .section-heading p {
        width: 100%;
        max-width: none;
        margin-top: 17px;
        font-size: 14px;
        line-height: 1.6;
    }

    /* ---------- QUICK SELECT ---------- */

    .problem-selector__inner {
        width: 100%;
    }

    .problem-selector__heading {
        width: 100%;
        max-width: none;
        margin-bottom: 27px;
    }

    .problem-selector__heading h2 {
        font-size: clamp(34px, 9.5vw, 42px);
    }

    .problem-selector__heading p {
        max-width: none;
        font-size: 14px;
    }

    .problem-selector__list {
        width: 100%;
        gap: 8px;
    }

    .problem-selector__item {
        min-height: 45px;
        padding: 0 14px;
        border-radius: 13px;
        font-size: 11px;
    }

    /* ---------- SERVICES ---------- */

    .services__grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 34px;
    }

    .service-card {
        width: 100%;
        min-height: 0;
        margin-inline: auto;
        border-radius: 21px;
    }

    .service-card__image {
        width: 100%;
        height: 190px;
    }

    .service-card__content {
        padding: 19px 18px 22px;
    }

    .service-card h3 {
        font-size: 22px;
    }

    .service-card p {
        font-size: 13px;
    }

    /* ---------- DETAILED SERVICES ---------- */

    .service-details__list {
        width: 100%;
        gap: 15px;
    }

    .service-detail {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 21px 18px 24px;
        margin-inline: auto;
        border-radius: 21px;
    }

    .service-detail__content {
        width: 100%;
        min-width: 0;
    }

    .service-detail h3 {
        font-size: clamp(28px, 8vw, 34px);
        overflow-wrap: anywhere;
    }

    .service-detail p {
        max-width: none;
        font-size: 14px;
    }

    .service-detail__image {
        width: 100%;
    }

    .service-detail__image img {
        width: 100%;
        aspect-ratio: 1.35;
    }

    .service-details__action {
        width: 100%;
        margin-top: 29px;
    }

    .service-details__action .button {
        width: 100%;
    }

    /* ---------- ABOUT ---------- */

    .about__inner {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about__content {
        width: 100%;
        min-width: 0;
    }

    .about__content h2 {
        width: 100%;
        max-width: none;
        font-size: clamp(36px, 10vw, 43px);
    }

    .about__content p {
        max-width: none;
        font-size: 14px;
    }

    .about__facts {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .fact {
        width: 100%;
        min-height: 135px;
        padding: 21px;
        margin-inline: auto;
        border-radius: 18px;
    }

    .fact__image {
        width: 100%;
        height: 155px;
    }

    .fact--image .fact__content {
        min-height: 86px;
        padding: 15px 17px 18px;
    }

    .fact--image .fact__content span {
        font-size: 13px;
    }

    .about__visual {
        width: 100%;
        min-height: 340px;
        margin-inline: auto;
        border-radius: 22px;
    }

    .about__visual img {
        width: 100%;
        min-height: 340px;
    }

    /* ---------- GUARANTEES ---------- */

    .guarantees__grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .guarantee {
        width: 100%;
        min-height: 0;
        margin-inline: auto;
        border-radius: 19px;
    }

    .guarantee__image {
        width: 100%;
    }

    .guarantee__image img {
        width: 100%;
        aspect-ratio: 1.75;
    }

    .guarantee__content {
        padding: 20px 21px 22px;
    }

    .guarantee strong {
        font-size: 18px;
    }

    .guarantee p {
        margin-top: 15px;
        font-size: 12px;
    }

    /* ---------- SPECIAL SERVICE ---------- */

    .special-service__inner {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 33px;
    }

    .special-service__content {
        width: 100%;
        max-width: none;
        min-width: 0;
    }

    .special-service h2 {
        font-size: clamp(36px, 10vw, 43px);
    }

    .special-service p {
        max-width: none;
        font-size: 14px;
    }

    .special-service__visual {
        width: 100%;
        max-width: none;
        margin-inline: auto;
        border-radius: 22px;
    }

    .special-service__visual img {
        width: 100%;
        aspect-ratio: 1.05;
    }

    /* =====================================================
       CALCULATOR — MOBILE
       ===================================================== */

    .prices .calculator {
        display: flex;
        flex-direction: column;

        width: 100%;
        max-width: none;

        margin-inline: auto;

        border-radius: 21px;

        overflow: hidden;
    }

    .prices .calculator__image {
        width: 100%;
        height: 225px;
        min-height: 225px;
        flex: 0 0 225px;

        border-radius: 21px 21px 0 0;
    }

    .prices .calculator__image img {
        width: 100%;
        height: 100%;
        max-width: none;
        aspect-ratio: auto;
        object-fit: cover;
    }

    .prices .calculator__content {
        width: 100%;
        min-width: 0;
        padding: 28px 18px 24px;
    }

    .prices .calculator__intro {
        width: 100%;
        max-width: none;
        margin-bottom: 24px;
    }

    .prices .calculator__eyebrow {
        max-width: 100%;
        min-height: 27px;
        margin-bottom: 13px;
        padding: 0 9px;
        border-radius: 7px;
        font-size: 8px;
        letter-spacing: 0.13em;
    }

    .prices .calculator h3 {
        width: 100%;
        max-width: none;
        margin: 0;
        text-align: left;
        font-size: clamp(25px, 7.5vw, 30px);
        line-height: 1.06;
        overflow-wrap: anywhere;
    }

    .prices .calculator__intro p {
        width: 100%;
        max-width: none;
        margin-top: 11px;
        text-align: left;
        font-size: 12px;
        line-height: 1.55;
    }

    .prices .calculator__form {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 14px;
    }

    .prices .calculator__field,
    .prices .calculator__field:nth-child(3) {
        width: 100%;
        max-width: none;
        min-width: 0;
        grid-column: auto;
    }

    .prices .calculator__field label {
        margin-bottom: 7px;
        font-size: 9px;
    }

    .prices .calculator__field select {
        width: 100%;
        min-width: 0;
        min-height: 50px;
        padding: 0 39px 0 14px;
        border-radius: 12px;
        font-size: 12px;
    }

    .prices .calculator__field select:hover,
    .prices .calculator__field select:focus {
        transform: none;
    }

    .prices .calculator__result {
        width: 100%;
        margin-top: 1px;
        padding: 18px 16px 19px;
        box-sizing: border-box;
        border-radius: 15px;
    }

    .prices .calculator__result-label {
        margin-bottom: 6px;
        font-size: 8px;
        letter-spacing: 0.13em;
    }

    .prices .calculator__result strong {
        display: block;
        width: 100%;
        max-width: 100%;
        font-size: clamp(27px, 8vw, 32px);
        line-height: 1.02;
        overflow-wrap: anywhere;
    }

    .prices .calculator__result p {
        width: 100%;
        max-width: none;
        margin-top: 8px;
        text-align: left;
        font-size: 10px;
        line-height: 1.5;
    }

    .prices .calculator__contact {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 11px;
        margin-top: 17px;
    }

    .prices .calculator__contact .button {
        width: 100%;
        min-height: 50px;
        padding: 0 18px;
        border-radius: 12px;
        font-size: 12px;
    }

    .prices .calculator__phone {
        justify-content: center;
        width: 100%;
        min-height: 34px;
        padding: 0;
        font-size: 14px;
        text-align: center;
    }

    .prices .calculator__contact > p {
        order: 3;
        width: 100%;
        margin: 0;
        text-align: center;
        font-size: 9px;
        line-height: 1.45;
    }

    /* ---------- FAQ ---------- */

    .faq__list {
        width: 100%;
        max-width: none;
        margin-inline: auto;
    }

    .faq summary {
        width: 100%;
        padding: 20px 42px 20px 0;
        font-size: 15px;
        line-height: 1.35;
    }

    .faq summary::after {
        top: 15px;
        font-size: 27px;
    }

    .faq details p {
        max-width: none;
        font-size: 13px;
    }

    /* ---------- APPLICATION ---------- */

    .application__inner {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .application__content {
        width: 100%;
        min-width: 0;
    }

    .application__content h2 {
        width: 100%;
        max-width: none;
        font-size: clamp(36px, 10vw, 43px);
    }

    .application__content > p {
        max-width: none;
        font-size: 14px;
    }

    .application__visual {
        width: 100%;
        max-width: none;
        margin: 30px auto 0;
        border-radius: 21px;
    }

    .application__visual img {
        width: 100%;
        aspect-ratio: 1.35;
    }

    .application__form {
        width: 100%;
        padding: 21px 17px;
        margin-inline: auto;
        border-radius: 21px;
    }

    /* ---------- CTA ---------- */

    .cta {
        padding: 68px 0;
    }

    .cta__inner {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
    }

    .cta h2 {
        font-size: clamp(38px, 10.5vw, 47px);
    }

    .cta .button {
        width: 100%;
    }

    /* ---------- FOOTER ---------- */

    .footer {
        padding-top: 46px;
    }

    .footer__inner {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding-bottom: 32px;
    }

    .footer__contacts {
        align-items: flex-start;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
    }
}


/* ---------------------------------------------------------
   VERY SMALL PHONES
   420px and below
   --------------------------------------------------------- */
@media (max-width: 420px) {

    .container {
        width: calc(100% - 28px);
        margin-inline: auto;
    }

    .logo img {
        width: 60px;
        height: 60px;
    }

    .logo__text {
        font-size: 8.5px;
    }

    .consultant-button {
        min-height: 38px;
        padding: 0 10px;
        font-size: 9px;
    }

    .hero {
        padding-top: 50px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero__visual {
        height: 325px;
    }

    .section-heading h2 {
        font-size: 36px;
    }

    .problem-selector__heading h2 {
        font-size: 35px;
    }

    .about__content h2,
    .special-service h2,
    .application__content h2 {
        font-size: 37px;
    }

    .service-card h3 {
        font-size: 21px;
    }

    .prices .calculator {
        border-radius: 19px;
    }

    .prices .calculator__image {
        height: 205px;
        min-height: 205px;
        flex-basis: 205px;
        border-radius: 19px 19px 0 0;
    }

    .prices .calculator__content {
        padding: 25px 16px 22px;
    }

    .prices .calculator__intro {
        margin-bottom: 21px;
    }

    .prices .calculator h3 {
        font-size: 25px;
    }

    .prices .calculator__intro p {
        font-size: 11px;
    }

    .prices .calculator__form {
        gap: 13px;
    }

    .prices .calculator__field select {
        min-height: 48px;
        font-size: 12px;
    }

    .prices .calculator__result {
        padding: 17px 15px 18px;
    }

    .prices .calculator__result strong {
        font-size: 27px;
    }

    .prices .calculator__result p {
        font-size: 10px;
    }

    .prices .calculator__contact .button {
        min-height: 49px;
    }
}


/* ---------------------------------------------------------
   ACCESSIBILITY / MOTION
   --------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

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

    .site-texture img {
        animation-duration: 8s !important;
        animation-iteration-count: infinite !important;
    }
}


/* ---------------------------------------------------------
   TOUCH
   --------------------------------------------------------- */
.button,
.consultant-button,
.nav a,
.service-card__link,
.problem-selector__item,
.faq summary {
    -webkit-tap-highlight-color: transparent;
}
@media (max-width: 420px){.nav a{font-size:9.5px}}

    .guarantee__image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        aspect-ratio: auto;
    }
}

@media (min-width: 701px) {
        object-fit: cover;
        flex: 0 0 190px;
    }
}

@media (min-width: 701px) {
    .guarantees__grid > .guarantee--image {
        width: 100%;
        min-width: 0;
    }

    .guarantees__grid > .guarantee--image > img {
        width: 100%;
        display: block;
        object-fit: cover;
    }
}

/* Информация о разработчике */
.footer__developer {
    width: min(1014px, calc(100% - 40px));
    margin: 0 auto;
    padding: 16px 0 8px;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
    text-align: left;
}

.footer__developer p {
    margin: 2px 0;
}

.footer__developer strong {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

.footer__developer a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.footer__developer a:hover {
    color: #ff7417;
}

@media (max-width: 700px) {
    .footer__developer {
        width: calc(100% - 32px);
        padding: 14px 0 6px;
        font-size: 11px;
    }
}
