:root {
    --color-primary: #1764cc;
    --color-primary-dark: #0f52ae;
    --color-primary-soft: #edf4fd;
    --color-accent: #ff6b42;
    --color-success: #25bd70;
    --color-heading: #151a32;
    --color-text: #66748b;
    --color-surface: #f5f8fe;
    --color-border: #e1e8f2;
    --shadow-card: 0 9px 24px rgba(30, 74, 136, 0.08);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

#contact-form,
#request-form {
    scroll-margin-top: 115px;
}

body {
    margin: 0;
    color: var(--color-heading);
    font-family: "Manrope", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background: #fff;
}

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

button {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
}

.material-symbols-outlined {
    font-variation-settings:
        "FILL" 0,
        "wght" 300,
        "GRAD" 0,
        "opsz" 24;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin-inline: auto;
    padding-inline: 20px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Блок 01. Верхняя информационная панель */
.topbar {
    min-height: 30px;
    color: #fff;
    font-size: 13px;
    line-height: 1.35;
    background: #155db9;
}

.topbar__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 30px;
}

.topbar__nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.topbar a {
    transition: opacity 0.2s ease;
}

.topbar a:hover {
    opacity: 0.75;
}

/* Блок 02. Шапка сайта */
.header {
    position: relative;
    z-index: 20;
    background: #fff;
    border-bottom: 1px solid #edf1f6;
    box-shadow: 0 4px 13px rgba(24, 63, 119, 0.05);
}

.header__container {
    display: flex;
    align-items: center;
    min-height: 92px;
}

.logo {
    display: block;
    flex: 0 0 auto;
}

.logo__image {
    display: block;
    width: 220px;
    height: 82px;
    object-fit: contain;
}

.header__mobile-phone {
    display: none;
}

