/* ================================================= */
/* КАСТОМНЫЕ СТИЛИ ДЛЯ СТРАНИЦЫ                     */
/* Бурение артезианских скважин                     */
/* Файл: artezianskaya-custom.css                   */
/* ================================================= */

/* === ОБЩИЕ СТИЛИ === */
.content-block {
    background: var(--up-bg-main);
    border-radius: var(--up-border-radius-medium);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--up-box-shadow-small);
}

.content-block h2 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

.content-block h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.content-block p {
    margin-bottom: 15px;
    line-height: 1.7;
}

/* === ТАБЛИЦА ЦЕН - ПОКАЗАТЬ/СКРЫТЬ === 
.exp47_wrapper {
    position: relative;
    margin: 30px 0;
}

.exp47_fade {
    position: relative;
    overflow: hidden;
}

.exp47_fade.exp47_collapsed {
    max-height: 400px;
}

.exp47_fade.exp47_collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, white);
    pointer-events: none;
}

#exp47_table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

#exp47_table thead {
    background: #0B80E0;
    color: white;
}

#exp47_table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
}

#exp47_table td {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
}

#exp47_table tr:hover {
    background: #f8f9fa;
}

.exp47_district {
    font-weight: 500;
    color: #333;
}

.exp47_price {
    color: #0B80E0;
    font-weight: 600;
}

.exp47_hidden {
    display: none;
}

.exp47_show {
    display: table-row;
}

.exp47_btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
    padding: 12px 24px;
    background: white;
    border: 2px solid #0B80E0;
    color: #0B80E0;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.exp47_btn:hover {
    background: #0B80E0;
    color: white;
}

.exp47_btn .exp47_icon {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s;
}

.exp47_btn.exp47_expanded .exp47_icon {
    transform: rotate(180deg);
}
*/

/* === КНОПКИ МЕССЕНДЖЕРОВ === */
.mes_buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin: 40px 0;
}

.mes_banner {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mes_banner-mobile {
    display: none;
}

.mes_phone-icon {
    width: 50px;
    height: 50px;
    background: #0B80E0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.mes_phone-icon svg {
    width: 24px;
    height: 24px;
}

.mes_banner-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.mes_banner-subtitle {
    font-size: 14px;
    color: #666;
}

.mes_link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.mes_link:hover {
    transform: scale(1.1);
}

.mes_link-whatsapp {
    background: #25D366;
}

.mes_link-telegram {
    background: #0088cc;
}

.mes_icon {
    width: 28px;
    height: 28px;
    fill: white;
}

@media (max-width: 768px) {
    .mes_banner-desktop {
        display: none;
    }
    .mes_banner-mobile {
        display: flex;
    }
    .mes_buttons {
        flex-direction: column;
    }
}

/* === КАРТОЧКИ УСЛУГ === */
.service-card {
    background: var(--up-bg-wd);
    border: 1px solid var(--up-border-color);
    border-radius: 20px;
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.service-card__icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
}

.service-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-right: 70px;
}

.service-card__description {
    margin-bottom: 15px;
    line-height: 24px;
    font-size: 14px;
    flex-grow: 1;
}

.service-card__price {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
}

.service-card__link {
    background: #0B80E0;
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    transition: background 0.3s;
}

.service-card__link:hover {
    background: #0960b0;
    color: #fff;
}

/* === КАРТОЧКИ ПРОДУКТОВ (ОБУСТРОЙСТВО) === */


/* ═══════════════════════════════════════
   Обустройство скважин — карточки (модуль 66)
   ═══════════════════════════════════════ */
.products.tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 30px 0;
    clear: both;
}
.product.tile {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 14px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #edf0f7;
}
.product.tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 60px rgba(0, 0, 0, 0.08);
}
.product-media {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}
.product-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s;
    border-radius: 10px;
}
.product.tile:hover .product-media img { transform: scale(1.05); }
.product-price {
    position: absolute;
    top: 12px; left: 12px;
    background: #e8650a; color: #fff;
    padding: 5px 14px; border-radius: 20px;
    font-size: 14px; font-weight: 700; z-index: 1;
}
.product-price-first, .product-price-last { font-size: 12px; font-weight: 400; }
.product-content { flex: 1; display: flex; flex-direction: column; }
.product-title { font-size: 20px; font-weight: 800; color: #1a2744; margin-bottom: 12px; }
.product-uses.tiles.cells { display: flex; flex-direction: column; gap: 8px; margin-bottom: 15px; flex: 1; }
.product-uses .cell.tile { display: flex; align-items: flex-start; gap: 10px; padding: 0; box-shadow: none; border: none; background: transparent; }
.product-uses .cell.tile svg { flex-shrink: 0; color: #e8650a; margin-top: 2px; }
.product-uses .cell-text { font-size: 14px; color: #555; line-height: 1.4; }
.product-bottom { display: flex; gap: 10px; margin-top: auto; padding-top: 15px; }
.theme-btn { padding: 12px 24px; border-radius: 8px; font-size: 14px; font-weight: 700; text-decoration: none; text-align: center; transition: all 0.3s ease; cursor: pointer; display: inline-block; border: none; }
.theme-btn.border { background: transparent; border: 2px solid #1a2744; color: #1a2744; }
.theme-btn.border:hover { background: #1a2744; color: #fff; }
.theme-btn.accent { background: #e8650a; color: #fff; }
.theme-btn.accent:hover { background: #cf5608; }

@media (max-width: 960px) {
    .products.tiles { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 640px) {
    .products.tiles { grid-template-columns: 1fr; gap: 16px; }
    .product-bottom { flex-direction: column; gap: 8px; }
}

.popup_modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup_modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
}

.popup_modal-container {
    position: relative;
    z-index: 10000;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.popup_modal-content {
    background: white;
    border-radius: 20px;
    position: relative;
}

.popup_close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.popup_close-btn:hover {
    background: #f0f0f0;
    transform: rotate(90deg);
}

.popup_content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.popup_image-section {
    position: relative;
    background: #f8f9fa;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
}

.popup_worker-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup_image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.popup_image-badge span {
    font-weight: 600;
    color: #0B80E0;
}

.popup_form-section {
    padding: 40px;
}

.popup_form-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.4;
}

.popup_form-messages {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
}

.popup_form-messages.success {
    background: #d4edda;
    color: #155724;
}

.popup_form-messages.error {
    background: #f8d7da;
    color: #721c24;
}

.popup_form-fields {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup_form-group {
    position: relative;
}

.popup_form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
}

.popup_form-input:focus {
    outline: none;
    border-color: #0B80E0;
}

.popup_form-input.error {
    border-color: #dc3545;
}

.popup_field-error {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
}

.popup_submit-btn {
    width: 100%;
    padding: 16px;
    background: #0B80E0;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.popup_submit-btn:hover:not(:disabled) {
    background: #0960b0;
}

.popup_submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.popup_form-agreement {
    margin-top: 15px;
}

.popup_checkbox-label {
    display: flex;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.popup_checkbox {
    position: absolute;
    opacity: 0;
}

.popup_checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e1e8ed;
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s;
}

.popup_checkbox:checked + .popup_checkbox-custom {
    background: #0B80E0;
    border-color: #0B80E0;
}

.popup_checkbox:checked + .popup_checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
}

.popup_checkbox-text {
    font-size: 13px;
    line-height: 1.4;
    color: #666;
}

.popup_privacy-link {
    color: #0B80E0;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .popup_content-wrapper {
        grid-template-columns: 1fr;
    }
    .popup_image-section {
        min-height: 200px;
        border-radius: 20px 20px 0 0;
    }
    .popup_form-section {
        padding: 30px 20px;
    }
}

/* === КАЛЬКУЛЯТОР === */
/* === КАЛЬКУЛЯТОР === */
.calc_container {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.calc_container > p {
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 14px;
    color: #555;
}

.calc_header {
    margin-bottom: 20px;
}

.calc_title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.calc_subtitle {
    font-size: 14px;
    color: #666;
}

/* LAYOUT: 2/3 слева + 1/3 справа */
.calc_layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

/* Левая секция */
.calc_left_section {
    display: flex;
    flex-direction: column;
}

.calc_form_section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.calc_field {
    display: flex;
    flex-direction: column;
}

.calc_field_full {
    grid-column: 1 / -1;
}

.calc_label {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 13px;
    color: #333;
}

/* КОМПАКТНЫЕ ПОЛЯ ВВОДА */
.calc_input,
.calc_select {
    padding: 10px 12px;
    border: 2px solid #e1e8ed;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.calc_input:focus,
.calc_select:focus {
    outline: none;
    border-color: #0B80E0;
}

/* КОМПАКТНЫЕ РАДИО КНОПКИ */
.calc_options {
    display: flex;
    gap: 8px;
}

.calc_options_wide {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.calc_option {
    flex: 1;
}

.calc_option input[type="radio"] {
    display: none;
}

.calc_option_label {
    padding: 10px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    font-size: 13px;
    font-weight: 500;
    display: block;
}

.calc_option input[type="radio"]:checked + .calc_option_label {
    background: #0B80E0;
    color: white;
    border-color: #0B80E0;
}

/* КОМПАКТНАЯ КНОПКА */
.calc_submit {
    grid-column: 1 / -1;
    padding: 12px;
    background: #0B80E0;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

.calc_submit:hover {
    background: #0960b0;
}

/* КОМПАКТНОЕ ОПИСАНИЕ */
.calc_description {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #0B80E0;
}

.calc_description p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #555;
}

/* КОМПАКТНАЯ ПАНЕЛЬ РЕЗУЛЬТАТОВ (1/3 ширины) */
.calc_results_section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.calc_results_empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    text-align: center;
    color: #999;
    font-size: 14px;
    line-height: 1.5;
}

.calc_results_content {
    display: none;
}

.calc_results_content.calc_show {
    display: block;
}

.calc_total_wrapper {
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e1e8ed;
}

.calc_total_label {
    font-size: 11px;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calc_total {
    font-size: 32px;
    font-weight: 700;
    color: #0B80E0;
    line-height: 1.1;
}

.calc_note {
    font-size: 11px;
    color: #999;
    text-align: center;
    margin-bottom: 15px;
    font-style: italic;
}

.calc_breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calc_row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e1e8ed;
}

.calc_row_name {
    font-size: 12px;
    color: #666;
}

.calc_row_value {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-align: right;
}

/* АДАПТИВНОСТЬ */
@media (max-width: 968px) {
    .calc_container {
        padding: 20px;
    }
    
    .calc_layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .calc_form_section {
        grid-template-columns: 1fr;
    }
    
    .calc_options_wide {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calc_results_section {
        min-height: 200px;
    }
}

@media (max-width: 576px) {
    .calc_container {
        padding: 15px;
        margin: 20px 0;
    }
    
    .calc_title {
        font-size: 20px;
    }
    
    .calc_subtitle {
        font-size: 13px;
    }
    
    .calc_options_wide {
        grid-template-columns: 1fr;
    }
    
    .calc_total {
        font-size: 28px;
    }
}


/* === ВНУТРЕННЯЯ ПЕРЕЛИНКОВКА === */
.internal-links-block {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
}

.internal-links-block h3 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
}

.internal-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.internal-links-list li {
    margin-bottom: 12px;
}

.internal-links-list a {
    color: #0B80E0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
}

.internal-links-list a::before {
    content: '→';
    margin-right: 8px;
    font-weight: 600;
}

.internal-links-list a:hover {
    color: #0960b0;
    text-decoration: underline;
}

/* === ОТЗЫВЫ === */
.otz-section {
    margin: 60px 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 16px;
}

.otz-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.otz-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

.otz-videos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.otz-video-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.otz-video-item:hover {
    transform: scale(1.03);
}

.otz-video-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.otz-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.otz-play-btn::after {
    content: '▶';
    font-size: 18px;
    color: #0B80E0;
    margin-left: 3px;
}

.otz-messages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.otz-message-item img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

@media (max-width: 968px) {
    .otz-container {
        grid-template-columns: 1fr;
    }
}

/* === FAQ === */
.faq-section {
    background-color: var(--up-bg-wd);
    border-radius: var(--up-border-radius-large);
    box-shadow: var(--up-box-shadow-large);
    
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--up-bg-wd);
    border: 1px solid var(--up-border-color);
    border-radius: var(--up-border-radius-medium);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: #0B80E0;
    box-shadow: 0 4px 6px -1px rgba(11, 128, 224, 0.1);
}

.faq-item[open] {
    background-color: var(--up-bg-main);
    border-color: #0B80E0;
    box-shadow: 0 10px 15px -3px rgba(11, 128, 224, 0.1);
}

.faq-item[open] .faq-question {
    background-color: var(--up-bg-gray);
    padding-bottom: 16px;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: all 0.3s ease;
}

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

.faq-question::marker {
    display: none;
}

.faq-item:hover .faq-question {
    background-color: var(--up-bg-gray);
}

.question-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--up-text-wd-color);
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    color: #0B80E0;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--up-text-color);
    animation: slideDown 0.3s ease-out;
}

.faq-answer p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 24px 20px;
    }
    .faq-question {
        padding: 16px;
    }
    .question-text {
        font-size: 1rem;
    }
}

/* === АДАПТИВ === */
@media (max-width: 768px) {
    .exp47_btn {
        font-size: 14px;
    }
    #exp47_table th,
    #exp47_table td {
        padding: 10px;
        font-size: 12px;
    }
}


/*---------------блоки о компании---------------*/
/* Блок статистики */
.stats-section {
    width: 100%;
    margin: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Карточка статистики - используем стили из .product.tile */
.stat-card {
    background: var(--up-bg-wd, #ffffff);
    border-radius: var(--up-border-radius-medium, 12px);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--up-box-shadow-large, 0 8px 40px rgba(0, 0, 0, 0.08));
    border: 1px solid var(--up-border-color, #e5e7eb);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 60px rgba(0, 0, 0, 0.12);
}

/* Число - используем стили из .fs-price-content b */
.stat-number {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #0B80E0;
    margin-bottom: 12px;
}

/* Заголовок - используем стили из .product-title */
.stat-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--up-text-wd-color, #1f2937);
    margin-bottom: 8px;
    line-height: 1.3;
}

/* Описание - используем стили из .cell-text */
.stat-description {
    font-size: 14px;
    line-height: 1.5;
    color: var(--up-text-color, #6b7280);
}

/* Адаптивность для планшетов */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-title {
        font-size: 15px;
    }
    
    .stat-description {
        font-size: 13px;
    }
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .stats-section {
        margin: 30px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 26px;
        margin-bottom: 10px;
    }
    
    .stat-title {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .stat-description {
        font-size: 12px;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .stats-section {
        margin: 20px 0;
    }
    
    .stat-card {
        padding: 18px 12px;
    }
    
    .stat-number {
        font-size: 24px;
    }
}

/* Темная тема - как у .product.tile */
.dark-theme .stat-card {
    background: var(--up-bg-wd);
    border-color: var(--up-border-color);
}

.dark-theme .stat-title {
    color: var(--up-text-wd-color);
}

.dark-theme .stat-description {
    color: var(--up-text-color);
}


/*------------------цены таблица бурение-----------------*/
.exp47_wrapper {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    position: relative;
}

/* Таблица */
.exp47_wrapper table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    table-layout: fixed;
}

/* Шапка таблицы */
.exp47_wrapper thead {
    background: linear-gradient(135deg, #0B80E0 0%, #0B80E0 100%);
    color: white;
}

.exp47_wrapper thead th {
    padding: 8px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.exp47_wrapper thead th:first-child {
    text-align: left;
    padding-left: 25px;
    width: 25%;
}

.exp47_wrapper thead th:nth-child(2),
.exp47_wrapper thead th:nth-child(3),
.exp47_wrapper thead th:nth-child(4),
.exp47_wrapper thead th:nth-child(5),
.exp47_wrapper thead th:nth-child(6) {
    width: 15%;
}

/* Строки таблицы */
.exp47_wrapper tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.exp47_wrapper tbody tr:hover {
    background: linear-gradient(135deg, #667eea15, #764ba215);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.exp47_wrapper tbody tr:last-child {
    border-bottom: none;
}

/* Ячейки */
.exp47_wrapper td {
    padding: 18px 15px;
    border: none;
    font-size: 14px;
    color: #2c3e50;
    text-align: center;
}

.exp47_wrapper td:first-child {
    font-weight: 600;
    color: #34495e;
    padding-left: 25px;
    background: linear-gradient(90deg, #f8f9fa, transparent);
    text-align: left;
    width: 25%;
}

.exp47_wrapper td:nth-child(2),
.exp47_wrapper td:nth-child(3),
.exp47_wrapper td:nth-child(4),
.exp47_wrapper td:nth-child(5),
.exp47_wrapper td:nth-child(6) {
    width: 15%;
}

/* Цены */
.exp47_wrapper .exp47_price {
    font-weight: 700;
    color: #667eea;
    font-size: 15px;
}

/* Название района */
.exp47_wrapper .exp47_district {
    position: relative;
    padding-left: 15px;
}

.exp47_wrapper .exp47_district:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #667eea;
}

/* Скрытие строк */
.exp47_wrapper tbody tr.exp47_hidden {
    display: none;
}

/* Градиент для плавного перехода */
.exp47_fade {
    position: relative;
}

.exp47_fade.exp47_collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
    pointer-events: none;
    border-radius: 0 0 15px 15px;
    z-index: 1;
}

/* Кнопка "Показать все" */
.exp47_btn {
    display: block;
    margin: 0 auto 35px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #0B80E0 0%, #0B80E0 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(11, 128, 224, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.exp47_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 128, 224, 0.4);
}

.exp47_btn:active {
    transform: translateY(0);
}

.exp47_btn .exp47_icon {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
    font-size: 12px;
}

.exp47_btn.exp47_expanded .exp47_icon {
    transform: rotate(180deg);
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .exp47_wrapper thead th,
    .exp47_wrapper td {
        padding: 12px 8px;
        font-size: 12px;
    }
    
    .exp47_wrapper thead th:first-child,
    .exp47_wrapper td:first-child {
        padding-left: 15px;
    }

    .exp47_btn {
        padding: 10px 25px;
        font-size: 13px;
    }

    .exp47_fade.exp47_collapsed::after {
        height: 60px;
    }
}

/* Плавное появление строк */
@keyframes exp47FadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.exp47_wrapper tbody tr.exp47_show {
    animation: exp47FadeIn 0.3s ease-in;
}
/* Дополнительные стили для таблицы глубин (если нужно) */
.exp47_depth {
    font-weight: bold;
    color: #2196F3;
}

.exp47_range {
    color: #666;
}

.exp47_horizon {
    font-style: italic;
    color: #4CAF50;
}

.exp47_geology {
    color: #555;
    font-size: 0.9em;
}

/*-----------------Отзывы видео+фото ---------------------------- */
.otz-section {
            max-width: 1400px;
            margin: 60px auto;
            padding: 0 20px;
        }

        .otz-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            align-items: start;
        }

        .otz-videos-wrapper {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .otz-title {
            font-size: 36px;
            font-weight: 700;
            margin: 0 0 25px 0;
            color: #1a1a1a;
            line-height: 1.2;
        }

        .otz-videos {
            display: grid;
            grid-auto-flow: column;
            grid-auto-columns: calc(33.333% - 14px);
            gap: 20px;
            overflow-x: auto;
            overflow-y: hidden;
            padding-bottom: 20px;
            scroll-behavior: smooth;
        }

        .otz-videos::-webkit-scrollbar {
            height: 4px;
        }

        .otz-videos::-webkit-scrollbar-track {
            background: #d1d5db;
            border-radius: 10px;
        }

        .otz-videos::-webkit-scrollbar-thumb {
            background: #3b82f6;
            border-radius: 10px;
        }

        .otz-videos::-webkit-scrollbar-thumb:hover {
            background: #2563eb;
        }

        .otz-video-item {
            position: relative;
            background: #f5f5f5;
            border-radius: 16px;
            overflow: hidden;
            aspect-ratio: 9 / 16;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .otz-video-item:hover {
            transform: translateY(-5px);
        }

        .otz-video-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .otz-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: rgba(0, 150, 136, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
            z-index: 1;
        }

        .otz-video-item:hover .otz-play-btn {
            background: rgba(0, 150, 136, 1);
        }

        .otz-play-btn::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 20px solid white;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            margin-left: 5px;
        }

        .otz-messages {
            display: grid;
            grid-auto-flow: column;
            grid-auto-columns: calc(33.333% - 14px);
            gap: 20px;
            overflow-x: auto;
            overflow-y: hidden;
            padding-bottom: 20px;
            scroll-behavior: smooth;
        }

        .otz-messages::-webkit-scrollbar {
            height: 4px;
        }

        .otz-messages::-webkit-scrollbar-track {
            background: #d1d5db;
            border-radius: 10px;
        }

        .otz-messages::-webkit-scrollbar-thumb {
            background: #3b82f6;
            border-radius: 10px;
        }

        .otz-messages::-webkit-scrollbar-thumb:hover {
            background: #2563eb;
        }

        .otz-message-item {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            height: fit-content;
        }

        .otz-message-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        .otz-message-item img {
            width: 100%;
            height: auto;
            object-fit: contain;
            display: block;
        }

        @media (max-width: 1200px) {
            .otz-container {
                grid-template-columns: 1fr;
            }
            
            .otz-videos,
            .otz-messages {
                grid-auto-columns: calc(33.333% - 14px);
            }
        }

        @media (max-width: 768px) {
            .otz-title {
                font-size: 28px;
                margin-bottom: 20px;
            }

            .otz-videos,
            .otz-messages {
                grid-auto-columns: calc(50% - 10px);
            }
        }

        @media (max-width: 480px) {
            .otz-title {
                font-size: 24px;
                margin-bottom: 15px;
            }

            .otz-videos,
            .otz-messages {
                grid-auto-columns: 80%;
            }
        }


/* Убираем только ЛЕВЫЕ отступы - добавить в начало new-css */
/* Убираем левые отступы у body и html */
body, html {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

/* Убираем левые отступы у основных блоков */
div, section, article, main, header, footer {
    margin-left: 0 !important;
}

/* Bootstrap - только левые/правые для сетки */
.container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.row {
    margin-left: -15px !important;
    margin-right: -15px !important;
}

[class*="col-"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Убираем левые отступы у ваших классов */
[class*="fs-"] {
    margin-left: 0 !important;
}
/* ========== ВАШИ СТИЛИ НИЖЕ ========== */


/*------------Что такое обустройство скважины-----*/
/* Новые стили для интеграции изображения в дизайн */

.image-section {
    border-radius: 0 20px 20px 0;
    overflow: hidden;
}

.hero-image {
    transition: transform 0.3s ease;
}

.image-section:hover .hero-image {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(52, 152, 219, 0.1) 0%, 
        rgba(41, 128, 185, 0.15) 100%
    );
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 991px) {
    .image-section {
        border-radius: 20px 20px 0 0;
    }
}

/*---------popup-форма-----------------------*/
/* Стили для всплывающего окна с префиксом popup_ */
.popup_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup_modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
}

.popup_modal-container {
    position: relative;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: popup_slideIn 0.3s ease-out;
}

@keyframes popup_slideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup_modal-content {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.popup_close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: #666;
    transition: all 0.3s ease;
}

.popup_close-btn:hover {
    background: #ffffff;
    color: #333;
    transform: scale(1.1);
}

.popup_content-wrapper {
    display: flex;
    min-height: 500px;
}

.popup_image-section {
    flex: 0 0 45%;
    background: linear-gradient(135deg, #2980b9, #3498db);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.popup_worker-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.popup_image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.popup_image-badge span {
    font-weight: 700;
    color: #2980b9;
}

.popup_form-section {
    flex: 0 0 55%;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup_form-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: left;
}

.popup_form-messages {
    margin-bottom: 20px;
}

.popup_form-message {
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
}

.popup_form-message.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.popup_form-message.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.popup_form-fields {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.popup_form-group {
    display: flex;
    flex-direction: column;
}

.popup_form-input {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.popup_form-input:focus {
    outline: none;
    border-color: #3498db;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.popup_form-input.error {
    border-color: #e74c3c;
    background: #fdf2f2;
}

.popup_form-input.success {
    border-color: #27ae60;
    background: #f8fff8;
}

.popup_field-error {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    font-weight: 500;
}

.popup_submit-btn {
    width: 100%;
    padding: 18px 20px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.popup_submit-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.popup_submit-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.popup_btn-loader {
    display: inline-block;
}

.popup_form-agreement {
    margin-top: 15px;
}

.popup_checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.4;
    color: #5a6c7d;
}

.popup_checkbox {
    display: none;
}

.popup_checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #bdc3c7;
    border-radius: 3px;
    background: #ffffff;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 1px;
}

.popup_checkbox:checked + .popup_checkbox-custom {
    background: #3498db;
    border-color: #3498db;
}

.popup_checkbox:checked + .popup_checkbox-custom::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 6px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.popup_privacy-link {
    color: #3498db;
    text-decoration: underline;
}

.popup_privacy-link:hover {
    color: #2980b9;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .popup_modal-container {
        width: 95%;
        max-height: 95vh;
    }
    
    .popup_content-wrapper {
        flex-direction: column;
        min-height: auto;
    }
    
    .popup_image-section {
        flex: none;
        height: 200px;
    }
    
    .popup_form-section {
        flex: none;
        padding: 25px 20px;
    }
    
    .popup_form-title {
        font-size: 18px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .popup_close-btn {
        width: 35px;
        height: 35px;
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .popup_form-section {
        padding: 20px 15px;
    }
    
    .popup_form-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .popup_form-input {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .popup_submit-btn {
        padding: 15px 20px;
        font-size: 16px;
    }
}


/*--------- Баннер ВИДЕО + форма связи ----------*/
/* ------------------------начало Баннер верх --------------------------------------------------------*/
.fs-drilling-block {
    margin-top: 40px;
    margin-bottom: 30px;
}

/* Заголовок страницы - компактный */
.fs-page-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.fs-page-title .fs-accent-text {
    color: #0B80E0;
}

/* Героическое изображение - компактное */
.fs-hero-image {
    border-radius: 20px;
    background: url('/image/catalog/vdgstore_files/form-head/kes-b.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

.fs-hero-image img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    height: auto;
}

/* Бейдж на изображении - компактный */
.fs-image-badge {
    position: absolute;
    z-index: 10;
    bottom: 12px;
    left: 12px;
    border-radius: 12px;
    background: linear-gradient(141deg, rgba(255, 255, 255, 0.71) 0%, rgba(255, 255, 255, 0.30) 100%);
    backdrop-filter: blur(1.5px);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    width: 180px;
    padding: 8px 12px;
}

.fs-image-badge span {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.3;
    display: block;
}

/* Мобильная версия изображения */
.fs-mobile-view {
    display: block;
    margin-bottom: 20px;
}

.fs-desktop-only {
    display: none;
}

/* Блоки цен - компактные */
.fs-price-column {
    margin-top: 8px;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
}

.fs-price-icon {
    padding-left: 0;
    padding-right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #0B80E0;
}

.fs-price-icon img {
    width: auto;
    max-width: 100%;
    height: 36px;
}

.fs-price-content {
    padding-left: 10px;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: bold;
}

.fs-price-content b {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: #0B80E0;
}

/* Компактная форма связи - высота ~3-4 см */
.fs-compact-form-wrapper {
    margin-top: 15px;
    margin-bottom: 10px;
}

.fs-compact-form {
   /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    padding: 8px;
    border: 1px solid #dee2e6;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);*/
    height: auto;
    min-height: 3cm; /* Примерно 3 см */
    max-height: 4cm; /* Максимум 4 см */
}

.fs-compact-row {
    display: flex;
    gap: 6px;
    margin-bottom: 6px;
}

.fs-compact-group {
    flex: 1;
}

.fs-compact-input {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 12px;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
    height: 28px; /* Фиксированная высота для компактности */
}

.fs-compact-input:focus {
    outline: none;
    border-color: #0B80E0;
}

.fs-compact-btn {
    width: 100%;
    height: 28px; /* Такая же высота как у input */
    padding: 0 10px;
    background: linear-gradient(135deg, #0B80E0 0%, #0967c4 100%);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.fs-compact-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #0967c4 0%, #0B80E0 100%);
}

.fs-compact-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
}

/* Компактный чекбокс для согласия */
.fs-compact-agreement {
    margin-top: 4px;
}

.fs-compact-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    font-size: 9px;
    line-height: 1.2;
    color: #666;
    cursor: pointer;
}

.fs-compact-checkbox {
    display: none;
}

.fs-compact-checkbox-custom {
    width: 10px;
    height: 10px;
    border: 1px solid #dee2e6;
    border-radius: 2px;
    background: #fff;
    flex-shrink: 0;
    margin-top: 1px;
    position: relative;
    transition: all 0.2s ease;
}

.fs-compact-checkbox:checked + .fs-compact-checkbox-custom {
    background: #0B80E0;
    border-color: #0B80E0;
}

.fs-compact-checkbox:checked + .fs-compact-checkbox-custom:after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 7px;
    font-weight: bold;
}

.fs-compact-checkbox-text {
    flex: 1;
}

.fs-compact-privacy-link {
    color: #0B80E0;
    text-decoration: underline;
}

.fs-compact-privacy-link:hover {
    color: #0967c4;
}

/* ===== АДАПТИВНОСТЬ ===== */

@media (max-width: 575px) {
    .fs-drilling-block {
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .fs-page-title {
        font-size: 20px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .fs-price-content b {
        font-size: 20px;
    }

    .fs-hero-image {
        min-height: 220px;
    }

    .fs-mobile-view {
        margin-bottom: 15px;
    }

    .fs-compact-form {
        padding: 6px;
    }

    .fs-compact-row {
        flex-direction: column;
        gap: 4px;
        margin-bottom: 4px;
    }

    .fs-compact-input,
    .fs-compact-btn {
        height: 32px; /* Немного больше на мобильных */
        font-size: 14px; /* Предотвращает zoom на iOS */
    }

    .fs-compact-checkbox-label {
        font-size: 10px;
    }

    .fs-compact-checkbox-custom {
        width: 12px;
        height: 12px;
    }

    .fs-compact-checkbox:checked + .fs-compact-checkbox-custom:after {
        font-size: 8px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .fs-compact-row {
        flex-direction: column;
        gap: 4px;
    }

    .fs-compact-input,
    .fs-compact-btn {
        height: 30px;
    }
}

@media (min-width: 768px) {
    .container {
        width: calc(100% - 30px);
    }

    .fs-page-title {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .fs-mobile-view {
        display: none;
    }

    .fs-desktop-only {
        display: block;
    }

    .fs-price-icon img {
        height: 40px;
    }

    .fs-compact-form {
        padding: 10px;
        min-height: 3.2cm;
        max-height: 4.2cm;
    }

    .fs-compact-row {
        margin-bottom: 8px;
    }

    .fs-compact-input,
    .fs-compact-btn {
        height: 30px;
        font-size: 12px;
    }

    .fs-compact-checkbox-label {
        font-size: 10px;
    }
}

@media (min-width: 992px) {
    .fs-drilling-block {
        margin-top: 50px;
        margin-bottom: 40px;
    }

    .fs-page-title {
        font-size: 32px;
        line-height: 1.25;
        margin-bottom: 20px;
    }

    .fs-hero-image {
        min-height: 400px;
    }

    .fs-price-column {
        margin-bottom: 25px;
    }

    .fs-price-content b {
        font-size: 26px;
    }

    .fs-compact-form {
        padding: 12px;
        min-height: 3.5cm;
        max-height: 4.5cm;
    }

    .fs-compact-input,
    .fs-compact-btn {
        height: 32px;
        font-size: 13px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }

    .fs-page-title {
        font-size: 34px;
    }

    .fs-hero-image {
        min-height: 420px;
    }

    .fs-price-content b {
        font-size: 28px;
    }
}

@media (min-width: 1500px) {
    .container {
        width: 1470px;
    }

    .fs-page-title {
        font-size: 36px;
        line-height: 1.25;
    }
}

/* Скрываем старые элементы */
.fs-button-wrapper,
.fs-promo-text {
    display: none;
}

/* конец Баннер верх */


/*--------- Форма обратной связи с фото ----------*/
/* Основной контейнер формы */
#for2_contactFormWidget {
    font-family: 'Roboto', Arial, sans-serif;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0;
    height: 100%;
}

/* Заголовок над формой */
#for2_contactFormWidget .for2_main-form-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--up-text-wd-color, #1f2937);
    margin: 0 0 20px 0;
    text-align: center;
    line-height: 1.3;
}

/* Wrapper вокруг всей формы */
#for2_contactFormWidget .for2_form-wrapper {
    width: 100%;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 20px;
    margin: 0;
    height: auto;
    min-height: 300px;
}

/* Основной блок формы - стилизация как .product.tile */
#for2_contactFormWidget .for2_b_tConform {
    width: 100%;
    background: var(--up-bg-wd, #ffffff);
    border-radius: var(--up-border-radius-medium, 12px);
    padding: 25px;
    box-shadow: var(--up-box-shadow-large, 0 8px 40px rgba(0, 0, 0, 0.08));
    border: 1px solid var(--up-border-color, #e5e7eb);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    margin: 0;
}

/* Эффект hover как у .product.tile */
#for2_contactFormWidget .for2_b_tConform:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 60px rgba(0, 0, 0, 0.12);
}

/* Отключаем стили для .big версии */
#for2_contactFormWidget .for2_b_tConform.for2_big {
    background: inherit;
    padding: inherit;
    margin: 0;
}

/* Заголовок формы - скрыт */
#for2_contactFormWidget .for2_b_tCon-header {
    display: none;
}

/* Заголовок формы - по центру */
#for2_contactFormWidget .for2_form-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--up-text-wd-color, #1f2937);
    margin: 0 0 25px 0;
    text-align: center;
    line-height: 1.3;
}

/* Вертикальное расположение полей для колонки */
#for2_contactFormWidget .for2_b_tConform-fields {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

/* Стили полей ввода */
#for2_contactFormWidget .for2_b_tConform-fields input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 2px solid var(--up-border-color, #e5e7eb);
    background: var(--up-bg-wd, #ffffff);
    border-radius: var(--up-border-radius-small, 8px);
    font: 16px 'Roboto', sans-serif;
    color: var(--up-text-wd-color, #1f2937);
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

#for2_contactFormWidget .for2_b_tConform-fields input:focus {
    border-color: var(--color-blue-1, #0B80E0);
    box-shadow: 0 0 0 3px rgba(11, 128, 224, 0.1);
    transform: translateY(-1px);
}

#for2_contactFormWidget .for2_b_tConform-fields input::-webkit-input-placeholder {
    color: var(--up-text-light-color, #9ca3af);
    font-weight: 400;
}

#for2_contactFormWidget .for2_b_tConform-fields input::-moz-placeholder {
    color: var(--up-text-light-color, #9ca3af);
    font-weight: 400;
}

/* Состояния полей */
#for2_contactFormWidget .for2_b_tConform-fields input.for2_error {
    border-color: #ef4444;
    background-color: #fef2f2;
    animation: for2_shake 0.5s ease-in-out;
}

#for2_contactFormWidget .for2_b_tConform-fields input.for2_error::-webkit-input-placeholder {
    color: #dc2626;
}

#for2_contactFormWidget .for2_b_tConform-fields input.for2_success {
    border-color: #10b981;
    background-color: #fff;
}

/* Кнопка отправки - только --color-blue-2 */
#for2_contactFormWidget .for2_b_tConform-fields .for2_button1 {
    width: 100%;
    height: 48px;
    padding: 0 24px;
    background: var(--color-blue-2, #0969da);
    color: #ffffff;
    border: 2px solid var(--color-blue-2, #0969da);
    border-radius: var(--up-border-radius-small, 8px);
    font: 16px 'Roboto', sans-serif;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

#for2_contactFormWidget .for2_b_tConform-fields .for2_button1:hover:not(:disabled) {
    background: var(--color-blue-2, #0969da);
    border-color: var(--color-blue-2, #0969da);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(9, 105, 218, 0.3);
}

#for2_contactFormWidget .for2_b_tConform-fields .for2_button1:disabled {
    background: var(--color-blue-2, #0969da);
    border-color: var(--color-blue-2, #0969da);
    color: #fff;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.6;
}

/* Блок согласия - компактный без фона */
#for2_contactFormWidget .for2_b_tCon-offer {
    font-size: 12px;
    color: var(--up-text-color, #7e7d82);
    line-height: 19px;
    cursor: pointer;
    user-select: none;
    text-align: center;
    margin-top: 5px;
    padding: 0;
    background: none;
    border: none;
    transition: color 0.3s ease;
}

#for2_contactFormWidget .for2_b_tCon-offer:hover {
    color: var(--color-blue-1, #0B80E0);
}

#for2_contactFormWidget .for2_b_tCon-offer.for2_active {
    color: var(--up-text-color, #7e7d82);
}

#for2_contactFormWidget .for2_b_tCon-offer.for2_error {
    color: #dc2626;
    animation: for2_shake 0.5s ease-in-out;
}

/* Чекбокс для согласия - компактный */
#for2_contactFormWidget .for2_b_tCon-offer::before {
    content: "☐";
    display: inline-block;
    width: 21px;
    height: 19px;
    margin-right: 5px;
    position: relative;
    top: 2px;
    cursor: pointer;
    font-size: 16px;
    color: #6a6a6a;
    transition: all 0.3s ease;
}

#for2_contactFormWidget .for2_b_tCon-offer.for2_active::before {
    content: "☑";
    color: var(--color-blue-1, #4CAF50);
}

/* Ссылки в тексте согласия - как в оригинале */
#for2_contactFormWidget .for2_b_tCon-offer a {
    color: #7e7d82 !important;
    text-decoration: underline !important;
    border: none !important;
}

#for2_contactFormWidget .for2_b_tCon-offer a:hover {
    text-decoration: none !important;
}

/* Сообщения формы */
#for2_contactFormWidget .for2_form-message {
    padding: 16px 20px;
    margin: 15px 0;
    border-radius: var(--up-border-radius-small, 8px);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    animation: for2_slideDown 0.3s ease-out;
}

#for2_contactFormWidget .for2_form-message.for2_success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 1px solid #10b981;
    color: #047857;
}

#for2_contactFormWidget .for2_form-message.for2_error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 1px solid #ef4444;
    color: #dc2626;
}

/* Сообщение об успешной отправке */
#for2_contactFormWidget .for2_success-message-wrapper {
    width: 100%;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 20px;
    margin: 0;
}

#for2_contactFormWidget .for2_success-message {
    text-align: center;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--up-text-wd-color, #1f2937);
    line-height: 1.5;
    background: var(--up-bg-wd, #ffffff);
    border-radius: var(--up-border-radius-medium, 12px);
    box-shadow: var(--up-box-shadow-large, 0 8px 40px rgba(0, 0, 0, 0.08));
    border: 1px solid var(--up-border-color, #e5e7eb);
}

#for2_contactFormWidget .for2_success-message .for2_main-text {
    font-size: 20px;
    color: #047857;
    margin-bottom: 15px;
}

#for2_contactFormWidget .for2_success-message .for2_sub-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--up-text-color, #6b7280);
}

