

/* Start:/local/templates/biglab/components/bitrix/menu/common__top-menu/style.css?17633059732498*/
.top-menu-outer {
    background-color: var(--color-primary);
    box-shadow: var(--box-shadow-bottom);
}

.top-multilevel-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    height: 50px;
}

.top-multilevel-menu > li {
    position: relative;
    flex: 1;
    text-align: center;
    height: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

.top-multilevel-menu > li > a.root-item,
.top-multilevel-menu > li > a.root-item-selected {
    height: 100%;
    width: 100%;
    text-decoration: none;
    color: #fff;
    transition: background-color 0.3s;
    font-weight: 600;
    font-size: .867em;
    text-transform: uppercase;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

.top-multilevel-menu > li > a.root-item span,
.top-multilevel-menu > li > a.root-item-selected span {
    display: inline-block;
}

.top-multilevel-menu > li > a.root-item:hover {
    background-color: rgba(255, 255, 255, .3);
}

.top-multilevel-menu > li > a.root-item-selected {
    background-color: rgba(255, 255, 255, .3);
    color: white;
}

.top-multilevel-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    min-width: 100%;
    background-color: #fff;
    border: 1px solid #eee;
    z-index: 1000;
}

.top-multilevel-menu li:hover > ul {
    display: block;
}

.top-multilevel-menu ul li a {
    display: block;
    padding: 15px 15px;
    color: #333;
    text-decoration: none;
    background-color: white;
    transition: background-color 0.2s;
    white-space: nowrap;
    font-size: 14px;
}

.top-multilevel-menu ul li a:hover {
    background-color: #fff;
    color: var(--color-primary);
}

.top-multilevel-menu .item-selected > a {
    background-color: #fff;
    color: var(--color-primary);
}

.top-multilevel-menu .parent {
    font-weight: bold;
}

.top-multilevel-menu .denied {
    color: #999;
    cursor: not-allowed;
}

.top-multilevel-menu ul ul {
    left: 100%;
    top: 0;
}




@media (min-width: 320px) {
    .top-menu-outer {
        display: none;
    }
}

@media (min-width: 410px) {

}

@media (min-width: 640px) {

}

@media (min-width: 1024px) {

}

@media (min-width: 1280px) {
    .top-menu-outer {
        display: block;
    }
}

@media (min-width: 1440px) {

}
/* End */


/* Start:/local/templates/biglab/components/bitrix/menu/footer__simple-menu-list/style.css?1780230589226*/
.footer-grid ul.footer-simple-menu-list-row {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
}

.footer-grid ul.footer-simple-menu-list-row li {
    display: inline-block;
    margin-right: 8px;
}
/* End */


/* Start:/local/templates/biglab/template_styles.css?178143234668936*/
:root {
    --bg: #0b1220;
    --surface: rgba(255, 255, 255, 0.08);
    --surface-soft: rgba(255, 255, 255, 0.12);
    --text: #f4f7ff;
    --text-soft: #b8c4dd;
    --line: rgba(255, 255, 255, 0.16);
    --brand: #4ea3ff;
    --brand-strong: #2c7ed8;
    --accent: #ff8a24;
    --accent-2: #00d1b2;
    --radius-lg: 22px;
    --radius-md: 14px;
    --shadow-sm: 0 14px 30px rgba(0, 0, 0, 0.26);
    --shadow-md: 0 24px 46px rgba(0, 0, 0, 0.34);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 15% 15%, #1d315d 0%, transparent 36%),
    radial-gradient(circle at 85% 5%, #19324a 0%, transparent 30%),
    linear-gradient(150deg, var(--bg) 0%, #0d1528 44%, #111d37 100%);
}

.site-main {
    min-height: 100svh;
}

.bg-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    opacity: 0.22;
    background-image: linear-gradient(120deg, rgba(78, 163, 255, 0.14) 0%, rgba(78, 163, 255, 0) 60%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 6px);
}

.bg-shape {
    position: fixed;
    z-index: -1;
    filter: blur(40px);
    opacity: 0.35;
    pointer-events: none;
}

.bg-shape-a {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: var(--accent);
    left: -120px;
    top: 120px;
}

.bg-shape-b {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #4ad3ff;
    right: -120px;
    top: 420px;
}

.container {
    width: min(1240px, 92vw);
    margin: 0 auto;
}

.top-strip {
    background: #0a1120;
    color: #b8c4dd;
    font-size: 0.9rem;
}

.top-strip-inner {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.top-strip p {
    margin: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(10px);
    background: rgba(11, 18, 32, 0.84);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand img {
    width: 154px;
    height: auto;
    display: block;
}

.header-slogan {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.35;
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-toggle {
    display: none;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--text);
    border-radius: 10px;
    width: 44px;
    height: 40px;
    padding: 0;
    font: inherit;
    font-weight: 700;
    align-items: center;
    justify-content: center;
}

.nav-toggle-icon {
    position: relative;
    width: 18px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: background 0.2s ease;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.22s ease, top 0.22s ease;
}

.nav-toggle-icon::before {
    top: -6px;
}

.nav-toggle-icon::after {
    top: 6px;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 70;
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100vh;
    background: #0f1729;
    border-left: 1px solid var(--line);
    transform: translateX(102%);
    transition: transform 0.24s ease;
    z-index: 80;
    padding: 14px;
    overflow-y: auto;
}

.mobile-menu-drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    color: var(--text);
}

.mobile-menu-close {
    border: 1px solid var(--line);
    background: transparent;
    color: var(--text);
    border-radius: 8px;
    width: 34px;
    height: 34px;
    padding: 0;
    font: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close-icon {
    position: relative;
    width: 14px;
    height: 14px;
}

.mobile-menu-close-icon::before,
.mobile-menu-close-icon::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 0;
    width: 2px;
    height: 14px;
    background: var(--text);
    border-radius: 2px;
}

.mobile-menu-close-icon::before {
    transform: rotate(45deg);
}

.mobile-menu-close-icon::after {
    transform: rotate(-45deg);
}

body.mobile-menu-open {
    overflow: hidden;
}

body.mobile-menu-open .mobile-menu-overlay {
    opacity: 1;
    pointer-events: auto;
}

body.mobile-menu-open .mobile-menu-drawer {
    transform: translateX(0);
}

body.mobile-menu-open .nav-toggle-icon {
    background: transparent;
}

body.mobile-menu-open .nav-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}

body.mobile-menu-open .nav-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

.header-phone {
    text-decoration: none;
    color: var(--text);
    font-weight: 800;
}

.nav-wrap {
    border-top: 1px solid var(--line);
}

.nav {
    position: relative;
    min-height: 54px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 26px;
}

.nav-item {
    position: static;
}

.nav a {
    color: var(--text-soft);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav a:hover::after,
.nav a.selected::after {
    transform: scaleX(1);
}

.has-dropdown > a {
    padding-right: 14px;
}

.has-dropdown > a::before {
    content: "";
    position: absolute;
    right: -5px;
    top: 60%;
    width: 7px;
    height: 7px;
    border-right: 2px solid #9bb0cf;
    border-bottom: 2px solid #9bb0cf;
    transform: translateY(-68%) rotate(45deg);
    transition: transform 0.2s ease;
}

.dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    width: 100%;
    min-width: 280px;
    max-width: none;
    max-height: min(540px, calc(100vh - 170px));
    background: #111b30;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.36);
    padding: 8px;
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start;
    gap: 2px 8px;
    overflow-x: hidden;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.dropdown a {
    width: 220px;
    padding: 9px 12px;
    border-radius: 8px;
    color: var(--text-soft);
    white-space: normal;
}

.dropdown a::after,
.has-dropdown > a::after {
    display: none;
}

.dropdown a:hover,
.dropdown a.selected {
    background: rgba(255, 255, 255, 0.08);
    color: var(--brand);
}

.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover > a::before,
.has-dropdown:focus-within > a::before {
    transform: translateY(-35%) rotate(225deg);
}

.section {
    padding: 58px 0 0;
}

.section.container.reveal > .service-detail-modern {
    margin-top: 20px;
}


.section.first-section {
    padding: 18px 0 0;
}

.section.compact {
    padding: 0;
}

.section-kicker {
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-size: 0.78rem;
    color: var(--accent-2);
    font-weight: 700;
}

.section-title h2, .section-title h1 {
    margin: 0;
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    font-family: "Onest", sans-serif;
    font-size: clamp(1.6rem, 1.15rem + 1.1vw, 2.3rem);
    line-height: 1.05;
}

.section-title h2 span.colored {
    color: var(--accent);
}

.section-title.compact h2 {
    font-size: clamp(1.45rem, 1.05rem + 1vw, 2rem);
}

.section-description {
    margin: 24px 0 0;
    padding: 12px 14px;
    border: 1px solid rgba(78, 163, 255, 0.38);
    border-left: 4px solid var(--brand);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(78, 163, 255, 0.16), rgba(17, 30, 55, 0.72));
    color: #dce9ff;
    font-size: 0.98rem;
    line-height: 1.55;
    box-shadow: 0 8px 20px rgba(8, 16, 31, 0.22);
}

.section-description p {
    margin: 0;
}

.section-offer {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 24px;
    align-items: stretch;
}

.section-offer.is-single {
    grid-template-columns: 1fr;
}

.offer-copy {
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.06) 95%);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(22px, 2.4vw, 36px);
    box-shadow: var(--shadow-sm);

    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}

