/* =========================
   HEADER
========================= */
.container-header {
    display: block !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
}

.custom-header {
    background: #efefef;
}

/* =========================
   LOGO
========================= */
.logo-row {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.logo-row .navbar-brand {
    margin: 0;
}

.logo-row img {
    max-height: 70px;
    width: auto;
}

/* =========================
   MENU
========================= */
.menu-row {
    background: #d4d4d4;
    border-top: 1px solid #c5c5c5;
    border-bottom: 1px solid #c5c5c5;
}

.menu-row .mod-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.menu-row .mod-menu > li {
    position: relative;
}

.menu-row .mod-menu > li > a {
    display: block;
    padding: 16px 20px;
    color: #444;
    text-decoration: none;
    transition: all .2s ease;
}

.menu-row .mod-menu > li > a:hover {
    background: #c8c8c8;
    color: #ff5a00;
}

/* Активный пункт */
.menu-row .mod-menu > li.active > a,
.menu-row .mod-menu > li.current > a {
    color: #ff5a00;
    font-weight: 600;
    background: transparent;
}

/* Убираем стрелку Joomla */
.menu-row .mod-menu__toggle-sub {
    display: none !important;
}

/* =========================
   DROPDOWN
========================= */
.menu-row .mod-menu__sub {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    padding: 8px 0;
    margin: 0;
    list-style: none;
    z-index: 9999;
}

/* Открытие по наведению (только десктоп) */
@media (min-width: 769px) {
    .menu-row .nav-item:hover > .mod-menu__sub {
        display: block;
    }
}

/* Пункты выпадающего меню */
.menu-row .mod-menu__sub li {
    position: relative;
    margin: 0;
    padding: 0;
}

.menu-row .mod-menu__sub li a {
    display: block;
    padding: 11px 18px;
    color: #444;
    text-decoration: none;
    white-space: nowrap;
    transition: all .2s ease;
}

.menu-row .mod-menu__sub li a:hover {
    background: #fff5ef;
    color: #ff5a00;
    text-decoration: none;
}

/* Активные пункты */
.menu-row .mod-menu__sub li.active > a,
.menu-row .mod-menu__sub li.current > a {
    color: #ff5a00;
    font-weight: 600;
    background: #fff5ef;
}

/* =========================
   DROPDOWN 2 LEVEL
========================= */
.menu-row .mod-menu__sub .mod-menu__sub {
    top: 0;
    left: calc(100% - 4px);
    transform: none;
    margin-left: 0;
    min-width: 220px;
}

/* Защитная зона между меню */
.menu-row .mod-menu__sub li.deeper::after,
.menu-row .mod-menu__sub li.parent::after {
    content: "";
    position: absolute;
    top: 0;
    right: -10px;
    width: 10px;
    height: 100%;
}

/* Стрелка у родительского пункта */
.menu-row .mod-menu__sub li.deeper > a::after,
.menu-row .mod-menu__sub li.parent > a::after {
    content: "›";
    float: right;
    color: #999;
    font-size: 18px;
    line-height: 1;
}

.menu-row .mod-menu__sub li.deeper:hover > a::after,
.menu-row .mod-menu__sub li.parent:hover > a::after {
    color: #ff5a00;
}

/* =========================
   CONTENT
========================= */
.container-component {
    max-width: 1300px;
    margin: 50px auto;
    padding: 0 30px;
}

/* =========================
   TYPOGRAPHY
========================= */
.itemid-101 .page-header h1 {
    display: none;
}

h1 {
    font-size: 52px;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-header h1 {
    color: #ff5a00;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-header h2 {
    color: #ff5a00;
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: 700;
}

h3 {
    color: #333;
    margin-top: 35px;
    margin-bottom: 15px;
}

p {
    line-height: 1.9;
}

/* =========================
   ARTICLE CARD
========================= */
.com-content-article__body {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 45px 50px;
    margin-top: 15px;
    box-shadow:
        0 1px 3px rgba(0,0,0,.04),
        0 3px 12px rgba(0,0,0,.04);
}

.com-content-article__body p {
    line-height: 1.9;
    margin-bottom: 22px;
}

/* =========================
   LISTS
========================= */
.com-content-article__body ul {
    padding-left: 25px;
}

.com-content-article__body li {
    margin-bottom: 8px;
}

/* =========================
   BREADCRUMBS
========================= */
.mod-breadcrumbs {
    max-width: 1300px;
    margin: 20px auto;
    padding: 0 30px;
}

.section-title {
    color: #ff5a00;
    font-size: 52px;
    font-weight: 700;
    max-width: 1300px;
    margin: 0 auto 25px;
    padding: 0 30px;
}

/* =========================
   FOOTER
========================= */
.container-footer {
    background: #f7f7f7 !important;
    color: #555 !important;
    margin-top: 50px;
    padding: 33px 0 15px;
    border-top: 2px solid #ff5a00;
    background-image: none !important;
    box-shadow: none !important;
}

.container-footer .grid-child {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.custom-footer-grid {
    display: flex;
    gap: 40px;
    width: 100%;
    align-items: flex-start;
}

.custom-footer-column {
    flex: 1;
}

.custom-footer-column h4 {
    margin: 0 0 12px;
    color: #ff5a00;
    font-size: 20px;
    font-weight: 700;
}

.custom-footer-column p {
    margin: 0 0 8px;
    color: #555;
    line-height: 1.6;
}

.custom-footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.custom-footer-column li {
    margin-bottom: 12px;
}

.custom-footer-column a {
    color: #555 !important;
    text-decoration: none;
    transition: color .2s ease;
}

.custom-footer-column a:hover,
.custom-footer-column a:focus {
    color: #ff5a00 !important;
    text-decoration: none;
}

.custom-footer-column .current > a,
.custom-footer-column .active > a {
    color: #ff5a00 !important;
    font-weight: 600;
}

.custom-footer-copy {
    margin-top: 20px;
    padding-top: 12px;
    border-top: 1px solid #d8d8d8;
    text-align: center;
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}

.custom-footer-column a[href^="mailto"] {
    color: #ff5a00 !important;
    font-weight: 600;
}

.custom-footer-column a[href^="mailto"]:hover,
.custom-footer-column a[href^="mailto"]:focus {
    color: #e54f00 !important;
    text-decoration: underline;
}

/* =========================
   КАРТОЧКИ ПРЕИМУЩЕСТВ
========================= */
.advantages-position {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.advantages {
    display: flex;
    gap: 30px;
    width: 100%;
}

.adv-card {
    flex: 1;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
    padding: 35px;
    box-shadow:
        0 1px 3px rgba(0,0,0,.04),
        0 3px 12px rgba(0,0,0,.04);
    transition: .25s ease;
}

.adv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.adv-card h3 {
    margin: 0 0 20px;
    color: #ff5a00;
    font-size: 22px;
}

.adv-card p {
    margin: 0;
    line-height: 1.8;
}

/* =========================
   HERO / БАННЕР
========================= */
.hero {
    position: relative;
    width: 100%;
    min-height: 500px;
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45)
        ),
        url('/images/site/banner.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: #ffffff;
    font-size: 56px;
    line-height: 1.15;
    font-weight: 700;
    margin: 0 0 20px;
    max-width: 800px;
}

.hero p {
    color: #ffffff;
    font-size: 22px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 0 35px;
}

.hero-btn {
    display: inline-block;
    background: #ff5a00;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 4px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.hero-btn:hover {
    background: #e54f00;
    transform: translateY(-2px);
    color: #ffffff;
    text-decoration: none;
}

/* =========================
   ПРОДУКТЫ
========================= */
.products-intro {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.8;
}

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

.product-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 25px;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    text-decoration: none;
    color: #333;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
    border-color: #ff5a00;
}

.product-card h3 {
    color: #ff5a00;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
}

.product-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-btn {
    display: inline-block;
    background: #ff5a00;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: .2s;
}

.product-btn:hover {
    background: #e64f00;
    color: #fff !important;
}

/* =========================
   КАТАЛОГ МАТЕРИАЛОВ
========================= */
.material-card {
    max-width: 1100px;
    margin: 25px auto;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-left: 6px solid #ff5a00;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    transition: all .25s ease;
}

.material-card:hover {
    transform: translateY(-2px);
    border-left-color: #ff7a2f;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.material-card summary {
    display: block;
    position: relative;
    padding: 18px 70px 18px 25px;
    cursor: pointer;
    list-style: none;
}

.material-card summary::-webkit-details-marker {
    display: none;
}

.material-card summary:hover {
    background: #fafafa;
}

.material-card summary::after {
    content: "+";
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff5a00;
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
}

.material-card[open] summary::after {
    content: "−";
}

.material-name {
    display: block;
    color: #ff5a00;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
}

.material-subtitle {
    display: block;
    margin-top: 5px;
    color: #888;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
}

.material-body {
    padding: 25px 30px 30px;
    border-top: 1px solid #eee;
}

.material-body p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.8;
}

.material-body h4 {
    margin: 28px 0 15px;
    color: #ff5a00;
    font-size: 22px;
    font-weight: 700;
}

.material-body ul {
    margin: 0;
    padding-left: 25px;
}

.material-body li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.notes-block {
    background: #fff8f3 !important;
    border-left: 5px solid #ff5a00 !important;
    border-radius: 12px !important;
    padding: 30px !important;
    margin-top: 40px !important;
    margin-bottom: 20px !important;
    display: block !important;
}

.notes-block h3 {
    font-size: 22px;
    color: #ff5a00 !important;
    margin-bottom: 20px !important;
}

.notes-block ol {
    padding-left: 25px !important;
}

.notes-block li {
    margin-bottom: 15px !important;
}

.content-section-title {
    max-width: 1100px;
    margin: 45px auto 25px;
    color: #ff5a00;
    font-size: 28px;
    font-weight: 700;
}

/* =========================
   СХЕМЫ
========================= */
.content-section-title {
    margin: 50px 0 30px;
    color: #ff5a00;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.scheme-card {
    max-width: 1100px;
    margin: 25px auto;
    padding: 30px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-left: 6px solid #ff5a00;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    transition: all .25s ease;
}

.scheme-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.scheme-card h3 {
    margin: 0 0 25px;
    color: #222;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}

.scheme-image {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: center;
}

.scheme-image img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.scheme-caption {
    margin-top: 12px;
    color: #777;
    font-size: 14px;
    text-align: center;
}

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

.scheme-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 14px 0;
    line-height: 1.7;
    border-bottom: 1px solid #f0f0f0;
}

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

.scheme-list strong {
    min-width: 30px;
    color: #ff5a00;
    font-weight: 700;
}

/* =========================
   ТЕХНИЧЕСКИЙ ЛИСТ
========================= */
.tech-product-header {
    max-width: 1100px;
    margin: 0 auto 30px;
    padding: 35px 40px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-left: 6px solid #ff5a00;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.tech-product-label {
    margin-bottom: 10px;
    color: #777;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.tech-product-header h2 {
    margin: 0;
    color: #ff5a00;
    font-size: 42px;
    font-weight: 700;
}

.tech-product-subtitle {
    margin: 8px 0 0;
    font-size: 22px;
    color: #333;
}

.tech-product-tu {
    margin: 12px 0 0;
    color: #777;
    font-size: 15px;
}

.tech-card {
    max-width: 1100px;
    margin: 25px auto;
    padding: 30px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-left: 6px solid #ff5a00;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.tech-card h3 {
    margin: 0 0 20px;
    color: #ff5a00;
    font-size: 24px;
    font-weight: 700;
}

.tech-card p {
    margin: 0 0 18px;
    line-height: 1.8;
}

.tech-card ul {
    margin: 0;
    padding-left: 25px;
}

.tech-card li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.docs-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.doc-link {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    color: #333;
    text-decoration: none;
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    transition: .2s ease;
}

.doc-link:hover {
    background: #fff8f3;
    border-color: #ff5a00;
    color: #ff5a00;
}

.docs-catalog {
    max-width: 1100px;
    margin: 30px auto 0;
}

.docs-section {
    margin-bottom: 30px;
    padding: 30px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-left: 6px solid #ff5a00;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.docs-section h3 {
    margin: 0 0 20px;
    color: #ff5a00;
    font-size: 24px;
    font-weight: 700;
}

/* =========================
   КОНТАКТЫ
========================= */
.contact-card {
    max-width: 1100px;
    margin: 30px auto;
    padding: 35px 40px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-left: 6px solid #ff5a00;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    transition: .25s ease;
}

.contact-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.contact-card h3 {
    margin: 0 0 25px;
    color: #ff5a00;
    font-size: 28px;
    font-weight: 700;
}

.contact-card p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.8;
}