.header__menu {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    flex: 1 1 auto;
    align-items: center;
    gap: 30px;
    margin-left: 65px;
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.header__nav a {
    transition: color 0.2s ease;
}

.header__nav a:hover {
    color: var(--color-primary);
}

.header__nav-item {
    position: relative;
}

.header__services-toggle {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 0;
    color: var(--color-heading);
    font: inherit;
    font-weight: inherit;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.header__services-toggle > .material-symbols-outlined {
    font-size: 19px;
    transition: transform 0.2s ease;
}

.header__nav-item--dropdown:hover .header__services-toggle,
.header__nav-item--dropdown:focus-within .header__services-toggle,
.header__nav-item--dropdown.is-current .header__services-toggle {
    color: var(--color-primary);
}

.header__submenu {
    position: absolute;
    top: calc(100% + 24px);
    left: -105px;
    z-index: 30;
    display: grid;
    width: 650px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    padding: 26px;
    visibility: hidden;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: 0 22px 50px rgba(18, 50, 91, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.header__submenu::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 25px;
    content: "";
}

.header__nav-item--dropdown:hover .header__submenu,
.header__nav-item--dropdown:focus-within .header__submenu,
.header__nav-item--dropdown.is-submenu-open .header__submenu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.header__nav-item--dropdown:hover .header__services-toggle > .material-symbols-outlined,
.header__nav-item--dropdown:focus-within .header__services-toggle > .material-symbols-outlined,
.header__nav-item--dropdown.is-submenu-open .header__services-toggle > .material-symbols-outlined {
    transform: rotate(180deg);
}

.header__submenu-group {
    display: flex;
    align-items: stretch;
    flex-direction: column;
}

.header__submenu-group strong {
    margin-bottom: 10px;
    padding-bottom: 10px;
    color: var(--color-heading);
    font-size: 13px;
    border-bottom: 1px solid var(--color-border);
}

.header__submenu-group a {
    padding: 5px 0;
    color: var(--color-text);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

.header__submenu-group a:hover {
    color: var(--color-primary);
}

@media (min-width: 901px) and (max-width: 1200px) {
    .header__menu {
        gap: 18px;
        margin-left: 28px;
    }

    .header__nav {
        gap: 14px;
        font-size: 13px;
    }

    .header__submenu {
        left: -90px;
        width: 620px;
    }

    .header__phone {
        font-size: 15px;
    }

    .header__callback {
        min-width: 132px;
        padding-inline: 12px;
    }
}

.header__contacts {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    justify-self: end;
    gap: 4px;
    text-align: center;
}

.header__phone {
    color: var(--color-primary);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.header__callback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 145px;
    min-height: 32px;
    margin-top: 3px;
    padding: 7px 16px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    background: var(--color-accent);
    border-radius: 5px;
    box-shadow: 0 0 0 0 rgba(255, 107, 66, 0.34);
    animation: action-pulse 2.8s ease-out infinite;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.header__callback:hover {
    background: #e95831;
    animation-play-state: paused;
    transform: translateY(-1px);
}

.header__burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.header__burger-lines {
    display: flex;
    width: 26px;
    flex-direction: column;
    gap: 5px;
}

.header__burger-lines span {
    display: block;
    width: 100%;
    height: 2px;
    background: #1763c5;
    border-radius: 5px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Блок 03. Первый экран */
.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background-color: var(--color-primary);
    background-image:
        linear-gradient(
            90deg,
            rgba(7, 40, 86, 0.9) 0%,
            rgba(10, 62, 133, 0.72) 42%,
            rgba(6, 34, 73, 0.62) 100%
        ),
        url("../images/hero-sanitary-original.webp");
    background-position: 58% center;
    background-size: cover;
    background-attachment: fixed;
}

.hero::before {
    display: none;
}

.hero__container {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: center;
    gap: 80px;
    min-height: 570px;
    padding-block: 58px;
}

.hero__content {
    max-width: 760px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 7px 11px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 7px;
}

.hero__eyebrow-dot {
    width: 8px;
    height: 8px;
    background: #51dc77;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(81, 220, 119, 0.15);
}

.hero__title {
    max-width: 760px;
    margin: 0;
    font-size: clamp(38px, 4vw, 62px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.hero__title span {
    display: block;
    color: #9fd0ff;
}

.hero__text {
    max-width: 650px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.6;
}

.hero__benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.hero__benefits li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
}

.hero__benefits li span {
    display: inline-grid;
    width: 20px;
    height: 20px;
    color: #fff;
    font-size: 11px;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 5px;
    place-items: center;
}

.hero__form {
    padding: 28px;
    color: var(--color-heading);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(9, 43, 92, 0.22);
}

.hero__form-title {
    margin: 0;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.3;
}

.hero__form-text {
    margin: 10px 0 20px;
    color: #72809a;
    font-size: 13px;
    line-height: 1.55;
}

.calculation-form {
    display: grid;
    gap: 11px;
}

.calculation-form__field {
    display: block;
}

.calculation-form input,
.calculation-form select {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    color: #15213d;
    font: inherit;
    font-size: 14px;
    background: #fff;
    border: 1px solid #dfe6f0;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.calculation-form select {
    cursor: pointer;
}

.calculation-form input::placeholder {
    color: #8e9ab0;
}

.calculation-form input:focus,
.calculation-form select:focus {
    border-color: #1763c5;
    box-shadow: 0 0 0 3px rgba(23, 99, 197, 0.12);
}

.calculation-form__submit {
    min-height: 48px;
    margin-top: 2px;
    padding: 12px 16px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    background: var(--color-accent);
    border: 0;
    border-radius: 6px;
    box-shadow: 0 0 0 0 rgba(255, 107, 66, 0.32);
    animation: action-pulse 2.8s 0.7s ease-out infinite;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.calculation-form__submit:hover {
    background: #e95831;
    animation-play-state: paused;
}

.calculation-form__submit:active {
    transform: translateY(1px);
}

.calculation-form__privacy {
    margin: 2px 0 0;
    color: #9aa4b6;
    font-size: 11px;
    line-height: 1.45;
    text-align: center;
}

.hero__pests {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero__pest {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 5px 14px 5px 5px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 30px;
    backdrop-filter: blur(4px);
}

.hero__pest img {
    display: block;
    width: 42px;
    height: 42px;
    object-fit: cover;
    background: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

/* Блок 04. Краткие показатели компании */
.stats {
    background: #f1f5fc;
    border-bottom: 1px solid var(--color-border);
}

.stats__list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 104px;
}

.stats__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 20px 28px;
}

.stats__item:not(:last-child)::after {
    position: absolute;
    top: 28px;
    right: 0;
    bottom: 28px;
    width: 1px;
    content: "";
    background: #dce6f3;
}

.stats__icon {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    color: #fff;
    font-size: 23px;
    line-height: 1;
    background: var(--color-primary);
    border: 0;
    border-radius: 8px;
    box-shadow: none;
    place-items: center;
}

.stats__item:nth-child(2) .stats__icon {
    background: var(--color-accent);
    box-shadow: none;
}

.stats__item:nth-child(3) .stats__icon {
    background: var(--color-success);
    box-shadow: none;
}

.stats__item:nth-child(4) .stats__icon {
    background: var(--color-primary);
    box-shadow: none;
}

.stats__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.stats__content strong {
    color: var(--color-primary);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
}

.stats__content span {
    color: #6d7b92;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
}

/* Блок 05. Цены на услуги */
.prices {
    position: relative;
    padding-block: 90px;
    background:
        radial-gradient(circle at 8% 12%, rgba(23, 99, 197, 0.07), transparent 230px),
        radial-gradient(circle at 92% 88%, rgba(255, 107, 66, 0.06), transparent 250px),
        #fff;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-heading__label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-title {
    margin: 0;
    color: var(--color-heading);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.section-heading__text {
    margin: 14px 0 0;
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.6;
}

.prices__menu {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.prices__menu-link {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 12px 18px;
    color: #52627b;
    text-align: center;
    background: #f1f5fb;
    border: 1px solid var(--color-border);
    border-radius: 7px;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease,
        transform 0.2s ease;
}

.prices__menu-link:hover {
    color: #1763c5;
    border-color: #bed2ee;
    transform: translateY(-2px);
}

.prices__menu-link.is-active {
    color: #fff;
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 7px 15px rgba(23, 100, 204, 0.18);
    cursor: default;
}

.prices__menu-link strong,
.prices__menu-link span {
    display: block;
}

.prices__menu-link strong {
    font-size: 15px;
    font-weight: 800;
}

.prices__menu-link span {
    margin-top: 3px;
    font-size: 12px;
    font-weight: 600;
    opacity: 0.72;
}

.prices__submenu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 34px;
}

.prices__submenu a {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 5px 20px 5px 5px;
    color: #15213d;
    font-size: 14px;
    font-weight: 700;
    background: #e8edf5;
    border: 1px solid #e1e7f0;
    border-radius: 999px;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease,
        transform 0.2s ease;
}

.prices__submenu img {
    display: block;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    object-fit: cover;
    background: #fff;
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
}

.prices__submenu a:hover {
    color: #fff;
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.prices__description {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 22px;
}

.prices__description p {
    margin: 0;
    padding: 18px 20px;
    color: #66758c;
    font-size: 14px;
    line-height: 1.6;
    background: #f5f8fc;
    border-left: 3px solid #1763c5;
    border-radius: 6px;
}

.prices__description strong {
    color: #253750;
}

.prices__table-wrap {
    overflow-x: auto;
    background: #fff;
    border: 1px solid #e0e8f3;
    border-radius: 8px;
    box-shadow: var(--shadow-card);
}

.prices__table {
    width: 100%;
    min-width: 720px;
    border-collapse: separate;
    border-spacing: 0;
}

.prices__table th,
.prices__table td {
    padding: 17px 20px;
    border-right: 1px solid #e5ecf5;
    border-bottom: 1px solid #e5ecf5;
}

.prices__table tr > *:last-child {
    border-right: 0;
}

.prices__table tbody tr:last-child > * {
    border-bottom: 0;
}

.prices__table thead th {
    position: relative;
    color: #fff;
    text-align: center;
    background: var(--color-primary);
}

.prices__table thead th:first-child {
    width: 19%;
    text-align: left;
    border-radius: 11px 0 0;
}

.prices__table thead th:last-child {
    border-radius: 0 11px 0 0;
}

.prices__table thead strong,
.prices__table thead span {
    display: block;
}

.prices__table thead strong {
    font-size: 15px;
    font-weight: 800;
}

.prices__table thead span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 500;
}

.prices__table tbody th {
    color: #263752;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    background: #f8fafd;
}

.prices__table tbody td {
    color: #1763c5;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.prices__table tbody tr:nth-child(even) td {
    background: #f7faff;
}

.prices__note {
    margin: 15px 0 0;
    color: #7b879b;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

/* Дополнительный блок. Лицензия и документы */
.official {
    padding-block: 25px 75px;
    background: #fff;
}

.official__card {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: 50px;
    padding: 30px 34px;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 9px;
    box-shadow: 0 13px 28px rgba(23, 100, 204, 0.16);
}

.official__intro {
    display: flex;
    align-items: center;
    gap: 20px;
}

.official__main-icon {
    display: grid;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    color: var(--color-primary);
    font-size: 31px;
    background: #fff;
    border-radius: 50%;
    place-items: center;
}

.official__eyebrow {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.official__intro h2 {
    margin: 5px 0 8px;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
}

.official__intro p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    line-height: 1.5;
}

.official__intro p strong {
    display: block;
    margin-top: 3px;
    color: #fff;
    font-size: 15px;
}

.official__documents {
    padding-left: 34px;
    border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.official__documents > p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}

.official__documents ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.official__documents li {
    display: flex;
    min-height: 48px;
    align-items: center;
    gap: 10px;
    padding: 10px 13px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 7px;
}

.official__documents li .material-symbols-outlined {
    font-size: 21px;
}

.official__documents li strong {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

/* Блок 06. Используемые препараты */
.preparations {
    padding-block: 90px;
    background:
        radial-gradient(circle at 100% 0, rgba(23, 99, 197, 0.09), transparent 330px),
        var(--color-surface);
}

.preparations__group-title {
    margin: 0 0 22px;
    color: #15213d;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
}

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

.preparation-card {
    position: relative;
    min-height: 250px;
    padding: 28px 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e1e9f3;
    border-radius: 8px;
    box-shadow: var(--shadow-card);
}

.preparation-card::after {
    position: absolute;
    right: -35px;
    bottom: -55px;
    width: 120px;
    height: 120px;
    content: "";
    background: #eef5ff;
    border-radius: 50%;
}

.preparation-card__icon {
    display: grid;
    width: 44px;
    height: 44px;
    color: #1763c5;
    font-size: 19px;
    font-weight: 800;
    background: #edf4fd;
    border-radius: 11px;
    place-items: center;
}

.preparation-card h4 {
    margin: 20px 0 9px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
}

.preparation-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #68778e;
    font-size: 14px;
    line-height: 1.65;
}

.preparations__group--alternative {
    margin-top: 30px;
    padding: 32px;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 9px;
    box-shadow: 0 15px 32px rgba(23, 99, 197, 0.18);
}

.preparations__alternative-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
    align-items: end;
    gap: 45px;
    margin-bottom: 25px;
}

.preparations__alternative-heading .section-heading__label {
    color: #9fc8ff;
}

.preparations__alternative-heading .preparations__group-title {
    margin: 0;
    color: #fff;
    text-align: left;
}

.preparations__alternative-heading p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.65;
}

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

.preparations__features li {
    position: relative;
    display: flex;
    min-height: 58px;
    align-items: center;
    padding: 13px 15px 13px 43px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
}

.preparations__features li::before {
    position: absolute;
    left: 15px;
    display: grid;
    width: 19px;
    height: 19px;
    content: "✓";
    color: #1763c5;
    font-size: 10px;
    background: #fff;
    border-radius: 50%;
    place-items: center;
}

/* Блок 09–10. Этапы работы и договорная гарантия */
.guarantee {
    padding-block: 90px;
    background: #fff;
}

.guarantee__diagram {
    padding: 30px;
    background: #f5f8fc;
    border: 1px solid #e0e8f3;
    border-radius: 9px;
}

.guarantee__main-path {
    display: grid;
    grid-template-columns: 1fr 42px 1fr 42px 1fr;
    align-items: stretch;
    max-width: 1020px;
    margin-inline: auto;
}

.guarantee-step {
    position: relative;
    display: flex;
    min-width: 0;
    gap: 14px;
    padding: 20px 18px;
    background: #fff;
    border: 1px solid #dce6f3;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(39, 82, 140, 0.06);
}

.guarantee-step__number {
    display: grid;
    flex: 0 0 31px;
    width: 31px;
    height: 31px;
    color: #1763c5;
    font-size: 12px;
    font-weight: 800;
    background: #edf4fd;
    border-radius: 50%;
    place-items: center;
}

.guarantee-step h3,
.guarantee-outcome h3,
.guarantee__decision-question h3 {
    margin: 2px 0 7px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
}

.guarantee-step p,
.guarantee-outcome p,
.guarantee__decision-question p {
    margin: 0;
    color: #718097;
    font-size: 13px;
    line-height: 1.55;
}

.guarantee__arrow {
    display: grid;
    color: #1763c5;
    font-size: 22px;
    font-weight: 800;
    place-items: center;
}

.guarantee__down-arrow {
    display: grid;
    height: 58px;
    color: #1763c5;
    font-size: 28px;
    font-weight: 800;
    place-items: center;
}

.guarantee__decision {
    max-width: 820px;
    margin-inline: auto;
    overflow: hidden;
    background: #fff;
    border: 2px solid #1763c5;
    border-radius: 14px;
}

.guarantee__decision-question {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 20px;
    color: #fff;
    text-align: left;
    background: #1763c5;
}

.guarantee__decision-question .guarantee-step__number {
    color: #1763c5;
    background: #fff;
}

.guarantee__decision-question p {
    color: rgba(255, 255, 255, 0.75);
}

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

.guarantee-outcome {
    padding: 24px;
}

.guarantee-outcome + .guarantee-outcome {
    border-left: 1px solid #dce6f3;
}

.guarantee-outcome__label {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    padding: 4px 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    background: #ff6b42;
    border-radius: 13px;
}

.guarantee-outcome--success .guarantee-outcome__label {
    background: #23b66f;
}

.guarantee-outcome h3 {
    margin-top: 14px;
}

.guarantee-outcome strong {
    display: block;
    margin-top: 16px;
    padding: 9px 11px;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    border-radius: 6px;
}

.guarantee-outcome--repeat strong {
    color: #bf4827;
    background: #fff0eb;
}

.guarantee-outcome--success strong {
    color: #178752;
    background: #eaf8f1;
}

.guarantee__loop {
    display: flex;
    max-width: 820px;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin: 18px auto 0;
    padding: 13px 20px;
    color: #75531e;
    background: #fff8e9;
    border: 1px dashed #e0b45f;
    border-radius: 9px;
}

.guarantee__loop-arrow {
    color: #e09b28;
    font-size: 28px;
    font-weight: 800;
}

.guarantee__loop strong,
.guarantee__loop span {
    display: block;
}

.guarantee__loop strong {
    font-size: 13px;
    font-weight: 800;
}

.guarantee__loop div span {
    margin-top: 2px;
    font-size: 12px;
}

.guarantee__contract {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-top: 22px;
    padding: 20px 24px;
    background: #edf4fd;
    border-left: 4px solid #1763c5;
    border-radius: 8px;
}

.guarantee__contract-icon {
    display: grid;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    color: #fff;
    font-weight: 800;
    background: #1763c5;
    border-radius: 50%;
    place-items: center;
}

.guarantee__contract strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
}

.guarantee__contract p {
    margin: 4px 0 0;
    color: #6c7a90;
    font-size: 13px;
    line-height: 1.55;
}

/* Блок 12. Преимущества компании */
.advantages {
    padding-block: 90px;
    background: var(--color-surface);
}

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

.advantage-card {
    position: relative;
    min-height: 200px;
    padding: 22px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e1e9f3;
    border-radius: 8px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.advantage-card:hover {
    border-color: #c4d8f1;
    box-shadow: 0 14px 30px rgba(39, 82, 140, 0.09);
    transform: translateY(-3px);
}

.advantage-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.advantage-card__icon {
    display: grid;
    width: 46px;
    height: 46px;
    color: #fff;
    font-size: 25px;
    background: var(--color-primary);
    border-radius: 8px;
    box-shadow: none;
    place-items: center;
}

.advantage-card:nth-child(3n + 2) .advantage-card__icon {
    background: var(--color-primary);
    box-shadow: none;
}

.advantage-card:nth-child(3n) .advantage-card__icon {
    background: var(--color-accent);
    box-shadow: none;
}

.advantage-card__number {
    display: inline-block;
    color: #a2aec0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.advantage-card h3 {
    margin: 17px 0 8px;
    color: #15213d;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
}

.advantage-card p {
    margin: 0;
    color: #68778e;
    font-size: 14px;
    line-height: 1.65;
}

.advantage-card:nth-child(10) {
    grid-column: 2;
}

/* Блок 13. Наши работы */
.works {
    padding-block: 90px;
    background: #fff;
}

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

.work-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e1e9f3;
    border-radius: 8px;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.work-card:hover {
    box-shadow: 0 18px 34px rgba(39, 82, 140, 0.14);
    transform: translateY(-4px);
}

.work-card > img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.work-card__content {
    padding: 20px;
}

.work-card__content > span {
    color: #1763c5;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.work-card h3 {
    margin: 10px 0 8px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.4;
}

.work-card p {
    margin: 0;
    color: #68778e;
    font-size: 13px;
    line-height: 1.6;
}

/* Блок 14. Полезные статьи */
.articles {
    padding-block: 90px;
    background:
        radial-gradient(circle at 0 100%, rgba(23, 99, 197, 0.08), transparent 300px),
        var(--color-surface);
}

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

.article-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e1e9f3;
    border-radius: 8px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.article-card:hover {
    box-shadow: 0 16px 32px rgba(39, 82, 140, 0.11);
    transform: translateY(-4px);
}

.article-card__image {
    display: block;
    height: 190px;
    overflow: hidden;
    background: #e8edf3;
}

.article-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.article-card:hover .article-card__image img {
    transform: scale(1.04);
}

.article-card__content {
    padding: 20px;
}

.article-card__category {
    color: #1763c5;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.article-card h3 {
    margin: 9px 0;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.4;
}

.article-card h3 a:hover {
    color: #1763c5;
}

.article-card p {
    margin: 0;
    color: #68778e;
    font-size: 13px;
    line-height: 1.6;
}

.article-card__more {
    display: inline-block;
    margin-top: 17px;
    color: #1763c5;
    font-size: 13px;
    font-weight: 800;
}

/* Блок 15. Призыв вызвать мастера */
.cta {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}

.cta::before,
.cta::after {
    position: absolute;
    content: "";
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
}

.cta::before {
    top: -120px;
    left: -80px;
    width: 300px;
    height: 300px;
}

.cta::after {
    right: -100px;
    bottom: -180px;
    width: 380px;
    height: 380px;
}

.cta__container {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 270px;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding-block: 50px;
}

.cta__content {
    max-width: 720px;
}

.cta__label {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    opacity: 0.75;
}

.cta h2 {
    margin: 10px 0 12px;
    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
}

.cta p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.65;
}

.cta__actions {
    display: flex;
    flex: 0 0 auto;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
}

.cta__button {
    display: inline-flex;
    min-width: 220px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 800;
    border: 1px solid #fff;
    border-radius: 7px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.cta__button--light {
    color: #1763c5;
    background: #fff;
}

.cta__button--light:hover {
    color: #fff;
    background: transparent;
}

.cta__button--outline:hover {
    color: #1763c5;
    background: #fff;
}

/* Блок 16. Контакты */
.contacts {
    padding-block: 90px;
    background: #fff;
}

.contacts__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    overflow: hidden;
    border: 1px solid #e0e8f3;
    border-radius: 9px;
    box-shadow: var(--shadow-card);
}

.contacts__info {
    padding: 40px;
    color: #fff;
    background:
        radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.1), transparent 250px),
        var(--color-primary);
}

.contacts__info-head > span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    opacity: 0.7;
}

.contacts__info h3,
.contacts__form h3 {
    margin: 10px 0 0;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.35;
}

.contacts__list {
    display: grid;
    gap: 18px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.contacts__list li {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contacts__list li > span,
.contacts__list a,
.contacts__list strong {
    display: block;
}

.contacts__list li > span {
    margin-bottom: 5px;
    font-size: 12px;
    opacity: 0.68;
}

.contacts__list a,
.contacts__list strong {
    font-size: 16px;
    font-weight: 800;
}

.contacts__notice {
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    line-height: 1.6;
}

.contacts__form {
    padding: 40px;
    background: #fff;
}

.contacts__form > p {
    margin: 8px 0 25px;
    color: #68778e;
    font-size: 14px;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.contact-form label {
    display: grid;
    gap: 7px;
}

.contact-form label:nth-child(4) {
    grid-column: 1 / -1;
}

.contact-form label > span {
    color: #42516a;
    font-size: 12px;
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    color: #15213d;
    font: inherit;
    font-size: 14px;
    background: #f8fafd;
    border: 1px solid #dce5f0;
    border-radius: 7px;
    outline: none;
    resize: vertical;
}

.contact-form input,
.contact-form select {
    height: 48px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #1763c5;
    box-shadow: 0 0 0 3px rgba(23, 99, 197, 0.1);
}

.contact-form button {
    grid-column: 1 / -1;
    min-height: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    background: var(--color-accent);
    border: 0;
    border-radius: 7px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #e95831;
}

.contact-form small {
    grid-column: 1 / -1;
    color: #8a96aa;
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
}

/* Блок 17. Подвал */
.footer {
    color: rgba(255, 255, 255, 0.72);
    background: #15182c;
}

.footer__main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.8fr 1fr;
    gap: 55px;
    padding-block: 55px;
}

.footer__about img {
    display: block;
    width: 110px;
    height: 110px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
}

.footer__about p {
    max-width: 330px;
    margin: 18px 0 0;
    font-size: 13px;
    line-height: 1.7;
}

.footer h3 {
    margin: 0 0 17px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.footer__services,
.footer__nav,
.footer__contacts {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.footer__services a,
.footer__nav a {
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer__services a:hover,
.footer__nav a:hover {
    color: #fff;
}

.footer__phone {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
}

.footer__contacts span {
    font-size: 12px;
}

.footer__callback {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    padding: 8px 16px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    background: var(--color-accent);
    border-radius: 6px;
}

.footer__bottom {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    font-size: 11px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__bottom a:hover {
    color: #fff;
}

/* Мобильная панель связи */
.mobile-contact-bar {
    display: none;
}

@keyframes action-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 66, 0.34);
    }

    60% {
        box-shadow: 0 0 0 9px rgba(255, 107, 66, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 66, 0);
    }
}

@media (max-width: 1100px) {
    .header__menu {
        gap: 25px;
        margin-left: 30px;
    }

    .header__nav {
        gap: 18px;
    }

    .hero__container {
        grid-template-columns: minmax(0, 1fr) 350px;
        gap: 45px;
    }

    .stats__item {
        padding-inline: 16px;
    }

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

    .preparation-card {
        min-height: 220px;
    }

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

    .advantage-card:nth-child(10) {
        grid-column: auto;
    }

    .guarantee__main-path {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .guarantee__arrow {
        height: 22px;
        transform: rotate(90deg);
    }

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

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

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

    body {
        padding-bottom: calc(78px + env(safe-area-inset-bottom));
    }

    .topbar__nav {
        display: none;
    }

    .header {
        position: sticky;
        top: 0;
    }

    .topbar__container {
        justify-content: center;
    }

    .header__container {
        display: grid;
        grid-template-columns: minmax(0, 220px) auto 44px;
        grid-template-rows: 1fr;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        min-height: 82px;
        padding-block: 5px;
    }

    .logo {
        grid-column: 1;
        grid-row: 1;
        min-width: 0;
        align-self: center;
    }

    .logo__image {
        width: 100%;
        max-width: 220px;
        height: 78px;
    }

    .header__mobile-phone {
        display: block;
        grid-column: 2;
        grid-row: 1;
        align-self: center;
        justify-self: center;
        color: var(--color-primary);
        font-size: clamp(10px, 2.8vw, 13px);
        font-weight: 800;
        line-height: 1.2;
        white-space: nowrap;
    }

    .header__burger {
        display: inline-flex;
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
    }

    .header__menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: block;
        max-height: 0;
        margin: 0;
        padding: 0 20px;
        overflow: hidden;
        visibility: hidden;
        background: #fff;
        box-shadow: 0 12px 22px rgba(19, 48, 92, 0.12);
        opacity: 0;
        transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.2s ease, visibility 0.3s;
    }

    .header.is-menu-open .header__menu {
        max-height: calc(100vh - 82px);
        max-height: calc(100dvh - 82px);
        padding-block: 22px 28px;
        overflow-y: auto;
        visibility: visible;
        opacity: 1;
    }

    .header__nav {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        font-size: 16px;
        line-height: 1.4;
    }

    .header__nav a {
        padding: 14px 0;
        border-bottom: 1px solid #e7edf6;
    }

    .header__nav-item--dropdown {
        border-bottom: 1px solid #e7edf6;
    }

    .header__services-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 14px 0;
        text-align: left;
    }

    .header__submenu {
        position: static;
        display: grid;
        width: auto;
        max-height: 0;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 0 0 14px;
        overflow: hidden;
        visibility: visible;
        background: #f7f9fc;
        border: 0;
        border-radius: 8px;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        transition: max-height 0.35s ease, padding 0.35s ease;
    }

    .header__nav-item--dropdown:hover .header__submenu,
    .header__nav-item--dropdown:focus-within .header__submenu {
        max-height: 0;
        padding-block: 0;
    }

    .header__nav-item--dropdown.is-submenu-open .header__submenu {
        max-height: 820px;
        padding-block: 12px 14px;
    }

    .header__submenu::before {
        display: none;
    }

    .header__submenu-group + .header__submenu-group {
        margin-top: 13px;
    }

    .header__submenu-group strong {
        margin: 0 14px 4px 0;
        padding-bottom: 7px;
        font-size: 12px;
    }

    .header__submenu-group a {
        margin-right: 14px;
        padding: 7px 0;
        font-size: 14px;
        border-bottom: 0;
    }

    .header__contacts {
        display: flex;
        width: 100%;
        align-items: center;
        flex-direction: column;
        gap: 8px;
        margin-top: 20px;
    }

    .header__phone {
        font-size: 18px;
        text-align: center;
    }

    .header__callback {
        width: min(100%, 260px);
        margin-top: 8px;
        font-size: 14px;
    }

    .header.is-menu-open .header__burger-lines span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .header.is-menu-open .header__burger-lines span:nth-child(2) {
        opacity: 0;
    }

    .header.is-menu-open .header__burger-lines span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero__container {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-block: 54px;
    }

    .hero {
        background-position: 58% center;
        background-attachment: scroll;
    }

    .hero__content {
        width: 100%;
        max-width: 720px;
        margin-inline: auto;
    }

    .hero__form {
        width: 100%;
        max-width: 560px;
        margin-inline: auto;
    }

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

    .stats__item {
        justify-content: flex-start;
        min-height: 92px;
        padding-inline: 24px;
    }

    .stats__item:nth-child(2)::after {
        display: none;
    }

    .stats__item:nth-child(-n + 2) {
        border-bottom: 1px solid #dce6f3;
    }

    .prices {
        padding-block: 70px;
    }

    .preparations {
        padding-block: 70px;
    }

    .preparations__alternative-heading {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 12px;
    }

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

    .advantages {
        padding-block: 70px;
    }

    .official__card {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .official__documents {
        padding-top: 23px;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.17);
        border-left: 0;
    }

    .guarantee {
        padding-block: 70px;
    }

    .works,
    .articles,
    .contacts {
        padding-block: 70px;
    }

    .cta__container {
        align-items: flex-start;
        flex-direction: column;
        gap: 28px;
    }

    .cta__actions {
        width: 100%;
        flex-direction: row;
    }

    .cta__button {
        flex: 1 1 0;
    }

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

    .mobile-contact-bar {
        position: fixed;
        z-index: 100;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        min-height: 78px;
        padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, 0.97);
        border-top: 1px solid #e1e7ef;
        box-shadow: 0 -7px 22px rgba(20, 45, 80, 0.11);
        backdrop-filter: blur(10px);
    }

    .mobile-contact-bar__item {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
        gap: 5px;
        min-width: 0;
        color: #303b50;
        font-size: 12px;
        font-weight: 600;
        line-height: 1.2;
        text-align: center;
    }

    .mobile-contact-bar__item .material-symbols-outlined {
        display: grid;
        width: 30px;
        height: 30px;
        color: #fff;
        font-size: 18px;
        border-radius: 50%;
        place-items: center;
    }

    .mobile-contact-bar__item--telegram .material-symbols-outlined {
        background: #2aabee;
    }

    .mobile-contact-bar__item--max .material-symbols-outlined {
        background: #7d38ed;
    }

    .mobile-contact-bar__item--phone .material-symbols-outlined {
        background: #36b980;
    }

    .mobile-contact-bar__item--request .material-symbols-outlined {
        background: var(--color-accent);
    }
}

@media (max-width: 480px) {
    .container {
        padding-inline: 15px;
    }

    .header__container {
        grid-template-columns: minmax(0, 1fr) auto 44px;
        column-gap: 8px;
    }

    .logo__image {
        max-width: 190px;
        height: 72px;
    }

    .hero__container {
        gap: 30px;
        min-height: auto;
        padding-block: 38px;
    }

    .hero__eyebrow {
        margin-bottom: 15px;
        font-size: 11px;
    }

    .hero__title {
        font-size: 34px;
        line-height: 1.12;
        letter-spacing: -0.8px;
    }

    .hero__text {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.55;
    }

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

    .hero__benefits li {
        align-items: flex-start;
        font-size: 12px;
    }

    .hero__form {
        padding: 22px 18px;
    }

    .hero__form-title {
        font-size: 19px;
    }

    .stats__list {
        grid-template-columns: 1fr;
        padding-block: 8px;
    }

    .stats__item {
        min-height: 78px;
        padding: 14px 6px;
    }

    .stats__item:not(:last-child)::after {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        width: auto;
        height: 1px;
    }

    .stats__item:nth-child(2)::after {
        display: block;
    }

    .stats__item:nth-child(-n + 2) {
        border-bottom: 0;
    }

    .stats__icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }

    .stats__content strong {
        font-size: 14px;
    }

    .stats__content span {
        font-size: 12px;
    }

    .prices {
        padding-block: 54px;
    }

    .section-heading {
        margin-bottom: 26px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-heading__text {
        font-size: 14px;
    }

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

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

    .prices__table-wrap {
        border-radius: 9px;
    }

    .preparations {
        padding-block: 54px;
    }

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

    .preparation-card {
        min-height: auto;
        padding: 24px 20px;
    }

    .preparations__group--alternative {
        padding: 25px 18px;
    }

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

    .advantages {
        padding-block: 54px;
    }

    .official {
        padding-block: 10px 54px;
    }

    .official__card {
        padding: 25px 18px;
    }

    .official__intro {
        align-items: flex-start;
        gap: 14px;
    }

    .official__main-icon {
        flex-basis: 46px;
        width: 46px;
        height: 46px;
        font-size: 25px;
    }

    .official__intro h2 {
        font-size: 20px;
    }

    .official__documents ul {
        grid-template-columns: 1fr;
    }

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

    .advantage-card {
        min-height: auto;
        padding: 24px 20px;
    }

    .guarantee {
        padding-block: 54px;
    }

    .guarantee__diagram {
        padding: 20px 14px;
    }

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

    .guarantee-outcome + .guarantee-outcome {
        border-top: 1px solid #dce6f3;
        border-left: 0;
    }

    .guarantee__decision-question {
        justify-content: flex-start;
    }

    .guarantee__loop {
        justify-content: flex-start;
    }

    .guarantee__contract {
        align-items: flex-start;
        padding: 18px;
    }

    .works,
    .articles,
    .contacts {
        padding-block: 54px;
    }

    .works__grid,
    .articles__list {
        grid-template-columns: 1fr;
    }

    .work-card > img {
        height: 230px;
    }

    .article-card__image {
        height: 220px;
    }

    .cta__container {
        padding-block: 45px;
    }

    .cta h2 {
        font-size: 30px;
    }

    .cta__actions {
        flex-direction: column;
    }

    .cta__button {
        width: 100%;
    }

    .contacts__info,
    .contacts__form {
        padding: 28px 20px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form label:nth-child(4),
    .contact-form button,
    .contact-form small {
        grid-column: auto;
    }

    .footer__main {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-block: 45px;
    }

    .footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 7px;
        padding-block: 20px;
    }
}

/* Страница услуги: уничтожение клопов */
.service-hero {
    position: relative;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(6, 35, 78, 0.94) 0%, rgba(11, 69, 147, 0.78) 52%, rgba(4, 30, 66, 0.66) 100%),
        url("../images/hero-klopy.webp") 58% center / cover no-repeat;
}

.service-hero__container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: center;
    gap: 72px;
    min-height: 650px;
    padding-block: 64px;
}

.service-hero__content {
    max-width: 760px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
}

.breadcrumbs a {
    color: #fff;
}

.service-hero__label,
.service-kicker {
    display: inline-block;
    margin-bottom: 16px;
    color: #9fd0ff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(40px, 4.25vw, 66px);
    line-height: 1.06;
    letter-spacing: -0.045em;
}

.service-hero__content > p {
    max-width: 690px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.65;
}

.service-hero__proofs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.service-hero__proofs > div {
    display: grid;
    min-width: 210px;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.service-hero__proofs strong {
    font-size: 22px;
    line-height: 1.15;
}

.service-hero__proofs span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
}

.service-hero__benefits {
    display: grid;
    gap: 12px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.service-hero__benefits li {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 14px;
    font-weight: 700;
}

.service-hero__benefits .material-symbols-outlined {
    color: #8ee0b3;
    font-size: 23px;
}

.service-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.service-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.service-button--light {
    color: var(--color-primary-dark);
    background: #fff;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.service-button--ghost {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.42);
}

.service-button--primary {
    background: var(--color-primary);
    box-shadow: 0 10px 22px rgba(23, 100, 204, 0.22);
}

.service-hero__stat-note {
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
}

.service-facts {
    background: #fff;
    border-bottom: 1px solid var(--color-border);
}

.service-facts__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.service-facts article {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 13px;
    min-height: 122px;
    padding: 24px;
}

.service-facts article:not(:last-child)::after {
    position: absolute;
    top: 24px;
    right: 0;
    bottom: 24px;
    width: 1px;
    background: var(--color-border);
    content: "";
}

.service-facts .material-symbols-outlined {
    grid-row: 1 / 3;
    color: var(--color-primary);
    font-size: 34px;
}

.service-facts strong {
    color: var(--color-heading);
    font-size: 15px;
}

.service-facts p {
    margin: 4px 0 0;
    font-size: 12px;
    line-height: 1.5;
}

.service-section {
    padding-block: 92px;
}

.service-section--soft {
    background: var(--color-surface);
}

.section-heading {
    max-width: 800px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading > span {
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 9px 0 14px;
    color: var(--color-heading);
    font-size: clamp(30px, 3vw, 43px);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.section-heading p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
}

.section-heading--left {
    margin: 0;
    text-align: left;
}

.service-included {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    margin-top: 24px;
}

.service-included strong,
.service-included span {
    padding: 9px 14px;
    font-size: 13px;
    border-radius: 30px;
}

.service-included strong {
    color: #fff;
    background: var(--color-primary);
}

.service-included span {
    color: var(--color-heading);
    background: var(--color-primary-soft);
}

.price-tabs__buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.price-tabs__button {
    min-height: 46px;
    padding: 10px 24px;
    color: var(--color-heading);
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 30px;
    cursor: pointer;
}

.price-tabs__button.is-active {
    color: #fff;
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 8px 18px rgba(23, 100, 204, 0.2);
}

.price-tabs__scroll-hint {
    display: none;
}

.price-tabs__panel[hidden] {
    display: none;
}

.prices__table--business {
    min-width: 1220px;
}

.prices__table--business caption {
    padding: 14px 18px;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    text-align: left;
    background: var(--color-primary-dark);
    caption-side: top;
}

.prices__table--business thead tr:first-child th {
    color: #fff;
    background: var(--color-primary);
    border-color: rgba(255, 255, 255, 0.2);
}

.prices__table--business thead tr:nth-child(2) th {
    min-width: 130px;
    color: var(--color-heading);
    font-size: 12px;
    line-height: 1.35;
    background: #eaf2ff;
}

.prices__table--business th,
.prices__table--business td {
    padding: 13px 12px;
    white-space: nowrap;
}

.prices__table--business tbody td:nth-child(4),
.prices__table--business tbody td:nth-child(8),
.prices__table--business tbody td:nth-child(9) {
    background: #f3f8ff;
}

.prices__table--business tbody td:nth-child(8),
.prices__table--business tbody td:nth-child(9) {
    color: #087f4f;
    font-weight: 800;
}

.prices__table--business thead tr:first-child th:first-child,
.prices__table--business tbody th {
    position: sticky;
    left: 0;
    z-index: 2;
}

.prices__table--business thead tr:first-child th:first-child {
    z-index: 3;
}

.business-price-note {
    margin: 13px 0 0;
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.55;
}

.tariff-comparison {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.tariff-comparison article,
.price-explanation {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 22px 24px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: var(--shadow-card);
}

.tariff-comparison .material-symbols-outlined,
.price-explanation .material-symbols-outlined {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    color: var(--color-primary);
    font-size: 22px;
    background: var(--color-primary-soft);
    border-radius: 50%;
    place-items: center;
}

.tariff-comparison h3,
.price-explanation h3 {
    margin: 0 0 7px;
    color: var(--color-heading);
    font-size: 17px;
}

.tariff-comparison p,
.price-explanation p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
}

.price-explanation {
    max-width: 920px;
    margin: 16px auto 0;
    background: linear-gradient(135deg, #f2f7ff, #fff);
    border-color: rgba(23, 100, 204, 0.2);
}

.section-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 28px;
    text-align: left;
}

.section-action > span {
    max-width: 390px;
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.5;
}

.section-action--accent {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
}

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

.info-card,
.source-grid article {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    box-shadow: var(--shadow-card);
}

.info-card {
    overflow: hidden;
    padding: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover {
    box-shadow: 0 15px 30px rgba(30, 74, 136, 0.14);
    transform: translateY(-4px);
}

.info-card > img {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.info-card__body {
    padding: 22px 24px 25px;
}

.info-card .material-symbols-outlined,
.source-grid .material-symbols-outlined {
    display: grid;
    width: 52px;
    height: 52px;
    color: var(--color-primary);
    font-size: 29px;
    background: var(--color-primary-soft);
    border-radius: 13px;
    place-items: center;
}

.info-card h3,
.source-grid h3 {
    margin: 22px 0 9px;
    color: var(--color-heading);
    font-size: 18px;
}

.info-card h3 {
    margin-top: 0;
}

.info-card p,
.source-grid p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
}

.signs-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 28px;
}

.signs-detail__article {
    padding: 30px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    box-shadow: var(--shadow-card);
}

.signs-detail__label {
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.signs-detail__article h3 {
    margin: 8px 0 21px;
    color: var(--color-heading);
    font-size: 22px;
    line-height: 1.3;
}

.signs-detail__article > ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding-left: 19px;
}

.signs-detail__article > ul li {
    padding-left: 3px;
    font-size: 13px;
    line-height: 1.65;
}

.signs-detail__article > ul li::marker {
    color: var(--color-primary);
}

.signs-detail__warning {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-top: 21px;
    padding: 15px;
    color: #765a3d;
    background: #fff8ef;
    border: 1px solid #f3dfc4;
    border-radius: 9px;
}

.signs-detail__warning .material-symbols-outlined {
    color: var(--color-accent);
    font-size: 23px;
}

.signs-detail__warning p {
    margin: 0;
    font-size: 12px;
    line-height: 1.6;
}

.physical-signs {
    display: grid;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.physical-signs li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.physical-signs li > span {
    display: grid;
    flex: 0 0 31px;
    height: 31px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    background: var(--color-primary);
    border-radius: 50%;
    place-items: center;
}

.physical-signs strong {
    display: block;
    margin-bottom: 4px;
    color: var(--color-heading);
    font-size: 14px;
}

.physical-signs p {
    margin: 0;
    font-size: 12px;
    line-height: 1.6;
}

.service-note {
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 950px;
    margin: 28px auto 0;
    padding: 20px 24px;
    background: #fff;
    border-left: 4px solid var(--color-primary);
    border-radius: 10px;
    box-shadow: var(--shadow-card);
}

.service-note .material-symbols-outlined {
    color: var(--color-primary);
    font-size: 34px;
}

.service-note p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
}

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

.biology-grid article {
    display: flex;
    gap: 17px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    box-shadow: var(--shadow-card);
}

.biology-grid .material-symbols-outlined {
    display: grid;
    flex: 0 0 46px;
    height: 46px;
    color: var(--color-primary);
    font-size: 26px;
    background: var(--color-primary-soft);
    border-radius: 12px;
    place-items: center;
}

.biology-grid h3 {
    margin: 0 0 7px;
    color: var(--color-heading);
    font-size: 16px;
    line-height: 1.35;
}

.biology-grid p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
}

.bedbug-profile {
    display: flex;
    align-items: center;
    gap: 25px;
    max-width: 900px;
    margin: 28px auto 0;
    padding: 22px 28px;
    background: #fff;
    border-left: 4px solid var(--color-primary);
    border-radius: 14px;
    box-shadow: var(--shadow-card);
}

.bedbug-profile img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    background: #eef3fb;
    border-radius: 50%;
}

.bedbug-profile h3 {
    margin: 0 0 7px;
    color: var(--color-heading);
}

.bedbug-profile p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}

.bedbug-article {
    margin-top: 28px;
    padding: 42px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    box-shadow: var(--shadow-card);
}

.bedbug-article__intro {
    max-width: 780px;
    margin-bottom: 30px;
}

.bedbug-article__intro > span {
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bedbug-article__intro h3 {
    margin: 7px 0 12px;
    color: var(--color-heading);
    font-size: clamp(25px, 2.4vw, 34px);
    line-height: 1.2;
}

.bedbug-article__intro p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

.bedbug-article__facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    overflow: hidden;
    background: var(--color-border);
    border: 1px solid var(--color-border);
    border-radius: 12px;
}

.bedbug-article__facts section {
    padding: 25px;
    background: #fff;
}

.bedbug-article__facts h4 {
    margin: 0 0 9px;
    color: var(--color-heading);
    font-size: 16px;
}

.bedbug-article__facts p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
}

