/*NOTE: This file is intended for programmers. Aspro technical support is not advised to work with him.*/

/* Examples (uncomment to use):*/

/* Expand site width */
/* body .wrapper { max-width: 1400px !important;  } */

/* Set site background image */
/* body {  background: url(image_source) top no-repeat; }

/* Hide compare button */
/* a.compare_item { display: none !important;  }*/

.faq-card button.accordion {
    width:100%;
    padding:7px 10px;
    text-align: left;
    border:1px solid #ccc;
    box-shadow: none!important;
    display: flex;
    justify-content: space-between;
    margin-bottom:10px;
    transition: .3s all;
}

.faq-card button.accordion:hover {
    background: #f2722c;
    color: #fff;
}

.faq-card button.accordion:hover::after {
    color: #fff;
}

.faq-card button.accordion::after {
    content:"+";
    font-weight: bold;
    cursor: pointer;
    font-size: 20px;
    color:#888;
    transition: .3s all;
}

.faq-card {
    transition: .3s all;
}

.faq-card .panel {
    height:0;
    overflow: hidden;
    transition: .3s all;
    padding:0 10px;
    opacity:0;
    visibility: hidden;
}

.faq-card._active .panel {
    height:fit-content;
    opacity:1;
    visibility: visible;
}

.faq-card._active button.accordion::after {
    content:"-";
}

.reviews-list, .brands-list {
    margin-bottom: 50px;
}

.brands-list__image-wrapper {
    max-width: unset;
    min-width: unset;
    width:90%;
    height: 100%;
}

.module-pagination  {
    margin-bottom: 50px;
}

.delivery_wrap {
    margin-top:20px;
}

.delivery_wrap p {
    font-size: calc(1rem - 2px);
    line-height: calc(1em + 6px);
    margin:0;
}

.reviews-list--item {
    display: flex;
    flex-direction: column;
    padding:24px;
    -webkit-box-shadow: 0px 0px 0px 1px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 0px 0px 1px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 0px 0px 1px rgba(34, 60, 80, 0.2);
    border-radius: 12px;
    margin-bottom:24px;
}

.reviews-list--item__header {
    display: flex;
    justify-content: space-between;
}
/* ============================================
   Убираем ссылку услуги из верхнего меню
   ============================================ */

.header-menu__wrapper .header-menu__item:nth-child(8) > a {
  pointer-events: none;
  cursor: default;
}

.header-menu__wrapper .header-menu__item:nth-child(7) .header-menu__dropdown-item:last-child > a {
  pointer-events: none;
  cursor: default;
}

/* ============================================
   СТИЛИ ДЛЯ КОНТЕНТА СТАТЕЙ
   ============================================ */

/* ============================================
   1. ОГЛАВЛЕНИЕ (TABLE OF CONTENTS)
   ============================================ */

.toc-container {
    width: 100%;
    max-width: 1464px;
    margin: 40px auto;
    padding: 35px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5f1 100%);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: none;
    border-radius: 12px;
    border-left: 4px solid #1DA078;
    position: relative;
    overflow: hidden;
}

.toc-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(29, 160, 120, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.toc-container h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(29, 160, 120, 0.3);
    position: relative;
    z-index: 1;
}

.toc {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    counter-reset: toc-counter;
    position: relative;
    z-index: 1;
}

.toc-item {
    margin: 12px 0;
    counter-increment: toc-counter;
    position: relative;
    padding-left: 35px;
}

.toc-item::before {
    content: counter(toc-counter) ".";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #1DA078;
    font-size: 1.1rem;
    background-color: transparent !important;
    border-radius: 0 !important;
    display: inline !important;
    height: auto !important;
    margin-right: 0 !important;
    top: 0 !important;
    width: auto !important;
}

.toc-link {
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.6;
    display: inline-block;
    position: relative;
}

.toc-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1DA078 0%, #f2722c 100%);
    transition: width 0.3s ease;
}

.toc-link:hover {
    color: #1DA078;
    transform: translateX(5px);
}

.toc-link:hover::after {
    width: 100%;
}

.toc-subitem {
    list-style-type: none;
    margin: 8px 0 8px 20px;
    padding-left: 0;
    counter-reset: none;
}