.contact-card strong {
    color: #222;
}

.contact-card a {
    color: #0b6aa2;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* =========================
   КАРТА
========================= */
.map-card {
    max-width: 1100px;
    margin: 30px auto;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    transition: .25s ease;
}

.map-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.map-card iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}

/* ==================================================
   МОБИЛЬНАЯ АДАПТАЦИЯ
================================================== */

/* Планшеты и меньше */
@media (max-width: 992px) {
    .logo-row {
        padding: 15px 20px;
        text-align: center;
    }

    .logo-row img {
        max-height: 55px;
    }

    .menu-row .mod-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .menu-row .mod-menu > li > a {
        padding: 14px 16px;
        font-size: 15px;
    }

    .container-component {
        margin: 30px auto;
        padding: 0 20px;
    }

    h1 {
        font-size: 38px;
    }

    .page-header h1,
    .page-header h2 {
        font-size: 28px;
    }

    .section-title {
        font-size: 36px;
        padding: 0 20px;
    }

    .com-content-article__body {
        padding: 30px 25px;
    }

    .advantages {
        flex-direction: column;
        gap: 20px;
    }

    .adv-card {
        padding: 25px;
    }

    .hero {
        min-height: 420px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-content {
        padding: 0 25px;
    }

    .tech-product-header {
        padding: 25px 20px;
    }

    .tech-product-header h2 {
        font-size: 32px;
    }

    .tech-product-subtitle {
        font-size: 18px;
    }

    .content-section-title {
        font-size: 26px;
        margin: 35px 0 20px;
    }
}

/* Мобильные телефоны */
@media (max-width: 768px) {

    /* Логотип */
    .logo-row {
        padding: 12px 15px;
    }

    .logo-row img {
        max-height: 48px;
    }

    /* Меню — вертикальное */
    .menu-row .mod-menu {
        flex-direction: column;
        align-items: stretch;
    }

    .menu-row .mod-menu > li {
        width: 100%;
        border-bottom: 1px solid #c5c5c5;
    }

    .menu-row .mod-menu > li:last-child {
        border-bottom: none;
    }

    .menu-row .mod-menu > li > a {
        padding: 14px 20px;
        text-align: left;
    }

    /* Выпадающее меню на мобильном */
    .menu-row .mod-menu__sub {
        position: static;
        transform: none;
        width: 100%;
        min-width: 100%;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: #ebebeb;
        display: none; /* открывается по клику через JS или :focus-within */
    }

    .menu-row .mod-menu__sub .mod-menu__sub {
        left: 0;
        background: #e0e0e0;
    }

    .menu-row .mod-menu__sub li a {
        padding: 12px 30px;
    }

    /* Контент */
    .container-component {
        margin: 25px auto;
        padding: 0 15px;
    }

    h1 {
        font-size: 32px;
    }

    .page-header h1,
    .page-header h2 {
        font-size: 24px;
    }

    h3 {
        margin-top: 25px;
        font-size: 20px;
    }

    .section-title {
        font-size: 28px;
        padding: 0 15px;
        margin-bottom: 20px;
    }

    .com-content-article__body {
        padding: 25px 18px;
        border-radius: 8px;
    }

    /* Футер */
    .custom-footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .custom-footer-column {
        width: 100%;
    }

    .custom-footer-copy {
        margin-top: 25px;
        font-size: 13px;
    }

    .container-footer {
        padding: 30px 0 15px;
    }

    /* Hero */
    .hero {
        min-height: 360px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 22px;
    }

    .hero-btn {
        padding: 12px 26px;
        font-size: 15px;
    }

    /* Карточки продуктов */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        padding: 20px;
    }

    .product-card h3 {
        font-size: 20px;
    }

    /* Материалы */
    .material-card summary {
        padding: 16px 55px 16px 18px;
    }

    .material-card summary::after {
        right: 18px;
        font-size: 26px;
    }

    .material-name {
        font-size: 18px;
    }

    .material-body {
        padding: 20px 18px 25px;
    }

    .notes-block {
        padding: 22px 18px !important;
    }

    /* Схемы */
    .scheme-card {
        padding: 20px 18px;
        margin: 20px auto;
    }

    .scheme-card h3 {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .scheme-list li {
        flex-direction: column;
        gap: 4px;
        padding: 12px 0;
    }

    .scheme-list strong {
        min-width: auto;
    }

    /* Технический лист */
    .tech-product-header {
        padding: 22px 18px;
        margin-bottom: 20px;
    }

    .tech-product-header h2 {
        font-size: 26px;
    }

    .tech-product-subtitle {
        font-size: 16px;
    }

    .tech-card {
        padding: 20px 18px;
    }

    .tech-card h3 {
        font-size: 20px;
    }

    .docs-section {
        padding: 20px 18px;
    }

    /* Контакты */
    .contact-card {
        padding: 25px 18px;
        margin: 20px auto;
    }

    .contact-card h3 {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .map-card iframe {
        height: 320px;
    }

    .mod-breadcrumbs {
        padding: 0 15px;
        margin: 15px auto;
    }
}

/* Очень маленькие экраны */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 15px;
    }

    h1 {
        font-size: 28px;
    }

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

    .logo-row img {
        max-height: 42px;
    }

    .menu-row .mod-menu > li > a {
        padding: 13px 16px;
        font-size: 15px;
    }
}


