/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.65);
    z-index: 998;
    -webkit-tap-highlight-color: transparent;
}

/* Hamburger Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== CSS Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #e63946;
    --dark-blue: #1d3557;
    --light-gray: #f8f9fa;
    --text-dark: #333;
    --text-light: #666;
    --white: #fff;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.transparent {
    background-color: transparent;
}

.header.scrolled {
    background-color: var(--primary-red);
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 50px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 60px;
    transition: height 0.3s ease;
}

.logo-text {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
}

.header.scrolled .logo img {
    height: 50px;
}

.header.scrolled .logo-text {
    font-size: 22px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.85;
}

.nav-item.active .nav-link {
    opacity: 1;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    font-size: 14px;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    color: var(--primary-red);
}

/* Multilingual product navigation needs room for longer English/Vietnamese labels. */
html[lang="en"] .products-sidebar .series-nav-item a,
html[lang="vi"] .products-sidebar .series-nav-item a {
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: normal;
    text-align: left;
    line-height: 1.28;
    min-height: 48px;
    padding-left: 12px !important;
    padding-right: 12px !important;
    font-size: clamp(13px, 0.95vw, 15px) !important;
}

html[lang="en"] .products-sidebar .series-nav-item,
html[lang="vi"] .products-sidebar .series-nav-item {
    min-width: 0;
}

html[lang="en"] .products-sidebar,
html[lang="vi"] .products-sidebar {
    min-width: 250px;
}

html[lang="en"] .spv-card-name,
html[lang="vi"] .spv-card-name {
    overflow-wrap: anywhere;
    word-break: normal;
    line-height: 1.35;
}

.dropdown-menu.dropdown-menu-cols {
    min-width: 390px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 8px;
    padding: 12px;
}

.dropdown-menu.dropdown-menu-cols .dropdown-col {
    min-width: 0;
}

.dropdown-menu.dropdown-menu-cols a {
    border-radius: 6px;
    padding: 10px 14px;
    white-space: nowrap;
}

@media (min-width: 769px) {
    .dropdown-menu.dropdown-menu-cols {
        min-width: 520px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-flow: row;
    }

    .dropdown-menu.dropdown-menu-cols .dropdown-col {
        display: contents;
    }
}

.dropdown-menu .mobile-all-products-link {
    display: none !important;
}

/* Language Selector */
.lang-selector {
    position: relative;
}

.lang-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.5);
    color: var(--white);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.header.scrolled .lang-btn {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.1);
}

.lang-btn:hover {
    background: rgba(255,255,255,0.15);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    min-width: 120px;
    padding: 8px 0;
    margin-top: 10px;
}

.lang-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
}

.lang-dropdown a {
    display: block;
    padding: 10px 18px;
    color: var(--text-dark);
    font-size: 14px;
    transition: all 0.2s ease;
}

.lang-dropdown a:hover {
    background: #f5f5f5;
    color: var(--primary-red);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== Hero Section - Taller ===== */
.hero {
    height: 85vh;
    min-height: 650px;
    max-height: 850px;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    display: none;
}

.hero-slide.active {
    display: block;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.4);
    letter-spacing: 4px;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 35px;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.35);
    opacity: 0.95;
}

.hero-btn {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 16px 45px;
    border-radius: 35px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-btn:hover {
    background: transparent;
    border-color: var(--white);
    transform: translateY(-3px);
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 100%);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(0,0,0,0.35);
    border: none;
    color: var(--white);
    font-size: 36px;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.slider-arrow:hover {
    background: var(--primary-red);
}

.slider-prev {
    left: 40px;
}

.slider-next {
    right: 40px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-indicators .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-indicators .dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.slider-indicators .dot:hover {
    background: var(--white);
}

/* ===== Page Header ===== */
.page-header {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.45);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--white);
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.35);
}

/* ===== Container ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

/* ===== Section Styles ===== */
.section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.section-header p {
    color: var(--primary-red);
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 600;
}

.section-header.center {
    text-align: center;
}

/* ===== Category Tabs (New Layout) ===== */
.cat-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cat-tab {
    padding: 14px 28px;
    background: var(--white);
    border: 2px solid #ddd;
    color: var(--text-dark);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cat-tab:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.cat-tab.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
}

/* Tab Panels */
.cat-panels {
    min-height: 400px;
}

.cat-panel {
    display: none;
    animation: fadeSlideIn 0.4s ease;
}