.toc-subitem li {
    margin: 8px 0;
    padding-left: 25px;
    position: relative;
    counter-increment: none;
}

.toc-subitem li::before {
    content: '→' !important;
    position: absolute;
    left: 0;
    color: #1DA078;
    font-weight: 600;
    background-color: transparent !important;
    border-radius: 0 !important;
    display: inline !important;
    height: auto !important;
    margin-right: 0 !important;
    top: 0 !important;
    width: auto !important;
}

.toc-subitem .toc-link {
    font-size: 0.98rem;
    color: #555;
}

/* ============================================
   2. ВИДЕО КОНТЕЙНЕР
   ============================================ */

.wrapper-video-container {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background: #000;
    transition: all 0.3s ease;
}

.video-container:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    transform: translateY(-3px);
}

.video-container iframe,
.video-container video,
.video-container embed,
.video-container object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Нативное видео */
video {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.video-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    padding: 0 15px;
    box-sizing: border-box;
    text-align: center;
}

.video-wrapper video {
    margin: 0 auto 12px;
}

.video-wrapper figcaption,
.video-caption {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    text-align: center;
}

/* ============================================
   3. INFO-BOXES (ПЛЮСЫ, МИНУСЫ, СОВЕТЫ)
   ============================================ */

.info-box {
    margin: 30px 0;
    padding: 25px 30px 25px 70px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    line-height: 1.7;
}

.info-box::before {
    position: absolute;
    left: 25px;
    top: 25px;
    font-size: 1.8rem;
    line-height: 1;
}

.info-box-title {
    font-weight: 700;
    font-size: 1.15rem;
    margin: 0 0 12px 0;
    display: block;
}