.life-cycle {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 18px;
    margin-top: 25px;
    padding: 24px;
    background: var(--color-primary-soft);
    border-radius: 12px;
}

.life-cycle > div {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dbe6f4;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(30, 74, 136, 0.07);
}

.life-cycle > div > img {
    grid-column: 1 / 3;
    width: 100%;
    height: 145px;
    margin-bottom: 16px;
    object-fit: cover;
}

.life-cycle > div > span {
    display: grid;
    grid-column: 1;
    grid-row: 2 / 4;
    width: 42px;
    height: 42px;
    color: #fff;
    font-weight: 800;
    background: var(--color-primary);
    border-radius: 50%;
    place-items: center;
    margin: 0 0 16px 16px;
}

.life-cycle strong {
    grid-column: 2;
    grid-row: 2;
    color: var(--color-heading);
    font-size: 15px;
    padding-right: 15px;
}

.life-cycle small {
    grid-column: 2;
    grid-row: 3;
    color: var(--color-text);
    font-size: 11px;
    align-self: start;
    padding: 0 15px 16px 0;
}

.life-cycle > i {
    color: #8db3e5;
}

.life-cycle__credits {
    margin: 10px 3px 0;
    color: #8a96a9;
    font-size: 10px;
    line-height: 1.5;
}