.offer-title-utp {
    width: 65%;
}

.offer-copy h1 {
    margin: 0;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    font-family: "Onest", sans-serif;
    font-size: clamp(1.9rem, 1.35rem + 1.9vw, 3rem);
    line-height: 1.03;
}

.offer-list {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.offer-list li {
    position: relative;
    padding-left: 22px;
    color: var(--text-soft);
}

.offer-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(120deg, var(--accent), #ffc55b);
}

.offer-actions {
    margin-top: 26px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 12px 18px;
    font: inherit;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
    color: #0f1422;
    background: linear-gradient(120deg, #ff9f43, var(--accent));
    box-shadow: 0 8px 22px rgba(255, 138, 36, 0.32);
}

.btn-outline {
    color: var(--text);
    background: transparent;
    border: 1px solid var(--line);
}

.offer-form-card {
    background: linear-gradient(180deg, var(--surface-soft), var(--surface));
    color: var(--text);
    border-radius: var(--radius-lg);
    padding: clamp(22px, 2.2vw, 32px);
    box-shadow: var(--shadow-md);
}

.offer-form-card h2 {
    margin: 0 0 8px;
    font-family: "Onest", sans-serif;
    font-size: 1.5rem;
    color: var(--text);
}

.offer-form-card p {
    margin: 0 0 18px;
    color: var(--text-soft);
}

.offer-form-card .btn-primary {
    width: 100%;
    background: linear-gradient(120deg, #ff9f43, var(--accent));
}

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

.service-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 18px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, border-color 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: #8fbef5;
}

.service-card img {
    margin: 0 0 8px;
}

/*.service-card svg path {*/
/*  stroke: #ff8a24;*/
/*}*/

/*.service-card svg rect {*/
/*  stroke: #ff8a24;*/
/*}*/

.service-card-title {
    margin: 0 0 8px;
    font-size: 1.17rem;
    font-weight: 700;
}

.service-card p {
    margin: 0 0 14px;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.service-card strong {
    color: var(--brand);
    font-size: 1.02rem;
}

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

.brands-modern-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.brands-modern-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
}

.brands-modern-card a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text);
    height: 100%;
}

.brands-modern-card-image {
    aspect-ratio: 16 / 9;
    border-bottom: 1px solid var(--line);
    /*background: rgba(255, 255, 255, 0.04);*/
    background: #fff;
    place-items: center;
    display: flex;
}

.brands-modern-card-image img {
    width: 56%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 8px;
    margin: auto;
}

.brands-modern-card h3 {
    margin: 0;
    padding: 9px 10px 10px;
    font-size: .92rem;
    line-height: 1.2;
    text-align: center;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brands-modern-card-placeholder {
    padding: 10px;
    text-align: center;
    color: var(--text-soft);
    font-size: .9rem;
}


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

.brands-model-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.brands-model-card a {
    display: block;
    padding: 12px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
}

.brands-model-card:hover {
    border-color: rgba(255, 138, 36, 0.7);
}

.tv-city-alpha-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.tv-city-group {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px;
}

.tv-city-letter {
    margin: 0 0 8px;
    color: var(--accent-2);
    font-family: "Onest", sans-serif;
}

.tv-city-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
}

.tv-city-list a {
    color: var(--text-soft);
    text-decoration: none;
}

.tv-city-list a:hover {
    color: var(--text);
}

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