Так и должно выглядеть?

Да — для мобильной версии примерно так и должно выглядеть, если ширина экрана около 360–380 px. Ваш @media (max-width: 768px) срабатывает: карточки становятся узкими, отступы уменьшаются, заголовки уменьшаются.

Но на скриншоте я вижу один момент, который я бы поправил:
Сейчас получается «карточка внутри карточки»

У вас:

    .com-content-article__body — большая белая карточка с рамкой;

    внутри неё .docs-section — ещё одна карточка;

    внутри .docs-section находятся .doc-link — ещё карточки.

Из-за этого на мобильном появляется довольно много вложенных рамок и пустого пространства.

На скриншоте это выглядит примерно так:

┌─────────────────────────┐
│ Документация            │
│                         │
│ В разделе собраны...    │
│                         │
│ ┌─────────────────────┐ │
│ │ Комплект ПИК        │ │
│ │                     │ │
│ │ ┌─────────────────┐ │ │
│ │ │ 📄 ТУ 5774...  │ │ │
│ │ └─────────────────┘ │ │
│ │ ┌─────────────────┐ │ │
│ │ │ 📄 Паспорт      │ │ │
│ │ └─────────────────┘ │ │
│ └─────────────────────┘ │
│                         │
│ ┌─────────────────────┐ │
│ │ Мастика ПРИЗ       │ │
│ └─────────────────────┘ │
└─────────────────────────┘