.life-cycle__credits a {
    color: #6e7d93;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.method-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.method-steps article {
    position: relative;
    min-height: 265px;
    padding: 26px 22px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    box-shadow: var(--shadow-card);
}

.method-steps b {
    color: #cfe1f9;
    font-size: 42px;
    line-height: 1;
}

.method-steps h3 {
    margin: 34px 0 10px;
    color: var(--color-heading);
    font-size: 17px;
}

.method-steps p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
}

.service-section--blue {
    color: rgba(255, 255, 255, 0.8);
    background: linear-gradient(135deg, #0e54b6, #176fd7);
}

.preparation-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 80px;
}

.preparation-layout h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(32px, 3vw, 45px);
}

.preparation-layout > div > p {
    font-size: 16px;
    line-height: 1.7;
}

.preparation-warning {
    display: flex;
    gap: 13px;
    margin-top: 28px;
    padding: 18px;
    color: #fff;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 12px;
}

.preparation-warning p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
}

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

.preparation-list li {
    display: flex;
    gap: 17px;
    padding: 20px;
    color: var(--color-text);
    background: #fff;
    border-radius: 12px;
}

.preparation-list li > span {
    display: grid;
    flex: 0 0 38px;
    height: 38px;
    color: #fff;
    font-weight: 800;
    background: var(--color-primary);
    border-radius: 50%;
    place-items: center;
}

.preparation-list p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
}

.preparation-list strong {
    display: block;
    margin-bottom: 4px;
    color: var(--color-heading);
    font-size: 15px;
}

.guarantee-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1.15fr;
    align-items: center;
    gap: 12px;
}

.guarantee-highlight {
    display: grid;
    grid-template-columns: 0.62fr 1.38fr;
    gap: 16px;
    margin-bottom: 22px;
}

.guarantee-highlight__stat,
.guarantee-highlight__method {
    min-height: 145px;
    padding: 24px;
    border-radius: 14px;
}

.guarantee-highlight__stat {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
}

.guarantee-highlight__stat strong {
    font-size: 48px;
    line-height: 1;
}

.guarantee-highlight__stat span {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.55;
}

.guarantee-highlight__method {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--color-text);
    background: #f0f8f4;
    border: 1px solid #d6eee0;
}

.guarantee-highlight__method .material-symbols-outlined {
    display: grid;
    flex: 0 0 48px;
    height: 48px;
    color: var(--color-success);
    font-size: 27px;
    background: #fff;
    border-radius: 50%;
    place-items: center;
}