/* Индикатор загрузки */
#for2_contactFormWidget .for2_loading {
    display: none;
    text-align: center;
    margin: 20px 0;
    padding: 20px;
}

#for2_contactFormWidget .for2_loading p {
    margin-top: 12px;
    font-size: 14px;
    color: var(--up-text-color, #6b7280);
    font-weight: 500;
}

#for2_contactFormWidget .for2_spinner {
    width: 36px;
    height: 36px;
    border: 3px solid #f3f4f6;
    border-top: 3px solid var(--color-blue-1, #0B80E0);
    border-radius: 50%;
    animation: for2_widgetSpin 1s linear infinite;
    margin: 0 auto;
}

/* Анимации */
@keyframes for2_widgetSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes for2_shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes for2_slideDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивные стили для больших экранов */
@media (min-width: 1200px) {
    #for2_contactFormWidget .for2_main-form-title {
        font-size: 24px;
    }
    
    #for2_contactFormWidget .for2_form-wrapper {
        padding: 25px;
    }
    
    #for2_contactFormWidget .for2_b_tConform {
        padding: 30px;
    }
}

/* Адаптивные стили для средних экранов */
@media (max-width: 1199px) and (min-width: 992px) {
    #for2_contactFormWidget .for2_main-form-title {
        font-size: 20px;
    }
    
    #for2_contactFormWidget .for2_form-wrapper {
        padding: 18px;
    }
    
    #for2_contactFormWidget .for2_b_tConform {
        padding: 20px;
    }
    
    #for2_contactFormWidget .for2_b_tConform-fields input,
    #for2_contactFormWidget .for2_b_tConform-fields .for2_button1 {
        height: 44px;
        font-size: 15px;
    }
}

/* Адаптивные стили для планшетов */
@media (max-width: 991px) and (min-width: 768px) {
    #for2_contactFormWidget {
        padding: 15px 0;
    }
    
    #for2_contactFormWidget .for2_main-form-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    #for2_contactFormWidget .for2_form-wrapper {
        padding: 15px;
    }
    
    #for2_contactFormWidget .for2_b_tConform {
        padding: 20px 15px;
    }
    
    #for2_contactFormWidget .for2_b_tConform-fields {
        gap: 12px;
    }
    
    #for2_contactFormWidget .for2_b_tConform-fields input,
    #for2_contactFormWidget .for2_b_tConform-fields .for2_button1 {
        height: 44px;
        font-size: 15px;
    }
    
    #for2_contactFormWidget .for2_b_tCon-offer {
        font-size: 11px;
    }
    
    #for2_contactFormWidget .for2_success-message .for2_main-text {
        font-size: 18px;
    }
    
    #for2_contactFormWidget .for2_success-message .for2_sub-text {
        font-size: 15px;
    }
}

/* Адаптивные стили для мобильных */
@media (max-width: 767px) {
    #for2_contactFormWidget {
        padding: 10px 0;
    }
    
    #for2_contactFormWidget .for2_main-form-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    #for2_contactFormWidget .for2_form-wrapper {
        padding: 12px;
    }
    
    #for2_contactFormWidget .for2_b_tConform {
        padding: 15px 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    #for2_contactFormWidget .for2_b_tConform-fields input,
    #for2_contactFormWidget .for2_b_tConform-fields .for2_button1 {
        height: 42px;
        font-size: 14px;
        padding: 0 12px;
    }
    
    #for2_contactFormWidget .for2_b_tCon-offer {
        font-size: 10px;
    }
    
    #for2_contactFormWidget .for2_form-message {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    #for2_contactFormWidget .for2_success-message {
        padding: 15px 10px;
    }
    
    #for2_contactFormWidget .for2_success-message .for2_main-text {
        font-size: 16px;
    }
    
    #for2_contactFormWidget .for2_success-message .for2_sub-text {
        font-size: 14px;
    }
}

/* Темная тема (опционально) */
@media (prefers-color-scheme: dark) {
    #for2_contactFormWidget .for2_b_tConform {
        background: #1f2937;
        border-color: #374151;
        color: #f9fafb;
    }
    
    #for2_contactFormWidget .for2_main-form-title {
        color: #f9fafb;
    }
    
    #for2_contactFormWidget .for2_b_tConform-fields input {
        border-color: #4b5563;
        color: #272727;
    }
    
    #for2_contactFormWidget .for2_b_tConform-fields input::-webkit-input-placeholder {
        color: #9ca3af;
    }
    
    #for2_contactFormWidget .for2_success-message {
        color: #f9fafb;
    }
    
    #for2_contactFormWidget .for2_success-message .for2_sub-text {
        color: #d1d5db;
    }
}


/*---------форма обратной связи----------*/
/* Основной контейнер формы */
#contactFormWidget {
    font-family: 'Roboto', Arial, sans-serif;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin: 30px 0;
}

/* Заголовок над формой */
#contactFormWidget .main-form-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--up-text-wd-color, #1f2937);
    margin: 0 0 20px 0;
    text-align: center;
    line-height: 1.3;
}

/* Wrapper вокруг всей формы */
#contactFormWidget .form-wrapper {
    width: 80%;
    max-width: 900px;
    min-width: 320px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 20px;
    margin: 20px 0;
}

/* Основной блок формы - стилизация как .product.tile */
#contactFormWidget .b_tConform {
    width: 100%;
    background: var(--up-bg-wd, #ffffff);
    border-radius: var(--up-border-radius-medium, 12px);
    padding: 30px;
    box-shadow: var(--up-box-shadow-large, 0 8px 40px rgba(0, 0, 0, 0.08));
    border: 1px solid var(--up-border-color, #e5e7eb);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    margin: 0;
}

/* Эффект hover как у .product.tile */
#contactFormWidget .b_tConform:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 60px rgba(0, 0, 0, 0.12);
}

/* Отключаем стили для .big версии */
#contactFormWidget .b_tConform.big {
    background: inherit;
    padding: inherit;
    margin: 0;
}

/* Заголовок формы - скрыт */
#contactFormWidget .b_tCon-header {
    display: none;
}

/* Заголовок формы - по центру */
#contactFormWidget .form-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--up-text-wd-color, #1f2937);
    margin: 0 0 25px 0;
    text-align: center;
    line-height: 1.3;
}

/* Горизонтальное расположение полей */
#contactFormWidget .b_tConform-fields {
    display: flex;
    align-items: stretch;
    gap: 15px;
    flex-wrap: wrap;
}

/* Стили полей ввода */
#contactFormWidget .b_tConform-fields input {
    flex: 1;
    min-width: 200px;
    height: 48px;
    padding: 0 16px;
    border: 2px solid var(--up-border-color, #e5e7eb);
    background: var(--up-bg-wd, #ffffff);
    border-radius: var(--up-border-radius-small, 8px);
    font: 16px 'Roboto', sans-serif;
    color: var(--up-text-wd-color, #1f2937);
    transition: all 0.3s ease;
    outline: none;
}

#contactFormWidget .b_tConform-fields input:focus {
    border-color: var(--color-blue-1, #0B80E0);
    box-shadow: 0 0 0 3px rgba(11, 128, 224, 0.1);
    transform: translateY(-1px);
}

#contactFormWidget .b_tConform-fields input::-webkit-input-placeholder {
    color: var(--up-text-light-color, #9ca3af);
    font-weight: 400;
}

#contactFormWidget .b_tConform-fields input::-moz-placeholder {
    color: var(--up-text-light-color, #9ca3af);
    font-weight: 400;
}

/* Состояния полей */
#contactFormWidget .b_tConform-fields input.error {
    border-color: #ef4444;
    background-color: #fef2f2;
    animation: shake 0.5s ease-in-out;
}

#contactFormWidget .b_tConform-fields input.error::-webkit-input-placeholder {
    color: #dc2626;
}

#contactFormWidget .b_tConform-fields input.success {
    border-color: #10b981;
    background-color: #fff;
}