.info-box p {
    margin: 0 0 10px 0;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.info-box ul,
.info-box ol {
    margin: 10px 0;
    padding-left: 20px;
}

.info-box li {
    margin-bottom: 8px;
}

.info-box--pros {
    background: linear-gradient(135deg, #e6f9f1 0%, #d4f5e9 100%);
    border-left: 5px solid #1DA078;
}

.info-box--pros::before {
    content: '✓';
    color: #1DA078;
    font-weight: 700;
}

.info-box--pros .info-box-title {
    color: #158a5f;
}

.info-box--cons {
    background: linear-gradient(135deg, #fef2f2 0%, #fde8e8 100%);
    border-left: 5px solid #dc3545;
}

.info-box--cons::before {
    content: '✕';
    color: #dc3545;
    font-weight: 700;
}

.info-box--cons .info-box-title {
    color: #c82333;
}

.info-box--tip {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-left: 5px solid #f59e0b;
}

.info-box--tip::before {
    content: '💡';
}

.info-box--tip .info-box-title {
    color: #d97706;
}

.info-box--warning {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border-left: 5px solid #f2722c;
}

.info-box--warning::before {
    content: '⚠';
    color: #f2722c;
}

.info-box--warning .info-box-title {
    color: #ea580c;
}

.info-box--info {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 5px solid #3b82f6;
}

.info-box--info::before {
    content: 'ℹ';
    color: #3b82f6;
    font-weight: 700;
}

.info-box--info .info-box-title {
    color: #2563eb;
}

/* ============================================
   4. КАРТОЧКИ (CARDS)
   ============================================ */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1DA078 0%, #f2722c 100%);
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e8f5f1 0%, #d4f0e7 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
}

.card-text {
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.card-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(29, 160, 120, 0.1);
    line-height: 1;
}

.cards-compare {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.card--pros {
    border-top: 4px solid #1DA078;
}

.card--pros::before {
    background: #1DA078;
}

.card--cons {
    border-top: 4px solid #dc3545;
}

.card--cons::before {
    background: #dc3545;
}

/* ============================================
   5. CTA КНОПКИ
   ============================================ */

.cta-container {
    margin: 50px 0;
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5f1 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(29, 160, 120, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-container::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(242, 114, 44, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin: 0 0 30px 0;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #1DA078 0%, #158a5f 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(29, 160, 120, 0.35);
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(29, 160, 120, 0.45);
    background: linear-gradient(135deg, #22b88a 0%, #1DA078 100%);
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-button--secondary {
    background: transparent;
    color: #1DA078;
    border: 2px solid #1DA078;
    box-shadow: none;
}

.cta-button--secondary:hover {
    background: #1DA078;
    color: #fff;
    box-shadow: 0 8px 35px rgba(29, 160, 120, 0.35);
}

.cta-button--orange {
    background: linear-gradient(135deg, #f2722c 0%, #e85d04 100%);
    box-shadow: 0 5px 25px rgba(242, 114, 44, 0.35);
}

.cta-button--orange:hover {
    background: linear-gradient(135deg, #ff8243 0%, #f2722c 100%);
    box-shadow: 0 8px 35px rgba(242, 114, 44, 0.45);
}

.cta-buttons-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ============================================
   6. СТИЛИ ДЛЯ КОНТЕНТА СТАТЕЙ В .detail-block.ordered-block.desc
   ============================================ */

/* Цитаты */
.detail-block.ordered-block.desc blockquote {
    background: linear-gradient(135deg, #e8f5f1 0%, #f8f9fa 100%);
    border-left: 4px solid #1DA078;
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 8px;
    font-style: italic;
    color: #333;
    line-height: 1.7;
    font-size: 1.05rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.detail-block.ordered-block.desc blockquote::before,
.detail-block.ordered-block.desc blockquote:before {
    content: none !important;
    display: none !important;
    position: static !important;
    background: none !important;
    font-size: 0 !important;
    color: transparent !important;
    width: 0 !important;
    height: 0 !important;
}

.detail-block.ordered-block.desc blockquote::after,
.detail-block.ordered-block.desc blockquote:after {
    content: none !important;
    display: none !important;
    position: static !important;
    background: none !important;
    font-size: 0 !important;
    color: transparent !important;
    width: 0 !important;
    height: 0 !important;
}

.detail-block.ordered-block.desc blockquote p {
    margin: 0;
}

.detail-block.ordered-block.desc blockquote strong {
    color: #1DA078;
    font-weight: 600;
}

.detail-block.ordered-block.desc blockquote:has(span[style*="color: red"]) {
    background: linear-gradient(135deg, #fff9f0 0%, #fff3ed 100%);
    border-left-color: #f2722c;
}

/* Таблицы */
.detail-block.ordered-block.desc table {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.detail-block.ordered-block.desc table caption {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    padding: 20px;
    text-align: left;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-bottom: 2px solid #1DA078;
}

.detail-block.ordered-block.desc table th,
.detail-block.ordered-block.desc table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.detail-block.ordered-block.desc table thead th,
.detail-block.ordered-block.desc table tbody tr th {
    background: linear-gradient(135deg, #1DA078 0%, #158a5f 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-block.ordered-block.desc table tbody tr:nth-child(even) {
    background-color: #f8fafb;
}

.detail-block.ordered-block.desc table tbody tr:nth-child(odd) {
    background-color: #fff;
}

.detail-block.ordered-block.desc table tbody tr {
    transition: all 0.2s ease;
}

.detail-block.ordered-block.desc table tbody tr:hover {
    background-color: #e8f5f1;
    transform: scale(1.01);
}

.detail-block.ordered-block.desc table tbody tr:last-child th,
.detail-block.ordered-block.desc table tbody tr:last-child td {
    border-bottom: none;
}

.detail-block.ordered-block.desc table tbody td {
    color: #333;
    font-size: 1rem;
}

.detail-block.ordered-block.desc table tbody th {
    background: #f8f9fa;
    color: #333;
    font-weight: 600;
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 40px 0;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.table-wrapper table {
    margin: 0;
    box-shadow: none;
    min-width: 600px;
}

/* Ненумерованные списки */
.detail-block.ordered-block.desc ul {
    margin: 20px 0;
    padding-left: 25px;
    list-style-type: disc;
}

.detail-block.ordered-block.desc ul > li::before {
    content: none !important;
    display: none !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    height: 0 !important;
    margin-right: 0 !important;
    position: static !important;
    top: auto !important;
    width: 0 !important;
}

.detail-block.ordered-block.desc ul li {
    margin-bottom: 12px;
    padding-left: 10px;
    line-height: 1.7;
    color: #333;
}

.detail-block.ordered-block.desc ul li::marker {
    color: #1DA078;
    font-size: 1.2em;
}

/* Нумерованные списки */
.detail-block.ordered-block.desc ol {
    margin: 20px 0;
    padding-left: 25px;
    list-style-type: decimal;
}

.detail-block.ordered-block.desc ol > li::before {
    content: none !important;
    display: none !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    height: 0 !important;
    margin-right: 0 !important;
    position: static !important;
    top: auto !important;
    width: 0 !important;
}

.detail-block.ordered-block.desc ol li {
    margin-bottom: 12px;
    padding-left: 10px;
    line-height: 1.7;
    color: #333;
}

.detail-block.ordered-block.desc ol li::marker {
    color: #1DA078;
    font-weight: 700;
    font-size: 1.05em;
}

.detail-block.ordered-block.desc li ul,
.detail-block.ordered-block.desc li ol {
    margin: 10px 0;
    padding-left: 30px;
}

.detail-block.ordered-block.desc li ul {
    list-style-type: circle;
}

.detail-block.ordered-block.desc li ul > li::before {
    content: none !important;
    display: none !important;
    background-color: transparent !important;
}

.detail-block.ordered-block.desc li ul li::marker {
    color: #f2722c;
    font-size: 1em;
}

.detail-block.ordered-block.desc li ol {
    list-style-type: lower-alpha;
}

.detail-block.ordered-block.desc li ol > li::before {
    content: none !important;
    display: none !important;
    background-color: transparent !important;
}

.detail-block.ordered-block.desc li ol li::marker {
    color: #f2722c;
    font-weight: 600;
}

/* Параграфы и текст */
.detail-block.ordered-block.desc p {
    margin: 20px 0;
    line-height: 1.8;
    color: #333;
    font-size: 1.05rem;
}

.detail-block.ordered-block.desc p strong {
    font-weight: 600;
    color: #1DA078;
}

.detail-block.ordered-block.desc p a {
    color: #1DA078;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.detail-block.ordered-block.desc p a:hover {
    color: #158a5f;
    border-bottom-color: #158a5f;
}

/* ============================================
   7. ИЗОБРАЖЕНИЯ
   ============================================ */

.detail-block.ordered-block.desc img,
article img,
.content img,
.article-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.detail-block.ordered-block.desc img:hover,
article img:hover,
.content img:hover,
.article-content img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
}

.detail-block.ordered-block.desc p[style*="text-align: center"] img,
.detail-block.ordered-block.desc img[align="middle"],
.detail-block.ordered-block.desc .text-center img,
.text-center img {
    margin-left: auto;
    margin-right: auto;
}

.image-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    padding: 0 15px;
    box-sizing: border-box;
    text-align: center;
}

.image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.image-wrapper img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
}

.image-wrapper figcaption,
.image-caption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 12px;
    font-style: italic;
    text-align: center;
    line-height: 1.5;
}

figure {
    margin: 40px auto;
    padding: 0 15px;
    max-width: 900px;
    box-sizing: border-box;
    text-align: center;
}

figure img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

figure img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
}

figure figcaption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 12px;
    font-style: italic;
    line-height: 1.5;
}

figure video {
    margin: 0 auto;
}

/* ============================================
   8. ТЕХНИЧЕСКИЕ ХАРАКТЕРИСТИКИ (SPECS)
   ============================================ */

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.spec-item {
    text-align: center;
    padding: 25px 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.spec-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.spec-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #1DA078;
    line-height: 1.2;
    margin-bottom: 8px;
}

.spec-label {
    display: block;
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

/* ============================================
   9. РАЗДЕЛИТЕЛИ И СЕКЦИИ
   ============================================ */

.section-divider {
    height: 4px;
    background: linear-gradient(90deg, #1DA078 0%, #f2722c 50%, #1DA078 100%);
    border: none;
    border-radius: 2px;
    margin: 60px 0;
    opacity: 0.3;
}

.content-section {
    margin: 50px 0;
}

.section-header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.section-header h2 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.section-header p {
    color: #666;
    margin: 10px 0 0 0;
}

/* ============================================
   10. СРАВНИТЕЛЬНЫЙ БЛОК
   ============================================ */

.comparison-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 40px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.comparison-side {
    padding: 30px;
}

.comparison-side--pros {
    background: linear-gradient(135deg, #e6f9f1 0%, #d4f5e9 100%);
}

.comparison-side--cons {
    background: linear-gradient(135deg, #fef2f2 0%, #fde8e8 100%);
}

.comparison-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-side--pros .comparison-title {
    color: #158a5f;
}

.comparison-side--cons .comparison-title {
    color: #c82333;
}

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

.comparison-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-side--pros .comparison-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1DA078;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-side--cons .comparison-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: 700;
    font-size: 1.1rem;
}

/* ============================================
   11. ЗАГЛУШКИ ДЛЯ ИЗОБРАЖЕНИЙ И ВИДЕО
   ============================================ */

/* Базовые стили для заглушек медиа */
.media-placeholder {
    width: 100%;
    margin: 30px auto;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 3px dashed;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.media-placeholder:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.media-placeholder__icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    line-height: 1;
    opacity: 0.9;
}

.media-placeholder__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.media-placeholder__desc {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 80%;
    opacity: 0.9;
}

.media-placeholder__badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Заглушка для изображений */
.image-placeholder {
    max-width: 900px;
    min-height: 280px;
    padding: 40px 30px;
    background: linear-gradient(135deg, #e8f5f1 0%, #d4f0e7 50%, #c5eadb 100%);
    border-color: #1DA078;
}

.image-placeholder__icon {
    color: #1DA078;
}

.image-placeholder__title {
    color: #158a5f;
}

.image-placeholder__desc {
    color: #1a6b52;
}

.image-placeholder__badge {
    background: #1DA078;
    color: #fff;
}

.image-placeholder--wide {
    min-height: 200px;
    aspect-ratio: 21/9;
}

.image-placeholder--square {
    max-width: 500px;
    aspect-ratio: 1/1;
    min-height: auto;
}

.image-placeholder--portrait {
    max-width: 400px;
    aspect-ratio: 3/4;
    min-height: auto;
}

.image-placeholder--small {
    max-width: 350px;
    min-height: 200px;
}

.image-placeholder--full {
    max-width: 100%;
}

/* Заглушка для видео */
.video-placeholder {
    max-width: 900px;
    min-height: 320px;
    padding: 50px 30px;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 50%, #fed7aa 100%);
    border-color: #f2722c;
    aspect-ratio: 16/9;
}

.video-placeholder__icon {
    color: #f2722c;
    font-size: 4rem;
}

.video-placeholder__title {
    color: #ea580c;
}

.video-placeholder__desc {
    color: #c2410c;
}

.video-placeholder__badge {
    background: #f2722c;
    color: #fff;
}

.video-placeholder__play {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f2722c 0%, #e85d04 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 25px rgba(242, 114, 44, 0.4);
    position: relative;
    flex-shrink: 0;
}

.video-placeholder__play::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #fff;
    margin-left: 5px;
}

.video-placeholder__play::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(242, 114, 44, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

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

@media (max-width: 992px) {
    .toc-container {
        padding: 30px 25px;
    }
    
    .toc-container h2 {
        font-size: 1.5rem;
    }
    
    .detail-block.ordered-block.desc table {
        font-size: 0.95rem;
    }
    
    .detail-block.ordered-block.desc table th,
    .detail-block.ordered-block.desc table td {
        padding: 14px 16px;
    }
    
    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .cta-container {
        padding: 40px 25px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .comparison-block {
        grid-template-columns: 1fr;
    }
    
    .wrapper-video-container,
    .video-wrapper,
    .image-wrapper,
    figure {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .video-placeholder,
    .image-placeholder {
        max-width: calc(100% - 40px);
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .video-container {
        border-radius: 10px;
    }
    
    .video-container iframe,
    .video-container video {
        border-radius: 10px;
    }
}

@media (max-width: 768px) {
    .toc-container {
        max-width: 100%;
        padding: 25px 20px;
        margin: 30px auto;
    }
    
    .toc-container h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .toc-link {
        font-size: 0.95rem;
    }
    
    .wrapper-video-container {
        margin: 30px auto;
        padding: 0 15px;
    }
    
    .video-container {
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .video-container:hover {
        transform: none;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .video-container iframe,
    .video-container video {
        border-radius: 10px;
    }
    
    video {
        margin: 25px auto;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .video-wrapper {
        margin: 30px auto;
        padding: 0 15px;
    }
    
    .detail-block.ordered-block.desc blockquote {
        padding: 20px 20px 20px 25px;
        font-size: 1rem;
    }
    
    .detail-block.ordered-block.desc table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .detail-block.ordered-block.desc table caption {
        font-size: 1.1rem;
        padding: 15px;
    }
    
    .detail-block.ordered-block.desc p {
        font-size: 1rem;
    }
    
    .detail-block.ordered-block.desc ul li,
    .detail-block.ordered-block.desc ol li {
        margin-bottom: 10px;
    }
    
    .detail-block.ordered-block.desc img,
    article img,
    .content img,
    .article-content img {
        margin: 25px auto;
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    
    .detail-block.ordered-block.desc img:hover,
    article img:hover,
    .content img:hover,
    .article-content img:hover {
        transform: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    
    figure,
    .image-wrapper {
        margin: 30px auto;
        padding: 0 15px;
    }
    
    figure img,
    .image-wrapper img {
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    
    figure img:hover,
    .image-wrapper img:hover {
        transform: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    
    figure figcaption,
    .image-wrapper figcaption,
    .image-caption,
    .video-caption {
        font-size: 0.85rem;
        margin-top: 10px;
    }
    
    .info-box {
        padding: 20px 20px 20px 55px;
    }
    
    .info-box::before {
        left: 18px;
        font-size: 1.5rem;
    }
    
    .info-box-title {
        font-size: 1.05rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cards-compare {
        grid-template-columns: 1fr;
    }
    
    .card {
        padding: 25px;
    }
    
    .card-number {
        font-size: 2.5rem;
    }
    
    .cta-container {
        padding: 35px 20px;
    }
    
    .cta-title {
        font-size: 1.4rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .cta-buttons-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
        gap: 15px;
    }
    
    .spec-value {
        font-size: 1.6rem;
    }
    
    .spec-label {
        font-size: 0.85rem;
    }
    
    .comparison-side {
        padding: 25px 20px;
    }
    
    .comparison-title {
        font-size: 1.15rem;
    }
    
    /* Заглушки на мобильных */
    .media-placeholder {
        min-height: 220px;
        padding: 30px 20px;
        margin: 25px 15px;
        max-width: calc(100% - 30px);
    }
    
    .media-placeholder:hover {
        transform: none;
        box-shadow: none;
    }
    
    .media-placeholder__icon {
        font-size: 2.5rem;
    }
    
    .media-placeholder__title {
        font-size: 0.95rem;
    }
    
    .media-placeholder__desc {
        font-size: 0.9rem;
        max-width: 90%;
    }
    
    .image-placeholder,
    .video-placeholder {
        min-height: 220px;
        padding: 30px 20px;
        margin: 25px 15px;
        max-width: calc(100% - 30px);
        border-radius: 10px;
    }
    
    .image-placeholder:hover,
    .video-placeholder:hover {
        transform: none;
        box-shadow: none;
    }
    
    .image-placeholder__icon,
    .video-placeholder__icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    
    .image-placeholder__title,
    .video-placeholder__title {
        font-size: 0.95rem;
    }
    
    .image-placeholder__desc,
    .video-placeholder__desc {
        font-size: 0.9rem;
        max-width: 90%;
    }
    
    .video-placeholder {
        min-height: 250px;
    }
    
    .video-placeholder__play {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .video-placeholder__play::before {
        border-width: 12px 0 12px 20px;
        margin-left: 4px;
    }
    
    .image-placeholder--square,
    .image-placeholder--portrait,
    .image-placeholder--small {
        max-width: calc(100% - 30px);
    }
}

@media (max-width: 480px) {
    .toc-container {
        padding: 20px 15px;
        margin: 20px auto;
    }
    
    .toc-item {
        padding-left: 30px;
    }
    
    .toc-link {
        font-size: 0.9rem;
    }
    
    .wrapper-video-container {
        margin: 20px auto;
        padding: 0 10px;
    }
    
    .video-container {
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .video-container iframe,
    .video-container video {
        border-radius: 8px;
    }
    
    video {
        margin: 20px auto;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .video-wrapper {
        margin: 20px auto;
        padding: 0 10px;
    }
    
    .detail-block.ordered-block.desc blockquote {
        padding: 15px 15px 15px 20px;
        font-size: 0.95rem;
    }
    
    .detail-block.ordered-block.desc table th,
    .detail-block.ordered-block.desc table td {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .detail-block.ordered-block.desc ul,
    .detail-block.ordered-block.desc ol {
        padding-left: 20px;
    }
    
    .detail-block.ordered-block.desc ul li,
    .detail-block.ordered-block.desc ol li {
        padding-left: 8px;
    }
    
    .detail-block.ordered-block.desc img,
    article img,
    .content img,
    .article-content img {
        margin: 20px auto;
        border-radius: 8px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    }
    
    figure,
    .image-wrapper {
        margin: 20px auto;
        padding: 0 10px;
    }
    
    figure img,
    .image-wrapper img {
        border-radius: 8px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    }
    
    figure figcaption,
    .image-wrapper figcaption,
    .image-caption,
    .video-caption {
        font-size: 0.8rem;
        margin-top: 8px;
    }
    
    .info-box {
        padding: 18px 15px 18px 50px;
        margin: 20px 0;
    }
    
    .info-box::before {
        left: 15px;
        top: 18px;
        font-size: 1.3rem;
    }
    
    .card {
        padding: 20px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .cta-title {
        font-size: 1.25rem;
    }
    
    .cta-button {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    .specs-grid {
        grid-template-columns: 1fr 1fr;
        padding: 15px;
        gap: 12px;
    }
    
    .spec-item {
        padding: 20px 10px;
    }
    
    .spec-value {
        font-size: 1.4rem;
    }
    
    .spec-label {
        font-size: 0.8rem;
    }
    
    /* Заглушки на маленьких экранах */
    .media-placeholder {
        min-height: 180px;
        padding: 25px 15px;
        border-width: 2px;
    }
    
    .media-placeholder__icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .media-placeholder__title {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
    
    .media-placeholder__desc {
        font-size: 0.85rem;
    }
    
    .media-placeholder__badge {
        top: 10px;
        right: 10px;
        padding: 4px 10px;
        font-size: 0.7rem;
    }
    
    .image-placeholder,
    .video-placeholder {
        min-height: 180px;
        padding: 25px 15px;
        margin: 20px 10px;
        max-width: calc(100% - 20px);
        border-width: 2px;
        border-radius: 8px;
    }
    
    .image-placeholder__icon,
    .video-placeholder__icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .image-placeholder__title,
    .video-placeholder__title {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
    
    .image-placeholder__desc,
    .video-placeholder__desc {
        font-size: 0.8rem;
        max-width: 95%;
    }
    
    .image-placeholder__badge,
    .video-placeholder__badge {
        top: 10px;
        right: 10px;
        padding: 4px 10px;
        font-size: 0.65rem;
    }
    
    .video-placeholder__play {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .video-placeholder__play::before {
        border-width: 10px 0 10px 16px;
        margin-left: 3px;
    }
    
    .video-placeholder__play::after {
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
    }
    
    .image-placeholder--wide,
    .image-placeholder--square,
    .image-placeholder--portrait,
    .image-placeholder--small,
    .image-placeholder--full {
        max-width: calc(100% - 20px);
        aspect-ratio: auto;
        min-height: 150px;
    }
}

/* ============================================
   13. ДОПОЛНИТЕЛЬНЫЕ УТИЛИТЫ
   ============================================ */

.text-highlight {
    background: linear-gradient(135deg, #fff9f0 0%, #fef4ad 100%);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.text-success {
    color: #1DA078;
    font-weight: 600;
}

.text-warning {
    color: #f2722c;
    font-weight: 600;
}

.text-danger {
    color: #dc3545;
    font-weight: 600;
}

.text-muted {
    color: #6c757d;
}

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

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

/*
    КОНЕЦ СТИЛЕЙ СТАТЕЙ
 */
.contact-property__value a {
    display: block;
}