.top-service-list-outer .top-service-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.top-service-list-outer .top-service-item-inner {
    padding: 14px;
    display: grid;
    gap: 10px;
}

.top-service-list-outer .top-service-item-inner-header {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 10px;
    align-items: start;
}

.top-service-list-outer .top-service-item-pic img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.top-service-list-outer .top-service-item-title {
    color: var(--text);
    font-weight: 600;
}

.top-service-list-outer .top-service-item-price {
    color: var(--accent);
    font-weight: 700;
}

.tv-service-list {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.tv-service-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.tv-service-item a {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    padding: 12px;
    text-decoration: none;
    color: var(--text);
}

.tv-service-item strong {
    color: var(--accent);
    white-space: nowrap;
}

.hidden-item,
.hidden-city,
.hidden-brand {
    display: none;
}

.tv-show-more-wrap {
    margin-top: 14px;
    display: flex;
    justify-content: center;
}

.tv-empty {
    color: var(--text-soft);
}

.tv-city-links-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.tv-city-link-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.tv-city-link-item a {
    display: block;
    padding: 12px;
    color: var(--text-soft);
    text-decoration: none;
}

.tv-city-link-item a:hover {
    color: var(--text);
}

.catalog-page {
    display: grid;
    gap: 22px;
}

.catalog-page-title {
    max-width: 840px;
}

.catalog-common-wrapper {
    width: 100%;
}

.catalog-sections-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.biglab-catalog-section-card {
    min-width: 0;
    width: 100%;
    max-width: none;
    padding: 0;
}

.biglab-catalog-section-card-inner {
    position: relative;
    /*min-height: 132px;*/
    height: 100%;
    display: grid;
    grid-template-columns: 44px 1fr 30px;
    grid-template-rows: 1fr auto;
    gap: 10px 12px;
    align-items: start;
    padding: 18px;
    overflow: hidden;
    color: var(--text);
    text-decoration: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.06));
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
    align-items: center;
}

.biglab-catalog-section-card-inner:hover {
    transform: translateY(-4px);
    border-color: rgba(78, 163, 255, 0.78);
    background: linear-gradient(180deg, rgba(78, 163, 255, 0.18), rgba(255, 255, 255, 0.07));
}

.biglab-catalog-section-card-icon {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), #ffd36b);
    box-shadow: 0 12px 24px rgba(255, 138, 36, 0.24);
}

.biglab-catalog-section-card-icon::before,
.biglab-catalog-section-card-icon::after {
    content: "";
    position: absolute;
}

.biglab-catalog-section-card-icon::before {
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    margin: 13px;
    border: 2px solid rgba(15, 20, 34, 0.78);
    border-radius: 5px;
}

.biglab-catalog-section-card-icon::after {
    left: 0;
    top: 0;
    width: 8px;
    height: 8px;
    margin: 18px;
    background: rgba(15, 20, 34, 0.78);
    border-radius: 2px;
}

.biglab-catalog-section-card-name {
    min-width: 0;
    font-weight: 800;
    line-height: 1.25;
}

.biglab-catalog-section-card-count {
    grid-column: 2 / 4;
    color: var(--text-soft);
    font-size: 0.94rem;
}

.biglab-catalog-section-card-arrow {
    justify-self: end;
    width: 30px;
    height: 30px;
    border: 1px solid var(--line);
    border-radius: 50%;
    position: relative;
}

.biglab-catalog-section-card-arrow::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 9px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--text);
    border-bottom: 2px solid var(--text);
    transform: rotate(-45deg);
}

.catalog-description {
    padding-top: 22px;
}

.bx-section-desc {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 16px 18px;
}

.bx-section-desc-post {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.65;
}

.common-catalog-section {
    display: grid;
    gap: 18px;
}

.common-catalog-section-flex {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.common-catalog-section-item,
.common-catalog-section-item-inner,
.common-catalog-section-item-inner-container {
    min-width: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    padding: 0;
}

.biglab-catalog-card {
    width: 100%;
    min-height: 100%;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: 12px;
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.biglab-catalog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 138, 36, 0.62);
    background: rgba(255, 255, 255, 0.1);
}

.biglab-catalog-card-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: grid;
    place-items: center;
    /*overflow: hidden;*/
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.biglab-catalog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 10px;
}

.biglab-catalog-card-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    color: var(--brand);
    background: rgba(78, 163, 255, 0.11);
    border: 1px solid rgba(78, 163, 255, 0.26);
    border-radius: 14px;
}

.biglab-catalog-card-icon svg {
    width: 42px;
    height: 42px;
}

.biglab-catalog-card-icon path {
    fill: currentColor;
}

.biglab-catalog-card-title h3 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.3;
}

.biglab-catalog-card-title a {
    color: var(--text);
    text-decoration: none;
}

.biglab-catalog-card-title a:hover {
    color: var(--brand);
}

.biglab-catalog-card-properties {
    display: grid;
    gap: 8px;
    align-self: start;
}

.biglab-catalog-card-property {
    display: grid;
    gap: 2px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.biglab-catalog-card-property-name {
    color: var(--text-soft);
    font-size: 0.84rem;
}

.biglab-catalog-card-property-value {
    color: var(--text);
    font-weight: 600;
    line-height: 1.35;
}

.biglab-catalog-card-more {
    width: fit-content;
    align-self: end;
    color: var(--accent);
    text-decoration: none;
    font-weight: 800;
}

.biglab-catalog-card-more:hover {
    color: #ffc55b;
}

.product-detail-section {
    display: grid;
    gap: 22px;
}

.product-item-detail {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.06));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(18px, 2.2vw, 28px);
    box-shadow: var(--shadow-md);
}

.product-item-detail-flex {
    display: grid;
    grid-template-columns: minmax(280px, 0.86fr) 1.14fr;
    gap: 22px;
    align-items: start;
}

.product-item-detail-col {
    min-width: 0;
}

.product-detail-images,
.product-detail-placeholder {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.product-detail-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 12px;
}

.product-detail-image-link {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-detail-image-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 12px;
}

.product-detail-placeholder {
    min-height: 280px;
    display: grid;
    place-items: center;
    color: var(--brand);
}

.product-detail-placeholder svg {
    width: min(160px, 42vw);
    height: auto;
    opacity: 0.88;
}

.product-item-detail-info-container {
  display: grid;
  gap: 18px;
  align-content: start;
  height: 100%;
}

.product-item-detail-properties {
    display: grid;
    gap: 10px;
}