/* Кнопка отправки - только --color-blue-2 */
#contactFormWidget .b_tConform-fields .button1 {
    flex: 0 0 auto;
    min-width: 180px;
    height: 48px;
    padding: 0 24px;
    background: var(--color-blue-2, #0969da);
    color: #ffffff;
    border: 2px solid var(--color-blue-2, #0969da);
    border-radius: var(--up-border-radius-small, 8px);
    font: 16px 'Roboto', sans-serif;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#contactFormWidget .b_tConform-fields .button1:hover:not(:disabled) {
    background: var(--color-blue-2, #0969da);
    border-color: var(--color-blue-2, #0969da);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(9, 105, 218, 0.3);
}

#contactFormWidget .b_tConform-fields .button1:disabled {
    background: var(--color-blue-2, #0969da);
    border-color: var(--color-blue-2, #0969da);
    color: #fff;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Блок согласия - компактный без фона */
#contactFormWidget .b_tCon-offer {
    font-size: 12px;
    color: var(--up-text-color, #7e7d82);
    line-height: 19px;
    cursor: pointer;
    user-select: none;
    text-align: center;
    margin-top: 5px;
    padding: 0;
    background: none;
    border: none;
    transition: color 0.3s ease;
}

#contactFormWidget .b_tCon-offer:hover {
    color: var(--color-blue-1, #0B80E0);
}

#contactFormWidget .b_tCon-offer.active {
    color: var(--up-text-color, #7e7d82);
}

#contactFormWidget .b_tCon-offer.error {
    color: #dc2626;
    animation: shake 0.5s ease-in-out;
}

/* Чекбокс для согласия - компактный */
#contactFormWidget .b_tCon-offer::before {
    content: "☐";
    display: inline-block;
    width: 21px;
    height: 19px;
    margin-right: 5px;
    position: relative;
    top: 2px;
    cursor: pointer;
    font-size: 16px;
    color: #6a6a6a;
    transition: all 0.3s ease;
}

#contactFormWidget .b_tCon-offer.active::before {
    content: "☑";
    color: var(--color-blue-1, #4CAF50);
}

/* Ссылки в тексте согласия - как в оригинале */
#contactFormWidget .b_tCon-offer a {
    color: #7e7d82 !important;
    text-decoration: underline !important;
    border: none !important;
}

#contactFormWidget .b_tCon-offer a:hover {
    text-decoration: none !important;
}

/* Сообщения формы */
#contactFormWidget .form-message {
    padding: 16px 20px;
    margin: 15px 0;
    border-radius: var(--up-border-radius-small, 8px);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.3s ease-out;
}

#contactFormWidget .form-message.success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 1px solid #10b981;
    color: #047857;
}

#contactFormWidget .form-message.error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 1px solid #ef4444;
    color: #dc2626;
}

/* Сообщение об успешной отправке */
#contactFormWidget .success-message-wrapper {
    width: 80%;
    max-width: 900px;
    min-width: 320px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 20px;
    margin: 20px 0;
}

#contactFormWidget .success-message {
    text-align: center;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--up-text-wd-color, #1f2937);
    line-height: 1.5;
    background: var(--up-bg-wd, #ffffff);
    border-radius: var(--up-border-radius-medium, 12px);
    box-shadow: var(--up-box-shadow-large, 0 8px 40px rgba(0, 0, 0, 0.08));
    border: 1px solid var(--up-border-color, #e5e7eb);
}

#contactFormWidget .success-message .main-text {
    font-size: 22px;
    color: #047857;
    margin-bottom: 15px;
}

#contactFormWidget .success-message .sub-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--up-text-color, #6b7280);
}

/* Индикатор загрузки */
#contactFormWidget .loading {
    display: none;
    text-align: center;
    margin: 20px 0;
    padding: 20px;
}

#contactFormWidget .loading p {
    margin-top: 12px;
    font-size: 14px;
    color: var(--up-text-color, #6b7280);
    font-weight: 500;
}

#contactFormWidget .spinner {
    width: 36px;
    height: 36px;
    border: 3px solid #f3f4f6;
    border-top: 3px solid var(--color-blue-1, #0B80E0);
    border-radius: 50%;
    animation: widgetSpin 1s linear infinite;
    margin: 0 auto;
}

/* Анимации */
@keyframes widgetSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивные стили */
@media (max-width: 1200px) {
    #contactFormWidget .form-wrapper,
    #contactFormWidget .success-message-wrapper {
        width: 85%;
    }
    
    #contactFormWidget .b_tConform {
        padding: 25px;
    }
    
    #contactFormWidget .b_tConform-fields input,
    #contactFormWidget .b_tConform-fields .button1 {
        height: 44px;
        font-size: 15px;
    }
    
    #contactFormWidget .main-form-title {
        font-size: 22px;
    }
}

@media (max-width: 900px) {
    #contactFormWidget .form-wrapper,
    #contactFormWidget .success-message-wrapper {
        width: 95%;
    }
    
    #contactFormWidget .b_tConform {
        padding: 20px;
    }
    
    #contactFormWidget .b_tConform-fields {
        gap: 12px;
    }
    
    #contactFormWidget .b_tConform-fields input {
        min-width: 180px;
    }
    
    #contactFormWidget .b_tConform-fields .button1 {
        min-width: 150px;
    }
    
    #contactFormWidget .main-form-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    #contactFormWidget {
        padding: 15px;
    }
    
    #contactFormWidget .form-wrapper,
    #contactFormWidget .success-message-wrapper {
        width: 100%;
        padding: 15px;
        margin: 15px 0;
    }
    
    #contactFormWidget .b_tConform {
        padding: 20px 15px;
    }
    
    #contactFormWidget .b_tConform-fields {
        flex-direction: column;
        gap: 15px;
    }
    
    #contactFormWidget .b_tConform-fields input,
    #contactFormWidget .b_tConform-fields .button1 {
        width: 100%;
        min-width: auto;
        height: 48px;
        font-size: 16px;
    }
    
    #contactFormWidget .b_tCon-offer {
        font-size: 11px;
    }
    
    #contactFormWidget .success-message {
        padding: 15px;
    }
    
    #contactFormWidget .success-message .main-text {
        font-size: 20px;
    }
    
    #contactFormWidget .success-message .sub-text {
        font-size: 15px;
    }
    
    #contactFormWidget .form-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    #contactFormWidget .main-form-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    #contactFormWidget {
        padding: 10px;
        margin: 20px 0;
    }
    
    #contactFormWidget .form-wrapper,
    #contactFormWidget .success-message-wrapper {
        padding: 12px;
        margin: 10px 0;
        border-radius: 15px;
    }
    
    #contactFormWidget .b_tConform {
        padding: 15px 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    #contactFormWidget .b_tConform-fields input,
    #contactFormWidget .b_tConform-fields .button1 {
        height: 44px;
        font-size: 15px;
        padding: 0 12px;
    }
    
    #contactFormWidget .b_tCon-offer {
        font-size: 11px;
    }
    
    #contactFormWidget .form-message {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    #contactFormWidget .success-message {
        padding: 15px 10px;
    }
    
    #contactFormWidget .success-message .main-text {
        font-size: 18px;
    }
    
    #contactFormWidget .success-message .sub-text {
        font-size: 14px;
    }
    
    #contactFormWidget .form-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    #contactFormWidget .main-form-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
}
}

/* Темная тема (опционально) */
@media (prefers-color-scheme: dark) {
    #contactFormWidget .b_tConform {
        background: #1f2937;
        border-color: #374151;
        color: #f9fafb;
    }
    
    #contactFormWidget .b_tCon-header {
        color: #f9fafb;
    }
    
    #contactFormWidget .b_tConform-fields input {
        border-color: #4b5563;
        color: #272727;
    }
    
    #contactFormWidget .b_tConform-fields input::-webkit-input-placeholder {
        color: #9ca3af;
    }
    
    #contactFormWidget .success-message {
        color: #f9fafb;
    }
    
    #contactFormWidget .success-message .sub-text {
        color: #d1d5db;
    }
}


    background: var(--up-bg-gray-hover);
    border-color: var(--color-blue-2);
    color: var(--color-blue-2);
}


/* === ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ ВИДЕО-ФУНКЦИОНАЛА === */

/* Основные контейнеры видео */
.fs-hero-video {
    border-radius: 20px;
    position: relative;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

.fs-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.fs-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #f0f0f0;
}

/* Затемняющий слой с кнопкой воспроизведения */
.fs-video-veil {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 20, 20, .4);
    z-index: 2;
}

/* Бейдж "Работаем с 2010 года" */
.fs-video-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, .96);
    padding: 7px 14px;
    border-radius: 22px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    backdrop-filter: blur(10px);
    z-index: 3;
}

.fs-video-badge b {
    color: #0B80E0;
}

/* Заголовок видео */
.fs-video-title {
    position: absolute;
    left: 14px;
    right: 70px;
    bottom: 14px;
    z-index: 3;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    padding: 12px 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(10, 127, 226, .92), rgba(62, 118, 226, .92));
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 18px rgba(10, 127, 226, .35);
    transition: transform .25s ease, box-shadow .25s ease;
}

/* Кнопки управления */
.fs-video-controls {
    position: absolute;
    bottom: 62px;
    right: 14px;
    z-index: 3;
    display: flex;
    gap: 8px;
}

.fs-control-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,.92);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .2s ease, background-color .2s ease;
    backdrop-filter: blur(10px);
}

.fs-control-btn:hover {
    transform: scale(1.08);
    background: #fff;
}

.fs-control-btn svg {
    width: 16px;
    height: 16px;
    fill: #303030;
}

.fs-sound-on,
.fs-sound-off {
    width: 16px;
    height: 16px;
    fill: #303030;
}

/* Упрощенные блоки вместо превью */
.fs-video-links {
    margin-top: 4px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Мобильная версия - горизонтальное расположение по центру */
@media (max-width: 991px) {
    .fs-video-links {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        overflow-x: auto;
        padding: 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin-top: 2px;
    }
    
    .fs-video-links::-webkit-scrollbar {
        display: none;
    }
    
    .fs-video-link {
        flex: 1;
        min-width: 0;
        margin: 0 3px;
    }
    
    .fs-video-link:first-child {
        margin-left: 0;
    }
    
    .fs-video-link:last-child {
        margin-right: 0;
    }
}

.fs-video-link {
    flex: 1;
    height: 36px;
    border-radius: 8px;
    border: none;
    background: rgba(11, 128, 224, 0.08);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    transition: all .2s ease;
    text-decoration: none;
    color: #0B80E0;
    padding: 6px 10px;
    box-sizing: border-box;
    gap: 6px;
}

.fs-video-link:hover {
    background: rgba(11, 128, 224, 0.12);
    text-decoration: none;
    color: #0B80E0;
}

.fs-video-link:hover .fs-video-link-text {
    color: #0B80E0;
}

.fs-video-link-icon {
    width: 16px;
    height: 16px;
    fill: #0B80E0;
    flex-shrink: 0;
}

.fs-video-link-text {
    font-size: 11px;
    font-weight: 600;
    text-align: left;
    line-height: 1.2;
    color: #0B80E0;
    transition: color .2s ease;
}

/* Адаптивные стили для видео */
@media (min-width: 992px) {
    .fs-hero-video {
        min-height: 400px;
    }
}

@media (min-width: 1200px) {
    .fs-hero-video {
        min-height: 420px;
    }
}

@media (max-width: 575px) {
    .fs-hero-video {
        min-height: 220px;
    }
}


/*------------месенджер------------*/
/* Основной контейнер */
.mes_buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
	gap: 10px;
}

/* Баннер с вопросом */
.mes_banner {
	display: flex;
	align-items: center;
	padding: 1px 25px;
	border-radius: 50px;
	background: linear-gradient(135deg, #0B80E0 0%, #00e676 100%);
	box-shadow: 0 4px 15px rgba(0, 184, 212, 0.3);
	/*max-width: 631px;*/
	gap: 15px;
	flex-shrink: 1;
}

/* Десктопный баннер */
.mes_banner-desktop {
	display: flex;
}

/* Мобильный баннер (скрыт по умолчанию) */
.mes_banner-mobile {
	display: none;
}

/* Иконка телефона в баннере */
.mes_phone-icon {
	width: 50px;
	height: 50px;
	min-width: 50px;
	background: linear-gradient(135deg, #ff1744 0%, #ff5252 100%);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	transform: rotate(-15deg);
	box-shadow: 0 4px 10px rgba(255, 23, 68, 0.4);
}

.mes_phone-icon svg {
	width: 28px;
	height: 28px;
	transform: rotate(15deg);
}

/* Текст баннера */
.mes_banner-text {
	color: white;
	text-align: left;
	flex: 1;
}

.mes_banner-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 3px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mes_banner-subtitle {
	font-size: 14px;
	font-weight: 400;
	opacity: 0.95;
}

/* Ссылки на мессенджеры */
.mes_link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 160px;
	padding: 6px 20px;
	border-radius: 50px;
	text-decoration: none;
	border: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	flex-shrink: 0;
}

.mes_link:hover {
	opacity: 0.85;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* WhatsApp стили */
.mes_link-whatsapp {
	background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
	color: white;
}

/* Telegram стили */
.mes_link-telegram {
	background: linear-gradient(135deg, #0088cc 0%, #229ED9 100%);
	color: white;
}

/* Иконки SVG */
.mes_icon {
	width: 100%;
	height: auto;
	max-width: 40px;
}

/* Адаптивная версия для планшетов */
@media all and (max-width: 900px) {
	.mes_banner {
		padding: 12px 20px;
	}
	
	.mes_phone-icon {
		width: 45px;
		height: 45px;
		min-width: 45px;
	}
	
	.mes_phone-icon svg {
		width: 24px;
		height: 24px;
	}
	
	.mes_banner-title {
		font-size: 16px;
	}
	
	.mes_banner-subtitle {
		font-size: 13px;
	}
	
	.mes_link {
		width: 130px;
		padding: 12px 16px;
	}
	
	.mes_icon {
		max-width: 35px;
	}
}

/* Адаптивная версия для мобильных */
@media all and (max-width: 700px) {
	.mes_buttons {
		display: block;
		text-align: center;
	}
	
	.mes_banner-desktop {
		display: none !important;
	}
	
	.mes_banner-mobile {
		display: flex !important;
		width: 100%;
		max-width: 100%;
		margin: 0 auto 20px auto;
		flex-direction: column;
		text-align: center;
		padding: 25px 20px;
		border-radius: 25px;
	}
	
	.mes_phone-icon {
		margin: 0 auto 15px auto;
		width: 60px;
		height: 60px;
		min-width: 60px;
	}
	
	.mes_phone-icon svg {
		width: 32px;
		height: 32px;
	}
	
	.mes_banner-text {
		text-align: center;
	}
	
	.mes_banner-title {
		font-size: 20px;
		margin-bottom: 8px;
	}
	
	.mes_banner-subtitle {
		font-size: 16px;
		line-height: 1.4;
	}
	
	.mes_link {
		width: 140px;
		display: inline-flex;
		margin: 0 5px;
		padding: 18px;
		border-radius: 50px;
	}
	
	.mes_icon {
		max-width: 45px;
	}
}

/* Дополнительная адаптивность для очень маленьких экранов */
@media all and (max-width: 400px) {
	.mes_banner-mobile {
		padding: 20px 15px;
	}
	
	.mes_phone-icon {
		width: 55px;
		height: 55px;
		min-width: 55px;
	}
	
	.mes_phone-icon svg {
		width: 28px;
		height: 28px;
	}
	
	.mes_banner-title {
		font-size: 18px;
	}
	
	.mes_banner-subtitle {
		font-size: 5px;
	}
	
	.mes_link {
		width: 120px;
		padding: 16px;
		margin: 0 4px;
	}
	
	.mes_icon {
		max-width: 42px;
	}
}

/*------- Карта глубин--------*/
.map-k_wells-wrapper {
    width: 100%;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 20px;
    margin: 20px 0;
}

.map-k_wells-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;
}

.map-k_sidebar {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.map-k_info {
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 8px 8px 48px 0 rgba(0, 0, 0, 0.04);
}

.map-k_title {
    margin-bottom: 15px;
    font-size: 16px;
    color: #000;
    font-weight: 600;
}

.map-k_info-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 12px;
}

.map-k_map-section {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 8px 8px 48px 0 rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
}

.map-k_map {
    width: 100%;
    height: 436px; /* Высота из скрипта карты */
}

/* Десктопная версия */
@media (min-width: 768px) {
    .map-k_wells-container {
        flex-direction: row-reverse;
        flex-wrap: nowrap;
        align-items: flex-start;
    }
    
    .map-k_sidebar {
        width: 320px;
        min-width: 320px;
    }
    
    .map-k_map-section {
        flex: 1;
        margin-bottom: 0;
        height: 436px; /* 436px карты + 40px padding (20px сверху и снизу) */
    }
    
    .map-k_map {
        height: 436px; /* Фиксированная высота как в скрипте */
    }
    
    .map-k_info {
        margin-bottom: 0;
    }
}


/* Каталог кессонов - картинка слева, текст справа */
.pk_catalog_wrapper {
    margin: 20px 0;
}

.pk_catalog_section {
    width: 100%;
}

.pk_catalog_title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.pk_catalog_grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.pk_catalog_cell {
    padding: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.pk_catalog_card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 20px;
    transition: all 0.2s ease;
    text-decoration: none;
    height: 100%;
    min-height: 80px;
    box-shadow: 0px 0px 0px 1px #e3e3e3;
}

.pk_catalog_card:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 4px 4px 24px 0 rgba(0, 0, 0, 0.04);
}

.pk_catalog_image_box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    min-width: 60px;
    margin-right: 15px;
    background: #ffffff;
    border-radius: 12px;
    padding: 8px;
    flex-shrink: 0;
}

.pk_catalog_image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.pk_catalog_label {
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    line-height: 1.4;
    flex: 1;
}

/* Темная тема */
.dark-theme .pk_catalog_title {
    color: #ffffff;
}

.dark-theme .pk_catalog_card {
    background: #0f0f0f;
    border: 1px solid #1d1d1d;
    box-shadow: none;
}

.dark-theme .pk_catalog_card:hover {
    background: #1d1d1d;
    border-color: #1d1d1d;
}

.dark-theme .pk_catalog_image_box {
    background: #0a0a0a;
}

.dark-theme .pk_catalog_label {
    color: #b1b1b1;
}