Если именно такой дизайн задумывался — всё нормально.

Если же вы хотите более современный и «воздушный» вариант, я бы на мобильном убрал внешнюю большую рамку .com-content-article__body. Тогда документация будет выглядеть заметно чище:

@media (max-width: 768px) {
    .com-content-article__body {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 10px 0;
        margin-top: 0;
    }

    .docs-section {
        padding: 20px 18px;
        margin-bottom: 20px;
    }
}

Ещё один момент

На скриншоте второй блок «Мастика ПРИЗ» обрезан снизу, но это не ошибка CSS — просто скриншот заканчивается раньше страницы.

Итого: адаптивность работает правильно. Если вопрос именно «почему на телефоне всё стало таким узким и вертикальным?» — это ожидаемое поведение вашего CSS. Если вопрос «почему документация выглядит как несколько вложенных белых карточек?» — это уже следствие сочетания .com-content-article__body + .docs-section + .doc-link, и это я бы немного упростил.

Пришли полностью измененный css

Конечно. Ниже полностью изменённый CSS, с сохранением вашего дизайна, но с более аккуратной мобильной адаптацией. Я также убрал лишний визуальный эффект «карточка внутри карточки» именно для документации на мобильных.

/* =========================
   HEADER
========================= */
.container-header {
    display: block !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
}

.custom-header {
    background: #efefef;
}

