/* ============================================
   HX-Valve Mobile Stylesheet v4 (≤768px)
   修复参数表格宽度问题
   ============================================ */

/* ===== 1. 基础重置 ===== */
@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }

    body {
        overflow-x: hidden;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
        max-width: 100%;
    }
}

/* ===== 2. 顶部导航栏 ===== */
@media (max-width: 768px) {
    .header {
        position: relative;
        z-index: auto;
        background-color: var(--dark-blue) !important;
        height: auto;
        overflow: visible !important;
    }

    .header.transparent {
        background-color: var(--dark-blue) !important;
    }

    .nav-container {
        padding: 0 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 56px;
        max-width: 100%;
        overflow: visible !important;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
    }

    .logo img {
        height: 32px;
        width: auto;
    }

    .logo-text {
        font-size: 9px;
        letter-spacing: 0.3px;
        color: var(--white);
        white-space: nowrap;
        display: none;
    }

    /* 汉堡按钮 */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        gap: 6px;
        z-index: 1003;
        position: relative;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
        transition: all 0.3s ease;
        position: absolute;
    }

    .mobile-menu-toggle span:nth-child(1) { top: 14px; }
    .mobile-menu-toggle span:nth-child(2) { top: 21px; }
    .mobile-menu-toggle span:nth-child(3) { top: 28px; }

    .mobile-menu-toggle.active span:nth-child(1) {
        top: 21px;
        transform: rotate(45deg);
    }
    .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-toggle.active span:nth-child(3) {
        top: 21px;
        transform: rotate(-45deg);
    }
}

/* ===== 2b. 非首页导航栏 ===== */
@media (max-width: 768px) {
    /* 导航栏正常滚动，不需要固定定位 */

    /* 首页：深蓝色背景 */
    body.home .header {
        background-color: var(--dark-blue) !important;
    }

    /* 非首页：深蓝色背景 */
    body:not(.home) .header {
        background-color: var(--dark-blue) !important;
    }

    /* 汉堡按钮白色可见 */
    .mobile-menu-toggle span {
        background: var(--white);
    }
}