/* Адаптивность - 6 колонок на больших экранах */
@media (min-width: 1360px) {
    .pk_catalog_cell {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
}

/* Десктоп - 4 колонки */
@media (min-width: 992px) and (max-width: 1359px) {
    .pk_catalog_cell {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

/* Планшет - 3 колонки */
@media (min-width: 768px) and (max-width: 991px) {
    .pk_catalog_cell {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

/* Мобильные устройства - 2 колонки */
@media (min-width: 480px) and (max-width: 767px) {
    .pk_catalog_cell {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .pk_catalog_card {
        padding: 12px;
        min-height: 70px;
    }
    
    .pk_catalog_image_box {
        width: 50px;
        height: 50px;
        min-width: 50px;
        margin-right: 12px;
    }
    
    .pk_catalog_label {
        font-size: 12px;
    }
}

/* Очень маленькие экраны - 2 колонки */
@media (max-width: 479px) {
    .pk_catalog_cell {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .pk_catalog_card {
        padding: 10px;
        min-height: 65px;
    }
    
    .pk_catalog_image_box {
        width: 45px;
        height: 45px;
        min-width: 45px;
        margin-right: 10px;
    }
    
    .pk_catalog_label {
        font-size: 11px;
        line-height: 1.3;
    }
}

/* Очень узкие экраны - вертикальная компоновка */
@media (max-width: 360px) {
    .pk_catalog_card {
        flex-direction: column;
        text-align: center;
        padding: 12px 8px;
    }
    
    .pk_catalog_image_box {
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .pk_catalog_label {
        text-align: center;
    }
}

/* начало Баннер верх --------------------------------------------------------*/
.fs-drilling-block {
    margin-top: 40px;
    margin-bottom: 30px;
}

/* Заголовок страницы - компактный */
.fs-page-title {
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.fs-page-title .fs-accent-text {
    color: #0B80E0;
}

/* Героическое изображение - компактное */
.fs-hero-image {
    border-radius: 20px;
    background: url('/image/catalog/vdgstore_files/form-head/kes-b.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

.fs-hero-image img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    height: auto;
}

/* Бейдж на изображении - компактный */
.fs-image-badge {
    position: absolute;
    z-index: 10;
    bottom: 12px;
    left: 12px;
    border-radius: 12px;
    background: linear-gradient(141deg, rgba(255, 255, 255, 0.71) 0%, rgba(255, 255, 255, 0.30) 100%);
    backdrop-filter: blur(1.5px);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    width: 180px;
    padding: 8px 12px;
}

.fs-image-badge span {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.3;
    display: block;
}

/* Мобильная версия изображения */
.fs-mobile-view {
    display: block;
    margin-bottom: 20px;
    /*min-height: 250px;*/
}

.fs-desktop-only {
    display: none;
}

/* Список преимуществ - компактный */
.fs-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.fs-benefits-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.4;
}

.fs-benefits-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    background: #0B80E0;
    border-radius: 50%;
}

.fs-benefits-list li:after {
    content: "✓";
    position: absolute;
    left: 4px;
    top: 2px;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
}

/* Блоки цен - компактные */
.fs-price-column {
    margin-top: 8px;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
}

.fs-price-icon {
    padding-left: 0;
    padding-right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fs-price-icon img {
    width: auto;
    max-width: 100%;
    height: 36px;
}

.fs-price-content {
    padding-left: 10px;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fs-price-content b {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: #0B80E0;
}

/* Обертка кнопки - компактная */
.fs-button-wrapper {
    margin-bottom: 15px;
}

.fs-button-wrapper .chm-btn {
    width: 100%;
}

/* Промо текст - компактный */
.fs-promo-text {
    font-size: 11px;
    color: #666;
    line-height: 1.3;
    display: flex;
    align-items: center;
}

/* ===== АДАПТИВНОСТЬ ===== */

@media (min-width: 768px) {
    .container {
        width: calc(100% - 30px);
    }

    .fs-page-title {
        font-size: 32px;
        margin-bottom: 18px;
    }

    .fs-mobile-view {
        display: none;
    }

    .fs-button-wrapper .chm-btn {
        width: auto;
        min-width: 250px;
    }

    .fs-price-icon img {
        height: 40px;
    }

    .fs-benefits-list {
        margin-bottom: 25px;
    }

    .fs-benefits-list li {
        font-size: 15px;
        margin-bottom: 12px;
    }
}

@media (min-width: 992px) {
    .fs-desktop-only {
        display: block;
    }

    .fs-drilling-block {
        margin-top: 50px;
        margin-bottom: 40px;
    }

    .fs-page-title {
        font-size: 36px;
        line-height: 1.25;
        margin-bottom: 20px;
    }

    .fs-hero-image {
        min-height: 400px;
    }

    .fs-price-column {
        margin-bottom: 25px;
    }

    .fs-price-content b {
        font-size: 26px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }

    .fs-page-title {
        font-size: 38px;
    }

    .fs-hero-image {
        min-height: 420px;
    }

    .fs-benefits-list li {
        font-size: 16px;
    }

    .fs-price-content b {
        font-size: 28px;
    }
}

@media (min-width: 1500px) {
    .container {
        width: 1470px;
    }

    .fs-page-title {
        font-size: 40px;
        line-height: 1.25;
    }
}

/* Дополнительные адаптивные правила для мобильных */
@media (max-width: 575px) {
    .fs-drilling-block {
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .fs-page-title {
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .fs-price-content b {
        font-size: 20px;
    }

    .fs-benefits-list li {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .fs-hero-image {
        min-height: 220px;
    }

    .fs-mobile-view {
       /* min-height: 220px;*/
        margin-bottom: 15px;
    }
}
/* конец Баннер верх */


/*------------месенджер------------*/
/* Основной контейнер */
.mes_buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 40px;
	margin-top: 30px;
	gap: 10px;
}

/* Баннер с вопросом */
.mes_banner {
	display: flex;
	align-items: center;
	padding: 1px 25px;
	border-radius: 50px;
	background: linear-gradient(135deg, #0B80E0 0%, #00e676 100%);
	box-shadow: 0 4px 15px rgba(0, 184, 212, 0.3);
	/*max-width: 631px;*/
	gap: 15px;
	flex-shrink: 1;
}

/* Десктопный баннер */
.mes_banner-desktop {
	display: flex;
}

/* Мобильный баннер (скрыт по умолчанию) */
.mes_banner-mobile {
	display: none;
}

/* Иконка телефона в баннере */
.mes_phone-icon {
	width: 50px;
	height: 50px;
	min-width: 50px;
	background: linear-gradient(135deg, #ff1744 0%, #ff5252 100%);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	transform: rotate(-15deg);
	box-shadow: 0 4px 10px rgba(255, 23, 68, 0.4);
}

.mes_phone-icon svg {
	width: 28px;
	height: 28px;
	transform: rotate(15deg);
}

/* Текст баннера */
.mes_banner-text {
	color: white;
	text-align: left;
	flex: 1;
}

.mes_banner-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 3px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mes_banner-subtitle {
	font-size: 14px;
	font-weight: 400;
	opacity: 0.95;
}

/* Ссылки на мессенджеры */
.mes_link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 160px;
	padding: 6px 20px;
	border-radius: 50px;
	text-decoration: none;
	border: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	flex-shrink: 0;
}

.mes_link:hover {
	opacity: 0.85;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* WhatsApp стили */
.mes_link-whatsapp {
	background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
	color: white;
}

/* Telegram стили */
.mes_link-telegram {
	background: linear-gradient(135deg, #0088cc 0%, #229ED9 100%);
	color: white;
}

/* Иконки SVG */
.mes_icon {
	width: 100%;
	height: auto;
	max-width: 40px;
}

/* Адаптивная версия для планшетов */
@media all and (max-width: 900px) {
	.mes_banner {
		padding: 12px 20px;
	}
	
	.mes_phone-icon {
		width: 45px;
		height: 45px;
		min-width: 45px;
	}
	
	.mes_phone-icon svg {
		width: 24px;
		height: 24px;
	}
	
	.mes_banner-title {
		font-size: 16px;
	}
	
	.mes_banner-subtitle {
		font-size: 13px;
	}
	
	.mes_link {
		width: 130px;
		padding: 12px 16px;
	}
	
	.mes_icon {
		max-width: 35px;
	}
}

/* Адаптивная версия для мобильных */
@media all and (max-width: 700px) {
	.mes_buttons {
		display: block;
		text-align: center;
	}
	
	.mes_banner-desktop {
		display: none !important;
	}
	
	.mes_banner-mobile {
		display: flex !important;
		width: 100%;
		max-width: 100%;
		margin: 0 auto 20px auto;
		flex-direction: column;
		text-align: center;
		padding: 25px 20px;
		border-radius: 25px;
	}
	
	.mes_phone-icon {
		margin: 0 auto 15px auto;
		width: 60px;
		height: 60px;
		min-width: 60px;
	}
	
	.mes_phone-icon svg {
		width: 32px;
		height: 32px;
	}
	
	.mes_banner-text {
		text-align: center;
	}
	
	.mes_banner-title {
		font-size: 20px;
		margin-bottom: 8px;
	}
	
	.mes_banner-subtitle {
		font-size: 16px;
		line-height: 1.4;
	}
	
	.mes_link {
		width: 140px;
		display: inline-flex;
		margin: 0 5px;
		padding: 18px;
		border-radius: 50px;
	}
	
	.mes_icon {
		max-width: 45px;
	}
}

/* Дополнительная адаптивность для очень маленьких экранов */
@media all and (max-width: 400px) {
	.mes_banner-mobile {
		padding: 20px 15px;
	}
	
	.mes_phone-icon {
		width: 55px;
		height: 55px;
		min-width: 55px;
	}
	
	.mes_phone-icon svg {
		width: 28px;
		height: 28px;
	}
	
	.mes_banner-title {
		font-size: 18px;
	}
	
	.mes_banner-subtitle {
		font-size: 5px;
	}
	
	.mes_link {
		width: 120px;
		padding: 16px;
		margin: 0 4px;
	}
	
	.mes_icon {
		max-width: 42px;
	}
}

/*------- Новый css карты глубин--------*/
.map-k_wells-wrapper {
    width: 100%;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 20px;
    margin: 20px 0;
}

.map-k_wells-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;
}

.map-k_map-section {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 8px 8px 48px 0 rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.map-k_map {
    width: 100%;
    height: 600px;
    flex: 1;
}

.map-k_sidebar {
    width: 100%;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .map-k_wells-container {
        flex-direction: row-reverse;
        flex-wrap: nowrap;
    }
    
    .map-k_sidebar {
        width: 320px;
        min-width: 320px;
        max-height: none;
    }
    
    .map-k_map-section {
        flex: 1;
        margin-bottom: 0;
        min-height: 100%;
    }
    
    .map-k_map {
        height: 100%;
        min-height: 600px;
    }
}

.map-k_legend,
.map-k_info {
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 8px 8px 48px 0 rgba(0, 0, 0, 0.04);
}

.map-k_title {
    margin-bottom: 15px;
    font-size: 16px;
    color: #000;
    font-weight: 600;
}

.map-k_legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.map-k_legend-color {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 12px;
    border: 2px solid #F2F2F2;
}

.map-k_info-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 12px;
}

.map-k_info-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.map-k_info-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 13px;
    color: #666;
}

.map-k_info-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4A71B1;
    font-weight: bold;
}


/* Каталог кессонов - картинка слева, текст справа */
.pk_catalog_wrapper {
    margin: 20px 0;
}

.pk_catalog_section {
    width: 100%;
}

.pk_catalog_title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.pk_catalog_grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.pk_catalog_cell {
    padding: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.pk_catalog_card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 20px;
    transition: all 0.2s ease;
    text-decoration: none;
    height: 100%;
    min-height: 80px;
    box-shadow: 0px 0px 0px 1px #e3e3e3;
}

.pk_catalog_card:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 4px 4px 24px 0 rgba(0, 0, 0, 0.04);
}

.pk_catalog_image_box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    min-width: 60px;
    margin-right: 15px;
    background: #ffffff;
    border-radius: 12px;
    padding: 8px;
    flex-shrink: 0;
}

.pk_catalog_image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.pk_catalog_label {
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    line-height: 1.4;
    flex: 1;
}

/* Темная тема */
.dark-theme .pk_catalog_title {
    color: #ffffff;
}

.dark-theme .pk_catalog_card {
    background: #0f0f0f;
    border: 1px solid #1d1d1d;
    box-shadow: none;
}

.dark-theme .pk_catalog_card:hover {
    background: #1d1d1d;
    border-color: #1d1d1d;
}

.dark-theme .pk_catalog_image_box {
    background: #0a0a0a;
}

.dark-theme .pk_catalog_label {
    color: #b1b1b1;
}

/* Адаптивность - 6 колонок на больших экранах */
@media (min-width: 1360px) {
    .pk_catalog_cell {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
}

/* Десктоп - 4 колонки */
@media (min-width: 992px) and (max-width: 1359px) {
    .pk_catalog_cell {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

/* Планшет - 3 колонки */
@media (min-width: 768px) and (max-width: 991px) {
    .pk_catalog_cell {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

/* Мобильные устройства - 2 колонки */
@media (min-width: 480px) and (max-width: 767px) {
    .pk_catalog_cell {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .pk_catalog_card {
        padding: 12px;
        min-height: 70px;
    }
    
    .pk_catalog_image_box {
        width: 50px;
        height: 50px;
        min-width: 50px;
        margin-right: 12px;
    }
    
    .pk_catalog_label {
        font-size: 12px;
    }
}

/* Очень маленькие экраны - 2 колонки */
@media (max-width: 479px) {
    .pk_catalog_cell {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .pk_catalog_card {
        padding: 10px;
        min-height: 65px;
    }
    
    .pk_catalog_image_box {
        width: 45px;
        height: 45px;
        min-width: 45px;
        margin-right: 10px;
    }
    
    .pk_catalog_label {
        font-size: 11px;
        line-height: 1.3;
    }
}

/* Очень узкие экраны - вертикальная компоновка */
@media (max-width: 360px) {
    .pk_catalog_card {
        flex-direction: column;
        text-align: center;
        padding: 12px 8px;
    }
    
    .pk_catalog_image_box {
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .pk_catalog_label {
        text-align: center;
    }
}

/* ------------------------начало Баннер верх --------------------------------------------------------*/
.fs-drilling-block {
    margin-top: 40px;
    margin-bottom: 30px;
}

/* Заголовок страницы - компактный */
.fs-page-title {
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.fs-page-title .fs-accent-text {
    color: #0B80E0;
}

/* Героическое изображение - компактное */
.fs-hero-image {
    border-radius: 20px;
    background: url('/image/catalog/vdgstore_files/form-head/kes-b.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

.fs-hero-image img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    height: auto;
}

/* Бейдж на изображении - компактный */
.fs-image-badge {
    position: absolute;
    z-index: 10;
    bottom: 12px;
    left: 12px;
    border-radius: 12px;
    background: linear-gradient(141deg, rgba(255, 255, 255, 0.71) 0%, rgba(255, 255, 255, 0.30) 100%);
    backdrop-filter: blur(1.5px);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    width: 180px;
    padding: 8px 12px;
}

.fs-image-badge span {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.3;
    display: block;
}

/* Мобильная версия изображения */
.fs-mobile-view {
    display: block;
    margin-bottom: 20px;
    /*min-height: 250px;*/
}

.fs-desktop-only {
    display: none;
}

/* Список преимуществ - компактный */
.fs-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.fs-benefits-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.4;
}

.fs-benefits-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    background: #0B80E0;
    border-radius: 50%;
}

.fs-benefits-list li:after {
    content: "✓";
    position: absolute;
    left: 4px;
    top: 2px;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
}

/* Блоки цен - компактные */
.fs-price-column {
    margin-top: 8px;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
}

.fs-price-icon {
    padding-left: 0;
    padding-right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #0B80E0;
}

.fs-price-icon img {
    width: auto;
    max-width: 100%;
    height: 36px;
}

.fs-price-content {
    padding-left: 10px;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: bold;
}

.fs-price-content b {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: #0B80E0;
}

/* Обертка кнопки - компактная */
.fs-button-wrapper {
    margin-bottom: 15px;
}

.fs-button-wrapper .chm-btn {
    width: 100%;
}

/* Промо текст - компактный */
.fs-promo-text {
    font-size: 11px;
    color: #666;
    line-height: 1.3;
    display: flex;
    align-items: center;
}

/* ===== АДАПТИВНОСТЬ ===== */

@media (min-width: 768px) {
    .container {
        width: calc(100% - 30px);
    }

    .fs-page-title {
        font-size: 32px;
        margin-bottom: 18px;
    }

    .fs-mobile-view {
        display: none;
    }

    .fs-button-wrapper .chm-btn {
        width: auto;
        min-width: 250px;
    }

    .fs-price-icon img {
        height: 40px;
    }

    .fs-benefits-list {
        margin-bottom: 25px;
    }

    .fs-benefits-list li {
        font-size: 15px;
        margin-bottom: 12px;
    }
}

@media (min-width: 992px) {
    .fs-desktop-only {
        display: block;
    }

    .fs-drilling-block {
        margin-top: 50px;
        margin-bottom: 40px;
    }

    .fs-page-title {
        font-size: 36px;
        line-height: 1.25;
        margin-bottom: 20px;
    }

    .fs-hero-image {
        min-height: 400px;
    }

    .fs-price-column {
        margin-bottom: 25px;
    }

    .fs-price-content b {
        font-size: 26px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }

    .fs-page-title {
        font-size: 38px;
    }

    .fs-hero-image {
        min-height: 420px;
    }

    .fs-benefits-list li {
        font-size: 16px;
    }

    .fs-price-content b {
        font-size: 28px;
    }
}

@media (min-width: 1500px) {
    .container {
        width: 1470px;
    }

    .fs-page-title {
        font-size: 40px;
        line-height: 1.25;
    }
}

/* Дополнительные адаптивные правила для мобильных */
@media (max-width: 575px) {
    .fs-drilling-block {
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .fs-page-title {
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .fs-price-content b {
        font-size: 20px;
    }

    .fs-benefits-list li {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .fs-hero-image {
        min-height: 220px;
    }

    .fs-mobile-view {
        /*min-height: 220px;*/
        margin-bottom: 15px;
    }
}
/* конец Баннер верх */

/*----------------FAQ------------------------*/
.faq-section {
    background-color: var(--up-bg-wd);
    border-radius: var(--up-border-radius-large);
    padding: 40px;
    box-shadow: var(--up-box-shadow-large);
}

/* ===================================
   FAQ List
   =================================== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ===================================
   FAQ Item с вложенными стилями
   =================================== */
.faq-item {
    background-color: var(--up-bg-wd);
    border: 1px solid var(--up-border-color);
    border-radius: var(--up-border-radius-medium);
    transition: all 0.3s ease;
    overflow: hidden;

    &:hover {
        border-color: var(--color-blue-2);
        box-shadow: 0 4px 6px -1px rgba(69, 125, 227, 0.1), 0 2px 4px -1px rgba(69, 125, 227, 0.06);
    }

    &[open] {
        background-color: var(--up-bg-main);
        border-color: var(--color-blue-2);
        box-shadow: 0 10px 15px -3px rgba(69, 125, 227, 0.1), 0 4px 6px -2px rgba(69, 125, 227, 0.05);

        .faq-question {
            background-color: var(--up-bg-gray);
            padding-bottom: 16px;
        }

        .faq-icon {
            transform: rotate(180deg);
        }
    }
}

/* ===================================
   FAQ Question (Summary) с вложенными стилями
   =================================== */
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: all 0.3s ease;

    /* Убираем стандартный маркер */
    &::-webkit-details-marker {
        display: none;
    }

    &::marker {
        display: none;
    }

    .faq-item:hover & {
        background-color: var(--up-bg-gray);
    }

    &:focus {
        outline: 2px solid var(--color-blue-2);
        outline-offset: 2px;
    }

    &:focus:not(:focus-visible) {
        outline: none;
    }

    &:focus-visible {
        outline: 2px solid var(--color-blue-2);
        outline-offset: 2px;
    }
}

.question-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--up-text-wd-color);
    flex: 1;
}

/* ===================================
   FAQ Icon
   =================================== */
.faq-icon {
    flex-shrink: 0;
    color: var(--color-blue-2);
    transition: transform 0.3s ease;
}

/* ===================================
   FAQ Answer
   =================================== */
.faq-answer {
    padding: 0 20px 20px;
    color: var(--up-text-color);
    animation: slideDown 0.3s ease-out;

    p {
        margin-bottom: 16px;
        line-height: 1.7;

        &:last-child {
            margin-bottom: 0;
        }
    }
}

/* Animation для раскрытия ответа */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Footer & Source
   =================================== */
.faq-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--up-border-color);
}

.source-text {
    font-size: 0.875rem;
    color: var(--up-text-light-color);
    text-align: center;
}

.source-link {
    color: var(--color-blue-2);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;

    &:hover {
        color: var(--color-blue-1);
        text-decoration: underline;
    }

    &:focus {
        outline: 2px solid var(--color-blue-2);
        outline-offset: 2px;
        border-radius: 4px;
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    .faq-section {
        padding: 24px 20px;
    }

    .faq-question {
        padding: 16px;
    }

    .question-text {
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 16px 16px;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 20px;
    }

    .question-text {
        font-size: 0.9375rem;
    }

    .faq-list {
        gap: 12px;
    }
}

/* ===================================
   Accessibility - Reduced Motion
   =================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===================================
   Dark Theme Support
   =================================== */
.dark-theme {
    .faq-item {
        &:hover {
            border-color: var(--color-blue-2);
        }

        &[open] {
            background-color: var(--up-bg-main);
        }
    }

    .question-text {
        color: var(--up-text-wd-color);
    }

    .faq-answer {
        color: var(--up-text-light-color);
    }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .faq-item {
        page-break-inside: avoid;

        &[open] .faq-answer {
            display: block !important;
        }
    }

    .faq-icon {
        display: none;
    }
}
/*----------------FAQ-конец------------------*/
/*---------------- Наши работы ---------------------------*/
.work-portfolio-grid {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            justify-content: flex-start;
            padding: 0;
            margin: 0;
            width: 100%;
        }

        /* Основная карточка */
        .work-portfolio-item {
            flex: 1 1 calc(25% - 18px); /* 4 карточки в ряд с учетом gap */
            min-width: 280px;
            max-width: 100%;
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        .work-portfolio-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
        }

        .work-preview-wrapper {
            position: relative;
            width: 100%;
            height: 240px;
            overflow: hidden;
            background: #e5e7eb;
            margin: 0;
            padding: 0;
        }

        .work-preview-photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease-out;
            display: block;
            margin: 0;
            padding: 0;
        }

        .work-portfolio-item:hover .work-preview-photo {
            transform: scale(1.08);
        }

        .work-category-label {
            position: absolute;
            top: 16px;
            left: 16px;
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
            color: #ffffff;
            padding: 7px 16px;
            border-radius: 24px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
            z-index: 10;
            margin: 0;
            border: none;
        }

        .work-category-label.work-type-drilling { 
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
        }
        
        .work-category-label.work-type-treatment { 
            background: linear-gradient(135deg, #059669 0%, #047857 100%);
        }
        
        .work-category-label.work-type-repair { 
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
        }
        
        .work-category-label.work-type-equipment { 
            background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
        }

        .work-details-container {
            padding: 22px;
            box-sizing: border-box;
        }

        .work-primary-description {
            font-size: 18px;
            font-weight: 700;
            color: #111827;
            margin: 0 0 18px 0;
            padding: 0;
            line-height: 1.45;
            min-height: 52px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .work-location-block {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 0;
            margin: 0;
            border-bottom: 1px solid #e5e7eb;
            font-size: 14px;
            color: #374151;
            font-weight: 500;
        }

        .work-icon-location {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            color: #6b7280;
        }

        .work-meta-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            margin: 0;
            border-bottom: 1px solid #e5e7eb;
        }

        .work-duration-info {
            display: flex;
            align-items: center;
            gap: 7px;
            font-size: 14px;
            color: #6b7280;
            margin: 0;
            padding: 0;
        }

        .work-icon-clock {
            width: 17px;
            height: 17px;
            flex-shrink: 0;
        }

        .work-duration-value {
            color: #111827;
            font-weight: 600;
            margin: 0;
            padding: 0;
        }

        .work-pricing-block {
            padding: 14px 0 0 0;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .work-price-label-text {
            font-size: 14px;
            color: #6b7280;
            font-weight: 500;
        }

        .work-price-container {
            display: flex;
            flex-direction: column;
            margin: 0;
            padding: 0;
        }

        .work-price-amount {
            font-size: 20px;
            font-weight: 700;
            color: #059669;
            line-height: 1.2;
            margin: 0;
            padding: 0;
        }

        .work-price-note {
            font-size: 12px;
            color: #9ca3af;
            margin: 2px 0 0 0;
            padding: 0;
        }

        /* Анимация для badge при hover */
        @keyframes work-badge-pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        .work-portfolio-item:hover .work-category-label {
            animation: work-badge-pulse 0.6s ease-in-out;
        }

        /* === НОВЫЕ СТИЛИ ДЛЯ СЕКЦИИ === */
        
        .work-portfolio-section {
            width: 100%;
            margin: 30px;
            padding: 0;
        }

        .work-section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 0 0 40px 0;
            padding: 0;
            flex-wrap: wrap;
            gap: 24px;
        }

        .work-section-title-wrapper {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
        }

        .work-section-stats {
            display: flex;
            align-items: baseline;
            gap: 12px;
            margin: 0;
            padding: 0;
            line-height: 1;
        }

        .work-stats-number {
            font-size: 64px;
            font-weight: 700;
            color: #0EA5E9;
            margin: 0;
            padding: 0;
            letter-spacing: -1px;
        }

        .work-stats-separator {
            font-size: 48px;
            font-weight: 300;
            color: #0EA5E9;
            margin: 0 -4px;
            padding: 0;
        }

        .work-section-subtitle {
            font-size: 16px;
            color: #374151;
            margin: 0;
            padding: 0;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .work-view-all-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
            color: #ffffff;
            font-size: 15px;
            font-weight: 600;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
            text-decoration: none;
            white-space: nowrap;
        }

        .work-view-all-btn:hover {
            background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
            transform: translateY(-2px);
        }

        .work-view-all-btn:active {
            transform: translateY(0);
        }

        .work-btn-icon {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }

        .work-view-all-btn:hover .work-btn-icon {
            transform: translateX(4px);
        }

        /* Контейнер для кнопки внизу (только на мобильных) */
        .work-button-bottom {
            display: none;
            width: 100%;
            margin: 32px 0 0 0;
            padding: 0;
        }

        /* Адаптив для больших экранов (3 карточки) */
        @media (max-width: 1400px) {
            .work-portfolio-item {
                flex: 1 1 calc(33.333% - 16px); /* 3 карточки в ряд */
            }
        }

        /* Адаптив для планшетов (2 карточки) */
        @media (max-width: 1024px) {
            .work-portfolio-item {
                flex: 1 1 calc(50% - 12px); /* 2 карточки в ряд */
            }

            .work-stats-number {
                font-size: 52px;
            }

            .work-stats-separator {
                font-size: 40px;
            }
        }

        /* Адаптив для мобильных (1 карточка) */
        @media (max-width: 768px) {
            .work-portfolio-grid {
                gap: 16px;
            }
            
            .work-portfolio-item {
                flex: 1 1 100%; /* 1 карточка на всю ширину */
                min-width: 100%;
            }

            .work-section-header {
                margin-bottom: 32px;
            }

            /* Прячем кнопку в хедере на мобильных */
            .work-section-header .work-view-all-btn {
                display: none;
            }

            /* Показываем кнопку внизу на мобильных */
            .work-button-bottom {
                display: block;
            }

            .work-button-bottom .work-view-all-btn {
                display: flex;
                width: 100%;
                justify-content: center;
            }

            .work-stats-number {
                font-size: 48px;
            }

            .work-stats-separator {
                font-size: 36px;
            }

            .work-section-subtitle {
                font-size: 14px;
            }
        }
        
/*--------------------------------------- РАЙОНЫ БУРЕНИЯ -------------------------------------*/
:root {
    --well-primary: #0B80E0;
    --well-primary-dark: #0960b0;
    --well-text-dark: #1F2937;
    --well-text-medium: #4B5563;
    --well-text-light: #6B7280;
    --well-bg-white: #FFFFFF;
    --well-bg-gray: #F9FAFB;
    --well-bg-light: #F3F4F6;
    --well-border: #E5E7EB;
    --well-shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --well-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --well-radius: 12px;
    --well-radius-xl: 20px;
}

.well-section {
    margin: 60px 0;
}

/* === ДВУХКОЛОНОЧНЫЙ БЛОК === */
.well-text-section {
    margin-top: 50px;
}

.well-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.well-column {
    background: transparent;
}

/* === ЛЕВАЯ КОЛОНКА (ИНФОРМАЦИЯ) === */
.well-info-column {
    padding: 25px 25px 25px 0;
}

.well-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: var(--well-text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.well-text-content {
    margin-bottom: 15px;
    line-height: 24px;
    font-size: 14px;
    color: var(--well-text-medium);
}

/* === ПРАВАЯ КОЛОНКА (РАЙОНЫ) === */
.well-districts-column {
    padding: 0;
}

.well-districts-box {
    background: var(--well-bg-white);
    border: 1px solid var(--well-border);
    border-radius: var(--well-radius-xl);
    padding: 25px;
    height: 100%;
    box-shadow: var(--well-shadow-sm);
    transition: all 0.3s ease;
}

.well-districts-box:hover {
    box-shadow: var(--well-shadow);
}

/* === СЕТКА СПИСКОВ === */
.well-districts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.well-districts-list {
    padding-right: 20px;
}

.well-districts-list:first-child {
    border-right: 1px dashed var(--well-border);
}

/* === СПИСОК === */
.well-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.well-ul li {
    margin-bottom: 10px;
}

.well-ul li:last-child {
    margin-bottom: 0;
}

/* === ССЫЛКИ НА РАЙОНЫ === */
.well-district-link {
    color: var(--well-primary);
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease;
    padding: 5px 0;
}

.well-district-link:hover {
    color: var(--well-primary-dark);
    text-decoration: none;
    transform: translateX(3px);
}

.well-district-link:active {
    transform: translateX(5px);
}

/* === ТОЧКИ-РАЗДЕЛИТЕЛИ === */
.well-dots {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--well-border) 50%, transparent);
    min-width: 20px;
}

/* === ЦЕНЫ === */
.well-link-price {
    font-weight: 600;
    white-space: nowrap;
    color: var(--well-text-dark);
}

/* ============================================= */
/* АДАПТИВНОСТЬ                                 */
/* ============================================= */

/* Планшеты */
@media (max-width: 1024px) {
    .well-two-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .well-info-column {
        padding: 0;
    }
}

/* Мобильные */
@media (max-width: 768px) {
    .well-section {
        margin: 40px 0;
    }
    
    .well-subtitle {
        font-size: 20px;
    }
    
    .well-text-content {
        font-size: 15px;
    }
    
    .well-districts-grid {
        grid-template-columns: 1fr;
    }
    
    .well-districts-list:first-child {
        border-right: none;
        border-bottom: 1px dashed var(--well-border);
        padding-bottom: 20px;
        margin-bottom: 20px;
        padding-right: 0;
    }
    
    .well-districts-box {
        padding: 20px;
    }
}

/* Малые мобильные */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .well-subtitle {
        font-size: 18px;
    }
    
    .well-text-content {
        font-size: 14px;
    }
    
    .well-district-link {
        font-size: 13px;
    }
    
    .well-districts-box {
        padding: 15px;
    }
}

/* Подсветка при клике */
.well-district-link:focus {
    outline: 2px solid var(--well-primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Анимация появления */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.well-section {
    animation: fadeInUp 0.6s ease;
}

/* Плавная прокрутка */
html {
    scroll-behavior: smooth;
}

/* ============================================= */
/* СОВМЕСТИМОСТЬ С ОРИГИНАЛЬНЫМИ ПЕРЕМЕННЫМИ   */
/* ============================================= */

/* Если на сайте используются оригинальные CSS-переменные */
.well-districts-box {
    background: var(--up-bg-wd, var(--well-bg-white));
    border-color: var(--up-border-color, var(--well-border));
}

.well-subtitle {
    color: var(--up-text-wd-color, var(--well-text-dark));
}

.well-text-content {
    color: var(--up-text-color, var(--well-text-medium));
}

.well-district-link {
    color: var(--up-text-link, var(--well-primary));
}

.well-dots {
    background: linear-gradient(to right, transparent, var(--up-border-color, var(--well-border)) 50%, transparent);
}


/* ----------------------------------CSS ДЛЯ БЛОКА "ВЫБЕРИТЕ ТИП ОБСАДНОЙ ТРУБЫ"   ------------------------  */
/* === ЗАГОЛОВОК СЕКЦИИ === */
.well-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.well-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 12px;
    line-height: 1.2;
}

.well-section-subtitle {
    font-size: 18px;
    color: #6B7280;
    margin: 0;
}

/* === СЕТКА КАРТОЧЕК === */
.well-pipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 0;
}

/* === КАРТОЧКА ТРУБЫ === */
.well-pipe-card {
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.well-pipe-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    border-color: #0B80E0;
}

/* === РЕКОМЕНДОВАННАЯ КАРТОЧКА === */
.well-recommended {
    border-color: #10B981;
    border-width: 3px;
}

.well-recommended:hover {
    border-color: #10B981;
    box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.2);
}

/* === ПРЕМИУМ КАРТОЧКА === */
.well-premium {
    border-color: #0B80E0;
    border-width: 3px;
}

.well-premium:hover {
    border-color: #0B80E0;
    box-shadow: 0 20px 25px -5px rgba(11, 128, 224, 0.2);
}

/* === БЕЙДЖИ === */
.well-recommend-badge,
.well-premium-badge {
    position: absolute;
    top: -14px;
    left: calc(50% - 75px);
    width: 150px;
    text-align: center;
    background: #10B981;
    color: #FFFFFF;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
    white-space: nowrap;
    z-index: 10;
}

.well-premium-badge {
    background: #0B80E0;
    box-shadow: 0 4px 8px rgba(11, 128, 224, 0.3);
}
    

/* === ИЗОБРАЖЕНИЕ ТРУБЫ === */
.well-pipe-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F9FAFB;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
}

.well-pipe-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.well-pipe-card:hover .well-pipe-image img {
    transform: scale(1.05);
}

/* === ЗАГОЛОВОК КАРТОЧКИ === */
.well-pipe-title {
    font-size: 22px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 15px;
    text-align: center;
}

/* === БЛОК ЦЕНЫ === */
.well-pipe-price {
    text-align: center;
    margin-bottom: 25px;
    padding: 15px;
    background: #F3F4F6;
    border-radius: 12px;
}

.well-price-from {
    font-size: 14px;
    color: #6B7280;
    margin-right: 5px;
}

.well-price-value {
    font-size: 36px;
    font-weight: 700;
    color: #0B80E0;
    line-height: 1;
}

.well-price-currency {
    font-size: 16px;
    color: #4B5563;
    margin-left: 5px;
}

/* === СПИСОК ОСОБЕННОСТЕЙ === */
.well-pipe-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.well-pipe-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #4B5563;
    line-height: 1.5;
}

.well-pipe-features li:last-child {
    margin-bottom: 0;
}

/* === ИКОНКИ === */
.well-feature-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.well-icon-check {
    color: #10B981;
}

.well-icon-warning {
    color: #F59E0B;
}

/* === АДАПТИВНОСТЬ === */

/* Планшеты */
@media (max-width: 1024px) {
    .container {
        padding: 50px 20px;
    }
    
    .well-section-title {
        font-size: 32px;
    }
    
    .well-section-subtitle {
        font-size: 16px;
    }
}

/* Мобильные устройства */
@media (max-width: 768px) {
    .container {
        padding: 40px 15px;
    }
    
    .well-section-title {
        font-size: 28px;
    }
    
    .well-section-subtitle {
        font-size: 15px;
    }
    
    .well-pipes-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .well-pipe-card {
        padding: 25px;
    }
    
    .well-pipe-title {
        font-size: 20px;
    }
    
    .well-price-value {
        font-size: 32px;
    }
    
    .well-pipe-features li {
        font-size: 14px;
    }
}

/* Малые мобильные */
@media (max-width: 480px) {
    .container {
        padding: 30px 15px;
    }
    
    .well-section-title {
        font-size: 24px;
    }
    
    .well-section-subtitle {
        font-size: 14px;
    }
    
    .well-pipe-card {
        padding: 20px;
    }
    
    .well-pipe-image {
        height: 180px;
    }
    
    .well-pipe-title {
        font-size: 18px;
    }
    
    .well-price-value {
        font-size: 28px;
    }
    
    .well-recommend-badge,
    .well-premium-badge {
        font-size: 11px;
        padding: 5px 16px;
    }
}

/* ---------------------------КАРТА ГЛУБИН СКВАЖИН----------------------------------------------*/
:root {
    --depths-primary: #0B80E0;
    --depths-primary-dark: #0960b0;
    --depths-warning: #F59E0B;
    --depths-text-dark: #1F2937;
    --depths-text-medium: #4B5563;
    --depths-text-light: #6B7280;
    --depths-bg-white: #FFFFFF;
    --depths-bg-gray: #F9FAFB;
    --depths-bg-light: #F3F4F6;
    --depths-border: #E5E7EB;
    --depths-shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --depths-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --depths-radius: 12px;
    --depths-radius-lg: 16px;
}

/* === СЕКЦИЯ ГЛУБИН === */
.depths-section {
    margin: 60px 0;
}

/* === ЗАГОЛОВОК === */
.depths-main-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--depths-text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

/* === ВСТУПИТЕЛЬНЫЙ ТЕКСТ === */
.depths-intro-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--depths-text-medium);
    margin-bottom: 30px;
}

/* ============================================= */
/* ТАБЛИЦА ГЛУБИН                               */
/* ============================================= */

.depths-table-wrapper {
    margin-top: 30px;
}

.depths-table-container {
    overflow-x: auto;
    border-radius: var(--depths-radius);
    box-shadow: var(--depths-shadow);
    margin-bottom: 20px;
}

.depths-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--depths-bg-white);
}

.depths-table thead {
    background: var(--depths-primary);
    color: white;
}

.depths-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.depths-table td {
    padding: 14px 15px;
    border-bottom: 1px solid var(--depths-bg-light);
    font-size: 14px;
}

.depths-table tbody tr {
    transition: background 0.2s ease;
}

.depths-table tbody tr:hover {
    background: var(--depths-bg-gray);
}

.depths-district-name {
    font-weight: 600;
    color: var(--depths-text-dark);
}

.depths-value {
    font-weight: 600;
    color: var(--depths-primary);
}

.depths-range,
.depths-horizon,
.depths-geology {
    color: var(--depths-text-medium);
}

/* === СКРЫТЫЕ СТРОКИ === */
.depths-hidden-row {
    display: none;
}

.depths-hidden-row.depths-show {
    display: table-row;
}

/* === КНОПКА РАСКРЫТИЯ === */
.depths-table-toggle {
    text-align: center;
    margin-top: 20px;
}

.depths-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--depths-primary);
    color: var(--depths-primary);
    border-radius: var(--depths-radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.depths-toggle-btn:hover {
    background: var(--depths-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--depths-shadow);
}

.depths-toggle-icon {
    transition: transform 0.3s ease;
}

.depths-toggle-btn.depths-expanded .depths-toggle-icon {
    transform: rotate(180deg);
}

/* ============================================= */
/* ИНФОРМАЦИОННЫЕ БЛОКИ                         */
/* ============================================= */

.depths-info-section {
    }

.depths-info-block {
    margin-bottom: 30px;
    padding: 25px;
    background: var(--depths-bg-white);
    border-left: 4px solid var(--depths-primary);
    border-radius: var(--depths-radius);
    box-shadow: var(--depths-shadow-sm);
}

.depths-info-block.depths-important-note {
    background: #FFF9E6;
    border-left-color: var(--depths-warning);
}

.depths-info-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--depths-text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.depths-info-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--depths-text-medium);
    margin: 0;
}

/* ============================================= */
/* АДАПТИВНОСТЬ                                 */
/* ============================================= */

/* Планшеты */
@media (max-width: 1024px) {
    .depths-section,
    .depths-info-section {
        margin: 50px 0;
    }
    
    .depths-main-title {
        font-size: 28px;
    }
}

/* Мобильные */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .depths-section,
    .depths-info-section {
        margin: 40px 0;
    }
    
    .depths-main-title {
        font-size: 24px;
    }
    
    .depths-intro-text {
        font-size: 14px;
    }
    
    /* Упрощение таблицы на мобильных */
    .depths-table {
        font-size: 12px;
    }
    
    .depths-table th,
    .depths-table td {
        padding: 10px 8px;
    }
    
    /* Скрываем некоторые колонки на мобильных */
    .depths-table thead th:nth-child(3),
    .depths-table tbody td:nth-child(3),
    .depths-table thead th:nth-child(5),
    .depths-table tbody td:nth-child(5) {
        display: none;
    }
    
    .depths-info-block {
        padding: 20px;
    }
    
    .depths-info-title {
        font-size: 18px;
    }
    
    .depths-info-text {
        font-size: 14px;
    }
    
    .depths-toggle-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Малые мобильные */
@media (max-width: 480px) {
    .depths-main-title {
        font-size: 20px;
    }
    
    .depths-info-title {
        font-size: 16px;
    }
    
    .depths-info-block {
        padding: 15px;
    }
}

/* ============================================= */
/* ДОПОЛНИТЕЛЬНЫЕ ЭФФЕКТЫ                       */
/* ============================================= */

/* Плавная прокрутка */
html {
    scroll-behavior: smooth;
}

/* Анимация появления */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.depths-section,
.depths-info-section {
    animation: fadeInUp 0.6s ease;
}

/* Подсветка выбранной строки */
.depths-table tbody tr.depths-selected {
    background-color: #E3F2FD !important;
    border-left: 3px solid var(--depths-primary);
}

.depths-table tbody tr.depths-selected:hover {
    background-color: #E3F2FD !important;
}

/*-------------------------------------Сравнение типов скважин-песок-------------------------------------------------*/
.region-card {
  background: var(--up-bg-wd);
  border: 1px solid var(--up-border-color);
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 20px;
}

.region-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--up-text-wd-color);
}

.other-regions-table {
  overflow-x: auto;
}

.other-regions-table table {
  width: 100%;
  border-collapse: collapse;
}

.other-regions-table th {
  background: rgba(11, 128, 224, 0.1);
  padding: 12px 15px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  color: var(--up-text-wd-color);
  border-bottom: 2px solid var(--up-border-color);
}

.other-regions-table td {
  padding: 12px 15px;
  font-size: 14px;
  color: var(--up-text-color);
  border-bottom: 1px solid var(--up-border-color);
}

.other-regions-table tr:last-child td {
  border-bottom: none;
}

.other-regions-table tr:hover {
  background: rgba(11, 128, 224, 0.05);
}

/*-----------------------------------------------------------------------------------------*/
/* Стили для таблицы сравнения */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: var(--up-bg-wd);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.comparison-table thead {
  background: linear-gradient(135deg, #0B80E0 0%, #0a5fb8 100%);
}

.comparison-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th:last-child {
  border-right: none;
}

.comparison-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--up-text-color);
  border-bottom: 1px solid var(--up-border-color);
  border-right: 1px solid var(--up-border-color);
}

.comparison-table td:last-child {
  border-right: none;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: rgba(11, 128, 224, 0.03);
}

/* Первая колонка (параметры) - жирнее */
.comparison-table td:first-child {
  font-weight: 600;
  color: var(--up-text-wd-color);
  background: rgba(11, 128, 224, 0.02);
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
  .comparison-table {
    font-size: 12px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 10px 12px;
  }
}

/* Контейнер с прокруткой для мобильных */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
}

/*-------------------------преимуществ и недостатков-песок-------------------------------------------------*/

.pros-cons-section {
  margin: 40px 0;
}

.pros-cons-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .pros-cons-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.pros-card,
.cons-card {
  background: var(--up-bg-wd);
  border: 1px solid var(--up-border-color);
  border-radius: 16px;
  padding: 30px;
}

.pros-card {
  border-left: 4px solid #10b981;
}

.cons-card {
  border-left: 4px solid #ef4444;
}

.pros-card h3,
.cons-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--up-text-wd-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pros-card h3::before {
  content: "✅";
  font-size: 24px;
}

.cons-card h3::before {
  content: "❌";
  font-size: 24px;
}

.pros-card ul,
.cons-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros-card li,
.cons-card li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  font-size: 15px;
  line-height: 24px;
  color: var(--up-text-color);
  border-bottom: 1px solid var(--up-border-color);
}

.pros-card li:last-child,
.cons-card li:last-child {
  border-bottom: none;
}

.pros-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
  font-size: 18px;
}