.product-item-detail-property-row {
    display: grid;
    grid-template-columns: minmax(140px, 0.6fr) 1fr;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-item-detail-property-name {
    color: var(--text-soft);
}

.product-item-detail-property-value {
    color: var(--text);
    font-weight: 700;
}

.product-item-detail-action-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

.product-detail-cost-button {
  min-width: min(100%, 260px);
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 138, 36, 0.72);
  border-radius: 999px;
  padding: 12px 20px;
  background: rgba(255, 138, 36, 0.12);
  color: var(--text);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.product-detail-cost-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 138, 36, 0.2);
  border-color: var(--accent);
}

.service-detail-modern {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
}

.service-detail-content {
    color: var(--text-soft);
    line-height: 1.6;
}

.service-detail-content h2,
.service-detail-content h3 {
    color: var(--text);
}

.service-detail-content ul,
.service-detail-content ol {
    padding-left: 20px;
}

.mobile-menu-component {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 10px;
}

.mobile-menu-list,
.mobile-menu-sublist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-item > a,
.mobile-menu-subitem > a {
    display: block;
    padding: 12px 10px;
    text-decoration: none;
    color: var(--text);
    border-radius: 10px;
    font-weight: 600;
}

.mobile-menu-sublist {
    margin: 4px 0 8px 10px;
    border-left: 1px solid var(--line);
    padding-left: 8px;
}

.mobile-menu-subitem > a {
    color: var(--text-soft);
    font-weight: 500;
}

.mobile-menu-item > a[aria-current=\"page\"],
.mobile-menu-subitem > a[aria-current=\"page\"],
.mobile-menu-item > a:hover,
.mobile-menu-subitem > a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
}

.model-item {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    border: 1px solid var(--line);
    border-radius: 12px;
    min-height: 64px;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: var(--text);
}

.benefits-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.benefit-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 18px;
}

.benefit-card-wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
    align-items: stretch;
    background: linear-gradient(120deg, rgba(255, 138, 36, 0.18), rgba(0, 209, 178, 0.08));
}

.benefit-card-title {
    font-size: 1.17rem;
    margin: 0 0 8px;
    font-weight: 700;
}

.benefit-card p {
    margin: 0;
    color: var(--text-soft);
}

.benefit-visual {
    border-radius: 12px;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(17, 44, 80, 0.28), rgba(17, 44, 80, 0.18)),
    url("/favicon/og-image.jpg") center/cover no-repeat;
    min-height: 200px;
}

.steps-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.step-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px;
}

.step-card span {
    font-family: "Onest", sans-serif;
    color: var(--accent);
    font-weight: 700;
}

.step-card-title {
    margin: 6px 0 8px;
    font-size: 1.17rem;
    font-weight: 700;
}

.step-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.94rem;
}

.step-card p a {
    color: #fff !important;
}

.reviews-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

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

.quick-request-widget {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
    background: linear-gradient(120deg, rgba(78, 163, 255, 0.16), rgba(255, 138, 36, 0.14));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.quick-request-widget h2 {
    margin: 0 0 8px;
    font-family: "Onest", sans-serif;
    font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.9rem);
}

.quick-request-widget p {
    margin: 0;
    color: var(--text-soft);
}

.quick-request-text {
    flex: 1 1 0;
    min-width: 0;
}

.quick-request-form {
    flex: 0 1 420px;
    min-width: 0;
    display: grid;
    gap: 10px;
    height: 100%;
    align-content: center;
    justify-items: center;
    text-align: center;
}

.quick-request-form p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.quick-request-form .btn {
    width: auto;
    min-height: 44px;
    padding: 10px 18px;
    justify-self: flex-end;
}

.cta-pulse {
    position: relative;
    overflow: hidden;
    background-size: 200% 200%;
    animation: cta-gradient-shift 3.2s ease-in-out infinite;
}

.cta-pulse::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 28%, rgba(255, 255, 255, 0.42) 50%, transparent 72%);
    transform: translateX(-130%);
    animation: cta-shine 2.8s ease-in-out infinite;
    pointer-events: none;
}

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

.master-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 18px;
}

.master-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    margin-bottom: 12px;
}

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

.master-card-title {
    margin: 0 0 8px;
    font-size: 1.17rem;
    font-weight: 700;
}

.master-card p {
    margin: 0;
    color: var(--text-soft);
}

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

.doc-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 18px;
}

.doc-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    margin-bottom: 12px;
}

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

.doc-card h3 {
    margin: 0 0 8px;
}

.doc-card p {
    margin: 0 0 12px;
    color: var(--text-soft);
}

.doc-card a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 700;
}

.geo-box {
    margin-top: 20px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 18px;
}

.geo-box p {
    margin: 0 0 14px;
    color: var(--text-soft);
}

.geo-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.geo-box li {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 11px;
    background: rgba(255, 255, 255, 0.04);
}

.districts-box {
    margin-top: 20px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: clamp(16px, 2vw, 24px);
    box-shadow: var(--shadow-sm);
}

.districts-box__lead {
    margin: 0;
    color: var(--text-soft);
}

.districts-box__controls {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.districts-box__chip {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.districts-box__chip.is-active {
    border-color: rgba(78, 163, 255, 0.62);
    background: rgba(78, 163, 255, 0.14);
}

.districts-box__result {
    margin-top: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.districts-box__result-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px 12px;
    margin-bottom: 10px;
}

.districts-box__title,
.districts-box__count {
    color: var(--text-soft);
}

.districts-box__title span,
.districts-box__count span {
    color: var(--text);
    font-weight: 700;
}

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

.districts-box__list li {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 9px 10px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.districts-box__location-name {
    color: var(--text-soft);
}

.districts-box__location-count {
    color: var(--text);
    font-weight: 700;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.05);
}

.districts-box__note {
    margin: 12px 0 0;
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.65;
}

.warranty-blocks {
    margin-top: 20px;
    display: grid;
    gap: 14px;
}

.warranty-block {
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 14px;
    box-shadow: var(--shadow-sm);
}

.warranty-block__image {
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

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

.warranty-block__content_title {
    margin: 0 0 10px;
    font-size: 1.08rem;
    line-height: 1.4;
}

.warranty-block__content p {
    margin: 0 0 10px;
    color: var(--text-soft);
    line-height: 1.72;
}

.warranty-block__content p:last-child {
    margin-bottom: 0;
}

.warranty-block__content a {
    color: var(--accent);
    white-space: nowrap;
}

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

.faq-list details {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 700;
}

.faq-list p {
    margin: 8px 0 0;
    color: var(--text-soft);
}

.vacancy-list summary {
    font-size: 1.04rem;
}

.vacancy-role {
    margin-top: 10px;
    display: grid;
    gap: 12px;
}

.vacancy-role__section {
    border-top: 1px solid var(--line);
    padding-top: 10px;
}

.vacancy-role__title {
    margin: 0 0 8px;
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--text);
}

.vacancy-role__section p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.review-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
}

.review-card-title {
    margin: 0 0 8px;
    font-size: 1.17rem;
    font-weight: 700;
}

.review-card p {
    margin: 0 0 12px;
    color: var(--text-soft);
}

.review-card time {
    font-size: 0.85rem;
    color: #7f90ab;
}

.useful-page {
    padding-top: 34px;
}

.useful-layout {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.useful-sidebar {
    position: sticky;
    top: 110px;
}

.useful-menu-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 10px;
    box-shadow: var(--shadow-sm);
}

.useful-menu-title {
    margin: 2px 4px 10px;
    padding: 0 8px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-2);
}