.cat-panel.active {
    display: block;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cat-panel-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.cat-panel-img {
    height: 320px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.cat-panel-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.cat-panel-img:hover img {
    transform: scale(1.05);
}

.cat-panel-content h3 {
    font-size: 28px;
    color: var(--dark-blue);
    margin-bottom: 18px;
    font-weight: 700;
}

.cat-panel-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.cat-panel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(230, 57, 70, 0.08);
    color: var(--primary-red);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.cat-panel-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.view-all-outline {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: transparent;
    color: var(--dark-blue);
    border: 2px solid var(--dark-blue);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-outline:hover {
    background: var(--dark-blue);
    color: var(--white);
}

/* ===== Product Categories Section - Old Grid Layout (Disabled - replaced by big image overlay) ===== */
/* .categories-section {
    padding: 70px 0;
    background: var(--light-gray);
} */

.section-footer {
    text-align: center;
    margin-top: 50px;
}

.view-all {
    display: inline-block;
    padding: 14px 40px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-all:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

/* Categories Grid - 3 columns x 2 rows */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cat-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.cat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.cat-img {
    height: 180px;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    border-bottom: 1px solid #eee;
}

.cat-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.cat-info {
    padding: 25px;
}

.cat-info h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.cat-info p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== About Section ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 600;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 15px;
}

.about-image img {
    border-radius: 12px;
    width: 100%;
}

/* ===== Features Section ===== */
.features-section {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.feature-item {
    padding: 35px 20px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 18px;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* ===== Products Grid (Products Page) ===== */
.products-section {
    padding: 60px 0;
}

.products-tabs {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.product-tab {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-tab:hover,
.product-tab.active {
    background: var(--primary-red);
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: var(--light-gray);
    padding: 25px;
}

.product-card h3 {
    padding: 18px;
    font-size: 15px;
    text-align: center;
    color: var(--text-dark);
    border-top: 1px solid #eee;
}

/* ===== Contact Page ===== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item .text h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-item .text p {
    color: var(--text-light);
    font-size: 14px;
}

.contact-form {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-btn {
    background: var(--primary-red);
    color: var(--white);
    padding: 14px 38px;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-btn:hover {
    background: var(--dark-blue);
}

/* ===== FAQ Page ===== */
.faq-section {
    padding: 80px 0;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 22px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-red);
}

.faq-question .icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question .icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 22px;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 18px;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* 订阅表单样式 */
.footer-subscribe {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-subscribe h5 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--white);
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.subscribe-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    background: rgba(255,255,255,0.05);
    color: white;
    font-size: 14px;
}

.subscribe-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.subscribe-form input:focus {
    outline: none;
    border-color: var(--primary-red);
    background: rgba(255,255,255,0.15);
}

.subscribe-form button {
    width: 100%;
    padding: 12px 18px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.subscribe-form button:hover {
    background: #c5303c;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cat-panel-layout {
        grid-template-columns: 1fr;
        padding: 25px;
    }
    
    .cat-panel-img {
        height: 250px;
    }
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 12px 30px;
    }
    
    .nav-menu {
        gap: 25px;
    }
    
    .hero-content h1 {
        font-size: 20px;
    }
    
    .hero {
        height: 75vh;
        min-height: 550px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cat-tab {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-container {
        padding: 10px 15px;
        overflow: hidden;
    }
    
    .header {
        overflow: hidden;
        background-color: var(--dark-blue) !important;
    }
    
    .logo {
        overflow: hidden;
        flex-shrink: 1;
        min-width: 0;
    }
    
    .logo img {
        height: 40px;
        flex-shrink: 0;
    }
    
    .logo-text {
        font-size: 11px;
        letter-spacing: 1px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 280px;
        max-width: 85%;
        min-width: 200px;
        background: var(--dark-blue);
        flex-direction: column;
        padding: 10px 15px;
        gap: 0;
        border-radius: 0 10px 10px 0;
        box-shadow: 4px 4px 15px rgba(0,0,0,0.3);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
        z-index: 1001;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        padding: 8px 4px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        font-size: 13px;
        line-height: 1.3;
    }
    
    .nav-item {
        margin-bottom: 0;
    }
    
    .nav-link:hover {
        background: rgba(255,255,255,0.08);
        border-radius: 6px;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: rgba(255,255,255,0.05);
        margin-top: 6px;
        border-radius: 6px;
        padding: 6px 0;
    }
    
    .dropdown-menu a {
        color: var(--white);
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .dropdown-menu a:hover {
        background: rgba(255,255,255,0.1);
    }
    
    .lang-selector {
        margin-top: 6px;
        padding-top: 6px;
        border-top: 1px solid rgba(255,255,255,0.15);
    }
    
    .lang-dropdown {
        position: static;
        display: flex;
        gap: 4px;
        transform: none;
        box-shadow: none;
        background: rgba(255,255,255,0.08);
        border-radius: 6px;
        padding: 5px;
        margin-top: 5px;
    }
    
    .lang-dropdown a {
        color: var(--white);
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 11px;
    }
    
    .lang-dropdown a:hover,
    .lang-dropdown a.active {
        background: var(--primary-red);
    }
    
    .hero {
        height: 55vh;
        min-height: 350px;
    }
    
    .hero-content h1 {
        font-size: 20px;
        letter-spacing: 1px;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .hero-btn {
        padding: 10px 24px;
        font-size: 13px;
        border-radius: 20px;
    }
    
    .view-all-outline {
        padding: 8px 20px;
        font-size: 12px;
    }
    
    .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .product-card {
        padding: 10px;
    }
    
    .product-card img {
        height: 100px;
        object-fit: contain;
    }
    
    .product-card h3 {
        font-size: 12px;
        margin-top: 6px;
    }
    
    .product-card p {
        font-size: 11px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        text-align: left;
    }
    
    .footer-col:nth-child(3) {
        grid-column: 1 / -1;
    }
    
    .section-header h2 {
        font-size: 18px;
    }
    
    .section {
        padding: 30px 0;
    }
    
    .cat-tabs {
        gap: 6px;
        flex-wrap: wrap;
    }
    
    .cat-tab {
        padding: 7px 12px;
        font-size: 11px;
        border-radius: 16px;
    }
    
    .cat-panel-layout {
        padding: 20px;
        gap: 20px;
    }
    
    .cat-panel-img {
        height: 200px;
    }
    
    .cat-panel-content h3 {
        font-size: 22px;
    }
    
    .cat-panel-actions {
        flex-direction: column;
    }
    
    .hero-btn, .view-all-outline {
        width: 100%;
        text-align: center;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .product-card {
        padding: 10px;
    }
    
    .product-card img {
        height: 100px;
        object-fit: contain;
    }
    
    .product-card h3 {
        font-size: 12px;
        margin-top: 6px;
    }
    
    .cat-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        padding-bottom: 5px;
    }
    
    .cat-panel-layout {
        padding: 15px;
        gap: 15px;
    }
    
    .cat-panel-img {
        height: 180px;
    }
}

/* ===== 产品系列展示 - 横向轮播 ===== */
.categories-section {
    position: relative;
    padding: 70px 0 80px;
    background: linear-gradient(180deg, #f0f2f5 0%, #f8f9fa 100%);
    overflow: hidden;
}

.cat-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
}

/* 标题区 */
.cat-header {
    text-align: center;
    margin-bottom: 50px;
}

.cat-section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.cat-section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

/* 轮播展示区 */
.cat-showcase {
    display: flex;
    align-items: center;
    gap: 40px;
    min-height: 420px;
}

/* 左侧：大产品图 */
.cat-image-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 380px;
}

.cat-product-img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    transition: opacity 0.4s ease, transform 0.4s ease;
    filter: drop-shadow(0 15px 40px rgba(0,0,0,0.15));
}

.cat-product-img.switching {
    opacity: 0;
    transform: scale(0.95);
}

/* 右侧：系列信息 */
.cat-info-side {
    width: 38%;
    flex-shrink: 0;
}

.cat-info-content {
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.cat-info-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 18px;
}

.cat-info-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 32px;
}

.cat-info-btn {
    display: inline-block;
    color: #fff;
    background: var(--primary-red);
    padding: 14px 36px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cat-info-btn:hover {
    background: #c62d3a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230,57,70,0.4);
}

/* 导航点已在右侧 */

/* 右侧：导航点 */
.cat-nav-side {
    width: 40px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.cat-nav-dots {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.cat-nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cat-nav-dot:hover {
    background: var(--primary-red);
    transform: scale(1.3);
}

.cat-nav-dot.active {
    background: var(--primary-red);
    width: 12px;
    height: 12px;
    box-shadow: 0 0 8px rgba(230,57,70,0.4);
}

/* 左右箭头 */
.cat-arrow {
    position: absolute;
    top: 55%; /* 考虑标题区，稍微偏下 */
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: #fff;
    color: var(--dark-blue);
    font-size: 24px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    line-height: 1;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.cat-arrow:hover {
    background: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
    box-shadow: 0 4px 12px rgba(230,57,70,0.3);
}

.cat-arrow-prev {
    left: 10px;
}

.cat-arrow-next {
    right: 10px;
}

/* 响应式 */
@media (max-width: 1200px) {
    .cat-container {
        padding: 0 40px;
    }
    .cat-info-title {
        font-size: 30px;
    }
    .cat-product-img {
        max-height: 340px;
    }
}

@media (max-width: 768px) {
    .categories-section {
        padding: 40px 0 60px;
    }
    .cat-container {
        padding: 0 20px;
    }
    .categories-section {
        padding: 30px 0;
    }
    .cat-container {
        padding: 0 15px;
        max-width: 100%;
    }
    .cat-showcase {
        flex-direction: column;
        gap: 15px;
        min-height: auto;
        width: 100%;
    }
    .cat-image-side {
        width: 100%;
        min-height: 200px;
    }
    .cat-product-img {
        max-height: 200px;
    }
    .cat-info-side {
        width: 100%;
        text-align: center;
    }
    .cat-info-content {
        padding: 0 10px;
    }
    .cat-info-title {
        font-size: 18px;
    }
    .cat-info-desc {
        font-size: 13px;
    }
    .cat-info-btn {
        display: block;
        text-align: center;
        padding: 8px 20px;
        font-size: 13px;
    }
    .cat-nav-side {
        width: 100%;
    }
    .cat-nav-dots {
        flex-direction: row;
        justify-content: center;
        gap: 6px;
    }
    .cat-nav-dot {
        width: 8px;
        height: 8px;
    }
    .cat-arrow-prev {
        left: 5px;
    }
    .cat-arrow-next {
        right: 5px;
    }
}

.home-applications-section {
    padding: 68px 0;
    background: #f5f7fa;
}

.home-applications-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.home-applications-head h2 {
    font-size: 32px;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.home-applications-head p {
    color: var(--text-light);
    font-size: 15px;
}

.home-applications-head a {
    color: var(--primary-red);
    font-weight: 700;
    white-space: nowrap;
}

.home-applications-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-application-card {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    border-radius: 8px;
    background: #111827;
    color: #fff;
}

.home-application-card img {
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
    display: block;
    opacity: .72;
    transition: transform .35s ease, opacity .35s ease;
}

.home-application-card span {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

.home-application-card:hover img {
    transform: scale(1.06);
    opacity: .86;
}

/* ===== 认证区域 ===== */
.certifications-section {
    padding: 40px 0 50px;
    background: #fff;
    border-top: 1px solid #eee;
}

.cert-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.cert-photos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cert-photo-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #f5f5f5;
    cursor: pointer;
    position: relative;
}

.cert-photo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}

.cert-photo-item {
    cursor: pointer;
    position: relative;
}

.cert-photo-item img {
    width: 100%;
    height: 360px;
    object-fit: contain;
    background: #f5f5f5;
    display: block;
    transition: transform 0.3s ease;
}

.cert-photo-item:hover img {
    transform: scale(1.03);
}

.cert-zoom-hint {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.45);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.cert-photo-item:hover .cert-zoom-hint {
    opacity: 1;
}

/* 灯箱 */
.cert-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.88);
    align-items: center;
    justify-content: center;
}

.cert-lightbox.active {
    display: flex;
}

.cert-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 8px 48px rgba(0,0,0,0.6);
    animation: certZoomIn 0.22s ease;
}

@keyframes certZoomIn {
    from { transform: scale(0.85); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

.cert-lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.cert-lightbox-close:hover {
    opacity: 1;
}

@media (max-width: 1200px) {
    .cert-photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cert-container {
        padding: 0 20px;
    }
    .cert-photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .cert-photo-item img {
        height: 200px;
    }
}

/* ===== 公司实力数据统计 ===== */
.stats-section {
    padding: 80px 0;
    background: #fff;
    color: var(--dark-blue);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230,57,70,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(29,53,87,0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
}

.stats-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.stats-header p {
    font-size: 14px;
    color: var(--primary-red);
    letter-spacing: 6px;
    font-weight: 500;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 36px 24px 32px;
    background: linear-gradient(145deg, #ffffff 0%, #f7f9fc 100%);
    border-radius: 16px;
    border: 1px solid rgba(29,53,87,0.06);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), #ff6b81);
    transform: scaleX(0);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(29,53,87,0.10), 0 4px 12px rgba(230,57,70,0.08);
    border-color: rgba(230,57,70,0.15);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-icon-wrap {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(230,57,70,0.08) 0%, rgba(29,53,87,0.06) 100%);
    color: var(--primary-red);
    transition: all 0.35s ease;
}

.stat-item:hover .stat-icon-wrap {
    background: linear-gradient(135deg, var(--primary-red) 0%, #ff6b81 100%);
    color: #fff;
    transform: scale(1.08);
}

.stat-number {
    margin-bottom: 10px;
}

.stat-val {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -1px;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-val {
    color: var(--primary-red);
}

.stat-val-text {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-val-text {
    color: var(--primary-red);
}

.stat-unit {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-red);
    margin-left: 2px;
    vertical-align: super;
    line-height: 1;
}

.stat-label {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.stat-desc {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .stats-container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 50px 0;
    }
    .stats-container {
        padding: 0 20px;
    }
    .stats-header h2 {
        font-size: 28px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .stat-val {
        font-size: 40px;
    }
    .stat-item {
        padding: 25px 15px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .page-header h1 {
        font-size: 28px;
    }
    
    .article-container {
        padding: 0 15px;
    }
    
    .article-body h2 {
        font-size: 20px;
    }
    
    .article-body p {
        font-size: 14px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .subscribe-form input,
    .subscribe-form button {
        font-size: 13px;
        padding: 10px 14px;
    }
}

@media (max-width: 768px) {
    .article-section {
        padding: 30px 0;
    }
    
    .article-container {
        padding: 0 15px;
    }
    
    .article-meta {
        flex-wrap: wrap;
        gap: 10px;
        font-size: 12px;
    }
    
    .article-body h2 {
        font-size: 19px;
        margin: 25px 0 12px;
    }
    
    .article-body h3 {
        font-size: 16px;
    }
    
    .article-body p {
        font-size: 14px;
        line-height: 1.75;
    }
    
    .article-body table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .article-body th,
    .article-body td {
        padding: 8px 10px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .article-body .cta-box {
        padding: 20px 15px;
        margin: 25px 0;
    }
    
    .article-body .cta-box h3 {
        font-size: 16px;
    }
    
    .page-header {
        height: 100px;
    }
    
    .page-header h1 {
        font-size: 17px;
        letter-spacing: 0.5px;
        text-shadow: 1px 2px 4px rgba(0,0,0,0.5);
    }
    
    .page-header {
        padding-top: 55px;
    }
    
    .breadcrumb {
        font-size: 12px;
        padding: 10px 0;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        text-align: left;
    }
    
    .footer-col:nth-child(3) {
        grid-column: 1 / -1;
    }
    
    .footer-col h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .footer-col ul li {
        font-size: 13px;
        line-height: 1.8;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
    
    .subscribe-form input,
    .subscribe-form button {
        width: 100%;
        box-sizing: border-box;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .news-section {
        padding: 30px 0;
    }
    
    .news-card {
        flex-direction: column;
    }
    
    .news-card-image {
        width: 100%;
        height: 140px;
    }
    
    .news-card-content {
        padding: 10px 12px;
    }
    
    .news-card-content h3 {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .news-card-content p {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .news-card-content p {
        font-size: 13px;
    }
}

/* Product detail mobile */
@media (max-width: 768px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .product-detail-layout .product-gallery,
    .product-detail-layout .product-info,
    .product-detail-layout .product-specs {
        grid-column: 1 / -1;
        width: 100%;
    }
    
    .product-info h1 {
        font-size: 20px;
    }
    
    .product-info .price {
        font-size: 18px;
    }
    
    .spec-table {
        font-size: 13px;
    }
    
    .spec-table th,
    .spec-table td {
        padding: 8px 10px;
    }
}

.page-main-title{max-width:1200px;margin:28px auto 18px;padding:0 20px;font-size:32px;line-height:1.25;color:#1d3557;font-weight:700;}
@media(max-width:640px){.page-main-title{font-size:26px;margin:22px auto 14px;}}


/* ===== HX desktop UI polish 2026-06 ===== */
.nav-item.active .nav-link {
    font-weight: 800;
    opacity: 1;
}
.nav-item.active .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
}
.header.scrolled .nav-item.active .nav-link::after,
.header:not(.transparent) .nav-item.active .nav-link::after {
    background: rgba(255,255,255,.95);
}
.footer-grid {
    grid-template-columns: 1.35fr 1.45fr 1fr 1.25fr;
}
.footer-series-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
}
.footer-series-list li {
    margin-bottom: 0;
}
.hx-section-eyebrow {
    color: #c62828;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    margin-bottom: 10px;
}
.hx-home-applications {
    background: linear-gradient(180deg, #f3f6fa 0%, #e9eef5 100%);
    border-top: 1px solid #dfe6ef;
    border-bottom: 1px solid #dfe6ef;
}
.hx-home-applications .home-applications-head {
    margin-bottom: 30px;
}
.hx-home-applications .home-applications-head a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid #c62828;
    border-radius: 4px;
    background: #fff;
    text-decoration: none;
}
.hx-applications-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 24px;
    align-items: stretch;
}
.hx-application-feature {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    color: #fff;
    background: #1d3557;
    text-decoration: none;
    display: block;
    border-radius: 6px;
}
.hx-application-feature img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    display: block;
    object-fit: cover;
    opacity: .72;
    transition: transform .35s ease, opacity .35s ease;
}
.hx-application-feature::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,24,44,0) 18%, rgba(10,24,44,.86) 100%);
}
.hx-application-feature div {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 30px;
    z-index: 1;
}
.hx-application-feature span {
    display: inline-flex;
    padding: 6px 10px;
    background: #c62828;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 14px;
}
.hx-application-feature h3 {
    color: #fff;
    font-size: 30px;
    margin: 0 0 10px;
}
.hx-application-feature p {
    color: rgba(255,255,255,.84);
    line-height: 1.7;
    margin: 0;
}
.hx-application-feature:hover img {
    transform: scale(1.045);
    opacity: .82;
}
.hx-application-list {
    display: grid;
    gap: 12px;
}
.hx-application-list a {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px 18px;
    align-items: center;
    min-height: 76px;
    padding: 18px 20px;
    background: #fff;
    border-left: 4px solid transparent;
    border-radius: 6px;
    text-decoration: none;
    color: #1d3557;
    box-shadow: 0 8px 24px rgba(20,34,58,.06);
}
.hx-application-list a:hover {
    border-left-color: #c62828;
    transform: translateX(2px);
}
.hx-application-list span {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #c62828;
    background: #fff1f2;
    font-weight: 800;
    border-radius: 50%;
}
.hx-application-list strong {
    font-size: 18px;
}
.hx-application-list em {
    color: #64748b;
    font-size: 14px;
    font-style: normal;
}
.hx-condition-selector {
    background: #101f33;
    border: 0;
    padding: 70px 0;
}
.hx-condition-panel {
    display: grid;
    grid-template-columns: minmax(0, .95fr) 360px;
    gap: 28px;
    align-items: stretch;
}
.hx-condition-copy {
    padding: 34px 36px;
    background: #fff;
    border-radius: 6px;
}
.hx-condition-copy h2 {
    color: #1d3557;
    font-size: 32px;
    margin: 0 0 12px;
}
.hx-condition-copy p {
    color: #5f6f82;
    line-height: 1.85;
    margin: 0 0 22px;
}
.hx-condition-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hx-condition-actions a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 800;
}
.hx-condition-actions a:first-child {
    color: #fff;
    background: #c62828;
}
.hx-condition-actions a:last-child {
    color: #1d3557;
    border: 1px solid #d8e0ea;
    background: #fff;
}
.hx-condition-image {
    min-height: 250px;
    overflow: hidden;
    border-radius: 6px;
}
.hx-condition-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hx-condition-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.hx-condition-grid a {
    display: block;
    min-height: 106px;
    padding: 20px;
    color: #fff;
    text-decoration: none;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 6px;
}
.hx-condition-grid a:hover {
    background: rgba(198,40,40,.34);
    border-color: rgba(255,255,255,.32);
}
.hx-condition-grid span {
    display: block;
    color: rgba(255,255,255,.66);
    font-size: 13px;
    margin-bottom: 9px;
}
.hx-condition-grid strong {
    display: block;
    font-size: 20px;
}
.page-main-title {
    text-align: center;
    color: #1d3557;
    font-size: 34px;
    margin: 28px 0 12px;
}
.quick-contact-section .section-title {
    text-align: center;
}
@media (max-width: 1024px) {
    .hx-applications-layout,
    .hx-condition-panel {
        grid-template-columns: 1fr;
    }
    .hx-condition-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ===== HX inner page UI polish ===== */
.nav-link {
    position: relative;
}
.contact-title-band {
    text-align: center;
    padding-top: 28px;
    margin-bottom: 18px;
}
.contact-title-band p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}
body.hx-ui-polish .news-hero,
body.hx-ui-polish .applications-hero,
body.hx-ui-polish .page-hero {
    background: linear-gradient(120deg, #102238 0%, #1d3557 54%, #eef3f8 54%, #fff 100%) !important;
    border-bottom: 0 !important;
}
body.hx-ui-polish .news-hero h1,
body.hx-ui-polish .applications-hero h1,
body.hx-ui-polish .page-hero h1 {
    color: #fff !important;
}
body.hx-ui-polish .news-hero p,
body.hx-ui-polish .applications-hero p,
body.hx-ui-polish .page-hero p {
    color: rgba(255,255,255,.82) !important;
}
body.hx-ui-polish .news-tabs a {
    border-color: rgba(255,255,255,.26) !important;
    background: rgba(255,255,255,.1) !important;
    color: #fff !important;
}
body.hx-ui-polish .news-section,
body.hx-ui-polish .applications-wrap,
body.hx-ui-polish .resource-wrap {
    background: #f4f7fb !important;
}
body.hx-ui-polish .news-featured-card,
body.hx-ui-polish .news-side-list a,
body.hx-ui-polish .news-card,
body.hx-ui-polish .application-solution,
body.hx-ui-polish .download-card,
body.hx-ui-polish .resource-sidebar,
body.hx-ui-polish .applications-sidebar {
    border-radius: 6px !important;
    box-shadow: 0 10px 28px rgba(20,34,58,.07) !important;
}
body.hx-ui-polish .application-solution {
    background: #fff !important;
    border: 1px solid #e4ebf3 !important;
    padding: 24px !important;
    margin-bottom: 18px !important;
}
body.hx-ui-polish .application-media {
    border-radius: 6px !important;
}
body.hx-ui-polish .download-group {
    background: #fff !important;
    border: 1px solid #e4ebf3 !important;
    border-radius: 6px !important;
    padding: 24px !important;
}
body.hx-ui-polish .download-badge {
    background: #1d3557 !important;
    color: #fff !important;
}


/* ===== HX industry reference UI refinement ===== */
.hx-industry-refine .hx-section-eyebrow,
.hx-section-eyebrow {
    display: none !important;
}
.hx-industry-refine .nav-item.active .nav-link::after,
.nav-item.active .nav-link::after {
    height: 2px;
    bottom: -8px;
}
.hx-industry-applications {
    padding: 74px 0;
    background: #f3f6f9;
    border-top: 1px solid #e1e7ef;
    border-bottom: 1px solid #e1e7ef;
}
.hx-industry-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px 36px;
    align-items: end;
    margin-bottom: 28px;
}
.hx-industry-heading h2 {
    color: #1d3557;
    font-size: 32px;
    margin: 0 0 10px;
}
.hx-industry-heading p {
    max-width: 720px;
    color: #5b697a;
    line-height: 1.8;
    margin: 0;
}
.hx-industry-heading > a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid #cfd8e3;
    background: #fff;
    color: #1d3557;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
}
.hx-industry-heading > a:hover {
    background: #1d3557;
    border-color: #1d3557;
    color: #fff;
}
.hx-industry-app-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(360px, .7fr);
    gap: 24px;
}
.hx-industry-main {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    display: block;
    color: #fff;
    background: #16283f;
    border-radius: 4px;
    text-decoration: none;
}
.hx-industry-main img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    display: block;
    opacity: .74;
    transition: transform .35s ease, opacity .35s ease;
}
.hx-industry-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12,24,40,.86) 0%, rgba(12,24,40,.56) 45%, rgba(12,24,40,.16) 100%);
}
.hx-industry-main div {
    position: absolute;
    left: 36px;
    bottom: 34px;
    max-width: 480px;
    z-index: 1;
}
.hx-industry-main h3 {
    color: #fff;
    font-size: 30px;
    line-height: 1.25;
    margin: 0 0 12px;
}
.hx-industry-main p {
    color: rgba(255,255,255,.86);
    line-height: 1.75;
    margin: 0 0 18px;
}
.hx-industry-main span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    background: rgba(255,255,255,.14);
    color: #fff;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 4px;
    font-weight: 700;
}
.hx-industry-main:hover img {
    transform: scale(1.035);
    opacity: .82;
}
.hx-industry-links {
    display: grid;
    background: #fff;
    border: 1px solid #e1e7ef;
    border-radius: 4px;
}
.hx-industry-links a {
    display: block;
    padding: 22px 24px;
    border-bottom: 1px solid #e8edf3;
    color: #1d3557;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}
.hx-industry-links a:last-child {
    border-bottom: 0;
}
.hx-industry-links strong {
    display: block;
    font-size: 18px;
    margin-bottom: 7px;
}
.hx-industry-links span {
    color: #687789;
    font-size: 14px;
    line-height: 1.6;
}
.hx-industry-links a:hover {
    background: #edf2f7;
}
.hx-selection-board {
    padding: 72px 0;
    background: #fff;
    border-top: 0;
    border-bottom: 1px solid #e1e7ef;
}
.hx-selection-head {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: end;
    margin-bottom: 26px;
}
.hx-selection-head h2 {
    color: #1d3557;
    font-size: 32px;
    margin: 0 0 10px;
}
.hx-selection-head p {
    max-width: 760px;
    color: #5b697a;
    line-height: 1.8;
    margin: 0;
}
.hx-selection-actions {
    display: flex;
    gap: 10px;
    white-space: nowrap;
}
.hx-selection-actions a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
}
.hx-selection-actions a:first-child {
    background: #1d3557;
    color: #fff;
}
.hx-selection-actions a:last-child {
    border: 1px solid #cfd8e3;
    color: #1d3557;
    background: #fff;
}
.hx-selection-actions a:hover {
    background: #142840;
    color: #fff;
}
.hx-selection-layout {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    border: 1px solid #dfe6ef;
    border-radius: 4px;
    overflow: hidden;
    background: #f8fafc;
}
.hx-selection-image {
    min-height: 390px;
    background: #16283f;
}
.hx-selection-image img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    display: block;
    opacity: .86;
}
.hx-selection-groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.hx-selection-group {
    padding: 28px;
    background: #fff;
    border-left: 1px solid #e5ebf2;
    border-bottom: 1px solid #e5ebf2;
}
.hx-selection-group h3 {
    color: #1d3557;
    font-size: 19px;
    margin: 0 0 16px;
}
.hx-selection-group div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.hx-selection-group a {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 0 12px;
    color: #34465c;
    background: #f4f7fa;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
}
.hx-selection-group a:hover {
    background: #1d3557;
    color: #fff;
}
body.hx-industry-refine .news-hero,
body.hx-industry-refine .applications-hero,
body.hx-industry-refine .page-hero {
    background: #f5f7fa !important;
    border-bottom: 1px solid #dfe6ef !important;
}
body.hx-industry-refine .news-hero h1,
body.hx-industry-refine .applications-hero h1,
body.hx-industry-refine .page-hero h1 {
    color: #1d3557 !important;
}
body.hx-industry-refine .news-hero p,
body.hx-industry-refine .applications-hero p,
body.hx-industry-refine .page-hero p {
    color: #5b697a !important;
}
body.hx-industry-refine .news-tabs a,
body.hx-industry-refine .resource-sidebar a,
body.hx-industry-refine .applications-sidebar a,
body.hx-industry-refine .application-products a {
    border-color: transparent !important;
    background: #f3f6f9 !important;
    color: #1d3557 !important;
}
body.hx-industry-refine .news-tabs a:hover,
body.hx-industry-refine .resource-sidebar a:hover,
body.hx-industry-refine .applications-sidebar a:hover,
body.hx-industry-refine .application-products a:hover {
    background: #1d3557 !important;
    color: #fff !important;
}
body.hx-industry-refine .news-category h2,
body.hx-industry-refine .article-body h2 {
    border-left: 0 !important;
    padding-left: 0 !important;
}
body.hx-industry-refine .news-kicker,
body.hx-industry-refine .application-index {
    color: #66758a !important;
    background: transparent !important;
    letter-spacing: 0 !important;
}
body.hx-industry-refine .news-featured-card,
body.hx-industry-refine .news-side-list a,
body.hx-industry-refine .news-card,
body.hx-industry-refine .application-solution,
body.hx-industry-refine .download-card,
body.hx-industry-refine .download-group,
body.hx-industry-refine .resource-sidebar,
body.hx-industry-refine .applications-sidebar {
    border: 1px solid #dfe6ef !important;
    border-radius: 4px !important;
    box-shadow: none !important;
}
body.hx-industry-refine .news-card:hover,
body.hx-industry-refine .news-side-list a:hover,
body.hx-industry-refine .news-featured-card:hover,
body.hx-industry-refine .application-solution:hover,
body.hx-industry-refine .download-card:hover {
    border-color: #dfe6ef !important;
    background: #eef3f8 !important;
    box-shadow: none !important;
}
body.hx-industry-refine .download-grid {
    display: block !important;
}
body.hx-industry-refine .download-card {
    grid-template-columns: minmax(0, 1fr) auto !important;
    margin-bottom: 10px !important;
    padding: 16px 18px !important;
}
body.hx-industry-refine .download-badge {
    background: #eef3f8 !important;
    color: #1d3557 !important;
    border-radius: 3px !important;
}
body.hx-industry-refine .download-card:hover .download-badge {
    background: #1d3557 !important;
    color: #fff !important;
}
@media (max-width: 1024px) {
    .hx-industry-heading,
    .hx-industry-app-grid,
    .hx-selection-head,
    .hx-selection-layout {
        display: block;
    }
    .hx-industry-heading > a,
    .hx-selection-actions {
        margin-top: 18px;
    }
    .hx-industry-links {
        margin-top: 18px;
    }
    .hx-selection-groups {
        grid-template-columns: 1fr;
    }
}


/* ===== HX simplified approved layout ===== */
.nav-item.active .nav-link::after,
.hx-industry-refine .nav-item.active .nav-link::after {
    display: none !important;
}
.nav-item.active .nav-link {
    font-weight: 800;
    background: rgba(255,255,255,.12);
    border-radius: 4px;
    padding-left: 10px;
    padding-right: 10px;
}
.header.transparent .nav-item.active .nav-link {
    background: rgba(255,255,255,.16);
}
.hx-simple-head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 30px;
}
.hx-simple-head h2 {
    color: #1d3557;
    font-size: 32px;
    margin: 0 0 10px;
}
.hx-simple-head p {
    color: #607086;
    line-height: 1.8;
    margin: 0;
}
.hx-simple-applications {
    padding: 70px 0;
    background: #f5f7fa;
}
.hx-simple-app-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.hx-simple-app-grid a {
    display: block;
    background: #fff;
    border: 1px solid #e1e7ef;
    border-radius: 4px;
    overflow: hidden;
    color: #1d3557;
    text-decoration: none;
    transition: background .2s ease;
}
.hx-simple-app-grid a:hover {
    background: #edf2f7;
}
.hx-simple-app-grid img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}
.hx-simple-app-grid a:hover img {
    transform: scale(1.035);
}
.hx-simple-app-grid strong {
    display: block;
    font-size: 18px;
    padding: 18px 18px 8px;
}
.hx-simple-app-grid span {
    display: block;
    color: #65758a;
    line-height: 1.65;
    padding: 0 18px 20px;
    font-size: 14px;
}
.hx-simple-more {
    text-align: center;
    margin: -10px 0 26px;
}
.hx-simple-more a {
    display: inline;
    align-items: center;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #1d3557;
    text-decoration: none;
    font-weight: 700;
}
.hx-simple-more a:hover {
    color: #c62828;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.hx-simple-selection {
    padding: 64px 0 70px;
    background: #fff;
    border-bottom: 1px solid #e1e7ef;
}
.hx-simple-selection-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.hx-simple-selection-grid > div {
    background: #f5f7fa;
    border: 1px solid #e1e7ef;
    border-radius: 4px;
    padding: 24px;
}
.hx-simple-selection-grid h3 {
    color: #1d3557;
    font-size: 20px;
    margin: 0 0 16px;
}
.hx-simple-selection-grid p {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
}
.hx-simple-selection-grid a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 13px;
    background: #fff;
    border-radius: 3px;
    color: #33465c;
    text-decoration: none;
    font-weight: 600;
}
.hx-simple-selection-grid a:hover {
    background: #1d3557;
    color: #fff;
}
body.hx-industry-refine .applications-hero .container {
    display: block !important;
}
body.hx-industry-refine .applications-hero {
    padding: 118px 0 42px !important;
    text-align: center;
}
body.hx-industry-refine .applications-hero p {
    max-width: 860px !important;
    margin: 0 auto !important;
}
body.hx-industry-refine .applications-hero-panel {
    display: none !important;
}
body.hx-industry-refine .applications-wrap {
    background: #fff !important;
    padding: 36px 0 70px !important;
}
body.hx-industry-refine .applications-layout {
    display: block !important;
}
body.hx-industry-refine .applications-sidebar {
    position: static !important;
    border: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    margin-bottom: 28px;
}
body.hx-industry-refine .applications-sidebar h2 {
    display: none;
}
body.hx-industry-refine .applications-sidebar a {
    display: inline-flex !important;
    margin: 0 8px 10px 0;
    min-height: 38px;
    align-items: center;
    padding: 0 14px !important;
}
body.hx-industry-refine .application-solution {
    display: grid !important;
    grid-template-columns: 280px minmax(0,1fr) !important;
    gap: 26px !important;
    border: 0 !important;
    border-top: 1px solid #e1e7ef !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 26px 0 !important;
    margin: 0 !important;
}
body.hx-industry-refine .application-solution:hover {
    background: #f7f9fc !important;
}
body.hx-industry-refine .application-index,
body.hx-industry-refine .application-condition {
    display: none !important;
}
body.hx-industry-refine .application-media {
    min-height: 190px !important;
    border-radius: 4px !important;
}
body.hx-industry-refine .application-media img {
    min-height: 190px !important;
}
body.hx-industry-refine .application-copy h2 {
    margin-top: 4px;
}
body.hx-industry-refine .application-products a {
    border: 0 !important;
}
.about-intro h1 {
    font-size: 34px;
    color: var(--text-dark);
    margin: 0 0 20px;
}
body.hx-industry-refine .news-hero,
body.hx-industry-refine .page-hero {
    text-align: center;
    padding: 118px 0 42px !important;
}
body.hx-industry-refine .news-hero p,
body.hx-industry-refine .page-hero p {
    margin-left: auto !important;
    margin-right: auto !important;
}
body.hx-industry-refine .news-section {
    background: #fff !important;
}
body.hx-industry-refine .news-tabs {
    justify-content: center;
}
body.hx-industry-refine .news-featured-card,
body.hx-industry-refine .news-side-list a,
body.hx-industry-refine .news-card {
    background: #f8fafc !important;
}
body.hx-industry-refine .news-card {
    grid-template-columns: minmax(0,1fr) !important;
}
body.hx-industry-refine .news-card-media {
    display: none !important;
}
body.hx-industry-refine .news-card:hover,
body.hx-industry-refine .news-side-list a:hover,
body.hx-industry-refine .news-featured-card:hover {
    background: #edf2f7 !important;
}
body.hx-industry-refine .resource-wrap {
    background: #fff !important;
}
body.hx-industry-refine .resource-layout {
    grid-template-columns: 220px minmax(0,1fr) !important;
}
body.hx-industry-refine .resource-sidebar {
    border: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
}
body.hx-industry-refine .resource-sidebar a {
    display: flex !important;
    align-items: center;
    min-height: 42px;
    margin-bottom: 8px;
}
body.hx-industry-refine .download-group {
    border: 0 !important;
    border-top: 1px solid #e1e7ef !important;
    border-radius: 0 !important;
    padding: 24px 0 !important;
    background: #fff !important;
}
body.hx-industry-refine .download-card {
    background: #f8fafc !important;
}
body.hx-industry-refine .download-card:hover {
    background: #edf2f7 !important;
}
@media (max-width: 1024px) {
    .hx-simple-app-grid,
    .hx-simple-selection-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
    body.hx-industry-refine .application-solution,
    body.hx-industry-refine .resource-layout {
        display: block !important;
    }
}

/* ===== HX desktop UI rebuild 2026-06-19 ===== */
.nav-item.active .nav-link,
.header.transparent .nav-item.active .nav-link,
body.hx-industry-refine .nav-item.active .nav-link {
    font-weight: 800 !important;
    background: transparent !important;
    border-radius: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    color: inherit !important;
}
.nav-item.active .nav-link::after,
.nav-link::after,
body.hx-industry-refine .nav-item.active .nav-link::after {
    display: none !important;
}
.nav-link:hover {
    background: transparent !important;
}
.header.scrolled .nav-link,
.header:not(.transparent) .nav-link,
.header.scrolled .logo-text,
.header:not(.transparent) .logo-text {
    color: #fff !important;
}
.header.transparent .nav-link,
.header.transparent .logo-text {
    color: #fff !important;
}
.dropdown-menu a,
.header.transparent .dropdown-menu a,
.header.scrolled .dropdown-menu a {
    color: #1d3557 !important;
}
.footer-series-list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px 18px !important;
}
.footer-series-list li {
    margin: 0 !important;
}
.hx-simple-head {
    max-width: 760px !important;
    margin: 0 auto 28px !important;
    text-align: center !important;
}
.hx-simple-head h2 {
    font-size: 31px !important;
    color: #1d3557 !important;
    margin: 0 0 10px !important;
}
.hx-simple-head p {
    color: #5f6f82 !important;
    line-height: 1.8 !important;
}
.hx-simple-applications {
    padding: 66px 0 !important;
    background: #f5f7fa !important;
}
.hx-simple-app-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 16px !important;
}
.hx-simple-app-grid a {
    display: block !important;
    overflow: hidden !important;
    background: #fff !important;
    border: 1px solid #e1e7ef !important;
    border-radius: 3px !important;
    color: #1d3557 !important;
    text-decoration: none !important;
    box-shadow: none !important;
}
.hx-simple-app-grid a:hover {
    background: #edf2f7 !important;
    border-color: #d5dee9 !important;
}
.hx-simple-app-grid img {
    width: 100% !important;
    height: 155px !important;
    object-fit: cover !important;
    display: block !important;
}
.hx-simple-app-grid strong {
    display: block !important;
    padding: 16px 16px 6px !important;
    font-size: 17px !important;
}
.hx-simple-app-grid span {
    display: block !important;
    padding: 0 16px 18px !important;
    color: #66758a !important;
    line-height: 1.65 !important;
    font-size: 14px !important;
}
.hx-simple-more {
    text-align: center !important;
    margin-top: 24px !important;
}
.hx-simple-more a {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 42px !important;
    padding: 0 20px !important;
    border-radius: 3px !important;
    background: #1d3557 !important;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 700 !important;
}
.hx-simple-selection {
    padding: 60px 0 66px !important;
    background: #fff !important;
    border-bottom: 1px solid #e1e7ef !important;
}
.hx-simple-selection-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 16px !important;
}
.hx-simple-selection-grid > div {
    background: #f6f8fb !important;
    border: 1px solid #e1e7ef !important;
    border-radius: 3px !important;
    padding: 22px !important;
}
.hx-simple-selection-grid > div:hover {
    background: #eef3f8 !important;
}
.hx-simple-selection-grid h3 {
    color: #1d3557 !important;
    font-size: 19px !important;
    margin: 0 0 14px !important;
}
.hx-simple-selection-grid p {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 9px !important;
    margin: 0 !important;
}
.hx-simple-selection-grid a {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 34px !important;
    padding: 0 12px !important;
    background: #fff !important;
    color: #33465c !important;
    border-radius: 3px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
}
.hx-simple-selection-grid a:hover {
    background: #1d3557 !important;
    color: #fff !important;
}
body.hx-industry-refine .news-category h2,
body.hx-industry-refine .article-body h2 {
    border-left: 0 !important;
    padding-left: 0 !important;
}
body.hx-industry-refine .news-card:hover,
body.hx-industry-refine .news-side-list a:hover,
body.hx-industry-refine .news-featured-card:hover,
body.hx-industry-refine .application-solution:hover,
body.hx-industry-refine .download-card:hover {
    border-color: #d9e1ea !important;
    background: #f1f5f9 !important;
    box-shadow: none !important;
}
body.hx-industry-refine .news-card,
body.hx-industry-refine .news-side-list a,
body.hx-industry-refine .news-featured-card,
body.hx-industry-refine .application-solution,
body.hx-industry-refine .download-card {
    box-shadow: none !important;
    border-radius: 3px !important;
}
@media (max-width: 1024px) {
    .hx-simple-app-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    .hx-simple-selection-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ===== HX desktop UI round 2 polish ===== */
:root {
    --hx-radius: 8px;
    --hx-soft-border: #dde6f0;
    --hx-soft-bg: #f5f7fa;
    --hx-hover-bg: #edf2f7;
}
.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: #fff !important;
    font-weight: 800 !important;
    background: transparent !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.header .nav-item.active .nav-link::after,
.header .nav-link::after {
    display: none !important;
}
.header .nav-menu {
    align-items: center !important;
}
.about-detail-block h3::before,
.stats-section::before,
.stat-item::before,
.hx-section-eyebrow,
.application-index,
.news-kicker {
    display: none !important;
}
.about-detail-block h3,
.article-body h2,
.news-category h2,
.app-detail-main h2 {
    border-left: 0 !important;
    padding-left: 0 !important;
}
.home-applications-section.hx-simple-applications {
    background: #f4f7fa !important;
}
.hx-simple-app-grid a {
    border-radius: var(--hx-radius) !important;
    border: 1px solid var(--hx-soft-border) !important;
    box-shadow: 0 8px 22px rgba(21, 38, 61, .06) !important;
}
.hx-simple-app-grid a:hover {
    background: var(--hx-hover-bg) !important;
    border-color: #cfd9e5 !important;
}
.hx-simple-app-grid img {
    height: 176px !important;
    aspect-ratio: 16 / 9 !important;
    object-fit: cover !important;
    object-position: center !important;
}
.hx-simple-selection-grid > div {
    border-radius: var(--hx-radius) !important;
    border: 1px solid var(--hx-soft-border) !important;
    background: linear-gradient(180deg, #fff 0%, #f6f8fb 100%) !important;
    box-shadow: 0 8px 22px rgba(21, 38, 61, .05) !important;
}
.hx-simple-selection-grid > div:hover {
    background: var(--hx-hover-bg) !important;
}
.hx-simple-selection-grid a,
.hx-simple-more a,
.applications-sidebar a,
.application-products a,
.news-tabs a,
.resource-sidebar a,
.download-badge {
    border-radius: 999px !important;
}
.products-sidebar {
    width: 280px !important;
    padding: 22px !important;
    border: 1px solid var(--hx-soft-border) !important;
    border-radius: var(--hx-radius) !important;
    background: #fff !important;
    align-self: flex-start !important;
    box-shadow: 0 8px 24px rgba(21, 38, 61, .05) !important;
}
.products-sidebar .sidebar-title {
    border-bottom: 1px solid #e8edf3 !important;
    color: #1d3557 !important;
    margin-bottom: 14px !important;
}
.series-nav-item a {
    justify-content: flex-start !important;
    border-left: 0 !important;
    border: 1px solid transparent !important;
    border-radius: var(--hx-radius) !important;
    padding: 12px 14px !important;
    background: #f7f9fc !important;
}
.series-nav-item:hover a {
    background: #edf2f7 !important;
    color: #1d3557 !important;
    border-color: #d7e0eb !important;
}
.series-nav-item.active a {
    background: #fff6f6 !important;
    color: #c62828 !important;
    border-color: #c62828 !important;
    font-weight: 700 !important;
}
.catalog-sidebar {
    border-radius: var(--hx-radius) !important;
    box-shadow: 0 8px 24px rgba(21, 38, 61, .05) !important;
}
.catalog-sidebar a {
    border-radius: var(--hx-radius) !important;
    border: 1px solid transparent !important;
    background: #f7f9fc !important;
    margin-bottom: 8px !important;
}
.catalog-sidebar a.active,
.catalog-sidebar a:hover {
    background: #fff6f6 !important;
    color: #c62828 !important;
    border-color: #c62828 !important;
}
.catalog-layout > .catalog-cta {
    grid-column: 2 !important;
    align-self: start !important;
}
.catalog-cta,
.applications-cta,
.resource-cta,
.article-cta,
.app-detail-cta {
    border-radius: var(--hx-radius) !important;
}
.applications-sidebar {
    margin-bottom: 34px !important;
}
.applications-sidebar a {
    border-radius: 999px !important;
}
.application-solution {
    border: 1px solid transparent !important;
    border-bottom: 1px solid #e4ebf3 !important;
    border-radius: var(--hx-radius) !important;
    padding: 24px !important;
}
.application-solution:hover {
    background: #f3f7fb !important;
}
.application-media,
.application-media img {
    border-radius: var(--hx-radius) !important;
}
.application-media img,
.app-detail-main img.article-img,
.app-detail-main > img,
.article-main img.article-img,
.news-featured-card img,
.news-card img {
    object-fit: cover !important;
    object-position: center !important;
}
.app-detail-main > img,
.article-main img.article-img {
    border-radius: var(--hx-radius) !important;
    border: 1px solid var(--hx-soft-border) !important;
}
.app-detail-layout,
.article-layout {
    align-items: start !important;
}
.article-toc {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px 14px !important;
    padding: 18px 20px !important;
    margin: 24px 0 30px !important;
    border: 1px solid var(--hx-soft-border) !important;
    border-radius: var(--hx-radius) !important;
    background: #fff !important;
    box-shadow: 0 8px 22px rgba(21, 38, 61, .045) !important;
}
.article-toc strong {
    grid-column: 1 / -1 !important;
    color: #1d3557 !important;
    font-size: 17px !important;
    line-height: 1.35 !important;
}
.article-toc a {
    color: #405169 !important;
    text-decoration: none !important;
    line-height: 1.55 !important;
    font-weight: 600 !important;
}
.article-toc a:hover {
    color: #c62828 !important;
}
.app-detail-side,
.article-aside {
    border-radius: var(--hx-radius) !important;
    box-shadow: 0 8px 24px rgba(21, 38, 61, .05) !important;
    max-height: calc(100vh - 120px) !important;
    overflow: auto !important;
}
.app-detail-main p a,
.article-links a {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 36px !important;
    padding: 0 14px !important;
    margin: 0 8px 8px 0 !important;
    border-radius: 999px !important;
    background: #edf2f7 !important;
    color: #1d3557 !important;
    text-decoration: none !important;
    font-weight: 700 !important;
}
.app-detail-main p a:hover,
.article-links a:hover {
    background: #1d3557 !important;
    color: #fff !important;
}
.news-featured-card,
.news-side-list a,
.news-card,
.download-card {
    border-radius: var(--hx-radius) !important;
    border: 1px solid var(--hx-soft-border) !important;
    box-shadow: 0 8px 22px rgba(21, 38, 61, .045) !important;
    overflow: hidden !important;
}
.news-featured-card:hover,
.news-side-list a:hover,
.news-card:hover,
.download-card:hover {
    background: #f1f5f9 !important;
    border-color: #cfd9e5 !important;
    box-shadow: 0 10px 24px rgba(21, 38, 61, .07) !important;
}
.news-card {
    display: grid !important;
    grid-template-columns: 170px minmax(0, 1fr) !important;
}
.news-card-media {
    display: block !important;
}
.news-card-media img {
    height: 100% !important;
    min-height: 160px !important;
}
.download-card {
    background: #fff !important;
    padding: 18px 20px !important;
}
.resource-sidebar a {
    border-radius: var(--hx-radius) !important;
    border: 1px solid transparent !important;
}
.resource-sidebar a:hover {
    border-color: #d6e0eb !important;
}
.contact-title-band {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.contact-title-band .page-main-title,
.contact-title-band h1 {
    text-align: center !important;
}
@media (max-width: 1024px) {
    .catalog-layout > .catalog-cta {
        grid-column: auto !important;
    }
    .products-sidebar {
        width: 100% !important;
    }
    .news-card {
        grid-template-columns: 1fr !important;
    }
}

/* ===== HX external image and desktop UI correction pass ===== */
:root {
    --hx-card-radius: 8px;
    --hx-card-border: #dce5ee;
    --hx-card-hover: #eef3f8;
    --hx-ink: #1d3557;
}

.header .nav-item.active .nav-link,
.header.transparent .nav-item.active .nav-link,
.header.scrolled .nav-item.active .nav-link,
.header:not(.transparent) .nav-item.active .nav-link {
    color: #fff !important;
    font-weight: 800 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.header .nav-link::after,
.header .nav-item.active .nav-link::after {
    display: none !important;
}

.about-detail-block h3::before,
.stats-section::before,
.stat-item::before,
.application-index,
.news-kicker,
.hx-section-eyebrow {
    display: none !important;
}

.news-category h2,
.article-body h2,
.app-detail-main h2,
.download-group h2,
.application-copy h2,
.about-detail-block h3 {
    border-left: 0 !important;
    padding-left: 0 !important;
}

.hx-simple-app-grid a,
.hx-simple-selection-grid > div,
.application-solution,
.app-detail-main > img,
.app-detail-side,
.news-featured-card,
.news-side-list a,
.news-card,
.download-card,
.resource-sidebar,
.applications-sidebar,
.products-sidebar,
.catalog-sidebar {
    border-radius: var(--hx-card-radius) !important;
}

.hx-simple-app-grid a,
.hx-simple-selection-grid > div,
.application-solution,
.news-featured-card,
.news-side-list a,
.news-card,
.download-card {
    border-color: var(--hx-card-border) !important;
}

.hx-simple-app-grid a:hover,
.hx-simple-selection-grid > div:hover,
.application-solution:hover,
.news-featured-card:hover,
.news-side-list a:hover,
.news-card:hover,
.download-card:hover {
    background: var(--hx-card-hover) !important;
    border-color: #cbd7e4 !important;
    box-shadow: 0 8px 20px rgba(29, 53, 87, .06) !important;
}

.hx-simple-app-grid a:hover,
.news-featured-card:hover,
.news-side-list a:hover,
.news-card:hover,
.download-card:hover {
    outline: 0 !important;
}

.hx-simple-app-grid img,
.application-media,
.application-media img,
.app-detail-main > img,
.article-main img.article-img,
.news-featured-card img,
.news-card-media,
.news-card-media img {
    border-radius: var(--hx-card-radius) !important;
}

.hx-simple-app-grid img,
.application-media img,
.app-detail-main > img,
.article-main img.article-img,
.news-featured-card img,
.news-card-media img {
    width: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}

.hx-simple-app-grid img {
    height: 190px !important;
}

.application-media img {
    height: 220px !important;
}

.app-detail-main > img,
.article-main img.article-img {
    height: 360px !important;
}

.products-sidebar {
    border: 1px solid var(--hx-card-border) !important;
    padding: 20px !important;
    background: #fff !important;
    box-shadow: 0 8px 22px rgba(29, 53, 87, .05) !important;
}

.series-nav-item a,
.catalog-sidebar a,
.applications-sidebar a,
.resource-sidebar a {
    border-left: 0 !important;
    border-radius: var(--hx-card-radius) !important;
}

.series-nav-item:hover a,
.series-nav-item.active a,
.catalog-sidebar a.active,
.catalog-sidebar a:hover {
    background: #fff6f6 !important;
    border: 1px solid #c62828 !important;
}

.applications-layout,
.app-detail-layout,
.resource-layout,
.article-layout {
    align-items: start !important;
}

.app-detail-side,
.resource-sidebar,
.catalog-sidebar {
    align-self: start !important;
}

.app-detail-side {
    top: 96px !important;
}

.resource-sidebar {
    padding: 14px !important;
    border: 1px solid var(--hx-card-border) !important;
    background: #fff !important;
}

.download-card strong,
.download-card span,
.news-card h3,
.news-card p,
.news-card-meta span {
    color: inherit;
}

.download-card span,
.news-card p {
    color: #5f6f82 !important;
}

.contact-title-band {
    text-align: center !important;
}

.spv-info,
.article-note {
    border-left: 0 !important;
}

.news-tabs a:hover,
.spv-meta-links a:hover,
.spv-btn.light:hover,
.related-card:hover {
    border-color: #cbd7e4 !important;
    color: var(--hx-ink) !important;
    background: var(--hx-card-hover) !important;
}

/* ===== CN desktop structure pass: keep SEO links, reduce visual noise ===== */
.logo-text {
    letter-spacing: 0 !important;
}

.stats-header p,
.cert-container > div > p {
    display: none !important;
}

.stats-header h2,
.about-text h3 {
    color: #1d3557 !important;
}

@media (min-width: 769px) {
    .header,
    .header.transparent,
    .header.scrolled,
    body.home .header.transparent {
        background: #fff !important;
        box-shadow: 0 1px 0 rgba(18, 38, 63, 0.1), 0 8px 24px rgba(18, 38, 63, 0.06) !important;
    }

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

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

    .header .logo {
        gap: 12px !important;
        min-width: 172px;
        text-decoration: none;
    }

    .header .logo img {
        width: 52px !important;
        height: 52px !important;
        object-fit: contain;
    }

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

    .header .logo-text {
        display: inline-flex !important;
        align-items: baseline;
        gap: 4px;
        font-size: 28px !important;
        line-height: 1 !important;
        letter-spacing: 0 !important;
        color: transparent !important;
        white-space: nowrap;
    }

    .header.scrolled .logo-text {
        font-size: 26px !important;
    }

    .header .brand-word-kylan {
        color: #0b376d !important;
        font-weight: 900;
    }

    .header .brand-word-va {
        color: #e21f2f !important;
        font-weight: 900;
    }

    .header .nav-link,
    .header.transparent .nav-link,
    .header.scrolled .nav-link,
    .header:not(.transparent) .nav-link {
        color: #1d3557 !important;
        opacity: 1 !important;
    }

    .header .nav-link:hover,
    .header .nav-item.active .nav-link {
        color: #c62828 !important;
        background: transparent !important;
    }

    .header .lang-btn,
    .header.transparent .lang-btn,
    .header.scrolled .lang-btn {
        border-color: rgba(29, 53, 87, 0.28) !important;
        background: #fff !important;
        color: #1d3557 !important;
    }

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

.home-applications-section.hx-simple-applications {
    padding: 68px 0 !important;
    background: #f4f7fa !important;
}

.hx-simple-app-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

.hx-simple-app-grid a {
    min-height: 350px !important;
    display: flex !important;
    flex-direction: column !important;
    background: #fff !important;
    padding: 0 0 22px !important;
    overflow: hidden !important;
}

.hx-simple-app-grid img {
    height: 235px !important;
    border-radius: 0 !important;
    border-top-left-radius: var(--hx-card-radius) !important;
    border-top-right-radius: var(--hx-card-radius) !important;
}

.hx-simple-app-grid strong {
    padding: 20px 20px 6px !important;
    font-size: 19px !important;
    color: #1d3557 !important;
}

.hx-simple-app-grid span {
    padding: 0 20px !important;
    color: #64748b !important;
    line-height: 1.65 !important;
}

.hx-simple-more {
    margin: -12px 0 26px !important;
}

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

.home-applications-section .hx-simple-more a {
    display: inline !important;
    min-height: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #1d3557 !important;
    border: 0 !important;
    box-shadow: none !important;
    text-decoration: none !important;
    font-weight: 700 !important;
}

.home-applications-section .hx-simple-more a:hover {
    color: #c62828 !important;
    text-decoration: underline !important;
    text-underline-offset: 4px !important;
}

.home-seo-entry.hx-simple-selection {
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%) !important;
    padding: 68px 0 !important;
}

.hx-simple-selection-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
    border: 1px solid #dce5ee !important;
    border-radius: var(--hx-card-radius) !important;
    background: #fff !important;
    overflow: hidden !important;
    box-shadow: 0 10px 26px rgba(29, 53, 87, .06) !important;
}

.hx-simple-selection-grid > div {
    border: 0 !important;
    border-right: 1px solid #e3eaf2 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #fff !important;
    padding: 28px 30px !important;
}

.hx-simple-selection-grid > div:last-child {
    border-right: 0 !important;
}

.hx-simple-selection-grid h3 {
    font-size: 18px !important;
    color: #1d3557 !important;
    margin-bottom: 16px !important;
}

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

.hx-simple-selection-grid a {
    border-radius: 6px !important;
    background: #f2f5f8 !important;
    color: #26384d !important;
    border: 1px solid transparent !important;
}

.hx-simple-selection-grid a:hover {
    background: #e8eef5 !important;
    border-color: #cfd9e5 !important;
    color: #1d3557 !important;
}

.catalog-layout {
    grid-template-columns: 250px minmax(0, 1fr) !important;
}

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

.catalog-seo {
    display: block !important;
    border: 1px solid #dce5ee !important;
    border-radius: var(--hx-card-radius) !important;
    background: #fff !important;
    padding: 28px !important;
    margin: 0 0 28px !important;
    box-shadow: 0 8px 22px rgba(29, 53, 87, .045) !important;
}

.catalog-seo-main h2 {
    margin-top: 0 !important;
}

.catalog-seo-main p,
.catalog-seo-main li {
    color: #53657a !important;
    line-height: 1.78 !important;
}

.catalog-seo-side {
    margin-top: 22px !important;
    padding-top: 20px !important;
    border-top: 1px solid #e4ebf3 !important;
    display: grid !important;
    grid-template-columns: auto 1fr !important;
    gap: 12px 16px !important;
    align-items: start !important;
}

.catalog-seo-side h3 {
    grid-column: 1 !important;
    min-width: 96px !important;
    font-size: 15px !important;
    margin: 8px 0 0 !important;
    color: #1d3557 !important;
}

.catalog-seo-side a {
    display: inline-flex !important;
    margin: 0 8px 8px 0 !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    background: #f2f5f8 !important;
    color: #26384d !important;
    text-decoration: none !important;
}

.catalog-seo + .bf-grid,
.catalog-seo ~ .bf-grid {
    margin-top: 8px !important;
}

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

.applications-hero-panel {
    margin-top: 18px !important;
    background: rgba(255, 255, 255, .08) !important;
    border: 1px solid rgba(255, 255, 255, .22) !important;
    box-shadow: none !important;
}

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

.applications-directory {
    position: static !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px !important;
    max-width: 1060px !important;
    margin: 0 auto 34px !important;
    padding: 14px !important;
    border: 1px solid #dce5ee !important;
    border-radius: var(--hx-card-radius) !important;
    background: #fff !important;
    box-shadow: none !important;
}

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

.applications-directory a {
    margin: 0 !important;
    border-radius: 6px !important;
    background: #f2f5f8 !important;
    color: #26384d !important;
}

.application-solution {
    grid-template-columns: 360px minmax(0, 1fr) !important;
    gap: 30px !important;
    padding: 24px !important;
    margin-bottom: 20px !important;
    background: #fff !important;
    cursor: pointer !important;
}

.application-solution:hover {
    transform: none !important;
}

.application-condition {
    display: block !important;
    margin: 16px 0 !important;
    padding: 16px 18px !important;
    background: #f7f9fc !important;
    border: 1px solid #e4ebf3 !important;
    border-radius: var(--hx-card-radius) !important;
}

.application-condition strong,
.application-products strong {
    color: #1d3557 !important;
}

.application-products {
    margin-top: 16px !important;
}

.app-detail-layout {
    grid-template-columns: minmax(0, 1fr) 280px !important;
    gap: 30px !important;
}

.app-detail-main {
    display: grid !important;
    grid-template-columns: 360px minmax(0, 1fr) !important;
    gap: 22px 30px !important;
    align-items: start !important;
}

.app-detail-main > img {
    grid-row: span 4 !important;
    height: 280px !important;
}

.app-detail-main h2,
.app-detail-main p,
.app-detail-main ul,
.app-detail-cta {
    grid-column: 2 !important;
}

.app-detail-cta {
    margin-top: 6px !important;
    box-shadow: none !important;
}

.app-detail-side {
    box-shadow: none !important;
    border: 1px solid #dce5ee !important;
}

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

.news-directory-wrap {
    margin: 0 0 28px !important;
    padding: 14px !important;
    border: 1px solid #dce5ee !important;
    border-radius: var(--hx-card-radius) !important;
    background: #fff !important;
}

.news-directory-title {
    color: #1d3557 !important;
    font-weight: 800 !important;
    margin: 0 0 12px !important;
}

.news-directory-wrap .news-tabs {
    display: flex !important;
    margin: 0 !important;
}

.news-directory-wrap .news-tabs a {
    border-radius: 6px !important;
    background: #f2f5f8 !important;
    color: #26384d !important;
    border-color: transparent !important;
}

.news-featured-card,
.news-card {
    box-shadow: none !important;
}

.news-featured-card {
    border-radius: var(--hx-card-radius) !important;
}

.news-category {
    padding-top: 26px !important;
    border-top: 1px solid #e4ebf3 !important;
}

.article-body h2 {
    margin-top: 32px !important;
}

.article-faq,
.article-note,
.article-cta {
    border-radius: var(--hx-card-radius) !important;
}

.resource-layout {
    grid-template-columns: 230px minmax(0, 1fr) !important;
}

.resource-sidebar {
    box-shadow: none !important;
}

.resource-sidebar a {
    background: #f2f5f8 !important;
    margin-bottom: 10px !important;
}

.download-card {
    box-shadow: none !important;
    border-color: #dce5ee !important;
}

.download-card:hover {
    box-shadow: 0 8px 18px rgba(29, 53, 87, .055) !important;
}

.download-badge {
    border-radius: 6px !important;
    background: #e8eef5 !important;
    color: #1d3557 !important;
}

.contact-page .contact-title-band {
    max-width: 860px !important;
    margin: 0 auto 36px !important;
    padding: 0 20px !important;
    text-align: center !important;
}

.contact-page .contact-title-band h1,
.contact-page .contact-title-band p {
    text-align: center !important;
}

@media (max-width: 1100px) {
    .hx-simple-app-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    .app-detail-main,
    .application-solution {
        grid-template-columns: 1fr !important;
    }
    .app-detail-main h2,
    .app-detail-main p,
    .app-detail-main ul,
    .app-detail-cta {
        grid-column: auto !important;
    }
}

/* Home application cards: match the softer contact-card feel. */
.home-applications-section.hx-simple-applications .hx-simple-app-grid {
    gap: 24px !important;
}

.home-applications-section.hx-simple-applications .hx-simple-app-grid a {
    min-height: 0 !important;
    background: #fff !important;
    border: 1px solid #e7edf4 !important;
    border-radius: 16px !important;
    padding: 0 0 26px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06) !important;
    transform: translateY(0) !important;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease !important;
}

.home-applications-section.hx-simple-applications .hx-simple-app-grid a:hover {
    background: #fff !important;
    border-color: #d8e2ec !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .15) !important;
    transform: translateY(-6px) !important;
}

.home-applications-section.hx-simple-applications .hx-simple-app-grid img {
    width: 100% !important;
    height: 235px !important;
    object-fit: cover !important;
    border-radius: 16px 16px 0 0 !important;
    transform: none !important;
    transition: transform .35s ease !important;
}

.home-applications-section.hx-simple-applications .hx-simple-app-grid a:hover img {
    transform: scale(1.03) !important;
}

.home-applications-section.hx-simple-applications .hx-simple-app-grid strong {
    padding: 22px 22px 7px !important;
    font-size: 19px !important;
    line-height: 1.35 !important;
}

.home-applications-section.hx-simple-applications .hx-simple-app-grid span {
    padding: 0 22px !important;
    color: #667085 !important;
}

/* Home quick selection: independent cards with restrained industrial accents. */
.home-seo-entry.hx-simple-selection .hx-simple-selection-grid {
    gap: 24px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    overflow: visible !important;
    box-shadow: none !important;
}

.home-seo-entry.hx-simple-selection .hx-simple-selection-grid > div {
    position: relative !important;
    min-height: 150px !important;
    padding: 30px 30px 28px !important;
    border: 1px solid #e3eaf2 !important;
    border-radius: 16px !important;
    background: #fff !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .055) !important;
    overflow: hidden !important;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease !important;
}

.home-seo-entry.hx-simple-selection .hx-simple-selection-grid > div::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 5px !important;
    background: #c62828 !important;
}

.home-seo-entry.hx-simple-selection .hx-simple-selection-grid > div:nth-child(1) {
    background: linear-gradient(180deg, #fff7f7 0%, #ffffff 48%) !important;
}

.home-seo-entry.hx-simple-selection .hx-simple-selection-grid > div:nth-child(2) {
    background: linear-gradient(180deg, #f3f8fc 0%, #ffffff 48%) !important;
}

.home-seo-entry.hx-simple-selection .hx-simple-selection-grid > div:nth-child(3) {
    background: linear-gradient(180deg, #f7faf6 0%, #ffffff 48%) !important;
}

.home-seo-entry.hx-simple-selection .hx-simple-selection-grid > div:nth-child(2)::before {
    background: #1d6f9f !important;
}

.home-seo-entry.hx-simple-selection .hx-simple-selection-grid > div:nth-child(3)::before {
    background: #4f7d45 !important;
}

.home-seo-entry.hx-simple-selection .hx-simple-selection-grid > div:hover {
    transform: translateY(-6px) !important;
    border-color: #d5e0eb !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .14) !important;
}

.home-seo-entry.hx-simple-selection .hx-simple-selection-grid h3 {
    margin: 0 0 18px !important;
    color: #1d3557 !important;
    font-size: 19px !important;
    line-height: 1.35 !important;
}

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

.home-seo-entry.hx-simple-selection .hx-simple-selection-grid a {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 34px !important;
    padding: 7px 13px !important;
    border-radius: 8px !important;
    background: rgba(198, 40, 40, .08) !important;
    border: 1px solid rgba(198, 40, 40, .08) !important;
    color: #8f1f25 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

.home-seo-entry.hx-simple-selection .hx-simple-selection-grid > div:nth-child(2) a {
    background: rgba(29, 111, 159, .09) !important;
    border-color: rgba(29, 111, 159, .09) !important;
    color: #1d5d82 !important;
}

.home-seo-entry.hx-simple-selection .hx-simple-selection-grid > div:nth-child(3) a {
    background: rgba(79, 125, 69, .10) !important;
    border-color: rgba(79, 125, 69, .10) !important;
    color: #3f6838 !important;
}

.home-seo-entry.hx-simple-selection .hx-simple-selection-grid a:hover {
    background: #c62828 !important;
    border-color: #c62828 !important;
    color: #fff !important;
}

.home-seo-entry.hx-simple-selection .hx-simple-selection-grid > div:nth-child(2) a:hover {
    background: #1d6f9f !important;
    border-color: #1d6f9f !important;
}

.home-seo-entry.hx-simple-selection .hx-simple-selection-grid > div:nth-child(3) a:hover {
    background: #4f7d45 !important;
    border-color: #4f7d45 !important;
}

/* Home quick selection: visually merge with application cards, red-only actions. */
.home-seo-entry.hx-simple-selection {
    padding: 22px 0 68px !important;
    background: #f5f7fa !important;
    border: 0 !important;
}

.home-seo-entry.hx-simple-selection .hx-simple-head {
    margin-bottom: 26px !important;
}

.home-seo-entry.hx-simple-selection .hx-simple-selection-grid {
    gap: 24px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.home-seo-entry.hx-simple-selection .hx-simple-selection-grid > div {
    min-height: 142px !important;
    padding: 28px 28px 26px !important;
    border: 1px solid #e7edf4 !important;
    border-radius: 16px !important;
    background: #fff !important;
    box-shadow: 0 2px 16px rgba(15, 35, 55, .055) !important;
}

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

.home-seo-entry.hx-simple-selection .hx-simple-selection-grid > div:nth-child(1),
.home-seo-entry.hx-simple-selection .hx-simple-selection-grid > div:nth-child(2),
.home-seo-entry.hx-simple-selection .hx-simple-selection-grid > div:nth-child(3) {
    background: #fff !important;
}

.home-seo-entry.hx-simple-selection .hx-simple-selection-grid > div:hover {
    transform: translateY(-4px) !important;
    border-color: #dde5ee !important;
    box-shadow: 0 12px 30px rgba(15, 35, 55, .12) !important;
}

.home-seo-entry.hx-simple-selection .hx-simple-selection-grid > div:nth-child(1) a,
.home-seo-entry.hx-simple-selection .hx-simple-selection-grid > div:nth-child(2) a,
.home-seo-entry.hx-simple-selection .hx-simple-selection-grid > div:nth-child(3) a,
.home-seo-entry.hx-simple-selection .hx-simple-selection-grid a {
    background: rgba(198, 40, 40, .08) !important;
    border-color: rgba(198, 40, 40, .10) !important;
    color: #8f1f25 !important;
}

.home-seo-entry.hx-simple-selection .hx-simple-selection-grid > div:nth-child(1) a:hover,
.home-seo-entry.hx-simple-selection .hx-simple-selection-grid > div:nth-child(2) a:hover,
.home-seo-entry.hx-simple-selection .hx-simple-selection-grid > div:nth-child(3) a:hover,
.home-seo-entry.hx-simple-selection .hx-simple-selection-grid a:hover {
    background: #c62828 !important;
    border-color: #c62828 !important;
    color: #fff !important;
}

/* Applications list cards: softer card treatment and red-only product links. */
body.hx-industry-refine .application-solution,
body .application-solution {
    grid-template-columns: 320px minmax(0, 1fr) !important;
    gap: 28px !important;
    padding: 28px !important;
    margin-bottom: 24px !important;
    border: 1px solid #e7edf4 !important;
    border-radius: 16px !important;
    background: #fff !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .055) !important;
    overflow: hidden !important;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease !important;
}

body.hx-industry-refine .application-solution:hover,
body .application-solution:hover {
    background: #fff !important;
    border-color: #d8e2ec !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .14) !important;
    transform: translateY(-6px) !important;
}

body .application-media {
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #f2f5f8 !important;
}

body .application-media img {
    border-radius: 12px !important;
}

body .application-copy h2 {
    color: #1d3557 !important;
}

body .application-products strong {
    color: #1d3557 !important;
    margin-bottom: 12px !important;
}

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

body .application-products a {
    min-height: 36px !important;
    padding: 8px 14px !important;
    border-radius: 8px !important;
    background: rgba(198, 40, 40, .08) !important;
    border: 1px solid rgba(198, 40, 40, .10) !important;
    color: #8f1f25 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

body .application-products a:hover {
    background: #c62828 !important;
    border-color: #c62828 !important;
    color: #fff !important;
}

@media (max-width: 900px) {
    body.hx-industry-refine .application-solution,
    body .application-solution {
        grid-template-columns: 1fr !important;
        padding: 20px !important;
    }
}

/* Product center desktop spacing: keep sidebar and product cards separated. */
body:has(.products-layout) .products-layout {
    gap: 34px !important;
    align-items: flex-start !important;
}

body:has(.products-layout) .products-sidebar {
    flex: 0 0 280px !important;
    width: 280px !important;
    margin-right: 0 !important;
    padding-right: 20px !important;
}

body:has(.products-layout) .products-main {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    padding-left: 0 !important;
}

@media (max-width: 1024px) {
    body:has(.products-layout) .products-layout {
        gap: 18px !important;
    }
    body:has(.products-layout) .products-sidebar {
        flex-basis: auto !important;
        width: 100% !important;
    }
}

/* Product detail polish: unify legacy and SPV detail cards with contact-card treatment. */
.product-detail-page,
.spv-detail-wrap {
    background: #fff !important;
}

.legacy-detail-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    margin-top: 18px !important;
}

.legacy-detail-actions .inquire-btn,
.legacy-detail-actions .whatsapp-btn,
.spv-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    line-height: 1.2 !important;
    min-height: 46px !important;
    padding: 12px 18px !important;
    border-radius: 999px !important;
    border: 0 !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease !important;
}

.legacy-detail-actions .inquire-btn,
.spv-btn.primary {
    background: #c62828 !important;
    box-shadow: 0 8px 18px rgba(198, 40, 40, .22) !important;
}

.legacy-detail-actions .whatsapp-btn,
.spv-btn.secondary {
    background: #1d3557 !important;
    box-shadow: 0 8px 18px rgba(29, 53, 87, .18) !important;
}

.legacy-detail-actions .inquire-btn:hover,
.legacy-detail-actions .whatsapp-btn:hover,
.spv-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 26px rgba(15, 35, 55, .16) !important;
}

.spv-detail-hero {
    background: #fff !important;
    border-bottom: 0 !important;
    padding: 30px 0 10px !important;
}

.spv-panel {
    padding-top: 26px !important;
}

.spv-info {
    border-left: 0 !important;
    padding: 28px !important;
    border: 1px solid #e7edf4 !important;
    border-radius: 16px !important;
    box-shadow: 0 2px 16px rgba(15, 35, 55, .055) !important;
}

.spv-main-img,
.gallery-main-image,
.info-card,
.legacy-detail-seo-box,
.legacy-detail-links,
.spv-seo-box,
.spv-seo-links,
.legacy-related-grid a,
.related-card {
    border: 1px solid #e7edf4 !important;
    border-radius: 16px !important;
    background: #fff !important;
    box-shadow: 0 2px 16px rgba(15, 35, 55, .055) !important;
}

.legacy-detail-seo-box,
.spv-seo-box {
    background: #fff !important;
    padding: 28px !important;
}

.legacy-detail-links a,
.spv-seo-links a {
    color: #1d3557 !important;
}

.legacy-detail-links a:hover,
.spv-seo-links a:hover {
    color: #c62828 !important;
}

.legacy-related-grid a,
.related-card {
    min-height: 170px !important;
    padding: 18px !important;
    color: #1d3557 !important;
    text-decoration: none !important;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease !important;
}

.legacy-related-grid a {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
}

.related-card:hover,
.legacy-related-grid a:hover {
    transform: translateY(-4px) !important;
    border-color: #d8e2ec !important;
    box-shadow: 0 12px 32px rgba(15, 35, 55, .12) !important;
    color: #c62828 !important;
}

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

.legacy-related-grid a img {
    width: 100% !important;
    height: 118px !important;
    object-fit: contain !important;
    display: block !important;
}

.legacy-related-grid a span {
    color: #1d3557 !important;
    font-weight: 700 !important;
    line-height: 1.45 !important;
    text-align: center !important;
}

.related-card span {
    color: #1d3557 !important;
    font-weight: 700 !important;
}

.spv-btn.light {
    grid-column: 1 / -1 !important;
    background: rgba(198, 40, 40, .08) !important;
    border: 1px solid rgba(198, 40, 40, .12) !important;
    color: #8f1f25 !important;
    box-shadow: none !important;
}

.spv-btn.light:hover {
    background: #c62828 !important;
    border-color: #c62828 !important;
    color: #fff !important;
}

.legacy-detail-seo-box,
.spv-seo-box {
    background: #fff !important;
    border: 1px solid #e4ebf3 !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 28px rgba(15, 35, 55, .07) !important;
    padding: 34px 36px !important;
    gap: 42px !important;
    align-items: start !important;
}

.legacy-detail-seo h2,
.legacy-detail-seo h3,
.spv-seo-box h2,
.spv-seo-box h3 {
    font-size: 18px !important;
    line-height: 1.35 !important;
    color: #1d3557 !important;
    font-weight: 700 !important;
    margin: 0 0 12px !important;
}

.legacy-detail-seo p,
.legacy-detail-seo li,
.spv-seo-box p,
.spv-seo-box li {
    font-size: 15px !important;
    line-height: 1.9 !important;
    color: #536477 !important;
}

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

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

.legacy-detail-links h3,
.spv-seo-links h3 {
    color: #7a8796 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
}

.legacy-detail-links a,
.spv-seo-links a {
    display: block !important;
    color: #536477 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    padding: 10px 0 !important;
    border-top: 1px solid #eef2f6 !important;
}

.legacy-detail-links a:first-of-type,
.spv-seo-links a:first-of-type {
    border-top: 0 !important;
}

@media (max-width: 768px) {
    .legacy-detail-actions {
        grid-template-columns: 1fr !important;
    }
}

.legacy-detail-actions > a.inquire-btn,
.legacy-detail-actions > a.whatsapp-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 48px !important;
    min-height: 48px !important;
    max-height: 48px !important;
    padding: 0 18px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    line-height: 48px !important;
    border-radius: 999px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-align: center !important;
    white-space: nowrap !important;
}

/* Applications page final flattening: no hero card tint, directory as plain text links. */
body.hx-industry-refine .applications-hero,
body.hx-ui-polish.hx-industry-refine .applications-hero,
body.hx-industry-refine main .applications-hero {
    background: #f5f7fa !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 118px 0 18px !important;
}

body.hx-industry-refine .applications-wrap,
body.hx-ui-polish.hx-industry-refine .applications-wrap {
    background: #f5f7fa !important;
    padding-top: 0 !important;
}

body.hx-industry-refine .applications-directory,
body.hx-industry-refine .applications-sidebar.applications-directory {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 18px !important;
    max-width: 980px !important;
    margin: 0 auto 28px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.hx-industry-refine .applications-directory a,
body.hx-industry-refine .applications-sidebar.applications-directory a {
    display: inline-flex !important;
    align-items: center !important;
    min-height: auto !important;
    margin: 0 !important;
    padding: 0 2px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #405169 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

body.hx-industry-refine .applications-directory a:hover,
body.hx-industry-refine .applications-sidebar.applications-directory a:hover {
    color: #c62828 !important;
    background: transparent !important;
}

/* News page final flattening: match About page background and contact-card treatment. */
body.hx-industry-refine .news-hero,
body.hx-ui-polish.hx-industry-refine .news-hero,
body.hx-industry-refine main .news-hero {
    background: #f5f7fa !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 118px 0 18px !important;
}

body.hx-industry-refine .news-section,
body.hx-ui-polish.hx-industry-refine .news-section,
body.hx-industry-refine .news-category {
    background: #f5f7fa !important;
}

body.hx-industry-refine .news-directory-wrap {
    margin: 18px 0 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.hx-industry-refine .news-directory-title {
    margin-bottom: 10px !important;
    color: #1d3557 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-align: center !important;
}

body.hx-industry-refine .news-tabs,
body.hx-industry-refine .news-hero .news-tabs,
body.hx-industry-refine .news-directory-wrap .news-tabs {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.hx-industry-refine .news-tabs a,
body.hx-industry-refine .news-directory-wrap .news-tabs a {
    display: inline-flex !important;
    align-items: center !important;
    min-height: auto !important;
    padding: 0 2px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #405169 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

body.hx-industry-refine .news-tabs a:hover,
body.hx-industry-refine .news-directory-wrap .news-tabs a:hover {
    color: #c62828 !important;
    background: transparent !important;
}

body.hx-industry-refine .news-featured-card,
body.hx-industry-refine .news-side-list a,
body.hx-industry-refine .news-card,
body.hx-ui-polish.hx-industry-refine .news-featured-card,
body.hx-ui-polish.hx-industry-refine .news-side-list a,
body.hx-ui-polish.hx-industry-refine .news-card {
    background: #fff !important;
    border: 1px solid #e7edf4 !important;
    border-radius: 16px !important;
    box-shadow: 0 2px 16px rgba(15, 35, 55, .055) !important;
    overflow: hidden !important;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease !important;
}

body.hx-industry-refine .news-featured-card:hover,
body.hx-industry-refine .news-side-list a:hover,
body.hx-industry-refine .news-card:hover,
body.hx-ui-polish.hx-industry-refine .news-featured-card:hover,
body.hx-ui-polish.hx-industry-refine .news-side-list a:hover,
body.hx-ui-polish.hx-industry-refine .news-card:hover {
    background: #fff !important;
    border-color: #d8e2ec !important;
    box-shadow: 0 12px 32px rgba(15, 35, 55, .12) !important;
    transform: translateY(-4px) !important;
}

body.hx-industry-refine .news-card-meta span,
body.hx-ui-polish.hx-industry-refine .news-card-meta span {
    color: #8f1f25 !important;
}

/* Downloads page final flattening: same page rhythm as About/News/Applications. */
body.hx-industry-refine .page-hero,
body.hx-ui-polish.hx-industry-refine .page-hero,
body.hx-industry-refine main .page-hero {
    background: #f5f7fa !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 118px 0 18px !important;
}

body.hx-industry-refine .resource-wrap,
body.hx-ui-polish.hx-industry-refine .resource-wrap {
    background: #f5f7fa !important;
    padding-top: 24px !important;
}

body.hx-industry-refine .resource-sidebar {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.hx-industry-refine .resource-sidebar a {
    display: flex !important;
    align-items: center !important;
    min-height: auto !important;
    margin: 0 0 14px !important;
    padding: 0 2px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #405169 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

body.hx-industry-refine .resource-sidebar a:hover {
    background: transparent !important;
    color: #c62828 !important;
}

body.hx-industry-refine .download-group,
body.hx-ui-polish.hx-industry-refine .download-group {
    margin-bottom: 24px !important;
    padding: 28px !important;
    border: 1px solid #e7edf4 !important;
    border-radius: 16px !important;
    background: #fff !important;
    box-shadow: 0 2px 16px rgba(15, 35, 55, .055) !important;
}

body.hx-industry-refine .download-card,
body.hx-ui-polish.hx-industry-refine .download-card {
    background: #fff !important;
    border: 1px solid #e7edf4 !important;
    border-radius: 16px !important;
    box-shadow: 0 2px 16px rgba(15, 35, 55, .055) !important;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease !important;
}

body.hx-industry-refine .download-card:hover,
body.hx-ui-polish.hx-industry-refine .download-card:hover {
    background: #fff !important;
    border-color: #d8e2ec !important;
    box-shadow: 0 12px 32px rgba(15, 35, 55, .12) !important;
    transform: translateY(-4px) !important;
}

body.hx-industry-refine .download-badge,
body.hx-ui-polish.hx-industry-refine .download-badge {
    background: rgba(198, 40, 40, .08) !important;
    color: #8f1f25 !important;
}

body.hx-industry-refine .download-card:hover .download-badge,
body.hx-ui-polish.hx-industry-refine .download-card:hover .download-badge {
    background: #c62828 !important;
    color: #fff !important;
}

/* Align About and Contact page title bands with Applications/News/Downloads. */
body:has(.about-full) .about-full {
    padding: 118px 0 0 !important;
    background: #f5f7fa !important;
}

body:has(.about-full) .about-full > .container {
    max-width: none !important;
    padding: 0 !important;
}

body:has(.about-full) .about-intro {
    max-width: 980px !important;
    margin: 0 auto 34px !important;
    padding: 0 20px !important;
    text-align: center !important;
}

body:has(.about-full) .about-intro h1 {
    color: #1d3557 !important;
    font-size: 38px !important;
    line-height: 1.22 !important;
    margin: 0 0 12px !important;
    font-weight: 800 !important;
}

body:has(.about-full) .about-intro p {
    max-width: 820px !important;
    margin: 0 auto !important;
    color: #59687a !important;
    font-size: 16px !important;
    line-height: 1.85 !important;
    text-align: center !important;
}

body:has(.about-full) .about-intro p + p {
    margin-top: 10px !important;
}

body:has(.about-full) .about-divider {
    display: none !important;
}

body:has(.about-full) .about-detail-section {
    background: #fff !important;
    padding: 58px 0 80px !important;
}

body:has(.contact-page) .contact-page {
    padding: 0 0 80px !important;
    background: #f5f7fa !important;
}

body:has(.contact-page) .contact-title-band {
    max-width: 980px !important;
    margin: 0 auto 34px !important;
    padding: 118px 20px 0 !important;
    text-align: center !important;
}

body:has(.contact-page) .contact-title-band .page-main-title,
body:has(.contact-page) .contact-title-band h1 {
    color: #1d3557 !important;
    font-size: 38px !important;
    line-height: 1.22 !important;
    margin: 0 0 12px !important;
    padding: 0 !important;
    font-weight: 800 !important;
}

body:has(.contact-page) .contact-title-band p {
    max-width: 820px !important;
    margin: 0 auto !important;
    color: #59687a !important;
    font-size: 16px !important;
    line-height: 1.85 !important;
}

body:has(.contact-page) .contact-page > .container {
    background: transparent !important;
}

@media (max-width: 900px) {
    body:has(.about-full) .about-full,
    body:has(.contact-page) .contact-title-band {
        padding-top: 96px !important;
    }

    body:has(.about-full) .about-intro h1,
    body:has(.contact-page) .contact-title-band h1 {
        font-size: 30px !important;
    }
}

/* Desktop header: separated white navigation, Neway-style clarity. */
@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 {
        background: #fff !important;
        border-color: #d5dde8 !important;
        color: #0b4a8f !important;
    }

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

    .header .lang-btn svg,
    .header .lang-btn svg * {
        stroke: #0b4a8f !important;
    }
}