.cons-card li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: bold;
  font-size: 20px;
}

/* Блок стоимости */
.price-section {
  background: var(--up-bg-wd);
  border: 1px solid var(--up-border-color);
  border-radius: 16px;
  padding: 30px;
  margin: 40px 0;
}

.price-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--up-text-wd-color);
}

.price-section p {
  font-size: 15px;
  line-height: 26px;
  color: var(--up-text-color);
  margin-bottom: 15px;
}

.price-highlight {
  background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
  padding: 20px 25px;
  border-radius: 12px;
  margin: 20px 0;
  border-left: 4px solid #0B80E0;
}

.price-highlight p {
  margin: 0;
  font-weight: 600;
  color: #1565C0;
}

/* Блок технологии бурения */
.technology-section {
  margin: 40px 0;
}

.technology-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--up-text-wd-color);
}

.technology-section p {
  font-size: 15px;
  line-height: 28px;
  color: var(--up-text-color);
  margin-bottom: 20px;
}

.technology-section strong {
  color: var(--up-text-wd-color);
  font-weight: 600;
}

/* Информационные блоки */
.info-block {
  background: var(--up-bg-wd);
  border: 1px solid var(--up-border-color);
  border-radius: 12px;
  padding: 20px 25px;
  margin: 20px 0;
  border-left: 4px solid #0B80E0;
}

.info-block p {
  margin: 0;
  font-size: 14px;
  line-height: 24px;
  color: var(--up-text-color);
}

/* ===============================================
   ТАБЛИЦЫ - ОБЩИЕ СТИЛИ
   =============================================== */

/* Контейнер для адаптивности таблиц */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
}

/* Базовые стили таблиц */
.price-table,
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.6;
}

/* ===============================================
   ЗАГОЛОВКИ ТАБЛИЦ (thead)
   =============================================== */

.price-table thead,
.comparison-table thead {
  background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
  color: #ffffff;
}

.price-table thead th,
.comparison-table thead th {
  padding: 16px 12px;
  font-weight: 600;
  text-align: left;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.price-table thead th:last-child,
.comparison-table thead th:last-child {
  border-right: none;
}

/* ===============================================
   ТЕЛО ТАБЛИЦ (tbody)
   =============================================== */

.price-table tbody tr,
.comparison-table tbody tr {
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.2s ease;
}

.price-table tbody tr:hover,
.comparison-table tbody tr:hover {
  background-color: #f5f9ff;
}

.price-table tbody tr:last-child,
.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.price-table tbody td,
.comparison-table tbody td {
  padding: 14px 12px;
  color: #333333;
  vertical-align: middle;
}

/* Первая колонка (название района/параметра) - жирная */
.price-table tbody td:first-child,
.comparison-table tbody td:first-child {
  font-weight: 600;
  color: #0066cc;
}

/* Выделение цены */
.price-table tbody td:nth-child(3) {
  font-weight: 600;
  color: #0066cc;
}

/* ===============================================
   МОБИЛЬНАЯ АДАПТАЦИЯ
   =============================================== */

@media (max-width: 768px) {
  
  /* Уменьшаем шрифт на мобильных */
  .price-table,
  .comparison-table {
    font-size: 13px;
  }
  
  .price-table thead th,
  .comparison-table thead th {
    padding: 12px 8px;
    font-size: 12px;
  }
  
  .price-table tbody td,
  .comparison-table tbody td {
    padding: 10px 8px;
  }
  
  /* Горизонтальный скролл для широких таблиц */
  .table-responsive {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  
  /* Совсем маленький шрифт на очень узких экранах */
  .price-table,
  .comparison-table {
    font-size: 12px;
  }
  
  .price-table thead th,
  .comparison-table thead th {
    padding: 10px 6px;
    font-size: 11px;
  }
  
  .price-table tbody td,
  .comparison-table tbody td {
    padding: 8px 6px;
  }
}

/* ===============================================
   АЛЬТЕРНАТИВНЫЙ ВАРИАНТ: КАРТОЧКИ НА МОБИЛЬНЫХ
   (раскомментируйте если хотите карточный вид)
   =============================================== */


@media (max-width: 640px) {
  
  .price-table thead,
  .comparison-table thead {
    display: none;
  }
  
  .price-table tbody tr,
  .comparison-table tbody tr {
    display: block;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px;
  }
  
  .price-table tbody td,
  .comparison-table tbody td {
    display: block;
    text-align: left;
    padding: 8px 0;
    border: none;
  }
  
  .price-table tbody td::before,
  .comparison-table tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    display: inline-block;
    width: 120px;
    color: #0066cc;
  }
}


/* ===============================================
   ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ CONTENT-BLOCK
   =============================================== */

/* Если у вас ещё нет стилей для content-block */
.content-block {
  margin: 40px 0;
  padding: 30px 20px;
}

.content-block h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 20px;
  line-height: 1.3;
}

.content-block h3 {
  font-size: 22px;
  font-weight: 600;
  color: #0066cc;
  margin: 30px 0 15px;
  line-height: 1.4;
}

.content-block p {
  font-size: 16px;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 15px;
}

/* ===============================================
   АКЦЕНТНЫЕ ЭЛЕМЕНТЫ В ТАБЛИЦЕ
   =============================================== */

/* Подсветка лучшего варианта (для таблицы сравнения) */
.comparison-table tbody td.best-option {
  background-color: #e8f4fd;
  font-weight: 600;
}

/* Значок "Рекомендуем" */
.recommended-badge {
  display: inline-block;
  background: #00cc66;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin-left: 8px;
  vertical-align: middle;
}

/* ===============================================
   PRINT СТИЛИ (для печати)
   =============================================== */

@media print {
  .price-table,
  .comparison-table {
    box-shadow: none;
    border: 1px solid #cccccc;
  }
  
  .price-table thead,
  .comparison-table thead {
    background: #f0f0f0 !important;
    color: #000000 !important;
  }
  
  .price-table tbody tr:hover,
  .comparison-table tbody tr:hover {
    background-color: transparent;
  }
}

/* ===============================================
  Обертка для текста
   =============================================== */