/* =========================
   LOGO
========================= */
.logo-row {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.logo-row .navbar-brand {
    margin: 0;
}

.logo-row img {
    max-height: 70px;
    width: auto;
}

/* =========================
   MENU
========================= */
.menu-row {
    background: #d4d4d4;
    border-top: 1px solid #c5c5c5;
    border-bottom: 1px solid #c5c5c5;
}

.menu-row .mod-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.menu-row .mod-menu > li {
    position: relative;
}

.menu-row .mod-menu > li > a {
    display: block;
    padding: 16px 20px;
    color: #444;
    text-decoration: none;
    transition: all .2s ease;
}

.menu-row .mod-menu > li > a:hover {
    background: #c8c8c8;
    color: #ff5a00;
}

/* Активный пункт */
.menu-row .mod-menu > li.active > a,
.menu-row .mod-menu > li.current > a {
    color: #ff5a00;
    font-weight: 600;
    background: transparent;
}

/* Убираем стрелку Joomla */
.menu-row .mod-menu__toggle-sub {
    display: none !important;
}

/* =========================
   DROPDOWN
========================= */
.menu-row .mod-menu__sub {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    padding: 8px 0;
    margin: 0;
    list-style: none;
    z-index: 9999;
}

/* Открытие по наведению на десктопе */
@media (min-width: 769px) {
    .menu-row .nav-item:hover > .mod-menu__sub {
        display: block;
    }
}

/* Пункты выпадающего меню */
.menu-row .mod-menu__sub li {
    position: relative;
    margin: 0;
    padding: 0;
}

.menu-row .mod-menu__sub li a {
    display: block;
    padding: 11px 18px;
    color: #444;
    text-decoration: none;
    white-space: nowrap;
    transition: all .2s ease;
}

.menu-row .mod-menu__sub li a:hover {
    background: #fff5ef;
    color: #ff5a00;
    text-decoration: none;
}

/* Активные пункты */
.menu-row .mod-menu__sub li.active > a,
.menu-row .mod-menu__sub li.current > a {
    color: #ff5a00;
    font-weight: 600;
    background: #fff5ef;
}

/* =========================
   DROPDOWN 2 LEVEL
========================= */
.menu-row .mod-menu__sub .mod-menu__sub {
    top: 0;
    left: calc(100% - 4px);
    transform: none;
    margin-left: 0;
    min-width: 220px;
}

.menu-row .mod-menu__sub li.deeper::after,
.menu-row .mod-menu__sub li.parent::after {
    content: "";
    position: absolute;
    top: 0;
    right: -10px;
    width: 10px;
    height: 100%;
}

/* Стрелка */
.menu-row .mod-menu__sub li.deeper > a::after,
.menu-row .mod-menu__sub li.parent > a::after {
    content: "›";
    float: right;
    color: #999;
    font-size: 18px;
    line-height: 1;
}

.menu-row .mod-menu__sub li.deeper:hover > a::after,
.menu-row .mod-menu__sub li.parent:hover > a::after {
    color: #ff5a00;
}

/* =========================
   CONTENT
========================= */
.container-component {
    max-width: 1300px;
    margin: 50px auto;
    padding: 0 30px;
}

/* =========================
   TYPOGRAPHY
========================= */
.itemid-101 .page-header h1 {
    display: none;
}

h1 {
    font-size: 52px;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-header h1 {
    color: #ff5a00;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-header h2 {
    color: #ff5a00;
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: 700;
}

h3 {
    color: #333;
    margin-top: 35px;
    margin-bottom: 15px;
}

p {
    line-height: 1.9;
}

/* =========================
   ARTICLE CARD
========================= */
.com-content-article__body {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 45px 50px;
    margin-top: 15px;
    box-shadow:
        0 1px 3px rgba(0,0,0,.04),
        0 3px 12px rgba(0,0,0,.04);
}

.com-content-article__body p {
    line-height: 1.9;
    margin-bottom: 22px;
}

/* =========================
   LISTS
========================= */
.com-content-article__body ul {
    padding-left: 25px;
}

.com-content-article__body li {
    margin-bottom: 8px;
}

/* =========================
   BREADCRUMBS
========================= */
.mod-breadcrumbs {
    max-width: 1300px;
    margin: 20px auto;
    padding: 0 30px;
}

.section-title {
    color: #ff5a00;
    font-size: 52px;
    font-weight: 700;
    max-width: 1300px;
    margin: 0 auto 25px;
    padding: 0 30px;
}

/* =========================
   FOOTER
========================= */
.container-footer {
    background: #f7f7f7 !important;
    color: #555 !important;
    margin-top: 50px;
    padding: 33px 0 15px;
    border-top: 2px solid #ff5a00;
    background-image: none !important;
    box-shadow: none !important;
}

.container-footer .grid-child {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.custom-footer-grid {
    display: flex;
    gap: 40px;
    width: 100%;
    align-items: flex-start;
}

.custom-footer-column {
    flex: 1;
}

.custom-footer-column h4 {
    margin: 0 0 12px;
    color: #ff5a00;
    font-size: 20px;
    font-weight: 700;
}

.custom-footer-column p {
    margin: 0 0 8px;
    color: #555;
    line-height: 1.6;
}

.custom-footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.custom-footer-column li {
    margin-bottom: 12px;
}

.custom-footer-column a {
    color: #555 !important;
    text-decoration: none;
    transition: color .2s ease;
}

.custom-footer-column a:hover,
.custom-footer-column a:focus {
    color: #ff5a00 !important;
    text-decoration: none;
}

.custom-footer-column .current > a,
.custom-footer-column .active > a {
    color: #ff5a00 !important;
    font-weight: 600;
}

.custom-footer-copy {
    margin-top: 20px;
    padding-top: 12px;
    border-top: 1px solid #d8d8d8;
    text-align: center;
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}

.custom-footer-column a[href^="mailto"] {
    color: #ff5a00 !important;
    font-weight: 600;
}

.custom-footer-column a[href^="mailto"]:hover,
.custom-footer-column a[href^="mailto"]:focus {
    color: #e54f00 !important;
    text-decoration: underline;
}

/* =========================
   КАРТОЧКИ ПРЕИМУЩЕСТВ
========================= */
.advantages-position {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.advantages {
    display: flex;
    gap: 30px;
    width: 100%;
}

.adv-card {
    flex: 1;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
    padding: 35px;
    box-shadow:
        0 1px 3px rgba(0,0,0,.04),
        0 3px 12px rgba(0,0,0,.04);
    transition: .25s ease;
}

.adv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.adv-card h3 {
    margin: 0 0 20px;
    color: #ff5a00;
    font-size: 22px;
}

.adv-card p {
    margin: 0;
    line-height: 1.8;
}

/* =========================
   HERO / БАННЕР
========================= */
.hero {
    position: relative;
    width: 100%;
    min-height: 500px;
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45)
        ),
        url('/images/site/banner.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: #ffffff;
    font-size: 56px;
    line-height: 1.15;
    font-weight: 700;
    margin: 0 0 20px;
    max-width: 800px;
}

.hero p {
    color: #ffffff;
    font-size: 22px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 0 35px;
}

.hero-btn {
    display: inline-block;
    background: #ff5a00;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 4px;
    transition: background .25s ease, transform .25s ease;
}

.hero-btn:hover {
    background: #e54f00;
    transform: translateY(-2px);
    color: #ffffff;
    text-decoration: none;
}

/* =========================
   ПРОДУКТЫ
========================= */
.products-intro {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.8;
}

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

.product-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 25px;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    text-decoration: none;
    color: #333;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
    border-color: #ff5a00;
}

.product-card h3 {
    color: #ff5a00;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
}

.product-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-btn {
    display: inline-block;
    background: #ff5a00;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: .2s;
}

.product-btn:hover {
    background: #e64f00;
    color: #fff !important;
}

/* =========================
   КАТАЛОГ МАТЕРИАЛОВ
========================= */
.material-card {
    max-width: 1100px;
    margin: 25px auto;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-left: 6px solid #ff5a00;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    transition: all .25s ease;
}

.material-card:hover {
    transform: translateY(-2px);
    border-left-color: #ff7a2f;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.material-card summary {
    display: block;
    position: relative;
    padding: 18px 70px 18px 25px;
    cursor: pointer;
    list-style: none;
}

.material-card summary::-webkit-details-marker {
    display: none;
}

.material-card summary:hover {
    background: #fafafa;
}

.material-card summary::after {
    content: "+";
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff5a00;
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
}

.material-card[open] summary::after {
    content: "−";
}

.material-name {
    display: block;
    color: #ff5a00;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
}

.material-subtitle {
    display: block;
    margin-top: 5px;
    color: #888;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
}

.material-body {
    padding: 25px 30px 30px;
    border-top: 1px solid #eee;
}

.material-body p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.8;
}

.material-body h4 {
    margin: 28px 0 15px;
    color: #ff5a00;
    font-size: 22px;
    font-weight: 700;
}

.material-body ul {
    margin: 0;
    padding-left: 25px;
}

.material-body li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.notes-block {
    background: #fff8f3 !important;
    border-left: 5px solid #ff5a00 !important;
    border-radius: 12px !important;
    padding: 30px !important;
    margin-top: 40px !important;
    margin-bottom: 20px !important;
    display: block !important;
}

.notes-block h3 {
    font-size: 22px;
    color: #ff5a00 !important;
    margin-bottom: 20px !important;
}

.notes-block ol {
    padding-left: 25px !important;
}

.notes-block li {
    margin-bottom: 15px !important;
}

.content-section-title {
    max-width: 1100px;
    margin: 45px auto 25px;
    color: #ff5a00;
    font-size: 28px;
    font-weight: 700;
}

/* =========================
   СХЕМЫ
========================= */
.content-section-title {
    margin: 50px 0 30px;
    color: #ff5a00;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.scheme-card {
    max-width: 1100px;
    margin: 25px auto;
    padding: 30px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-left: 6px solid #ff5a00;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    transition: all .25s ease;
}

.scheme-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.scheme-card h3 {
    margin: 0 0 25px;
    color: #222;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}

.scheme-image {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: center;
}

.scheme-image img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.scheme-caption {
    margin-top: 12px;
    color: #777;
    font-size: 14px;
    text-align: center;
}

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

.scheme-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 14px 0;
    line-height: 1.7;
    border-bottom: 1px solid #f0f0f0;
}

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

.scheme-list strong {
    min-width: 30px;
    color: #ff5a00;
    font-weight: 700;
}

/* =========================
   ТЕХНИЧЕСКИЙ ЛИСТ
========================= */
.tech-product-header {
    max-width: 1100px;
    margin: 0 auto 30px;
    padding: 35px 40px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-left: 6px solid #ff5a00;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.tech-product-label {
    margin-bottom: 10px;
    color: #777;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.tech-product-header h2 {
    margin: 0;
    color: #ff5a00;
    font-size: 42px;
    font-weight: 700;
}

.tech-product-subtitle {
    margin: 8px 0 0;
    font-size: 22px;
    color: #333;
}

.tech-product-tu {
    margin: 12px 0 0;
    color: #777;
    font-size: 15px;
}

.tech-card {
    max-width: 1100px;
    margin: 25px auto;
    padding: 30px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-left: 6px solid #ff5a00;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.tech-card h3 {
    margin: 0 0 20px;
    color: #ff5a00;
    font-size: 24px;
    font-weight: 700;
}

.tech-card p {
    margin: 0 0 18px;
    line-height: 1.8;
}

.tech-card ul {
    margin: 0;
    padding-left: 25px;
}

.tech-card li {
    margin-bottom: 12px;
    line-height: 1.8;
}

/* =========================
   ДОКУМЕНТАЦИЯ
========================= */
.docs-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.doc-link {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    color: #333;
    text-decoration: none;
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    transition: all .2s ease;
}

.doc-link:hover {
    background: #fff8f3;
    border-color: #ff5a00;
    color: #ff5a00;
}

.docs-catalog {
    max-width: 1100px;
    margin: 30px auto 0;
}

.docs-section {
    margin-bottom: 30px;
    padding: 30px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-left: 6px solid #ff5a00;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.docs-section h3 {
    margin: 0 0 20px;
    color: #ff5a00;
    font-size: 24px;
    font-weight: 700;
}

/* =========================
   КОНТАКТЫ
========================= */
.contact-card {
    max-width: 1100px;
    margin: 30px auto;
    padding: 35px 40px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-left: 6px solid #ff5a00;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    transition: .25s ease;
}

.contact-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.contact-card h3 {
    margin: 0 0 25px;
    color: #ff5a00;
    font-size: 28px;
    font-weight: 700;
}

.contact-card p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.8;
}

