/* CSS-переменные для цветов */
:root {
    --primary-color: #0288d1;
    /* Основной голубой */
    --primary-hover: #01579b;
    /* Тёмный голубой при наведении */
    --accent-color: #2e7d32;
    /* Зелёный акцент */
    --contrast-color: #ffc107;
    /* Контрастный жёлтый */
    --background-body: #fcfcfc;
    /* Фон страницы */
    --background-header: #fff;
    /* Фон шапки */
    --background-address: #0288d1;
    /* Фон адреса */
    --text-color: #4d4d4d;
    /* Основной цвет текста */
    --text-white: #fff;
    /* Белый текст */
    --border-color: #e0e7ff;
    /* Цвет границ */
    --shadow-color: rgba(2, 136, 209, 0.2);
    /* Тень */
}
/* Сброс стилей */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 160%;
    color: var(--text-color);
    background: var(--background-body); 
}
.h2-lead {
    font-size: 0.99rem;
    width: 60%;
    color: #6c757d;
}
@media (max-width: 768px) {
    .h2-lead {
        width: 100%;
    }
}
    .table i {
        margin-right: 5px;
        vertical-align: middle;
    }
.d-flex.gap-2 {
    gap: 0.5rem;
}
.list-no-style {
    list-style: none;
}
.text-primary {
    color: var(--primary-color) !important;
}
.text-color {
    color: var(--text-color)!important;
}
.text-center {
    text-align: center;
}
.border {
    border: 1px solid rgb(223, 223, 223);
}
.bg-section {
    background-color: #f7fcff;
}
.bg-white {
    background-color: #ffffff;
}
.opacity-50{opacity: .5;}
.img-fluid {
    width: 100%;
}
ul {padding-left: 2rem;}
input[type="checkbox" i]{background-color: var(--primary-color)!important;}
input[type="checkbox" i]{border:1px solid var(--primary-color)!important;}
.radius-4 {
    border-radius: 4px;
}
.radius-6 {
    border-radius: 6px;
}
.table-responsive {
    overflow-x: auto
}
@media (max-width:575.98px) {
    .table-responsive {
        display: block;
        width: 100%;
        overflow-x: auto
    }
}
/* Margins and Paddings */
.ml-0 {
    margin-left: 0 !important
}
.mr-0 {
    margin-right: 0 !important
}
.m-1 {
    margin: .25rem !important
}
.mt-1,
.my-1 {
    margin-top: .25rem !important
}
.mr-1,
.mx-1 {
    margin-right: .25rem !important
}
.mb-1,
.my-1 {
    margin-bottom: .25rem !important
}
.ml-1,
.mx-1 {
    margin-left: .25rem !important
}
.m-2 {
    margin: .5rem !important
}
.mt-2,
.my-2 {
    margin-top: .5rem !important
}
.mr-2,
.mx-2 {
    margin-right: .5rem !important
}
.mb-2,
.my-2 {
    margin-bottom: .5rem !important
}
.ml-2,
.mx-2 {
    margin-left: .5rem !important
}
.m-3 {
    margin: 1rem !important
}
.mt-3,
.my-3 {
    margin-top: 1rem !important
}
.mr-3,
.mx-3 {
    margin-right: 1rem !important
}
.mb-3,
.my-3 {
    margin-bottom: 1rem !important
}
.ml-3,
.mx-3 {
    margin-left: 1rem !important
}
.m-4 {
    margin: 1.5rem !important
}
.mt-4,
.my-4 {
    margin-top: 1.5rem !important
}
.mr-4,
.mx-4 {
    margin-right: 1.5rem !important
}
.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important
}
.ml-4,
.mx-4 {
    margin-left: 1.5rem !important
}
.m-5 {
    margin: 2rem !important
}
.mt-5,
.my-5 {
    margin-top: 2rem !important
}
.mr-5,
.mx-5 {
    margin-right: 2rem !important
}
.mb-5,
.my-5 {
    margin-bottom: 2rem !important
}
.ml-5,
.mx-5 {
    margin-left: 2rem !important
}
.m-7 {
    margin: 3rem !important
}
.mt-7,
.my-7 {
    margin-top: 3rem !important
}
.mr-7,
.mx-7 {
    margin-right: 3rem !important
}
.mb-7,
.my-7 {
    margin-bottom: 3rem !important
}
.ml-7,
.mx-7 {
    margin-left: 3rem !important
}
.m-12 {
    margin: 5.5rem !important
}
.mt-12,
.my-12 {
    margin-top: 5.5rem !important
}
.mr-12,
.mx-12 {
    margin-right: 5.5rem !important
}
.mb-12,
.my-12 {
    margin-bottom: 5.5rem !important
}
.ml-12,
.mx-12 {
    margin-left: 5.5rem !important
}
.p-1 {
    padding: .25rem !important
}
.pt-1,
.py-1 {
    padding-top: .25rem !important
}
.pr-1,
.px-1 {
    padding-right: .25rem !important
}
.pb-1,
.py-1 {
    padding-bottom: .25rem !important
}
.pl-1,
.px-1 {
    padding-left: .25rem !important
}
.p-2 {
    padding: .5rem !important
}
.pt-2,
.py-2 {
    padding-top: .5rem !important
}
.pr-2,
.px-2 {
    padding-right: .5rem !important
}
.pb-2,
.py-2 {
    padding-bottom: .5rem !important
}
.pl-2,
.px-2 {
    padding-left: .5rem !important
}
.p-3 {
    padding: 1rem !important
}
.pt-3,
.py-3 {
    padding-top: 1rem !important
}
.pr-3,
.px-3 {
    padding-right: 1rem !important
}
.pb-3,
.py-3 {
    padding-bottom: 1rem !important
}
.pl-3,
.px-3 {
    padding-left: 1rem !important
}
.p-4 {
    padding: 1.5rem !important
}
.pt-4,
.py-4 {
    padding-top: 1.5rem !important
}
.pr-4,
.px-4 {
    padding-right: 1.5rem !important
}
.pb-4,
.py-4 {
    padding-bottom: 1.5rem !important
}
.pl-4,
.px-4 {
    padding-left: 1.5rem !important
}
.p-5 {
    padding: 2rem !important
}
.pt-5,
.py-5 {
    padding-top: 2rem !important
}
.pr-5,
.px-5 {
    padding-right: 2rem !important
}
.pb-5,
.py-5 {
    padding-bottom: 2rem !important
}
.pl-5,
.px-5 {
    padding-left: 2rem !important
}
.p-7 {
    padding: 3rem !important
}
.pt-7,
.py-7 {
    padding-top: 3rem !important
}
.pr-7,
.px-7 {
    padding-right: 3rem !important
}
.pb-7,
.py-7 {
    padding-bottom: 3rem !important
}
.pl-7,
.px-7 {
    padding-left: 3rem !important
}
.p-12 {
    padding: 5.5rem !important
}
.pt-12,
.py-12 {
    padding-top: 5.5rem !important
}
.pr-12,
.px-12 {
    padding-right: 5.5rem !important
}
.pb-12,
.py-12 {
    padding-bottom: 5.5rem !important
}
.pl-12,
.px-12 {
    padding-left: 5.5rem !important
}
/* Font weights */
.fw-300 {
    font-weight: 300;
}
.fw-400 {
    font-weight: 400;
}
.fw-500 {
    font-weight: 600;
}
.fw-600 {
    font-weight: 500;
}
.fw-bold {
    font-weight: bold;
}
/* Font sizes */
.fs-12 {
    font-size: 12px;
}
.fs-14 {
    font-size: 14px;
}
.fs-16 {
    font-size: 16px;
}
.fs-18 {
    font-size: 18px;
}
.fs-20 {
    font-size: 20px;
}
.fs-24 {
    font-size: 24px;
}
/* Line heights */
.lh-0 {
    line-height: 90%;
}
.lh-1 {
    line-height: 100%;
}
.lh-2 {
    line-height: 120%;
}
/* Шапка */
.header {
    position: sticky;
    top: 0;
    background: var(--background-header);
    box-shadow: 0 2px 5px var(--shadow-color);
    z-index: 1000;
}
.header-container {
    padding: 15px 0;
}
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
}
.header-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo {
    width: 18px;
    height: 18px;
    object-fit: contain;
    margin-right: 0.15rem;
}
.brand-text {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--primary-color);
    text-transform: uppercase;
}
.menu-toggle {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
    display: none;
}
.header-nav {
    display: flex;
}
.menu-list {
    display: flex;
    list-style: none;
    gap: 30px;
}
.menu-item {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.0rem;
    font-weight: 400;
    transition: color 0.3s ease;
}
.menu-item:hover {
    color: var(--primary-hover);
}
/* Адрес */
.address-container {
    background: var(--background-address);
    color: var(--text-white);
    padding: 10px 0;
    font-size: 0.95rem;
    text-align: center;
    font-weight: 200;
}
.address-container a {
    color: white !important;
    text-decoration: none;
    font-weight: 500;
}
.address-container a:hover {
    text-decoration: underline;
}
/* Мобильное меню */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: 100%;
    background: var(--background-address);
    transition: right 0.3s ease;
    z-index: 1001;
    overflow-y: auto; /* ← Добавлено: вертикальная прокрутка */
    -webkit-overflow-scrolling: touch; /* ← Опционально: плавная прокрутка на iOS */
}
.mobile-menu.active {
    right: 0;
}
.mobile-menu-close {
    padding: 0 15px 5px;
    text-align: right;
}
.close {
    color: var(--text-white);
    font-size: 2rem;
    cursor: pointer;
}
.mobile-menu-content {
    padding: 0 15px 15px;
}
.mobile-menu-content .menu-list {
    flex-direction: column;
    gap: 6px;
}
.mobile-menu-content .menu-item {
    color: var(--text-white);
    font-size: 1.2rem;
}
/* Кнопка "Наверх" */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9000;
}
.scroll-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}
.scroll-to-top:hover {
    background: var(--primary-hover);
    transform: translateY(-5px);
}
/* Адаптивность */
@media (max-width: 991px) {
    .header-nav {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .header-row {
        flex-direction: row;
        justify-content: space-between;
    }
    .brand-text {
        font-size: 1.5rem;
    }
}
@media (max-width: 576px) {
    .logo {
        width: 20px;
        height: 20px;
    }
    .brand-text {
        font-size: 1.2rem;
    }
    h1 {
        font-size: 2rem;
    }
}
.breadcrumbs {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 10px 0;
    padding: 0;
}
.breadcrumbs li::after {
    content: "/";
    margin-left: 10px;
}
.breadcrumbs li:last-child::after {
    content: "";
}
.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}