/* ===== 3. 全屏覆盖式菜单 ===== */
@media (max-width: 768px) {
    .mobile-menu-backdrop {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: 1001;
        -webkit-tap-highlight-color: transparent;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-backdrop.show {
        display: block;
        opacity: 1;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: var(--dark-blue);
        flex-direction: column;
        padding: 0;
        margin: 0;
        gap: 0;
        border-radius: 0;
        z-index: 1003;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-menu.active {
        display: flex;
        opacity: 1;
        z-index: 1002 !important;
    }

    .nav-menu::before {
        content: '';
        display: block;
        height: 56px;
        flex-shrink: 0;
    }

    .nav-item {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 24px;
        color: var(--white);
        font-size: 18px;
        font-weight: 500;
        line-height: 1.4;
        border-bottom: none;
        transition: background 0.2s ease;
        min-height: 58px;
    }

    .nav-link:hover,
    .nav-link:active {
        background: rgba(255, 255, 255, 0.1);
    }

    .nav-item:nth-child(2) .nav-link::after {
        content: '';
        width: 10px;
        height: 10px;
        border-right: 2px solid rgba(255, 255, 255, 0.6);
        border-bottom: 2px solid rgba(255, 255, 255, 0.6);
        transform: rotate(45deg);
        transition: transform 0.3s ease;
        margin-top: -5px;
    }

    .nav-item:nth-child(2).dropdown-open .nav-link::after {
        transform: rotate(-135deg);
        margin-top: 5px;
    }

    .dropdown-menu {
        position: static;
        display: none;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 0;
        padding: 0;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown-menu.show {
        display: block;
        max-height: 500px;
    }

    .dropdown-menu a {
        display: block;
        color: rgba(255, 255, 255, 0.8);
        padding: 14px 24px 14px 48px;
        font-size: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: background 0.2s ease;
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .dropdown-menu a:hover,
    .dropdown-menu a:active {
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
    }

    .dropdown-menu.dropdown-menu-cols {
        display: none;
        grid-template-columns: 1fr;
        min-width: 0;
        padding: 0;
    }

    .dropdown-menu.dropdown-menu-cols.show {
        display: block;
    }

    /* 语言选择器 - 菜单底部 */
    .lang-selector {
        padding: 20px 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        margin-top: auto;
        display: block !important;
    }

    .lang-btn {
        display: none !important;
    }

    .lang-dropdown {
        position: static !important;
        display: flex !important;
        gap: 10px;
        transform: none !important;
        box-shadow: none !important;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        padding: 10px;
        opacity: 1 !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .lang-dropdown a {
        flex: 1;
        text-align: center;
        padding: 12px 10px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        text-decoration: none;
    }

    .lang-dropdown a:hover,
    .lang-dropdown a:active {
        background: rgba(255, 255, 255, 0.15);
    }

    /* 强制显示语言下拉 - 覆盖桌面端hover隐藏 */
    .lang-dropdown {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .lang-selector:hover .lang-dropdown {
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* ===== 4. 页面标题 ===== */
@media (max-width: 768px) {
    .page-header {
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }

    .page-header .container {
        position: relative;
        z-index: 2;
        text-align: center;
    }

    .page-header h1 {
        color: var(--white);
        font-size: 22px;
        font-weight: 700;
        letter-spacing: 1px;
        text-shadow: none;
        margin: 0;
        padding: 0;
    }
}

/* ===== 5. 首页 Hero ===== */
@media (max-width: 768px) {
    .hero {
        height: 50vh;
        min-height: 240px;
        max-height: 420px;
    }

    .hero-content h1 {
        font-size: 20px;
        line-height: 1.3;
        letter-spacing: 0.5px;
    }

    .hero-content p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .hero-btn {
        padding: 8px 20px;
        font-size: 12px;
        border-radius: 20px;
        width: auto !important;
        text-align: center;
    }

    /* 隐藏轮播图箭头按钮 */
    .slider-arrow,
    .slider-prev,
    .slider-next {
        display: none !important;
    }

    /* 隐藏轮播图指示器（小圆点） */
    .slider-indicators,
    .slider-dots,
    .dot {
        display: none !important;
    }
}

/* ===== 5b. 首页手机端专属样式 ===== */
@media (max-width: 768px) {
    /* 产品中心轮播区域 - 上下堆叠 */
    .cat-container {
        padding: 0 16px;
    }

    .cat-header {
        margin-bottom: 24px;
    }

    .cat-section-title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .cat-section-subtitle {
        font-size: 13px;
    }

    .cat-showcase {
        flex-direction: column;
        gap: 20px;
        min-height: auto;
        padding: 20px 0;
    }

    .cat-image-side {
        flex: none;
        width: 100%;
        min-height: 200px;
    }

    .cat-product-img {
        max-height: 220px;
    }

    .cat-info-side {
        width: 100%;
        text-align: center;
    }

    .cat-info-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .cat-info-desc {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 16px;
        padding: 0 10px;
    }

    .cat-info-btn {
        display: inline-block;
        padding: 10px 24px;
        font-size: 14px;
    }

    /* 隐藏左右箭头和导航点 */
    .cat-arrow,
    .cat-arrow-prev,
    .cat-arrow-next {
        display: none !important;
    }

    .cat-nav-side,
    .cat-nav-dots,
    .cat-nav-dot {
        display: none !important;
    }

    /* 资格认证区域 */
    .certifications-section {
        padding: 30px 0;
    }

    .cert-photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .cert-photo-item img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }
}

/* ===== 5c. 首页地图和轮播图修复 ===== */
@media (max-width: 768px) {
    /* 地图缩小 */
    #mapSection {
        padding: 0 !important;
    }

    #homeMap,
    iframe {
        height: 250px !important;
    }

    /* 轮播图 - 标准16:9比例 */
    .hero {
        height: 45vh;
        min-height: 200px;
        max-height: 320px;
    }

    .hero-slide {
        background-size: cover;
        background-position: center;
    }

    .hero-content h1 {
        font-size: 18px;
    }

    .hero-content p {
        font-size: 12px;
    }
}

/* ===== 6. 产品分类网格 ===== */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-card {
        padding: 16px 10px;
        text-align: center;
        border-radius: 10px;
    }

    .category-card img {
        max-height: 80px;
        width: auto;
        margin: 0 auto 10px;
    }

    .category-card h3 { font-size: 13px; margin-bottom: 4px; }
    .category-card p { font-size: 11px; }
}

/* ===== 7. 产品列表页 ===== */
@media (max-width: 768px) {
    .series-nav {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        flex-wrap: unset !important;
        gap: 8px;
        padding: 0 !important;
    }

    .series-nav-item { width: 100%; }

    .series-nav-item a {
        display: flex;
        align-items: center;
        padding: 10px 18px;
        font-size: 13px;
        white-space: nowrap;
        border-radius: 24px;
        border: 1px solid #ddd;
        color: #666;
        background: #fff;
        transition: all 0.2s ease;
        min-height: 40px;
    }

    .series-nav-item.active a,
    .series-nav-item a:hover {
        background: var(--primary-red);
        color: var(--white);
        border-color: var(--primary-red);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 !important;
    }

    .product-card,
    .product-item {
        padding: 10px;
        text-align: center;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .product-card img,
    .product-item img,
    .product-item-image img {
        height: 120px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
        margin: 0 auto;
    }

    .product-item-image {
        width: 100% !important;
        aspect-ratio: 1;
    }

    .product-card h3,
    .product-item h3 {
        font-size: 12px;
        margin-top: 8px;
        line-height: 1.3;
    }

    .product-card p { font-size: 11px; }

    .products-layout { flex-direction: column; }

    .products-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 12px 0;
    }

    .cat-tabs {
        display: flex;
        overflow-x: auto;
        gap: 8px;
        padding: 10px 0;
        -webkit-overflow-scrolling: touch;
    }

    .cat-tab { flex-shrink: 0; padding: 10px 16px; font-size: 13px; }
}

/* ===== 8. 产品详情页 - 关键修复 ===== */
@media (max-width: 768px) {
    .product-detail {
        padding-top: 66px;
    }

    /* 隐藏面包屑导航 - 手机不需要 */
    .breadcrumb,
    .breadcrumbs,
    .breadcrumb-nav,
    .detail-breadcrumb {
        display: none !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    /* 布局容器 - 确保全宽 */
    .product-detail-layout {
        flex-direction: column;
        padding: 0 16px !important;
        gap: 16px;
        max-width: 100% !important;
        width: 100% !important;
    }

    /* 画廊卡片 */
    .gallery-card {
        width: 100% !important;
        flex: none !important;
        max-width: 100% !important;
    }

    /* 产品图片 */
    .product-main-img {
        width: 100%;
        height: auto;
        max-height: 320px;
        object-fit: contain;
        border-radius: 8px;
    }

    .product-thumbs {
        display: flex;
        gap: 10px;
        padding: 12px 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .product-thumbs img {
        width: 64px;
        height: 64px;
        object-fit: contain;
        border: 2px solid #eee;
        border-radius: 8px;
        flex-shrink: 0;
    }

    .product-thumbs img.active,
    .product-thumbs img:hover {
        border-color: var(--primary-red);
    }

    /* ========== 信息卡片 - 全宽！ ========== */
    .info-card {
        width: 100% !important;
        flex: none !important;
        max-width: 100% !important;
        min-width: 100% !important;
        padding: 16px !important;
        box-sizing: border-box !important;
        overflow: hidden;
    }

    .info-card-title {
        font-size: 20px;
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    /* 产品信息 */
    .product-info h1 {
        font-size: 20px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .product-info .price {
        font-size: 18px;
        margin-bottom: 12px;
    }

    /* ========== 参数表格 - 全宽占满 ========== */
    .spec-table,
    table.spec-table {
        width: 100% !important;
        border-collapse: collapse !important;
        margin: 0 !important;
        font-size: 15px !important;
        display: table !important;
        table-layout: auto !important;
    }

    .spec-table tr {
        border-bottom: 1px solid #eee !important;
        display: table-row !important;
    }

    .spec-table th {
        padding: 14px 12px !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        color: #333 !important;
        text-align: left !important;
        width: auto !important;
        min-width: 35% !important;
        display: table-cell !important;
        background: #f8f9fa !important;
        vertical-align: middle !important;
    }

    .spec-table td {
        padding: 14px 12px !important;
        font-size: 15px !important;
        color: #555 !important;
        text-align: left !important;
        display: table-cell !important;
        width: auto !important;
        vertical-align: middle !important;
    }

    /* 产品规格容器 */
    .product-specs,
    .detail-specs {
        width: 100% !important;
        flex: none !important;
        max-width: 100% !important;
    }

    /* 咨询按钮 - 固定底部 */
    .consult-btn {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 14px 20px;
        background: var(--primary-red);
        color: var(--white);
        text-align: center;
        font-size: 16px;
        font-weight: 600;
        z-index: 999;
        box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
    }

    .consult-btn a {
        color: var(--white);
        text-decoration: none;
    }

    .footer {
        padding-bottom: 70px;
    }
}

/* ===== 9. 新闻列表页 ===== */
@media (max-width: 768px) {
    .news-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .news-card {
        display: flex;
        gap: 14px;
        padding: 14px;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .news-img {
        width: 110px;
        height: 85px;
        flex-shrink: 0;
        border-radius: 8px;
        overflow: hidden;
    }

    .news-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .news-content { flex: 1; min-width: 0; }
    .news-date { font-size: 12px; color: #999; margin-bottom: 6px; }
    .news-title {
        font-size: 15px;
        font-weight: 600;
        line-height: 1.4;
        margin-bottom: 6px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .news-excerpt {
        font-size: 13px;
        color: #666;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/* ===== 10. 新闻文章页 ===== */
@media (max-width: 768px) {
    .article-container { padding: 0 16px; }
    .article-header h1 { font-size: 20px; line-height: 1.4; }
    .article-meta { font-size: 13px; margin-bottom: 16px; }
    .article-body h2 { font-size: 18px; margin: 24px 0 12px; }
    .article-body h3 { font-size: 15px; }
    .article-body p { font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
    .article-body img { max-width: 100%; height: auto; border-radius: 8px; }
    .article-body table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ===== 11. 关于我们 ===== */
@media (max-width: 768px) {
    .about-intro h2 { font-size: 20px; }
    .about-intro p { font-size: 15px; line-height: 1.7; }
    .factory-gallery-section .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .factory-gallery-section .gallery-grid img {
        width: 100%;
        height: 130px;
        object-fit: cover;
        border-radius: 8px;
    }
    .cert-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .cert-gallery img { width: 100%; height: auto; border-radius: 6px; }
}

/* ===== 12. 联系我们 ===== */
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; gap: 24px; }
    .quick-contact-section { display: grid; grid-template-columns: 1fr; gap: 12px; }
    .quick-contact-card { padding: 20px; text-align: center; border-radius: 10px; }
    .quick-contact-card i { font-size: 28px; margin-bottom: 10px; }
    .contact-form input,
    .contact-form textarea,
    .contact-form select { font-size: 16px; padding: 14px; border-radius: 8px; }
    .whatsapp-qr { text-align: center; }
    .whatsapp-qr img { max-width: 160px; }
}

/* ===== 13. 统计数据区域 ===== */
@media (max-width: 768px) {
    .stats-section { padding: 35px 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .stat-item { padding: 18px 12px; text-align: center; border-radius: 10px; }
    .stat-val { font-size: 32px; }
    .stat-label { font-size: 12px; }
}

/* ===== 14. Footer - 手机端精简版 ===== */
@media (max-width: 768px) {
    .footer {
        padding: 16px 0 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    /* 产品中心和关于我们并排，联系我们单独一行 */
    .footer-col:nth-child(2),
    .footer-col:nth-child(3) {
        grid-column: span 1;
    }

    .footer-col:nth-child(4) {
        grid-column: 1 / -1;
    }

    /* 隐藏订阅表单（保持联系） */
    .footer-col:first-child {
        display: none !important;
    }

    .footer-col h4 {
        font-size: 14px;
        margin-bottom: 10px;
        color: var(--white);
    }

    .footer-col p,
    .footer-col a {
        font-size: 13px;
        line-height: 1.6;
    }

    .footer-col ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .footer-col ul li {
        padding: 2px 0;
        color: rgba(255, 255, 255, 0.8);
        font-size: 12px;
        line-height: 1.4;
    }

    /* 产品中心6个链接放两列 */
    .footer-col:nth-child(2) ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2px 8px;
    }

    .footer-col ul li a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-col ul li a:hover {
        color: var(--white);
    }

    /* 隐藏邮箱那一行 */
    .footer-col:last-child ul li:last-child {
        display: none !important;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 14px;
        margin-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        font-size: 12px;
        color: rgba(255, 255, 255, 0.6);
    }

    .footer-social {
        justify-content: center;
        margin-top: 10px;
    }
}

/* ===== 15. 通用组件 ===== */
@media (max-width: 768px) {
    .btn-primary,
    .btn-outline { padding: 12px 28px; font-size: 14px; border-radius: 24px; }
    .view-all-outline { padding: 10px 22px; font-size: 13px; }
    .form-group input,
    .form-group textarea,
    .form-group select { font-size: 16px; padding: 14px; }
    .card { padding: 18px; border-radius: 10px; }
    .section-title { font-size: 22px; margin-bottom: 18px; }

    .home-applications-section {
        padding: 38px 0;
    }

    .home-applications-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .home-applications-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .home-application-card,
    .home-application-card img {
        min-height: 150px;
    }
    .section-subtitle { font-size: 14px; }
    .fullscreen-overlay { z-index: 9999; }
}

/* ===== HX Mobile White Header Logo v20 ===== */
@media (max-width: 768px) {
  .header,
  .header.transparent,
  .header.scrolled,
  body.home .header,
  body.home .header.transparent,
  body:not(.home) .header {
    background: #fff !important;
    background-color: #fff !important;
    border-bottom: 1px solid #e7edf4 !important;
    box-shadow: 0 2px 12px rgba(15, 43, 91, .08) !important;
  }

  .header .logo {
    min-width: 0 !important;
  }

  .header .logo img {
    content: url("../images/brand/kv-mobile-logo.webp");
    width: 44px !important;
    height: 44px !important;
    object-fit: contain !important;
    display: block !important;
  }

  .header .logo-text {
    display: none !important;
  }

  .mobile-menu-toggle {
    border: 1px solid #d8e2ec !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  .mobile-menu-toggle span {
    background: #1d3557 !important;
  }

  .lang-btn {
    border-color: #d8e2ec !important;
    color: #1d3557 !important;
    background: #fff !important;
  }

  .lang-btn svg {
    stroke: #1d3557 !important;
  }
}

/* ============================================
   HX Chinese Mobile Final Pass
   Scope: Chinese desktop remains controlled by desktop CSS.
   ============================================ */

@media (max-width: 768px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        font-size: 15px;
        line-height: 1.65;
        padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
        background: #fff;
    }

    img,
    video,
    iframe {
        max-width: 100%;
    }

    a,
    button,
    input,
    textarea,
    select {
        min-height: 44px;
    }

    .container {
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .header,
    .header.transparent,
    .header.scrolled {
        position: sticky !important;
        top: 0;
        z-index: 10020 !important;
        height: 58px;
        background: #c62828 !important;
        box-shadow: 0 2px 10px rgba(15, 33, 54, 0.16);
    }

    body.home .header.transparent {
        background: #c62828 !important;
    }

    .nav-container {
        height: 58px;
        padding: 0 14px;
    }

    .logo img {
        height: 34px !important;
    }

    .logo-text {
        display: inline-block;
        max-width: 118px;
        overflow: hidden;
        text-overflow: ellipsis;
        color: #fff !important;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0;
    }

    .mobile-menu-toggle {
        display: inline-flex !important;
        border: 1px solid rgba(255, 255, 255, 0.36);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.08);
        flex-shrink: 0;
    }

    .mobile-menu-backdrop.show {
        display: block;
        opacity: 1;
        z-index: 10010 !important;
    }

    .nav-menu {
        position: fixed !important;
        top: 58px;
        right: 0;
        left: auto;
        bottom: 0;
        width: min(86vw, 360px);
        height: calc(100vh - 58px);
        display: flex !important;
        flex-direction: column;
        gap: 0;
        padding: 8px 0 18px;
        background: #10253d;
        transform: translateX(105%);
        opacity: 1;
        visibility: hidden;
        transition: transform 0.22s ease, visibility 0.22s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: -18px 0 40px rgba(0, 0, 0, 0.28);
        z-index: 10030 !important;
    }

    .nav-menu::before {
        display: none;
    }

    .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    }

    .nav-link {
        min-height: 50px;
        padding: 13px 20px;
        color: #fff !important;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0;
        opacity: 1 !important;
    }

    .nav-menu .nav-link,
    .nav-menu .lang-dropdown a {
        color: #fff !important;
        text-shadow: none !important;
    }

    .nav-item.active .nav-link {
        color: #fff !important;
        font-weight: 800;
        background: rgba(255, 255, 255, 0.08);
    }

    .nav-item:nth-child(2) .nav-link::after {
        content: "";
        width: 9px;
        height: 9px;
        border-right: 2px solid rgba(255, 255, 255, 0.72);
        border-bottom: 2px solid rgba(255, 255, 255, 0.72);
        transform: rotate(45deg);
        transition: transform 0.18s ease;
        margin-top: -4px;
    }

    .nav-item:nth-child(2).dropdown-open .nav-link::after {
        transform: rotate(-135deg);
        margin-top: 4px;
    }

    .dropdown-menu,
    .dropdown-menu.dropdown-menu-cols {
        position: static !important;
        display: none !important;
        max-height: none;
        min-width: 0;
        padding: 8px 14px 14px;
        margin: 0;
        background: rgba(255, 255, 255, 0.055);
        box-shadow: none;
        border: 0;
        border-radius: 0;
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    .dropdown-menu.show,
    .nav-item.dropdown-open .dropdown-menu.dropdown-menu-cols {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .dropdown-col {
        display: contents;
    }

    .dropdown-menu a {
        min-height: 42px;
        padding: 9px 10px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.1);
        color: #fff !important;
        font-size: 13px;
        font-weight: 650;
        line-height: 1.35;
        display: flex;
        align-items: center;
    }

    .lang-selector {
        display: block !important;
        margin-top: auto;
        padding: 14px;
    }

    .lang-dropdown {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 8px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.08);
    }

    .lang-dropdown a {
        min-height: 40px;
        padding: 8px;
        border-radius: 6px;
        color: #fff !important;
        font-size: 12px;
        text-align: center;
    }

    .footer {
        padding: 28px 0 70px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-col:first-child {
        display: block !important;
    }

    .footer-col h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .footer-series-list {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 6px 12px;
    }

    .footer-col ul li,
    .footer-col ul li a {
        font-size: 13px;
        line-height: 1.55;
    }

    .footer-col:last-child ul li:last-child {
        display: list-item !important;
    }

    .hx-mobile-contact-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 10040;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        background: #fff;
        border-top: 1px solid #e1e6ee;
        box-shadow: 0 -6px 22px rgba(17, 37, 61, 0.16);
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }

    .hx-mobile-contact-bar a {
        min-height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1d3557;
        text-decoration: none;
        font-size: 13px;
        font-weight: 700;
        border-right: 1px solid #e8edf3;
    }

    .hx-mobile-contact-bar a:last-child {
        border-right: 0;
        background: #c62828;
        color: #fff;
    }

    .footer,
    main,
    .product-detail-page,
    .spv-detail-wrap,
    .applications-wrap,
    .downloads-section,
    .news-section,
    .contact-page {
        scroll-margin-bottom: 84px;
    }

    .dropdown-menu .mobile-all-products-link {
        display: flex !important;
        grid-column: 1 / -1;
        justify-content: center;
        background: #c62828 !important;
        border-color: #d63a3a !important;
        color: #fff !important;
        font-weight: 800;
    }

    .spv-card-name,
    .card-name,
    .news-card h3,
    .download-card strong,
    .download-card span,
    .article-body p,
    .article-body li {
        overflow-wrap: anywhere;
        word-break: normal;
    }
}

/* ===== HX Mobile Downloads Final Override ===== */
@media (max-width: 768px) {
    body.hx-ui-polish .download-group {
        margin-bottom: 14px !important;
        padding: 14px !important;
        border-radius: 12px !important;
    }

    body.hx-ui-polish .download-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    body.hx-ui-polish .download-card {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        gap: 7px !important;
        min-height: 82px !important;
        margin: 0 !important;
        padding: 10px !important;
        border-radius: 10px !important;
    }

    body.hx-ui-polish .download-card strong {
        display: -webkit-box !important;
        margin: 0 !important;
        overflow: hidden !important;
        font-size: 14px !important;
        line-height: 1.35 !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }

    body.hx-ui-polish .download-card span:not(.download-badge) {
        display: none !important;
    }

    body.hx-ui-polish .download-badge {
        width: max-content !important;
        min-height: 24px !important;
        padding: 4px 7px !important;
        border-radius: 8px !important;
        font-size: 10px !important;
    }
}

/* ===== HX Mobile Final Override: Short Pages ===== */
@media (max-width: 768px) {
    .categories-section,
    .home-applications-section.hx-simple-applications,
    .home-seo-entry.hx-simple-selection,
    .certifications-section,
    .stats-section,
    .section,
    .applications-wrap,
    .news-section,
    .resource-wrap,
    .contact-page,
    .about-full,
    .factory-gallery-section {
        padding-top: 24px !important;
        padding-bottom: 28px !important;
    }

    .hero {
        height: 320px !important;
        min-height: 320px !important;
    }

    .cat-showcase {
        min-height: 0 !important;
        padding: 16px !important;
    }

    .cat-product-img {
        max-height: 150px !important;
    }

    .cat-info-desc,
    .hx-simple-head p,
    .section-header p,
    .stats-header p {
        display: -webkit-box !important;
        overflow: hidden !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }

    body.home .hx-simple-app-grid {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 12px !important;
        margin: 0 -16px !important;
        padding: 2px 16px 8px !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none !important;
    }

    body.home .hx-simple-app-grid::-webkit-scrollbar {
        display: none !important;
    }

    body.home .hx-simple-app-grid a {
        flex: 0 0 78% !important;
        width: 78% !important;
        min-height: 0 !important;
        padding: 0 !important;
        border-radius: 12px !important;
        scroll-snap-align: center !important;
    }

    body.home .hx-simple-app-grid strong {
        min-height: 42px !important;
        padding: 13px 14px 8px !important;
        font-size: 18px !important;
    }

    body.home .hx-simple-app-grid img {
        height: 138px !important;
        min-height: 138px !important;
        max-height: 138px !important;
    }

    body.home .hx-simple-app-grid span {
        min-height: 48px !important;
        padding: 10px 14px 14px !important;
        font-size: 13px !important;
        line-height: 1.45 !important;
    }

    .home-seo-entry.hx-simple-selection .hx-simple-selection-grid,
    .hx-simple-selection-grid {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 10px !important;
        margin: 0 -16px !important;
        padding: 0 16px 4px !important;
        overflow-x: auto !important;
        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none !important;
    }

    .hx-simple-selection-grid::-webkit-scrollbar {
        display: none !important;
    }

    .home-seo-entry.hx-simple-selection .hx-simple-selection-grid > div,
    .hx-simple-selection-grid > div {
        flex: 0 0 76% !important;
        min-height: 126px !important;
        padding: 15px !important;
        border: 1px solid #e3eaf2 !important;
        border-radius: 12px !important;
        background: #fff !important;
        box-shadow: 0 2px 14px rgba(15, 35, 55, .06) !important;
        scroll-snap-align: center !important;
    }

    .hx-simple-selection-grid > div::before {
        display: none !important;
    }

    .hx-simple-selection-grid h3 {
        margin: 0 0 9px !important;
        font-size: 17px !important;
    }

    .hx-simple-selection-grid a {
        min-height: 28px !important;
        padding: 6px 9px !important;
        border-radius: 999px !important;
        background: rgba(198, 40, 40, .08) !important;
        color: #9f1f26 !important;
        font-size: 12px !important;
    }

    .stats-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    .stat-item {
        min-height: 122px !important;
        padding: 12px 8px !important;
    }

    .stat-icon {
        width: 34px !important;
        height: 34px !important;
        margin-bottom: 7px !important;
    }

    .stat-number {
        font-size: 22px !important;
        margin-bottom: 3px !important;
    }

    .stat-label {
        font-size: 13px !important;
        margin-bottom: 3px !important;
    }

    .stat-desc {
        display: -webkit-box !important;
        overflow: hidden !important;
        font-size: 11px !important;
        line-height: 1.3 !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }

    .cert-photos-grid,
    .factory-gallery,
    .gallery-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    .cert-photo-item img,
    .factory-photo-item img,
    .gallery-grid img {
        width: 100% !important;
        height: 132px !important;
        min-height: 132px !important;
        object-fit: cover !important;
    }

    .applications-hero,
    .news-hero,
    .page-hero,
    .article-hero,
    body:has(.about-full) .about-full,
    body:has(.contact-page) .contact-title-band {
        padding-top: 24px !important;
        padding-bottom: 14px !important;
    }

    .applications-hero h1,
    .news-hero h1,
    .page-hero h1,
    .article-hero h1,
    body:has(.about-full) .about-intro h1,
    body:has(.contact-page) .contact-title-band h1 {
        font-size: 26px !important;
        margin-bottom: 7px !important;
    }

    .applications-hero p,
    .news-hero p,
    .page-hero p,
    .article-hero p,
    body:has(.about-full) .about-intro p,
    body:has(.contact-page) .contact-title-band p {
        display: -webkit-box !important;
        overflow: hidden !important;
        font-size: 13px !important;
        line-height: 1.55 !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }

    .application-solution {
        display: grid !important;
        grid-template-columns: 96px minmax(0, 1fr) !important;
        gap: 10px !important;
        margin-bottom: 9px !important;
        padding: 10px !important;
    }

    .application-media,
    .application-media img {
        width: 96px !important;
        height: 104px !important;
        min-height: 104px !important;
    }

    .application-copy h2 {
        font-size: 16px !important;
        margin: 0 0 4px !important;
    }

    .application-copy > p {
        display: -webkit-box !important;
        overflow: hidden !important;
        font-size: 12px !important;
        line-height: 1.42 !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }

    .application-condition,
    .application-products strong {
        display: none !important;
    }

    .application-products a {
        min-height: 23px !important;
        padding: 4px 7px !important;
        font-size: 11px !important;
    }

    .news-featured,
    .news-grid,
    .news-side-list {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    .news-featured-card,
    .news-card,
    .news-side-list a {
        display: block !important;
        min-height: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .news-featured-card img,
    .news-card-media img {
        width: 100% !important;
        height: 76px !important;
        min-height: 76px !important;
    }

    .news-featured-body,
    .news-card-body {
        padding: 9px !important;
    }

    .news-featured-body h2,
    .news-card h3,
    .news-side-list strong {
        display: -webkit-box !important;
        overflow: hidden !important;
        font-size: 13px !important;
        line-height: 1.35 !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }

    .news-featured-body p,
    .news-card p,
    .news-card-meta,
    .news-side-list span {
        display: none !important;
    }

    .download-grid,
    .downloads-grid,
    .resources-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 7px !important;
    }

    .download-group {
        margin-bottom: 10px !important;
        padding: 11px !important;
    }

    .download-group h2 {
        margin-bottom: 8px !important;
        font-size: 18px !important;
    }

    .download-card {
        min-height: 74px !important;
        padding: 9px !important;
    }

    .download-card strong {
        font-size: 13px !important;
        line-height: 1.32 !important;
    }

    .download-badge {
        min-height: 22px !important;
        padding: 3px 6px !important;
        font-size: 9px !important;
    }

    .about-detail-section {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .about-detail-block {
        margin: 0 !important;
        padding: 12px !important;
    }

    .about-detail-block h3 {
        font-size: 15px !important;
        margin-bottom: 5px !important;
    }

    .about-detail-block p {
        display: -webkit-box !important;
        overflow: hidden !important;
        font-size: 12px !important;
        line-height: 1.45 !important;
        -webkit-line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
    }

    .quick-contact-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 7px !important;
    }

    .quick-contact-card {
        min-height: 98px !important;
        padding: 10px 6px !important;
    }

    .quick-contact-card .card-desc,
    .quick-contact-btn {
        display: none !important;
    }

    .footer {
        padding: 18px 0 48px !important;
    }

    .footer-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
        margin-bottom: 10px !important;
    }

    .footer-col:first-child {
        display: none !important;
    }

    .footer-products {
        grid-column: 1 / -1 !important;
    }

    .footer-col h4 {
        margin-bottom: 6px !important;
        font-size: 15px !important;
    }

    .footer-series-list {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 6px !important;
        margin: 0 -16px !important;
        padding: 0 16px 4px !important;
        overflow-x: auto !important;
        scrollbar-width: none !important;
    }

    .footer-series-list::-webkit-scrollbar {
        display: none !important;
    }

    .footer-series-list li {
        flex: 0 0 auto !important;
    }

    .footer-series-list a {
        width: auto !important;
        min-height: 28px !important;
        padding: 5px 9px !important;
        border-radius: 999px !important;
        font-size: 11px !important;
        white-space: nowrap !important;
    }

    .footer-col:nth-child(3) ul,
    .footer-col:nth-child(4) ul {
        gap: 2px !important;
    }

    .footer-col:nth-child(3) ul li a,
    .footer-col:nth-child(4) ul li,
    .footer-col:nth-child(4) ul li a {
        min-height: 20px !important;
        font-size: 11px !important;
        line-height: 1.3 !important;
    }

    .footer-bottom {
        margin-top: 8px !important;
        padding-top: 8px !important;
    }
}

/* ===== HX Mobile Final Compact Layout Pass ===== */
@media (max-width: 768px) {
    body {
        background: #f5f7fa !important;
    }

    .hero {
        min-height: 320px !important;
        height: 320px !important;
    }

    .hero-content {
        padding: 0 18px !important;
    }

    .hero-content h1,
    .hero-title {
        font-size: 29px !important;
        line-height: 1.22 !important;
        margin-bottom: 10px !important;
    }

    .hero-content p {
        font-size: 15px !important;
        line-height: 1.55 !important;
        margin-bottom: 16px !important;
    }

    .categories-section,
    .home-applications-section.hx-simple-applications,
    .home-seo-entry.hx-simple-selection,
    .certifications-section,
    .stats-section,
    .section,
    .applications-wrap,
    .news-section,
    .resource-wrap,
    .contact-page,
    .about-full,
    .factory-gallery-section {
        padding-top: 26px !important;
        padding-bottom: 30px !important;
    }

    .cat-header,
    .hx-simple-head,
    .stats-header,
    .section-header,
    .factory-gallery-section .section-title,
    .quick-contact-section .section-title {
        margin-bottom: 14px !important;
    }

    .cat-section-title,
    .hx-simple-head h2,
    .stats-header h2,
    .section-header h2,
    .factory-gallery-section .section-title h2 {
        font-size: 24px !important;
        line-height: 1.25 !important;
        margin-bottom: 6px !important;
    }

    .cat-section-subtitle,
    .hx-simple-head p,
    .stats-header p,
    .section-header p,
    .factory-gallery-section .section-title p {
        display: -webkit-box !important;
        overflow: hidden !important;
        font-size: 13px !important;
        line-height: 1.55 !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }

    .cat-showcase {
        min-height: 0 !important;
        padding: 18px !important;
        border-radius: 14px !important;
    }

    .cat-image-side {
        min-height: 150px !important;
    }

    .cat-product-img {
        max-height: 150px !important;
    }

    .cat-info-content {
        padding: 0 !important;
    }

    .cat-info-title {
        font-size: 22px !important;
        margin-bottom: 8px !important;
    }

    .cat-info-desc {
        display: -webkit-box !important;
        overflow: hidden !important;
        font-size: 13px !important;
        line-height: 1.55 !important;
        -webkit-line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
    }

    body.home .hx-simple-app-grid {
        gap: 12px !important;
        padding-bottom: 8px !important;
    }

    body.home .hx-simple-app-grid a {
        flex-basis: 78% !important;
        width: 78% !important;
        border-radius: 12px !important;
    }

    body.home section.home-applications-section.hx-simple-applications .hx-simple-app-grid > a > strong {
        min-height: 42px !important;
        padding: 13px 14px 8px !important;
        font-size: 18px !important;
    }

    body.home section.home-applications-section.hx-simple-applications .hx-simple-app-grid > a > img {
        height: 138px !important;
        min-height: 138px !important;
        max-height: 138px !important;
    }

    body.home section.home-applications-section.hx-simple-applications .hx-simple-app-grid > a > span {
        min-height: 48px !important;
        padding: 10px 14px 14px !important;
        font-size: 13px !important;
        line-height: 1.45 !important;
    }

    .home-applications-section .hx-simple-more {
        margin: -2px 0 12px !important;
        text-align: left !important;
    }

    .home-applications-section .hx-simple-more a {
        font-size: 13px !important;
    }

    .home-seo-entry.hx-simple-selection .hx-simple-selection-grid,
    .hx-simple-selection-grid {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 10px !important;
        margin: 0 -16px !important;
        padding: 0 16px 4px !important;
        overflow-x: auto !important;
        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none !important;
    }

    .home-seo-entry.hx-simple-selection .hx-simple-selection-grid::-webkit-scrollbar,
    .hx-simple-selection-grid::-webkit-scrollbar {
        display: none !important;
    }

    .home-seo-entry.hx-simple-selection .hx-simple-selection-grid > div,
    .hx-simple-selection-grid > div {
        flex: 0 0 76% !important;
        min-height: 128px !important;
        padding: 15px !important;
        border: 1px solid #e3eaf2 !important;
        border-radius: 12px !important;
        background: #fff !important;
        box-shadow: 0 2px 14px rgba(15, 35, 55, .06) !important;
        scroll-snap-align: center !important;
    }

    .home-seo-entry.hx-simple-selection .hx-simple-selection-grid > div::before,
    .hx-simple-selection-grid > div::before {
        display: none !important;
    }

    .home-seo-entry.hx-simple-selection .hx-simple-selection-grid h3,
    .hx-simple-selection-grid h3 {
        margin: 0 0 10px !important;
        font-size: 17px !important;
        line-height: 1.25 !important;
    }

    .home-seo-entry.hx-simple-selection .hx-simple-selection-grid p,
    .hx-simple-selection-grid p {
        gap: 7px !important;
    }

    .home-seo-entry.hx-simple-selection .hx-simple-selection-grid a,
    .hx-simple-selection-grid a {
        min-height: 28px !important;
        padding: 6px 9px !important;
        border-radius: 999px !important;
        background: rgba(198, 40, 40, .08) !important;
        color: #9f1f26 !important;
        font-size: 12px !important;
        line-height: 1.2 !important;
    }

    .stats-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    .stat-item {
        min-height: 126px !important;
        padding: 14px 8px !important;
        border-radius: 12px !important;
    }

    .stat-icon {
        width: 36px !important;
        height: 36px !important;
        margin-bottom: 8px !important;
    }

    .stat-number {
        font-size: 23px !important;
        line-height: 1.15 !important;
        margin-bottom: 4px !important;
    }

    .stat-label {
        font-size: 13px !important;
        line-height: 1.25 !important;
        margin-bottom: 4px !important;
    }

    .stat-desc {
        display: -webkit-box !important;
        overflow: hidden !important;
        font-size: 11px !important;
        line-height: 1.35 !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }

    .cert-photos-grid,
    .factory-gallery,
    .gallery-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    .cert-photo-item,
    .factory-photo-item,
    .gallery-item {
        border-radius: 10px !important;
        overflow: hidden !important;
    }

    .cert-photo-item img,
    .factory-photo-item img,
    .gallery-grid img {
        width: 100% !important;
        height: 136px !important;
        min-height: 136px !important;
        object-fit: cover !important;
    }

    .applications-hero,
    .news-hero,
    .page-hero,
    .article-hero,
    body:has(.about-full) .about-full,
    body:has(.contact-page) .contact-title-band {
        padding-top: 26px !important;
        padding-bottom: 14px !important;
    }

    .applications-hero h1,
    .news-hero h1,
    .page-hero h1,
    .article-hero h1,
    body:has(.about-full) .about-intro h1,
    body:has(.contact-page) .contact-title-band h1 {
        font-size: 26px !important;
        margin-bottom: 7px !important;
    }

    .applications-hero p,
    .news-hero p,
    .page-hero p,
    .article-hero p,
    body:has(.about-full) .about-intro p,
    body:has(.contact-page) .contact-title-band p {
        display: -webkit-box !important;
        overflow: hidden !important;
        font-size: 13px !important;
        line-height: 1.55 !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }

    .applications-directory,
    .applications-sidebar.applications-directory,
    .news-tabs,
    .resource-sidebar {
        gap: 10px !important;
        margin: 0 -16px 10px !important;
        padding: 0 16px 3px !important;
    }

    .applications-directory a,
    .news-tabs a,
    .resource-sidebar a {
        min-height: 30px !important;
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
        font-size: 13px !important;
        font-weight: 700 !important;
    }

    .application-solution {
        display: grid !important;
        grid-template-columns: 96px minmax(0, 1fr) !important;
        gap: 10px !important;
        margin-bottom: 9px !important;
        padding: 10px !important;
        border-radius: 12px !important;
    }

    .application-media,
    .application-media img {
        width: 96px !important;
        height: 104px !important;
        min-height: 104px !important;
        border-radius: 10px !important;
        object-fit: cover !important;
    }

    .application-copy h2 {
        margin: 0 0 4px !important;
        font-size: 16px !important;
        line-height: 1.25 !important;
    }

    .application-copy > p {
        display: -webkit-box !important;
        margin: 0 0 7px !important;
        overflow: hidden !important;
        font-size: 12px !important;
        line-height: 1.42 !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }

    .application-condition,
    .application-products strong {
        display: none !important;
    }

    .application-products div {
        gap: 5px !important;
    }

    .application-products a {
        min-height: 23px !important;
        padding: 4px 7px !important;
        font-size: 11px !important;
    }

    .news-featured,
    .news-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    .news-featured-card,
    .news-card,
    .news-side-list a {
        display: block !important;
        min-height: 0 !important;
        padding: 0 !important;
        border-radius: 12px !important;
        overflow: hidden !important;
    }

    .news-side-list {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    .news-featured-card img,
    .news-card-media img {
        width: 100% !important;
        height: 76px !important;
        min-height: 76px !important;
        border-radius: 0 !important;
        object-fit: cover !important;
    }

    .news-featured-body,
    .news-card-body {
        padding: 9px !important;
    }

    .news-featured-body h2,
    .news-card h3,
    .news-side-list strong {
        display: -webkit-box !important;
        overflow: hidden !important;
        font-size: 13px !important;
        line-height: 1.35 !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }

    .news-featured-body p,
    .news-card p,
    .news-card-meta,
    .news-side-list span {
        display: none !important;
    }

    .news-category {
        margin-top: 12px !important;
    }

    .news-category h2 {
        margin-bottom: 8px !important;
        font-size: 17px !important;
    }

    .download-group {
        margin-bottom: 10px !important;
        padding: 11px !important;
        border-radius: 12px !important;
    }

    .download-group h2 {
        margin-bottom: 8px !important;
        font-size: 18px !important;
    }

    .download-grid,
    .downloads-grid,
    .resources-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 7px !important;
    }

    .download-card {
        min-height: 74px !important;
        padding: 9px !important;
        border-radius: 10px !important;
    }

    .download-card strong {
        font-size: 13px !important;
        line-height: 1.32 !important;
        -webkit-line-clamp: 2 !important;
    }

    .download-badge {
        min-height: 22px !important;
        padding: 3px 6px !important;
        font-size: 9px !important;
    }

    .resource-cta,
    .applications-cta {
        margin-top: 14px !important;
        padding: 16px !important;
        border-radius: 12px !important;
    }

    .resource-cta p,
    .applications-cta p {
        display: -webkit-box !important;
        overflow: hidden !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }

    .about-detail-section {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
        padding-bottom: 12px !important;
    }

    .about-detail-block {
        margin: 0 !important;
        padding: 12px !important;
        border: 1px solid #e7edf4 !important;
        border-radius: 12px !important;
        background: #fff !important;
        box-shadow: 0 2px 14px rgba(15, 35, 55, .05) !important;
    }

    .about-detail-block h3 {
        margin-bottom: 5px !important;
        font-size: 15px !important;
    }

    .about-detail-block p {
        display: -webkit-box !important;
        overflow: hidden !important;
        font-size: 12px !important;
        line-height: 1.45 !important;
        -webkit-line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
    }

    .quick-contact-grid {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 7px !important;
    }

    .quick-contact-card {
        min-height: 98px !important;
        padding: 10px 6px !important;
    }

    .quick-contact-icon {
        width: 32px !important;
        height: 32px !important;
        margin-bottom: 6px !important;
    }

    .quick-contact-card h4 {
        font-size: 13px !important;
        line-height: 1.25 !important;
    }

    .quick-contact-card .card-desc,
    .quick-contact-btn {
        display: none !important;
    }

    .contact-grid,
    .contact-form-section {
        gap: 12px !important;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        min-height: 42px !important;
        padding: 10px 12px !important;
    }

    .contact-form textarea {
        min-height: 86px !important;
    }

    #contactMap {
        height: 220px !important;
    }

    .footer {
        padding: 18px 0 48px !important;
    }

    .footer-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
        margin-bottom: 10px !important;
    }

    .footer-col:first-child {
        display: none !important;
    }

    .footer-products {
        grid-column: 1 / -1 !important;
    }

    .footer-col h4 {
        margin-bottom: 6px !important;
        font-size: 15px !important;
    }

    .footer-series-list {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 6px !important;
        margin: 0 -16px !important;
        padding: 0 16px 4px !important;
        overflow-x: auto !important;
        scrollbar-width: none !important;
    }

    .footer-series-list::-webkit-scrollbar {
        display: none !important;
    }

    .footer-series-list li {
        flex: 0 0 auto !important;
    }

    .footer-series-list a {
        width: auto !important;
        min-height: 28px !important;
        padding: 5px 9px !important;
        border-radius: 999px !important;
        font-size: 11px !important;
        white-space: nowrap !important;
    }

    .footer-col:nth-child(3) ul,
    .footer-col:nth-child(4) ul {
        gap: 2px !important;
    }

    .footer-col:nth-child(3) ul li a,
    .footer-col:nth-child(4) ul li,
    .footer-col:nth-child(4) ul li a {
        min-height: 20px !important;
        font-size: 11px !important;
        line-height: 1.3 !important;
    }

    .footer-bottom {
        margin-top: 8px !important;
        padding-top: 8px !important;
    }
}

/* ===== HX Mobile Compact Page Density Pass ===== */
@media (max-width: 768px) {
    .applications-hero,
    .news-hero,
    main > .page-hero,
    .contact-title-band {
        padding: 86px 16px 18px !important;
        min-height: 0 !important;
        text-align: left !important;
    }

    .applications-hero .container,
    .news-hero .container,
    main > .page-hero .container,
    .contact-title-band {
        max-width: 100% !important;
    }

    .applications-hero h1,
    .news-hero h1,
    main > .page-hero h1,
    .contact-title-band h1,
    .page-main-title {
        margin: 0 0 8px !important;
        font-size: 28px !important;
        line-height: 1.2 !important;
        text-align: left !important;
    }

    .applications-hero p,
    .news-hero p,
    main > .page-hero p,
    .contact-title-band p {
        display: -webkit-box !important;
        max-width: 100% !important;
        margin: 0 !important;
        overflow: hidden !important;
        color: #5f6b7a !important;
        font-size: 14px !important;
        line-height: 1.55 !important;
        text-align: left !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }

    .applications-wrap,
    .news-section,
    .resource-wrap,
    .contact-page,
    .about-full,
    .factory-gallery-section {
        padding-top: 16px !important;
        padding-bottom: 34px !important;
    }

    .applications-layout,
    .resource-layout,
    .article-layout,
    .app-detail-layout {
        gap: 14px !important;
    }

    .applications-directory,
    .resource-sidebar {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;
        margin: 0 -16px 12px !important;
        padding: 0 16px 4px !important;
        overflow-x: auto !important;
        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        scrollbar-width: none !important;
    }

    .applications-directory::-webkit-scrollbar,
    .resource-sidebar::-webkit-scrollbar {
        display: none !important;
    }

    .applications-directory h2 {
        display: none !important;
    }

    .applications-directory a,
    .resource-sidebar a,
    .news-tabs a {
        flex: 0 0 auto !important;
        min-height: 32px !important;
        margin: 0 !important;
        padding: 7px 10px !important;
        border: 1px solid #e3e9f1 !important;
        border-radius: 999px !important;
        background: #fff !important;
        color: #405169 !important;
        font-size: 12px !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
        box-shadow: none !important;
    }

    .application-solution {
        display: grid !important;
        grid-template-columns: 112px minmax(0, 1fr) !important;
        gap: 10px !important;
        min-height: 0 !important;
        margin-bottom: 10px !important;
        padding: 10px !important;
        border-radius: 12px !important;
    }

    .application-media,
    .application-media img {
        width: 112px !important;
        height: 116px !important;
        min-height: 116px !important;
        border-radius: 10px !important;
        object-fit: cover !important;
    }

    .application-copy {
        min-width: 0 !important;
        padding: 0 !important;
    }

    .application-index {
        display: none !important;
    }

    .application-copy h2 {
        margin: 0 0 4px !important;
        font-size: 17px !important;
        line-height: 1.25 !important;
    }

    .application-copy > p {
        display: -webkit-box !important;
        margin: 0 0 7px !important;
        overflow: hidden !important;
        font-size: 12px !important;
        line-height: 1.45 !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }

    .application-condition {
        display: none !important;
    }

    .application-products {
        margin: 0 !important;
    }

    .application-products strong {
        display: none !important;
    }

    .application-products div {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 5px !important;
    }

    .application-products a {
        min-height: 24px !important;
        padding: 4px 7px !important;
        border-radius: 999px !important;
        background: rgba(198, 40, 40, .08) !important;
        color: #9f1f26 !important;
        font-size: 11px !important;
        line-height: 1.2 !important;
    }

    .news-featured {
        display: block !important;
        margin-bottom: 14px !important;
    }

    .news-featured-card {
        display: grid !important;
        grid-template-columns: 96px minmax(0, 1fr) !important;
        min-height: 0 !important;
        margin-bottom: 10px !important;
        border-radius: 12px !important;
    }

    .news-featured-card img {
        width: 96px !important;
        height: 104px !important;
        object-fit: cover !important;
    }

    .news-featured-body {
        padding: 10px !important;
    }

    .news-featured-body h2 {
        display: -webkit-box !important;
        margin: 0 0 5px !important;
        overflow: hidden !important;
        font-size: 16px !important;
        line-height: 1.35 !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }

    .news-featured-body p {
        display: -webkit-box !important;
        overflow: hidden !important;
        font-size: 12px !important;
        line-height: 1.45 !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }

    .news-side-list {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
        margin-bottom: 12px !important;
    }

    .news-side-list a,
    .news-card {
        min-height: 0 !important;
        padding: 10px !important;
        border-radius: 12px !important;
    }

    .news-side-list strong,
    .news-card h3 {
        display: -webkit-box !important;
        margin: 0 !important;
        overflow: hidden !important;
        font-size: 14px !important;
        line-height: 1.35 !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }

    .news-side-list span,
    .news-card-meta {
        margin-bottom: 5px !important;
        font-size: 10px !important;
        line-height: 1.25 !important;
    }

    .news-directory-wrap {
        margin: 6px 0 12px !important;
    }

    .news-directory-title {
        display: none !important;
    }

    .news-tabs {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        margin: 0 -16px !important;
        padding: 0 16px 4px !important;
        overflow-x: auto !important;
        scrollbar-width: none !important;
    }

    .news-tabs::-webkit-scrollbar {
        display: none !important;
    }

    .news-category {
        margin-top: 12px !important;
        padding-top: 0 !important;
    }

    .news-category h2 {
        margin: 0 0 8px !important;
        font-size: 18px !important;
        line-height: 1.3 !important;
    }

    .news-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    .news-card-body {
        padding: 0 !important;
    }

    .news-card p {
        display: none !important;
    }

    .about-full {
        padding-top: 86px !important;
    }

    .about-intro {
        margin-bottom: 18px !important;
        text-align: left !important;
    }

    .about-intro h1,
    .about-intro h2 {
        margin-bottom: 8px !important;
        font-size: 28px !important;
        line-height: 1.2 !important;
        text-align: left !important;
    }

    .about-intro p,
    .about-detail-block p {
        display: -webkit-box !important;
        overflow: hidden !important;
        font-size: 13px !important;
        line-height: 1.65 !important;
        text-align: left !important;
        -webkit-box-orient: vertical !important;
    }

    .about-intro p {
        -webkit-line-clamp: 2 !important;
    }

    .about-detail-section {
        padding-bottom: 18px !important;
    }

    .about-detail-block {
        margin-bottom: 16px !important;
    }

    .about-detail-block h3 {
        margin-bottom: 8px !important;
        font-size: 18px !important;
        line-height: 1.35 !important;
    }

    .about-detail-block p {
        margin-bottom: 8px !important;
        -webkit-line-clamp: 4 !important;
    }

    .about-divider {
        display: none !important;
    }

    .factory-gallery-section .section-title {
        margin-bottom: 14px !important;
        text-align: left !important;
    }

    .factory-gallery-section .section-title h2 {
        font-size: 22px !important;
    }

    .factory-gallery-section .section-title p {
        display: none !important;
    }

    .factory-gallery {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    .factory-photo-item {
        border-radius: 10px !important;
    }

    .factory-photo-item img {
        height: 116px !important;
        min-height: 116px !important;
        object-fit: cover !important;
    }

    .quick-contact-section {
        margin-bottom: 16px !important;
    }

    .quick-contact-section .section-title {
        margin-bottom: 10px !important;
        text-align: left !important;
    }

    .quick-contact-section .section-title h2 {
        font-size: 20px !important;
    }

    .quick-contact-section .section-title p {
        display: none !important;
    }

    .quick-contact-grid {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    .quick-contact-card {
        min-height: 116px !important;
        padding: 12px 8px !important;
        border-radius: 12px !important;
    }

    .quick-contact-icon {
        width: 38px !important;
        height: 38px !important;
        margin-bottom: 8px !important;
    }

    .quick-contact-icon svg {
        width: 21px !important;
        height: 21px !important;
    }

    .quick-contact-card h4 {
        margin-bottom: 5px !important;
        font-size: 14px !important;
        line-height: 1.25 !important;
    }

    .quick-contact-card .card-desc,
    .quick-contact-btn,
    .whatsapp-qr-area {
        display: none !important;
    }

    .contact-form-section {
        padding: 18px 14px !important;
        border-radius: 14px !important;
    }

    .contact-form-section h3 {
        margin-bottom: 12px !important;
        font-size: 20px !important;
    }

    .form-row {
        gap: 8px !important;
    }

    .form-group {
        margin-bottom: 8px !important;
    }

    .form-group input,
    .form-group textarea {
        min-height: 42px !important;
        padding: 10px 12px !important;
        font-size: 13px !important;
    }

    .form-group textarea {
        min-height: 92px !important;
    }

    #mapSectionContact iframe,
    #contactMap {
        height: 220px !important;
    }

    .resource-cta,
    .applications-cta,
    .article-cta,
    .app-detail-cta {
        margin-top: 16px !important;
        padding: 16px !important;
        border-radius: 12px !important;
    }
}

/* ===== HX Mobile Compact Strong Overrides ===== */
@media (max-width: 768px) {
    body.hx-ui-polish.hx-industry-refine .application-solution,
    body.hx-ui-polish .application-solution {
        display: grid !important;
        grid-template-columns: 112px minmax(0, 1fr) !important;
        gap: 10px !important;
        margin-bottom: 10px !important;
        padding: 10px !important;
    }

    body.hx-ui-polish.hx-industry-refine .application-media,
    body.hx-ui-polish.hx-industry-refine .application-media img,
    body.hx-ui-polish .application-media,
    body.hx-ui-polish .application-media img {
        width: 112px !important;
        height: 116px !important;
        min-height: 116px !important;
        max-height: 116px !important;
    }

    body.hx-ui-polish.hx-industry-refine .news-grid,
    body.hx-ui-polish .news-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    body.hx-ui-polish.hx-industry-refine .news-card,
    body.hx-ui-polish .news-card {
        display: block !important;
        padding: 10px !important;
    }

    body.hx-ui-polish.hx-industry-refine .quick-contact-grid,
    body.hx-ui-polish .quick-contact-grid {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }
}

@media (min-width: 769px) {
    .hx-mobile-contact-bar {
        display: none !important;
    }
}

@media (max-width: 768px) {
    /* Home */
    .hero,
    .hero-slider,
    .hero-slide {
        min-height: 300px;
        height: 46vh;
        max-height: 430px;
    }

    .hero-content {
        width: 100%;
        padding: 0 18px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 24px !important;
        line-height: 1.28;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 14px !important;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .home-applications-grid {
        grid-template-columns: 1fr !important;
    }

    .home-application-card {
        border-radius: 8px;
        overflow: hidden;
    }

    .home-application-card img {
        height: 180px !important;
        object-fit: cover;
    }

    .quick-select,
    .quick-selection,
    .condition-selection,
    .home-selection-grid {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }

    /* Product center and category pages */
    .products-layout,
    .catalog-layout {
        display: block !important;
        padding: 18px 14px 44px !important;
    }

    .products-sidebar,
    .catalog-sidebar,
    .series-nav {
        position: static !important;
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
        padding: 12px !important;
        margin: 0 0 16px !important;
        border: 1px solid #e1e6ee !important;
        border-radius: 8px !important;
        background: #fff !important;
        overflow: visible !important;
    }

    .catalog-sidebar h2,
    .series-nav h3,
    .products-sidebar h3 {
        grid-column: 1 / -1;
        margin: 0 0 4px !important;
        padding: 0 0 8px !important;
        border-bottom: 1px solid #eef2f6 !important;
        font-size: 16px !important;
        color: #1d3557 !important;
    }

    .catalog-sidebar a,
    .series-nav a,
    .series-nav-item a,
    .products-sidebar a {
        min-height: 40px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 9px 8px !important;
        border: 1px solid #e3e9f1 !important;
        border-radius: 6px !important;
        background: #f8fafc !important;
        color: #1d3557 !important;
        text-align: center;
        font-size: 13px !important;
        line-height: 1.35;
        text-decoration: none;
    }

    .catalog-sidebar a.active,
    .series-nav-item.active a,
    .catalog-sidebar a:hover,
    .series-nav a:hover {
        border-color: #c62828 !important;
        background: #fff1f2 !important;
        color: #c62828 !important;
    }

    .products-header-tools,
    .products-toolbar,
    .catalog-summary {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        align-items: stretch !important;
    }

    .product-search,
    .products-search,
    .product-search input,
    .products-search input,
    input[type="search"] {
        width: 100% !important;
        min-height: 46px;
        font-size: 16px;
    }

    .products-grid,
    .bf-grid,
    .spv-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    .spv-card,
    .product-card,
    .product-item {
        height: auto !important;
        min-height: 210px;
        border-radius: 8px !important;
    }

    .spv-card-img,
    .card-image,
    .product-item-image {
        height: 142px !important;
        min-height: 142px !important;
        padding: 12px !important;
    }

    .spv-card-img img,
    .card-image img,
    .product-card img,
    .product-item img {
        max-width: 96% !important;
        max-height: 122px !important;
        object-fit: contain !important;
    }

    .spv-card-info,
    .card-info {
        min-height: 58px !important;
        padding: 9px 8px !important;
    }

    .spv-card-name,
    .card-name,
    .product-card h3,
    .product-item h3 {
        font-size: 12px !important;
        line-height: 1.4 !important;
        -webkit-line-clamp: 3;
    }

    .spv-pagination,
    .pagination {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin-top: 20px !important;
    }

    .spv-page-btn,
    .page-btn {
        min-width: 42px;
        height: 42px;
        border-radius: 6px;
    }

    .catalog-hero {
        padding: 82px 0 24px !important;
    }

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

    .catalog-hero p,
    .catalog-seo p,
    .catalog-seo li {
        font-size: 14px !important;
        line-height: 1.75 !important;
    }

    .catalog-seo {
        grid-template-columns: 1fr !important;
        padding: 16px !important;
        margin-bottom: 18px !important;
        border-radius: 8px !important;
    }

    .catalog-cta {
        display: grid !important;
        grid-template-columns: 1fr !important;
        padding: 18px !important;
        border-radius: 8px !important;
    }

    /* Product detail pages */
    .product-detail-page,
    .spv-detail-wrap {
        padding-top: 0 !important;
    }

    .product-detail-layout,
    .spv-panel {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        padding: 18px 16px !important;
    }

    .gallery-card,
    .info-card,
    .spv-gallery,
    .spv-info {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 8px !important;
    }

    .gallery-main-image,
    .spv-main-img {
        height: 280px !important;
        border-radius: 8px !important;
    }

    .gallery-main-image img,
    .spv-main-img img {
        max-width: 92% !important;
        max-height: 250px !important;
        object-fit: contain !important;
    }

    .gallery-thumbs-row,
    .product-thumbs {
        display: flex !important;
        gap: 8px !important;
        overflow-x: auto !important;
        padding-bottom: 8px !important;
    }

    .thumb-item,
    .product-thumbs img {
        width: 66px !important;
        height: 66px !important;
        flex: 0 0 66px !important;
    }

    .info-card-title,
    .spv-detail-hero h1 {
        font-size: 22px !important;
        line-height: 1.35 !important;
    }

    .spv-detail-hero {
        padding: 24px 16px !important;
    }

    .spv-detail-hero p {
        font-size: 13px !important;
        line-height: 1.6;
    }

    .spv-actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .spv-btn,
    .inquire-btn,
    .consult-btn,
    .btn-primary,
    .btn-outline {
        min-height: 46px !important;
        border-radius: 6px !important;
        font-size: 14px !important;
    }

    .spv-btn.light,
    .spv-actions a[href$=".pdf"] {
        grid-column: 1 / -1;
        order: -1;
        background: #1d3557 !important;
        color: #fff !important;
        border-color: #1d3557 !important;
    }

    .spec-table,
    table.spec-table {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
        overflow-wrap: anywhere;
    }

    .spec-table tbody,
    table.spec-table tbody {
        display: table;
        width: 100%;
        min-width: 320px;
    }

    .spec-table th {
        width: 38% !important;
    }

    .legacy-detail-seo,
    .spv-seo-section,
    .legacy-related,
    .related-section {
        padding: 0 16px !important;
        margin-top: 18px !important;
    }

    .legacy-detail-seo-box,
    .spv-seo-box {
        grid-template-columns: 1fr !important;
        padding: 16px !important;
        border-radius: 8px !important;
    }

    .legacy-related-grid,
    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    .related-card img {
        height: 112px !important;
        object-fit: contain;
    }
}

@media (max-width: 768px) {
    /* Applications */
    .applications-hero,
    .news-hero,
    .downloads-hero,
    .contact-hero,
    .article-hero {
        padding: 82px 0 28px !important;
        text-align: center;
    }

    .applications-hero h1,
    .news-hero h1,
    .downloads-hero h1,
    .contact-hero h1,
    .article-hero h1 {
        font-size: 26px !important;
        line-height: 1.3 !important;
    }

    .applications-directory,
    .news-tabs,
    .downloads-filter,
    .resource-filter {
        display: flex !important;
        overflow-x: auto !important;
        gap: 8px !important;
        padding-bottom: 8px !important;
        justify-content: flex-start !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .applications-directory::-webkit-scrollbar,
    .news-tabs::-webkit-scrollbar,
    .downloads-filter::-webkit-scrollbar,
    .resource-filter::-webkit-scrollbar {
        display: none;
    }

    .applications-directory a,
    .news-tabs a,
    .downloads-filter a,
    .resource-filter a {
        flex: 0 0 auto;
        min-height: 40px;
        white-space: nowrap;
        border-radius: 999px !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .applications-grid,
    .application-grid,
    .solutions-grid,
    .downloads-grid,
    .resources-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .application-card,
    .application-solution,
    .download-card,
    .resource-card {
        border-radius: 8px !important;
    }

    .application-card img,
    .application-solution img {
        height: 190px !important;
        object-fit: cover !important;
    }

    .app-detail-layout,
    .article-layout {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .app-detail-main img,
    .article-main img.article-img {
        height: 220px !important;
        object-fit: cover !important;
        border-radius: 8px !important;
    }

    .app-detail-side,
    .article-aside {
        position: static !important;
        border-radius: 8px !important;
    }

    .app-detail-main p a,
    .spv-meta-links a,
    .legacy-detail-links a,
    .spv-seo-links a {
        min-height: 40px;
        display: inline-flex;
        align-items: center;
        margin: 4px 6px 4px 0;
    }

    /* News */
    .news-featured,
    .news-featured-card,
    .news-grid {
        grid-template-columns: 1fr !important;
    }

    .news-featured-card {
        display: block !important;
        min-height: 0 !important;
    }

    .news-featured-card img,
    .news-card-media img {
        height: 190px !important;
        object-fit: cover !important;
    }

    .news-featured-body,
    .news-card-body {
        padding: 16px !important;
    }

    .news-featured-body h2,
    .news-card h3 {
        font-size: 18px !important;
        line-height: 1.42 !important;
    }

    .news-card {
        display: block !important;
        padding: 0 !important;
        border-radius: 8px !important;
        overflow: hidden;
    }

    .news-card-media {
        display: block !important;
    }

    .article-body table {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        white-space: nowrap;
    }

    .article-body h2 {
        font-size: 21px !important;
        line-height: 1.4;
    }

    .article-toc {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        padding: 16px !important;
        margin: 20px 0 24px !important;
        border-radius: 8px !important;
    }

    .article-toc strong {
        font-size: 16px !important;
    }

    .article-toc a {
        font-size: 14px !important;
        line-height: 1.55 !important;
    }

    .article-body p,
    .article-body li {
        font-size: 15px !important;
        line-height: 1.85 !important;
    }

    /* Downloads and contact */
    .download-card {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        padding: 16px !important;
        border-radius: 8px !important;
    }

    .download-card strong,
    .download-card span {
        overflow-wrap: anywhere;
    }

    .download-card a,
    .resource-card a {
        width: 100%;
        justify-content: center;
    }

    .contact-title-band,
    .contact-title-band h1,
    .contact-title-band h2 {
        text-align: center !important;
        justify-content: center !important;
    }

    .contact-grid,
    .contact-methods,
    .quick-contact-grid,
    .contact-cards {
        grid-template-columns: 1fr !important;
    }

    .contact-form,
    .contact-form form {
        width: 100% !important;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        width: 100% !important;
        min-height: 46px;
    }

    iframe,
    #homeMap {
        height: 240px !important;
    }
}

/* ===== HX Mobile Density Refinement ===== */
@media (max-width: 768px) {
    .catalog-hero,
    .spv-detail-hero,
    .applications-hero,
    .news-hero,
    .downloads-hero,
    .contact-hero,
    .article-hero {
        padding: 34px 0 18px !important;
        background: #f6f8fb !important;
    }

    .catalog-hero h1,
    .spv-detail-hero h1,
    .applications-hero h1,
    .news-hero h1,
    .downloads-hero h1,
    .contact-hero h1,
    .article-hero h1 {
        font-size: 24px !important;
        line-height: 1.25 !important;
        margin-bottom: 8px !important;
        text-align: left !important;
    }

    .catalog-hero p,
    .spv-detail-hero p,
    .applications-hero p,
    .news-hero p,
    .downloads-hero p,
    .contact-hero p,
    .article-hero p {
        display: -webkit-box !important;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 13px !important;
        line-height: 1.65 !important;
        text-align: left !important;
        margin: 0 !important;
    }

    .catalog-wrap {
        padding-top: 14px !important;
    }

    .products-layout,
    .catalog-layout {
        padding-top: 12px !important;
    }

    .products-sidebar,
    .catalog-sidebar,
    .series-nav {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 10px 12px !important;
        margin-bottom: 14px !important;
        border-radius: 8px !important;
        background: #fff !important;
    }

    .products-sidebar::-webkit-scrollbar,
    .catalog-sidebar::-webkit-scrollbar,
    .series-nav::-webkit-scrollbar {
        display: none;
    }

    .catalog-sidebar h2,
    .series-nav h3,
    .products-sidebar h3 {
        position: sticky;
        left: 0;
        flex: 0 0 auto;
        min-height: 38px;
        display: inline-flex;
        align-items: center;
        padding: 0 12px 0 0 !important;
        margin: 0 !important;
        border: 0 !important;
        background: #fff !important;
        font-size: 15px !important;
        z-index: 2;
    }

    .catalog-sidebar a,
    .series-nav a,
    .series-nav-item a,
    .products-sidebar a {
        flex: 0 0 auto;
        min-width: 94px;
        min-height: 38px;
        padding: 8px 12px !important;
        border-radius: 999px !important;
        white-space: nowrap;
        font-size: 13px !important;
    }

    .catalog-summary {
        margin-bottom: 10px !important;
    }

    .catalog-summary span {
        display: none !important;
    }

    .catalog-seo {
        padding: 14px !important;
        margin-bottom: 14px !important;
        background: #f8fafc !important;
        border-radius: 8px !important;
    }

    .catalog-seo h2 {
        font-size: 18px !important;
        margin-bottom: 8px !important;
    }

    .catalog-seo h3,
    .catalog-seo ul,
    .catalog-seo-side h3 {
        display: none !important;
    }

    .catalog-seo p {
        display: -webkit-box !important;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin: 0 !important;
    }

    .catalog-seo-side {
        display: flex !important;
        gap: 8px;
        overflow-x: auto;
        border: 0 !important;
        background: transparent !important;
        padding: 8px 0 0 !important;
    }

    .catalog-seo-side a {
        flex: 0 0 auto;
        min-height: 36px;
        padding: 7px 10px !important;
        border: 1px solid #dde5ee !important;
        border-radius: 999px !important;
        background: #fff !important;
        font-size: 12px !important;
        white-space: nowrap;
    }

    .products-grid,
    .bf-grid,
    .spv-grid {
        gap: 10px !important;
    }

    .spv-card,
    .product-card,
    .product-item {
        min-height: 176px !important;
        border-radius: 8px !important;
        box-shadow: 0 1px 8px rgba(17, 37, 61, 0.08) !important;
    }

    .spv-card-img,
    .card-image,
    .product-item-image {
        height: 116px !important;
        min-height: 116px !important;
        padding: 8px !important;
    }

    .spv-card-img img,
    .card-image img,
    .product-card img,
    .product-item img {
        max-height: 104px !important;
    }

    .spv-card-info,
    .card-info {
        min-height: 52px !important;
        padding: 8px 7px !important;
    }

    .spv-card-name,
    .card-name,
    .product-card h3,
    .product-item h3 {
        font-size: 12px !important;
        line-height: 1.35 !important;
        -webkit-line-clamp: 2 !important;
    }

    .catalog-cta {
        margin-top: 18px !important;
        padding: 16px !important;
    }

    .catalog-cta h2 {
        font-size: 17px !important;
    }

    .catalog-cta p {
        display: none !important;
    }

    .spv-panel {
        padding: 14px 16px 18px !important;
        gap: 12px !important;
    }

    .spv-main-img,
    .gallery-main-image {
        height: 230px !important;
    }

    .spv-main-img img,
    .gallery-main-image img {
        max-height: 210px !important;
    }

    .spv-info {
        padding: 0 !important;
        border-left: 0 !important;
    }

    .spv-info h2,
    .info-card-title {
        font-size: 18px !important;
        margin-bottom: 8px !important;
    }

    .spv-meta-links {
        gap: 6px !important;
        margin-bottom: 10px !important;
    }

    .spv-meta-links a {
        min-height: 32px !important;
        padding: 5px 9px !important;
        font-size: 12px !important;
    }

    .spv-actions {
        margin: 12px 0 12px !important;
    }

    .hx-mobile-detail-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
        margin: 10px 0 2px !important;
    }

    .hx-mobile-detail-actions .spv-btn {
        min-height: 40px !important;
        padding: 9px 10px !important;
    }

    .hx-mobile-detail-actions .spv-btn.light,
    .hx-mobile-detail-actions a[href$=".pdf"] {
        grid-column: 1 / -1;
        order: -1;
    }

    .spv-info .spv-actions {
        margin-top: 10px !important;
    }

    .spv-btn,
    .inquire-btn,
    .consult-btn,
    .btn-primary,
    .btn-outline {
        min-height: 42px !important;
        font-size: 13px !important;
    }

    .spv-info .spec-table th,
    .spv-info .spec-table td,
    .spec-table th,
    .spec-table td {
        padding: 9px 8px !important;
        font-size: 13px !important;
        line-height: 1.45 !important;
    }

    .spv-seo-section,
    .legacy-detail-seo,
    .related-section,
    .legacy-related {
        margin-top: 8px !important;
    }

    .spv-seo-box,
    .legacy-detail-seo-box {
        padding: 14px !important;
    }

    .spv-seo-box h2,
    .legacy-detail-seo-box h2 {
        font-size: 18px !important;
    }

    .spv-seo-box p,
    .legacy-detail-seo-box p {
        font-size: 13px !important;
        line-height: 1.7 !important;
    }

    .home-applications-grid,
    .applications-grid,
    .application-grid,
    .solutions-grid,
    .news-grid,
    .downloads-grid,
    .resources-grid {
        gap: 10px !important;
    }
}

/* ===== HX Mobile Acceptance Fixes ===== */
@media (max-width: 768px) {
    :root {
        --hx-m-bg: #f5f7fa;
        --hx-m-card: #fff;
        --hx-m-border: #e7edf4;
        --hx-m-red: #c62828;
        --hx-m-blue: #1d3557;
        --hx-m-text: #536477;
        --hx-m-shadow: 0 2px 16px rgba(15, 35, 55, .055);
    }

    html,
    body {
        overflow-x: hidden !important;
        max-width: 100% !important;
    }

    body {
        padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)) !important;
    }

    .header,
    .header.transparent,
    .header.scrolled,
    body.home .header.transparent {
        position: sticky !important;
        top: 0;
        height: 58px !important;
        min-height: 58px !important;
        background: #c62828 !important;
        z-index: 10020 !important;
    }

    .nav-container {
        height: 58px !important;
        padding: 0 14px !important;
    }

    .nav-menu {
        top: 58px !important;
        height: calc(100dvh - 58px) !important;
        background: #10253d !important;
    }

    .nav-item.active .nav-link {
        color: #fff !important;
        font-weight: 800 !important;
        background: transparent !important;
    }

    .dropdown-menu.show,
    .dropdown-menu.dropdown-menu-cols.show {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
        padding: 10px 14px 14px !important;
        max-height: none !important;
    }

    .dropdown-menu .dropdown-col {
        display: contents !important;
    }

    .dropdown-menu a,
    .dropdown-menu .mobile-all-products-link {
        min-height: 42px !important;
        padding: 9px 10px !important;
        border-radius: 8px !important;
        background: rgba(255,255,255,.06) !important;
        border: 1px solid rgba(255,255,255,.08) !important;
        color: rgba(255,255,255,.9) !important;
        font-size: 13px !important;
        line-height: 1.35 !important;
        text-align: center !important;
        justify-content: center !important;
        white-space: normal !important;
    }

    .hx-mobile-contact-bar {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 8px !important;
        padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0px)) !important;
        background: rgba(255,255,255,.96) !important;
        border-top: 1px solid #e2e8f0 !important;
        box-shadow: 0 -8px 20px rgba(15,35,55,.12) !important;
    }

    .hx-mobile-contact-bar a {
        min-height: 42px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 8px !important;
        background: rgba(198,40,40,.08) !important;
        color: #8f1f25 !important;
        font-size: 13px !important;
        font-weight: 800 !important;
        text-decoration: none !important;
    }

    .hx-mobile-contact-bar a:nth-child(2) {
        background: #1d3557 !important;
        color: #fff !important;
    }

    .hx-mobile-contact-bar a:nth-child(3) {
        background: var(--hx-m-red) !important;
        color: #fff !important;
    }

    .hero {
        min-height: 330px !important;
        height: 44vh !important;
        max-height: 430px !important;
    }

    .hero-content {
        width: 100% !important;
        padding: 0 20px !important;
    }

    .hero-content h1 {
        font-size: 24px !important;
        line-height: 1.25 !important;
        letter-spacing: 0 !important;
    }

    .hero-content p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .home-applications-section,
    .home-seo-entry,
    .stats-section {
        padding: 34px 0 !important;
    }

    .hx-simple-head,
    .section-header,
    .stats-header {
        margin-bottom: 18px !important;
        text-align: left !important;
    }

    .hx-simple-head h2,
    .section-header h2,
    .stats-header h2 {
        font-size: 24px !important;
        line-height: 1.25 !important;
        color: var(--hx-m-blue) !important;
        text-align: left !important;
        margin-bottom: 8px !important;
    }

    .hx-simple-head p,
    .section-header p,
    .stats-header p {
        font-size: 14px !important;
        line-height: 1.75 !important;
        color: var(--hx-m-text) !important;
        text-align: left !important;
        letter-spacing: 0 !important;
    }

    .hx-simple-more {
        text-align: left !important;
        margin: -4px 0 14px !important;
    }

    .hx-simple-more a {
        min-height: auto !important;
        color: var(--hx-m-red) !important;
        font-size: 14px !important;
        font-weight: 800 !important;
        text-decoration: none !important;
    }

    .hx-simple-app-grid,
    .home-applications-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .hx-simple-app-grid a {
        display: grid !important;
        grid-template-columns: 118px minmax(0, 1fr) !important;
        gap: 14px !important;
        align-items: center !important;
        min-height: 126px !important;
        padding: 12px !important;
        border: 1px solid var(--hx-m-border) !important;
        border-radius: 12px !important;
        background: #fff !important;
        box-shadow: var(--hx-m-shadow) !important;
        color: inherit !important;
        text-decoration: none !important;
    }

    .hx-simple-app-grid img {
        width: 118px !important;
        height: 98px !important;
        border-radius: 10px !important;
        object-fit: cover !important;
    }

    .hx-simple-app-grid strong {
        font-size: 16px !important;
        line-height: 1.35 !important;
        color: var(--hx-m-blue) !important;
    }

    .hx-simple-app-grid span {
        font-size: 13px !important;
        line-height: 1.55 !important;
        color: var(--hx-m-text) !important;
    }

    .hx-simple-selection-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .hx-simple-selection-grid > div {
        padding: 16px !important;
        border: 1px solid var(--hx-m-border) !important;
        border-radius: 12px !important;
        background: #fff !important;
        box-shadow: var(--hx-m-shadow) !important;
    }

    .hx-simple-selection-grid > div::before,
    .hx-simple-selection-grid > div::after {
        display: none !important;
    }

    .hx-simple-selection-grid h3 {
        font-size: 17px !important;
        color: var(--hx-m-blue) !important;
        margin-bottom: 10px !important;
    }

    .hx-simple-selection-grid p {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        margin: 0 !important;
    }

    .hx-simple-selection-grid a,
    .application-products a,
    .download-badge {
        min-height: 34px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 6px 10px !important;
        border-radius: 999px !important;
        background: rgba(198,40,40,.08) !important;
        border: 1px solid rgba(198,40,40,.10) !important;
        color: #8f1f25 !important;
        font-size: 12px !important;
        font-weight: 800 !important;
        text-decoration: none !important;
    }

    .products-layout,
    .catalog-layout {
        display: block !important;
        padding: 14px 16px 40px !important;
    }

    .products-sidebar,
    .catalog-sidebar,
    .series-nav {
        position: static !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        overflow-x: auto !important;
        margin: 0 0 16px !important;
        padding: 10px !important;
        border: 1px solid var(--hx-m-border) !important;
        border-radius: 12px !important;
        background: #fff !important;
        box-shadow: var(--hx-m-shadow) !important;
        scrollbar-width: none !important;
    }

    .products-sidebar::-webkit-scrollbar,
    .catalog-sidebar::-webkit-scrollbar,
    .series-nav::-webkit-scrollbar {
        display: none !important;
    }

    .products-sidebar h2,
    .products-sidebar h3,
    .catalog-sidebar h2,
    .series-nav h3 {
        position: sticky !important;
        left: 0;
        flex: 0 0 auto !important;
        display: inline-flex !important;
        align-items: center !important;
        min-height: 40px !important;
        margin: 0 !important;
        padding: 0 12px 0 2px !important;
        border: 0 !important;
        background: #fff !important;
        color: var(--hx-m-blue) !important;
        font-size: 15px !important;
        font-weight: 800 !important;
        z-index: 2;
    }

    .products-sidebar a,
    .catalog-sidebar a,
    .series-nav a,
    .series-nav-item a {
        flex: 0 0 auto !important;
        min-width: 86px !important;
        min-height: 40px !important;
        padding: 8px 12px !important;
        border-radius: 999px !important;
        white-space: nowrap !important;
    }

    .products-grid,
    .bf-grid,
    .spv-grid,
    .legacy-related-grid,
    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    .spv-card,
    .product-card,
    .product-item {
        height: auto !important;
        min-height: 184px !important;
        border-radius: 12px !important;
        box-shadow: var(--hx-m-shadow) !important;
    }

    .spv-card-img,
    .card-image,
    .product-item-image {
        height: 124px !important;
        min-height: 124px !important;
        padding: 10px !important;
    }

    .spv-card-img img,
    .card-image img,
    .product-card img,
    .product-item img {
        max-height: 108px !important;
        object-fit: contain !important;
    }

    .catalog-intro-card {
        padding: 20px 16px !important;
        margin-bottom: 18px !important;
        border-radius: 12px !important;
    }

    .catalog-summary p,
    .catalog-info-block p,
    .catalog-info-block li {
        display: block !important;
        -webkit-line-clamp: unset !important;
        overflow: visible !important;
        font-size: 14px !important;
        line-height: 1.82 !important;
    }

    .catalog-info-block li {
        display: list-item !important;
    }

    .catalog-seo h3,
    .catalog-seo ul,
    .catalog-seo-side h3 {
        display: block !important;
    }

    .catalog-seo,
    .catalog-seo-main,
    .catalog-seo-side {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        overflow: visible !important;
    }

    .catalog-seo-side {
        display: grid !important;
        padding: 0 !important;
    }

    .catalog-link-list {
        display: grid !important;
        gap: 8px !important;
    }

    .catalog-link-list a {
        min-height: 40px !important;
        border-radius: 8px !important;
        white-space: normal !important;
    }

    .product-detail-layout,
    .spv-panel {
        grid-template-columns: 1fr !important;
        padding: 16px !important;
        gap: 14px !important;
    }

    .legacy-detail-actions {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .legacy-detail-actions > a.inquire-btn,
    .legacy-detail-actions > a.whatsapp-btn {
        width: 100% !important;
        height: 46px !important;
        min-height: 46px !important;
        max-height: 46px !important;
        padding: 0 10px !important;
        border-radius: 8px !important;
        font-size: 14px !important;
        line-height: 1.2 !important;
    }

    .legacy-detail-seo-box,
    .spv-seo-box {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        padding: 18px !important;
        border-radius: 12px !important;
    }

    .legacy-detail-links,
    .spv-seo-links {
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .legacy-related-grid a,
    .related-card {
        min-height: 168px !important;
        padding: 12px !important;
        border-radius: 12px !important;
    }

    .legacy-related-grid a img,
    .related-card img {
        height: 104px !important;
        max-height: 104px !important;
        object-fit: contain !important;
    }

    .applications-hero,
    .news-hero,
    .page-hero,
    .article-hero,
    body:has(.about-full) .about-full,
    body:has(.contact-page) .contact-title-band {
        padding: 34px 0 18px !important;
        background: var(--hx-m-bg) !important;
        text-align: left !important;
    }

    .applications-hero h1,
    .news-hero h1,
    .page-hero h1,
    .article-hero h1,
    body:has(.about-full) .about-intro h1,
    body:has(.contact-page) .contact-title-band h1 {
        font-size: 28px !important;
        line-height: 1.24 !important;
        text-align: left !important;
        color: var(--hx-m-blue) !important;
    }

    .applications-hero p,
    .news-hero p,
    .page-hero p,
    .article-hero p,
    body:has(.about-full) .about-intro p,
    body:has(.contact-page) .contact-title-band p {
        display: block !important;
        -webkit-line-clamp: unset !important;
        overflow: visible !important;
        text-align: left !important;
        font-size: 14px !important;
        line-height: 1.75 !important;
    }

    body:has(.about-full) .about-intro,
    body:has(.contact-page) .contact-title-band {
        max-width: 100% !important;
        margin: 0 0 18px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .applications-directory,
    .applications-sidebar.applications-directory,
    .news-tabs,
    .resource-sidebar {
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        gap: 14px !important;
        margin: 0 0 18px !important;
        padding: 0 0 4px !important;
        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .applications-directory h2 {
        display: none !important;
    }

    .applications-directory a,
    .news-tabs a,
    .resource-sidebar a {
        flex: 0 0 auto !important;
        min-height: 36px !important;
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
        color: #405169 !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        white-space: nowrap !important;
    }

    .application-solution,
    .news-featured-card,
    .news-side-list a,
    .news-card,
    .download-card,
    .download-group {
        border-radius: 12px !important;
        box-shadow: var(--hx-m-shadow) !important;
    }

    .application-solution {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        padding: 14px !important;
    }

    .application-media,
    .application-media img,
    .news-featured-card img,
    .news-card-media img {
        height: 188px !important;
        min-height: 188px !important;
        object-fit: cover !important;
        border-radius: 10px !important;
    }

    .news-featured,
    .news-grid,
    .download-grid,
    .downloads-grid,
    .resources-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .news-card-media {
        display: block !important;
    }

    .news-featured-body,
    .news-card-body,
    .download-card {
        padding: 16px !important;
    }

    .article-main img.article-img,
    .app-detail-main img {
        width: 100% !important;
        height: 220px !important;
        object-fit: cover !important;
        border-radius: 12px !important;
    }

    .article-body table,
    .spec-table,
    table.spec-table {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
    }

    .contact-title-band,
    .contact-title-band h1,
    .contact-title-band p {
        text-align: left !important;
        justify-content: flex-start !important;
    }

    .footer {
        padding: 34px 0 86px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .footer-series-list {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px 12px !important;
    }
}

@media (max-width: 420px) {
    .hx-simple-app-grid a {
        grid-template-columns: 104px minmax(0, 1fr) !important;
        gap: 12px !important;
    }

    .hx-simple-app-grid img {
        width: 104px !important;
        height: 92px !important;
    }

    .spv-card,
    .product-card,
    .product-item {
        min-height: 174px !important;
    }

    .spv-card-img,
    .card-image,
    .product-item-image {
        height: 112px !important;
        min-height: 112px !important;
    }

    .spv-card-img img,
    .card-image img,
    .product-card img,
    .product-item img {
        max-height: 98px !important;
    }

    .legacy-detail-actions {
        grid-template-columns: 1fr !important;
    }
}

/* ===== HX Mobile Visual QA Fixes ===== */
@media (max-width: 768px) {
    .nav-menu .dropdown-menu.show a,
    .nav-menu .dropdown-menu.dropdown-menu-cols.show a,
    .nav-menu .dropdown-menu .mobile-all-products-link {
        color: #fff !important;
        background: rgba(255, 255, 255, .10) !important;
        border-color: rgba(255, 255, 255, .16) !important;
        text-shadow: none !important;
    }

    .nav-menu .dropdown-menu.show a:hover,
    .nav-menu .dropdown-menu.show a:active {
        background: rgba(255, 255, 255, .18) !important;
        color: #fff !important;
    }

    .applications-directory a,
    .news-tabs a,
    .resource-sidebar a,
    .hx-simple-more a {
        display: inline-flex !important;
        align-items: center !important;
        min-height: 36px !important;
        line-height: 1.35 !important;
    }

    .footer-col ul li a,
    .footer-series-list a {
        display: inline-flex !important;
        align-items: center !important;
        min-height: 32px !important;
        line-height: 1.35 !important;
    }
}

/* ===== HX Mobile Home Application Carousel ===== */
@media (max-width: 768px) {
    body.home .hx-simple-app-grid {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 14px !important;
        margin: 0 -16px !important;
        padding: 4px 16px 12px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        scroll-padding-left: 16px !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }

    body.home .hx-simple-app-grid::-webkit-scrollbar {
        display: none !important;
    }

    body.home .hx-simple-app-grid a {
        flex: 0 0 82% !important;
        width: 82% !important;
        min-height: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        padding: 0 !important;
        border: 1px solid #e7edf4 !important;
        border-radius: 14px !important;
        background: #fff !important;
        box-shadow: 0 2px 16px rgba(15, 35, 55, .07) !important;
        overflow: hidden !important;
        scroll-snap-align: center !important;
        color: inherit !important;
        text-decoration: none !important;
    }

    body.home .hx-simple-app-grid strong {
        order: 1 !important;
        display: block !important;
        min-height: 54px !important;
        padding: 18px 18px 10px !important;
        color: #1d3557 !important;
        font-size: 21px !important;
        line-height: 1.3 !important;
        font-weight: 800 !important;
        text-align: left !important;
    }

    body.home .hx-simple-app-grid img {
        order: 2 !important;
        display: block !important;
        width: 100% !important;
        height: 178px !important;
        min-height: 178px !important;
        border-radius: 0 !important;
        object-fit: cover !important;
        background: #f2f5f8 !important;
    }

    body.home .hx-simple-app-grid span {
        order: 3 !important;
        display: block !important;
        min-height: 66px !important;
        padding: 14px 18px 18px !important;
        color: #536477 !important;
        font-size: 14px !important;
        line-height: 1.65 !important;
        text-align: left !important;
    }

    body.home .hx-simple-app-grid a:hover,
    body.home .hx-simple-app-grid a:active {
        background: #fff !important;
        border-color: #d8e2ec !important;
        box-shadow: 0 10px 26px rgba(15, 35, 55, .12) !important;
    }
}

@media (max-width: 420px) {
    body.home .hx-simple-app-grid a {
        flex-basis: 84% !important;
        width: 84% !important;
    }

    body.home .hx-simple-app-grid img {
        height: 164px !important;
        min-height: 164px !important;
    }
}

@media (max-width: 768px) {
    body.home section.home-applications-section.hx-simple-applications .hx-simple-app-grid > a > strong {
        color: #1d3557 !important;
        background: #fff !important;
        display: flex !important;
        align-items: center !important;
    }

    body.home section.home-applications-section.hx-simple-applications .hx-simple-app-grid > a > img {
        height: 176px !important;
        min-height: 176px !important;
        max-height: 176px !important;
        object-fit: cover !important;
    }

    body.home section.home-applications-section.hx-simple-applications .hx-simple-app-grid > a > span {
        background: #fff !important;
        color: #536477 !important;
    }
}

@media (max-width: 420px) {
    body.home section.home-applications-section.hx-simple-applications .hx-simple-app-grid > a > img {
        height: 164px !important;
        min-height: 164px !important;
        max-height: 164px !important;
    }
}

/* ===== HX Mobile Compact Footer ===== */
@media (max-width: 768px) {
    .footer {
        padding: 22px 0 64px !important;
    }

    .footer-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px 16px !important;
        margin-bottom: 14px !important;
    }

    .footer-col {
        min-width: 0 !important;
    }

    .footer-col h4 {
        font-size: 16px !important;
        line-height: 1.35 !important;
        margin: 0 0 8px !important;
        color: #fff !important;
    }

    .footer-col:first-child {
        display: none !important;
    }

    .footer-products {
        grid-column: 1 / -1 !important;
    }

    .footer-col:nth-child(3),
    .footer-col:nth-child(4) {
        grid-column: auto !important;
    }

    .footer-series-list {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 6px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .footer-series-list li,
    .footer-col ul li {
        margin: 0 !important;
        padding: 0 !important;
    }

    .footer-series-list a {
        width: 100% !important;
        min-height: 34px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 6px 4px !important;
        border-radius: 8px !important;
        background: rgba(255, 255, 255, .07) !important;
        color: rgba(255,255,255,.86) !important;
        font-size: 12px !important;
        line-height: 1.25 !important;
        text-align: center !important;
    }

    .footer-col:nth-child(3) ul,
    .footer-col:nth-child(4) ul {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 4px !important;
    }

    .footer-col:nth-child(3) ul li a,
    .footer-col:nth-child(4) ul li,
    .footer-col:nth-child(4) ul li a {
        min-height: 24px !important;
        font-size: 12px !important;
        line-height: 1.35 !important;
        color: rgba(255,255,255,.78) !important;
    }

    .footer-bottom {
        margin-top: 12px !important;
        padding-top: 12px !important;
    }

    .footer-bottom p {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }
}

/* ===== HX Mobile Compact Downloads ===== */
@media (max-width: 768px) {
    .resource-wrap {
        padding-top: 12px !important;
        padding-bottom: 68px !important;
    }

    .resource-layout {
        gap: 14px !important;
    }

    .resource-sidebar {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        margin-bottom: 2px !important;
    }

    .resource-sidebar a {
        min-height: 32px !important;
        margin: 0 !important;
        padding: 0 2px !important;
        font-size: 13px !important;
        line-height: 1.3 !important;
        color: #405169 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    .download-group {
        margin-bottom: 14px !important;
        padding: 14px !important;
        border-radius: 12px !important;
        border-color: #e6edf4 !important;
        box-shadow: 0 2px 14px rgba(15, 35, 55, .055) !important;
    }

    .download-group:first-child {
        padding-top: 14px !important;
    }

    .download-group h2 {
        margin: 0 0 10px !important;
        font-size: 20px !important;
        line-height: 1.25 !important;
    }

    .download-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    .download-card {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        gap: 7px !important;
        min-height: 82px !important;
        margin-bottom: 0 !important;
        padding: 10px !important;
        border-radius: 10px !important;
        box-shadow: 0 1px 8px rgba(15, 35, 55, .04) !important;
    }

    .download-card strong {
        display: -webkit-box !important;
        margin: 0 0 3px !important;
        overflow: hidden !important;
        color: #20344c !important;
        font-size: 14px !important;
        line-height: 1.35 !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }

    .download-card span:not(.download-badge) {
        display: none !important;
    }

    .download-badge {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: max-content !important;
        min-height: 24px !important;
        padding: 4px 7px !important;
        border-radius: 8px !important;
        background: rgba(198, 40, 40, .08) !important;
        color: #9f1f26 !important;
        font-size: 10px !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
    }
}

/* ===== HX Mobile Downloads Last Word ===== */
@media (max-width: 768px) {
    body.hx-ui-polish .download-group {
        margin-bottom: 14px !important;
        padding: 14px !important;
        border-radius: 12px !important;
    }

    body.hx-ui-polish .download-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    body.hx-ui-polish .download-card {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        gap: 7px !important;
        min-height: 82px !important;
        margin: 0 !important;
        padding: 10px !important;
        border-radius: 10px !important;
    }

    body.hx-ui-polish .download-card strong {
        display: -webkit-box !important;
        margin: 0 !important;
        overflow: hidden !important;
        font-size: 14px !important;
        line-height: 1.35 !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }

    body.hx-ui-polish .download-card span:not(.download-badge) {
        display: none !important;
    }

    body.hx-ui-polish .download-badge {
        width: max-content !important;
        min-height: 24px !important;
        padding: 4px 7px !important;
        border-radius: 8px !important;
        font-size: 10px !important;
    }
}

/* ===== HX Mobile Absolute Last Override v7 ===== */
@media (max-width: 768px) {
  .footer { padding: 16px 0 44px !important; }
  .footer-grid { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 10px !important; margin-bottom: 8px !important; }
  .footer-col:first-child { display: none !important; }
  .footer-products { grid-column: 1 / -1 !important; }
  .footer-col h4 { margin: 0 0 6px !important; font-size: 15px !important; line-height: 1.25 !important; }
  .footer-series-list { display: flex !important; grid-template-columns: none !important; gap: 6px !important; margin: 0 -16px !important; padding: 0 16px 4px !important; overflow-x: auto !important; scrollbar-width: none !important; }
  .footer-series-list::-webkit-scrollbar { display: none !important; }
  .footer-series-list li { flex: 0 0 auto !important; margin: 0 !important; padding: 0 !important; }
  .footer-series-list a { width: auto !important; min-height: 28px !important; padding: 5px 9px !important; border-radius: 999px !important; font-size: 11px !important; line-height: 1.2 !important; white-space: nowrap !important; }
  .footer-col:nth-child(3) ul, .footer-col:nth-child(4) ul { display: grid !important; grid-template-columns: 1fr !important; gap: 2px !important; margin: 0 !important; }
  .footer-col:nth-child(3) ul li a, .footer-col:nth-child(4) ul li, .footer-col:nth-child(4) ul li a { min-height: 19px !important; font-size: 11px !important; line-height: 1.3 !important; }
  .footer-bottom { margin-top: 8px !important; padding-top: 8px !important; }
  .footer-bottom p { font-size: 11px !important; line-height: 1.35 !important; }

  .hero { height: 320px !important; min-height: 320px !important; }
  .categories-section, .home-applications-section.hx-simple-applications, .home-seo-entry.hx-simple-selection, .certifications-section, .stats-section, .section, .applications-wrap, .news-section, .resource-wrap, .contact-page, .about-full, .factory-gallery-section { padding-top: 24px !important; padding-bottom: 28px !important; }
  .cat-header, .hx-simple-head, .stats-header, .section-header, .factory-gallery-section .section-title { margin-bottom: 14px !important; }
  .cat-showcase { min-height: 0 !important; padding: 16px !important; }
  .cat-product-img { max-height: 150px !important; }
  .cat-info-desc, .hx-simple-head p, .section-header p, .stats-header p { display: -webkit-box !important; overflow: hidden !important; -webkit-line-clamp: 2 !important; -webkit-box-orient: vertical !important; }

  body.home .hx-simple-app-grid { display: flex !important; grid-template-columns: none !important; gap: 12px !important; margin: 0 -16px !important; padding: 2px 16px 8px !important; overflow-x: auto !important; scroll-snap-type: x mandatory !important; scrollbar-width: none !important; }
  body.home .hx-simple-app-grid::-webkit-scrollbar { display: none !important; }
  body.home .hx-simple-app-grid a { flex: 0 0 78% !important; width: 78% !important; min-height: 0 !important; padding: 0 !important; border-radius: 12px !important; scroll-snap-align: center !important; }
  body.home .hx-simple-app-grid strong { min-height: 42px !important; padding: 13px 14px 8px !important; font-size: 18px !important; }
  body.home .hx-simple-app-grid img { height: 138px !important; min-height: 138px !important; max-height: 138px !important; }
  body.home .hx-simple-app-grid span { min-height: 48px !important; padding: 10px 14px 14px !important; font-size: 13px !important; line-height: 1.45 !important; }

  .home-seo-entry.hx-simple-selection .hx-simple-selection-grid, .hx-simple-selection-grid { display: flex !important; grid-template-columns: none !important; gap: 10px !important; margin: 0 -16px !important; padding: 0 16px 4px !important; overflow-x: auto !important; border: 0 !important; background: transparent !important; box-shadow: none !important; scroll-snap-type: x mandatory !important; scrollbar-width: none !important; }
  .hx-simple-selection-grid::-webkit-scrollbar { display: none !important; }
  .home-seo-entry.hx-simple-selection .hx-simple-selection-grid > div, .hx-simple-selection-grid > div { flex: 0 0 76% !important; min-height: 126px !important; padding: 15px !important; border-radius: 12px !important; scroll-snap-align: center !important; }
  .hx-simple-selection-grid > div::before { display: none !important; }
  .hx-simple-selection-grid h3 { margin: 0 0 9px !important; font-size: 17px !important; }
  .hx-simple-selection-grid a { min-height: 28px !important; padding: 6px 9px !important; border-radius: 999px !important; font-size: 12px !important; }

  .stats-grid { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 8px !important; }
  .stat-item { min-height: 122px !important; padding: 12px 8px !important; }
  .stat-icon { width: 34px !important; height: 34px !important; margin-bottom: 7px !important; }
  .stat-number { font-size: 22px !important; margin-bottom: 3px !important; }
  .stat-label { font-size: 13px !important; margin-bottom: 3px !important; }
  .stat-desc { display: -webkit-box !important; overflow: hidden !important; font-size: 11px !important; line-height: 1.3 !important; -webkit-line-clamp: 2 !important; -webkit-box-orient: vertical !important; }

  .cert-photos-grid, .factory-gallery, .gallery-grid { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 8px !important; }
  .cert-photo-item img, .factory-photo-item img, .gallery-grid img { width: 100% !important; height: 132px !important; min-height: 132px !important; object-fit: cover !important; }

  .applications-hero, .news-hero, .page-hero, .article-hero, body:has(.about-full) .about-full, body:has(.contact-page) .contact-title-band { padding-top: 24px !important; padding-bottom: 14px !important; }
  .applications-hero h1, .news-hero h1, .page-hero h1, .article-hero h1, body:has(.about-full) .about-intro h1, body:has(.contact-page) .contact-title-band h1 { font-size: 26px !important; margin-bottom: 7px !important; }
  .applications-hero p, .news-hero p, .page-hero p, .article-hero p, body:has(.about-full) .about-intro p, body:has(.contact-page) .contact-title-band p { display: -webkit-box !important; overflow: hidden !important; font-size: 13px !important; line-height: 1.55 !important; -webkit-line-clamp: 2 !important; -webkit-box-orient: vertical !important; }

  .application-solution { display: grid !important; grid-template-columns: 96px minmax(0, 1fr) !important; gap: 10px !important; margin-bottom: 9px !important; padding: 10px !important; }
  .application-media, .application-media img { width: 96px !important; height: 104px !important; min-height: 104px !important; }
  .application-copy h2 { font-size: 16px !important; margin: 0 0 4px !important; }
  .application-copy > p { display: -webkit-box !important; overflow: hidden !important; font-size: 12px !important; line-height: 1.42 !important; -webkit-line-clamp: 2 !important; -webkit-box-orient: vertical !important; }
  .application-condition, .application-products strong { display: none !important; }
  .application-products a { min-height: 23px !important; padding: 4px 7px !important; font-size: 11px !important; }

  .news-featured, .news-grid, .news-side-list { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 8px !important; }
  .news-featured-card, .news-card, .news-side-list a { display: block !important; min-height: 0 !important; padding: 0 !important; overflow: hidden !important; }
  .news-featured-card img, .news-card-media img { width: 100% !important; height: 76px !important; min-height: 76px !important; }
  .news-featured-body, .news-card-body { padding: 9px !important; }
  .news-featured-body h2, .news-card h3, .news-side-list strong { display: -webkit-box !important; overflow: hidden !important; font-size: 13px !important; line-height: 1.35 !important; -webkit-line-clamp: 2 !important; -webkit-box-orient: vertical !important; }
  .news-featured-body p, .news-card p, .news-card-meta, .news-side-list span { display: none !important; }

  .download-grid, .downloads-grid, .resources-grid { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 7px !important; }
  .download-group { margin-bottom: 10px !important; padding: 11px !important; }
  .download-group h2 { margin-bottom: 8px !important; font-size: 18px !important; }
  .download-card { min-height: 74px !important; padding: 9px !important; }
  .download-card strong { font-size: 13px !important; line-height: 1.32 !important; }
  .download-badge { min-height: 22px !important; padding: 3px 6px !important; font-size: 9px !important; }

  .about-detail-section { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 10px !important; }
  .about-detail-block { margin: 0 !important; padding: 12px !important; }
  .about-detail-block h3 { font-size: 15px !important; margin-bottom: 5px !important; }
  .about-detail-block p { display: -webkit-box !important; overflow: hidden !important; font-size: 12px !important; line-height: 1.45 !important; -webkit-line-clamp: 3 !important; -webkit-box-orient: vertical !important; }

  .quick-contact-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 7px !important; }
  .quick-contact-card { min-height: 98px !important; padding: 10px 6px !important; }
  .quick-contact-card .card-desc, .quick-contact-btn { display: none !important; }
}
/* ===== HX Mobile Downloads Horizontal Pack v8 ===== */
@media (max-width: 768px) {
  .resource-wrap { padding-top: 18px !important; padding-bottom: 28px !important; }
  .resource-layout { gap: 10px !important; }
  .resource-sidebar { display: flex !important; flex-wrap: nowrap !important; gap: 10px !important; margin: 0 -16px 10px !important; padding: 0 16px 3px !important; overflow-x: auto !important; scrollbar-width: none !important; }
  .resource-sidebar::-webkit-scrollbar { display: none !important; }
  .resource-sidebar a { flex: 0 0 auto !important; min-height: 28px !important; padding: 0 !important; border: 0 !important; background: transparent !important; font-size: 13px !important; font-weight: 700 !important; }
  .download-group { margin-bottom: 10px !important; padding: 11px !important; border-radius: 12px !important; }
  .download-group h2 { margin: 0 0 8px !important; font-size: 18px !important; line-height: 1.25 !important; }
  .download-grid { display: flex !important; grid-template-columns: none !important; gap: 7px !important; margin: 0 -11px !important; padding: 0 11px 3px !important; overflow-x: auto !important; scrollbar-width: none !important; scroll-snap-type: x mandatory !important; }
  .download-grid::-webkit-scrollbar { display: none !important; }
  .download-card { flex: 0 0 47% !important; min-height: 76px !important; padding: 9px !important; margin: 0 !important; border-radius: 10px !important; scroll-snap-align: start !important; }
  .download-card strong { display: -webkit-box !important; overflow: hidden !important; font-size: 13px !important; line-height: 1.32 !important; -webkit-line-clamp: 2 !important; -webkit-box-orient: vertical !important; }
  .download-card span:not(.download-badge) { display: none !important; }
  .download-badge { min-height: 21px !important; padding: 3px 6px !important; font-size: 9px !important; }
  .resource-cta { margin-top: 12px !important; padding: 14px !important; border-radius: 12px !important; }
  .resource-cta h2 { font-size: 18px !important; margin-bottom: 5px !important; }
  .resource-cta p { display: -webkit-box !important; overflow: hidden !important; font-size: 12px !important; line-height: 1.45 !important; -webkit-line-clamp: 2 !important; -webkit-box-orient: vertical !important; }
  .resource-cta a { padding: 9px 14px !important; font-size: 13px !important; }
}
/* ===== HX Mobile Downloads Specific Last Override v9 ===== */
@media (max-width: 768px) {
  body.hx-ui-polish .download-grid,
  body.hx-ui-polish.hx-industry-refine .download-grid,
  main .download-grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 7px !important;
    margin: 0 -11px !important;
    padding: 0 11px 3px !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
    scroll-snap-type: x mandatory !important;
  }
  body.hx-ui-polish .download-grid::-webkit-scrollbar,
  body.hx-ui-polish.hx-industry-refine .download-grid::-webkit-scrollbar,
  main .download-grid::-webkit-scrollbar { display: none !important; }
  body.hx-ui-polish .download-card,
  body.hx-ui-polish.hx-industry-refine .download-card,
  main .download-card {
    flex: 0 0 47% !important;
    min-height: 76px !important;
    padding: 9px !important;
    margin: 0 !important;
    scroll-snap-align: start !important;
  }
}

/* Keep the mobile language switch visible when the full-screen menu is open. */
@media (max-width: 768px) {
  .nav-menu.active > .lang-selector {
    display: block !important;
    position: fixed !important;
    top: 19px !important;
    right: 64px !important;
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    z-index: 10105 !important;
  }

  .nav-menu.active > .lang-selector .lang-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .nav-menu.active > .lang-selector .lang-btn svg {
    display: block !important;
    width: 30px !important;
    height: 30px !important;
    stroke: #6f7175 !important;
    stroke-width: 1.85px !important;
  }

  .nav-menu.active > .lang-selector .lang-dropdown {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    right: -8px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2px !important;
    min-width: 132px !important;
    padding: 8px !important;
    border: 1px solid #eef2f6 !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: 0 10px 24px rgba(15, 43, 91, .18) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-4px) !important;
    z-index: 10110 !important;
  }

  .nav-menu.active > .lang-selector:hover .lang-dropdown,
  .nav-menu.active > .lang-selector:focus-within .lang-dropdown,
  .nav-menu.active > .lang-selector.mobile-lang-open .lang-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }

  .nav-menu.active > .lang-selector .lang-dropdown a {
    min-height: 34px !important;
    padding: 6px 10px !important;
    border-radius: 6px !important;
    background: transparent !important;
    color: #0b4a8f !important;
    font-size: 14px !important;
    font-weight: 700 !important;
  }

  .nav-menu.active > .lang-selector .lang-dropdown a.active {
    background: rgba(215, 25, 32, .08) !important;
    color: #d71920 !important;
  }
}

/* ===== HX Mobile Footer QR Layout Final v25 ===== */
@media (max-width: 768px) {
  .footer {
    padding: 22px 0 76px !important;
    background: #1f4f82 !important;
  }

  .footer .container {
    padding: 0 22px !important;
  }

  .footer .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin: 0 !important;
  }

  .footer .footer-col:first-child,
  .footer .footer-products {
    display: none !important;
  }

  .footer .footer-col:nth-child(4) {
    order: 1 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 94px !important;
    column-gap: 14px !important;
    align-items: start !important;
    grid-column: 1 / -1 !important;
    padding-bottom: 18px !important;
    border-bottom: 1px solid rgba(255, 255, 255, .16) !important;
  }

  .footer .footer-col:nth-child(4)::after {
    content: "" !important;
    display: block !important;
    grid-column: 2 !important;
    grid-row: 1 / span 2 !important;
    width: 94px !important;
    aspect-ratio: 1 !important;
    border-radius: 8px !important;
    background: #fff url("../images/whatsapp-qr.png") center / 78px 78px no-repeat !important;
  }

  .footer .footer-col:nth-child(4) h4,
  .footer .footer-col:nth-child(4) ul {
    grid-column: 1 !important;
  }

  .footer .footer-col:nth-child(4) h4,
  .footer .footer-col:nth-child(3) h4 {
    margin: 0 0 10px !important;
    font-size: 21px !important;
    line-height: 1.25 !important;
    color: #fff !important;
  }

  .footer .footer-col:nth-child(4) ul {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 7px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer .footer-col:nth-child(4) ul li,
  .footer .footer-col:nth-child(4) ul li a {
    min-height: auto !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    color: rgba(255, 255, 255, .84) !important;
    word-break: break-word !important;
  }

  .footer .footer-col:nth-child(3) {
    order: 2 !important;
    display: block !important;
    grid-column: 1 / -1 !important;
  }

  .footer .footer-col:nth-child(3) ul {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px 18px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer .footer-col:nth-child(3) ul li {
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer .footer-col:nth-child(3) ul li a {
    display: inline-flex !important;
    min-height: 24px !important;
    align-items: center !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    color: rgba(255, 255, 255, .84) !important;
    text-decoration: none !important;
  }

  .footer .footer-bottom {
    margin-top: 16px !important;
    padding-top: 12px !important;
    border-top: 1px solid rgba(255, 255, 255, .12) !important;
    text-align: center !important;
  }

  .footer .footer-bottom p {
    font-size: 12px !important;
    line-height: 1.45 !important;
    color: rgba(255, 255, 255, .68) !important;
  }
}

/* ===== HX Mobile Footer QR Layout Final v24 ===== */
@media (max-width: 768px) {
  .footer {
    padding: 22px 0 76px !important;
    background: #1f4f82 !important;
  }

  .footer .container {
    padding: 0 22px !important;
  }

  .footer .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin: 0 !important;
  }

  .footer .footer-col:first-child,
  .footer .footer-products {
    display: none !important;
  }

  .footer .footer-col:nth-child(4) {
    order: 1 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 94px !important;
    column-gap: 14px !important;
    align-items: start !important;
    grid-column: 1 / -1 !important;
    padding-bottom: 18px !important;
    border-bottom: 1px solid rgba(255, 255, 255, .16) !important;
  }

  .footer .footer-col:nth-child(4)::after {
    content: "" !important;
    display: block !important;
    grid-column: 2 !important;
    grid-row: 1 / span 2 !important;
    width: 94px !important;
    aspect-ratio: 1 !important;
    border-radius: 8px !important;
    background: #fff url("../images/whatsapp-qr.png") center / 78px 78px no-repeat !important;
  }

  .footer .footer-col:nth-child(4) h4,
  .footer .footer-col:nth-child(4) ul {
    grid-column: 1 !important;
  }

  .footer .footer-col:nth-child(4) h4,
  .footer .footer-col:nth-child(3) h4 {
    margin: 0 0 10px !important;
    font-size: 21px !important;
    line-height: 1.25 !important;
    color: #fff !important;
  }

  .footer .footer-col:nth-child(4) ul {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 7px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer .footer-col:nth-child(4) ul li,
  .footer .footer-col:nth-child(4) ul li a {
    min-height: auto !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    color: rgba(255, 255, 255, .84) !important;
    word-break: break-word !important;
  }

  .footer .footer-col:nth-child(3) {
    order: 2 !important;
    display: block !important;
    grid-column: 1 / -1 !important;
  }

  .footer .footer-col:nth-child(3) ul {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px 18px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer .footer-col:nth-child(3) ul li {
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer .footer-col:nth-child(3) ul li a {
    display: inline-flex !important;
    min-height: 24px !important;
    align-items: center !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    color: rgba(255, 255, 255, .84) !important;
    text-decoration: none !important;
  }

  .footer .footer-bottom {
    margin-top: 16px !important;
    padding-top: 12px !important;
    border-top: 1px solid rgba(255, 255, 255, .12) !important;
    text-align: center !important;
  }

  .footer .footer-bottom p {
    font-size: 12px !important;
    line-height: 1.45 !important;
    color: rgba(255, 255, 255, .68) !important;
  }
}

/* ===== HX Mobile Footer QR Layout Final v23 ===== */
@media (max-width: 768px) {
  .footer {
    padding: 22px 0 76px !important;
    background: #1f4f82 !important;
  }

  .footer .container {
    padding: 0 22px !important;
  }

  .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin: 0 !important;
  }

  .footer-col:first-child,
  .footer-products {
    display: none !important;
  }

  .footer-col:nth-child(4) {
    order: 1 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 94px !important;
    column-gap: 14px !important;
    align-items: start !important;
    grid-column: 1 / -1 !important;
    padding-bottom: 18px !important;
    border-bottom: 1px solid rgba(255, 255, 255, .16) !important;
  }

  .footer-col:nth-child(4)::after {
    content: "" !important;
    display: block !important;
    grid-column: 2 !important;
    grid-row: 1 / span 2 !important;
    width: 94px !important;
    aspect-ratio: 1 !important;
    border-radius: 8px !important;
    background: #fff url("../images/whatsapp-qr.png") center / 78px 78px no-repeat !important;
  }

  .footer-col:nth-child(4) h4,
  .footer-col:nth-child(4) ul {
    grid-column: 1 !important;
  }

  .footer-col:nth-child(4) h4,
  .footer-col:nth-child(3) h4 {
    margin: 0 0 10px !important;
    font-size: 21px !important;
    line-height: 1.25 !important;
    color: #fff !important;
  }

  .footer-col:nth-child(4) ul {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 7px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer-col:nth-child(4) ul li,
  .footer-col:nth-child(4) ul li a {
    min-height: auto !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    color: rgba(255, 255, 255, .84) !important;
    word-break: break-word !important;
  }

  .footer-col:nth-child(3) {
    order: 2 !important;
    display: block !important;
    grid-column: 1 / -1 !important;
  }

  .footer-col:nth-child(3) ul {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px 18px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer-col:nth-child(3) ul li {
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer-col:nth-child(3) ul li a {
    display: inline-flex !important;
    min-height: 24px !important;
    align-items: center !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    color: rgba(255, 255, 255, .84) !important;
    text-decoration: none !important;
  }

  .footer-bottom {
    margin-top: 16px !important;
    padding-top: 12px !important;
    border-top: 1px solid rgba(255, 255, 255, .12) !important;
    text-align: center !important;
  }

  .footer-bottom p {
    font-size: 12px !important;
    line-height: 1.45 !important;
    color: rgba(255, 255, 255, .68) !important;
  }
}

/* ===== HX Mobile About Page Full Width Fix v10 ===== */
@media (max-width: 768px) {
  body:has(.about-full) .about-detail-section {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
  }

  body:has(.about-full) .about-detail-section > .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    display: block !important;
  }

  body:has(.about-full) .about-detail-block {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 0 12px !important;
    padding: 18px !important;
    border-radius: 14px !important;
  }

  body:has(.about-full) .about-detail-block h3 {
    font-size: 20px !important;
    line-height: 1.35 !important;
    margin-bottom: 10px !important;
  }

  body:has(.about-full) .about-detail-block p {
    display: -webkit-box !important;
    overflow: hidden !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    -webkit-line-clamp: 4 !important;
    -webkit-box-orient: vertical !important;
  }
}

/* ===== HX Mobile Applications Hero Align With About v11 ===== */
@media (max-width: 768px) {
  body.hx-ui-polish.hx-industry-refine .applications-hero,
  body.hx-ui-polish.hx-industry-refine main .applications-hero,
  main .applications-hero {
    min-height: 0 !important;
    padding: 34px 0 10px !important;
    background: #f5f7fa !important;
    border: 0 !important;
    text-align: left !important;
  }

  body.hx-ui-polish.hx-industry-refine .applications-hero .container,
  main .applications-hero .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    display: block !important;
  }

  body.hx-ui-polish.hx-industry-refine .applications-hero h1,
  main .applications-hero h1 {
    margin: 0 0 10px !important;
    color: #1d3557 !important;
    font-size: 34px !important;
    line-height: 1.2 !important;
    text-align: left !important;
  }

  body.hx-ui-polish.hx-industry-refine .applications-hero p,
  main .applications-hero p {
    display: -webkit-box !important;
    max-width: 100% !important;
    margin: 0 !important;
    overflow: hidden !important;
    color: #56677d !important;
    font-size: 18px !important;
    line-height: 1.65 !important;
    text-align: left !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
  }

  .applications-wrap {
    padding-top: 4px !important;
  }

  .applications-directory,
  .applications-sidebar.applications-directory {
    margin-top: 0 !important;
    margin-bottom: 12px !important;
    padding-top: 0 !important;
  }
}

/* ===== HX Mobile News Hero Align With About v12 ===== */
@media (max-width: 768px) {
  body.hx-ui-polish.hx-industry-refine .news-hero,
  body.hx-ui-polish.hx-industry-refine main .news-hero,
  main .news-hero {
    min-height: 0 !important;
    padding: 34px 0 10px !important;
    background: #f5f7fa !important;
    border: 0 !important;
    text-align: left !important;
  }

  body.hx-ui-polish.hx-industry-refine .news-hero .container,
  main .news-hero .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    display: block !important;
  }

  body.hx-ui-polish.hx-industry-refine .news-hero h1,
  main .news-hero h1 {
    margin: 0 0 10px !important;
    color: #1d3557 !important;
    font-size: 34px !important;
    line-height: 1.2 !important;
    text-align: left !important;
  }

  body.hx-ui-polish.hx-industry-refine .news-hero p,
  main .news-hero p {
    display: -webkit-box !important;
    max-width: 100% !important;
    margin: 0 !important;
    overflow: hidden !important;
    color: #56677d !important;
    font-size: 18px !important;
    line-height: 1.65 !important;
    text-align: left !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
  }

  .news-section {
    padding-top: 14px !important;
  }
}

/* ===== HX Mobile Downloads Hero Align With About v13 ===== */
@media (max-width: 768px) {
  body.hx-ui-polish.hx-industry-refine .page-hero,
  body.hx-ui-polish.hx-industry-refine main .page-hero,
  main .page-hero {
    min-height: 0 !important;
    padding: 34px 0 10px !important;
    background: #f5f7fa !important;
    border: 0 !important;
    text-align: left !important;
  }

  body.hx-ui-polish.hx-industry-refine .page-hero .container,
  main .page-hero .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    display: block !important;
  }

  body.hx-ui-polish.hx-industry-refine .page-hero h1,
  main .page-hero h1 {
    margin: 0 0 10px !important;
    color: #1d3557 !important;
    font-size: 34px !important;
    line-height: 1.2 !important;
    text-align: left !important;
  }

  body.hx-ui-polish.hx-industry-refine .page-hero p,
  main .page-hero p {
    display: -webkit-box !important;
    max-width: 100% !important;
    margin: 0 !important;
    overflow: hidden !important;
    color: #56677d !important;
    font-size: 18px !important;
    line-height: 1.65 !important;
    text-align: left !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
  }

  .resource-wrap {
    padding-top: 14px !important;
  }
}

/* ===== HX Mobile Catalog Intro Collapse v14 ===== */
.catalog-intro-toggle {
  display: none;
}

@media (max-width: 768px) {
  main.catalog-wrap {
    padding-top: 28px !important;
  }

  .catalog-layout {
    gap: 12px !important;
  }

  .catalog-intro-card {
    position: relative !important;
    margin: 0 0 14px !important;
    padding: 17px 16px 12px !important;
    border: 1px solid #e7edf4 !important;
    border-radius: 12px !important;
    background: #fff !important;
    box-shadow: 0 6px 18px rgba(16, 34, 55, .07) !important;
  }

  .catalog-intro-card .catalog-summary {
    margin: 0 !important;
    padding: 0 !important;
  }

  .catalog-intro-card .catalog-summary h1 {
    margin: 0 0 7px !important;
    font-size: 22px !important;
    line-height: 1.25 !important;
    color: #1d3557 !important;
  }

  .catalog-intro-card .catalog-summary p {
    display: -webkit-box !important;
    margin: 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
    color: #586a7f !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
  }

  .catalog-intro-card:not(.is-expanded) .catalog-seo {
    display: none !important;
  }

  .catalog-intro-card.is-expanded {
    padding-bottom: 16px !important;
  }

  .catalog-intro-card.is-expanded .catalog-summary {
    margin-bottom: 16px !important;
  }

  .catalog-intro-card.is-expanded .catalog-summary p {
    display: block !important;
    overflow: visible !important;
    -webkit-line-clamp: unset !important;
  }

  .catalog-intro-card.is-expanded .catalog-seo {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .catalog-intro-card.is-expanded .catalog-seo-main {
    display: grid !important;
    gap: 14px !important;
  }

  .catalog-intro-card.is-expanded .catalog-info-block + .catalog-info-block {
    padding-top: 14px !important;
  }

  .catalog-intro-card.is-expanded .catalog-info-block h2,
  .catalog-intro-card.is-expanded .catalog-info-block h3 {
    margin-bottom: 8px !important;
    font-size: 15px !important;
    line-height: 1.35 !important;
  }

  .catalog-intro-card.is-expanded .catalog-info-block p,
  .catalog-intro-card.is-expanded .catalog-info-block li {
    font-size: 13px !important;
    line-height: 1.75 !important;
  }

  .catalog-intro-card.is-expanded .catalog-seo-side {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    padding: 0 !important;
  }

  .catalog-intro-card.is-expanded .catalog-link-group h3 {
    margin: 0 0 8px !important;
    color: #7a8796 !important;
    font-size: 12px !important;
    font-weight: 600 !important;
  }

  .catalog-intro-card.is-expanded .catalog-link-list {
    gap: 7px !important;
  }

  .catalog-intro-card.is-expanded .catalog-link-list a {
    min-height: 34px !important;
    padding: 7px 8px !important;
    border-radius: 8px !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
  }

  .catalog-intro-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px !important;
    height: 28px !important;
    margin: 9px auto 0 !important;
    border: 1px solid rgba(198, 40, 40, .2) !important;
    border-radius: 999px !important;
    background: #fff7f7 !important;
    color: #c62828 !important;
    font-size: 0 !important;
    line-height: 1 !important;
    box-shadow: none !important;
    cursor: pointer !important;
  }

  .catalog-intro-toggle::before {
    content: "⌄";
    font-size: 18px;
    font-weight: 700;
    transform: translateY(-1px);
    transition: transform .2s ease;
  }

  .catalog-intro-card.is-expanded .catalog-intro-toggle::before {
    transform: rotate(180deg) translateY(1px);
  }
}

/* ===== HX Mobile Footer Fixed Wrap v15 ===== */
@media (max-width: 768px) {
  .footer {
    padding: 18px 0 64px !important;
  }

  .footer .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    box-sizing: border-box !important;
  }

  .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px 18px !important;
    margin: 0 !important;
  }

  .footer-col:first-child {
    display: none !important;
  }

  .footer-products {
    grid-column: 1 / -1 !important;
  }

  .footer-col h4 {
    margin: 0 0 8px !important;
    font-size: 17px !important;
    line-height: 1.25 !important;
  }

  .footer-series-list {
    display: flex !important;
    flex-wrap: wrap !important;
    grid-template-columns: none !important;
    gap: 7px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    overflow-x: visible !important;
    scrollbar-width: auto !important;
  }

  .footer-series-list li {
    flex: 0 1 auto !important;
    width: auto !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer-series-list a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-height: 28px !important;
    padding: 5px 9px !important;
    border-radius: 999px !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    white-space: normal !important;
    word-break: keep-all !important;
  }

  .footer-col:nth-child(3) ul,
  .footer-col:nth-child(4) ul {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 4px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer-col:nth-child(3) ul li,
  .footer-col:nth-child(4) ul li,
  .footer-col:nth-child(3) ul li a,
  .footer-col:nth-child(4) ul li a {
    min-height: 18px !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
  }

  .footer-bottom {
    margin-top: 12px !important;
    padding-top: 10px !important;
  }

  .footer-bottom p {
    font-size: 11px !important;
    line-height: 1.35 !important;
  }
}

/* ===== HX Mobile News Single Column v16 ===== */
@media (max-width: 768px) {
  body.hx-ui-polish.hx-industry-refine .news-section .news-featured,
  body.hx-ui-polish.hx-industry-refine .news-section .news-side-list,
  body.hx-ui-polish.hx-industry-refine .news-section .news-grid,
  body.hx-ui-polish .news-section .news-featured,
  body.hx-ui-polish .news-section .news-side-list,
  body.hx-ui-polish .news-section .news-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  body.hx-ui-polish.hx-industry-refine .news-section .news-card,
  body.hx-ui-polish.hx-industry-refine .news-section .news-side-list a,
  body.hx-ui-polish .news-section .news-card,
  body.hx-ui-polish .news-section .news-side-list a {
    display: block !important;
    width: 100% !important;
    min-height: 0 !important;
    padding: 0 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
  }

  body.hx-ui-polish.hx-industry-refine .news-section .news-card-body,
  body.hx-ui-polish .news-section .news-card-body {
    padding: 14px 16px !important;
  }

  body.hx-ui-polish.hx-industry-refine .news-section .news-card h3,
  body.hx-ui-polish.hx-industry-refine .news-section .news-side-list strong,
  body.hx-ui-polish .news-section .news-card h3,
  body.hx-ui-polish .news-section .news-side-list strong {
    display: block !important;
    margin: 0 0 7px !important;
    overflow: visible !important;
    color: #1d3557 !important;
    font-size: 17px !important;
    line-height: 1.42 !important;
    white-space: normal !important;
    text-overflow: clip !important;
  }

  body.hx-ui-polish.hx-industry-refine .news-section .news-card p,
  body.hx-ui-polish .news-section .news-card p {
    display: -webkit-box !important;
    overflow: hidden !important;
    color: #5f6f82 !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
  }
}

/* ===== HX Mobile Footer Plain Series v17 ===== */
@media (max-width: 768px) {
  .footer-products .footer-series-list,
  .footer .footer-series-list {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 6px 12px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    overflow-x: visible !important;
    scrollbar-width: auto !important;
  }

  .footer-products .footer-series-list li,
  .footer .footer-series-list li {
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer-products .footer-series-list a,
  .footer .footer-series-list a {
    display: inline !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: rgba(223, 232, 244, .9) !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
    text-align: left !important;
    white-space: normal !important;
    word-break: keep-all !important;
  }

  .footer-products .footer-series-list a:hover,
  .footer .footer-series-list a:hover {
    color: #fff !important;
    background: transparent !important;
  }
}

.news-side-summary {
  display: none !important;
}

/* ===== HX Mobile News Top Picks Summary v18 ===== */
@media (max-width: 768px) {
  body.hx-ui-polish.hx-industry-refine .news-section .news-side-list a,
  body.hx-ui-polish .news-section .news-side-list a {
    padding: 14px 16px !important;
    border-radius: 8px !important;
  }

  body.hx-ui-polish.hx-industry-refine .news-section .news-side-list .news-side-summary,
  body.hx-ui-polish .news-section .news-side-list .news-side-summary {
    display: -webkit-box !important;
    margin: 7px 0 0 !important;
    overflow: hidden !important;
    color: #5f6f82 !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
  }
}

/* ===== HX Mobile Products Index Series Grid v19 ===== */
@media (max-width: 768px) {
  .products-layout > .products-sidebar {
    display: block !important;
    width: 100% !important;
    margin: 0 0 18px !important;
    padding: 16px !important;
    overflow: visible !important;
    border: 1px solid #e7edf4 !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .055) !important;
  }

  .products-layout > .products-sidebar .mobile-series-select {
    display: none !important;
  }

  .products-layout > .products-sidebar .sidebar-title {
    display: block !important;
    margin: 0 0 12px !important;
    padding: 0 0 10px !important;
    border: 0 !important;
    border-bottom: 1px solid #e7edf4 !important;
    background: transparent !important;
    color: #1d3557 !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
  }

  .products-layout > .products-sidebar .series-nav {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .products-layout > .products-sidebar .series-nav-item {
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .products-layout > .products-sidebar .series-nav-item a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 38px !important;
    padding: 8px 10px !important;
    border: 1px solid #e7edf4 !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: none !important;
    color: #1d3557 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    text-align: center !important;
    text-decoration: none !important;
    white-space: normal !important;
  }

  .products-layout > .products-sidebar .series-nav-item.active a,
  .products-layout > .products-sidebar .series-nav-item a:hover {
    border-color: #c62828 !important;
    background: rgba(198, 40, 40, .07) !important;
    color: #c62828 !important;
  }
}

/* ===== HX Mobile White Header Logo Final ===== */
@media (max-width: 768px) {
  .header,
  .header.transparent,
  .header.scrolled,
  body.home .header,
  body.home .header.transparent,
  body:not(.home) .header {
    background: #fff !important;
    background-color: #fff !important;
    border-bottom: 1px solid #e7edf4 !important;
    box-shadow: 0 2px 12px rgba(15, 43, 91, .08) !important;
  }

  .header .logo img {
    content: url("../images/brand/kv-mobile-logo.webp");
    width: 44px !important;
    height: 44px !important;
    object-fit: contain !important;
  }

  .mobile-menu-toggle {
    border: 1px solid #d8e2ec !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  .mobile-menu-toggle span {
    background: #1d3557 !important;
  }
}

/* ===== HX Mobile Footer Contact First v21 ===== */
@media (max-width: 768px) {
  .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .footer-col:first-child,
  .footer-products {
    display: none !important;
  }

  .footer-col:nth-child(4) {
    display: block !important;
    order: 1 !important;
    grid-column: 1 / -1 !important;
  }

  .footer-col:nth-child(3) {
    display: block !important;
    order: 2 !important;
    grid-column: 1 / -1 !important;
  }

  .footer-col:nth-child(4) ul,
  .footer-col:nth-child(3) ul {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 5px !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

/* ===== HX Mobile Header Tools v22 ===== */
@media (max-width: 768px) {
  .header,
  .header.transparent,
  .header.scrolled,
  body.home .header,
  body.home .header.transparent,
  body:not(.home) .header {
    height: 68px !important;
    min-height: 68px !important;
  }

  .nav-container {
    height: 68px !important;
    min-height: 68px !important;
    padding: 0 16px 0 20px !important;
    display: grid !important;
    grid-template-columns: auto 1fr auto auto !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .header .logo {
    grid-row: 1 !important;
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    transform: translateX(4px) !important;
    min-width: 68px !important;
    text-decoration: none !important;
  }

  .header .logo img {
    width: 43px !important;
    height: 43px !important;
  }

  .header .logo-text {
    display: block !important;
    margin-top: 0 !important;
    max-width: none !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
  }

  .header .logo-text::before {
    content: "Kylan ";
    color: #0b376d !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
  }

  .header .logo-text::after {
    content: "Va";
    color: #e21f2f !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
  }

  .nav-menu {
    grid-row: 1 !important;
    display: flex !important;
    position: static !important;
    visibility: visible !important;
    transform: none !important;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    opacity: 1 !important;
    overflow: visible !important;
    z-index: auto !important;
    grid-column: 4 !important;
    align-items: center !important;
    align-self: center !important;
    justify-content: flex-end !important;
    justify-self: end !important;
  }

  .nav-menu > .nav-item {
    display: none !important;
  }

  .nav-menu > .lang-selector {
    grid-row: 1 !important;
    display: block !important;
    visibility: visible !important;
    position: relative !important;
    grid-column: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    align-self: center !important;
    justify-self: end !important;
  }

  .nav-menu > .lang-selector .lang-btn {
    display: inline-flex !important;
    visibility: visible !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px !important;
    height: 34px !important;
    min-height: 34px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .nav-menu > .lang-selector .lang-btn svg {
    width: 22px !important;
    height: 22px !important;
    stroke: #0b376d !important;
  }

  .nav-menu > .lang-selector .lang-dropdown {
    position: absolute !important;
    top: calc(100% + 12px) !important;
    right: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    min-width: 128px !important;
    padding: 6px !important;
    border: 1px solid #e7edf4 !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: 0 12px 28px rgba(15, 43, 91, .16) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-4px) !important;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease !important;
    z-index: 10060 !important;
  }

  .nav-menu > .lang-selector:hover .lang-dropdown,
  .nav-menu > .lang-selector:focus-within .lang-dropdown,
  .nav-menu > .lang-selector.mobile-lang-open .lang-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }

  .nav-menu > .lang-selector .lang-dropdown a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 34px !important;
    padding: 7px 10px !important;
    border-radius: 6px !important;
    color: #1d3557 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
  }

  .nav-menu > .lang-selector .lang-dropdown a.active,
  .nav-menu > .lang-selector .lang-dropdown a:hover {
    background: rgba(198, 40, 40, .08) !important;
    color: #c62828 !important;
  }

  .nav-menu.active {
    display: flex !important;
    position: fixed !important;
    visibility: visible !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: var(--dark-blue) !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    grid-column: auto !important;
    z-index: 1002 !important;
  }

  .nav-menu.active > .nav-item {
    display: block !important;
  }

  .nav-menu.active > .lang-selector {
    display: none !important;
  }

  .mobile-menu-toggle {
    grid-column: 3 !important;
    grid-row: 1 !important;
    align-self: center !important;
    justify-self: end !important;
    position: relative !important;
    z-index: 10061 !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .mobile-menu-toggle span {
    width: 25px !important;
    height: 2px !important;
    background: #c62828 !important;
  }
}

/* ===== HX Mobile Header Icon Balance v29 ===== */
@media (max-width: 768px) {
  .nav-container {
    gap: 10px !important;
  }

  .nav-menu,
  .mobile-menu-toggle {
    align-self: center !important;
    justify-self: end !important;
  }

  .nav-menu {
    grid-column: 3 !important;
  }

  .mobile-menu-toggle {
    grid-column: 4 !important;
  }

  .nav-menu > .lang-selector .lang-btn,
  .mobile-menu-toggle {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  .nav-menu > .lang-selector .lang-btn svg {
    display: none !important;
  }

  .nav-menu > .lang-selector .lang-btn::before {
    content: "" !important;
    display: block !important;
    width: 30px !important;
    height: 30px !important;
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent center / contain no-repeat url("../images/icons/mobile-globe-clean.svg") !important;
  }

  .nav-menu > .lang-selector .lang-btn:focus,
  .nav-menu > .lang-selector .lang-btn:focus-visible,
  .nav-menu > .lang-selector .lang-btn:active {
    outline: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .nav-menu > .lang-selector .lang-dropdown a:nth-child(1) {
    order: 3 !important;
  }

  .nav-menu > .lang-selector .lang-dropdown a:nth-child(2) {
    order: 2 !important;
  }

  .nav-menu > .lang-selector .lang-dropdown a:nth-child(3) {
    order: 1 !important;
  }

  .mobile-menu-toggle {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
  }

  .mobile-menu-toggle span {
    position: static !important;
    display: block !important;
    width: 29px !important;
    height: 3px !important;
    margin: 0 !important;
    border-radius: 3px !important;
    background: #0878ad !important;
  }
}

/* ===== HX Mobile Menu Active Icon Fix v33 ===== */
@media (max-width: 768px) {
  .mobile-menu-toggle.active span,
  .mobile-menu-toggle.active span:nth-child(1),
  .mobile-menu-toggle.active span:nth-child(2),
  .mobile-menu-toggle.active span:nth-child(3) {
    position: static !important;
    top: auto !important;
    opacity: 1 !important;
    transform: none !important;
    width: 29px !important;
    height: 3px !important;
    margin: 0 !important;
    border-radius: 3px !important;
    background: #0878ad !important;
  }
}

/* ===== HX Mobile Fullscreen Menu v34 ===== */
@media (max-width: 768px) {
  .nav-menu.active {
    position: fixed !important;
    top: 68px !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    display: flex !important;
    width: 100vw !important;
    max-width: none !important;
    height: calc(100dvh - 68px) !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 0 88px !important;
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: #1d456f !important;
    z-index: 10050 !important;
    overflow-y: auto !important;
  }

  .nav-menu.active::before {
    display: none !important;
  }
}

/* ===== HX Mobile Clean Globe Icon v35 ===== */
@media (max-width: 768px) {
  .nav-menu > .lang-selector .lang-btn,
  .nav-menu > .lang-selector .lang-btn:hover,
  .nav-menu > .lang-selector .lang-btn:focus,
  .nav-menu > .lang-selector .lang-btn:focus-visible,
  .nav-menu > .lang-selector .lang-btn:active {
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  .nav-menu > .lang-selector .lang-btn::before {
    width: 30px !important;
    height: 30px !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent center / contain no-repeat url("../images/icons/mobile-language-switch.svg") !important;
  }
}

/* ===== HX Mobile Use Desktop Language Icon v36 ===== */
@media (max-width: 768px) {
  .nav-menu > .lang-selector .lang-btn {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .nav-menu > .lang-selector .lang-btn::before {
    display: none !important;
    content: none !important;
    background: none !important;
  }

  .nav-menu > .lang-selector .lang-btn svg {
    display: block !important;
    width: 30px !important;
    height: 30px !important;
    stroke: #6f7175 !important;
    stroke-width: 1.85px !important;
  }
}

/* ===== HX Mobile Header Icons Plain Gray v38 ===== */
@media (max-width: 768px) {
  .nav-menu > .lang-selector .lang-btn,
  .nav-menu > .lang-selector .lang-btn:hover,
  .nav-menu > .lang-selector .lang-btn:focus,
  .nav-menu > .lang-selector .lang-btn:focus-visible,
  .nav-menu > .lang-selector .lang-btn:active,
  .mobile-menu-toggle,
  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus,
  .mobile-menu-toggle:focus-visible,
  .mobile-menu-toggle:active {
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  .nav-menu > .lang-selector .lang-btn::before {
    display: none !important;
    content: none !important;
    background: none !important;
  }

  .nav-menu > .lang-selector .lang-btn svg {
    display: block !important;
    width: 30px !important;
    height: 30px !important;
    stroke: #6f7175 !important;
    stroke-width: 1.85px !important;
  }

  .mobile-menu-toggle span,
  .mobile-menu-toggle.active span,
  .mobile-menu-toggle.active span:nth-child(1),
  .mobile-menu-toggle.active span:nth-child(2),
  .mobile-menu-toggle.active span:nth-child(3) {
    background: #6f7175 !important;
  }
}

/* ===== HX Mobile Plain Language Dropdown v39 ===== */
@media (max-width: 768px) {
  .nav-menu > .lang-selector .lang-dropdown {
    padding: 4px 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .nav-menu > .lang-selector .lang-dropdown a,
  .nav-menu > .lang-selector .lang-dropdown a.active,
  .nav-menu > .lang-selector .lang-dropdown a:hover,
  .nav-menu > .lang-selector .lang-dropdown a:active {
    min-height: 34px !important;
    padding: 5px 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #1d3557 !important;
  }
}

/* ===== HX Mobile Navigation Rebuild Clean v40 ===== */
@media (max-width: 768px) {
  .header,
  .header.transparent,
  .header.scrolled,
  body.home .header,
  body.home .header.transparent,
  body:not(.home) .header {
    height: 68px !important;
    min-height: 68px !important;
    background: #fff !important;
    border-bottom: 1px solid #eef2f6 !important;
    box-shadow: none !important;
  }

  .nav-container {
    display: grid !important;
    grid-template-columns: auto 1fr 30px 38px !important;
    align-items: center !important;
    gap: 12px !important;
    height: 68px !important;
    min-height: 68px !important;
    padding: 0 18px 0 20px !important;
    background: #fff !important;
  }

  .header .logo {
    grid-column: 1 !important;
    grid-row: 1 !important;
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 68px !important;
    min-width: 68px !important;
    height: 58px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .nav-menu:not(.active) {
    grid-column: 3 !important;
    grid-row: 1 !important;
    position: static !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: visible !important;
    transform: none !important;
    z-index: 10070 !important;
  }

  .nav-menu:not(.active) > .nav-item {
    display: none !important;
  }

  .nav-menu:not(.active) > .lang-selector {
    display: block !important;
    position: relative !important;
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .nav-menu:not(.active) > .lang-selector .lang-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  .nav-menu:not(.active) > .lang-selector .lang-btn::before {
    display: none !important;
    content: none !important;
    background: none !important;
  }

  .nav-menu:not(.active) > .lang-selector .lang-btn svg {
    display: block !important;
    width: 30px !important;
    height: 30px !important;
    stroke: #6f7175 !important;
    stroke-width: 1.85px !important;
  }

  .mobile-menu-toggle {
    grid-column: 4 !important;
    grid-row: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: end !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    z-index: 10090 !important;
  }
}

/* ===== HX Mobile Language Dropdown Card Restore v42 ===== */
@media (max-width: 768px) {
  .nav-menu:not(.active) > .lang-selector .lang-dropdown {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    right: -8px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2px !important;
    min-width: 132px !important;
    padding: 8px !important;
    border: 1px solid #eef2f6 !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: 0 10px 24px rgba(15, 43, 91, .14) !important;
    z-index: 10095 !important;
  }

  .nav-menu:not(.active) > .lang-selector .lang-dropdown a,
  .nav-menu:not(.active) > .lang-selector .lang-dropdown a:hover,
  .nav-menu:not(.active) > .lang-selector .lang-dropdown a:active {
    min-height: 34px !important;
    padding: 6px 10px !important;
    border-radius: 6px !important;
    background: transparent !important;
    color: #1d3557 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
  }

  .nav-menu:not(.active) > .lang-selector .lang-dropdown a.active {
    background: rgba(198, 40, 40, .08) !important;
    color: #c62828 !important;
  }
}

/* Desktop-only final header override. mobile.css loads after style.css. */
@media (min-width: 769px) {
  .header,
  .header.transparent,
  .header.scrolled,
  body.home .header,
  body.home .header.transparent,
  body.home .header.scrolled {
    background: #fff !important;
    border-bottom: 1px solid #e6ebf1 !important;
    box-shadow: 0 2px 12px rgba(15, 35, 55, 0.05) !important;
  }

  .header .nav-container {
    min-height: 82px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  body.home .hero {
    margin-top: 82px !important;
  }

  .header .nav-link,
  .header.transparent .nav-link,
  .header.scrolled .nav-link,
  .header:not(.transparent) .nav-link,
  body.hx-industry-refine .header .nav-link {
    color: #0b4a8f !important;
    background: transparent !important;
    opacity: 1 !important;
    font-weight: 700 !important;
  }

  .header .nav-link:hover,
  .header.transparent .nav-link:hover,
  .header.scrolled .nav-link:hover,
  .header .nav-item.active .nav-link,
  .header.transparent .nav-item.active .nav-link,
  .header.scrolled .nav-item.active .nav-link,
  body.hx-industry-refine .header .nav-item.active .nav-link {
    color: #d71920 !important;
    background: transparent !important;
  }

  .header .logo-text,
  .header.transparent .logo-text,
  .header.scrolled .logo-text,
  .header:not(.transparent) .logo-text {
    color: transparent !important;
  }

  .header .brand-word-kylan {
    color: #0b4a8f !important;
  }

  .header .brand-word-va {
    color: #d71920 !important;
  }

  .header .lang-btn,
  .header.transparent .lang-btn,
  .header.scrolled .lang-btn,
  .nav-menu > .lang-selector .lang-btn,
  .nav-menu:not(.active) > .lang-selector .lang-btn {
    background: #fff !important;
    border: 1px solid #d5dde8 !important;
    color: #0b4a8f !important;
  }

  .header .lang-btn:hover {
    border-color: #0b4a8f !important;
    background: #f8fafc !important;
  }

  .header .lang-btn svg,
  .header .lang-btn svg *,
  .nav-menu > .lang-selector .lang-btn svg,
  .nav-menu > .lang-selector .lang-btn svg *,
  .nav-menu:not(.active) > .lang-selector .lang-btn svg,
  .nav-menu:not(.active) > .lang-selector .lang-btn svg * {
    stroke: #0b4a8f !important;
    color: #0b4a8f !important;
  }

  .header .lang-dropdown,
  .header.transparent .lang-dropdown,
  .header.scrolled .lang-dropdown {
    background: #fff !important;
    border: 1px solid #e6ebf1 !important;
    box-shadow: 0 10px 24px rgba(15, 35, 55, 0.12) !important;
  }

  .header .lang-dropdown a,
  .header.transparent .lang-dropdown a,
  .header.scrolled .lang-dropdown a {
    color: #0b4a8f !important;
    background: transparent !important;
    font-weight: 700 !important;
  }

  .header .lang-dropdown a.active,
  .header.transparent .lang-dropdown a.active,
  .header.scrolled .lang-dropdown a.active {
    color: #d71920 !important;
    background: rgba(215, 25, 32, 0.06) !important;
  }

  .header .lang-dropdown a:hover,
  .header.transparent .lang-dropdown a:hover,
  .header.scrolled .lang-dropdown a:hover {
    color: #d71920 !important;
    background: rgba(215, 25, 32, 0.06) !important;
  }
}

/* Final mobile fix: keep language switch visible after opening the menu. */
@media (max-width: 768px) {
  .nav-menu.active > .lang-selector {
    display: block !important;
    position: fixed !important;
    top: 19px !important;
    right: 64px !important;
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    z-index: 10105 !important;
  }

  .nav-menu.active > .lang-selector .lang-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .nav-menu.active > .lang-selector .lang-btn svg {
    display: block !important;
    width: 30px !important;
    height: 30px !important;
    stroke: #6f7175 !important;
    stroke-width: 1.85px !important;
  }

  .nav-menu.active > .lang-selector .lang-dropdown {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    right: -8px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2px !important;
    min-width: 132px !important;
    padding: 8px !important;
    border: 1px solid #eef2f6 !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: 0 10px 24px rgba(15, 43, 91, .18) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-4px) !important;
    z-index: 10110 !important;
  }

  .nav-menu.active > .lang-selector:hover .lang-dropdown,
  .nav-menu.active > .lang-selector:focus-within .lang-dropdown,
  .nav-menu.active > .lang-selector.mobile-lang-open .lang-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }

  .nav-menu.active > .lang-selector .lang-dropdown a {
    min-height: 34px !important;
    padding: 6px 10px !important;
    border-radius: 6px !important;
    background: transparent !important;
    color: #0b4a8f !important;
    font-size: 14px !important;
    font-weight: 700 !important;
  }

  .nav-menu.active > .lang-selector .lang-dropdown a.active {
    background: rgba(215, 25, 32, .08) !important;
    color: #d71920 !important;
  }
}

/* ===== HX Mobile Footer QR Layout Final v26 ===== */
@media (max-width: 768px) {
  .footer {
    padding: 22px 0 76px !important;
    background: #1f4f82 !important;
  }

  .footer .container {
    padding: 0 22px !important;
  }

  .footer .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin: 0 !important;
  }

  .footer .footer-col:first-child,
  .footer .footer-products {
    display: none !important;
  }

  .footer .footer-col:nth-child(4) {
    order: 1 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 94px !important;
    column-gap: 14px !important;
    align-items: start !important;
    grid-column: 1 / -1 !important;
    padding-bottom: 18px !important;
    border-bottom: 1px solid rgba(255, 255, 255, .16) !important;
  }

  .footer .footer-col:nth-child(4)::after {
    content: "" !important;
    display: block !important;
    grid-column: 2 !important;
    grid-row: 1 / span 2 !important;
    width: 94px !important;
    aspect-ratio: 1 !important;
    border-radius: 8px !important;
    background: #fff url("../images/whatsapp-qr.png") center / 78px 78px no-repeat !important;
  }

  .footer .footer-col:nth-child(4) h4,
  .footer .footer-col:nth-child(4) ul {
    grid-column: 1 !important;
  }

  .footer .footer-col:nth-child(4) h4,
  .footer .footer-col:nth-child(3) h4 {
    margin: 0 0 10px !important;
    font-size: 21px !important;
    line-height: 1.25 !important;
    color: #fff !important;
  }

  .footer .footer-col:nth-child(4) ul {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 7px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer .footer-col:nth-child(4) ul li,
  .footer .footer-col:nth-child(4) ul li a {
    min-height: auto !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    color: rgba(255, 255, 255, .84) !important;
    word-break: break-word !important;
  }

  .footer .footer-col:nth-child(3) {
    order: 2 !important;
    display: block !important;
    grid-column: 1 / -1 !important;
  }

  .footer .footer-col:nth-child(3) ul {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px 18px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer .footer-col:nth-child(3) ul li {
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer .footer-col:nth-child(3) ul li a {
    display: inline-flex !important;
    min-height: 24px !important;
    align-items: center !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    color: rgba(255, 255, 255, .84) !important;
    text-decoration: none !important;
  }

  .footer .footer-bottom {
    margin-top: 16px !important;
    padding-top: 12px !important;
    border-top: 1px solid rgba(255, 255, 255, .12) !important;
    text-align: center !important;
  }

  .footer .footer-bottom p {
    font-size: 12px !important;
    line-height: 1.45 !important;
    color: rgba(255, 255, 255, .68) !important;
  }
}