.contact-card strong {
    color: #222;
}

.contact-card a {
    color: #0b6aa2;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* =========================
   КАРТА
========================= */
.map-card {
    max-width: 1100px;
    margin: 30px auto;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    transition: .25s ease;
}

.map-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.map-card iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}

/* ==================================================
   АДАПТАЦИЯ — ПЛАНШЕТЫ
================================================== */
@media (max-width: 992px) {

    .logo-row {
        padding: 15px 20px;
        text-align: center;
    }

    .logo-row img {
        max-height: 55px;
    }

    .menu-row .mod-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .menu-row .mod-menu > li > a {
        padding: 14px 16px;
        font-size: 15px;
    }

    .container-component {
        margin: 30px auto;
        padding: 0 20px;
    }

    h1 {
        font-size: 38px;
    }

    .page-header h1,
    .page-header h2 {
        font-size: 28px;
    }

    .section-title {
        font-size: 36px;
        padding: 0 20px;
    }

    .com-content-article__body {
        padding: 30px 25px;
    }

    .advantages {
        flex-direction: column;
        gap: 20px;
    }

    .adv-card {
        padding: 25px;
    }

    .hero {
        min-height: 420px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-content {
        padding: 0 25px;
    }

    .tech-product-header {
        padding: 25px 20px;
    }

    .tech-product-header h2 {
        font-size: 32px;
    }

    .tech-product-subtitle {
        font-size: 18px;
    }

    .content-section-title {
        font-size: 26px;
        margin: 35px 0 20px;
    }

    .docs-section {
        padding: 25px;
    }
}

/* ==================================================
   АДАПТАЦИЯ — МОБИЛЬНЫЕ
================================================== */
@media (max-width: 768px) {

    /* =========================
       ЛОГОТИП
    ========================= */
    .logo-row {
        padding: 12px 15px;
    }

    .logo-row img {
        max-height: 48px;
    }

    /* =========================
       МОБИЛЬНОЕ МЕНЮ
    ========================= */
    .menu-row .mod-menu {
        flex-direction: column;
        align-items: stretch;
    }

    .menu-row .mod-menu > li {
        width: 100%;
        border-bottom: 1px solid #c5c5c5;
    }

    .menu-row .mod-menu > li:last-child {
        border-bottom: none;
    }

    .menu-row .mod-menu > li > a {
        padding: 14px 20px;
        text-align: left;
    }

    /* Выпадающее меню */
    .menu-row .mod-menu__sub {
        position: static;
        transform: none;
        width: 100%;
        min-width: 100%;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: #ebebeb;
        display: none;
    }

    .menu-row .mod-menu__sub .mod-menu__sub {
        left: 0;
        background: #e0e0e0;
    }

    .menu-row .mod-menu__sub li a {
        padding: 12px 30px;
        white-space: normal;
    }

    /* =========================
       ОСНОВНОЙ КОНТЕНТ
    ========================= */
    .container-component {
        width: 100%;
        max-width: 100%;
        margin: 25px auto;
        padding: 0 15px;
        box-sizing: border-box;
    }

    h1 {
        font-size: 32px;
    }

    .page-header h1,
    .page-header h2 {
        font-size: 24px;
    }

    h3 {
        margin-top: 25px;
        font-size: 20px;
    }

    .section-title {
        font-size: 28px;
        padding: 0 15px;
        margin-bottom: 20px;
    }

    /* =========================
       СТАТЬЯ
       
       На мобильном убираем
       лишнюю внешнюю карточку
    ========================= */
    .com-content-article__body {
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 10px 0;
        margin-top: 0;
    }

    .com-content-article__body p {
        line-height: 1.75;
        margin-bottom: 18px;
    }

    /* =========================
       FOOTER
    ========================= */
    .custom-footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .custom-footer-column {
        width: 100%;
    }

    .custom-footer-copy {
        margin-top: 25px;
        font-size: 13px;
    }

    .container-footer {
        padding: 30px 0 15px;
    }

    /* =========================
       HERO
    ========================= */
    .hero {
        min-height: 360px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 22px;
    }

    .hero-btn {
        padding: 12px 26px;
        font-size: 15px;
    }

    /* =========================
       ПРОДУКТЫ
    ========================= */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        padding: 20px;
    }

    .product-card h3 {
        font-size: 20px;
    }

    /* =========================
       МАТЕРИАЛЫ
    ========================= */
    .material-card {
        margin: 20px 0;
        border-left-width: 5px;
        border-radius: 10px;
    }

    .material-card summary {
        padding: 16px 55px 16px 18px;
    }

    .material-card summary::after {
        right: 18px;
        font-size: 26px;
    }

    .material-name {
        font-size: 18px;
    }

    .material-subtitle {
        font-size: 12px;
    }

    .material-body {
        padding: 20px 18px 25px;
    }

    .material-body p {
        font-size: 15px;
        line-height: 1.7;
    }

    .notes-block {
        padding: 22px 18px !important;
        margin-top: 25px !important;
    }

    /* =========================
       ЗАГОЛОВКИ СЕКЦИЙ
    ========================= */
    .content-section-title {
        margin: 35px 0 20px;
        font-size: 24px;
    }

    /* =========================
       СХЕМЫ
    ========================= */
    .scheme-card {
        padding: 20px 18px;
        margin: 20px 0;
        border-left-width: 5px;
        border-radius: 10px;
    }

    .scheme-card h3 {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .scheme-image {
        padding: 12px;
        margin-bottom: 20px;
    }

    .scheme-list li {
        flex-direction: column;
        gap: 4px;
        padding: 12px 0;
    }

    .scheme-list strong {
        min-width: auto;
    }

    /* =========================
       ТЕХНИЧЕСКИЙ ЛИСТ
    ========================= */
    .tech-product-header {
        padding: 22px 18px;
        margin-bottom: 20px;
        border-left-width: 5px;
        border-radius: 10px;
    }

    .tech-product-header h2 {
        font-size: 26px;
    }

    .tech-product-subtitle {
        font-size: 16px;
    }

    .tech-product-tu {
        font-size: 14px;
    }

    .tech-card {
        padding: 20px 18px;
        margin: 20px 0;
        border-left-width: 5px;
        border-radius: 10px;
    }

    .tech-card h3 {
        font-size: 20px;
    }

    /* =========================
       ДОКУМЕНТАЦИЯ
    ========================= */

    .docs-catalog {
        width: 100%;
        max-width: 100%;
        margin: 20px 0 0;
    }

    /*
       На мобильном убираем
       лишнюю "карточку в карточке"
    */
    .docs-section {
        margin: 0 0 20px;
        padding: 18px 0;
        background: transparent;
        border: none;
        border-left: 4px solid #ff5a00;
        border-radius: 0;
        box-shadow: none;
    }

    .docs-section h3 {
        margin: 0 0 15px 14px;
        color: #ff5a00;
        font-size: 21px;
        line-height: 1.3;
    }

    .docs-list {
        gap: 8px;
        padding-left: 10px;
    }

    .doc-link {
        min-height: 48px;
        box-sizing: border-box;
        padding: 12px 14px;
        font-size: 14px;
        line-height: 1.45;
        border-radius: 9px;
        background: #fafafa;
    }

    .doc-link:hover {
        background: #fff8f3;
    }

    /* =========================
       КОНТАКТЫ
    ========================= */
    .contact-card {
        padding: 25px 18px;
        margin: 20px 0;
        border-left-width: 5px;
        border-radius: 10px;
    }

    .contact-card h3 {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .contact-card p {
        font-size: 15px;
        line-height: 1.75;
    }

    /* =========================
       КАРТА
    ========================= */
    .map-card {
        margin: 20px 0;
        border-radius: 10px;
    }

    .map-card iframe {
        height: 320px;
    }

    /* =========================
       ХЛЕБНЫЕ КРОШКИ
    ========================= */
    .mod-breadcrumbs {
        padding: 0 15px;
        margin: 15px auto;
    }
}

/* ==================================================
   ОЧЕНЬ МАЛЕНЬКИЕ ЭКРАНЫ
================================================== */
@media (max-width: 480px) {

    .container-component {
        padding: 0 12px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 15px;
    }

    h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
        padding: 0 12px;
    }

    .logo-row img {
        max-height: 42px;
    }

    .menu-row .mod-menu > li > a {
        padding: 13px 16px;
        font-size: 15px;
    }

    /* Документация */
    .docs-section {
        padding: 16px 0;
        margin-bottom: 18px;
    }

    .docs-section h3 {
        margin-left: 12px;
        font-size: 20px;
    }

    .docs-list {
        padding-left: 8px;
    }

    .doc-link {
        padding: 11px 12px;
        font-size: 13px;
    }

    /* Материалы */
    .material-card summary {
        padding: 15px 50px 15px 15px;
    }

    .material-name {
        font-size: 17px;
    }

    .material-body {
        padding: 18px 15px 22px;
    }

    /* Технические карточки */
    .tech-product-header {
        padding: 20px 15px;
    }

    .tech-product-header h2 {
        font-size: 24px;
    }

    .tech-card {
        padding: 18px 15px;
    }

    /* Контакты */
    .contact-card {
        padding: 22px 15px;
    }

    .map-card iframe {
        height: 280px;
    }
}

/* ==================================================
   ЗАЩИТА ОТ ГОРИЗОНТАЛЬНОГО СКРОЛЛА
================================================== */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

iframe {
    max-width: 100%;
}