.address-container {
    background: var(--background-address);
}
.address-container a {
    color: white !important;
}
.nav-panel {
    margin-top: 10px;
}
.nav-panel ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
.nav-panel li {
    display: inline-block;
}
.nav-panel a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}
.nav-panel a:hover {
    text-decoration: none !important;
}
@media (max-width: 768px) {
    .nav-panel {
        display: none;
    }
    .address-container {
        display: none;
    }
    #menu-toggle {
        position: absolute;
        right: 15px;
    }
    .nav-panel ul {
        flex-direction: column;
        gap: 10px;
    }
    .nav-panel a {
        font-size: 14px;
    }
}
/* Футер */
.footer {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
    border-top: 4px solid var(--primary-color);
    margin-top: 3rem;
    font-family: 'Roboto', sans-serif;
}
.footer .container-xxl {
    padding: 0 15px;
}
.footer .footer-section {
    margin-bottom: 2rem;
}
.footer .footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
    color: white;
}
.footer .footer-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2.5rem;
    height: 2px;
    background: currentColor;
}
.footer .footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer .footer-list li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
}
.footer .footer-list a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
}
.footer .footer-list a:hover {
    opacity: 0.8;
}
.footer .footer-list i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
    width: 1.25rem;
    text-align: center;
}
.footer .social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer .social-links li a {
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}
.footer .social-links li a:hover {
    background: rgba(255, 255, 255, 0.2);
}
.footer .social-links i {
    font-size: 1.2rem;
}
.footer .footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    opacity: 0.8;
}
.footer .footer-bottom p {
    margin-bottom: 0.5rem;
}
.footer .footer-bottom small {
    font-size: 0.75rem;
    opacity: 0.7;
}
.footer .cookie-consent {
    background: rgba(4, 86, 153, 0.95);
    color: white;
    padding: 1.25rem;
}
.footer .cookie-content {
    margin: 0 auto;
}
.footer .cookie-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.85rem;
}
.footer .cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.footer .cookie-buttons .btn {
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
}
.footer .cookie-buttons .btn:hover {
    background-color: #333;
}
@media (max-width: 992px) {
    .footer {
        padding: 2.5rem 0 1rem;
    }
    .footer .footer-title {
        font-size: 1.1rem;
    }
    .footer .footer-list li {
        font-size: 0.9rem;
    }
}
@media (max-width: 768px) {
    .footer .footer-section {
        margin-bottom: 1.5rem;
    }
    .footer .social-links {
        justify-content: center;
    }
    .footer .cookie-buttons {
        justify-content: center;
    }
}
@media (max-width: 576px) {
    .footer .cookie-buttons .btn {
        flex: 1 0 100%;
        max-width: 100%;
    }
}
/* Контент */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
h1 {
    font-size: 2.1rem;
    margin: 20px 0;
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: -0.09rem;
    line-height: 120%;
}
h2 {
    font-size: 1.7rem;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: -0.09rem;
}
h3 {
    font-size: 1.45rem;
    color: var(--text-color);
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: -0.06rem;
}
p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
a:not(.menu-item) {
    color: var(--primary-color);
    text-decoration: none;
}
a:not(.menu-item):hover {
    text-decoration: underline;
}
/* Кнопки */
.btn {
    background: var(--primary-color);
    color: white !important;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}