.else-page-sidebar-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
}

.else-page-sidebar-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-soft);
    border: 1px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.else-page-sidebar-menu .item-text {
    min-width: 0;
}

.else-page-sidebar-menu .item-arrow {
    width: 9px;
    height: 9px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.6;
    transition: transform 0.2s ease, opacity 0.2s ease;
    flex: 0 0 auto;
}

.else-page-sidebar-menu li.is-active > a {
    background: linear-gradient(120deg, rgba(78, 163, 255, 0.2), rgba(78, 163, 255, 0.08));
    border-color: rgba(78, 163, 255, 0.45);
    color: var(--text);
}

.else-page-sidebar-menu li.is-active .item-arrow {
    opacity: 1;
}

.else-page-sidebar-menu a:hover {
    transform: translateX(2px);
}

.else-page-sidebar-menu a:hover,
.else-page-sidebar-menu a.selected {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--text);
}

.else-page-sidebar-menu a:hover .item-arrow,
.else-page-sidebar-menu a.selected .item-arrow {
    transform: rotate(45deg) translate(1px, -1px);
    opacity: 1;
}

.useful-content {
    min-width: 0;
}

.useful-list {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

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

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

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

.useful-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.useful-card-link {
    color: var(--text);
    text-decoration: none;
    display: block;
    height: 100%;
}

.useful-card-media {
    aspect-ratio: 16 / 9;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

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

.useful-card-body {
    padding: 14px;
}

.useful-card-body h2 {
    margin: 0 0 8px;
    font-size: 1.05rem;
}

.useful-card-body p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.55;
}

.useful-card-body time {
    display: block;
    font-size: 0.85rem;
    color: #9fb1cf;
    margin: 0 0 8px;
}

.useful-card-more {
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    color: var(--brand);
    font-weight: 700;
    font-size: 0.92rem;
}

.useful-card--video .useful-card-link:hover .useful-card-media img {
    transform: scale(1.03);
}

.useful-card--video .useful-card-media img {
    transition: transform 0.25s ease;
}

.useful-card-media--video {
    position: relative;
}

.video-play-icon {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: rgba(11, 18, 32, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.video-play-icon::before {
    content: "";
    position: absolute;
    left: 26px;
    top: 20px;
    border-left: 18px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.useful-detail {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
}

.useful-detail-head h1 {
    margin: 0 0 8px;
    font-size: clamp(1.45rem, 1.2rem + 0.8vw, 2rem);
}

.useful-detail-head time {
    color: #9fb1cf;
    font-size: 0.9rem;
}

.useful-detail-cover {
    margin-top: 14px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
}

.useful-detail-cover img {
    display: block;
    width: 100%;
    height: auto;
}

.useful-detail-content {
    margin-top: 16px;
    color: var(--text-soft);
    line-height: 1.7;
}

.useful-detail-content h2,
.useful-detail-content h3,
.useful-detail-content h4 {
    color: var(--text);
}

.useful-detail-content a {
    color: var(--brand);
}

.useful-gallery {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.useful-gallery-item {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
}

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

.useful-video-frame {
    margin-top: 14px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    aspect-ratio: 16 / 9;
}

.useful-video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.useful-video-open-link {
    margin: 18px 0 0;
}

.useful-detail-back-link {
    margin-top: 18px;
}

.useful-review-media {
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--line);
}

.useful-review-media img {
    width: 100%;
    height: auto;
    display: block;
}

.modern-pager {
    margin-top: 14px;
}

.modern-pager .modern-page-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.modern-pager .modern-page-navigation__container {
    width: 100%;
}

.modern-pager .modern-page-navigation__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.modern-pager .modern-page-navigation__list li {
    margin: 0;
}

.modern-pager .modern-page-navigation__list span {
    min-width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.modern-pager .modern-page-navigation__list a:hover {
    transform: translateY(-1px);
    border-color: rgba(78, 163, 255, 0.6);
    background: rgba(78, 163, 255, 0.16);
}

.modern-pager .modern-page-navigation__list .modern-page-navigation__active > span {
    background: linear-gradient(120deg, rgba(78, 163, 255, 0.26), rgba(78, 163, 255, 0.14));
    border-color: rgba(78, 163, 255, 0.6);
    color: #fff;
}

.modern-pager .modern-page-navigation__list .modern-page-navigation__prev > span,
.modern-pager .modern-page-navigation__list .modern-page-navigation__next > span {
    opacity: 0.45;
}

.modern-pager .modern-page-navigation__list .modern-page-navigation__prev a,
.modern-pager .modern-page-navigation__list .modern-page-navigation__next a {
    color: var(--text-soft);
}

.modern-pager .modern-page-navigation__list .modern-page-navigation__all a {
    color: var(--accent-2);
}

.site-footer {
    margin-top: 60px;
    background: #080f1d;
    color: var(--text-soft);
    padding: 34px 0 20px;
}

.footer-grid {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    /*grid-template-columns: 1.4fr repeat(4, 1fr);*/
    /*gap: 20px;*/
}

.footer-grid__col {
    width: 33%;
    flex: none;
}

.footer-grid__col:last-child {
    text-align: right;
}

.footer-grid h4, .footer-grid h4 a {
    margin: 0 0 8px;
    color: var(--text);
}

.footer-grid h4 a {
    display: inline-block;
    position: relative;
    margin: 0;
}

.footer-grid h4 a:after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: -1px;
}

.footer-grid p {
    margin: 0;
}

.footer-grid ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
}

.footer-grid a {
    color: var(--text-soft);
    text-decoration: none;
}

.footer-grid a:hover {
    color: var(--text);
}

.footer-bottom {
    margin-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    padding-top: 12px;
    font-size: 0.9rem;
    color: #8ea3c3;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom > .footer-bottom-col:nth-child(2) {
    margin-top: auto;
}

.footer-bottom-col:last-child {
    white-space: nowrap;
}

.footer-bottom-col a {
    color: var(--brand);
    text-decoration: none;
    border-bottom: 1px solid rgba(78, 163, 255, 0.45);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-bottom-col a:hover {
    color: #8bc5ff;
    border-color: rgba(139, 197, 255, 0.8);
}

.footer-disclaimer {
    margin: 10px 0 0 0;
    max-width: 760px;
    font-size: 0.83rem;
    line-height: 1.55;
    color: #7690b4;
}

.footer-disclaimer a {
    color: var(--brand);
    text-decoration: none;
    border-bottom: 1px solid rgba(78, 163, 255, 0.45);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-disclaimer a:hover {
    color: #8bc5ff;
    border-color: rgba(139, 197, 255, 0.8);
}

.disclaimer-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 14px;
    z-index: 90;
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.disclaimer-bar.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.disclaimer-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: linear-gradient(180deg, rgba(17, 29, 55, 0.96), rgba(12, 21, 40, 0.96));
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 12px 14px;
}

.disclaimer-bar__text {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.5;
    font-size: 0.9rem;
}

.disclaimer-bar__text a {
    color: var(--brand);
}

.disclaimer-bar__text a:hover {
    color: #8bc5ff;
}

.disclaimer-bar__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.disclaimer-bar__accept {
    height: 36px;
    padding: 0 12px;
    font-size: 0.86rem;
}

.disclaimer-bar__close {
    width: 32px;
    height: 32px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: transparent;
    color: var(--text);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
}

.reveal {
    animation: fade-up 0.7s ease both;
}

.delay-1 {
    animation-delay: 0.08s;
}

.delay-2 {
    animation-delay: 0.15s;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cta-gradient-shift {
    0% {
        filter: saturate(1) brightness(1);
        background-position: 0% 50%;
    }
    50% {
        filter: saturate(1.08) brightness(1.06);
        background-position: 100% 50%;
    }
    100% {
        filter: saturate(1) brightness(1);
        background-position: 0% 50%;
    }
}

@keyframes cta-shine {
    0% {
        transform: translateX(-130%);
    }
    55%,
    100% {
        transform: translateX(130%);
    }
}

@media (max-width: 1080px) {
    .section-offer,
    .benefit-card-wide,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .catalog-sections-items,
    .model-grid,
    .brands-modern-grid,
    .brands-model-grid,
    .tv-city-alpha-grid,
    .top-service-list-outer .top-service-list,
    .masters-grid,
    .docs-grid,
    .tv-service-list,
    .tv-city-links-grid,
    .steps-grid,
    .reviews-grid,
    .useful-blog-list,
    .useful-video-list,
    .useful-reviews-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .common-catalog-section-flex {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-item-detail-flex {
        grid-template-columns: 1fr;
    }

    .header-slogan {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-wrap {
        display: none;
    }

    .offer-copy h1 {
        font-size: clamp(1.65rem, 1.18rem + 1.45vw, 2.25rem);
    }
}

@media (max-width: 720px) {
    .top-strip-inner,
    .header-contacts,
    .nav,
    .reviews-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-strip-inner {
        justify-content: center;
        padding: 8px 0;
    }

    .header-inner {
        min-height: auto;
        padding: 12px 0;
        gap: 10px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .header-contacts {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-wrap {
        display: none;
        border-top: 1px solid var(--line);
        padding-bottom: 8px;
    }

    .nav {
        min-height: auto;
        padding: 10px 0;
        gap: 10px 14px;
    }

    .nav-item,
    .has-dropdown {
        width: 100%;
    }

    .dropdown {
        position: static;
        min-width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 6px;
        border-radius: 10px;
    }

    .section {
        padding-top: 42px;
    }

    .offer-copy {
        flex-flow: column nowrap;
        justify-content: flex-start;
    }

    .offer-title-utp {
        width: 100%;
    }

    .offer-copy h1 {
        font-size: clamp(1.42rem, 1.16rem + 1vw, 1.75rem);
        line-height: 1.08;
    }

    .service-grid,
    .catalog-sections-items,
    .common-catalog-section-flex,
    .model-grid,
    .brands-modern-grid,
    .brands-model-grid,
    .tv-city-alpha-grid,
    .top-service-list-outer .top-service-list,
    .benefits-grid,
    .masters-grid,
    .docs-grid,
    .tv-service-list,
    .tv-city-links-grid,
    .steps-grid,
    .reviews-grid,
    .useful-blog-list,
    .useful-video-list,
    .useful-reviews-list,
    .useful-gallery {
        grid-template-columns: 1fr;
    }

    .quick-request-widget {
        grid-template-columns: 1fr;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
    }

    .simple-form.flex-style {
        flex-direction: column;
        align-items: stretch;
    }

    .quick-request-text,
    .quick-request-form {
        width: 100%;
        max-width: 100%;
        flex: 0 0 auto;
    }

    .simple-form.flex-style > input,
    .simple-form.flex-style > .btn {
        width: 100%;
        min-width: 0;
        flex: 0 0 auto;
    }

    .terms-cards-grid {
        grid-template-columns: 1fr;
    }

    .repair-terms-layout {
        grid-template-columns: 1fr;
    }

    .districts-box__list {
        grid-template-columns: 1fr;
    }

    .warranty-block {
        grid-template-columns: 1fr;
    }

    .quick-request-form .btn {
        justify-self: auto;
    }

    .biglab-catalog-section-card-inner {
        min-height: 116px;
        padding: 16px;
    }

    .product-item-detail-property-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .useful-layout {
        grid-template-columns: 1fr;
    }

    .useful-sidebar {
        position: static;
        top: auto;
    }

    .useful-menu-card {
        padding: 8px;
    }

    .useful-menu-title {
        margin-bottom: 8px;
    }

    .disclaimer-bar {
        bottom: 10px;
    }

    .disclaimer-bar__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px;
    }

    .disclaimer-bar__actions {
        width: 100%;
        justify-content: space-between;
    }

}

.error404-page {
    padding-top: clamp(36px, 5vw, 72px);
}

.error404-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: clamp(22px, 3.4vw, 42px);
}

.error404-card::before,
.error404-card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(14px);
    pointer-events: none;
}

.error404-card::before {
    width: 180px;
    height: 180px;
    right: -48px;
    top: -62px;
    background: rgba(255, 138, 36, 0.28);
}

.error404-card::after {
    width: 210px;
    height: 210px;
    left: -66px;
    bottom: -102px;
    background: rgba(78, 163, 255, 0.24);
}

.error404-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-size: 0.75rem;
    color: var(--accent-2);
    font-weight: 700;
}

.error404-code {
    margin: 8px 0 0;
    font-family: "Onest", sans-serif;
    font-size: clamp(3.4rem, 17vw, 8.6rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: 0.02em;
    background: linear-gradient(130deg, #ffb36f 0%, #ff8a24 45%, #4ea3ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.error404-card h1 {
    margin: 12px 0 0;
    font-family: "Onest", sans-serif;
    font-size: clamp(1.45rem, 1.1rem + 1.2vw, 2.1rem);
    line-height: 1.1;
}

.error404-text {
    margin: 14px 0 0;
    max-width: 740px;
    color: var(--text-soft);
    line-height: 1.7;
}

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

.error404-links {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.error404-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 46px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.error404-link::after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 2px solid rgba(184, 196, 221, 0.86);
    border-right: 2px solid rgba(184, 196, 221, 0.86);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.error404-link:hover {
    transform: translateY(-2px);
    border-color: rgba(78, 163, 255, 0.62);
    background: rgba(78, 163, 255, 0.12);
}

@media (max-width: 720px) {
    .error404-links {
        grid-template-columns: 1fr;
    }
}

.policy-page {
    padding-top: 42px;
}

.policy-card {
    margin-top: 20px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(18px, 2.8vw, 34px);
    box-shadow: var(--shadow-sm);
}

.policy-intro {
    margin: 0 0 22px 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.policy-subtitle {
    margin: 26px 0 12px 0;
    font-weight: 800;
    font-size: 1.08rem;
    line-height: 1.45;
    color: var(--text);
}

.policy-subtitle[data-num]::before {
    content: attr(data-num) ". ";
    color: var(--accent);
}

.policy-card p {
    margin: 0 0 14px 0;
    color: var(--text-soft);
    line-height: 1.75;
}

.policy-card a {
    color: var(--brand);
}

.policy-card a:hover {
    color: #8bc5ff;
}

.policy-card .styled-list {
    margin: 0 0 16px 0;
    padding-left: 24px;
    color: var(--text-soft);
}

.policy-card .styled-list li {
    margin-bottom: 9px;
    line-height: 1.65;
}

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

.terms-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: clamp(16px, 2vw, 24px);
    box-shadow: var(--shadow-sm);
}

.terms-card ul {
    list-style: none;
    padding: 0;
}

.terms-card ul a {
    color: var(--text-soft);
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.terms-card ul a:hover {
    color: var(--text);
}

.terms-card ul a:after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: -1px;
}

.terms-card h3 {
    margin: 0 0 10px;
    font-size: 1.08rem;
    line-height: 1.35;
}

.terms-card p {
    margin: 0 0 12px;
    color: var(--text-soft);
    line-height: 1.7;
}

.terms-card p:last-child {
    margin-bottom: 0;
}

.terms-list {
    margin: 0 0 12px 0;
    padding-left: 22px;
    color: var(--text-soft);
}

.terms-list li {
    margin-bottom: 8px;
    line-height: 1.65;
}

.terms-card__accent {
    color: var(--accent) !important;
    font-weight: 700;
}

.terms-tabs {
    margin-top: 20px;
}

.terms-tabs__controls {
    display: inline-flex;
    gap: 8px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
}

.terms-tabs__btn {
    height: 38px;
    padding: 0 16px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    color: var(--text-soft);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.terms-tabs__btn.is-active {
    color: var(--text);
    border-color: rgba(78, 163, 255, 0.62);
    background: rgba(78, 163, 255, 0.12);
}

.terms-tabs__panel {
    margin-top: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: clamp(16px, 2vw, 24px);
    box-shadow: var(--shadow-sm);
}

.terms-tabs__panel .policy-subtitle {
    margin-top: 18px;
}

.terms-tabs__panel .policy-subtitle:first-child {
    margin-top: 0;
}

.terms-steps {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: terms-steps;
    display: grid;
    gap: 14px;
}

.terms-step {
    counter-increment: terms-steps;
    position: relative;
    padding-left: 44px;
}

.terms-step::before {
    content: counter(terms-steps);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.92rem;
    color: #0f1422;
    background: linear-gradient(120deg, #ff9f43, var(--accent));
    box-shadow: 0 4px 12px rgba(255, 138, 36, 0.28);
}

.terms-step__title {
    margin: 0 0 8px;
    font-weight: 800;
    font-size: 2.05rem;
    line-height: 1.4;
    color: var(--text);
}

.terms-step p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.72;
}

.repair-terms-layout {
    display: grid;
    /*grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);*/
    /*gap: 16px;*/
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.repair-terms-content {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: clamp(16px, 2vw, 24px);
    box-shadow: var(--shadow-sm);
}

.repair-terms-content p {
    margin: 0 0 12px;
    color: var(--text-soft);
    line-height: 1.7;
}

.repair-terms-list {
    margin-top: 12px;
}

.repair-terms-media {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow-sm);
    min-height: 100%;
}

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

.leader-profile__media {
    background: var(--surface);
}

.leader-profile__media img {
    object-fit: contain;
    padding: 10px;
}

.test-forms-page {
    padding-top: 32px;
}

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

.test-form-card {
    background: linear-gradient(180deg, var(--surface-soft), var(--surface));
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: clamp(18px, 2.2vw, 28px);
}

.test-form-card h2 {
    margin: 0 0 8px;
    font-family: "Onest", sans-serif;
    font-size: 1.35rem;
}

.test-form-card p {
    margin: 0 0 16px;
    color: var(--text-soft);
}

.simple-form {
    gap: 10px;
}

.simple-form.flex-style {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.simple-form.grid-style {
    display: grid;
}

.flex-none {
    flex: none;
}

.simple-form.flex-style > input {
    flex: 0 1 auto;
    min-width: 0;
}

.simple-form.flex-style > .btn {
    flex: 0 0 auto;
}

.simple-form input:not([type="checkbox"]):not([type="radio"]),
.simple-form textarea {
    /*width: 100%;*/
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    background: rgba(13, 25, 48, 0.68);
    color: var(--text);
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.simple-form input:not([type="checkbox"]):not([type="radio"]) {
    height: 44px;
}

.simple-form input:not([type="checkbox"]):not([type="radio"])::placeholder,
.simple-form textarea::placeholder {
    color: var(--text-soft);
    opacity: 0.85;
}

.simple-form input:not([type="checkbox"]):not([type="radio"]):focus,
.simple-form textarea:focus {
    border-color: rgba(78, 163, 255, 0.8);
    background: rgba(13, 25, 48, 0.84);
    box-shadow: 0 0 0 3px rgba(78, 163, 255, 0.2);
}

.simple-form textarea {
    min-height: 112px;
    resize: vertical;
}

.simple-form .btn {
    /*width: 100%;*/
}

.form-consent {
    display: grid;
    grid-template-columns: 16px 1fr;
    align-items: start;
    gap: 9px;
    margin: 2px 0 2px;
    color: var(--text-soft);
    font-size: 0.86rem;
    line-height: 1.45;
    text-align: left;
    width: 100%;
    flex-basis: 100%;
}

.form-consent input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 2px 0 0;
    accent-color: var(--brand);
}

.form-consent span {
    display: inline;
}

.form-consent a {
    color: var(--brand);
    text-underline-offset: 2px;
}

.form-consent a:hover {
    color: #8bc5ff;
}

.simple-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 16px;
}

.simple-modal[hidden] {
    display: none !important;
}

.simple-modal-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(8, 12, 20, 0.75);
    backdrop-filter: blur(3px);
}

.simple-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(560px, 96vw);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: linear-gradient(170deg, rgba(18, 33, 62, 0.96), rgba(10, 17, 32, 0.96));
    box-shadow: var(--shadow-md);
    padding: clamp(18px, 3vw, 28px);
}

.simple-modal-dialog h2 {
    margin: 0 0 8px;
    font-family: "Onest", sans-serif;
}

.simple-modal-dialog p {
    margin: 0 0 14px;
    color: var(--text-soft);
}

.simple-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

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

@media (max-width: 720px) {
    .test-forms-grid {
        grid-template-columns: 1fr;
    }
}

.city-hero-image-block {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    max-width: 100%;
    margin: 0 auto;
}

.city-hero-image-block img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 1080px) {
    .repair-terms-layout,
    .warranty-block {
        grid-template-columns: 1fr;
    }

    .repair-terms-media {
        min-height: clamp(220px, 42vw, 360px);
    }

    .warranty-block__image {
        max-height: 320px;
    }

    .terms-step__title {
        font-size: clamp(1.5rem, 3.2vw, 1.85rem);
    }
}

@media (max-width: 860px) {
    .terms-tabs__controls {
        display: flex;
        width: 100%;
        gap: 6px;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .terms-tabs__controls::-webkit-scrollbar {
        display: none;
    }

    .terms-tabs__btn {
        flex: 0 0 auto;
        min-height: 36px;
        padding: 0 14px;
    }

    .districts-box__result-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .terms-step {
        padding-left: 38px;
    }

    .terms-step::before {
        width: 26px;
        height: 26px;
        font-size: 0.82rem;
    }

    .terms-step__title {
        font-size: 1.4rem;
        line-height: 1.32;
    }

    .terms-list {
        padding-left: 18px;
    }

    .repair-terms-content,
    .terms-card,
    .terms-tabs__panel,
    .districts-box,
    .warranty-block {
        padding: 14px;
    }

    .warranty-block__image {
        aspect-ratio: 4 / 3;
    }

    .warranty-block__content a {
        white-space: normal;
    }

    .vacancy-list summary {
        font-size: 0.98rem;
    }

    .vacancy-role {
        gap: 10px;
    }

    .vacancy-role__section {
        padding-top: 8px;
    }
}

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

.contacts-card,
.contacts-map-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: clamp(16px, 2vw, 24px);
}

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

.contacts-card__title {
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.35;
}

.contacts-list {
    margin: 0;
    padding-left: 18px;
    color: var(--text-soft);
}

.contacts-list li {
    margin-bottom: 8px;
    line-height: 1.65;
}

.contacts-list li a {
    color: var(--text-soft);
    text-decoration: underline;
}

.contacts-card__block {
    border-top: 1px solid var(--line);
    padding-top: 12px;
}

.contacts-card__label {
    color: var(--text-soft);
    font-size: 0.88rem;
    margin-bottom: 6px;
}

.contacts-card__text {
    margin: 0;
    color: var(--text);
    line-height: 1.65;
}

.contacts-card__link {
    color: var(--text);
    font-weight: 700;
    text-decoration: none;
}

.contacts-card__link:hover {
    color: var(--accent);
}

.contacts-map-card {
    display: grid;
    gap: 12px;
}

.contacts-map-card__head p {
    margin: 8px 0 0;
    color: var(--text-soft);
}

.contacts-map-placeholder {
    min-height: clamp(260px, 34vw, 420px);
    border: 1px dashed rgba(255, 255, 255, 0.34);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    display: grid;
    place-items: center;
    color: var(--text-soft);
    font-weight: 700;
}

.contacts-map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: inherit;
}

.contacts-meta-grid {
    margin-top: 0;
}

@media (max-width: 1080px) {
    .contacts-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .contacts-meta-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .contacts-card,
    .contacts-map-card {
        padding: 14px;
    }

    .contacts-card__title {
        font-size: 1.03rem;
    }

    .contacts-card__link,
    .contacts-card__text {
        overflow-wrap: anywhere;
    }

    .contacts-map-placeholder {
        min-height: 220px;
    }
}

@media (max-width: 1080px) {
    .brands-modern-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .brands-modern-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

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

    .brands-modern-card h3 {
        min-height: 42px;
        font-size: .88rem;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .brands-modern-grid {
        grid-template-columns: 1fr;
    }
}

/* End */
/* /local/templates/biglab/components/bitrix/menu/common__top-menu/style.css?17633059732498 */
/* /local/templates/biglab/components/bitrix/menu/footer__simple-menu-list/style.css?1780230589226 */
/* /local/templates/biglab/template_styles.css?178143234668936 */