.guarantee-highlight__method p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
}

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

.aftercare-grid article {
    padding: 25px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    box-shadow: var(--shadow-card);
}

.aftercare-grid article > span {
    color: #c7daf4;
    font-size: 34px;
    font-weight: 800;
}

.aftercare-grid h3 {
    margin: 20px 0 8px;
    color: var(--color-heading);
    font-size: 17px;
}

.aftercare-grid p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
}

.guarantee-flow article {
    min-height: 210px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    box-shadow: var(--shadow-card);
}

.guarantee-flow article > span {
    display: grid;
    width: 37px;
    height: 37px;
    color: #fff;
    font-weight: 800;
    background: var(--color-primary);
    border-radius: 50%;
    place-items: center;
}

.guarantee-flow h3 {
    margin: 27px 0 8px;
    color: var(--color-heading);
    font-size: 17px;
}

.guarantee-flow p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
}

.guarantee-flow > i {
    color: #9bbce7;
}

.guarantee-flow__decision {
    border-color: rgba(37, 189, 112, 0.35) !important;
}

.guarantee-flow__decision > span {
    background: var(--color-success) !important;
}

.guarantee-terms {
    width: 100%;
    margin: 28px 0 0;
    padding: 28px 32px;
    background: var(--color-primary-soft);
    border-radius: 14px;
}

.guarantee-terms h3 {
    margin: 0 0 14px;
    color: var(--color-heading);
}

.guarantee-terms ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 28px;
    margin: 0;
    padding-left: 20px;
    font-size: 13px;
    line-height: 1.6;
}

.guarantee-clarification {
    display: flex;
    gap: 19px;
    width: 100%;
    margin: 18px 0 0;
    padding: 25px 28px;
    background: #fff9f1;
    border: 1px solid #f4dfc4;
    border-radius: 14px;
}

.guarantee-clarification > .material-symbols-outlined {
    color: var(--color-accent);
    font-size: 32px;
}

.guarantee-clarification h3 {
    margin: 0 0 8px;
    color: var(--color-heading);
    font-size: 17px;
}

.guarantee-clarification p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
}

.guarantee-clarification p + p {
    margin-top: 9px;
}

.hiding-places {
    margin-top: 30px;
    padding: 28px;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow-card);
}

.hiding-places h3 {
    margin: 0 0 17px;
    color: var(--color-heading);
    text-align: center;
}

.hiding-places div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
}

.hiding-places span {
    padding: 8px 13px;
    color: var(--color-primary-dark);
    font-size: 13px;
    font-weight: 700;
    background: var(--color-primary-soft);
    border-radius: 30px;
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    gap: 70px;
}

.mistakes-layout {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    align-items: center;
    gap: 70px;
    padding: 54px;
    background: var(--color-surface);
    border-radius: 20px;
}

.service-kicker--dark {
    color: var(--color-primary);
}

.mistakes-layout h2 {
    margin: 0 0 16px;
    color: var(--color-heading);
    font-size: clamp(30px, 3vw, 43px);
    line-height: 1.15;
}

.mistakes-layout > div > p {
    font-size: 15px;
    line-height: 1.7;
}

.mistakes-layout__button {
    display: inline-flex;
    margin-top: 16px;
    padding: 13px 19px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    background: var(--color-accent);
    border-radius: 7px;
}

.mistakes-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}