.btn:hover {
    background: var(--primary-hover);
}
.btn-line {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color) !important;
}
.btn-line:hover {
    background: var(--primary-hover);
    color: white !important;
}
/* Формы фильтра */
.filter-form {
    background-color: var(--background-header);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.3s ease;
}
.filter-form .form-group {
    display: flex;
    flex-direction: column;
}
.filter-form label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 0.95rem;
}
.filter-form input[type="text"],
.filter-form textarea,
.filter-form select {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: #fff;
    font-size: 1rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    height: calc(2.5em + 0.75rem);
}
.filter-form input[type="text"]:focus,
.filter-form textarea,
.filter-form select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(2, 136, 209, 0.2);
    outline: none;
}
.filter-form input[type="number"],
.filter-form textarea,
.filter-form select {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: #fff;
    font-size: 1rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    height: calc(2.5em + 0.75rem);
}
.filter-form input[type="number"]:focus,
.filter-form select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(2, 136, 209, 0.2);
    outline: none;
}
.filter-form button[type="submit"] {
    background-color: white;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    max-width: 180px;
    align-self: flex-end;
    margin-top: 38px;
}
.filter-form button[type="submit"]:hover {
    background-color: var(--primary-hover);
    color: var(--text-white);
    transform: translateY(-2px);
}
.filter-form button[type="submit"]:active {
    transform: translateY(0);
}
.filter-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%230288d1' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 16px;
    padding-right: 2.5rem;
}
@media (max-width: 768px) {
    .filter-form .row {
        flex-direction: column;
    }
    .filter-form .form-group {
        width: 100%;
    }
    .filter-form button[type="submit"] {
        max-width: 100%;
        align-self: stretch;
    }
}
.filter-form input[type="number"] {
    border: 1px solid var(--border-color);
    background-color: #fff;
}
.filter-form input[type="number"]::-webkit-outer-spin-button,
.filter-form input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.filter-form .form-group {
    margin-bottom: 1rem;
}
.filter-form input:focus-within,
.filter-form select:focus {
    border-color: var(--primary-color);
    background-color: #f9faff;
}
.filter-form input::placeholder {
    color: #aaa;
    opacity: 1;
}
/* Пагинация */
.pagination ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    list-style: none;
    padding: 0;
}
.pagination a {
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    color: var(--primary-color);
    transition: background 0.3s ease;
    line-height: 250%;
}
.pagination a.active,
.pagination a:hover {
    background: var(--primary-color);
    color: #ffffff;
}
/* Основные стили Политика... */
.policy-section {
    margin-bottom: 30px;
}
.policy-section p,
.policy-section ul {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}
.policy-section ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}
.policy-section ul li {
    margin-bottom: 10px;
}
.policy-links {
    margin-top: 20px;
}
.policy-links a {
    color: var(--primary-color);
    text-decoration: none;
    margin-right: 15px;
}
.policy-links a:hover {
    text-decoration: underline;
}
@media (max-width: 576px) {
    .policy-section h2 {
        font-size: 1.5rem;
    }
    .policy-section p,
    .policy-section ul {
        font-size: 0.95rem;
    }
}
/* Основные стили для страницы О компании */
.about-intro img {
    transition: transform .3s ease
}
.about-intro img:hover {
    transform: scale(1.02)
}
.about-highlights svg {
    flex-shrink: 0;
    margin-right: 1rem
}
.about-highlights li {
    padding: .5rem 0;
    border-bottom: 1px solid var(--border-color)
}
.about-highlights li:last-child {
    border-bottom: none
}
.our-mission {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: var(--text-white);
    padding: 2rem
}
.our-mission blockquote {
    position: relative;
    padding: 1.5rem
}
.our-mission blockquote::before,
.our-mission blockquote::after {
    content: '"';
    font-size: 3rem;
    color: rgba(255, 255, 255, .5);
    position: absolute
}
.our-mission blockquote::before {
    top: 0;
    left: 0
}
.our-mission blockquote::after {
    bottom: 0;
    right: 0
}
.contact-block {
    background: linear-gradient(to right, var(--primary-color), var(--primary-hover));
    color: var(--text-white)
}
.contact-block .btn-light {
    color: var(--primary-color);
    font-weight: 500;
    transition: all .3s ease
}
.contact-block .btn-light:hover {
    background-color: var(--contrast-color);
    color: var(--text-color)
}
.company-numbers .display-4 {
    font-weight: 700
}
@media (max-width:768px) {
    .about-intro .col-lg-6 {
        margin-bottom: 2rem
    }
    .card {
        margin-bottom: 1.5rem
    }
    .company-numbers .col-6 {
        margin-bottom: 1.5rem
    }
    .contact-block .btn {
        width: 100%
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}
.text-white {
    color: #fff !important
}
/* Основные стили страницы "О компании" */
.about-page section {
    margin-bottom: 5rem;
    border-top: 1px solid #f5f5f7;
    padding-top: 3rem
}
.about-page ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.5rem
}
.about-page ul li {
    position: relative;
    padding-left: 0;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #424245;
    letter-spacing: -.01em
}
.about-page ul li strong {
    color: #000;
    font-weight: 600;
    letter-spacing: -.015em;
    background: linear-gradient(90deg, #000, #000);
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    padding-bottom: 2px
}
.about-page ul li:hover {
    transition: transform .22s ease-out
}
.about-page ul li:hover:before {
    transform: scaleX(1.2);
    background: linear-gradient(90deg, #0088ff 0%, #0066cc 100%)
}
.about-page .company-description {
    margin: 5rem 0;
    padding: 0 1rem
}
.about-page .company-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #424245;
    margin-bottom: 1.8rem;
    font-weight: 400
}
.about-page .company-description strong {
    color: #000;
    font-weight: 600;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 65%, rgba(0, 102, 204, .15) 65%)
}
@media (max-width:992px) {
    .about-page .company-description p {
        font-size: 1rem
    }
}
@media (max-width:768px) {
    .about-page .company-description {
        margin: 3rem 0
    }
}
.about-page .our-mission {
    margin: 5rem 0;
    position: relative;
    isolation: isolate
}
.about-page .our-mission .row {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem;
    background-color: #f8fafc;
    border-radius: 16px;
    position: relative;
    overflow: hidden
}
.about-page .our-mission h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1.8rem;
    position: relative;
    display: inline-block
}
.about-page .our-mission h2:after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40%;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px
}
.about-page .our-mission .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #424245;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: -.01em
}
.about-page .our-mission .lead strong {
    color: var(--primary-color);
    font-weight: 500
}
@media (max-width:1200px) {
    .about-page .our-mission .row {
        padding: 2rem
    }
}
@media (max-width:992px) {
    .about-page .our-mission {
        margin: 4rem 0
    }
    .about-page .our-mission .lead {
        font-size: 1.15rem
    }
}
@media (max-width:768px) {
    .about-page .our-mission .row {
        padding: 1.5rem;
        border-radius: 12px
    }
    .about-page .our-mission h2 {
        font-size: 1.6rem
    }
    .about-page .our-mission .lead {
        font-size: 1.1rem;
        line-height: 1.7
    }
}
.our-services .card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all .25s cubic-bezier(.2, 0, 0, 1);
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
    height: 100%;
    display: flex;
    flex-direction: column
}
.our-services .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, .12)
}
.our-services .card-img-top {
    height: 220px;
    object-fit: cover;
    width: 100%;
    transition: transform .3s ease
}
.our-services .card:hover .card-img-top {
    transform: scale(1.03)
}
.our-services .card-body {
    padding: 1.75rem;
    flex-grow: 1
}
.our-services .card-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111;
    line-height: 1.4
}
.our-services .card-body p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1.5rem
}
.our-services .card-footer {
    padding: 0 1.75rem 1.75rem;
    background: transparent
}
@media (max-width:767px) {
    .our-services {
        padding: 3rem 0
    }
    .our-services .card-img-top {
        height: 180px
    }
}
.delivery-map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    border: 1px solid #eaeaea
}
#deliveryMap {
    height: 400px;
    background: #f9f9f9
}
.delivery-legend {
    padding: 1.2rem;
    background: #f9f9f9;
    border-top: 1px solid #eee;
    display: grid;
    gap: .8rem
}
.legend-item {
    display: flex;
    align-items: center;
    font-size: .9rem;
    color: #555
}
.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    margin-right: 10px;
    flex-shrink: 0
}
.free-delivery {
    background: rgba(44, 131, 235, .7);
    border: 1px solid #2c83eb
}
.paid-delivery {
    background: rgba(255, 152, 0, .7);
    border: 1px solid #ff9800
}
.no-delivery {
    background: rgba(244, 67, 54, .7);
    border: 1px solid #f44336
}
@media (max-width:992px) {
    .company-address {
        margin: 3rem 0;
        padding: 1.5rem 0
    }
    #deliveryMap {
        height: 350px
    }
}
@media (max-width:768px) {
    .company-address .row {
        flex-direction: column-reverse
    }
    .company-address .col-md-5 {
        margin-top: 2rem
    }
    .company-address h2 {
        font-size: 1.5rem
    }
    .company-address address p {
        font-size: 1rem
    }
    #deliveryMap {
        height: 300px
    }
}
.company-text .content {
    max-width: 800px
}
.company-text h2 {
    letter-spacing: -.02em
}
.company-text h3 {
    letter-spacing: -.01em
}
.company-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #424245
}
.company-text strong {
    font-weight: 500;
    color: #000;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 70%, rgba(0, 102, 204, .08) 70%)
}
.company-text a {
    color: #0066cc;
    text-decoration: none;
    transition: all .2s ease
}
.company-text a:hover {
    color: #004080;
    text-decoration: underline
}
.company-text ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem
}
.company-text ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: .8rem;
    font-size: 1.1rem;
    line-height: 1.6
}
.company-text ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: .75em;
    width: 8px;
    height: 8px;
    background-color: #0066cc;
    border-radius: 50%;
    transform: translateY(-50%)
}
@media (max-width:991.98px) {
    .company-text {
        padding: 3rem 0
    }
}
@media (max-width:767.98px) {
    .company-text p,
    .company-text ul li {
        font-size: 1rem
    }
}
.staff-block {
    background: #f8f8fa;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-sizing: border-box;
    position: sticky;
    top: 20px
}
.staff-title {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #000;
    position: relative;
    padding-bottom: .5rem
}
.staff-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #0066cc
}
.staff-person {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eaeaea
}
.staff-person:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0
}
.person-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0
}
.person-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}
.person-info h4 {
    font-size: 1.1rem;
    margin: 0 0 .2rem;
    color: #000;
    font-weight: 500
}
.person-info p {
    font-size: .9rem;
    margin: 0 0 .3rem;
    color: #686868
}
.person-experience {
    font-size: .8rem;
    color: #0066cc;
    background: rgba(0, 102, 204, .08);
    padding: .2rem .5rem;
    border-radius: 4px;
    display: inline-block
}
.staff-cta {
    margin-top: 2rem;
    text-align: center
}
.staff-cta p {
    font-size: .95rem;
    margin-bottom: 1rem;
    color: #424245
}
.staff-button {
    display: inline-block;
    background: #0066cc;
    color: #fff;
    padding: .7rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all .2s ease
}
.staff-button:hover {
    background: #004080;
    transform: translateY(-1px)
}
@media (max-width:991px) {
    .staff-block {
        position: static;
        margin-top: 3rem
    }
}
.about-page .certificates {
    margin: 5rem 0
}
.about-page .certificates a {
    display: block;
    transition: all .3s cubic-bezier(.25, .1, .25, 1);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eaeaea;
    background: #fff;
    width: 100%;
    max-width: 260px
}
.about-page .certificates a:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .05);
    border-color: #d2d2d7
}
.about-page .certificates img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity .3s ease
}
.about-page .certificates a:hover img {
    opacity: .9
}
@media (max-width:992px) {
    .about-page .certificates {
        padding: 3rem 0;
        margin: 4rem 0
    }
}
@media (max-width:768px) {
    .about-page .certificates {
        padding: 2.5rem 0;
        margin: 3rem 0
    }
}
@media (max-width:480px) {
    .about-page .certificates a {
        max-width: 100%
    }
}
.contacts-page .contacts-main .card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all .3s ease
}
.contacts-page .contacts-main .card-body {
    padding: 2rem
}
.contacts-page .contacts-main .card-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #f5f5f7
}
.contacts-page .contacts-main h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1.5rem;
    letter-spacing: -.01rem
}
.contacts-page .contacts-main h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #515154
}
.contacts-page .contact-item {
    display: flex;
    align-items: flex-start;
    padding: .75rem 0;
    border-bottom: 1px solid #f5f5f7
}
.contacts-page .social-links {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -.5rem
}
.contacts-page .social-links .btn {
    border-radius: 8px;
    padding: .5rem 1rem;
    font-size: .875rem;
    font-weight: 500;
    border: none;
    margin: .25rem .5rem;
    transition: all .2s ease
}
@media (max-width:991.98px) {
    .contacts-page .contacts-main .card-body {
        padding: 1.5rem
    }
}
@media (max-width:767.98px) {
    .contacts-page .contact-item {
        flex-direction: column
    }
}
/* Стили для блока отзывов 
.reviews-block {
    border-radius: 12px;
    margin-bottom: 2rem
}
.reviews-block .card {
    background: #ffffff;
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 3rem
}
.reviews-block .card:hover {
    border-color: #a1a1a6
}
.reviews-block .card-body {
    padding: 1.5rem
}
.reviews-block .card-text {
    margin-top: 1rem;
    color: #1d1d1f
}
.reviews-block>div:last-child {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem
}
*/
/* Стили для блока партнеров */
.partners-block {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem
}
.partners-block img {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    padding: 1rem
}
.partners-block img:hover {
    filter: grayscale(0);
    opacity: 1
}
/* Стили для контактов */
.contacts-text {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem
}
.contacts-text ul {
    padding-left: 1.25rem
}
.contacts-text li {
    margin-bottom: 0.5rem
}
/* Стили для блока доверия (премиум версия) */
.trust-factors {
    margin: 4rem 0;
    position: relative
}
.trust-factors h2 {
    font-size: 2.25rem;
    font-weight: 650;
    letter-spacing: -0.5px;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block
}
.trust-factors h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px
}
.trust-factors .card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1)
}
.trust-factors .card-body {
    padding: 2.5rem
}
.trust-factors .row>div {
    padding: 0.75rem
}
.trust-factors h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0a0a0c;
    display: flex;
    align-items: center
}
.trust-factors h3::before {
    content: "✓";
    display: inline-block;
    margin-right: 10px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1em
}
.trust-factors p {
    font-size: 1rem;
    line-height: 1.6;
    color: #515154;
    margin-bottom: 0;
    padding-left: 1.75rem
}
/* Иконки для факторов доверия */
.trust-factor-item {
    position: relative;
    padding-left: 2.5rem
}
.trust-factor-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat
}
/* Разные иконки для каждого фактора */
.trust-factor-item.warranty::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230066CC"><path d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z"/></svg>')
}
.trust-factor-item.visit::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230066CC"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>')
}
.trust-factor-item.payment::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230066CC"><path d="M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z"/></svg>')
}
.trust-factor-item.certified::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230066CC"><path d="M4 3h16v2H4zm4 8h3v10H8zm6 0h3v10h-3z"/></svg>')
}
/* Адаптивность */
@media (max-width:992px) {
    .trust-factors .row>div {
        flex: 0 0 50%;
        max-width: 50%
    }
}
@media (max-width:576px) {
    .trust-factors .row>div {
        flex: 0 0 100%;
        max-width: 100%
    }
    .trust-factors h2 {
        font-size: 1.8rem
    }
}
/* Основные стили для страницы Вопросы-ответы */
.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 1.25rem;
    overflow: hidden;
    background-color: var(--background-header);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1)
}
.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(2, 136, 209, 0.12)
}
.faq-question {
    padding: 1.5rem 4rem 1.5rem 2rem;
    margin: 0;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    color: var(--text-color);
    background-color: var(--background-header);
    transition: all 0.3s ease;
    font-size: 1.1rem;
    line-height: 1.4
}
.faq-question:hover {
    background-color: rgba(2, 136, 209, 0.03)
}
.faq-question::before,
.faq-question::after {
    content: "";
    position: absolute;
    right: 2rem;
    top: 50%;
    width: 16px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease
}
.faq-question::after {
    transform: translateY(-50%) rotate(90deg)
}
.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(0deg);
    opacity: 0
}
.faq-item.active .faq-question {
    color: var(--primary-color);
    background-color: rgba(2, 136, 209, 0.05)
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1)
}
.faq-item.active .faq-answer {
    padding: 1rem;
    max-height: 2000px
}
.faq-answer-content {
    padding: 0 2rem 2rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease 0.1s
}
.faq-item.active .faq-answer-content {
    opacity: 1;
    transform: translateY(0)
}
.faq-answer-content p {
    margin-bottom: 1.25rem;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1rem
}
.faq-answer-content strong {
    color: var(--primary-hover);
    font-weight: 600
}
.faq-answer ul,
.faq-answer ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem
}
.faq-answer li {
    margin-bottom: 0.75rem;
    line-height: 1.6
}
.faq-answer table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 1.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05)
}
.faq-answer th {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 1rem;
    text-align: left;
    font-weight: 500
}
.faq-answer td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top
}
.faq-answer tr:nth-child(even) {
    background-color: rgba(2, 136, 209, 0.03)
}
.faq-text {
    padding: 3rem;
    background-color: var(--background-header);
    border-radius: 16px
}
@media (max-width: 768px) {
.faq-text {
    padding: 1rem;
}
}
.question-form {
    padding: 2rem;
    background-color: var(--background-header);
    border-radius: 12px
}
@media (max-width:992px) {
    .faq-question {
        padding: 1.25rem 3.5rem 1.25rem 1.5rem;
        font-size: 1.05rem
    }
    .faq-question::before,
    .faq-question::after {
        right: 1.5rem
    }
    .faq-answer-content {
        padding: 0 1.5rem 1.5rem
    }
}
@media (max-width:768px) {
    .faq-question {
        padding: 1.1rem 3rem 1.1rem 1.25rem
    }
    .faq-answer-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }
    .faq-text h2 {
        font-size: 1.5rem
    }
    .question-form {
        padding: 1rem
    }
}
@media (max-width:576px) {
    .faq-question {
        padding: 1rem 2.5rem 1rem 1rem;
        font-size: 1rem
    }
    .faq-question::before,
    .faq-question::after {
        width: 14px;
        right: 1rem
    }
    .faq-answer-content {
        padding: 0 1rem 1rem
    }
}
/* Основные стили для страницы Услуга */
.services-page section {
    margin: 3rem 0
}
.services-page img {
    border-radius: 0.3rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 1rem
}
.services-page img:hover {
    transform: scale(1.02)
}
.services-page .price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 0.75rem;
    overflow: hidden
}
.services-page .price-table th {
    background-color: #2b6cb0;
    color: white;
    padding: 1rem;
    font-weight: 500
}
.services-page .price-table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: middle
}
.services-page .price-table tr:nth-child(even) {
    background-color: #f8fafc
}
.services-page .price-table tr:hover {
    background-color: #ebf8ff
}
.step-card {
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    height: 100%;
    border-left: 4px solid #4299e1;
    transition: all 0.3s ease
}
.step-card:hover {
    border-left-color: #2b6cb0;
    transform: translateY(-3px)
}
.services-page .price-table,
.services-page .comparison-table {
    border-collapse: collapse;
    width: 100%
}
.services-page .price-table th,
.services-page .comparison-table th,
.services-page .price-table td,
.services-page .comparison-table td {
    border: 1px solid var(--border-color);
    padding: 12px;
    text-align: left
}
.services-page .price-table th,
.services-page .comparison-table th {
    background: var(--primary-color);
    color: var(--text-white)
}
.services-page .calculator-form {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    max-width: 400px;
    margin: 0 auto 20px
}
.services-page .form-group {
    margin-bottom: 20px
}
.services-page .form-group label {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: var(--text-color);
    display: block;
    margin-bottom: 5px
}
.services-page .form-group select {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--background-body);
    color: var(--text-color);
    appearance: none;
    cursor: pointer
}
.services-page .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 122, 255, 0.2)
}
/* Sidebar */
.sidebar {
  /*  position: sticky;
    top: 2rem;*/
}
.sidebar .card {
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}
.sidebar .card-body {
    padding: 2rem;
}
.sidebar h3 {
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    font-weight: 600;
}
.sidebar ul {
    padding-left: 0;
    list-style: none;
}
.sidebar li {
    margin-bottom: 0.875rem;
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.5;
}
.sidebar li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}
/* Карточки*/
.card {
    transition: all 0.3s ease;
    border: none;
    overflow: hidden
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px var(--shadow-color)
}
.card-img-top {
    height: 200px;
    object-fit: cover;
    width: 100%
}
.card-body {
    padding: 1.5rem
}
/* На мобильных устройствах (≤768px) — убираем отступы */
@media (max-width: 768px) {
    .card-body {
        padding: 0;
    }
}
/* Contact Form Styles */
.contact-form {
    margin: 0 auto;
    background: white; 
    padding: 1rem
}
.form-group {
    margin-bottom: 0.1rem
}
.form-label {
    display: block;
    margin-bottom: 0.1rem;
    font-weight: 500;
    font-size: 0.95rem
}
.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.5;
    background-color: var(--background-header);
    transition: all 0.25s ease
}
.form-input:focus,
.form-textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(2, 136, 209, 0.1)
}
.form-textarea {
    min-height: 120px;
    resize: vertical
}
.form-agreement {
    display: flex;
    align-items: center;
    margin: 0.5rem 0
}
.form-check-input {
    width: 18px;
    height: 18px;
    margin-right: 0.75rem;
    border: 1px solid var(--border-color);
    flex-shrink: 0
}
.form-check-label {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-top: .5rem;
}
@media (max-width:768px) {
    .contact-form {
        padding: 1.5rem
    }
    .form-group {
        margin-bottom: 1.25rem
    }
}
@media (max-width:576px) {
    .contact-form {
        padding: 0.25rem;
        border-radius: 12px
    }
    .form-input,
    .form-textarea {
        padding: 0.75rem
    }
}
/* Блок - оффер */
/*----------------------------*{border: 1px solid red;}-----------------------------------*/
.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 0.45rem;
    overflow: hidden
}
.table th {
    background-color: #2b6cb0;
    color: white;
    padding: 1rem;
    font-weight: 500
}
.table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: middle
}
.table tr:nth-child(even) {
    background-color: #f8fafc
}
.table tr:hover {
    background-color: #ebf8ff
}
.expert-note {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.08) 0%, rgba(46, 125, 50, 0.04) 100%);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
}
.alert-warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.12) 0%, rgba(255, 193, 7, 0.06) 100%);
    border-left: 4px solid var(--contrast-color);
    padding: 1.25rem;
    margin: 0;
    border-radius: 0 12px 12px 0;
}
.expert-note,
.alert-warning {
    margin: 0;
    padding: 1.25rem;
}
/* Карточки Img-фон */
.img-box {
    height: 190px;
    min-width: 99.9999%;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
}
#item-1 {
    background-image: url(https://tech-side.ru/global-data/image/card/obj-1.jpg);
}
#item-2 {
    background-image: url(https://tech-side.ru/global-data/image/card/obj-2.jpg);
}
#item-3 {
    background-image: url(https://tech-side.ru/global-data/image/card/obj-3.jpg);
}
#item-4 {
    background-image: url(https://tech-side.ru/global-data/image/card/obj-4.jpg);
}
#item-5 {
    background-image: url(https://tech-side.ru/global-data/image/card/obj-5.jpg);
}
#item-6 {
    background-image: url(https://tech-side.ru/global-data/image/card/obj-6.jpg);
}
/*---------------------------*/
.offer {
    padding: 0;
    /*background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);*/
}
.offer-title {
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 0.1rem;
    line-height: 1.0
}
.offer-content {
    padding: 2rem
}
.offer-description {
    font-size: 1.11rem;
    line-height: 1.1;
    color: #475569;
    margin-bottom: 2rem
}
.offer-description strong {
    color: #1e293b;
    font-weight: 600;
    position: relative
}
.features-box {
    padding-left: 2rem
}
.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    max-width: 480px;
    margin-bottom: 1.0rem
}
.feature-item {
    font-size: 1.125rem;
    line-height: 1.2;
    color: #6d7c91;
    position: relative;
    margin: 0;
    transition: all 0.3s ease
}
.feature-item:hover {
    transform: translateX(5px)
}
.feature-highlight {
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    font-size: 1.4rem
}
@media (max-width: 768px) {
    .offer-title {
        font-size: 1.75rem;
    }
    .feature-item {
        font-size: 1rem;
        padding-left: 0rem
    }
}
@media (max-width: 576px) {
    .offer-title {
        font-size: 1.5rem
    }
    .offer-description {
        font-size: 1rem
    }
}
.benefits {
    background: linear-gradient(135deg, #ffffffff 0%, #ffffffff 100%);
    position: relative;
    overflow: hidden;
}
.benefits::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(13, 145, 253, 0.09);
    border-radius: 50%;
}
.benefits__title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #212529;
    position: relative;
}
.benefits__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 1rem auto;
    border-radius: 2px;
}
.benefits__lead {
    text-align: center;
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 3rem;
    font-weight: 400;
}
.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #00b7ffff);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}
.benefit-card:hover::before {
    opacity: 1;
}
.benefit-card__icon {
    flex-shrink: 0;
    position: relative;
}
.benefit-card__number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-color), #00b7ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.benefit-card__content {
    flex: 1;
}
.benefit-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #212529;
}
.benefit-card__description {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 768px) {
    .benefits__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .benefit-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .benefits__title {
        font-size: 2rem;
    }
    .benefits__lead {
        font-size: 1.1rem;
    }
}
/* Product Cards Styles */
.product-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}
.product-description {
    line-height: 120%;
    font-size: 15px;
    color: #5f5f5f;
}
.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
    border-color: #e0e0e0;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #73b7ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.product-card:hover::before {
    opacity: 1;
}
/* Изображение товара */
.product-card img {
    width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.product-card:hover img {
    transform: scale(1.05);
}
/* Заголовок товара */
.product-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 1rem 1.5rem 1rem;
    line-height: 1.0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* Рейтинг */
.rating {
    color: #ffd000;
}
.product-card .rating {
    display: flex;
    justify-self: flex-start;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.product-card .stars {
    display: flex;
    gap: 2px;
}
.product-card .stars .fas.fa-star {
    font-size: 12px;
    color: #e2e8f0;
    transition: color 0.2s ease;
}
.product-card .rating span[itemprop="ratingValue"] {
    margin: -6px 0 0 6px;
    font-size: 16px;
    font-weight: 600;
    color: #64748b;
}
.rating>span:last-child {
    font-size: 12px;
    color: #94a3b8;
}
.product-card .stars .fas.fa-star.filled {
    color: #ffbb00;
}
/* Цена */
.product-card>p[itemprop="offers"] {
    margin: 0.01rem !important;
}
.price-box {
    text-align: center;
}
.price {
    font-size: 20px;
    font-weight: 700;
}
.price+small {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}
/* Кнопки */
.btn-box {
    display: flex;
    gap: 0px;
    margin-top: 20px;
}
.btn-box .col-7,
.btn-box .col-5 {
    flex: 1;
    min-width: 0;
}
.product-card .btn {
    padding: 0.3rem 1.2rem;
    background-color: rgb(241, 241, 241);
    color: var(--primary-color) !important;
    text-decoration: none !important;
}
.product-card .btn-buy:hover {
    background: linear-gradient(135deg, #26dc81, #13b959);
    color: white;
    transform: translateY(-1px);
    box-shadow: 2px 3px 9px rgba(38, 220, 93, 0.411);
    color: white !important;
}
/* Бейджи и статусы */
.product-card .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #dc2626;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}
.product-card .sale-badge {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}
.product-card .new-badge {
    background: linear-gradient(135deg, #059669, #047857);
}
/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.product-card {
    animation: fadeInUp 0.6s ease forwards;
}
/* Адаптивность */
@media (max-width: 1200px) {
    .product-card {
        padding: 16px;
    }
    .product-card h3 {
        font-size: 16px;
    }
    .price {
        font-size: 20px;
    }
}
@media (max-width: 768px) {
    .product-card {
        margin-bottom: 20px;
        border-radius: 12px;
    }
    .product-card img {
        height: 160px;
    }
    .btn-box {
        flex-direction: column;
        gap: 8px;
    }
    .btn-box .col-7,
    .btn-box .col-5 {
        flex: none;
        width: 100%;
    }
}
@media (max-width: 576px) {
    .product-card {
        padding: 12px;
    }
    .product-card h3 {
        font-size: 15px;
    }
    .price {
        font-size: 18px;
    }
    .rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}
/* Микро-анимации при взаимодействии */
.product-card:active {
    transform: translateY(-2px);
}
/*
.btn:active {
    transform: translateY(0) scale(0.98);
}*/
/* Фокус-стили для доступности */
.product-card:focus-within {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}
/* Страница Отзывы о септиках*/
form #review {
    max-width: 300px;
    min-width: 290px;
    height: calc(7.5em + 0.75rem);
}
.form-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #34495e;
}
.form-select {
    border-color: var(--border-color);
    border-radius: 8px;
    padding: 0.5rem;
    font-size: 1.0rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    max-width: 280px;
}
.form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}
#reviews-container {
    gap: 2.5rem;    
}
.review-card {
    border: none;
    border-radius: 12px;  
}
.review-card .card-body {
    padding: 1.5rem 0 1.5rem 1.5rem;
    background-color: #e8f5fd;
}
.review-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}
.review-card .rating-stars {
    margin-bottom: 1rem; display: flex; align-items: center;
}
.review-card .rating-stars i {
    color: #ffb133;
    font-size: 0.75rem;
}
.review-card .card-text {
    font-size: 0.95rem;
    color: #34495e;
    margin-bottom: 0.5rem;
}
.review-card .comment-text {
   font-size: 1rem;
}
.review-card img {
    max-width: 120px;
    height: auto;
    border-radius: 8px;
    margin-top: 0.5rem;
}
.text-danger {
    color: #dc3545;
    font-weight: 500;
}
.text-muted {
    font-size: 0.95rem;
    color: #6c757d;
}
@media (max-width: 768px) {
    #reviews-container {
        grid-template-columns: 1fr;
    }
    .review-card .card {
        margin-bottom: 1rem;
    }
    .form-select {
        font-size: 0.85rem;
    }
}
/* Стили для табов */
.categories-tabs {
    margin-bottom: 1rem;
}
.nav-tabs {
    list-style: none;
    border-bottom: 2px solid #e9ecef;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.nav-tabs .nav-item {
    margin-bottom: -2px;
}
.nav-tabs .nav-link {
    border: 0px solid transparent;
    border-radius: 4px 4px 0 0;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 16px;
    color: #6c757d;
    background: #f8f9fa;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.nav-tabs .nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    transition: width 0.3s ease;
}
.nav-tabs .nav-link:hover {
    color: #495057;
    background: #e9ecef;
    border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .nav-link:hover::before {
    width: 100%;
}
.nav-tabs .nav-link.active {
    color: var(--primary-color);
    background: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
    border-bottom: 1px solid #fff;
}
.nav-tabs .nav-link.active::before {
    width: 100%;
}
.nav-tabs .nav-link.active:hover {
    border-color: #dee2e6 #dee2e6 #fff;
}
/* Анимация переключения табов */
.tab-content {
    position: relative;
}
.tab-pane {
    animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Адаптивность */
@media (max-width: 768px) {
    .nav-tabs {
        flex-direction: column;
        gap: 0.25rem;
    }
    .nav-tabs .nav-link {
        border-radius: 6px;
        text-align: center;
        padding: 10px 16px;
    }
    .nav-tabs .nav-link::before {
        display: none;
    }
    .nav-tabs .nav-link.active {
        border: 2px solid var(--primary-color);
        background: var(--primary-color);
        color: white;
    }
}
/* Темная тема (опционально) */
@media (prefers-color-scheme: dark) {
    .nav-tabs {
        border-bottom-color: #495057;
    }
    .nav-tabs .nav-link {
        background: #343a40;
        color: #adb5bd;
    }
    .nav-tabs .nav-link:hover {
        background: #495057;
        color: #fff;
    }
    .nav-tabs .nav-link.active {
        background: #212529;
        color: #007bff;
        border-color: #495057 #495057 #212529;
    }
}
/*Отзывы о магазине*/
.reviews-section {
    padding: 40px 0;
    /* background: #f8f9fa;*/
    border-radius: 8px;
}
.reviews-section h2 {
    text-align: center;
    margin-bottom: 15px;
}
.aggregate-rating {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.review-card {
    background: #fff;
    border-radius: 8px;    padding: 20px;
}
.review-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}
.review-author {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.1rem;
}
.review-rating .stars i.filled {
    color: #ffc107;
}
.review-rating .stars i {
    color: #ccc;
    font-size: 0.9rem;
}
.review-date {
    color: #888;
    font-size: 0.9rem;
}
.review-content {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}
.review-footer {
    border-top: 1px solid #eee;
    padding-top: 10px;
}
.verified-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    color: #28a745;
}
.verified-badge i {
    margin-right: 5px;
}
.reviews-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .reviews-section h2 {
        font-size: 1.5rem;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 576px) {
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25em;
    padding: 0.29em 0.5em;
    font-size: 0.875rem;
    /* 14px при 16px базовом */
    font-weight: 600;
    line-height: 1.2;
    color: #0288d1;
    background-color: #e9f7ff;
    border-radius: 0.375rem;
    /* 6px */
    border: 1px solid #0096e7;
    white-space: nowrap;
    transition: all 0.15s ease-in-out;
}
/*Номер блока*/
/* Секция "Как воспользоваться гарантией?" */
.how-to-claim {
    padding: 40px 0;
    background-color: #f7fcff;
    border-radius: 8px;
    text-align: center;
    /* Центрирование контента */
}
/* Заголовок секции */
.how-to-claim h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.3;
}
/* Контейнер для шагов */
.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
/* Каждый шаг */
.step {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Легкая тень */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Плавные эффекты */
}
/* Эффект наведения для шага */
.step:hover {
    transform: translateY(-5px);
    /* Подъем карточки */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    /* Усиленная тень */
}
/* Номер шага */
.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    /* Белый текст */
    border-radius: 50%;
    /* Круглый фон */
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 15px;
    /* Центрирование и отступ снизу */
    transition: background-color 0.3s ease, transform 0.2s ease;
    /* Плавные эффекты */
}
/* Эффект наведения для номера */
.step-number:hover {
    background-color: var(--primary-hover);
    transform: scale(1.1);
    /* Легкое увеличение */
}
/* Заголовок шага */
.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}
/* Описание шага */
.step p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}
/* Ссылки в описании */
.step a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}
/* Адаптивность */
@media (max-width: 991.98px) {
    .how-to-claim {
        padding: 30px 0;
    }
    .how-to-claim h2 {
        font-size: 1.75rem;
    }
    .step {
        padding: 15px;
    }
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .step h3 {
        font-size: 1.1rem;
    }
    .step p {
        font-size: 0.95rem;
    }
}
@media (max-width: 767.98px) {
    .steps {
        flex-direction: column;
        gap: 15px;
    }
    .step {
        margin: 0 auto;
        max-width: 100%;
    }
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}
/* Доступность: высокий контраст */
@media (prefers-contrast: high) {
    .how-to-claim {
        background-color: #fff;
    }
    .step {
        border: 2px solid #000;
    }
    .step-number {
        background-color: #000;
        color: #fff;
    }
    .step h3,
    .step p {
        color: #000;
    }
    .step a {
        color: #0000ee;
    }
}
.portfolio-card .fa-map-marker-alt{font-size: 1.1rem; color: var(--primary-color);}
.portfolio-card .fa-check-circle{font-size: .9rem; color: var(--primary-color);}