/* ╔══════════════════════════════════════════════════════════════╗
   ║  FIXPACK19: Единая дизайн-система BSPB                     ║
   ║  Палитра: #e8650a (оранж) + #1a2744 (тёмно-синий)          ║
   ║  Используется на: главная, блог, портфолио, инфо-страницы   ║
   ║  Компоненты: page, block, head, cards, cta, reviews,        ║
   ║  stats, water, drill, equip, zigzag, mosaic, repair,        ║
   ║  regions, start, toc, article-img, expert, pk_catalog, faq  ║
   ║  Дата: 2026-03-14                                           ║
   ╚══════════════════════════════════════════════════════════════╝ */


  .bspb-page {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 16px;
    line-height: 1.65;
    color: #1a2744;
  }

  /* ── ОБЩИЕ ── */
  .bspb-block {
    background: #fff;
    border-radius: 14px;
    padding: 36px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  }
  .bspb-block-dark {
    background: #1a2744;
    border-radius: 14px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(26,39,68,0.2);
  }
  .bspb-block-accent {
    background: #fff8f3;
    border: 2px solid #e8650a;
    border-radius: 14px;
    padding: 36px;
  }

  .bspb-head { margin-bottom: 26px; }
  .bspb-head h2 {
    font-size: 22px; font-weight: 800;
    color: #1a2744; margin: 0 0 6px;
    padding-left: 16px; position: relative; line-height: 1.3;
  }
  .bspb-head h2::before {
    content: ''; position: absolute;
    left: 0; top: 4px; bottom: 4px;
    width: 4px; background: #e8650a; border-radius: 2px;
  }
  .bspb-head-dark h2 { color: #fff; }
  .bspb-head p { font-size: 15px; color: #888; margin: 0; padding-left: 16px; }
  .bspb-head-dark p { color: rgba(255,255,255,0.5); }

  .bspb-link { color: #e8650a; font-size: 15px; font-weight: 700; text-decoration: none; }
  .bspb-link:hover { text-decoration: underline; }
  .bspb-link-white { color: #fff; font-size: 15px; font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.3); }
  .bspb-link-white:hover { border-bottom-color: #fff; color: #fff; }

  /* ══════════════════════════════════════
     ① STATS — одна большая + три маленьких
  ══════════════════════════════════════ */
  .bspb-stats-editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .bspb-stat-big {
    background: #1a2744;
    border-radius: 12px;
    padding: 36px 32px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .bspb-stat-big-num {
    font-size: 64px; font-weight: 900;
    color: #e8650a; line-height: 1;
    margin-bottom: 10px;
  }
  .bspb-stat-big-label { font-size: 18px; color: rgba(255,255,255,0.8); line-height: 1.4; }
  .bspb-stats-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .bspb-stat-sm {
    background: #f7f9fc;
    border-radius: 12px;
    padding: 22px 18px;
    border: 1px solid #edf0f7;
    transition: border-color 0.2s, transform 0.2s;
  }
  .bspb-stat-sm:hover { border-color: #e8650a; transform: translateY(-2px); }
  .bspb-stat-sm-num {
    font-size: 32px; font-weight: 900;
    color: #e8650a; display: block;
    line-height: 1; margin-bottom: 7px;
  }
  .bspb-stat-sm-label { font-size: 14px; color: #666; line-height: 1.4; }

  /* ══════════════════════════════════════
     ② О КОМПАНИИ — тёмный фон, текст слева, список справа
  ══════════════════════════════════════ */
  .bspb-about-editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  .bspb-about-left h2 {
    font-size: 26px; font-weight: 900;
    color: #fff; line-height: 1.3;
    margin: 0 0 18px;
  }
  .bspb-about-left h2 span { color: #e8650a; }
  .bspb-about-left p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.8; margin: 0 0 24px; }
  .bspb-about-right { display: flex; flex-direction: column; gap: 14px; }
  .bspb-about-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 18px 20px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
  }
  .bspb-about-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: #e8650a; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
  }
  .bspb-about-item-title { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 3px; }
  .bspb-about-item-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.4; }

  /* ══════════════════════════════════════
     ③ С ЧЕГО НАЧАТЬ — горизонтальные плашки
  ══════════════════════════════════════ */
  /* ══════════════════════════════════════
     ③ С ЧЕГО НАЧАТЬ — список + фото
  ══════════════════════════════════════ */
  .bspb-start-with-photo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
  }
  .bspb-start-left { display: flex; flex-direction: column; }
  .bspb-start-left .bspb-head { margin-bottom: 16px; }

  .bspb-start-photo {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    cursor: pointer;
    transition: box-shadow 0.2s;
  }
  .bspb-start-photo:hover {
    box-shadow: 0 10px 36px rgba(26,39,68,0.25);
  }
  .bspb-start-photo-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 0.4s;
  }
  .bspb-start-photo:hover .bspb-start-photo-bg { transform: scale(1.03); }
  .bspb-start-photo-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(15,22,45,0.72) 0%,
      rgba(15,22,45,0.78) 50%,
      rgba(15,22,45,0.97) 100%
    );
  }
  .bspb-start-stats {
    position: relative; z-index: 1;
    padding: 24px 24px 0;
    display: flex; flex-direction: column; gap: 0;
  }
  .bspb-start-stat {
    display: flex; align-items: baseline; gap: 10px;
    padding: 11px 0;
  }
  .bspb-start-stat-num {
    font-size: 30px; font-weight: 900;
    color: #e8650a; line-height: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  }
  .bspb-start-stat-label {
    font-size: 15px; color: #fff;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0,0,0,0.7);
  }
  .bspb-start-stat-divider { height: 1px; background: rgba(255,255,255,0.15); }

  .bspb-start-cta {
    position: relative; z-index: 1;
    padding: 20px 24px 26px;
    background: rgba(10,16,36,0.55);
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 0;
  }
  .bspb-start-cta-title {
    font-size: 20px; font-weight: 900; color: #fff;
    margin-bottom: 8px; line-height: 1.25;
  }
  .bspb-start-cta-sub {
    font-size: 14px; color: rgba(255,255,255,0.8);
    margin-bottom: 18px; line-height: 1.5;
  }
  .bspb-start-cta-btn {
    display: block;
    background: #e8650a; color: #fff;
    font-size: 15px; font-weight: 800;
    padding: 15px 20px; border-radius: 8px;
    text-align: center;
    transition: background 0.2s;
    box-shadow: 0 4px 16px rgba(232,101,10,0.4);
  }
  .bspb-start-photo:hover .bspb-start-cta-btn { background: #cf5608; }

  .bspb-start-list { display: flex; flex-direction: column; gap: 8px; flex: 1; }
  .bspb-start-row {
    display: flex; align-items: center;
    gap: 16px;
    border: 1px solid #edf0f7;
    border-radius: 10px;
    padding: 18px 20px;
    text-decoration: none; color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    flex: 1;
  }
  .bspb-start-row:hover {
    border-color: #e8650a;
    background: #fffaf7;
    box-shadow: 0 2px 12px rgba(232,101,10,0.08);
    color: inherit;
  }
  .bspb-start-num {
    font-size: 38px; font-weight: 900;
    color: #e8e8f0; line-height: 1;
    flex-shrink: 0; width: 52px; text-align: center;
    transition: color 0.2s; letter-spacing: -1px;
  }
  .bspb-start-row:hover .bspb-start-num { color: #fde0cc; }
  .bspb-start-row-content { flex: 1; }
  .bspb-start-row-tag {
    font-size: 11px; text-transform: uppercase;
    letter-spacing: 1px; color: #e8650a;
    font-weight: 700; margin-bottom: 4px;
  }
  .bspb-start-row-title {
    font-size: 22px; font-weight: 900; color: #1a2744;
    margin-bottom: 3px; line-height: 1.15; letter-spacing: -0.3px;
  }
  .bspb-start-row:hover .bspb-start-row-title { color: #e8650a; }
  .bspb-start-row-desc { font-size: 13px; color: #aaa; line-height: 1.4; }
  .bspb-start-row-arrow {
    font-size: 18px; color: #d0d7e6;
    flex-shrink: 0; transition: color 0.2s, transform 0.2s;
  }
  .bspb-start-row:hover .bspb-start-row-arrow { color: #e8650a; transform: translateX(3px); }

  @media (max-width: 860px) {
    .bspb-start-with-photo { grid-template-columns: 1fr; }
    .bspb-start-photo { min-height: 220px; }
  }

  /* ══════════════════════════════════════
     ④ БУРЕНИЕ — 1 большая + 2 маленьких
  ══════════════════════════════════════ */
  .bspb-drill-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
  }
  .bspb-drill-main {
    grid-row: 1 / 3;
    border-radius: 12px; overflow: hidden;
    text-decoration: none; color: inherit;
    display: block; position: relative;
    min-height: 320px;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .bspb-drill-main:hover {
    box-shadow: 0 8px 32px rgba(26,39,68,0.2);
    transform: translateY(-3px); color: inherit;
  }
  .bspb-drill-main-photo {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
  }
  .bspb-drill-main-photo::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(26,39,68,0.15) 0%,
      rgba(26,39,68,0.3) 40%,
      rgba(26,39,68,0.88) 100%
    );
  }
  .bspb-drill-main-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    z-index: 1; padding: 20px 22px;
    background: linear-gradient(to top,
      rgba(15,24,48,0.92) 0%,
      rgba(15,24,48,0.7) 60%,
      transparent 100%
    );
  }
  .bspb-drill-main-label h3 {
    font-size: 24px; font-weight: 900; color: #fff;
    margin: 0 0 10px; line-height: 1.2;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  }
  .bspb-drill-main-price {
    display: inline-block;
    background: #e8650a; color: #fff;
    font-size: 14px; font-weight: 700;
    padding: 5px 16px; border-radius: 20px;
    margin-bottom: 12px;
  }
  .bspb-drill-main-desc {
    font-size: 14px; color: rgba(255,255,255,0.88);
    line-height: 1.6; margin: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  }

  .bspb-drill-small {
    border-radius: 12px; overflow: hidden;
    text-decoration: none; color: inherit;
    display: block; position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .bspb-drill-small:hover {
    box-shadow: 0 6px 22px rgba(26,39,68,0.15);
    transform: translateY(-2px); color: inherit;
  }
  .bspb-drill-small-photo {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
  }
  .bspb-drill-small-photo::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(26,39,68,0.05) 0%,
      rgba(26,39,68,0.55) 45%,
      rgba(26,39,68,0.0) 100%
    );
  }
  .bspb-drill-small-body {
    position: relative; z-index: 1;
    padding: 16px 18px 18px;
    /* подложка под текст снизу */
    background: linear-gradient(to top,
      rgba(15,24,48,0.9) 0%,
      rgba(15,24,48,0.72) 55%,
      transparent 100%
    );
    min-height: 148px;
    display: flex; flex-direction: column; justify-content: flex-end;
  }
  .bspb-drill-small-title {
    font-size: 16px; font-weight: 800; color: #fff;
    margin-bottom: 5px; line-height: 1.3;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  }
  .bspb-drill-small-desc {
    font-size: 13px; color: rgba(255,255,255,0.82);
    line-height: 1.4; margin-bottom: 10px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  }
  .bspb-drill-small-price {
    display: inline-block;
    font-size: 13px; font-weight: 800;
    color: #1a2744; background: #e8650a;
    padding: 3px 12px; border-radius: 20px;
    align-self: flex-start;
  }

  /* ══════════════════════════════════════
     ⑤ ОБУСТРОЙСТВО — цельное фото, диагональный градиент
  ══════════════════════════════════════ */
  .bspb-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .bspb-cards-2 { grid-template-columns: repeat(2, 1fr); }
  .bspb-card {
    border-radius: 12px; overflow: hidden;
    text-decoration: none; color: inherit;
    display: block; position: relative;
    min-height: 260px;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .bspb-card:hover {
    box-shadow: 0 8px 30px rgba(26,39,68,0.2);
    transform: translateY(-4px) scale(1.01); color: inherit;
  }
  .bspb-card-photo {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 0.4s;
  }
  .bspb-card:hover .bspb-card-photo { transform: scale(1.05); }
  .bspb-card-photo::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(
      135deg,
      rgba(26,39,68,0.85) 0%,
      rgba(26,39,68,0.25) 55%,
      rgba(26,39,68,0.6) 100%
    );
  }
  .bspb-card-photo-label {
    position: absolute; top: 14px; right: 14px; z-index: 1;
    font-size: 13px; font-weight: 800; color: #fff;
    background: #e8650a; padding: 4px 12px; border-radius: 20px;
  }
  .bspb-card-body {
    position: absolute; bottom: 0; left: 0; right: 0;
    z-index: 1;
    padding: 22px 20px;
    background: linear-gradient(to top,
      rgba(15,24,48,0.92) 0%,
      rgba(15,24,48,0.65) 55%,
      transparent 100%
    );
  }
  .bspb-card-title {
    font-size: 18px; font-weight: 900; color: #fff;
    margin-bottom: 7px; line-height: 1.25;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  }
  .bspb-card-desc {
    font-size: 13px; color: rgba(255,255,255,0.82);
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
  }
  .bspb-card-price { display: none; }

  /* ══════════════════════════════════════
     ⑥ ОБОРУДОВАНИЕ — 4 карточки
  ══════════════════════════════════════ */
  .bspb-equip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .bspb-equip-card {
    border-radius: 12px; overflow: hidden;
    border: 1px solid #edf0f7;
    display: flex; flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .bspb-equip-card:hover {
    box-shadow: 0 6px 22px rgba(26,39,68,0.11);
    transform: translateY(-3px);
  }
  .bspb-equip-photo {
    height: 120px; background-size: cover; background-position: center;
    position: relative; flex-shrink: 0;
  }
  .bspb-equip-photo::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(26,39,68,0.05), rgba(26,39,68,0.4));
  }
  .bspb-equip-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
  .bspb-equip-title { font-size: 15px; font-weight: 800; color: #1a2744; margin-bottom: 7px; line-height: 1.3; }
  .bspb-equip-desc { font-size: 13px; color: #777; line-height: 1.55; flex: 1; }
  .bspb-equip-badge {
    display: inline-block; margin-top: 12px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    color: #e8650a; background: #fff3ec;
    border-radius: 20px; padding: 4px 12px; align-self: flex-start;
  }

  /* ══════════════════════════════════════
     ⑦ ВОДОПОДГОТОВКА — горизонтальные строки
  ══════════════════════════════════════ */
  .bspb-water-list { display: flex; flex-direction: column; gap: 12px; }
  .bspb-water-row {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    align-items: center;
    gap: 0;
    border: 1px solid #edf0f7;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none; color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .bspb-water-row:hover {
    border-color: #e8650a;
    box-shadow: 0 3px 14px rgba(232,101,10,0.1);
    color: inherit;
  }
  .bspb-water-photo {
    height: 80px; background-size: cover; background-position: center;
  }
  .bspb-water-body { padding: 16px 20px; }
  .bspb-water-title { font-size: 16px; font-weight: 800; color: #1a2744; margin-bottom: 4px; }
  .bspb-water-desc { font-size: 13px; color: #888; line-height: 1.5; }
  .bspb-water-right {
    padding: 16px 20px;
    text-align: right;
    display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
  }
  .bspb-water-price { font-size: 15px; font-weight: 800; color: #e8650a; white-space: nowrap; }
  .bspb-water-arrow { font-size: 18px; color: #d0d7e6; transition: color 0.2s; }
  .bspb-water-row:hover .bspb-water-arrow { color: #e8650a; }

  /* ══════════════════════════════════════
     БАННЕР ВОДОПОДГОТОВКА
  ══════════════════════════════════════ */
  .bspb-water-with-banner {
    display: grid;
    grid-template-columns: 1fr 25%;
    gap: 14px;
    align-items: stretch;
  }
  .bspb-water-banner {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .bspb-water-banner:hover {
    box-shadow: 0 8px 28px rgba(26,39,68,0.22);
    transform: translateY(-3px);
  }
  .bspb-water-banner-bg {
    position: absolute; inset: 0;
    background-image: url('/image/catalog/disign/vodp4.jpg');
    background-size: cover;
    background-position: center;
  }
  .bspb-water-banner-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
      160deg,
      rgba(26,39,68,0.55) 0%,
      rgba(26,39,68,0.8) 100%
    );
  }
  .bspb-water-banner-top {
    position: relative; z-index: 1;
    padding: 22px 20px 0;
  }
  .bspb-water-banner-tag {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    color: #1a2744;
    background: #e8650a;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
  }
  .bspb-water-banner-title {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    line-height: 1.25;
  }
  .bspb-water-banner-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 10px;
    line-height: 1.5;
  }
  .bspb-water-banner-bottom {
    position: relative; z-index: 1;
    padding: 0 20px 22px;
  }
  .bspb-water-banner-price-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
  }
  .bspb-water-banner-price {
    font-size: 20px;
    font-weight: 900;
    color: #e8650a;
  }
  .bspb-water-banner-cta {
    display: inline-block;
    margin-top: 14px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 13px; font-weight: 700;
    padding: 9px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
  }
  .bspb-water-banner:hover .bspb-water-banner-cta {
    background: rgba(255,255,255,0.22);
  }
  @media (max-width: 960px) {
    .bspb-water-with-banner { grid-template-columns: 1fr; }
    .bspb-water-banner { min-height: 180px; flex-direction: row; align-items: center; }
    .bspb-water-banner-top { padding: 20px 0 20px 20px; flex: 1; }
    .bspb-water-banner-bottom { padding: 20px 20px 20px 0; }
  }

  /* ══════════════════════════════════════
     ⑧ РЕМОНТ — широкие горизонтальные, фото справа
  ══════════════════════════════════════ */
  .bspb-repair-grid { display: flex; flex-direction: column; gap: 12px; }
  .bspb-repair-card {
    border-radius: 12px; overflow: hidden;
    text-decoration: none; color: inherit;
    display: grid;
    grid-template-columns: 1fr 280px;
    min-height: 140px;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .bspb-repair-card:hover {
    box-shadow: 0 6px 28px rgba(26,39,68,0.18);
    transform: translateX(4px); color: inherit;
  }
  .bspb-repair-body {
    background: #1a2744;
    padding: 26px 28px;
    display: flex; flex-direction: column; justify-content: center;
    position: relative;
  }
  .bspb-repair-body::after {
    content: '→';
    position: absolute; right: 24px; top: 50%;
    transform: translateY(-50%);
    font-size: 22px; color: rgba(255,255,255,0.15);
    transition: color 0.2s, right 0.2s;
  }
  .bspb-repair-card:hover .bspb-repair-body::after {
    color: #e8650a; right: 20px;
  }
  .bspb-repair-title { font-size: 18px; font-weight: 900; color: #fff; margin-bottom: 8px; line-height: 1.25; }
  .bspb-repair-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.5; margin-bottom: 14px; }
  .bspb-repair-price {
    display: inline-block; align-self: flex-start;
    font-size: 14px; font-weight: 800;
    color: #1a2744; background: #e8650a;
    padding: 4px 14px; border-radius: 20px;
  }
  .bspb-repair-photo {
    position: relative;
    background-size: cover; background-position: center;
  }
  .bspb-repair-photo::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(26,39,68,0.5), transparent);
    z-index: 1;
  }

  /* ══════════════════════════════════════
     ⑨ КАК МЫ РАБОТАЕМ — зигзаг
  ══════════════════════════════════════ */
  .bspb-zigzag { display: flex; flex-direction: column; gap: 0; }
  .bspb-zigstep {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: center;
    gap: 0;
  }
  .bspb-zigstep-content {
    padding: 20px 24px;
    background: #f7f9fc;
    border-radius: 12px;
    border: 1px solid #edf0f7;
  }
  .bspb-zigstep-content.right { background: #fff; }
  .bspb-zigstep-empty { }
  .bspb-zigstep-center {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    position: relative;
  }
  .bspb-zigstep-num {
    width: 40px; height: 40px;
    background: #1a2744; color: #fff;
    border-radius: 50%; font-size: 16px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    z-index: 1; position: relative;
  }
  .bspb-zigstep-line {
    width: 2px; height: 40px;
    background: #edf0f7;
  }
  .bspb-zigstep-title { font-size: 15px; font-weight: 800; color: #1a2744; margin-bottom: 5px; }
  .bspb-zigstep-desc { font-size: 13px; color: #888; line-height: 1.5; }

  /* ══════════════════════════════════════
     ⑩ РАЙОНЫ
  ══════════════════════════════════════ */
  .bspb-regions { display: flex; flex-wrap: wrap; gap: 10px; }
  .bspb-region-tag {
    background: #f7f9fc; border: 1px solid #edf0f7;
    border-radius: 24px; padding: 8px 18px;
    font-size: 14px; color: #444;
    text-decoration: none; transition: all 0.15s;
  }
  .bspb-region-tag:hover, .bspb-region-tag.accent {
    background: #fff3ec; border-color: #e8650a; color: #e8650a;
  }
  .bspb-region-tag.accent { font-weight: 700; }
  .bspb-regions-note { font-size: 13px; color: #aaa; margin: 14px 0 0; }

  /* ══════════════════════════════════════
     ⑪ ПОРТФОЛИО — мозаика
  ══════════════════════════════════════ */
  .bspb-mosaic {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: 180px;
    gap: 14px;
    margin-bottom: 18px;
  }
  .bspb-mosaic-card {
    border-radius: 12px; overflow: hidden;
    text-decoration: none; color: inherit;
    display: block; position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .bspb-mosaic-card:hover {
    box-shadow: 0 6px 24px rgba(26,39,68,0.18);
    transform: scale(1.01); color: inherit;
  }
  .bspb-mosaic-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
  }
  .bspb-mosaic-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,39,68,0.85) 0%, rgba(26,39,68,0.1) 60%);
  }
  .bspb-mosaic-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 16px 18px; z-index: 1;
  }
  .bspb-mosaic-type {
    font-size: 11px; text-transform: uppercase;
    letter-spacing: 1px; color: #e8650a;
    font-weight: 700; margin-bottom: 4px;
  }
  .bspb-mosaic-title { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 3px; }
  .bspb-mosaic-meta { font-size: 12px; color: rgba(255,255,255,0.65); }

  /* ══════════════════════════════════════
     ⑫ ОТЗЫВЫ
  ══════════════════════════════════════ */
  .bspb-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 18px; }
  .bspb-review {
    background: #f7f9fc; border: 1px solid #edf0f7;
    border-radius: 12px; padding: 22px 20px;
  }
  .bspb-stars { color: #e8650a; font-size: 16px; margin-bottom: 12px; }
  .bspb-review-text { font-size: 14px; color: #555; line-height: 1.65; margin-bottom: 16px; }
  .bspb-review-author { font-size: 13px; color: #aaa; }
  .bspb-review-author strong { color: #333; display: block; font-size: 15px; margin-bottom: 2px; }

  /* ══════════════════════════════════════
     ⑬ CTA
  ══════════════════════════════════════ */
  .bspb-cta {
    border-radius: 14px; padding: 0;
    overflow: hidden; position: relative;
    min-height: 180px; display: flex; align-items: center;
  }
  .bspb-cta-bg {
    position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?w=1200&q=80');
    background-size: cover; background-position: center;
    filter: brightness(0.3);
  }
  .bspb-cta-inner {
    position: relative; z-index: 1;
    padding: 44px 48px;
    display: flex; align-items: center;
    justify-content: space-between;
    gap: 24px; flex-wrap: wrap; width: 100%;
  }
  .bspb-cta h3 { font-size: 24px; font-weight: 900; color: #fff; margin: 0 0 8px; }
  .bspb-cta p { font-size: 15px; color: rgba(255,255,255,0.7); margin: 0; }
  .bspb-btn {
    background: #e8650a; color: #fff;
    padding: 16px 32px; border-radius: 10px;
    font-size: 15px; font-weight: 800;
    text-decoration: none; white-space: nowrap;
    transition: background 0.2s; display: inline-block;
  }
  .bspb-btn:hover { background: #cf5608; color: #fff; }

  .bspb-sep { display: flex; align-items: center; gap: 14px; margin: 4px 0; }
  .bspb-sep span { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: #bbb; white-space: nowrap; }
  .bspb-sep::before, .bspb-sep::after { content: ''; flex: 1; height: 1px; background: #e0e4ef; }

  @media (max-width: 960px) {
    .bspb-stats-editorial { grid-template-columns: 1fr; }
    .bspb-stats-small { grid-template-columns: repeat(4, 1fr); }
    .bspb-about-editorial { grid-template-columns: 1fr; gap: 24px; }
    .bspb-drill-grid { grid-template-columns: 1fr; }
    .bspb-drill-main { grid-row: auto; }
    .bspb-equip-grid { grid-template-columns: repeat(2, 1fr); }
    .bspb-cards { grid-template-columns: repeat(2, 1fr); }
    .bspb-repair-card { grid-template-columns: 1fr 180px; }
    .bspb-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px; }
    .bspb-reviews { grid-template-columns: 1fr; }
    .bspb-water-row { grid-template-columns: 80px 1fr; }
    .bspb-water-right { display: none; }
    .bspb-zigzag { display: none; }
  }
  @media (max-width: 640px) {
    .bspb-block, .bspb-block-dark, .bspb-block-accent { padding: 22px 18px; }
    .bspb-stats-small { grid-template-columns: repeat(2, 1fr); }
    .bspb-cards { grid-template-columns: 1fr; }
    .bspb-cards-2 { grid-template-columns: 1fr; }
    .bspb-equip-grid { grid-template-columns: 1fr; }
    .bspb-repair-card { grid-template-columns: 1fr; }
    .bspb-repair-photo { height: 160px; }
    .bspb-mosaic { grid-template-columns: 1fr; grid-template-rows: repeat(3, 160px); }
    .bspb-cta-inner { padding: 28px 22px; flex-direction: column; align-items: flex-start; }
    .bspb-start-num { display: none; }
  }


/* ===============================================
   БЛОГ: article-img, toc, expert
   Стилизация под единую bspb дизайн-систему
   =============================================== */

/* Оглавление статьи */
nav.toc {
  background: #f7f9fc;
  border: 1px solid #edf0f7;
  border-left: 4px solid #e8650a;
  border-radius: 0 12px 12px 0;
  padding: 22px 28px;
  margin: 28px 0;
}
nav.toc h2 {
  font-size: 16px;
  font-weight: 800;
  color: #1a2744;
  margin: 0 0 14px;
}
nav.toc ol {
  margin: 0;
  padding-left: 20px;
  counter-reset: toc-counter;
  list-style: none;
}
nav.toc ol li {
  counter-increment: toc-counter;
  padding: 6px 0;
  border-bottom: 1px solid #edf0f7;
}
nav.toc ol li:last-child { border-bottom: none; }
nav.toc ol li::before {
  content: counter(toc-counter) ".";
  color: #e8650a;
  font-weight: 700;
  margin-right: 8px;
}
nav.toc ol li a {
  color: #1a2744;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
nav.toc ol li a:hover {
  color: #e8650a;
}

/* Заглушка изображения в статье */
.article-img {
  margin: 28px 0;
  padding: 20px;
  background: #f7f9fc;
  border: 2px dashed #dde3ed;
  border-radius: 12px;
  text-align: center;
}
.article-img p {
  margin: 0 0 4px;
  font-size: 14px;
  color: #999;
  line-height: 1.5;
}
.article-img p:last-child {
  font-size: 12px;
  color: #888;
  font-style: italic;
  margin: 0;
}

/* Экспертное мнение */
blockquote.expert {
  background: linear-gradient(135deg, #1a2744 0%, #2a3f66 100%);
  color: rgba(255,255,255,0.85);
  border: none;
  border-radius: 12px;
  padding: 24px 28px;
  margin: 28px 0;
  font-size: 14px;
  line-height: 1.7;
  position: relative;
  font-style: normal;
}
blockquote.expert::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #e8650a;
  border-radius: 4px 0 0 4px;
}

/* pk_catalog — каталог услуг */
.pk_catalog_wrapper {
  margin: 20px 0;
}
.pk_catalog_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}
.pk_catalog_cell { }
.pk_catalog_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 10px;
  background: #f7f9fc;
  border: 1px solid #edf0f7;
  border-radius: 10px;
  text-decoration: none;
  color: #1a2744;
  transition: all 0.2s;
  text-align: center;
}
.pk_catalog_card:hover {
  border-color: #e8650a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232,101,10,0.12);
  color: #e8650a;
}
.pk_catalog_image_box {
  width: 50px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pk_catalog_image {
  max-width: 100%;
  max-height: 100%;
}
.pk_catalog_label {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

/* FAQ секция (для инфо-страниц) */
.faq-section {
  margin: 28px 0;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: #f7f9fc;
  border: 1px solid #edf0f7;
  border-radius: 10px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: #1a2744;
  transition: background 0.2s;
}
.faq-question:hover { background: #eef2f9; }
.faq-icon {
  color: #e8650a;
  font-size: 12px;
  transition: transform 0.25s;
}
.faq-answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  border-top: 1px solid #edf0f7;
}

/* Промо-заглушка */
.promo-placeholder {
  background: linear-gradient(135deg, #e8650a 0%, #cf5608 100%);
  border-radius: 12px;
  padding: 28px 32px;
  color: #fff;
  text-align: center;
  margin: 20px 0;
}
.promo-placeholder h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 8px;
}
.promo-placeholder p {
  font-size: 15px;
  opacity: 0.85;
  margin: 0;
}

/* privacy-policy */
.privacy-policy {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}
.privacy-policy h2 {
  font-size: 18px;
  font-weight: 800;
  color: #1a2744;
  margin: 28px 0 12px;
  padding-left: 16px;
  position: relative;
}
.privacy-policy h2::before {
  content: '';
  position: absolute;
  left: 0; top: 3px; bottom: 3px;
  width: 4px;
  background: #e8650a;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .pk_catalog_grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .pk_catalog_card { padding: 12px 8px; }
  .pk_catalog_label { font-size: 11px; }
  nav.toc { padding: 16px 18px; }
}

@media (max-width: 480px) {
  .pk_catalog_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ═══════════════════════════════════════
   FIXPACK19 ЧАСТЬ 2: CSS из HTML-модулей
   sk9, etag, lsi, smeta, faq, equipment, kessons,
   compact, map, legend, filter, links, service
   ═══════════════════════════════════════ */

  /* ── Из модуля: Баннер видео + форма связи - МГБУ1 (ID=129) ── */

    
        /* Контейнер облака */
        .collapsible-tag-cloud {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        /* КНОПКА-ЗАГОЛОВОК */
        .cloud-toggle-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 16px 20px;
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 20px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
            text-align: left;
            box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
        }
        
        .cloud-toggle-header:hover {
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
        }
        
        .cloud-toggle-header:active {
            transform: translateY(0);
        }
        
        /* Текст кнопки */
        .header-text {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        /* Иконка стрелки */
        .header-icon {
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }
        
        .cloud-toggle-header[aria-expanded="true"] .header-icon {
            transform: rotate(180deg);
        }
        
        /* Раскрывающаяся зона */
        .cloud-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                        opacity 0.3s ease,
                        margin-top 0.3s ease;
            opacity: 0;
            margin-top: 0;
        }
        
        .cloud-content.active {
            max-height: 5000px;
            opacity: 1;
            margin-top: 24px;
        }
        
        /* Облако тегов */
        .tags-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            padding: 0;
        }
        
        /* Базовый тег */
        .etag {
            display: inline-block;
            padding: 8px 16px;
            background: #f1f5f9;
            border: 1px solid #e2e8f0;
            border-radius: 20px;
            color: #475569;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
            position: relative;
            overflow: hidden;
            line-height: 1.5;
        }
        
        .etag::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(59, 130, 246, 0.1);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .etag:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .etag:hover {
            transform: translateY(-3px) scale(1.05);
            z-index: 10;
        }
        
        /* Размеры тегов */
        .etag-xl {
            font-size: 18px;
            padding: 11px 20px;
            font-weight: 700;
        }
        
        .etag-lg {
            font-size: 16px;
            padding: 10px 18px;
            font-weight: 600;
        }
        
        .etag-md {
            font-size: 14px;
            padding: 8px 15px;
        }
        
        .etag-sm {
            font-size: 13px;
            padding: 7px 13px;
        }
        
        .etag-xs {
            font-size: 12px;
            padding: 6px 11px;
            opacity: 0.9;
        }
        
        /* КОММЕРЧЕСКИЕ ТЕГИ - зеленый */
        .etag-commercial {
            background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
            border-color: #6ee7b7;
            color: #065f46;
        }
        
        .etag-commercial:hover {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            border-color: #047857;
            color: white;
            box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
        }
        
        /* ТЕХНИЧЕСКИЕ ТЕГИ - синий */
        .etag-technical {
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            border-color: #93c5fd;
            color: #1e40af;
        }
        
        .etag-technical:hover {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            border-color: #1d4ed8;
            color: white;
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
        }
        
        /* ОБЫЧНЫЕ ТЕГИ - фиолетовый */
        .etag-normal {
            background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
            border-color: #d8b4fe;
            color: #6b21a8;
        }
        
        .etag-normal:hover {
            background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
            border-color: #7e22ce;
            color: white;
            box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
        }
        
        /* СЕРВИСНЫЕ ТЕГИ - оранжевый */
        .etag-service {
            background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
            border-color: #fb923c;
            color: #9a3412;
        }
        
        .etag-service:hover {
            background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
            border-color: #c2410c;
            color: white;
            box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
        }
        
        /* Легенда */
        .legend {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin-top: 24px;
            padding-top: 24px;
            border-top: 2px solid #e2e8f0;
            flex-wrap: wrap;
        }
        
        .legend-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: #64748b;
        }
        
        .legend-badge {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: 2px solid;
        }
        
        .legend-commercial { background: #a7f3d0; border-color: #10b981; }
        .legend-technical { background: #bfdbfe; border-color: #3b82f6; }
        .legend-normal { background: #e9d5ff; border-color: #a855f7; }
        .legend-service { background: #fdba74; border-color: #f97316; }
        
        /* Адаптив */
        @media (max-width: 768px) {
            .collapsible-tag-cloud {
                padding: 16px;
            }
            
            .cloud-toggle-header {
                font-size: 16px;
                padding: 14px 16px;
            }
            
            .etag {
                font-size: 12px !important;
                padding: 6px 12px !important;
            }
            
            .legend {
                gap: 16px;
            }
        }
        
        /* Анимация появления тегов */
        @keyframes fadeInTag {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .cloud-content.active .etag {
            animation: fadeInTag 0.4s ease forwards;
            opacity: 0;
        }
        
        .cloud-content.active .etag:nth-child(1) { animation-delay: 0.02s; }
        .cloud-content.active .etag:nth-child(2) { animation-delay: 0.04s; }
        .cloud-content.active .etag:nth-child(3) { animation-delay: 0.06s; }
        .cloud-content.active .etag:nth-child(4) { animation-delay: 0.08s; }
        .cloud-content.active .etag:nth-child(5) { animation-delay: 0.10s; }
        .cloud-content.active .etag:nth-child(n+6) { animation-delay: 0.12s; }
    

  /* ── Из модуля: Форма БАННЕР (ID=53) ── */

    .compact-services {
        max-width: 100%;
        margin: 50px auto;
        padding: 30px 25px;
        background: #fff;
        border-radius: 16px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    }
    
    .compact-services .compact-header {
        text-align: center;
        margin-bottom: 25px;
    }
    
    .compact-services .compact-header h3 {
        font-size: 22px;
        color: #2d3748;
        margin-bottom: 8px;
        font-weight: 600;
    }
    
    .compact-services .compact-header p {
        font-size: 14px;
        color: #718096;
    }
    
    .compact-services .services-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr auto 1fr 1fr;
        gap: 10px;
        align-items: start;
    }
    
    /* Левая колонка */
    .compact-services .links-col-left-1,
    .compact-services .links-col-left-2 {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    /* Правая колонка */
    .compact-services .links-col-right-1,
    .compact-services .links-col-right-2 {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    /* Центральное изображение */
    .compact-services .image-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }
    
    .compact-services .image-wrapper {
        position: relative;
        width: 220px;
        height: 220px;
    }
    
    .compact-services .rotating-ring {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 240px;
        height: 240px;
        border: 2px dashed #cbd5e0;
        border-radius: 50%;
        animation: cs-rotate 20s linear infinite;
    }
    
    @keyframes cs-rotate {
        from {
            transform: translate(-50%, -50%) rotate(0deg);
        }
        to {
            transform: translate(-50%, -50%) rotate(360deg);
        }
    }
    
    .compact-services .rotating-ring-outer {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 255px;
        height: 255px;
        border: 1px dotted #e2e8f0;
        border-radius: 50%;
        animation: cs-rotate-reverse 30s linear infinite;
    }
    
    @keyframes cs-rotate-reverse {
        from {
            transform: translate(-50%, -50%) rotate(360deg);
        }
        to {
            transform: translate(-50%, -50%) rotate(0deg);
        }
    }
    
    .compact-services .center-image {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 0 0 1px #e2e8f0;
        border: 4px solid #fff;
        position: relative;
        z-index: 2;
        background: #f7fafc;
    }
    
    .compact-services .center-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .compact-services .photo-caption {
        text-align: center;
        margin-top: 12px;
        font-size: 12px;
        color: #4a5568;
        line-height: 1.5;
    }
    
    .compact-services .photo-caption strong {
        font-weight: 700;
        color: #2d3748;
        display: block;
    }
    
    .compact-services .service-link {
        position: relative;
        padding: 10px 12px;
        background: #f7fafc;
        border-radius: 8px;
        text-decoration: none;
        color: #4a5568;
        font-size: 13px;
        font-weight: 500;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid #e2e8f0;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .compact-services .service-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 8px 0 0 8px;
        transform: scaleY(0);
        transition: transform 0.3s;
    }
    
    .compact-services .service-link:hover {
        background: #fff;
        border-color: #667eea;
        color: #667eea;
        transform: translateX(-3px);
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
    }
    
    .compact-services .service-link:hover::before {
        transform: scaleY(1);
    }
    
    .compact-services .link-dot {
        width: 5px;
        height: 5px;
        min-width: 5px;
        background: #cbd5e0;
        border-radius: 50%;
        transition: all 0.3s;
    }
    
    .compact-services .service-link:hover .link-dot {
        background: #667eea;
        transform: scale(1.4);
        box-shadow: 0 0 8px rgba(102, 126, 234, 0.4);
    }
    
    .compact-services .link-arrow {
        margin-left: auto;
        opacity: 0;
        transition: all 0.3s;
        color: #667eea;
        font-weight: 600;
        font-size: 14px;
    }
    
    .compact-services .service-link:hover .link-arrow {
        opacity: 1;
    }
    
    @media (max-width: 1200px) {
        .compact-services .services-wrapper {
            grid-template-columns: 1fr 1fr auto 1fr 1fr;
        }
    }
    
    @media (max-width: 992px) {
        .compact-services .services-wrapper {
            grid-template-columns: 1fr auto 1fr;
        }
        
        .compact-services .links-col-left-2,
        .compact-services .links-col-right-2 {
            display: none;
        }
    }
    
    @media (max-width: 768px) {
        .compact-services .services-wrapper {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        
        .compact-services .image-container {
            order: -1;
        }
        
        .compact-services .links-col-left-1,
        .compact-services .links-col-left-2,
        .compact-services .links-col-right-1,
        .compact-services .links-col-right-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }
    }
    
    @media (max-width: 576px) {
        .compact-services {
            padding: 20px 15px;
        }
        
        .compact-services .links-col-left-1,
        .compact-services .links-col-left-2,
        .compact-services .links-col-right-1,
        .compact-services .links-col-right-2 {
            grid-template-columns: 1fr;
        }
    }


  /* ── Из модуля: Нижнее меню дополнительное - Обустройство (ID=133) ── */

    .compact-services {
        max-width: 100%;
        margin: 50px auto;
        padding: 30px 25px;
        background: #fff;
        border-radius: 16px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    }
    
    .compact-services .compact-header {
        text-align: center;
        margin-bottom: 25px;
    }
    
    .compact-services .compact-header h3 {
        font-size: 22px;
        color: #2d3748;
        margin-bottom: 8px;
        font-weight: 600;
    }
    
    .compact-services .compact-header p {
        font-size: 14px;
        color: #718096;
    }
    
    .compact-services .services-wrapper {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 30px;
        align-items: start;
    }
    
    /* Левая колонка */
    .compact-services .links-col-left {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    /* Правая колонка */
    .compact-services .links-col-right {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    /* Центральное изображение */
    .compact-services .image-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }
    
    .compact-services .image-wrapper {
        position: relative;
        width: 220px;
        height: 220px;
    }
    
    .compact-services .rotating-ring {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 240px;
        height: 240px;
        border: 2px dashed #cbd5e0;
        border-radius: 50%;
        animation: cs-rotate 20s linear infinite;
    }
    
    @keyframes cs-rotate {
        from {
            transform: translate(-50%, -50%) rotate(0deg);
        }
        to {
            transform: translate(-50%, -50%) rotate(360deg);
        }
    }
    
    .compact-services .rotating-ring-outer {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 255px;
        height: 255px;
        border: 1px dotted #e2e8f0;
        border-radius: 50%;
        animation: cs-rotate-reverse 30s linear infinite;
    }
    
    @keyframes cs-rotate-reverse {
        from {
            transform: translate(-50%, -50%) rotate(360deg);
        }
        to {
            transform: translate(-50%, -50%) rotate(0deg);
        }
    }
    
    .compact-services .center-image {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 0 0 1px #e2e8f0;
        border: 4px solid #fff;
        position: relative;
        z-index: 2;
        background: #f7fafc;
    }
    
    .compact-services .center-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .compact-services .photo-caption {
        text-align: center;
        margin-top: 12px;
        font-size: 12px;
        color: #4a5568;
        line-height: 1.5;
    }
    
    .compact-services .photo-caption strong {
        font-weight: 700;
        color: #2d3748;
        display: block;
    }
    
    .compact-services .service-link {
        position: relative;
        padding: 10px 12px;
        background: #f7fafc;
        border-radius: 8px;
        text-decoration: none;
        color: #4a5568;
        font-size: 13px;
        font-weight: 500;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid #e2e8f0;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .compact-services .service-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 8px 0 0 8px;
        transform: scaleY(0);
        transition: transform 0.3s;
    }
    
    .compact-services .links-col-right .service-link::before {
        left: auto;
        right: 0;
        border-radius: 0 8px 8px 0;
    }
    
    .compact-services .service-link:hover {
        background: #fff;
        border-color: #667eea;
        color: #667eea;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
    }
    
    .compact-services .links-col-left .service-link:hover {
        transform: translateX(-3px);
    }
    
    .compact-services .links-col-right .service-link:hover {
        transform: translateX(3px);
    }
    
    .compact-services .service-link:hover::before {
        transform: scaleY(1);
    }
    
    .compact-services .link-dot {
        width: 5px;
        height: 5px;
        min-width: 5px;
        background: #cbd5e0;
        border-radius: 50%;
        transition: all 0.3s;
    }
    
    .compact-services .service-link:hover .link-dot {
        background: #667eea;
        transform: scale(1.4);
        box-shadow: 0 0 8px rgba(102, 126, 234, 0.4);
    }
    
    .compact-services .link-arrow {
        margin-left: auto;
        opacity: 0;
        transition: all 0.3s;
        color: #667eea;
        font-weight: 600;
        font-size: 14px;
    }
    
    .compact-services .links-col-right .link-arrow {
        margin-left: 0;
        margin-right: auto;
        order: -1;
    }
    
    .compact-services .service-link:hover .link-arrow {
        opacity: 1;
    }
    
    @media (max-width: 992px) {
        .compact-services .services-wrapper {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .compact-services .image-container {
            order: -1;
        }
        
        .compact-services .links-col-left,
        .compact-services .links-col-right {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }
    }
    
    @media (max-width: 576px) {
        .compact-services {
            padding: 20px 15px;
        }
        
        .compact-services .links-col-left,
        .compact-services .links-col-right {
            grid-template-columns: 1fr;
        }
    }


  /* ── Из модуля:  6 из 1143  размещенных на сайте работ (ID=124) ── */

    .map-k_wells-wrapper {
        max-width: 100%;
        margin: 50px auto;
        padding: 0;
    }
    
    .map-k_wells-wrapper h2 {
        margin-bottom: 20px;
        font-size: 24px;
        font-weight: 600;
    }
    
    .map-k_wells-wrapper > p {
        margin-bottom: 20px;
        color: #666;
    }
    
    .map-k_wells-container {
        display: grid;
        grid-template-columns: 1fr 380px;
        gap: 20px;
        align-items: start;
    }
    
    .map-k_sidebar {
        display: flex;
        flex-direction: column;
        gap: 15px;
        position: relative;
    }
    
    .map-k_info {
        background: #fff;
        border-radius: 12px;
        padding: 20px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
    
    .map-k_title {
        font-size: 16px;
        font-weight: 700;
        color: #2d3748;
        margin: 0 0 15px 0;
    }
    
    .map-k_info-text {
        font-size: 14px;
        line-height: 1.6;
        color: #4a5568;
        margin: 0 0 12px 0;
    }
    
    .map-k_info-text:last-child {
        margin-bottom: 0;
    }
    
    .map-k_info-text strong {
        font-weight: 600;
        color: #2d3748;
    }
    
    /* Кнопка раскрытия - минимализм */
    .map-k_depth-toggle-wrapper {
        position: relative;
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }
    
    .map-k_depth-toggle {
        padding: 10px 16px;
        background: #fff;
        border: 1px solid #cbd5e0;
        border-radius: 6px;
        color: #4a5568;
        font-size: 13px;
        font-weight: 500;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.2s ease;
    }
    
    .map-k_depth-toggle:hover {
        border-color: #4a5568;
        color: #2d3748;
    }
    
    .map-k_depth-toggle-icon {
        transition: transform 0.2s ease;
        font-size: 9px;
    }
    
    .map-k_depth-toggle.active .map-k_depth-toggle-icon {
        transform: rotate(180deg);
    }
    
    /* Выпадающее меню - минимализм, без фона */
    .map-k_depth-dropdown {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        transform: translateY(-10px);
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.2s ease;
        max-height: 500px;
        overflow-y: auto;
    }
    
    .map-k_depth-dropdown.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .map-k_depth-header {
        margin-bottom: 16px;
        padding-bottom: 12px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .map-k_depth-title {
        font-size: 14px;
        font-weight: 600;
        color: #2d3748;
        margin: 0 0 4px 0;
    }
    
    .map-k_depth-subtitle {
        font-size: 12px;
        color: #718096;
        margin: 0;
    }
    
    /* Сетка с глубинами - чистый минимализм */
    .map-k_depth-smart-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .depth-section {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .section-label {
        font-size: 11px;
        font-weight: 600;
        color: #a0aec0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 4px;
    }
    
    .depth-section-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }
    
    .map-k_depth-link {
        padding: 8px 10px;
        background: #f7fafc;
        border: 1px solid #e2e8f0;
        border-radius: 4px;
        text-decoration: none;
        color: #4a5568;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        transition: all 0.2s ease;
    }
    
    .map-k_depth-link:hover {
        background: #edf2f7;
        border-color: #cbd5e0;
        color: #2d3748;
    }
    
    /* Популярные глубины */
    .map-k_depth-link[data-category="popular"] {
        background: #2d3748;
        color: #ffffff;
        border-color: #2d3748;
        font-weight: 600;
    }
    
    .map-k_depth-link[data-category="popular"]:hover {
        background: #1a202c;
        border-color: #1a202c;
    }
    
    /* Карта */
    .map-k_map-section {
        background: #fff;
        border-radius: 12px;
        padding: 20px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
    
    .map-k_map {
        width: 100%;
        min-height: 436px;
        border-radius: 8px;
        overflow: hidden;
    }
    
    /* Скроллбар */
    .map-k_depth-dropdown::-webkit-scrollbar {
        width: 6px;
    }
    
    .map-k_depth-dropdown::-webkit-scrollbar-track {
        background: #f7fafc;
        border-radius: 3px;
    }
    
    .map-k_depth-dropdown::-webkit-scrollbar-thumb {
        background: #cbd5e0;
        border-radius: 3px;
    }
    
    .map-k_depth-dropdown::-webkit-scrollbar-thumb:hover {
        background: #a0aec0;
    }
    
    /* Адаптив */
    @media (max-width: 1024px) {
        .map-k_wells-container {
            grid-template-columns: 1fr;
        }
        
        .map-k_sidebar {
            order: 2;
        }
        
        .map-k_map-section {
            order: 1;
        }
    }
    
    @media (max-width: 768px) {
        .depth-section-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    
    @media (max-width: 480px) {
        .depth-section-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .map-k_depth-link {
            font-size: 12px;
            padding: 7px 8px;
        }
    }


  /* ── Из модуля: Баннер видео + форма связи - Бурение артезианских скважин (ID=75) ── */

/* ===================================
   FAQ Section - Используем вложенный CSS
   =================================== */
.faq-section {
    background-color: var(--up-bg-wd);
    border-radius: var(--up-border-radius-large);
    padding: 40px;
    box-shadow: var(--up-box-shadow-large);
}

/* ===================================
   FAQ List
   =================================== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ===================================
   FAQ Item с вложенными стилями
   =================================== */
.faq-item {
    background-color: var(--up-bg-wd);
    border: 1px solid var(--up-border-color);
    border-radius: var(--up-border-radius-medium);
    transition: all 0.3s ease;
    overflow: hidden;

    &:hover {
        border-color: var(--color-blue-2);
        box-shadow: 0 4px 6px -1px rgba(69, 125, 227, 0.1), 0 2px 4px -1px rgba(69, 125, 227, 0.06);
    }

    &[open] {
        background-color: var(--up-bg-main);
        border-color: var(--color-blue-2);
        box-shadow: 0 10px 15px -3px rgba(69, 125, 227, 0.1), 0 4px 6px -2px rgba(69, 125, 227, 0.05);

        .faq-question {
            background-color: var(--up-bg-gray);
            padding-bottom: 16px;
        }

        .faq-icon {
            transform: rotate(180deg);
        }
    }
}

/* ===================================
   FAQ Question (Summary) с вложенными стилями
   =================================== */
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: all 0.3s ease;

    /* Убираем стандартный маркер */
    &::-webkit-details-marker {
        display: none;
    }

    &::marker {
        display: none;
    }

    .faq-item:hover & {
        background-color: var(--up-bg-gray);
    }

    &:focus {
        outline: 2px solid var(--color-blue-2);
        outline-offset: 2px;
    }

    &:focus:not(:focus-visible) {
        outline: none;
    }

    &:focus-visible {
        outline: 2px solid var(--color-blue-2);
        outline-offset: 2px;
    }
}

.question-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--up-text-wd-color);
    flex: 1;
}

/* ===================================
   FAQ Icon
   =================================== */
.faq-icon {
    flex-shrink: 0;
    color: var(--color-blue-2);
    transition: transform 0.3s ease;
}

/* ===================================
   FAQ Answer
   =================================== */
.faq-answer {
    padding: 0 20px 20px;
    color: var(--up-text-color);
    animation: slideDown 0.3s ease-out;

    p {
        margin-bottom: 16px;
        line-height: 1.7;

        &:last-child {
            margin-bottom: 0;
        }
    }
}

/* Animation для раскрытия ответа */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Footer & Source
   =================================== */
.faq-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--up-border-color);
}

.source-text {
    font-size: 0.875rem;
    color: var(--up-text-light-color);
    text-align: center;
}

.source-link {
    color: var(--color-blue-2);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;

    &:hover {
        color: var(--color-blue-1);
        text-decoration: underline;
    }

    &:focus {
        outline: 2px solid var(--color-blue-2);
        outline-offset: 2px;
        border-radius: 4px;
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    .faq-section {
        padding: 24px 20px;
    }

    .faq-question {
        padding: 16px;
    }

    .question-text {
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 16px 16px;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 20px;
    }

    .question-text {
        font-size: 0.9375rem;
    }

    .faq-list {
        gap: 12px;
    }
}

/* ===================================
   Accessibility - Reduced Motion
   =================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===================================
   Dark Theme Support
   =================================== */
.dark-theme {
    .faq-item {
        &:hover {
            border-color: var(--color-blue-2);
        }

        &[open] {
            background-color: var(--up-bg-main);
        }
    }

    .question-text {
        color: var(--up-text-wd-color);
    }

    .faq-answer {
        color: var(--up-text-light-color);
    }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .faq-item {
        page-break-inside: avoid;

        &[open] .faq-answer {
            display: block !important;
        }
    }

    .faq-icon {
        display: none;
    }
}


  /* ── Из модуля: Меню дополнительное - бурение (ID=131) ── */

/* ========================
   LSI SERVICES BLOCK STYLES
   ======================== */

.lsi-services-block {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 1px solid #e3e8ef;
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.lsi-header {
  margin-bottom: 20px;
  text-align: center;
}

.lsi-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a2332;
  margin: 0 0 8px 0;
}

.lsi-subtitle {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

/* Основные ссылки (всегда видимые) */
.lsi-main-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.lsi-link {
  display: block;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #334155;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.lsi-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: #3b82f6;
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.lsi-link:hover {
  background: #f8fafc;
  border-color: #3b82f6;
  color: #1e40af;
  transform: translateX(4px);
}

.lsi-link:hover::before {
  transform: scaleY(1);
}

.lsi-featured {
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
  border-color: #3b82f6;
  font-weight: 600;
}

/* Кнопка раскрытия */
.lsi-expand-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: #3b82f6;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 0;
}

.lsi-expand-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.lsi-expand-btn[aria-expanded="true"] .btn-icon {
  transform: rotate(180deg);
}

.lsi-expand-btn[aria-expanded="true"] .btn-text::before {
  content: 'Скрыть ';
}

/* Раскрывающийся блок */
.lsi-extended {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, opacity 0.3s ease, margin-top 0.3s ease;
  opacity: 0;
  margin-top: 0;
}

.lsi-extended.active {
  max-height: 5000px; /* Увеличено для большего количества контента */
  opacity: 1;
  margin-top: 24px;
}

/* Категории */
.lsi-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
}

.lsi-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.category-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 16px 0;
  padding-left: 12px;
  border-left: 4px solid #3b82f6;
}

.category-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px;
}

/* Footer с призывом */
.lsi-footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px solid #e2e8f0;
  text-align: center;
}

.lsi-cta-text {
  font-size: 16px;
  color: #475569;
  margin: 0 0 16px 0;
}

.lsi-cta-button {
  display: inline-block;
  padding: 12px 32px;
  background: #10b981;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.lsi-cta-button:hover {
  background: #059669;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
  .lsi-services-block {
    padding: 16px;
  }

  .lsi-title {
    font-size: 20px;
  }

  .lsi-main-links {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .category-links {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .lsi-link {
    font-size: 14px;
    padding: 10px 14px;
  }

  .category-title {
    font-size: 16px;
  }
}

/* Анимация появления категорий */
.lsi-extended.active .lsi-category {
  animation: slideIn 0.4s ease forwards;
  opacity: 0;
}

.lsi-extended.active .lsi-category:nth-child(1) { animation-delay: 0.05s; }
.lsi-extended.active .lsi-category:nth-child(2) { animation-delay: 0.1s; }
.lsi-extended.active .lsi-category:nth-child(3) { animation-delay: 0.15s; }
.lsi-extended.active .lsi-category:nth-child(4) { animation-delay: 0.2s; }
.lsi-extended.active .lsi-category:nth-child(5) { animation-delay: 0.25s; }
.lsi-extended.active .lsi-category:nth-child(6) { animation-delay: 0.3s; }
.lsi-extended.active .lsi-category:nth-child(7) { animation-delay: 0.35s; }
.lsi-extended.active .lsi-category:nth-child(8) { animation-delay: 0.4s; }

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


  /* ── Из модуля: Типы кессонов для скважин (ID=155) ── */

.kessons_types {
    padding: 60px 0;
    background: #f8f9fa;
}

.kessons_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.kesson_card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px 25px;
    transition: all 0.3s ease;
}

.kesson_card:first-child {
    border-color: #4caf50;
}

.kesson_card:first-child:hover {
    border-color: #4caf50;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
}

.kesson_card:nth-child(2) {
    border-color: #ff9800;
}

.kesson_card:nth-child(2):hover {
    border-color: #ff9800;
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.2);
}

.kesson_card:nth-child(3) {
    border-color: #f44336;
}

.kesson_card:nth-child(3):hover {
    border-color: #f44336;
    box-shadow: 0 8px 25px rgba(244, 67, 54, 0.2);
}

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

.kesson_card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.kesson_card:first-child h3 {
    color: #4caf50;
    border-bottom-color: #4caf50;
}

.kesson_card:nth-child(2) h3 {
    color: #ff9800;
    border-bottom-color: #ff9800;
}

.kesson_card:nth-child(3) h3 {
    color: #f44336;
    border-bottom-color: #f44336;
}

.kesson_card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kesson_card li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.kesson_card li:last-child {
    border-bottom: none;
}

.kesson_card li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #e0e0e0;
}

.kesson_card:first-child li:before {
    background: #4caf50;
    content: '✓';
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.kesson_card:nth-child(2) li:before {
    background: #ff9800;
    content: '!';
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.kesson_card:nth-child(3) li:before {
    background: #f44336;
    content: '✕';
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .kessons_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .kesson_card {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .kessons_types {
        padding: 40px 0;
    }
    
    .kesson_card {
        padding: 20px 15px;
    }
    
    .kesson_card h3 {
        font-size: 18px;
    }
    
    .kesson_card li {
        font-size: 13px;
        padding: 8px 0 8px 25px;
    }
}


  /* ── Из модуля: Основной текст - Бурение скважин зимой (ID=149) ── */

/* Классическая таблица-смета */
.smeta_wrapper {
    max-width: 100%;
    margin: 0 auto 40px;
    padding: 0 15px;
}

.smeta_table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 2px solid #333;
    font-family: Arial, sans-serif;
    margin-bottom: 0;
}

/* Заголовок таблицы */
.smeta_header th {
    background: #e8e8e8;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    padding: 12px;
    text-align: center;
    border: 1px solid #333;
    text-transform: uppercase;
}

/* Шапка колонок */
.smeta_table thead tr:not(.smeta_header) th {
    background: #f5f5f5;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 8px;
    text-align: center;
    border: 1px solid #333;
}

.smeta_table thead th:nth-child(1) {
    width: 5%;
}

.smeta_table thead th:nth-child(2) {
    width: 50%;
    text-align: left;
    padding-left: 15px;
}

.smeta_table thead th:nth-child(3) {
    width: 10%;
}

.smeta_table thead th:nth-child(4) {
    width: 15%;
}

.smeta_table thead th:nth-child(5) {
    width: 20%;
}

/* Ячейки */
.smeta_table tbody td {
    padding: 10px 8px;
    border: 1px solid #999;
    font-size: 14px;
    color: #333;
}

.smeta_table tbody td:nth-child(1) {
    text-align: center;
    font-weight: 600;
    width: 5%;
}

.smeta_table tbody td:nth-child(2) {
    text-align: left;
    padding-left: 15px;
    width: 50%;
}

.smeta_table tbody td:nth-child(3) {
    text-align: center;
    width: 10%;
}

.smeta_table tbody td:nth-child(4) {
    text-align: right;
    padding-right: 15px;
    width: 15%;
}

.smeta_table tbody td:nth-child(5) {
    text-align: right;
    padding-right: 15px;
    font-weight: 600;
    width: 20%;
}

/* Чередование строк */
.smeta_table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

.smeta_table tbody tr:hover {
    background: #fffde7;
}

/* Итоговая строка */
.smeta_total td {
    background: #e8e8e8 !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    border-top: 2px solid #333 !important;
    padding: 12px 15px !important;
}

.smeta_total td:first-child {
    text-align: right !important;
}

.smeta_total td:last-child {
    color: #0B80E0;
    font-size: 18px !important;
}

/* Общий итог */
.smeta_grand_total {
    background: #0B80E0;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    border-radius: 5px;
    margin-top: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.smeta_grand_total span {
    font-size: 32px;
    margin-left: 15px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .smeta_table {
        font-size: 12px;
    }
    
    .smeta_table thead th,
    .smeta_table tbody td {
        padding: 8px 5px;
    }
    
    .smeta_grand_total {
        font-size: 18px;
        padding: 15px;
    }
    
    .smeta_grand_total span {
        font-size: 24px;
        display: block;
        margin-top: 10px;
        margin-left: 0;
    }
}


  /* ── Из модуля: Сравнение типов скважин - ПЕСОК (ID=104) ── */

  .bspb-seo-wrap {
    background: #fff;
    border-radius: 14px;
    padding: 36px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  }

  .bspb-seo-wrap h2 {
    font-size: 20px; font-weight: 900;
    color: #1a2744; line-height: 1.3;
    margin: 44px 0 14px;
    padding-left: 16px;
    position: relative;
  }
  .bspb-seo-wrap h2::before {
    content: '';
    position: absolute; left: 0; top: 4px; bottom: 4px;
    width: 4px; background: #e8650a; border-radius: 2px;
  }
  .bspb-seo-wrap h2:first-child { margin-top: 0; }

  .bspb-seo-wrap p {
    font-size: 15px; color: #555;
    line-height: 1.8; margin: 0 0 14px;
  }
  .bspb-seo-wrap p:last-child { margin-bottom: 0; }

  /* Фото-разделитель — одиночное */
  .bspb-seo-img {
    width: 100%; height: 220px;
    border-radius: 12px; overflow: hidden;
    margin: 28px 0;
    position: relative; display: block;
  }
  .bspb-seo-img-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 0.4s;
  }
  .bspb-seo-img:hover .bspb-seo-img-bg { transform: scale(1.03); }
  .bspb-seo-img-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 45%, rgba(26,39,68,0.75) 100%);
  }
  .bspb-seo-img-cap {
    position: absolute; bottom: 14px; left: 18px; z-index: 1;
    font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.8);
    text-transform: uppercase; letter-spacing: 1px;
  }

  /* Фото в две колонки */
  .bspb-seo-img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 28px 0;
  }
  .bspb-seo-img-row .bspb-seo-img {
    height: 170px; margin: 0;
  }

  .bspb-setup-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #edf0f7;
  }
  .bspb-setup-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 22px;
    border-bottom: 1px solid #edf0f7;
    background: #fff;
    border-left: 4px solid #e8650a;
    transition: background 0.2s;
  }
  .bspb-setup-card:last-child { border-bottom: none; }
  .bspb-setup-card:hover { background: #fffaf7; }
  .bspb-setup-card-body p {
    margin: 0 !important;
    font-size: 14px !important;
    color: #555 !important;
    line-height: 1.75 !important;
  }


  /* ── Из модуля: Цена 1 метр (ID=56) ── */

.sk9_steps-grid {
  padding: 60px 0;
  background: #f8f9fa;
}

.sk9_header {
  text-align: center;
  margin-bottom: 50px;
}

.sk9_title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.sk9_accent {
  color: #007bff;
}

.sk9_header p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

.sk9_row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.sk9_row:last-of-type {
  grid-template-columns: repeat(5, 1fr);
}

.sk9_step {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px 20px;
  transition: all 0.3s ease;
  text-align: left;
}

.sk9_step:hover {
  border-color: #007bff;
  box-shadow: 0 4px 15px rgba(0,123,255,0.15);
  transform: translateY(-3px);
}

.sk9_step-number {
  font-size: 72px;
  font-weight: 900;
  color: #007bff;
  line-height: 1;
  margin-bottom: 15px;
  display: block;
}

.sk9_step-text {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}

.sk9_step--cta {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.sk9_step--cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,123,255,0.3);
}

.sk9_cta-content {
  text-align: center;
  width: 100%;
}

.sk9_cta-button {
  background: #fff;
  color: #007bff;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-bottom: 10px;
}

.sk9_cta-button:hover {
  background: #f8f9fa;
  transform: scale(1.05);
}

.sk9_cta-text {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .sk9_row {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .sk9_row:last-of-type {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .sk9_row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sk9_row:last-of-type {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sk9_step-number {
    font-size: 56px;
  }
}

@media (max-width: 480px) {
  .sk9_row {
    grid-template-columns: 1fr;
  }
  
  .sk9_row:last-of-type {
    grid-template-columns: 1fr;
  }
}


  /* ── Из модуля: Меню для категорий - Бурение скважин (ID=165) ── */

.ocs-similar-categories-block {
    margin: 30px 0;
}
.ocs-cat-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    background: transparent;
    border: none;
    border-top: 1px solid #e0e0e0;
    cursor: pointer;
    gap: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
    transition: all 0.3s ease;
}
.ocs-cat-toggle:hover .ocs-cat-title,
.ocs-cat-toggle:hover .ocs-cat-arrow {
    color: #666;
}
.ocs-cat-title {
    font-size: 14px;
    color: #aaa;
    font-weight: 400;
}
.ocs-cat-arrow {
    font-size: 14px;
    color: #aaa;
    transition: transform 0.3s ease, color 0.3s ease;
}
.ocs-similar-categories-block.ocs-active .ocs-cat-arrow {
    transform: rotate(180deg);
}
.ocs-cat-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: 
#ffffff;
    border-radius: 4px;
    margin-top: 0;
}
.ocs-similar-categories-block.ocs-active .ocs-cat-content {
    max-height: 500px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-top: 10px;
}
.ocs-cat-grid {
    display: flex;
    gap: 15px;
    padding: 25px 30px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #ddd 
#f5f5f5;
}
.ocs-cat-grid::-webkit-scrollbar {
    height: 6px;
}
.ocs-cat-grid::-webkit-scrollbar-track {
    background: 
#f5f5f5;
}
.ocs-cat-grid::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}
.ocs-cat-item {
    flex: 0 0 auto;
    min-width: 200px;
    background: 
#f8f8f8;
    border-radius: 6px;
    padding: 15px 20px;
    text-align: center;
    text-decoration: none;
    color: #666;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid 
#e8e8e8;
}
.ocs-cat-item:hover {
    background: #fff;
    color: 
#0099ff;
    border-color: 
#0099ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 153, 255, 0.1);
    text-decoration: none;
}
@media (max-width: 768px) {
    .ocs-cat-grid {
        padding: 20px;
    }
    .ocs-cat-item {
        min-width: 160px;
        font-size: 13px;
    }
    .ocs-cat-toggle {
        padding-top: 12px;
        padding-bottom: 12px;
    }
}


  /* ── Из модуля: Документы и лицензирование и Внутренняя перелинковка (ID=114) ── */

.equipment-section {
    padding: 60px 0;
}

.equipment-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 40px 0;
}

.equipment-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.equipment-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.equipment-photo {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.equipment-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.equipment-photo:hover img {
    transform: scale(1.05);
}

.equipment-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

/* Адаптив для планшетов */
@media (max-width: 1024px) {
    .equipment-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .equipment-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Адаптив для мобильных */
@media (max-width: 640px) {
    .equipment-section {
        padding: 40px 0;
    }
    
    .equipment-section h2 {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .equipment-gallery {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .equipment-title {
        font-size: 14px;
    }
}


  /* ── Из модуля: Облако - кессоны (ID=164) ── */

.filter-cloud {
  margin: 20px 0;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}

.filter-cloud__visible,
.filter-cloud__hidden {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.filter-cloud a {
  display: inline-block;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s;
}

.filter-cloud a:hover {
  border-color: #0066cc;
  color: #0066cc;
  background: #f0f7ff;
}

.filter-cloud__toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  background: none;
  border: none;
  color: #0066cc;
  font-size: 13px;
  cursor: pointer;
  transition: color 0.2s;
}

.filter-cloud__toggle:hover {
  color: #004499;
}

.toggle-icon {
  transition: transform 0.3s;
}

.filter-cloud__toggle.active .toggle-icon {
  transform: rotate(180deg);
}

.filter-cloud__toggle.active .toggle-text::after {
  content: ' варианты';
}

.filter-cloud__toggle .toggle-text::before {
  content: 'Показать все';
}

.filter-cloud__toggle.active .toggle-text::before {
  content: 'Скрыть';
}


  /* ── Из модуля: 2222222222222222 (ID=137) ── */

.services-list {
  display: flex;
  gap: 15px;
  max-width: 100%;
  overflow-x: auto;
  padding: 10px 0;
}

.service-card {
  flex: 0 0 calc(16.666% - 12.5px);
  min-width: 180px;
  padding: 20px 15px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-3px);
  border-color: #007bff;
}

.service-card h4 {
  margin: 0 0 10px 0;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
  min-height: 40px;
}

.service-card p {
  margin: 0 0 15px 0;
  font-size: 12px;
  color: #666;
  line-height: 1.4;
  min-height: 50px;
}

.service-price {
  font-size: 16px;
  font-weight: 700;
  color: #007bff;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

@media (max-width: 1200px) {
  .service-card {
    flex: 0 0 calc(33.333% - 10px);
  }
}

@media (max-width: 768px) {
  .service-card {
    flex: 0 0 calc(50% - 7.5px);
  }
}

@media (max-width: 480px) {
  .service-card {
    flex: 0 0 100%;
  }
}


/* ═══════════════════════════════════════
   SEO-текст с фоновой картинкой (адаптер, кессон)
   ═══════════════════════════════════════ */
.well-adapter-bg {
    position: relative;
    background-image: url('/image/catalog/ad-foto1.jpg');
    background-repeat: no-repeat;
    background-position: top 0 right 0;
    background-size: 380px auto;
    padding-right: 400px;
    clear: both;
}

@media (max-width: 1100px) {
    .well-adapter-bg {
        background-size: 280px auto;
        padding-right: 300px;
    }
}
@media (max-width: 768px) {
    .well-adapter-bg {
        background-image: none;
        padding-right: 0;
    }
}


/* ═══════════════════════════════════════
   ГЛОБАЛЬНАЯ ИЗОЛЯЦИЯ МОДУЛЕЙ
   ═══════════════════════════════════════ */
#content > div { clear: both; overflow: hidden; float: none; }
#content > div + div { margin-top: 20px; }
#content .p-content { clear: both; overflow: hidden; }
#content .p-content + div { clear: both; }
.bspb-seo-wrap, .chm-content, .products.tiles, .kessons_grid, .comparison-table-wrap { overflow: hidden; clear: both; }

/* ═══════════════════════════════════════
   АВТОСТИЛЬ: типографика SEO-текстов
   ═══════════════════════════════════════ */
#content .p-content, .bspb-seo-wrap { font-size: 15px; line-height: 1.75; color: #333; }
#content .p-content h1, .bspb-seo-wrap h1 { font-size: 28px; font-weight: 800; color: #1a2744; margin: 0 0 20px; line-height: 1.3; }
#content .p-content h2, .bspb-seo-wrap h2 { font-size: 22px; font-weight: 700; color: #1a2744; margin: 35px 0 15px; padding-left: 16px; position: relative; line-height: 1.35; }
#content .p-content h2::before, .bspb-seo-wrap h2::before { content: ''; position: absolute; left: 0; top: 4px; bottom: 4px; width: 4px; background: #e8650a; border-radius: 2px; }
#content .p-content h3, .bspb-seo-wrap h3 { font-size: 18px; font-weight: 700; color: #1a2744; margin: 25px 0 10px; line-height: 1.35; }
#content .p-content p, .bspb-seo-wrap p { margin: 0 0 16px; }
#content .p-content ul, #content .p-content ol, .bspb-seo-wrap ul, .bspb-seo-wrap ol { margin: 0 0 20px; padding-left: 24px; }
#content .p-content li, .bspb-seo-wrap li { margin-bottom: 8px; line-height: 1.6; }
#content .p-content strong, .bspb-seo-wrap strong { color: #1a2744; font-weight: 700; }
#content .p-content table, .bspb-seo-wrap table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
#content .p-content thead th, .bspb-seo-wrap thead th { background: #1a2744; color: #fff; font-weight: 700; padding: 14px 18px; text-align: left; }
#content .p-content tbody td, .bspb-seo-wrap tbody td { padding: 12px 18px; border-bottom: 1px solid #edf0f7; }
#content .p-content tbody tr:nth-child(even), .bspb-seo-wrap tbody tr:nth-child(even) { background: #f7f9fc; }
#content .p-content tbody tr:hover, .bspb-seo-wrap tbody tr:hover { background: #fff3ec; }
#content .p-content img, .bspb-seo-wrap img { max-width: 100%; height: auto; border-radius: 10px; margin: 15px 0; }
#content .p-content a, .bspb-seo-wrap a { color: #e8650a; text-decoration: none; border-bottom: 1px solid rgba(232,101,10,0.3); transition: border-color 0.2s; }
#content .p-content a:hover, .bspb-seo-wrap a:hover { border-bottom-color: #e8650a; }

@media (max-width: 768px) {
    #content .p-content h1 { font-size: 24px; }
    #content .p-content h2, .bspb-seo-wrap h2 { font-size: 19px; }
    #content .p-content table, .bspb-seo-wrap table { font-size: 13px; }
    #content .p-content thead th, .bspb-seo-wrap thead th { padding: 10px 12px; }
    #content .p-content tbody td, .bspb-seo-wrap tbody td { padding: 10px 12px; }
}
/* =========================================================================
   МЕГА-ШАБЛОН: облако населённых пунктов на странице района.
   Подключение: вставить в конец catalog/view/theme/vdgstore/stylesheet/new_css.css
   (либо импортом отдельного файла).
   ========================================================================= */

.rd-settlements {
    margin: 40px 0;
    padding: 30px;
    background: var(--up-bg-wd, #f8fafc);
    border: 1px solid var(--up-border-color, #e5e7eb);
    border-radius: 20px;
}
.rd-settlements h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--up-text-wd-color, #1a2744);
}
.rd-settlements__intro {
    font-size: 14px;
    color: var(--up-text-color, #64748b);
    margin: 0 0 20px;
    line-height: 1.5;
}

/* Облако плашек */
.rd-settlements__cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Базовая плашка (medium priority) */
.rd-settlements__chip {
    display: inline-block;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid #dbeafe;
    border-radius: 20px;
    color: #1a2744;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.2;
    transition: all 0.15s ease;
    white-space: nowrap;
}
.rd-settlements__chip:hover {
    background: #1a2744;
    border-color: #1a2744;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(26, 39, 68, 0.15);
}

/* Крупные НП (priority=high) — выделены цветом акцента */
.rd-settlements__chip--high {
    background: #e8650a;
    border-color: #e8650a;
    color: #fff;
    font-weight: 600;
}
.rd-settlements__chip--high:hover {
    background: #cf5608;
    border-color: #cf5608;
    color: #fff;
    box-shadow: 0 4px 10px rgba(232, 101, 10, 0.25);
}

/* Мелкие НП (priority=low) — компактнее */
.rd-settlements__chip--low {
    padding: 6px 12px;
    font-size: 13px;
    color: #64748b;
    border-color: #e5e7eb;
}
.rd-settlements__chip--low:hover {
    background: #64748b;
    border-color: #64748b;
    color: #fff;
}

/* Мобилка */
@media (max-width: 640px) {
    .rd-settlements { padding: 20px; margin: 20px 0; }
    .rd-settlements h2 { font-size: 18px; }
    .rd-settlements__chip { padding: 6px 10px; font-size: 13px; }
    .rd-settlements__cloud { gap: 6px; }
}

/* Плавный скролл при клике на #top */
html { scroll-behavior: smooth; }