.mistakes-list article {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(30, 74, 136, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mistakes-list article:hover {
    box-shadow: 0 14px 28px rgba(30, 74, 136, 0.13);
    transform: translateY(-4px);
}

.mistakes-list img {
    display: block;
    width: 100%;
    height: 205px;
    object-fit: cover;
    object-position: center;
}

.mistakes-list article > div {
    padding: 17px 18px 19px;
}

.mistakes-list h3 {
    margin: 0 0 6px;
    color: var(--color-heading);
    font-size: 15px;
}

.mistakes-list p {
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-list details {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
}

.faq-list summary {
    position: relative;
    padding: 19px 52px 19px 20px;
    color: var(--color-heading);
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::after {
    position: absolute;
    top: 50%;
    right: 20px;
    color: var(--color-primary);
    font-size: 22px;
    content: "+";
    transform: translateY(-50%);
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list p {
    margin: 0;
    padding: 0 20px 20px;
    font-size: 14px;
    line-height: 1.7;
}

.service-official {
    padding-bottom: 92px;
}

.service-official .official__card {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 18px 24px;
    padding: 27px 29px;
}

.service-official .official__documents {
    padding-left: 22px;
}

.service-official .official__documents {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: center;
    gap: 9px;
}

.service-official .official__documents > div {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 10px 13px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 7px;
}

.service-official .official__documents .material-symbols-outlined {
    flex: 0 0 auto;
    font-size: 21px;
    line-height: 1;
}

.service-official .official__documents strong {
    display: flex;
    align-items: center;
    min-height: 21px;
    font-size: 12px;
    line-height: 1.35;
}

.service-official .official__registry {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    gap: 14px;
    padding: 15px 17px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
}

.service-official .official__registry .material-symbols-outlined {
    flex: 0 0 auto;
    font-size: 25px;
}

.service-official .official__registry p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.55;
}

.service-official .official__registry strong {
    color: #fff;
}

.service-official .license-preview {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    color: var(--color-heading);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(235, 244, 255, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 8px;
}

.license-preview > .material-symbols-outlined {
    display: grid;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    color: #fff;
    font-size: 27px;
    background: var(--color-primary);
    border-radius: 50%;
    place-items: center;
}

.license-preview > div {
    display: grid;
    gap: 3px;
}

.license-preview small,
.license-preview span {
    color: var(--color-muted);
    font-size: 11px;
}

.license-preview strong {
    font-size: clamp(16px, 2vw, 22px);
}

.service-cases {
    background: #fff;
}

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

.case-grid article {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    box-shadow: var(--shadow-card);
}

.case-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.case-grid article > div {
    padding: 22px 24px 25px;
}

.case-grid article > div > span {
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.case-grid h3 {
    margin: 7px 0 8px;
    color: var(--color-heading);
    font-size: 19px;
}

.case-grid p,
.cases-note p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
}

.cases-note {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding: 15px 18px;
    color: var(--color-muted);
    background: var(--color-primary-soft);
    border-radius: 9px;
}

.cases-note .material-symbols-outlined {
    color: var(--color-primary);
}

.service-disclosure {
    margin-top: 24px;
}

.service-disclosure > summary {
    position: relative;
    width: fit-content;
    margin-inline: auto;
    padding: 13px 42px 13px 18px;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 800;
    background: #fff;
    border: 1px solid rgba(23, 100, 204, 0.22);
    border-radius: 30px;
    cursor: pointer;
    list-style: none;
}

.service-disclosure > summary::after {
    position: absolute;
    top: 50%;
    right: 16px;
    font-size: 20px;
    content: "+";
    transform: translateY(-50%);
}

.service-disclosure[open] > summary::after {
    content: "−";
}

.service-disclosure--article > summary {
    margin-bottom: 24px;
}

.service-request {
    padding-block: 78px;
    color: #fff;
    background: linear-gradient(135deg, #0a438f, #1764cc);
}

.service-request__layout {
    display: grid;
    grid-template-columns: 1fr 430px;
    align-items: center;
    gap: 80px;
}

.service-request__layout > div > span {
    color: #9fd0ff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-request h2 {
    max-width: 670px;
    margin: 10px 0 16px;
    font-size: clamp(32px, 3.4vw, 49px);
    line-height: 1.1;
}

.service-request p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

.service-request__layout > div > a {
    display: inline-block;
    margin-top: 16px;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
}

.service-request__form {
    display: grid;
    gap: 11px;
    padding: 26px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(0, 20, 55, 0.23);
}

.service-request__form input,
.service-request__form textarea {
    width: 100%;
    padding: 13px 14px;
    font: inherit;
    font-size: 14px;
    border: 1px solid var(--color-border);
    border-radius: 7px;
    resize: vertical;
}

.service-request__form button {
    min-height: 48px;
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    background: var(--color-accent);
    border: 0;
    border-radius: 7px;
    cursor: pointer;
    animation: action-pulse 2.8s infinite;
}

.service-request__form small {
    color: #929caf;
    font-size: 10px;
    line-height: 1.45;
    text-align: center;
}

@media (max-width: 1100px) {
    .service-hero__container {
        grid-template-columns: minmax(0, 1fr) 350px;
        gap: 40px;
    }

    .method-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .signs-grid,
    .source-grid,
    .biology-grid,
    .aftercare-grid,
    .signs-detail {
        grid-template-columns: repeat(2, 1fr);
    }

    .guarantee-flow {
        grid-template-columns: 1fr 1fr;
    }

    .guarantee-highlight {
        grid-template-columns: 1fr;
    }

    .guarantee-flow > i {
        display: none;
    }
}

@media (max-width: 900px) {
    section[id],
    #hero-form,
    #request-form {
        scroll-margin-top: 94px;
    }

    .service-official .official__card {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-official .official__documents {
        padding-top: 18px;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.17);
        border-left: 0;
    }

    .service-hero {
        background-position: 62% center;
    }

    .service-hero__container,
    .preparation-layout,
    .faq-layout,
    .service-request__layout,
    .mistakes-layout {
        grid-template-columns: 1fr;
    }

    .service-hero__container {
        gap: 38px;
        min-height: auto;
        padding-block: 54px;
    }

    .service-hero__content,
    .service-hero__form {
        width: 100%;
        max-width: 680px;
        margin-inline: auto;
    }

    .service-facts__grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-facts article:nth-child(2)::after {
        display: none;
    }

    .preparation-layout,
    .faq-layout,
    .service-request__layout,
    .mistakes-layout {
        gap: 38px;
    }

    .mistakes-layout {
        padding: 38px;
    }

    .service-request__form {
        width: 100%;
        max-width: 560px;
    }
}

@media (max-width: 640px) {
    .service-official .official__card {
        padding: 23px 18px;
    }

    .service-section {
        padding-block: 56px;
    }

    .service-hero h1 {
        font-size: clamp(31px, 9vw, 36px);
        line-height: 1.1;
    }

    .service-hero__content > p {
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.55;
    }

    .service-hero__proofs,
    .service-hero__actions,
    .section-action {
        flex-direction: column;
    }

    .service-hero__proofs > div,
    .service-hero__actions .service-button,
    .section-action .service-button {
        width: 100%;
    }

    .service-hero__container {
        gap: 28px;
        padding-block: 38px 44px;
    }

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

    .service-hero__label {
        margin-bottom: 12px;
        font-size: 11px;
    }

    .service-hero__proofs {
        gap: 8px;
        margin-top: 18px;
    }

    .service-hero__proofs > div {
        min-width: 0;
        padding: 11px 14px;
    }

    .service-hero__benefits {
        gap: 10px;
        margin-top: 20px;
    }

    .service-hero__benefits li {
        align-items: flex-start;
        font-size: 13px;
        line-height: 1.4;
    }

    .service-hero__actions {
        gap: 9px;
        margin-top: 22px;
    }

    .service-hero__form {
        padding: 22px 18px;
    }

    .service-hero__form input,
    .service-hero__form select,
    .service-request__form input,
    .service-request__form textarea {
        font-size: 16px;
    }

    .price-tabs__buttons {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .price-tabs__button {
        width: 100%;
        padding-inline: 10px;
        font-size: 12px;
    }

    .price-tabs__scroll-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        margin: -6px 0 12px;
        color: var(--color-muted);
        font-size: 12px;
        text-align: center;
    }

    .price-tabs__scroll-hint .material-symbols-outlined {
        color: var(--color-primary);
        font-size: 19px;
    }

    .prices__table-wrap {
        max-width: calc(100vw - 30px);
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
    }

    .prices__table th,
    .prices__table td {
        padding: 13px 14px;
    }

    .prices__table--business th,
    .prices__table--business td {
        padding: 11px 10px;
        font-size: 12px;
    }

    .service-facts__grid,
    .signs-grid,
    .source-grid,
    .biology-grid,
    .aftercare-grid,
    .signs-detail,
    .method-steps,
    .guarantee-flow,
    .guarantee-terms ul,
    .mistakes-list {
        grid-template-columns: 1fr;
    }

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

    .case-grid img {
        height: min(62vw, 280px);
    }

    .section-action {
        text-align: center;
    }

    .service-official .license-preview {
        align-items: flex-start;
    }

    .license-preview strong {
        overflow-wrap: anywhere;
        font-size: 16px;
    }

    .bedbug-article__facts {
        grid-template-columns: 1fr;
    }

    .life-cycle {
        grid-template-columns: 1fr;
    }

    .life-cycle > i {
        justify-self: center;
        transform: rotate(90deg);
    }

    .life-cycle > div > img {
        height: min(65vw, 280px);
    }

    .service-official .official__documents {
        grid-template-columns: 1fr;
    }

    .tariff-comparison {
        grid-template-columns: 1fr;
    }

    .tariff-comparison article,
    .price-explanation {
        padding: 19px;
    }

    .service-official .official__registry {
        align-items: flex-start;
    }

    .service-facts article {
        min-height: 100px;
    }

    .service-facts article:not(:last-child)::after {
        top: auto;
        right: 20px;
        bottom: 0;
        left: 20px;
        width: auto;
        height: 1px;
    }

    .method-steps article,
    .guarantee-flow article {
        min-height: auto;
    }

    .method-steps h3,
    .guarantee-flow h3 {
        margin-top: 18px;
    }

    .service-note {
        align-items: flex-start;
    }

    .service-disclosure > summary {
        width: 100%;
        padding-block: 14px;
        border-radius: 10px;
    }

    .info-card > img {
        height: min(68vw, 270px);
    }

    .bedbug-profile {
        align-items: flex-start;
        padding: 20px;
    }

    .bedbug-article {
        padding: 27px 20px;
    }

    .guarantee-highlight__stat,
    .guarantee-highlight__method,
    .guarantee-clarification {
        align-items: flex-start;
    }

    .guarantee-highlight__stat {
        flex-direction: column;
    }

    .preparation-warning {
        align-items: flex-start;
    }

    .service-request__layout > div > a {
        font-size: 21px;
    }

    .mistakes-layout {
        padding: 28px 20px;
    }

    .mistakes-list img {
        height: min(72vw, 280px);
    }

    .mistakes-list p,
    .info-card p,
    .source-grid p {
        font-size: 14px;
    }

    .cases-note,
    .official__registry,
    .guarantee-clarification,
    .preparation-warning {
        gap: 10px;
        padding: 16px;
    }
}

/* Страница контактов: композиция с картой и плавающей карточкой */
.contacts-title {
    padding-block: 38px 34px;
    background: #fff;
}

.contacts-title .breadcrumbs {
    margin-bottom: 24px;
    color: var(--color-muted);
}

.contacts-title h1 {
    position: relative;
    margin: 0;
    padding-bottom: 18px;
    color: var(--color-heading);
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.contacts-title h1::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 74px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 20px;
    content: "";
}

.contacts-stage-section {
    padding-block: 70px 80px;
    background: #fff;
}

.contacts-stage {
    position: relative;
    min-height: 590px;
}

.contacts-stage__map {
    position: relative;
    overflow: hidden;
    height: 590px;
    background: #e9eef4;
    border: 1px solid var(--color-border);
    border-radius: 14px;
}

.contacts-stage__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.contacts-panel {
    position: absolute;
    top: 50%;
    right: 48px;
    z-index: 2;
    width: min(440px, calc(100% - 96px));
    padding: 38px 40px;
    background: #fff;
    border: 1px solid rgba(17, 61, 114, 0.08);
    border-radius: 12px;
    box-shadow: 0 24px 65px rgba(18, 50, 91, 0.2);
    transform: translateY(-50%);
}

.contacts-panel__eyebrow,
.company-details__eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contacts-panel h2,
.company-details h2 {
    margin: 0 0 25px;
    color: var(--color-heading);
    font-size: clamp(27px, 3vw, 36px);
    line-height: 1.16;
}

.contacts-panel__item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: start;
    gap: 13px;
    padding-block: 15px;
    color: var(--color-heading);
    border-top: 1px solid var(--color-border);
}

.contacts-panel__item > .material-symbols-outlined {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--color-primary);
    font-size: 22px;
    background: #edf5ff;
    border-radius: 50%;
}

.contacts-panel__item small,
.contacts-panel__item strong {
    display: block;
}

.contacts-panel__item small {
    margin-bottom: 4px;
    color: var(--color-muted);
    font-size: 13px;
}

.contacts-panel__item strong {
    font-size: 16px;
    line-height: 1.45;
}

.contacts-panel__messengers {
    margin-top: 14px;
}

.contacts-panel__messengers > span {
    display: block;
    margin-bottom: 9px;
    color: var(--color-muted);
    font-size: 13px;
}

.contacts-panel__messengers > div {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.contacts-panel__messengers a,
.contacts-panel__route {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    padding: 9px 15px;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 800;
    background: #edf5ff;
    border-radius: 7px;
}

.contacts-panel__messengers .material-symbols-outlined {
    font-size: 18px;
}

.contacts-panel__route {
    width: 100%;
    margin-top: 18px;
    color: #fff;
    background: var(--color-primary);
}

.contacts-details-section {
    padding-block: 78px 88px;
    background: var(--color-surface);
}

.contacts-details {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 480px;
    align-items: stretch;
    gap: 40px;
}

.company-details {
    padding: 38px 40px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    box-shadow: var(--shadow-card);
}

.company-details__license {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
    padding: 17px 18px;
    background: #edf5ff;
    border-radius: 9px;
}

.company-details__requisites {
    display: grid;
    gap: 0;
    margin: 0 0 22px;
    padding: 0;
    border-top: 1px solid var(--color-border);
}

.company-details__requisites > div {
    display: grid;
    grid-template-columns: 145px minmax(0, 1fr);
    gap: 15px;
    padding-block: 11px;
    border-bottom: 1px solid var(--color-border);
}

.company-details__requisites dt {
    color: var(--color-muted);
    font-size: 13px;
}

.company-details__requisites dd {
    margin: 0;
    color: var(--color-heading);
    font-size: 14px;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.company-details__license > .material-symbols-outlined {
    color: var(--color-primary);
    font-size: 31px;
}

.company-details__license small,
.company-details__license strong {
    display: block;
}

.company-details__license small {
    margin-bottom: 3px;
    color: var(--color-muted);
    font-size: 12px;
}

.company-details__license strong {
    color: var(--color-heading);
    font-size: 17px;
}

.company-details p,
.inner-form > p {
    margin: 0 0 22px;
    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.65;
}

.company-details ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.company-details li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--color-heading);
    font-size: 14px;
    font-weight: 700;
}

.company-details li .material-symbols-outlined {
    display: grid;
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    place-items: center;
    color: #fff;
    font-size: 17px;
    background: var(--color-primary);
    border-radius: 50%;
}

@media (max-width: 900px) {
    .contacts-stage {
        display: grid;
        min-height: 0;
    }

    .contacts-stage__map {
        height: 440px;
    }

    .contacts-panel {
        position: relative;
        top: auto;
        right: auto;
        width: auto;
        margin: -72px 24px 0;
        transform: none;
    }

    .contacts-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contacts-title {
        padding-block: 28px 27px;
    }

    .contacts-title .breadcrumbs {
        margin-bottom: 18px;
    }

    .contacts-title h1 {
        font-size: 36px;
    }

    .contacts-stage-section {
        padding-block: 44px 55px;
    }

    .contacts-stage__map {
        height: 340px;
        border-radius: 10px;
    }

    .contacts-panel {
        margin: -38px 10px 0;
        padding: 27px 20px;
    }

    .contacts-panel h2,
    .company-details h2 {
        margin-bottom: 20px;
        font-size: 27px;
    }

    .contacts-panel__item {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 11px;
    }

    .contacts-panel__item > .material-symbols-outlined {
        width: 38px;
        height: 38px;
    }

    .contacts-panel__item strong {
        font-size: 15px;
    }

    .contacts-details-section {
        padding-block: 55px 65px;
    }

    .contacts-details {
        gap: 22px;
    }

    .company-details {
        padding: 27px 20px;
    }

    .company-details__license {
        align-items: flex-start;
        padding: 15px;
    }

    .company-details__license strong {
        font-size: 14px;
        overflow-wrap: anywhere;
    }

    .company-details__requisites > div {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .company-details ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 380px) {
    .header__container {
        grid-template-columns: minmax(0, 1fr) auto 42px;
        gap: 5px;
        min-height: 74px;
    }

    .logo__image {
        height: 62px;
    }

    .header__mobile-phone {
        font-size: 10px;
    }

    .service-hero h1 {
        font-size: 29px;
    }

    .price-tabs__buttons {
        grid-template-columns: 1fr;
    }

    .mobile-contact-bar__item {
        font-size: 11px;
    }
}

/* Внутренние страницы: контакты, текст, галерея, отзывы и цены */
.inner-header {
    border-bottom: 1px solid var(--color-border);
}

/* Страница для организаций */
.service-hero--organizations {
    background:
        linear-gradient(90deg, rgba(6, 35, 78, 0.95) 0%, rgba(11, 69, 147, 0.82) 52%, rgba(4, 30, 66, 0.67) 100%),
        url("../images/works/business.webp") center / cover no-repeat;
}

/* Страница уничтожения тараканов */
.service-hero--tarakany {
    background:
        linear-gradient(90deg, rgba(6, 35, 78, 0.94) 0%, rgba(11, 69, 147, 0.78) 52%, rgba(4, 30, 66, 0.66) 100%),
        url("../images/hero-tarakany.webp") center / cover no-repeat;
}

.org-services,
.org-object-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 38px;
}

.org-services article,
.org-object-grid article {
    padding: 27px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: var(--shadow-card);
}

.org-services article > .material-symbols-outlined,
.org-object-grid article > .material-symbols-outlined {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    color: var(--color-primary);
    font-size: 25px;
    background: var(--color-primary-soft);
    border-radius: 10px;
    place-items: center;
}

.org-services h3,
.org-object-grid h3,
.org-steps h3 {
    margin: 0 0 8px;
    color: var(--color-heading);
    font-size: 18px;
}

.org-services p,
.org-object-grid p,
.org-steps p {
    margin: 0;
    color: var(--color-text);
    font-size: 14px;
    line-height: 1.65;
}

.org-contract {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    align-items: start;
    gap: 55px;
}

.org-contract h2 {
    margin: 0 0 18px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
}

.org-contract > div > p {
    color: var(--color-text);
    line-height: 1.75;
}

.org-frequency {
    display: grid;
    gap: 10px;
    margin-top: 25px;
}

.org-frequency > div {
    display: grid;
    grid-template-columns: 175px minmax(0, 1fr);
    gap: 18px;
    padding: 16px 18px;
    background: var(--color-surface);
    border-radius: 9px;
}

.org-frequency strong {
    color: var(--color-primary);
}

.org-frequency span {
    color: var(--color-text);
    font-size: 14px;
}

.org-contract aside {
    padding: 30px;
    background: linear-gradient(145deg, #0d4fa8, #176fd7);
    color: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(20, 82, 163, 0.2);
}

.org-contract aside > .material-symbols-outlined {
    font-size: 40px;
}

.org-contract aside h3 {
    margin: 14px 0;
    font-size: 24px;
}

.org-contract aside ul {
    display: grid;
    gap: 10px;
    margin: 0 0 24px;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.82);
}

.org-special {
    display: grid;
    gap: 11px;
    margin-top: 38px;
}

.org-special details {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
}

.org-special summary {
    position: relative;
    padding: 21px 55px 21px 23px;
    color: var(--color-heading);
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.org-special summary::after {
    position: absolute;
    top: 50%;
    right: 22px;
    color: var(--color-primary);
    font-size: 25px;
    content: "+";
    transform: translateY(-50%);
}

.org-special details[open] summary::after {
    content: "−";
}

.org-special details > div {
    padding: 0 23px 22px;
    color: var(--color-text);
    line-height: 1.72;
}

.org-special details p {
    margin: 0 0 11px;
}

.org-special details p:last-child {
    margin-bottom: 0;
}

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

.org-steps li {
    padding: 22px 19px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 11px;
    box-shadow: var(--shadow-card);
}

.org-steps li > span {
    display: block;
    margin-bottom: 18px;
    color: var(--color-primary);
    font-size: 26px;
    font-weight: 800;
}

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

    .org-contract {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .org-services,
    .org-object-grid,
    .org-steps {
        grid-template-columns: 1fr;
    }

    .org-services article,
    .org-object-grid article {
        padding: 22px 20px;
    }

    .org-frequency > div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .org-contract aside {
        padding: 25px 21px;
    }

    .org-special summary {
        padding: 18px 48px 18px 18px;
        font-size: 15px;
    }

    .org-special details > div {
        padding: 0 18px 19px;
        font-size: 14px;
    }
}

.inner-header [aria-current="page"] {
    color: var(--color-primary);
    font-weight: 800;
}

.inner-hero {
    padding-block: 62px 68px;
    color: #fff;
    background:
        radial-gradient(circle at 86% 20%, rgba(94, 164, 255, 0.3), transparent 28%),
        linear-gradient(135deg, #083b7c, #1764cc);
}

.inner-hero--compact {
    padding-block: 46px 52px;
}

.inner-hero .breadcrumbs {
    margin-bottom: 25px;
}

.inner-hero__eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #a8d3ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.inner-hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.inner-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.65;
}

.inner-section {
    padding-block: 82px;
}

.contacts-page__grid,
.reviews-feedback__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 480px;
    align-items: start;
    gap: 40px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.contact-cards > a,
.contact-cards > div {
    display: flex;
    min-height: 135px;
    align-items: flex-start;
    gap: 15px;
    padding: 24px;
    color: var(--color-heading);
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: var(--shadow-card);
}

.contact-cards .material-symbols-outlined,
.price-service-grid .material-symbols-outlined {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    color: var(--color-primary);
    background: var(--color-primary-soft);
    border-radius: 50%;
    place-items: center;
}

.contact-cards small {
    display: block;
    margin-bottom: 6px;
    color: var(--color-muted);
    font-size: 12px;
}

.contact-cards strong {
    font-size: 15px;
    line-height: 1.45;
}

.inner-form {
    display: grid;
    gap: 14px;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    box-shadow: var(--shadow-card);
}

.inner-form > span,
.reviews-feedback__layout > div > span {
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.inner-form h2,
.reviews-feedback h2 {
    margin: 0 0 8px;
    color: var(--color-heading);
    font-size: 27px;
    line-height: 1.2;
}

.inner-form label {
    display: grid;
    gap: 6px;
    color: var(--color-heading);
    font-size: 12px;
    font-weight: 700;
}

.inner-form input,
.inner-form textarea {
    width: 100%;
    padding: 13px 14px;
    color: var(--color-text);
    font: inherit;
    font-size: 15px;
    background: #f8fafd;
    border: 1px solid var(--color-border);
    border-radius: 7px;
    resize: vertical;
}

.inner-form button {
    min-height: 48px;
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    background: var(--color-primary);
    border: 0;
    border-radius: 7px;
    cursor: pointer;
}

.inner-form > small {
    color: var(--color-muted);
    font-size: 10px;
    line-height: 1.45;
    text-align: center;
}

.inner-form > small a {
    color: var(--color-primary);
}

.contacts-map {
    padding-block: 0 82px;
}

.contacts-map__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 24px;
}

.contacts-map__heading span {
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contacts-map__heading h2 {
    margin: 7px 0 6px;
    color: var(--color-heading);
    font-size: clamp(27px, 3vw, 38px);
}

.contacts-map__heading p {
    margin: 0;
    color: var(--color-muted);
}

.contacts-map__heading > a {
    padding: 11px 16px;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 800;
    border: 1px solid rgba(23, 100, 204, 0.25);
    border-radius: 7px;
}

.contacts-map__frame {
    overflow: hidden;
    height: 440px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    box-shadow: var(--shadow-card);
}

.contacts-map__frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.prose-page {
    max-width: 900px;
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.78;
}

.prose-page h2 {
    margin: 42px 0 13px;
    color: var(--color-heading);
    font-size: 28px;
    line-height: 1.25;
}

.prose-page h3 {
    margin: 30px 0 10px;
    color: var(--color-heading);
    font-size: 21px;
}

.prose-page p,
.prose-page ul {
    margin-block: 0 17px;
}

.prose-page a {
    color: var(--color-primary);
}

.prose-page blockquote,
.prose-page__notice {
    margin: 26px 0;
    padding: 20px 22px;
    background: var(--color-primary-soft);
    border-left: 4px solid var(--color-primary);
    border-radius: 7px;
}

.prose-page__lead {
    color: var(--color-heading);
    font-size: 20px;
    font-weight: 600;
}

.prose-page__date {
    margin-top: 40px;
    color: var(--color-muted);
    font-size: 13px;
}

.inner-cta {
    padding-block: 48px;
    color: #fff;
    background: linear-gradient(135deg, #0a438f, #1764cc);
}

.inner-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.inner-cta span {
    color: #a8d3ff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.inner-cta h2 {
    margin: 7px 0 0;
    font-size: clamp(25px, 3vw, 38px);
}

.inner-footer .footer__bottom {
    border-top: 0;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

.gallery-filters button {
    min-height: 42px;
    padding: 9px 18px;
    color: var(--color-heading);
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    cursor: pointer;
}

.gallery-filters button.is-active {
    color: #fff;
    background: var(--color-primary);
    border-color: var(--color-primary);
}

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

.gallery-grid figure {
    overflow: hidden;
    margin: 0;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: var(--shadow-card);
}

.gallery-grid figure[hidden] {
    display: none;
}

.gallery-grid img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-grid__link {
    position: relative;
    display: block;
    overflow: hidden;
    cursor: zoom-in;
}

.gallery-grid__link::after {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: grid;
    width: 38px;
    height: 38px;
    color: #fff;
    font-family: "Material Symbols Outlined";
    font-size: 21px;
    background: rgba(12, 38, 76, 0.74);
    border-radius: 50%;
    content: "zoom_in";
    place-items: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.gallery-grid__link:hover img {
    transform: scale(1.035);
}

.gallery-grid__link:hover::after {
    background: var(--color-primary);
    transform: scale(1.08);
}

.gallery-grid figcaption {
    display: grid;
    gap: 4px;
    padding: 17px 18px 20px;
}

.gallery-grid figcaption strong {
    color: var(--color-heading);
    font-size: 15px;
}

.gallery-grid figcaption span,
.gallery-page__note {
    color: var(--color-muted);
    font-size: 12px;
}

.gallery-page__note {
    margin: 20px 0 0;
    text-align: center;
}

.reviews-placeholder {
    max-width: 760px;
    margin-inline: auto;
    padding: 48px 35px;
    text-align: center;
    background: var(--color-primary-soft);
    border: 1px dashed rgba(23, 100, 204, 0.35);
    border-radius: 14px;
}

.reviews-placeholder .material-symbols-outlined {
    color: var(--color-primary);
    font-size: 48px;
}

.reviews-placeholder h2 {
    margin: 13px 0 9px;
    color: var(--color-heading);
}

.reviews-placeholder p {
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.65;
}

.reviews-feedback {
    padding-block: 72px;
    background: var(--color-surface);
}

.reviews-page .section-heading,
.reviews-video .section-heading {
    margin-bottom: 36px;
}

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

.review-card {
    display: flex;
    min-height: 300px;
    flex-direction: column;
    padding: 27px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 13px;
    box-shadow: var(--shadow-card);
}

.review-card__header {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
}

.review-card__avatar {
    display: grid;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    background: linear-gradient(145deg, #1764cc, #5f9dea);
    border-radius: 50%;
    place-items: center;
}

.review-card__avatar--green { background: linear-gradient(145deg, #189a62, #54c993); }
.review-card__avatar--orange { background: linear-gradient(145deg, #ef714c, #f6a260); }
.review-card__avatar--violet { background: linear-gradient(145deg, #7954c8, #a88be7); }

.review-card__header strong,
.review-card__header span {
    display: block;
}

.review-card__header strong {
    color: var(--color-heading);
    font-size: 15px;
}

.review-card__header span,
.review-card__header time {
    color: var(--color-muted);
    font-size: 11px;
}

.review-card__header time {
    white-space: nowrap;
}

.review-card__rating {
    margin-top: 20px;
    color: #f5b829;
    font-size: 17px;
    letter-spacing: 2px;
}

.review-card__rating > span {
    color: #dbe1e9;
}

.review-card > p {
    flex: 1 1 auto;
    margin: 14px 0 22px;
    color: var(--color-text);
    font-size: 14px;
    line-height: 1.75;
}

.review-card > footer {
    display: flex;
    align-items: center;
    gap: 7px;
    padding-top: 16px;
    color: #22935d;
    font-size: 11px;
    font-weight: 700;
    border-top: 1px solid var(--color-border);
}

.review-card > footer .material-symbols-outlined {
    font-size: 17px;
}

.reviews-video {
    padding-block: 82px;
    background: var(--color-surface);
}

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

.video-review {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 13px;
    box-shadow: var(--shadow-card);
}

.video-review__preview {
    position: relative;
    display: block;
    overflow: hidden;
    height: 245px;
    background: #132b4d;
}

.video-review__preview::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(6, 27, 56, 0.45), transparent 65%);
    content: "";
}

.video-review__preview img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.video-review__preview:hover img {
    transform: scale(1.04);
}

.video-review__play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: grid;
    width: 62px;
    height: 62px;
    color: #fff;
    background: var(--color-accent);
    border: 5px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(18, 35, 68, 0.35);
    transform: translate(-50%, -50%);
    place-items: center;
}

.video-review__play .material-symbols-outlined {
    font-size: 34px;
}

.video-review__duration {
    position: absolute;
    right: 13px;
    bottom: 12px;
    z-index: 2;
    padding: 4px 7px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    background: rgba(5, 18, 38, 0.76);
    border-radius: 4px;
}

.video-review__body {
    padding: 21px 22px 24px;
}

.video-review__body > span {
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.video-review__body h3 {
    margin: 8px 0 9px;
    color: var(--color-heading);
    font-size: 17px;
    line-height: 1.4;
}

.video-review__body p {
    margin: 0;
    color: var(--color-text);
    font-size: 13px;
    line-height: 1.65;
}

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

@media (max-width: 640px) {
    .reviews-grid,
    .reviews-video__grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        min-height: 0;
        padding: 22px 19px;
    }

    .review-card__header {
        grid-template-columns: 46px minmax(0, 1fr);
    }

    .review-card__avatar {
        width: 46px;
        height: 46px;
    }

    .review-card__header time {
        grid-column: 2;
    }

    .reviews-video {
        padding-block: 58px;
    }

    .video-review__preview {
        height: min(68vw, 290px);
    }
}

.reviews-feedback__layout {
    align-items: center;
}

.reviews-feedback p {
    max-width: 560px;
    line-height: 1.65;
}

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

.price-service-grid > a {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    color: var(--color-text);
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-service-grid > a:hover {
    box-shadow: 0 15px 30px rgba(30, 74, 136, 0.14);
    transform: translateY(-3px);
}

.price-service-grid h2 {
    margin: 0;
    color: var(--color-heading);
    font-size: 18px;
}

.price-service-grid p {
    min-height: 44px;
    margin: 6px 0 13px;
    font-size: 13px;
    line-height: 1.55;
}

.price-service-grid strong {
    color: var(--color-primary);
    font-size: 14px;
}

.price-page-note {
    display: flex;
    max-width: 760px;
    align-items: center;
    gap: 11px;
    margin: 24px auto 0;
    padding: 15px 18px;
    background: var(--color-primary-soft);
    border-radius: 8px;
}

.price-catalog {
    margin-top: 42px;
}

.price-catalog__intro {
    max-width: 820px;
    margin-bottom: 30px;
}

.price-catalog__intro h2 {
    margin: 0 0 12px;
    color: var(--color-heading);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.18;
}

.price-catalog__intro p {
    margin: 0;
    color: var(--color-text);
    line-height: 1.7;
}

.price-catalog__card,
.business-price {
    margin-bottom: 18px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 13px;
    box-shadow: var(--shadow-card);
}

.price-catalog__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 26px;
}

.price-catalog__heading > div {
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-catalog__heading .material-symbols-outlined,
.business-price summary .material-symbols-outlined {
    display: grid;
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    color: var(--color-primary);
    background: var(--color-primary-soft);
    border-radius: 10px;
    place-items: center;
}

.price-catalog__heading h3 {
    margin: 0 0 4px;
    font-size: 20px;
}

.price-catalog__heading p {
    margin: 0;
    color: var(--color-text);
    font-size: 13px;
}

.price-discount {
    padding: 7px 11px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    background: var(--color-accent);
    border-radius: 20px;
}

.price-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.catalog-price-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
}

.catalog-price-table th,
.catalog-price-table td {
    padding: 14px 18px;
    text-align: right;
    border-top: 1px solid var(--color-border);
}

.catalog-price-table th {
    color: #fff;
    font-size: 12px;
    background: var(--color-primary);
}

.catalog-price-table th:first-child,
.catalog-price-table td:first-child {
    text-align: left;
}

.catalog-price-table th small {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
}

.catalog-price-table td {
    color: var(--color-heading);
    font-size: 13px;
    font-weight: 700;
}

.catalog-price-table tbody tr:nth-child(even) {
    background: #f6f9fd;
}

.business-price summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 24px;
    color: var(--color-heading);
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.business-price summary > span {
    display: flex;
    align-items: center;
    gap: 14px;
}

.business-price summary > small {
    color: var(--color-primary);
    font-size: 13px;
    white-space: nowrap;
}

.business-price > div > p {
    margin: 0;
    padding: 0 24px 18px;
    color: var(--color-text);
    font-size: 13px;
}

@media (max-width: 640px) {
    .price-catalog {
        margin-top: 30px;
    }

    .price-catalog__heading {
        align-items: flex-start;
        padding: 20px 18px;
    }

    .price-catalog__heading p {
        display: none;
    }

    .price-discount {
        flex: 0 0 auto;
    }

    .business-price summary {
        align-items: flex-start;
        padding: 17px 16px;
    }

    .business-price summary .material-symbols-outlined {
        display: none;
    }

    .business-price summary > small {
        font-size: 11px;
    }

    .catalog-price-table th,
    .catalog-price-table td {
        padding: 12px 14px;
    }
}

.price-page-note p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
}

.price-page-note a {
    color: var(--color-primary);
    font-weight: 700;
}

@media (max-width: 900px) {
    .contacts-page__grid,
    .reviews-feedback__layout {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .inner-hero,
    .inner-hero--compact {
        padding-block: 38px 43px;
    }

    .inner-hero h1 {
        font-size: 34px;
    }

    .inner-hero p {
        font-size: 15px;
    }

    .inner-section,
    .reviews-feedback {
        padding-block: 54px;
    }

    .contact-cards,
    .gallery-grid,
    .price-service-grid {
        grid-template-columns: 1fr;
    }

    .contact-cards > a,
    .contact-cards > div {
        min-height: auto;
        padding: 19px;
    }

    .contacts-map {
        padding-bottom: 54px;
    }

    .contacts-map__heading {
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
    }

    .contacts-map__heading > a {
        text-align: center;
    }

    .contacts-map__frame {
        height: 360px;
        border-radius: 10px;
    }

    .inner-form {
        padding: 23px 18px;
    }

    .inner-form input,
    .inner-form textarea {
        font-size: 16px;
    }

    .prose-page {
        font-size: 15px;
        line-height: 1.7;
    }

    .prose-page h2 {
        margin-top: 34px;
        font-size: 24px;
    }

    .inner-cta .container {
        align-items: stretch;
        flex-direction: column;
    }

    .inner-cta .service-button {
        width: 100%;
    }

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

    .gallery-filters button {
        width: 100%;
        padding-inline: 8px;
        font-size: 12px;
    }

    .gallery-grid img {
        height: min(68vw, 285px);
    }

    .reviews-placeholder {
        padding: 35px 20px;
    }

    .price-service-grid p {
        min-height: 0;
    }
}
/* Страница 404 */
.not-found {
    position: relative;
    display: flex;
    min-height: 610px;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 34%, rgba(46, 116, 224, 0.13), transparent 34%),
        linear-gradient(135deg, #f4f8ff 0%, #ffffff 55%, #eef5ff 100%);
}

.not-found::before,
.not-found::after {
    position: absolute;
    width: 310px;
    height: 310px;
    border: 1px solid rgba(35, 105, 210, 0.12);
    border-radius: 50%;
    content: "";
}

.not-found::before {
    top: -170px;
    right: 8%;
}

.not-found::after {
    bottom: -230px;
    left: 32%;
    width: 430px;
    height: 430px;
}

.not-found__container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
    align-items: center;
    gap: clamp(45px, 7vw, 110px);
    padding-top: 80px;
    padding-bottom: 90px;
}

.not-found__visual {
    position: relative;
    display: grid;
    min-height: 330px;
    place-items: center;
}

.not-found__visual::before {
    position: absolute;
    width: 330px;
    height: 330px;
    border: 28px solid rgba(36, 105, 209, 0.07);
    border-radius: 50%;
    content: "";
}

.not-found__code {
    color: #1462c5;
    font-size: clamp(7rem, 13vw, 11.5rem);
    font-weight: 800;
    line-height: 0.8;
    letter-spacing: -0.1em;
    text-shadow: 0 20px 50px rgba(15, 71, 151, 0.15);
}

.not-found__shield {
    position: absolute;
    color: #ffffff;
    font-size: 64px;
    text-shadow: 0 8px 24px rgba(14, 58, 123, 0.35);
}

.not-found__pest {
    position: absolute;
    display: grid;
    width: 58px;
    height: 58px;
    border: 6px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    background: #ff7043;
    box-shadow: 0 12px 30px rgba(46, 66, 99, 0.18);
    font-size: 28px;
    place-items: center;
}

.not-found__pest--one {
    top: 35px;
    right: 12%;
    transform: rotate(12deg);
}

.not-found__pest--two {
    bottom: 26px;
    left: 10%;
    background: #26ae72;
    transform: rotate(-10deg);
}

.not-found__eyebrow {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 13px;
    border-radius: 999px;
    color: #1462c5;
    background: #e3efff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.not-found__content h1 {
    margin: 0 0 20px;
    color: #111c30;
    font-size: clamp(2.35rem, 5vw, 4rem);
    line-height: 1.05;
}

.not-found__content > p {
    max-width: 650px;
    margin: 0;
    color: #58677d;
    font-size: 1.08rem;
    line-height: 1.75;
}

.not-found__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.not-found__actions .service-button {
    min-height: 52px;
}

.not-found__actions .material-symbols-outlined {
    margin-right: 8px;
    font-size: 21px;
}

.not-found__secondary {
    border: 1px solid #c9d9ef;
    color: #183153;
    background: #ffffff;
}

.not-found__content .not-found__help {
    margin-top: 25px;
    font-size: 0.94rem;
}

.not-found__help a {
    color: #1462c5;
    font-weight: 800;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .not-found {
        min-height: 0;
    }

    .not-found__container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 50px;
        padding-bottom: 65px;
        text-align: center;
    }

    .not-found__visual {
        min-height: 245px;
    }

    .not-found__visual::before {
        width: 235px;
        height: 235px;
        border-width: 20px;
    }

    .not-found__code {
        font-size: clamp(7rem, 29vw, 10rem);
    }

    .not-found__pest--one {
        right: 21%;
    }

    .not-found__pest--two {
        left: 20%;
    }

    .not-found__content > p {
        margin-right: auto;
        margin-left: auto;
    }

    .not-found__actions {
        justify-content: center;
    }
}

@media (max-width: 520px) {
    .not-found__container {
        padding-top: 35px;
        padding-bottom: 50px;
    }

    .not-found__visual {
        min-height: 205px;
    }

    .not-found__visual::before {
        width: 195px;
        height: 195px;
    }

    .not-found__shield {
        font-size: 46px;
    }

    .not-found__pest {
        width: 48px;
        height: 48px;
        border-width: 4px;
        font-size: 23px;
    }

    .not-found__pest--one {
        top: 12px;
        right: 12%;
    }

    .not-found__pest--two {
        bottom: 5px;
        left: 11%;
    }

    .not-found__content h1 {
        font-size: 2.25rem;
    }

    .not-found__content > p {
        font-size: 1rem;
    }

    .not-found__actions {
        display: grid;
    }
}
/* Попап заказа обратного звонка */
.callback-popup {
    width: min(100%, 470px);
    padding: 0;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 24px 80px rgba(12, 43, 91, 0.24);
}

.callback-popup__content {
    padding: 38px;
}

.callback-popup__eyebrow {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 11px;
    border-radius: 999px;
    color: #1462c5;
    background: #e8f1ff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.callback-popup h2 {
    margin: 0 0 12px;
    color: #121d30;
    font-size: clamp(1.7rem, 4vw, 2.15rem);
    line-height: 1.15;
}

.callback-popup__content > p {
    margin: 0 0 25px;
    color: #627087;
    font-size: 0.97rem;
    line-height: 1.65;
}

.callback-popup__form {
    display: grid;
    gap: 15px;
}

.callback-popup__form label {
    display: grid;
    gap: 7px;
    color: #26354d;
    font-size: 0.84rem;
    font-weight: 700;
}

.callback-popup__form input {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid #d7e0ed;
    border-radius: 10px;
    outline: none;
    color: #17243a;
    background: #f8faff;
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.callback-popup__form input:focus {
    border-color: #2472d4;
    box-shadow: 0 0 0 4px rgba(36, 114, 212, 0.12);
}

.callback-popup__form button,
.callback-popup__success button {
    min-height: 52px;
    padding: 0 22px;
    border: 0;
    border-radius: 10px;
    color: #ffffff;
    background: #1462c5;
    box-shadow: 0 10px 24px rgba(20, 98, 197, 0.22);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.callback-popup__form button:disabled {
    cursor: wait;
    opacity: 0.65;
}

.callback-popup__form small {
    color: #8390a3;
    font-size: 0.72rem;
    line-height: 1.5;
    text-align: center;
}

.callback-popup__form small a {
    color: #526983;
    text-decoration: underline;
}

.callback-popup__status {
    min-height: 0;
    color: #217a53;
    font-size: 0.82rem;
    line-height: 1.45;
    text-align: center;
}

.callback-popup__status:empty {
    display: none;
}

.callback-popup__status.is-error {
    color: #c84040;
}

.callback-popup__success {
    padding: 18px 0 4px;
    text-align: center;
}

.callback-popup__success[hidden],
.callback-popup__form[hidden] {
    display: none;
}

.callback-popup__success .material-symbols-outlined {
    color: #20a76e;
    font-size: 72px;
}

.callback-popup__success h3 {
    margin: 13px 0 8px;
    color: #142138;
    font-size: 1.6rem;
}

.callback-popup__success p {
    margin: 0 0 22px;
    color: #627087;
    line-height: 1.6;
}

.callback-popup .fancybox-close-small {
    top: 8px;
    right: 8px;
    color: #42526a;
}

@media (max-width: 520px) {
    .callback-popup__content {
        padding: 30px 20px 24px;
    }
}

/* Стили красивой пагинации DocLister */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    padding-top: 20px;
}

.pagination__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 16px;
    border-radius: 8px;
    background: #ffffff;
    color: #1e293b;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.pagination__item:hover {
    background: #0284c7;
    color: #ffffff;
    border-color: #0284c7;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.pagination__item--active {
    background: #0284c7;
    color: #ffffff;
    border-color: #0284c7;
}

/* Блокировка формы на время отправки */
.js-form-wrap form.wait {
    position: relative;
    opacity: 0.65;
    cursor: wait;
    user-select: none;
}

.js-form-wrap form.wait > * {
    pointer-events: none;
}

.js-form-wrap form.wait::after {
    position: absolute;
    z-index: 20;
    inset: 0;
    content: "";
    cursor: wait;
}

/* Сообщение после успешной отправки формы */
.form-success {
    display: grid;
    min-height: 285px;
    padding: 26px 16px 12px;
    text-align: center;
    place-content: center;
    justify-items: center;
    animation: form-success-show 0.35s ease both;
}

.form-success__icon {
    display: grid;
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
    border-radius: 50%;
    color: #ffffff;
    background: #20a76e;
    box-shadow: 0 12px 28px rgba(32, 167, 110, 0.24);
    place-items: center;
}

.form-success__icon .material-symbols-outlined {
    font-size: 40px;
    font-variation-settings: "FILL" 1, "wght" 500;
}

.form-success__title {
    margin: 0 0 10px;
    color: #15213d;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
}

.form-success__text {
    max-width: 330px;
    margin: 0;
    color: #68768d;
    font-size: 14px;
    line-height: 1.6;
}

.form-success__phone {
    margin-top: 15px;
    color: #1763c5;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
}

.form-success__phone:hover {
    text-decoration: underline;
}

@keyframes form-success-show {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Сообщение об успехе в синем блоке вызова специалиста */
.service-request .js-form-wrap {
    width: 100%;
    max-width: 430px;
}

.form-success--request {
    min-height: 315px;
    padding: 34px 28px;
    color: #15213d;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(0, 20, 55, 0.23);
}

.service-request .form-success--request .form-success__text {
    color: #68768d;
}

.service-request .form-success--request .form-success__phone {
    margin-top: 15px;
    color: #1763c5;
    font-size: 16px;
}

@media (max-width: 900px) {
    .service-request .js-form-wrap {
        max-width: 560px;
    }
}

@media (max-width: 520px) {
    .form-success--request {
        min-height: 285px;
        padding: 28px 20px;
    }
}


/* Сообщение об успехе в контактной форме */
.form-success--contacts {
    min-height: 300px;
    padding: 24px 12px 10px;
}

.form-success--contacts .form-success__text {
    max-width: 380px;
}

@media (max-width: 520px) {
    .form-success--contacts {
        min-height: 270px;
        padding: 20px 0 6px;
    }
}

/* Сообщение об успехе вместо формы .inner-form */
.form-success--inner {
    min-height: 465px;
    padding: 42px 30px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    box-shadow: var(--shadow-card);
}

.form-success--inner .form-success__text {
    max-width: 390px;
}

@media (max-width: 520px) {
    .form-success--inner {
        min-height: 380px;
        padding: 32px 20px;
    }
}