/*
Theme Name: Hebang Chemical
Theme URI: https://www.hebangchemical.com/
Author: frank-zhang
Description: Custom WordPress theme for Dongying Hebang Chemical official website MVP.
Version: 0.6.45
Text Domain: hebang-chemical
*/

:root {
    --hb-sky: #72c6ef;
    --hb-blue: #26a9e0;
    --hb-deep: #234d93;
    --hb-navy: #241f55;
    --hb-text: #25304b;
    --hb-muted: #697287;
    --hb-line: #d7dde8;
    --hb-soft: #f5f9fd;
    --hb-ice: #eef6fb;
    --hb-white: #ffffff;
    --hb-radius: 8px;
    --hb-shadow: 0 20px 50px rgba(35, 77, 147, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: clip;
}

body {
    margin: 0;
    overflow-x: clip;
    color: var(--hb-text);
    background: var(--hb-white);
    font-family: "Source Han Sans SC", "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(215, 221, 232, 0.86);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 12px;
    min-width: 238px;
    color: var(--hb-deep);
    font-size: 26px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: 0;
}

.brand > span {
    white-space: nowrap;
}

.brand-logo {
    width: 112px;
    max-height: 42px;
    object-fit: contain;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(145deg, var(--hb-blue), var(--hb-deep));
    font-family: Arial, sans-serif;
    font-size: 18px;
}

.brand small {
    display: block;
    color: var(--hb-muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 15px;
    font-weight: 700;
    color: var(--hb-deep);
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-nav li {
    position: relative;
    margin: 0;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 124px;
    padding: 28px 0;
    text-align: center;
}

html[lang^="en"] .site-nav {
    gap: 18px;
}

html[lang^="en"] .site-nav a {
    min-width: 0;
    padding: 28px 10px;
    font-size: 14px;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: 18px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--hb-blue);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.18s ease;
}

.site-nav a:hover::after,
.site-nav .current-menu-item > a::after {
    transform: scaleX(1);
}

.site-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    display: grid;
    width: 118px;
    min-width: 118px;
    max-width: 118px;
    gap: 0;
    padding: 12px 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 36px rgba(35, 77, 147, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.site-nav li:hover > .sub-menu,
.site-nav li:focus-within > .sub-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.site-nav .sub-menu a {
    display: block;
    min-width: 0;
    padding: 13px 10px;
    color: #444b5c;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

.site-nav .sub-menu a::after {
    display: none;
}

.site-nav .sub-menu a:hover {
    background: var(--hb-soft);
    color: var(--hb-deep);
}

html[lang^="en"] .site-nav .sub-menu {
    width: max-content;
    min-width: 210px;
    max-width: none;
}

html[lang^="en"] .site-nav .sub-menu a {
    display: flex;
    justify-content: flex-start;
    padding: 13px 18px;
    text-align: left;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-link,
.button,
.wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 6px;
    font-weight: 800;
}

.lang-link {
    border: 1px solid var(--hb-line);
    padding: 0 12px;
    color: var(--hb-deep);
}

.button,
.wp-block-button__link {
    border: 0;
    padding: 0 18px;
    background: var(--hb-deep);
    color: #fff;
}

.button.secondary {
    border: 1px solid var(--hb-deep);
    background: transparent;
    color: var(--hb-deep);
}

.hero .button.secondary,
.product-detail-hero .button.secondary {
    border-color: rgba(255, 255, 255, 0.72);
    color: #fff;
}

.hero .button.secondary:hover,
.product-detail-hero .button.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}

.hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(100deg, rgba(20, 32, 72, 0.96), rgba(34, 76, 145, 0.88) 54%, rgba(32, 145, 197, 0.5)),
        linear-gradient(135deg, #10264f, #1b6e9d);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.hero::after {
    position: absolute;
    right: -160px;
    bottom: -220px;
    width: 620px;
    height: 620px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.16);
    transform: rotate(18deg);
}

.subhero {
    padding: 92px 0 78px;
    background:
        linear-gradient(100deg, rgba(36, 31, 85, 0.94), rgba(35, 77, 147, 0.82)),
        linear-gradient(135deg, #182b62, #1d6da7);
    color: #fff;
}

.subhero h1 {
    max-width: 820px;
    margin: 0 0 16px;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.12;
}

.subhero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
    gap: 58px;
    align-items: center;
    padding: 72px 0;
    position: relative;
    z-index: 1;
}

.hero h1 {
    max-width: 780px;
    margin: 0 0 22px;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.08;
    letter-spacing: 0;
}

.hero p {
    max-width: 680px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-panel {
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--hb-radius);
    padding: 26px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.16);
}

.industrial-panel {
    overflow: hidden;
    padding: 0;
    background: rgba(255, 255, 255, 0.94);
    color: var(--hb-text);
}

.industrial-panel img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--hb-ice);
}

.hero-panel-body {
    padding: 24px;
}

.hero-panel-body p {
    margin: 8px 0 18px;
    color: var(--hb-muted);
    font-size: 15px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags span {
    border: 1px solid var(--hb-line);
    border-radius: 4px;
    padding: 5px 9px;
    color: var(--hb-deep);
    font-size: 12px;
    font-weight: 800;
}

.hero-panel strong {
    display: block;
    margin-bottom: 14px;
    font-size: 18px;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.metric {
    border-left: 3px solid var(--hb-sky);
    padding: 6px 0 6px 12px;
}

.metric b {
    display: block;
    color: var(--hb-deep);
    font-family: Arial, sans-serif;
    font-size: 30px;
    line-height: 1;
}

.metric span {
    color: var(--hb-muted);
    font-size: 13px;
}

.application-strip {
    border-bottom: 1px solid var(--hb-line);
    background: #fff;
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.application-grid span {
    display: grid;
    place-items: center;
    min-height: 72px;
    border-left: 1px solid var(--hb-line);
    color: var(--hb-deep);
    font-size: 14px;
    font-weight: 800;
    text-align: center;
}

.application-grid span:last-child {
    border-right: 1px solid var(--hb-line);
}

.section {
    padding: 86px 0;
}

.section.soft {
    background: var(--hb-soft);
}

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

.section-head h2 {
    margin: 0;
    color: var(--hb-navy);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.2;
}

.section-head h1 {
    margin: 0;
    color: var(--hb-navy);
    font-size: clamp(34px, 3.2vw, 46px);
    line-height: 1.16;
}

.section-head p {
    max-width: 580px;
    margin: 8px 0 0;
    color: var(--hb-muted);
}

.product-grid,
.news-grid,
.capability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.product-showcase {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
}

.product-intro {
    border-top: 4px solid var(--hb-blue);
    padding: 26px 24px;
    background: var(--hb-navy);
    color: #fff;
}

.product-intro h3 {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.25;
}

.product-intro p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.78);
}

.product-intro dl {
    display: grid;
    gap: 14px;
    margin: 0;
}

.product-intro div {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 12px;
}

.product-intro dt {
    color: var(--hb-sky);
    font-family: Arial, sans-serif;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.product-intro dd {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
}

.product-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card,
.news-card,
.capability-card {
    border: 1px solid var(--hb-line);
    border-radius: var(--hb-radius);
    background: #fff;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-card:hover,
.news-card:hover,
.capability-card:hover {
    border-color: rgba(38, 169, 224, 0.58);
    box-shadow: var(--hb-shadow);
    transform: translateY(-2px);
}

.product-card {
    padding: 24px;
    min-height: 176px;
}

.product-card h3,
.news-card h3,
.capability-card h3 {
    margin: 0 0 10px;
    color: var(--hb-deep);
    font-size: 21px;
    line-height: 1.35;
}

.product-card p,
.capability-card p,
.news-card p {
    margin: 0;
    color: var(--hb-muted);
}

.product-code {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--hb-blue);
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 900;
}

.capability-band {
    background: var(--hb-navy);
    color: #fff;
}

.capability-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    gap: 46px;
    align-items: start;
    margin-bottom: 42px;
}

.capability-layout h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.2;
}

.capability-layout p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.capability-band .metric {
    border-left-color: var(--hb-sky);
}

.capability-band .metric b,
.capability-band .metric span {
    color: #fff;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.feature-list article {
    border-top: 2px solid var(--hb-sky);
    padding-top: 18px;
}

.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 44px;
    align-items: start;
}

.about-grid h2,
.contact-info h2 {
    margin: 0 0 18px;
    color: var(--hb-navy);
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.22;
}

.fact-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    border: 1px solid var(--hb-line);
    border-radius: var(--hb-radius);
    padding: 20px;
    background: #fff;
    box-shadow: var(--hb-shadow);
}

.fact-panel div {
    border-left: 3px solid var(--hb-blue);
    padding: 8px 0 8px 12px;
}

.fact-panel b {
    display: block;
    color: var(--hb-deep);
    font-family: Arial, sans-serif;
    font-size: 28px;
    line-height: 1.1;
}

.fact-panel span {
    color: var(--hb-muted);
    font-size: 13px;
}

.credential-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.credential-grid article {
    border: 1px solid var(--hb-line);
    border-radius: var(--hb-radius);
    padding: 18px;
    background: #fff;
    color: var(--hb-deep);
    font-weight: 800;
    min-height: 88px;
}

.timeline {
    display: grid;
    gap: 18px;
}

.timeline article {
    display: grid;
    grid-template-columns: 110px minmax(160px, 0.4fr) minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid var(--hb-line);
    padding: 20px 0;
}

.timeline time {
    color: var(--hb-blue);
    font-family: Arial, sans-serif;
    font-size: 28px;
    font-weight: 900;
}

.timeline strong {
    color: var(--hb-deep);
    font-size: 18px;
}

.timeline span {
    color: var(--hb-muted);
}

.instrument-strip {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 12px;
}

.instrument-strip span {
    display: grid;
    place-items: center;
    min-height: 76px;
    border-radius: var(--hb-radius);
    background: #fff;
    color: var(--hb-deep);
    font-family: Arial, sans-serif;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 12px 32px rgba(35, 77, 147, 0.08);
}

.service-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-flow article {
    border-top: 3px solid var(--hb-blue);
    padding: 20px 0 0;
}

.service-flow b {
    color: var(--hb-blue);
    font-family: Arial, sans-serif;
    font-size: 24px;
}

.service-flow h3 {
    margin: 8px 0;
    color: var(--hb-deep);
}

.service-hero {
    padding: 78px 0;
    background:
        linear-gradient(105deg, rgba(20, 32, 72, 0.96), rgba(35, 77, 147, 0.86) 58%, rgba(38, 169, 224, 0.56)),
        linear-gradient(135deg, #14234e, #1e75a7);
    color: #fff;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 46px;
    align-items: center;
}

.service-eyebrow,
.news-directory span,
.disclosure-panel span {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--hb-sky);
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.service-hero h1 {
    max-width: 720px;
    margin: 0 0 16px;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.12;
}

.service-hero p {
    max-width: 720px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
}

.service-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-metric-panel {
    display: grid;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--hb-radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.16);
}

.service-metric-panel div {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.service-metric-panel div:last-child {
    border-bottom: 0;
}

.service-metric-panel strong {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 34px;
    line-height: 1;
}

.service-metric-panel span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    font-weight: 800;
}

.service-detail-grid,
.news-directory,
.disclosure-list,
.career-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-detail-card,
.news-directory article,
.disclosure-list article,
.career-grid article,
.career-contact {
    border: 1px solid var(--hb-line);
    border-radius: var(--hb-radius);
    padding: 26px;
    background: #fff;
}

.service-detail-card {
    border-top: 4px solid var(--hb-blue);
}

.service-detail-card h2,
.news-directory h2,
.disclosure-panel h2,
.career-contact h2,
.career-grid h3 {
    margin: 0 0 12px;
    color: var(--hb-deep);
    line-height: 1.25;
}

.service-detail-card p,
.news-directory p,
.disclosure-panel p,
.disclosure-list p,
.career-grid p,
.career-contact p {
    margin: 0;
    color: var(--hb-muted);
}

.news-directory a {
    display: inline-flex;
    margin-top: 20px;
    color: var(--hb-blue);
    font-weight: 900;
}

.service-process {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.service-process article {
    min-height: 116px;
    border-left: 3px solid var(--hb-blue);
    padding: 18px;
    background: #fff;
}

.service-process b,
.service-process span {
    display: block;
}

.service-process b {
    color: var(--hb-blue);
    font-family: Arial, sans-serif;
    font-size: 24px;
    line-height: 1;
}

.service-process span {
    margin-top: 12px;
    color: var(--hb-deep);
    font-weight: 900;
}

.disclosure-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border-top: 4px solid var(--hb-blue);
    padding: 30px;
    margin-bottom: 24px;
    background: var(--hb-soft);
}

.disclosure-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.news-center-hero {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    padding: 128px 0 104px;
    background:
        linear-gradient(90deg, rgba(0, 26, 66, 0.86), rgba(35, 77, 147, 0.7)),
        var(--news-hero-image) center center / cover no-repeat;
    color: #fff;
}

.news-center-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.news-center-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.news-center-hero h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(48px, 5vw, 64px);
    line-height: 1.08;
    font-weight: 900;
}

.news-center-hero p {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.7;
}

.news-center-main {
    padding: 92px 0 96px;
    background: #fbf9fb;
}

.news-center-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.news-center-filters a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1px solid rgba(199, 200, 202, 0.62);
    border-radius: 999px;
    padding: 0 18px;
    background: #efedef;
    color: #525762;
    font-size: 14px;
    font-weight: 800;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.news-center-filters a.is-active,
.news-center-filters a:hover {
    border-color: #003578;
    background: #003578;
    color: #fff;
}

.news-center-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.news-card-featured,
.news-card-standard {
    overflow: hidden;
    border: 1px solid rgba(199, 200, 202, 0.4);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(35, 77, 147, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    align-self: start;
}

.news-card-featured:hover,
.news-card-standard:hover {
    border-color: rgba(0, 53, 120, 0.22);
    box-shadow: 0 22px 44px rgba(35, 77, 147, 0.08);
    transform: translateY(-2px);
}

.news-card-featured {
    grid-column: span 2;
    border-left: 4px solid #003578;
}

.news-card-standard.is-tall {
    grid-row: auto;
}

.news-card-standard.is-text-only .news-card-body {
    min-height: 0;
}

.news-card-media {
    position: relative;
    overflow: hidden;
    background: #dfe8ef;
}

.news-card-featured .news-card-media {
    height: 302px;
}

.news-card-standard .news-card-media {
    height: 230px;
}

.news-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-date-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border-radius: 4px;
    padding: 0 12px;
    background: rgba(255, 255, 255, 0.96);
    color: #365da4;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(35, 77, 147, 0.08);
}

.news-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 20px 22px;
}

.news-card-featured .news-card-body {
    padding: 24px 24px 22px;
}

.news-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.news-card-tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border-radius: 999px;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 800;
}

.news-card-tag.is-company {
    background: #d7eefc;
    color: #45657a;
}

.news-card-tag.is-neutral {
    background: #efedef;
    color: #727782;
}

.news-card-meta time {
    color: #9aa1ad;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.news-card-featured h2,
.news-card-standard h3 {
    margin: 0;
    color: #1b1b1d;
    font-size: clamp(28px, 2.2vw, 34px);
    line-height: 1.3;
    font-weight: 900;
}

.news-card-standard h3 {
    font-size: 26px;
    line-height: 1.34;
}

.news-card-featured p,
.news-card-standard p {
    margin: 0;
    color: #5e6572;
    font-size: 16px;
    line-height: 1.78;
}

.news-card-featured a,
.news-card-standard a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    color: #003578;
    font-size: 15px;
    font-weight: 900;
}

.news-card-featured a::after,
.news-card-standard a::after {
    content: "›";
    font-size: 18px;
    line-height: 1;
}

.news-center-empty {
    padding: 72px 24px;
    border: 1px solid rgba(199, 200, 202, 0.42);
    border-radius: 12px;
    background: #fff;
    text-align: center;
}

.news-center-empty h2 {
    margin: 0 0 12px;
    color: #003578;
    font-size: 28px;
}

.news-center-empty p {
    margin: 0;
    color: #697287;
}

.news-center-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.news-center-pagination a,
.news-center-pagination span {
    display: inline-flex;
    width: 36px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(199, 200, 202, 0.58);
    border-radius: 4px;
    background: #fff;
    color: #727782;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.news-center-pagination .is-current {
    border-color: #003578;
    background: #003578;
    color: #fff;
}

.news-center-pagination .is-disabled {
    opacity: 0.48;
}

.news-center-pagination .news-center-ellipsis {
    width: auto;
    border: 0;
    background: transparent;
}

.news-detail-page {
    background: #fbf9fb;
}

.news-detail-shell {
    padding: 84px 0 96px;
}

.news-detail-container {
    width: min(100% - 48px, 980px);
}

.news-detail-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.news-detail-back,
.news-detail-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #565d68;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.news-detail-back:hover,
.news-detail-action:hover {
    color: #003578;
}

.news-detail-back:hover {
    transform: translateX(-2px);
}

.news-detail-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.news-detail-action {
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
}

.news-detail-action.is-copied {
    background: rgba(0, 53, 120, 0.08);
    color: #003578;
}

.news-detail-icon,
.news-detail-meta-icon {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.news-detail-header {
    padding-bottom: 22px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(199, 200, 202, 0.85);
}

.news-detail-header h1 {
    margin: 0 0 24px;
    color: #003578;
    font-size: clamp(32px, 3.6vw, 44px);
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: 0;
}

.news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
    color: #767c88;
    font-size: 14px;
    font-weight: 700;
}

.news-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.news-detail-article {
    color: #1f2735;
}

.news-detail-lead,
.news-detail-body {
    font-size: 16px;
    line-height: 1.95;
}

.news-detail-lead {
    margin-bottom: 28px;
}

.news-detail-lead p,
.news-detail-body p {
    margin: 0 0 22px;
}

.news-detail-figure {
    margin: 0 0 28px;
}

.news-detail-figure img {
    display: block;
    width: 100%;
    border: 1px solid rgba(199, 200, 202, 0.42);
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 14px 34px rgba(35, 77, 147, 0.05);
}

.news-detail-figure figcaption {
    margin-top: 14px;
    color: #6f7580;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

.news-detail-body > :last-child {
    margin-bottom: 0;
}

.news-detail-body img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.news-detail-body h2,
.news-detail-body h3,
.news-detail-body h4 {
    margin: 34px 0 16px;
    color: #17233a;
    line-height: 1.35;
}

.news-detail-body ul,
.news-detail-body ol {
    margin: 0 0 22px;
    padding-left: 22px;
    line-height: 1.9;
}

.news-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 8px;
    margin-top: 34px;
}

.news-detail-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border: 1px solid rgba(35, 77, 147, 0.18);
    border-radius: 999px;
    padding: 0 14px;
    background: #f4f9fc;
    color: #234d93;
    font-size: 12px;
    font-weight: 900;
}

.news-detail-related {
    padding-top: 34px;
    margin-top: 58px;
    border-top: 1px solid rgba(199, 200, 202, 0.85);
}

.news-detail-related h2 {
    margin: 0 0 28px;
    color: #111827;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 900;
}

.news-detail-related-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.news-detail-related-card {
    display: grid;
    gap: 10px;
    min-height: 98px;
    border: 1px solid rgba(199, 200, 202, 0.22);
    border-radius: 10px;
    padding: 18px 18px 20px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 30px rgba(35, 77, 147, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.news-detail-related-card:hover {
    border-color: rgba(35, 77, 147, 0.2);
    box-shadow: 0 18px 34px rgba(35, 77, 147, 0.07);
    transform: translateY(-2px);
}

.news-detail-related-card time {
    color: #8b92a0;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.news-detail-related-card h3 {
    margin: 0;
    color: #202938;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}

.news-detail-related-card:not(a) {
    pointer-events: none;
}

.disclosure-hero {
    position: relative;
    overflow: hidden;
    padding: 116px 0 108px;
    background:
        linear-gradient(180deg, rgba(217, 223, 232, 0.92), rgba(217, 223, 232, 0.95)),
        linear-gradient(120deg, rgba(232, 238, 246, 0.88), rgba(199, 214, 234, 0.84)),
        var(--disclosure-hero-image) center 36% / cover no-repeat;
    color: #003578;
    text-align: center;
}

.disclosure-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(0, 53, 120, 0.08), rgba(255, 255, 255, 0) 42%, rgba(0, 53, 120, 0.06)),
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.38), transparent 26%);
    pointer-events: none;
}

.disclosure-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.disclosure-hero h1 {
    margin: 0 0 22px;
    color: #003578;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1.08;
    font-weight: 900;
}

.disclosure-hero p {
    margin: 0 auto;
    color: #636975;
    font-size: 17px;
    line-height: 1.8;
}

.disclosure-main {
    padding: 72px 0 92px;
    background: #fbf9fb;
}

.disclosure-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.disclosure-sidebar {
    position: sticky;
    top: 118px;
    min-width: 0;
    border-right: 1px solid rgba(199, 200, 202, 0.34);
    padding-right: 28px;
}

.disclosure-sidebar nav {
    display: grid;
    gap: 18px;
}

.disclosure-sidebar a {
    position: relative;
    display: block;
    padding-left: 18px;
    color: #5d6370;
    font-size: 15px;
    font-weight: 700;
}

.disclosure-sidebar a::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    content: "";
    background: transparent;
}

.disclosure-sidebar a.is-active,
.disclosure-sidebar a:hover {
    color: #003578;
}

.disclosure-sidebar a.is-active::before,
.disclosure-sidebar a:hover::before {
    background: #003578;
}

.disclosure-sections {
    display: grid;
    gap: 76px;
}

.disclosure-section {
    scroll-margin-top: 110px;
}

.disclosure-section-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(199, 200, 202, 0.58);
}

.disclosure-section-head h2 {
    margin: 0;
    color: #003578;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 900;
}

.disclosure-section-icon,
.disclosure-item-icon,
.disclosure-action-icon {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.disclosure-section-icon {
    color: #003578;
}

.disclosure-card-list {
    display: grid;
    gap: 18px;
}

.disclosure-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    border: 1px solid rgba(199, 200, 202, 0.3);
    border-radius: 12px;
    padding: 28px 30px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(35, 77, 147, 0.03);
}

.disclosure-card-copy {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-width: 0;
}

.disclosure-item-icon {
    flex: none;
    margin-top: 2px;
    color: #7b808a;
}

.disclosure-card h3 {
    margin: 0 0 8px;
    color: #1b1b1d;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 900;
}

.disclosure-card p {
    margin: 0;
    color: #697287;
    font-size: 15px;
    line-height: 1.5;
}

.disclosure-card-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: none;
    color: #003578;
    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;
}

.disclosure-card-action.is-disabled {
    color: #8b92a0;
}

.disclosure-card-empty {
    border-style: dashed;
}

.disclosure-action-icon {
    width: 16px;
    height: 16px;
    color: #003578;
}

.disclosure-detail-download {
    margin: 0 0 32px;
}

.disclosure-detail-download a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: #003578;
    padding: 12px 18px;
    color: #fff;
    font-weight: 800;
}

.careers-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 32px;
    align-items: start;
}

.career-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.career-contact {
    position: sticky;
    top: 98px;
    background: var(--hb-soft);
}

.career-contact strong {
    display: block;
    margin: 18px 0;
    color: var(--hb-deep);
    font-size: 20px;
}

.contact-info {
    border: 1px solid var(--hb-line);
    border-radius: var(--hb-radius);
    padding: 26px;
    background: var(--hb-soft);
}

.contact-info strong {
    color: var(--hb-deep);
}

.map-placeholder {
    display: grid;
    place-items: center;
    min-height: 220px;
    margin-top: 22px;
    border: 1px dashed #8bb6dd;
    border-radius: var(--hb-radius);
    background: linear-gradient(135deg, rgba(114, 198, 239, 0.22), rgba(35, 77, 147, 0.08));
    color: var(--hb-deep);
    text-align: center;
}

.map-placeholder span {
    display: block;
    font-weight: 900;
}

.map-placeholder small {
    color: var(--hb-muted);
}

.feature-list b {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.archive-layout {
    display: grid;
    grid-template-columns: 292px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.product-archive-section {
    padding: 58px 0 78px;
}

.product-archive-head {
    align-items: center;
    border-bottom: 1px solid var(--hb-line);
    padding-bottom: 26px;
    margin-bottom: 30px;
}

.archive-kpi {
    display: grid;
    min-width: 176px;
    border-left: 4px solid var(--hb-blue);
    padding-left: 18px;
}

.archive-kpi strong {
    color: var(--hb-deep);
    font-family: Arial, sans-serif;
    font-size: 36px;
    line-height: 1;
}

.archive-kpi span {
    color: var(--hb-muted);
    font-size: 13px;
    font-weight: 800;
}

.product-cross-layout {
    display: grid;
    grid-template-columns: 292px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.category-tabs {
    position: sticky;
    top: 98px;
    border: 1px solid var(--hb-line);
    border-radius: var(--hb-radius);
    padding: 22px;
    background: #fff;
}

.category-tabs h2 {
    margin: 0 0 18px;
    color: var(--hb-deep);
    font-size: 20px;
}

.category-tabs ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.category-tabs li + li {
    margin-top: 7px;
}

.category-tabs a {
    display: block;
    border-left: 3px solid transparent;
    border-radius: 4px;
    padding: 9px 10px 9px 12px;
    color: var(--hb-muted);
    font-weight: 700;
}

.category-tabs a:hover,
.category-tabs a.is-active {
    border-left-color: var(--hb-blue);
    background: var(--hb-soft);
    color: var(--hb-deep);
}

.product-results-panel {
    min-width: 0;
}

.application-tabs,
.performance-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

.application-tabs a {
    display: grid;
    place-items: center;
    min-width: 112px;
    min-height: 44px;
    border: 1px solid var(--hb-line);
    border-radius: 4px;
    padding: 0 14px;
    background: #fff;
    color: var(--hb-deep);
    font-size: 16px;
    font-weight: 900;
}

.application-tabs a:hover,
.application-tabs a.is-active {
    border-color: var(--hb-deep);
    background: var(--hb-deep);
    color: #fff;
}

.performance-tabs {
    margin-bottom: 18px;
}

.performance-tabs a {
    border: 1px solid var(--hb-line);
    border-radius: 4px;
    padding: 7px 11px;
    background: #fff;
    color: var(--hb-muted);
    font-size: 13px;
    font-weight: 800;
}

.performance-tabs a:hover,
.performance-tabs a.is-active {
    border-color: var(--hb-blue);
    background: var(--hb-ice);
    color: var(--hb-deep);
}

.product-finder {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.82fr);
    gap: 22px;
    margin-bottom: 28px;
}

.finder-column {
    border: 1px solid var(--hb-line);
    border-radius: var(--hb-radius);
    padding: 24px;
    background: #fff;
}

.finder-column-primary {
    border-top: 4px solid var(--hb-blue);
}

.finder-head {
    display: grid;
    gap: 6px;
    margin-bottom: 18px;
}

.finder-head span {
    color: var(--hb-blue);
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.finder-head h2 {
    margin: 0;
    color: var(--hb-navy);
    font-size: 26px;
    line-height: 1.2;
}

.finder-head p {
    max-width: 640px;
    margin: 0;
    color: var(--hb-muted);
}

.finder-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.finder-card {
    display: grid;
    gap: 7px;
    min-height: 118px;
    border: 1px solid var(--hb-line);
    border-radius: 6px;
    padding: 15px;
    background: var(--hb-soft);
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.finder-card strong {
    color: var(--hb-deep);
    font-size: 17px;
}

.finder-card span {
    color: var(--hb-muted);
    font-size: 13px;
    line-height: 1.55;
}

.finder-card:hover,
.finder-card.is-active {
    border-color: var(--hb-blue);
    background: #fff;
    transform: translateY(-1px);
}

.system-link-grid {
    display: grid;
    gap: 10px;
}

.system-link-grid a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--hb-line);
    padding: 9px 0;
    color: var(--hb-deep);
    font-weight: 800;
}

.system-link-grid a::after {
    content: "查看";
    color: var(--hb-blue);
    font-size: 12px;
}

.finder-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.finder-tags a {
    border: 1px solid var(--hb-line);
    border-radius: 4px;
    padding: 6px 9px;
    color: var(--hb-muted);
    font-size: 12px;
    font-weight: 800;
}

.finder-tags a:hover {
    border-color: var(--hb-deep);
    color: var(--hb-deep);
}

.filter-panel {
    position: sticky;
    top: 98px;
    border: 1px solid var(--hb-line);
    border-radius: var(--hb-radius);
    padding: 22px;
    background: #fff;
}

.filter-panel h2 {
    margin: 0 0 16px;
    color: var(--hb-deep);
    font-size: 20px;
}

.filter-panel ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.filter-panel li + li {
    margin-top: 8px;
}

.filter-panel a {
    display: block;
    border-radius: 6px;
    padding: 9px 10px;
    color: var(--hb-muted);
}

.filter-panel a:hover {
    background: var(--hb-soft);
    color: var(--hb-deep);
}

.application-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.application-filter a {
    border: 1px solid var(--hb-line);
    border-radius: 4px;
    padding: 7px 11px;
    background: #fff;
    color: var(--hb-muted);
    font-size: 13px;
    font-weight: 800;
}

.application-filter a:hover,
.application-filter .is-active {
    border-color: var(--hb-deep);
    background: var(--hb-deep);
    color: #fff;
}

.product-list-grid {
    display: grid;
    gap: 14px;
}

.product-row-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px;
    gap: 22px;
    align-items: center;
    border: 1px solid var(--hb-line);
    border-radius: var(--hb-radius);
    padding: 18px 22px;
    background: #fff;
    transition: box-shadow 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.product-row-card:hover {
    border-color: rgba(38, 169, 224, 0.58);
    box-shadow: var(--hb-shadow);
    transform: translateY(-1px);
}

.product-row-card h3 {
    margin: 0 0 6px;
    color: var(--hb-deep);
    font-size: 21px;
    line-height: 1.35;
}

.product-row-card p {
    margin: 0;
    color: var(--hb-muted);
}

.product-row-card small {
    display: block;
    margin-top: 9px;
    color: var(--hb-blue);
    font-size: 12px;
    font-weight: 800;
}

.product-row-meta {
    display: grid;
    gap: 10px;
    justify-items: end;
    text-align: right;
}

.product-row-meta span {
    color: var(--hb-muted);
    font-size: 13px;
    font-weight: 800;
}

.product-row-meta a {
    color: var(--hb-blue);
    font-weight: 900;
}

.search-row {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.search-row input {
    flex: 1;
    border: 1px solid var(--hb-line);
    border-radius: 6px;
    padding: 12px 14px;
    font: inherit;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 40px;
    align-items: start;
}

.product-detail-hero {
    padding: 64px 0 58px;
    background:
        linear-gradient(100deg, rgba(20, 32, 72, 0.96), rgba(34, 76, 145, 0.9)),
        linear-gradient(135deg, #10264f, #1b6e9d);
    color: #fff;
}

.product-detail-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 44px;
    align-items: center;
}

.product-detail-hero h1 {
    max-width: 760px;
    margin: 0 0 12px;
    font-size: clamp(38px, 3.55vw, 50px);
    line-height: 1.12;
}

.product-detail-hero p {
    max-width: 680px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.82);
}

.product-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.product-detail-tags span {
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.product-summary-card {
    border-top: 4px solid var(--hb-sky);
    padding: 28px;
    background: rgba(255, 255, 255, 0.1);
}

.product-summary-card span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 800;
}

.product-summary-card strong {
    display: block;
    margin: 6px 0 12px;
    color: #fff;
    font-size: 22px;
}

.product-summary-list {
    display: grid;
    gap: 12px;
    margin: 0 0 18px;
}

.product-summary-list div {
    display: grid;
    gap: 4px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.product-summary-list div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.product-summary-list small {
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.product-summary-list b {
    color: #fff;
    font-size: 16px;
    line-height: 1.45;
}

.product-summary-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
}

.detail-panel {
    border: 1px solid var(--hb-line);
    border-radius: var(--hb-radius);
    padding: 28px;
    background: #fff;
}

.product-detail-section {
    padding: 48px 0 82px;
}

.product-story h2,
.detail-panel h2 {
    color: var(--hb-deep);
}

.product-story {
    display: grid;
    gap: 22px;
}

.detail-block {
    border-bottom: 1px solid var(--hb-line);
    padding-bottom: 22px;
}

.detail-block:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.detail-block span {
    display: block;
    margin-bottom: 6px;
    color: var(--hb-blue);
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.detail-block h2 {
    margin: 0 0 10px;
    font-size: 24px;
}

.detail-block p {
    margin: 0;
}

.detail-block ul,
.detail-block ol {
    margin: 0;
    padding-left: 20px;
}

.detail-panel h2:first-child,
.product-story h2:first-child {
    margin-top: 0;
}

.parameter-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border: 1px solid var(--hb-line);
    border-radius: var(--hb-radius);
}

.parameter-table th,
.parameter-table td {
    border-bottom: 1px solid var(--hb-line);
    padding: 13px 14px;
    text-align: left;
    vertical-align: top;
}

.parameter-table th {
    width: 34%;
    background: var(--hb-soft);
    color: var(--hb-deep);
}

.product-download-list {
    display: grid;
    gap: 12px;
}

.product-download-empty {
    margin: 0;
    color: var(--hb-muted);
    font-size: 14px;
}

.product-related-section {
    padding: 0 0 86px;
}

.product-related-head {
    margin-bottom: 24px;
}

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

.product-related-card {
    display: grid;
    gap: 10px;
    border: 1px solid var(--hb-line);
    border-radius: var(--hb-radius);
    padding: 22px;
    background: #fff;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.product-related-card:hover {
    border-color: rgba(38, 169, 224, 0.58);
    box-shadow: var(--hb-shadow);
    transform: translateY(-1px);
}

.product-related-card h3 {
    margin: 0;
    color: var(--hb-deep);
    font-size: 22px;
    line-height: 1.35;
}

.product-related-card p {
    margin: 0;
    color: var(--hb-muted);
    font-size: 14px;
    line-height: 1.7;
}

.product-related-card a {
    color: var(--hb-blue);
    font-weight: 900;
}

.home-hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background: #eef5f9;
}

.home-hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
}

.home-hero-bg::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(247, 251, 254, 0.86) 0%, rgba(247, 251, 254, 0.58) 34%, rgba(247, 251, 254, 0.12) 72%);
}

.home-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 720px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.home-hero h1 {
    max-width: calc(100vw - 56px);
    margin: 0 0 14px;
    color: #00358c;
    font-size: clamp(26px, calc((100vw - 56px) / 15.6), 66px);
    line-height: 1.12;
    font-weight: 900;
}

.home-hero-title-line {
    display: block;
    white-space: nowrap;
}

.home-hero p {
    max-width: calc(100vw - 56px);
    margin: 0 0 46px;
    color: #00358c;
    font-size: clamp(18px, calc((100vw - 56px) / 28), 28px);
    font-weight: 800;
    line-height: 1.35;
    white-space: nowrap;
}

html[lang^="en"] .home-hero h1 {
    max-width: min(980px, calc(100vw - 56px));
    font-size: clamp(24px, calc((100vw - 56px) / 22), 52px);
    line-height: 1.14;
}

html[lang^="en"] .home-hero-title-line,
html[lang^="en"] .home-hero p {
    white-space: normal;
}

html[lang^="en"] .home-hero p {
    max-width: 780px;
    font-size: clamp(18px, calc((100vw - 56px) / 34), 24px);
}

.home-button,
.home-outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 4px;
    padding: 0 22px;
    font-size: 14px;
    font-weight: 900;
}

.home-button {
    background: #00358c;
    color: #fff;
}

.home-outline-button {
    border: 1px solid #00358c;
    background: #fff;
    color: #00358c;
}

.home-stats {
    background: #fff;
}

.home-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 260px;
    align-items: center;
}

.home-stats article {
    display: grid;
    min-height: 94px;
    place-items: center;
    border-right: 1px solid #e4eaf1;
    text-align: center;
}

.home-stats article:last-child {
    border-right: 0;
}

.home-stats strong {
    color: #00358c;
    font-family: Arial, sans-serif;
    font-size: 54px;
    font-weight: 900;
    line-height: 1;
}

.home-stats span {
    color: #161b2b;
    font-size: 12px;
}

.factory-mark {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
}

.factory-mark svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: #00358c;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 4.5;
}

.home-products,
.home-news {
    padding: 92px 0;
    background: #f1f8fc;
}

.home-section-head {
    margin-bottom: 52px;
}

.home-section-head.centered {
    text-align: center;
}

.home-section-head.split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
}

.home-section-head h2 {
    margin: 0 0 14px;
    color: #00358c;
    font-size: 32px;
    line-height: 1.2;
}

.home-section-head p {
    margin: 0;
    color: #566174;
    font-size: 14px;
}

.home-section-head a,
.home-more a {
    color: #00358c;
    font-size: 13px;
    font-weight: 900;
}

.home-more {
    margin: 38px 0 0;
    text-align: center;
}

.home-more a::after,
.home-section-head a::after {
    content: " ->";
}

.home-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.home-product-card {
    display: grid;
    min-height: 188px;
    align-content: start;
    border: 1px solid #eef2f7;
    border-radius: 8px;
    padding: 30px 28px;
    background: #fff;
    box-shadow: 0 18px 36px rgba(35, 77, 147, 0.05);
}

.home-product-card span:first-child {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    margin-bottom: 30px;
    background: #eef5ff;
    color: #00358c;
    font-weight: 900;
}

.home-product-card svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.8;
}

.home-product-card h3 {
    margin: 0 0 10px;
    color: #00358c;
    font-size: 21px;
    line-height: 1.3;
}

.home-product-card p {
    margin: 0;
    color: #5d6777;
    font-size: 13px;
    line-height: 1.8;
}

.home-strength {
    padding: 104px 0;
    background: #fff;
}

.home-strength-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
    gap: 90px;
    align-items: center;
}

.home-strength-copy img {
    width: 92px;
    margin-bottom: 40px;
}

.home-strength-copy h2 {
    margin: 0 0 26px;
    color: #00358c;
    font-size: 34px;
    line-height: 1.25;
}

.home-strength-copy p {
    max-width: 650px;
    margin: 0 0 20px;
    color: #2f3545;
    line-height: 1.9;
}

.home-strength-copy .home-outline-button {
    margin-top: 18px;
}

.home-strength-media {
    position: relative;
    overflow: hidden;
    min-height: 438px;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(0, 53, 140, 0.08), rgba(0, 20, 60, 0.28)),
        linear-gradient(90deg, rgba(241, 248, 252, 0.1), rgba(0, 53, 140, 0.1)),
        url("assets/haike-group-building.jpg") 62% 20% / 118% auto no-repeat;
    box-shadow: 0 24px 52px rgba(0, 34, 78, 0.16);
}

.home-strength-media::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        radial-gradient(circle at 46% 35%, rgba(255, 255, 255, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 38%),
        linear-gradient(0deg, rgba(0, 22, 54, 0.32), transparent 45%);
    mix-blend-mode: screen;
    pointer-events: none;
}

.home-strength-media::after {
    position: absolute;
    inset: 0;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(0, 53, 140, 0.12), transparent 34%, rgba(0, 53, 140, 0.1));
    box-shadow: inset 0 0 0 1px rgba(0, 53, 140, 0.08), inset 0 -80px 120px rgba(0, 15, 38, 0.28);
    pointer-events: none;
}

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

.home-news-card {
    display: block;
    color: inherit;
}

.home-news-card:hover h3 {
    color: var(--hb-deep);
}

.home-news-card img,
.home-news-placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 4px;
    object-fit: cover;
    background:
        repeating-radial-gradient(circle at 20% 50%, #d8e2e8 0 4px, transparent 5px 18px),
        linear-gradient(135deg, #edf2f5, #dfe9ef);
}

.home-news-placeholder.is-plant {
    background:
        linear-gradient(90deg, rgba(0, 53, 140, 0.12), transparent),
        repeating-linear-gradient(90deg, #a7c2d0 0 2px, transparent 2px 38px),
        linear-gradient(135deg, #e5eef3, #bed4df);
}

.company-hero {
    position: relative;
    display: grid;
    min-height: 500px;
    place-items: center;
    overflow: hidden;
    color: #fff;
    background-position: center 47%;
    background-size: cover;
    text-align: center;
}

.company-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(35, 77, 147, 0.8), rgba(35, 77, 147, 0.05));
    mix-blend-mode: multiply;
}

.company-hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    padding: 0 24px;
}

.company-hero h1 {
    margin: 0 0 24px;
    font-size: 64px;
    font-weight: 900;
    line-height: 1.12;
}

.company-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.56;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.company-intro {
    padding: 120px 0;
    background: #fbf9fb;
}

.company-hero + .company-intro .container,
.company-facilities .container,
.company-cycle .container,
.company-tech .container,
.company-honors .container {
    width: min(1280px, calc(100% - 48px));
}

.company-intro-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 24px;
    align-items: center;
}

.company-intro-media {
    position: relative;
    margin: 0;
}

.company-intro-media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 24px 44px rgba(0, 53, 140, 0.18);
}

.company-intro-media figcaption {
    position: absolute;
    right: -32px;
    bottom: -32px;
    min-width: 100px;
    border-radius: 8px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 14px 28px rgba(0, 38, 99, 0.16);
    text-align: center;
}

.company-intro-media figcaption strong {
    display: block;
    color: #00358c;
    font-family: Arial, sans-serif;
    font-size: 40px;
    line-height: 1;
}

.company-intro-media figcaption span {
    color: #4d5667;
    font-size: 12px;
    font-weight: 700;
}

.company-intro-copy h2,
.company-section-head h2,
.company-tech h2 {
    margin: 0;
    color: #111827;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
}

.company-intro-copy p {
    margin: 16px 0 0;
    color: #4d5667;
    font-size: 16px;
    line-height: 1.7;
}

.company-mini-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 32px;
}

.company-mini-tags span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 8px 16px;
    background: #f4f9fc;
    color: #00358c;
    font-size: 14px;
    font-weight: 800;
}

.company-mini-tags svg {
    width: 16px;
    height: 16px;
}

.company-facilities,
.company-cycle,
.company-honors {
    padding: 120px 0;
}

.company-facilities {
    background: #f1f8fc;
}

.company-cycle,
.company-honors {
    background: #fbf9fb;
}

.company-section-head {
    max-width: 680px;
    margin: 0 auto 64px;
    text-align: center;
}

.company-section-head p {
    margin: 14px 0 0;
    color: #6a7280;
    font-size: 16px;
    line-height: 1.5;
}

.company-facility-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.company-facility-grid article {
    min-height: 190px;
    border: 1px solid #eaf0f8;
    border-radius: 12px;
    padding: 32px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(35, 77, 147, 0.05);
}

.company-facility-grid article:nth-child(2) {
    border-top: 3px solid #00358c;
    box-shadow: 0 18px 38px rgba(35, 77, 147, 0.1);
}

.company-icon {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 5px;
    margin-bottom: 24px;
    background: #e8f0ff;
    color: #00358c;
}

.company-icon svg,
.company-honor-grid svg,
.company-mini-tags svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

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

.company-facility-grid h3,
.company-cycle-grid h3,
.company-tech-grid h3 {
    margin: 0 0 8px;
    color: #162033;
    font-size: 20px;
    line-height: 1.35;
}

.company-facility-grid strong {
    display: block;
    color: #00358c;
    font-family: Arial, sans-serif;
    font-size: 40px;
    line-height: 1.1;
}

.company-facility-grid p,
.company-cycle-grid p,
.company-tech-grid p {
    margin: 7px 0 0;
    color: #6a7280;
    font-size: 14px;
    line-height: 1.75;
}

.company-cycle-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
}

.company-cycle-grid article {
    position: relative;
    min-height: 160px;
    border: 1px solid #e7edf6;
    border-radius: 12px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 12px 26px rgba(0, 53, 140, 0.04);
}

.company-cycle-grid article:nth-child(3) {
    transform: translateY(-8px);
    box-shadow: 0 18px 38px rgba(0, 53, 140, 0.12);
}

.company-cycle-grid b {
    position: absolute;
    top: -16px;
    left: -16px;
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 999px;
    background: #00358c;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 11px;
}

.company-cycle-grid article:nth-child(3) b {
    background: #35c8ee;
}

.company-tech {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    color: #fff;
    background-position: center;
    background-size: cover;
}

.company-tech::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(0, 24, 86, 0.78), rgba(0, 53, 140, 0.44));
}

.company-tech .container {
    position: relative;
    z-index: 1;
}

.company-tech h2 {
    color: #fff;
}

.company-tech > .container > p {
    max-width: 620px;
    margin: 16px 0 48px;
    color: rgba(255, 255, 255, 0.82);
}

.company-tech-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.company-tech-grid article {
    min-height: 160px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 12px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}

.company-tech-grid h3 {
    color: #fff;
}

.company-tech-grid p {
    color: rgba(255, 255, 255, 0.78);
}

.company-tech-grid .company-icon {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.company-honors {
    border-bottom: 6px solid #1d245b;
}

.company-honors .company-section-head h2 {
    display: inline-block;
    position: relative;
}

.company-honors .company-section-head h2::after {
    position: absolute;
    left: 50%;
    bottom: -14px;
    width: 58px;
    height: 2px;
    content: "";
    background: #00358c;
    transform: translateX(-50%);
}

.company-honor-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 36px;
    max-width: 780px;
    margin: 0 auto;
}

.company-honor-grid article {
    display: grid;
    width: 160px;
    height: 160px;
    place-items: center;
    justify-self: center;
    border: 1px solid #e8edf5;
    border-radius: 999px;
    background: #f4f9fc;
    text-align: center;
}

.company-honor-grid span {
    display: grid;
    place-items: center;
    color: #162033;
}

.company-honor-grid svg {
    width: 32px;
    height: 32px;
    color: #00358c;
}

.company-honor-grid strong {
    color: #162033;
    font-size: 12px;
    line-height: 1.2;
}

.company-honor-grid p {
    margin: 0 16px;
    color: #6a7280;
    font-size: 10px;
    line-height: 1.35;
}

.culture-container {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}

.culture-hero {
    position: relative;
    display: grid;
    min-height: 420px;
    place-items: center;
    overflow: hidden;
    color: #fff;
    background-position: center 34%;
    background-size: cover;
    text-align: center;
}

.culture-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to bottom, rgba(0, 53, 120, 0.4), rgba(0, 53, 120, 0.8));
}

.culture-hero-content {
    position: relative;
    z-index: 1;
    padding: 0 24px;
}

.culture-hero h1 {
    margin: 0 0 16px;
    font-size: 64px;
    font-weight: 900;
    line-height: 1.12;
}

.culture-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.56;
}

.culture-pillars {
    padding: 120px 0;
    background: #fbf9fb;
}

.culture-pillar-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
}

.culture-pillar-card {
    position: relative;
    min-height: 314px;
    overflow: hidden;
    border: 1px solid rgba(199, 200, 202, 0.2);
    border-radius: 12px;
    padding: 40px;
    background: #fff;
    color: #1b1b1d;
    transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.culture-pillar-card:hover {
    box-shadow: 0 26px 54px rgba(0, 38, 99, 0.14);
    transform: translateY(-2px);
}

.culture-pillar-card b {
    position: absolute;
    top: -42px;
    right: -12px;
    color: rgba(0, 53, 120, 0.05);
    font-family: Arial, sans-serif;
    font-size: 160px;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
}

.culture-pillar-card span {
    display: inline-block;
    border-radius: 999px;
    padding: 4px 16px;
    margin-bottom: 24px;
    background: #f4f9fc;
    color: #003578;
    font-size: 14px;
    font-weight: 800;
}

.culture-pillar-card h2 {
    margin: 0 0 24px;
    color: #003578;
    font-size: 40px;
    line-height: 1.2;
}

.culture-pillar-card p,
.culture-pillar-card li {
    max-width: 500px;
    margin: 0;
    color: #434751;
    font-size: 18px;
    line-height: 1.56;
}

.culture-pillar-card p + p {
    margin-top: 16px;
}

.culture-pillar-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    color: #003578;
    font-size: 16px;
    font-weight: 900;
}

.culture-pillar-card svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.culture-pillar-dark {
    border-color: #241f55;
    background: #241f55;
    color: #fff;
}

.culture-pillar-dark b {
    color: rgba(255, 255, 255, 0.05);
}

.culture-pillar-dark span {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.culture-pillar-dark h2,
.culture-pillar-dark p {
    color: #fff;
}

.culture-pillar-dark p {
    opacity: 0.82;
}

.culture-pillar-dark a {
    color: #54c7ff;
}

.culture-pillar-ice {
    background: #f4f9fc;
}

.culture-pillar-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
}

.culture-pillar-card ul {
    display: grid;
    gap: 16px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.culture-pillar-card li {
    position: relative;
    padding-left: 22px;
}

.culture-pillar-card li::before {
    position: absolute;
    top: 12px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    content: "";
    background: #003578;
}

.culture-spirit {
    padding: 120px 0;
    background: #241f55;
    color: #fff;
}

.culture-spirit-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
    gap: 64px;
    align-items: center;
}

.culture-spirit h2 {
    margin: 0 0 32px;
    color: #fff;
    font-size: 40px;
    line-height: 1.2;
}

.culture-spirit p {
    max-width: 640px;
    margin: 0 0 40px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.56;
}

.culture-spirit-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 180px));
    gap: 32px;
}

.culture-spirit-metrics strong {
    display: block;
    color: #54c7ff;
    font-family: Arial, sans-serif;
    font-size: 28px;
    line-height: 1;
}

.culture-spirit-metrics span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.culture-spirit figure {
    margin: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 28px 58px rgba(0, 0, 0, 0.28);
}

.culture-spirit img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.culture-innovation {
    padding: 120px 0;
    background: #fff;
}

.culture-innovation header {
    margin-bottom: 64px;
    text-align: center;
}

.culture-innovation h2 {
    margin: 0;
    color: #003578;
    font-size: 40px;
    line-height: 1.2;
}

.culture-innovation header span {
    display: block;
    width: 80px;
    height: 4px;
    border-radius: 999px;
    margin: 24px auto 0;
    background: #00668a;
}

.culture-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.culture-gallery article {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    background: #f4f9fc;
}

.culture-gallery img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.culture-gallery article:hover img {
    transform: scale(1.1);
}

.basic-container {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}

.basic-hero {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    color: #fff;
}

.basic-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(36, 31, 85, 0.82), rgba(36, 31, 85, 0.44) 44%, rgba(36, 31, 85, 0.04));
}

.basic-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(1280px, calc(100% - 48px));
    min-height: 600px;
    align-items: center;
    margin: 0 auto;
}

.basic-hero-content {
    max-width: 760px;
}

.basic-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 7px 16px;
    margin-bottom: 28px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.94);
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.basic-kicker span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #d8e2ff;
}

.basic-hero h1 {
    margin: 0;
    color: #fff;
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
}

.basic-en {
    margin: 4px 0 30px;
    color: rgba(255, 255, 255, 0.8);
    font-family: Arial, sans-serif;
    font-size: 40px;
    font-style: italic;
    font-weight: 300;
    line-height: 1.2;
}

.basic-hero h2 {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 28px;
    line-height: 1.45;
}

.basic-copy {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.75;
}

.basic-metrics {
    display: flex;
    gap: 34px;
    margin-top: 32px;
}

.basic-metrics div {
    border-left: 2px solid #d8e2ff;
    padding-left: 18px;
}

.basic-metrics strong {
    display: block;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 32px;
    line-height: 1.05;
}

.basic-metrics span {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
}

.basic-products {
    padding: 120px 0;
    background: #fbf9fb;
}

.basic-products-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
}

.basic-products-head h2 {
    margin: 0;
    color: #241f55;
    font-size: 40px;
    line-height: 1.2;
}

.basic-products-head div > span {
    display: block;
    width: 80px;
    height: 6px;
    border-radius: 999px;
    margin-top: 16px;
    background: #003578;
}

.basic-products-head a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    border: 1px solid rgba(0, 53, 120, 0.2);
    border-radius: 999px;
    padding: 0 20px;
    background: #f4f9fc;
    color: #003578;
    font-size: 14px;
    font-weight: 900;
}

.basic-table-card {
    overflow: hidden;
    border: 1px solid rgba(195, 198, 210, 0.3);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(36, 31, 85, 0.06);
}

.basic-table-card table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.basic-table-card thead {
    background: #234d93;
    color: #fff;
}

.basic-table-card th {
    padding: 24px 32px;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.03em;
}

.basic-table-card td {
    border-bottom: 1px solid rgba(195, 198, 210, 0.2);
    padding: 24px 32px;
    color: #434751;
    font-size: 18px;
    line-height: 1.5;
    vertical-align: middle;
}

.basic-table-card tbody tr:last-child td {
    border-bottom: 0;
}

.basic-table-card tbody tr:hover {
    background: rgba(35, 77, 147, 0.02);
}

.basic-product-name {
    display: flex;
    align-items: center;
    gap: 16px;
}

.basic-product-name > span {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    place-items: center;
    border-radius: 8px;
    background: #f4f9fc;
    color: #003578;
}

.basic-product-name svg,
.basic-pdf-link svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
}

.basic-product-name strong {
    color: #241f55;
    font-size: 18px;
    font-weight: 900;
    white-space: nowrap;
}

.basic-spec {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 5px 14px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 800;
}

.basic-spec-blue {
    background: rgba(196, 231, 255, 0.44);
    color: #00668a;
}

.basic-spec-gray {
    background: #e9e7ea;
    color: #434751;
}

.basic-spec-cyan {
    background: #c1e8ff;
    color: #003d52;
}

.basic-pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #003578;
    font-size: 16px;
    font-weight: 900;
    white-space: nowrap;
}

.consult-hero {
    position: relative;
    overflow: hidden;
    padding: 132px 24px 138px;
    background-color: #003578;
    background-position: center 58%;
    background-size: cover;
    text-align: center;
}

.consult-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 24, 86, 0.42), rgba(0, 24, 86, 0.58)),
        linear-gradient(90deg, rgba(244, 249, 252, 0.64), rgba(244, 249, 252, 0.22) 54%, rgba(244, 249, 252, 0.08));
    pointer-events: none;
}

.consult-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 53, 120, 0), rgba(0, 53, 120, 0.22));
    pointer-events: none;
}

.consult-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.consult-hero h1 {
    margin: 0 0 24px;
    color: #fff;
    font-size: 56px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: 0;
    text-shadow: 0 3px 18px rgba(0, 24, 86, 0.34);
}

.consult-hero p {
    margin: 0 auto;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 18px;
    line-height: 1.8;
    text-shadow: 0 2px 14px rgba(0, 24, 86, 0.32);
}

.consult-main {
    padding: 112px 0 120px;
    background: #fbf9fb;
}

.consult-container {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}

.consult-layout {
    display: grid;
    grid-template-columns: minmax(330px, 0.82fr) minmax(560px, 1.18fr);
    gap: 64px;
    align-items: start;
}

.consult-left {
    display: grid;
    gap: 48px;
}

.consult-card,
.consult-map,
.consult-form-card {
    border: 1px solid rgba(199, 200, 202, 0.35);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 20px 40px -10px rgba(35, 77, 147, 0.08);
}

.consult-info-card {
    position: relative;
    overflow: hidden;
    padding: 34px 32px 36px;
    backdrop-filter: blur(20px);
}

.consult-card-glow {
    position: absolute;
    top: -58px;
    right: -58px;
    width: 150px;
    height: 150px;
    border-radius: 0 0 0 150px;
    background: rgba(216, 226, 255, 0.5);
    pointer-events: none;
}

.consult-info-card h2,
.consult-form-card h2 {
    margin: 0;
    color: #003578;
    font-size: 28px;
    line-height: 1.28;
    font-weight: 900;
    letter-spacing: 0;
}

.consult-info-card h2 {
    position: relative;
    border-bottom: 1px solid rgba(199, 200, 202, 0.34);
    padding-bottom: 18px;
}


.consult-info-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 24px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.consult-info-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.consult-icon,
.consult-map-pin {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #f4f9fc;
    color: #003578;
}

.consult-icon svg,
.consult-map-pin svg,
.consult-submit svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.1;
}

.consult-info-list small {
    display: block;
    margin-bottom: 2px;
    color: #737782;
    font-size: 13px;
    line-height: 1.5;
}

.consult-info-list strong {
    display: block;
    color: #1b1b1d;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 500;
}

.consult-info-list a {
    color: #003578;
}

.consult-map {
    position: relative;
    overflow: hidden;
    height: 256px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.98), rgba(255, 255, 255, 0.9));
}

.consult-map::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(11, 35, 80, 0.04), rgba(11, 35, 80, 0) 34%, rgba(11, 35, 80, 0.1));
    pointer-events: none;
}

.consult-map-label {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    padding: 4px 9px;
    background: rgba(255, 255, 255, 0.92);
    color: #434751;
    font-size: 10px;
    font-weight: 700;
}

.consult-map-frame {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(38, 169, 224, 0.16), transparent 20%),
        linear-gradient(135deg, rgba(244, 248, 253, 0.98), rgba(232, 241, 251, 0.94));
}

.consult-map-frame.is-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(35, 77, 147, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(35, 77, 147, 0.06) 1px, transparent 1px);
    background-size: 22px 22px;
}

.consult-map-frame.is-placeholder::after {
    content: "";
    position: absolute;
    inset: 22% auto auto 15%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(38, 169, 224, 0.2), transparent 68%);
    filter: blur(4px);
}

.consult-map-overlay {
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 3;
    display: grid;
    gap: 10px;
    pointer-events: none;
}

.consult-map-overlay strong {
    justify-self: start;
    max-width: min(100%, 340px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.9);
    color: #003578;
    font-size: 11px;
    line-height: 1.25;
    box-shadow: 0 8px 18px rgba(35, 77, 147, 0.16);
}

.consult-map-frame.is-ready + .consult-map-overlay strong {
    background: rgba(255, 255, 255, 0.96);
}

.consult-map-button {
    display: grid;
    place-items: center;
    min-height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    color: #003578;
    font-size: 14px;
    font-weight: 900;
    pointer-events: auto;
}

.consult-form-card {
    padding: 48px;
    background: #fff;
}

.consult-form-card > p {
    margin: 8px 0 32px;
    color: #434751;
    font-size: 16px;
}

.consult-notice {
    margin-bottom: 22px;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 700;
}

.consult-notice-success {
    background: rgba(0, 102, 138, 0.1);
    color: #00516f;
}

.consult-notice-error {
    background: rgba(186, 26, 26, 0.09);
    color: #93000a;
}

.consult-form {
    display: grid;
    gap: 24px;
}

.hebang-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.consult-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.consult-form label {
    display: grid;
    gap: 10px;
}

.consult-form label span {
    color: #434751;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 700;
}

.consult-form label em {
    color: #ba1a1a;
    font-style: normal;
}

.consult-form input,
.consult-form select,
.consult-form textarea {
    width: 100%;
    border: 0;
    border-radius: 8px;
    padding: 14px 16px;
    background: #f4f9fc;
    color: #1b1b1d;
    font: inherit;
    outline: 0;
    transition: box-shadow 0.2s ease, background 0.2s ease;
}

.consult-form input,
.consult-form select {
    min-height: 48px;
}

.consult-form textarea {
    min-height: 140px;
    resize: vertical;
}

.consult-form input:focus,
.consult-form select:focus,
.consult-form textarea:focus {
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 53, 120, 0.18);
}

.consult-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    border: 0;
    border-radius: 8px;
    padding: 15px 30px;
    background: #234d93;
    color: #fff;
    font: inherit;
    font-size: 17px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(35, 77, 147, 0.22);
}

.consult-submit svg {
    width: 18px;
    height: 18px;
}

.home-news-card time {
    display: block;
    margin: 20px 0 10px;
    color: #576174;
    font-size: 12px;
}

.home-news-card h3 {
    margin: 0 0 12px;
    color: #151c2e;
    font-size: 17px;
    line-height: 1.5;
}

.home-news-card p {
    margin: 0;
    color: #596476;
    font-size: 13px;
    line-height: 1.8;
}

.resin-hero {
    padding: 92px 0 72px;
    background:
        linear-gradient(120deg, rgba(244, 249, 252, 0.94), rgba(238, 246, 255, 0.8)),
        radial-gradient(circle at 88% 12%, rgba(196, 231, 255, 0.62), transparent 30%);
}

.resin-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
    gap: 54px;
    align-items: end;
}

.resin-kicker {
    display: inline-flex;
    margin-bottom: 18px;
    color: #00668a;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.resin-hero h1 {
    margin: 0 0 20px;
    color: #00358c;
    font-size: 54px;
    line-height: 1.1;
}

.resin-hero p {
    max-width: 760px;
    margin: 0;
    color: #3f4858;
    font-size: 17px;
    line-height: 1.85;
}

.resin-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.resin-metrics article {
    min-height: 118px;
    border: 1px solid rgba(196, 211, 229, 0.82);
    border-radius: 8px;
    padding: 22px 18px;
    background: rgba(255, 255, 255, 0.76);
}

.resin-metrics strong {
    display: block;
    color: #00358c;
    font-size: 34px;
    line-height: 1;
}

.resin-metrics span {
    display: block;
    margin-top: 14px;
    color: #566174;
    font-size: 13px;
}

.resin-browser {
    padding: 72px 0 96px;
    background: #fbf9fb;
    scroll-margin-top: 168px;
}

.resin-browser-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.resin-series-nav {
    position: sticky;
    top: 106px;
    display: grid;
    gap: 8px;
    border: 1px solid #e4eaf1;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(35, 77, 147, 0.05);
}

.resin-series-nav h2 {
    margin: 0 0 12px;
    color: #00358c;
    font-size: 20px;
    line-height: 1.25;
}

.resin-series-nav a {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-radius: 6px;
    padding: 8px 10px;
    color: #3f4858;
    font-size: 13px;
    font-weight: 800;
}

.resin-series-nav a:hover,
.resin-series-nav a.is-active {
    background: #eef5ff;
    color: #00358c;
}

.resin-series-nav em {
    color: #667085;
    font-size: 12px;
    font-style: normal;
}

.resin-results-panel {
    min-width: 0;
}

.resin-filter-tabs {
    display: grid;
    gap: 20px;
    border: 1px solid #e4eaf1;
    border-radius: 16px;
    padding: 28px 32px;
    background: #ffffff;
    margin-bottom: 20px;
}

.resin-filter-row {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.resin-filter-label {
    flex: 0 0 82px;
    margin-top: 7px;
    color: #3f4858;
    font-size: 13px;
    font-weight: 500;
}

.resin-filter-tags {
    flex: 1 1 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    min-width: 0;
}

.resin-tag {
    display: inline-flex;
    min-height: 32px;
    padding: 0 20px;
    align-items: center;
    border: 1px solid #d8e2ee;
    border-radius: 999px;
    background: #ffffff;
    color: #5c6677;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
}

.resin-tag:hover {
    border-color: #00358b;
    color: #00358b;
}

.resin-tag.is-active {
    border-color: #00358b;
    background: #00358b;
    color: #ffffff;
}

.resin-filter-panel {
    display: grid;
    gap: 26px;
    border: 1px solid #e4eaf1;
    border-radius: 8px;
    padding: 28px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(35, 77, 147, 0.06);
}

.resin-search-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 14px;
    align-items: end;
}

.resin-search-row label {
    display: grid;
    gap: 8px;
    color: #566174;
    font-size: 13px;
    font-weight: 800;
}

.resin-search-row input {
    min-height: 44px;
    border: 1px solid #d8e2ee;
    border-radius: 6px;
    padding: 0 14px;
    color: #1c2433;
}

.resin-search-row button,
.resin-search-row a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding: 0 18px;
    font-weight: 900;
    white-space: nowrap;
}

.resin-search-row button {
    border: 0;
    background: #00358c;
    color: #fff;
}

.resin-search-row a {
    border: 1px solid #d8e2ee;
    color: #00358c;
}

.resin-filter-group {
    min-width: 0;
    border: 0;
    padding: 0;
    margin: 0;
}

.resin-filter-group legend {
    margin-bottom: 12px;
    color: #00358c;
    font-size: 15px;
    font-weight: 900;
}

.resin-filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.resin-filter-options label {
    cursor: pointer;
}

.resin-filter-options input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.resin-filter-options span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    border: 1px solid #d8e2ee;
    border-radius: 999px;
    padding: 0 14px;
    color: #4b5566;
    font-size: 13px;
    font-weight: 800;
    background: #fff;
    transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.resin-filter-options label:hover span,
.resin-filter-options .is-selected span {
    border-color: #00358c;
    background: #eef5ff;
    color: #00358c;
}

.resin-results-summary {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin: 28px 0 22px;
}

.resin-results-summary strong {
    color: #00358c;
    font-size: 22px;
}

.resin-results-summary p {
    margin: 8px 0 0;
    color: #667085;
    font-size: 13px;
}

.resin-results-summary > span {
    border-radius: 999px;
    padding: 8px 14px;
    background: #eef5ff;
    color: #00358c;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.resin-category-list {
    display: grid;
    gap: 22px;
}

.resin-category-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.resin-category-card {
    display: grid;
    gap: 18px;
    border: 1px solid #e4eaf1;
    border-radius: 8px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(35, 77, 147, 0.05);
}

.resin-card-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
}

.resin-card-head span {
    color: #00668a;
    font-size: 12px;
    font-weight: 900;
}

.resin-card-head strong {
    border-radius: 999px;
    padding: 6px 10px;
    background: #eef5ff;
    color: #00358c;
    font-size: 12px;
    white-space: nowrap;
}

.resin-category-card h2 {
    margin: 0;
    color: #00358c;
    font-size: 24px;
    line-height: 1.25;
}

.resin-card-section {
    display: grid;
    gap: 9px;
}

.resin-card-section > small,
.resin-grade-preview small {
    color: #667085;
    font-size: 12px;
    font-weight: 900;
}

.resin-grade-preview p {
    margin: 8px 0 0;
    color: #3f4858;
    font-size: 13px;
    line-height: 1.7;
}

.resin-category-card > a {
    width: fit-content;
    margin-top: 4px;
    color: #00358c;
    font-size: 13px;
    font-weight: 900;
}

.resin-category-block {
    overflow: hidden;
    border: 1px solid #e4eaf1;
    border-radius: 8px;
    background: #fff;
}

.resin-category-block header {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: center;
    border-bottom: 1px solid #eef2f7;
    padding: 22px 24px;
}

.resin-category-block h2 {
    margin: 0 0 6px;
    color: #00358c;
    font-size: 24px;
    line-height: 1.25;
}

.resin-category-block p {
    margin: 0;
    color: #667085;
    font-size: 13px;
}

.resin-category-block header a {
    color: #00358c;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.resin-product-table {
    display: grid;
}

.resin-product-head,
.resin-product-row {
    display: grid;
    grid-template-columns: minmax(120px, 0.72fr) minmax(220px, 1.2fr) minmax(180px, 1fr) 76px;
    gap: 18px;
    align-items: center;
    padding: 14px 24px;
}

.resin-product-head {
    background: #f4f9fc;
    color: #566174;
    font-size: 12px;
    font-weight: 900;
}

.resin-product-row {
    border-top: 1px solid #eef2f7;
}

.resin-product-row:first-of-type {
    border-top: 0;
}

.resin-product-row strong {
    color: #151c2e;
    font-size: 16px;
}

.resin-product-row > a {
    color: #00358c;
    font-size: 13px;
    font-weight: 900;
}

.resin-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.resin-tags em,
.resin-tags small {
    border-radius: 999px;
    padding: 4px 8px;
    background: #eef5ff;
    color: #00358c;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

.resin-tags small {
    background: #f4f6f8;
    color: #667085;
}

.resin-empty {
    border: 1px solid #e4eaf1;
    border-radius: 8px;
    padding: 36px;
    background: #fff;
}

.resin-empty h2 {
    margin: 0 0 10px;
    color: #00358c;
}

.resin-empty p {
    margin: 0;
    color: #667085;
}

.resin-hero {
    position: relative;
    display: flex;
    min-height: 344px;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
    padding: 62px 0;
    background:
        linear-gradient(90deg, rgba(0, 35, 86, 0.94), rgba(0, 53, 120, 0.76)),
        url("assets/resin-plant-hero.png") center 45% / cover no-repeat;
    color: #fff;
}

.resin-hero::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(0, 24, 86, 0.14), rgba(0, 24, 86, 0.18));
    pointer-events: none;
}

.resin-hero-grid {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.72fr);
    align-items: center;
}

.resin-hero-copy {
    display: flex;
    min-height: 220px;
    flex-direction: column;
    justify-content: center;
}

.resin-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-weight: 800;
}

.resin-breadcrumb a {
    color: rgba(255, 255, 255, 0.76);
}

.resin-breadcrumb strong {
    color: #fff;
}

.resin-kicker {
    color: rgba(255, 255, 255, 0.72);
}

.resin-hero h1 {
    color: #fff;
    font-size: 56px;
}

.resin-hero p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
    line-height: 1.8;
}

.resin-metrics {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}

.resin-metrics article {
    min-height: 84px;
    border-color: rgba(255, 255, 255, 0.12);
    padding: 18px 14px;
    background: rgba(255, 255, 255, 0.1);
}

.resin-metrics strong,
.resin-metrics span {
    color: #fff;
}

.resin-browser {
    padding: 96px 0;
    background: #fbf9fb;
}

.resin-browser-layout {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 44px;
}

.resin-series-nav {
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
    top: 118px;
}

.resin-series-nav h2 {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
    font-size: 15px;
}

.resin-series-nav h2::before {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    content: "";
    background: #00358c;
}

.resin-series-nav a {
    min-height: 40px;
    border-radius: 6px;
    padding: 10px 12px;
}

.resin-series-nav a.is-active {
    background: #00358c;
    color: #fff;
}

.resin-series-nav a.is-active em {
    color: #fff;
    opacity: 0.8;
}

.resin-consult-box {
    margin-top: 30px;
    border: 1px solid rgba(0, 53, 140, 0.12);
    border-radius: 8px;
    padding: 20px;
    background: #eef6fb;
}

.resin-consult-box h3 {
    margin: 0 0 10px;
    color: #00358c;
    font-size: 15px;
}

.resin-consult-box p {
    margin: 0 0 16px;
    color: #4b5566;
    font-size: 13px;
    line-height: 1.7;
}

.resin-consult-box a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    border: 1px solid #00358c;
    border-radius: 6px;
    padding: 0 12px;
    color: #00358c;
    font-size: 12px;
    font-weight: 900;
}

.resin-filter-panel {
    border-radius: 20px;
    padding: 28px 32px;
    box-shadow: none;
}

.resin-search-row {
    grid-template-columns: minmax(0, 1fr) auto auto;
}

.resin-filter-group {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.resin-filter-group legend {
    flex: 0 0 82px;
    margin: 7px 0 0;
    color: #3f4858;
    font-size: 13px;
}

.resin-filter-group .resin-filter-options {
    flex: 1 1 auto;
    min-width: 0;
}

.resin-filter-options span {
    min-height: 30px;
    padding: 0 16px;
    font-size: 12px;
}

.resin-results-summary {
    margin: 30px 0 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid #dfe6ef;
}

.resin-results-summary strong {
    font-size: 26px;
}

.resin-series-sections {
    display: grid;
    gap: 46px;
}

.resin-series-section {
    display: grid;
    gap: 18px;
}

.resin-series-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    border-left: 4px solid #00358c;
    padding-left: 16px;
}

.resin-series-head h2 {
    margin: 0;
    color: #00358c;
    font-size: 28px;
    line-height: 1.25;
}

.resin-series-head p {
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.7;
}

.resin-series-head > span {
    border-radius: 999px;
    padding: 6px 12px;
    background: #eef5ff;
    color: #00358c;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.resin-category-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.resin-category-card {
    display: grid;
    grid-template-columns: 1fr;
    height: 252px;
    gap: 0;
    border: 1px solid rgba(0, 53, 140, 0.08);
    border-radius: 14px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: none;
}

.resin-card-visual {
    display: grid;
    min-height: 190px;
    place-items: center;
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(238, 246, 251, 0.94), rgba(228, 235, 244, 0.9)),
        radial-gradient(circle at 80% 20%, rgba(0, 102, 138, 0.16), transparent 28%);
    color: rgba(0, 53, 140, 0.28);
    font-size: 42px;
    font-weight: 900;
}

.resin-card-body {
    display: grid;
    grid-template-rows: 44px minmax(0, 1fr) 38px;
    gap: 14px;
    min-width: 0;
}

.resin-category-card h3 {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    color: #00358c;
    font-size: 17px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.resin-category-card p {
    margin: 0;
    color: #3f4858;
    font-size: 14px;
    line-height: 1.7;
}

.resin-card-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 0;
    min-width: 0;
}

.resin-card-head strong {
    flex: 0 0 auto;
}

.resin-card-section {
    margin-top: 14px;
}

.resin-grade-preview {
    min-width: 0;
}

.resin-card-tags span {
    border-radius: 6px;
    padding: 4px 8px;
    background: #f0f1f4;
    color: #526071;
    font-size: 12px;
    font-weight: 800;
}

.resin-grade-line {
    min-width: 0;
    overflow: hidden;
}

.resin-grade-line small {
    display: block;
    margin-bottom: 6px;
    color: #667085;
    font-size: 12px;
    font-weight: 900;
}

.resin-grade-line p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #333b4b;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.resin-card-foot {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: end;
    margin-top: 16px;
}

.resin-card-actions {
    display: grid;
    margin-top: 0;
}

.resin-card-actions a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 900;
}

.resin-card-actions a:first-child {
    background: #f0f3f7;
    color: #00358c;
}

.resin-cta {
    border-top: 1px solid #e2eaf3;
    padding: 64px 0 70px;
    background: #eef6fb;
    color: #00358c;
    text-align: center;
}

.resin-cta h2 {
    margin: 0 0 14px;
    color: #00358c;
    font-size: 28px;
    line-height: 1.25;
}

.resin-cta p {
    max-width: 720px;
    margin: 0 auto 26px;
    color: #4d5b70;
    line-height: 1.8;
}

.resin-cta div div {
    display: none;
}

.resin-cta .container > div {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.resin-cta a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    border-radius: 7px;
    padding: 0 22px;
    font-size: 14px;
    font-weight: 900;
}

.resin-cta a:first-child {
    background: #00358c;
    color: #fff;
}

.resin-cta a:last-child {
    border: 1px solid #c9d8ea;
    background: #fff;
    color: #00358c;
}

.resin-detail-hero {
    position: relative;
    overflow: hidden;
    padding: 84px 0 80px;
    background: #241f55;
    color: #fff;
    text-align: center;
}

.resin-detail-hero::after {
    position: absolute;
    top: -360px;
    right: -260px;
    width: 760px;
    height: 760px;
    border-radius: 999px;
    content: "";
    background: rgba(255, 255, 255, 0.06);
    filter: blur(90px);
}

.resin-detail-hero .container {
    position: relative;
    z-index: 1;
}

.detail-back-link {
    position: absolute;
    top: 28px;
    left: max(20px, calc((100vw - 1180px) / 2));
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    backdrop-filter: blur(10px);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.detail-back-link::before {
    content: "‹";
    font-size: 22px;
    line-height: 0.7;
}

.detail-back-link:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    transform: translateX(-2px);
}

.resin-detail-hero h1 {
    max-width: 900px;
    margin: 0 auto 22px;
    font-size: clamp(40px, 4.6vw, 56px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: 0;
}

.resin-detail-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.75;
}

.resin-detail-main {
    padding: 78px 0 118px;
    background: #fff;
}

.resin-detail-stack {
    display: grid;
    gap: 116px;
}

.resin-type-section {
    display: grid;
    grid-template-columns: minmax(250px, 0.92fr) minmax(0, 1.78fr);
    gap: 44px;
    align-items: start;
}

.resin-type-copy {
    position: sticky;
    top: 112px;
}

.resin-type-copy h2 {
    margin: 0 0 18px;
    color: #003578;
    font-size: clamp(32px, 3.1vw, 42px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: 0;
}

.resin-type-copy p {
    margin: 0 0 24px;
    color: #434751;
    font-size: 15px;
    line-height: 1.82;
}

.resin-type-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.resin-type-chips span {
    border-radius: 999px;
    padding: 7px 12px;
    background: #efedef;
    color: #5e6470;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
}

.resin-type-apps h3 {
    margin: 0 0 10px;
    color: #737782;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.resin-type-apps div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
}

.resin-type-apps span {
    display: inline-flex;
    align-items: center;
    color: #1b1b1d;
    font-size: 14px;
    font-weight: 700;
}

.resin-type-apps span::before {
    display: inline-grid;
    width: 16px;
    height: 16px;
    place-items: center;
    margin-right: 5px;
    border: 1.5px solid #003578;
    border-radius: 999px;
    content: "";
    box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 8px #003578;
}

.resin-type-data {
    display: grid;
    gap: 28px;
    min-width: 0;
}

.resin-structure-card {
    display: flex;
    min-height: 196px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(199, 200, 202, 0.52);
    border-radius: 12px;
    padding: 28px;
    margin: 0;
    background: #fff;
    box-shadow: 0 4px 40px rgba(35, 77, 147, 0.02);
}

.resin-structure-card img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 154px;
    object-fit: contain;
}

.resin-data-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(0, 53, 120, 0.22);
    border-radius: 8px;
    background: #fff;
}

.resin-data-table {
    width: 100%;
    min-width: var(--resin-table-min-width, 100%);
    border-collapse: collapse;
    table-layout: fixed;
    color: #434751;
    font-size: 13px;
    line-height: 1.45;
}

.resin-data-table th {
    padding: 13px 12px;
    background: #003578;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-align: left;
    line-height: 1.35;
    white-space: nowrap;
    word-break: keep-all;
}

.resin-data-table td {
    border-bottom: 1px solid rgba(199, 200, 202, 0.28);
    padding: 13px 12px;
    vertical-align: top;
    word-break: keep-all;
    overflow-wrap: normal;
}

.resin-data-table tr:last-child td {
    border-bottom: 0;
}

.resin-data-table tr:hover td {
    background: #f4f9fc;
}

.resin-data-table .is-grade {
    color: #003578;
    font-weight: 900;
    white-space: nowrap;
}

.resin-detail-divider {
    width: min(920px, 72%);
    height: 1px;
    border: 0;
    margin: 0 auto -10px;
    background: rgba(199, 200, 202, 0.28);
}

.category-detail-hero {
    position: relative;
    display: grid;
    min-height: 352px;
    place-items: center;
    overflow: hidden;
    padding: 56px 0;
    background:
        radial-gradient(circle at 1px 1px, rgba(114, 198, 239, 0.26) 1px, transparent 1px),
        linear-gradient(115deg, #241f55 0%, #183d7a 100%);
    background-size: 24px 24px, auto;
    color: #fff;
    text-align: center;
}

.category-detail-hero h1 {
    max-width: 960px;
    margin: 0 auto 24px;
    color: #fff;
    font-size: clamp(44px, 5.5vw, 66px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 0;
}

.category-detail-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.84);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.category-detail-hero p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.66);
    font-size: 17px;
    line-height: 1.7;
}

.category-detail-feature,
.category-spec-section {
    background: #fbf9fb;
}

.category-detail-feature {
    padding: 118px 0 110px;
}

.category-feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.92fr);
    gap: 80px;
    align-items: center;
}

.category-feature-copy h2,
.category-spec-head h2 {
    margin: 0 0 30px;
    color: #003578;
    font-size: clamp(36px, 3.6vw, 48px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: 0;
}

.category-feature-copy p {
    max-width: 660px;
    margin: 0 0 34px;
    color: #1b1b1d;
    font-size: 17px;
    line-height: 1.9;
}

.category-detail-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 28px;
}

.category-detail-facts div {
    border: 1px solid rgba(35, 77, 147, 0.1);
    border-radius: 10px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.7);
}

.category-detail-facts dt {
    margin: 0 0 8px;
    color: #6c7280;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
}

.category-detail-facts dd {
    margin: 0;
    color: #1b1b1d;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.5;
}

.category-detail-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 46px;
}

.category-detail-chips span {
    border-radius: 999px;
    padding: 9px 18px;
    background: #efedef;
    color: #5a606b;
    font-size: 14px;
    font-weight: 800;
}

.category-detail-apps h3 {
    margin: 0 0 18px;
    color: #737782;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 900;
}

.category-detail-apps div {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
}

.category-detail-apps span {
    display: inline-flex;
    align-items: center;
    color: #1b1b1d;
    font-size: 16px;
    font-weight: 900;
}

.category-detail-apps span::before {
    display: inline-grid;
    width: 21px;
    height: 21px;
    place-items: center;
    margin-right: 9px;
    border-radius: 999px;
    background: #234d93;
    color: #fff;
    content: "✓";
    font-size: 13px;
    line-height: 1;
}

.category-detail-grades {
    margin-top: 42px;
}

.category-detail-grades h3 {
    margin: 0 0 16px;
    color: #737782;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 900;
}

.category-detail-grades div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-detail-grades span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    border: 1px solid rgba(0, 53, 120, 0.16);
    border-radius: 999px;
    padding: 0 14px;
    background: #fff;
    color: #003578;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.category-structure-panel {
    border-radius: 16px;
    padding: 34px 34px 42px;
    margin: 0;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 30px 80px rgba(35, 77, 147, 0.04);
}

.category-structure-panel figcaption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    border-bottom: 1px solid rgba(199, 200, 202, 0.32);
    padding-bottom: 24px;
    margin-bottom: 34px;
}

.category-structure-panel strong {
    color: #1b1b1d;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 900;
}

.category-structure-panel span {
    color: #8a8e98;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.category-structure-panel img {
    display: block;
    width: 100%;
    max-height: 220px;
    object-fit: contain;
}

.category-structure-empty {
    display: grid;
    min-height: 160px;
    place-items: center;
    border: 1px dashed #c3c6d2;
    border-radius: 12px;
    padding: 28px;
    background:
        radial-gradient(circle at 50% 0, rgba(35, 77, 147, 0.08), transparent 56%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 249, 252, 0.95));
    color: #737782;
    text-align: center;
}

.category-structure-empty strong {
    display: block;
    margin-bottom: 10px;
    color: #003578;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 900;
}

.category-structure-empty span {
    display: block;
    max-width: 320px;
    color: #737782;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.7;
}

.category-spec-section {
    padding: 36px 0 128px;
}

.category-spec-head {
    margin-bottom: 38px;
}

.category-spec-head h2 {
    margin-bottom: 8px;
}

.category-spec-head p {
    margin: 0;
    color: #737782;
    font-size: 17px;
}

.category-spec-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(35, 77, 147, 0.22);
    border-radius: 12px;
    background: #fff;
}

.category-spec-table {
    width: 100%;
    min-width: var(--resin-table-min-width, 860px);
    border-collapse: collapse;
    table-layout: fixed;
    color: #626a76;
    font-size: 15px;
    line-height: 1.55;
}

.category-spec-table th {
    padding: 18px 24px;
    background: #234d93;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    text-align: left;
    white-space: nowrap;
    word-break: keep-all;
}

.category-spec-table td {
    border-bottom: 1px solid rgba(199, 200, 202, 0.4);
    padding: 18px 24px;
    vertical-align: middle;
    word-break: keep-all;
    overflow-wrap: normal;
}

.resin-table-col-grade {
    width: 160px;
}

.resin-table-col-type {
    width: 160px;
}

.resin-table-col-appearance {
    width: 190px;
}

.resin-table-col-note {
    width: 280px;
}

.resin-table-col-reference {
    width: 300px;
}

.resin-table-col-viscosity {
    width: 210px;
}

.resin-table-col-long {
    width: 190px;
}

.resin-table-col-medium {
    width: 160px;
}

.resin-table-col-short {
    width: 130px;
}

.category-spec-table tr:last-child td {
    border-bottom: 0;
}

.category-spec-table .is-grade {
    color: #234d93;
    font-weight: 900;
    white-space: nowrap;
}

.category-spec-table .is-reference,
.resin-data-table .is-reference {
    color: #506177;
    font-size: 14px;
    line-height: 1.85;
    white-space: pre-line;
}

.resin-data-table .is-reference {
    font-size: 12px;
    line-height: 1.7;
}

.facilities-page {
    background: #f7f5f7;
}

.facilities-hero {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: center;
    background: #eaf4fc;
}

.facilities-hero::after {
    position: absolute;
    inset: 0 0 0 auto;
    width: 50%;
    content: "";
    background: #d4e5f5;
    clip-path: polygon(54% 0, 100% 0, 100% 100%, 0 100%);
}

.facilities-hero-content {
    position: relative;
    z-index: 1;
    padding: 70px 0 82px;
}

.facilities-hero-content span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 12px;
    border-radius: 999px;
    background: #d4e6ff;
    color: #003578;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.facilities-hero h1 {
    max-width: 680px;
    margin: 18px 0 18px;
    color: #003578;
    font-size: clamp(42px, 5.4vw, 64px);
    line-height: 1.06;
    font-weight: 900;
    letter-spacing: 0;
}

.facilities-hero p {
    max-width: 760px;
    margin: 0;
    color: #334155;
    font-size: 17px;
    line-height: 1.8;
}

.facilities-grid-section {
    padding: 112px 0 116px;
}

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

.facility-card {
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(35, 77, 147, 0.08);
}

.facility-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1.5 / 1;
    object-fit: cover;
}

.facility-card-body {
    padding: 28px 28px 32px;
}

.facility-card-body > span {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 10px;
    border-radius: 999px;
    background: #edf6fb;
    color: #397aa6;
    font-size: 11px;
    font-weight: 900;
}

.facility-card h2 {
    margin: 18px 0 22px;
    color: #083f88;
    font-size: 26px;
    line-height: 1.24;
    font-weight: 900;
    letter-spacing: 0;
}

.facility-card dl {
    display: grid;
    gap: 16px;
    margin: 0;
}

.facility-card dl div {
    position: relative;
    padding-left: 28px;
}

.facility-info-icon {
    position: absolute;
    top: 2px;
    left: 0;
    width: 17px;
    height: 17px;
    color: #2e8ec1;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.facility-card dt {
    display: inline;
    margin: 0;
    color: #25304b;
    font-size: 14px;
    font-weight: 900;
}

.facility-card dt::after {
    content: ": ";
}

.facility-card dd {
    display: inline;
    margin: 0;
    color: #5f6878;
    font-size: 14px;
    line-height: 1.75;
}

.facilities-chain {
    padding: 112px 0 124px;
    background: #eef7fc;
    text-align: center;
}

.facilities-chain h2 {
    margin: 0 0 28px;
    color: #003578;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: 0;
}

.facilities-chain p {
    max-width: 720px;
    margin: 0 auto 46px;
    color: #3d4a5c;
    font-size: 16px;
    line-height: 1.9;
}

.facilities-chain-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.facilities-chain-flow span {
    display: inline-flex;
    min-width: 92px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid #d8e3ee;
    border-radius: 6px;
    background: #fff;
    color: #0c4a91;
    font-size: 14px;
    font-weight: 900;
}

.facilities-chain-flow i {
    color: #2d77a7;
    font-style: normal;
    font-weight: 900;
}

.delivery-page {
    overflow: hidden;
    background: #fbf9fb;
    color: #1b1b1d;
}

.delivery-hero {
    position: relative;
    padding: 110px 0 118px;
    background: linear-gradient(180deg, #f4f9fc 0%, #fbf9fb 100%);
    text-align: center;
}

.delivery-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background-image: radial-gradient(rgba(35, 77, 147, 0.28) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.42;
}

.delivery-hero::after,
.delivery-production::before {
    position: absolute;
    left: 0;
    width: 6px;
    content: "";
    background: #003578;
}

.delivery-hero::after {
    top: 0;
    height: 100%;
}

.delivery-hero .container {
    position: relative;
    z-index: 1;
}

.delivery-hero h1,
.delivery-section-copy h2,
.delivery-quality-card h2,
.delivery-section-head h2,
.delivery-commitments h2 {
    margin: 0;
    color: #241f55;
    font-weight: 900;
    letter-spacing: 0;
}

.delivery-hero h1 {
    margin-bottom: 20px;
    font-size: clamp(44px, 5.2vw, 64px);
    line-height: 1.12;
}

.delivery-hero p {
    margin: 0;
    color: #737782;
    font-size: 16px;
    line-height: 1.8;
}

.delivery-pillars {
    padding: 94px 0 96px;
    background: #fbf9fb;
}

.delivery-pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.delivery-pillar-card {
    min-height: 210px;
    border: 1px solid rgba(195, 198, 210, 0.22);
    border-radius: 12px;
    padding: 34px 30px 30px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 40px rgba(35, 77, 147, 0.04);
}

.delivery-icon-badge {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    margin-bottom: 28px;
    border-radius: 999px;
    background: #f4f9fc;
}

.delivery-icon,
.delivery-check-icon,
.delivery-promise-icon {
    width: 18px;
    height: 18px;
    color: #003578;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.delivery-pillar-card h2 {
    margin: 0 0 12px;
    color: #241f55;
    font-size: 24px;
    line-height: 1.28;
    font-weight: 900;
    letter-spacing: 0;
}

.delivery-pillar-card p {
    margin: 0;
    color: #434751;
    font-size: 15px;
    line-height: 1.7;
}

.delivery-production {
    position: relative;
    padding: 92px 0 94px;
    background: #fff;
    border-top: 1px solid rgba(195, 198, 210, 0.2);
}

.delivery-production::before {
    top: 0;
    height: 88px;
}

.delivery-production-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
    gap: 74px;
    align-items: center;
}

.delivery-section-copy h2,
.delivery-quality-card h2,
.delivery-section-head h2,
.delivery-commitments h2 {
    font-size: clamp(32px, 3.4vw, 42px);
    line-height: 1.18;
}

.delivery-section-copy p {
    max-width: 610px;
    margin: 22px 0 26px;
    color: #434751;
    font-size: 17px;
    line-height: 1.9;
}

.delivery-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.delivery-chips span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0 16px;
    border: 1px solid rgba(195, 198, 210, 0.34);
    border-radius: 999px;
    background: #f4f9fc;
    color: #003578;
    font-size: 13px;
    font-weight: 900;
}

.delivery-production-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.delivery-production-images img {
    display: block;
    width: 100%;
    height: 264px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 12px 34px rgba(35, 77, 147, 0.1);
}

.delivery-production-images img:nth-child(2) {
    margin-top: 34px;
}

.delivery-quality {
    padding: 94px 0;
    background: #f4f9fc;
}

.delivery-quality-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    overflow: hidden;
    border: 1px solid rgba(195, 198, 210, 0.24);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 40px rgba(35, 77, 147, 0.05);
}

.delivery-quality-card > img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.delivery-quality-card > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 46px 56px;
}

.delivery-quality-card ul {
    display: grid;
    gap: 18px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.delivery-quality-card li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #434751;
    font-size: 16px;
}

.delivery-logistics {
    padding: 96px 0 100px;
    background: #fff;
    border-top: 1px solid rgba(195, 198, 210, 0.2);
}

.delivery-section-head {
    max-width: 760px;
    margin: 0 auto 58px;
    text-align: center;
}

.delivery-section-head h2 {
    margin-bottom: 18px;
}

.delivery-section-head p {
    margin: 0;
    color: #434751;
    font-size: 16px;
    line-height: 1.8;
}

.delivery-logistics-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.delivery-logistics-grid article {
    position: relative;
    overflow: hidden;
    min-height: 292px;
    border-radius: 12px;
    background: #111;
}

.delivery-logistics-grid img {
    display: block;
    width: 100%;
    height: 292px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.delivery-logistics-grid article:hover img {
    transform: scale(1.04);
}

.delivery-logistics-grid article::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(36, 31, 85, 0.08) 10%, rgba(36, 31, 85, 0.78) 100%);
}

.delivery-logistics-grid h3 {
    position: absolute;
    right: 28px;
    bottom: 26px;
    left: 28px;
    z-index: 1;
    margin: 0;
    color: #fff;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: 0;
}

.delivery-commitments {
    padding: 96px 0 100px;
    background: #fbf9fb;
    border-top: 1px solid rgba(195, 198, 210, 0.2);
}

.delivery-commitments h2 {
    margin-bottom: 50px;
    text-align: center;
}

.delivery-commitment-grid {
    display: grid;
    max-width: 900px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 64px;
    margin: 0 auto;
}

.delivery-commitment-grid article {
    display: flex;
    min-height: 72px;
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(195, 198, 210, 0.18);
    border-radius: 8px;
    padding: 18px 28px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(35, 77, 147, 0.035);
}

.delivery-commitment-grid p {
    margin: 0;
    color: #1b1b1d;
    font-size: 16px;
    line-height: 1.7;
}

.rd-page {
    overflow: hidden;
    background: #fbf9fb;
    color: #1b1b1d;
}

.rd-hero {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    background-image: var(--rd-hero-image);
    background-position: center;
    background-size: cover;
}

.rd-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(251, 249, 251, 0.94) 0%, rgba(251, 249, 251, 0.78) 43%, rgba(251, 249, 251, 0.24) 100%);
}

.rd-hero .container {
    position: relative;
    z-index: 1;
}

.rd-hero-copy {
    max-width: 670px;
}

.rd-hero h1,
.rd-bases-copy h2,
.rd-section-head h2,
.rd-platform-head h2,
.rd-capability h2 {
    margin: 0;
    color: #003578;
    font-weight: 900;
    letter-spacing: 0;
}

.rd-hero h1 {
    margin-bottom: 22px;
    font-size: clamp(42px, 5.4vw, 60px);
    line-height: 1.08;
}

.rd-hero p {
    max-width: 620px;
    margin: 0 0 26px;
    color: #303846;
    font-size: 16px;
    line-height: 1.9;
}

.rd-hero-tags,
.rd-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.rd-hero-tags span,
.rd-chip-row span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(195, 198, 210, 0.34);
    border-radius: 999px;
    padding: 0 15px;
    background: rgba(255, 255, 255, 0.82);
    color: #003578;
    font-size: 13px;
    font-weight: 900;
}

.rd-icon,
.rd-base-icon,
.rd-check-icon {
    width: 17px;
    height: 17px;
    color: #003578;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.rd-bases {
    padding: 104px 0 106px;
    background: #fbf9fb;
}

.rd-bases-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 78px;
    align-items: center;
}

.rd-bases-copy h2,
.rd-section-head h2,
.rd-platform-head h2,
.rd-capability h2 {
    font-size: clamp(34px, 4vw, 46px);
    line-height: 1.18;
}

.rd-bases-copy > p,
.rd-section-head p,
.rd-platform-head p {
    margin: 24px 0 34px;
    color: #434751;
    font-size: 16px;
    line-height: 1.9;
}

.rd-base-list {
    display: grid;
    gap: 18px;
}

.rd-base-list article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.rd-base-icon-wrap,
.rd-stat-icon,
.rd-meta-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 8px;
    background: #003578;
    color: #fff;
}

.rd-base-icon-wrap .rd-base-icon,
.rd-stat-icon .rd-icon,
.rd-meta-icon .rd-icon {
    color: currentColor;
}

.rd-base-list h3 {
    margin: 0 0 5px;
    color: #1b1b1d;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 900;
}

.rd-base-list p {
    margin: 0;
    color: #5d6472;
    font-size: 14px;
    line-height: 1.7;
}

.rd-bases-image img {
    display: block;
    width: 100%;
    aspect-ratio: 1.42 / 1;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 16px 42px rgba(35, 77, 147, 0.12);
}

.rd-team {
    padding: 92px 0 96px;
    background: #f4f9fc;
    border-top: 1px solid rgba(195, 198, 210, 0.18);
}

.rd-section-head {
    max-width: 760px;
    margin: 0 auto 54px;
    text-align: center;
}

.rd-section-head p {
    margin: 18px 0 0;
}

.rd-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.rd-stat-grid article {
    display: grid;
    min-height: 150px;
    place-items: center;
    border: 1px solid rgba(195, 198, 210, 0.22);
    border-radius: 8px;
    padding: 30px 24px;
    background: rgba(255, 255, 255, 0.82);
    text-align: center;
    box-shadow: 0 10px 36px rgba(35, 77, 147, 0.04);
}

.rd-stat-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #e4eef5;
    color: #003578;
}

.rd-stat-grid strong {
    display: block;
    margin-bottom: 8px;
    color: #003578;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
}

.rd-stat-grid p {
    margin: 0;
    color: #434751;
    font-size: 14px;
    font-weight: 800;
}

.rd-platform {
    padding: 98px 0 104px;
    background: #fbf9fb;
}

.rd-platform-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    align-items: end;
    margin-bottom: 48px;
}

.rd-platform-head p {
    max-width: 680px;
    margin-bottom: 0;
}

.rd-investment {
    color: #003578;
    text-align: right;
}

.rd-investment strong {
    display: block;
    font-size: clamp(42px, 5vw, 58px);
    line-height: 0.95;
    font-weight: 900;
}

.rd-investment strong span {
    font-size: 0.36em;
}

.rd-investment p {
    margin: 8px 0 0;
    color: #737782;
    font-size: 13px;
    font-weight: 900;
}

.rd-instrument-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.rd-instrument-grid article {
    overflow: hidden;
    border: 1px solid rgba(195, 198, 210, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 34px rgba(35, 77, 147, 0.05);
}

.rd-instrument-grid img {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.rd-instrument-grid div {
    padding: 22px 24px 26px;
}

.rd-instrument-grid h3 {
    margin: 0 0 8px;
    color: #1b1b1d;
    font-size: 18px;
    line-height: 1.38;
    font-weight: 900;
}

.rd-instrument-grid p {
    margin: 0 0 14px;
    color: #434751;
    font-size: 14px;
    line-height: 1.7;
}

.rd-instrument-grid small {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #0078b8;
    font-size: 12px;
    font-weight: 900;
}

.rd-capability {
    padding: 94px 0 104px;
    background: #fbf9fb;
    border-top: 1px solid rgba(195, 198, 210, 0.18);
}

.rd-capability h2 {
    margin-bottom: 42px;
}

.rd-table-wrap {
    overflow-x: auto;
    border: 1px solid #d4dee9;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
}

.rd-capability-table {
    width: 100%;
    min-width: 860px;
    border-collapse: collapse;
    color: #434751;
    font-size: 15px;
    line-height: 1.7;
}

.rd-capability-table th,
.rd-capability-table td {
    padding: 19px 24px;
    border-bottom: 1px solid #dfe5ec;
    text-align: left;
    vertical-align: middle;
}

.rd-capability-table th {
    background: #f4f9fc;
    color: #1b1b1d;
    font-size: 14px;
    font-weight: 900;
}

.rd-capability-table th:nth-child(1),
.rd-capability-table td:nth-child(1) {
    width: 22%;
    color: #003578;
    font-weight: 900;
}

.rd-capability-table th:nth-child(2),
.rd-capability-table td:nth-child(2) {
    width: 38%;
}

.rd-capability-table tr:last-child td {
    border-bottom: 0;
}

.quality-page {
    overflow: hidden;
    background: #fbf9fb;
    color: #1b1b1d;
}

.quality-hero {
    position: relative;
    padding: 102px 0 104px;
    background: linear-gradient(180deg, #f4f9fc 0%, #e8f2fa 100%);
    text-align: center;
}

.quality-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background-image: radial-gradient(rgba(35, 77, 147, 0.26) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.36;
}

.quality-hero .container {
    position: relative;
    z-index: 1;
}

.quality-hero h1,
.quality-title-row h2,
.quality-section-head h2,
.quality-systems h2,
.quality-compliance h2 {
    margin: 0;
    color: #241f55;
    font-weight: 900;
    letter-spacing: 0;
}

.quality-hero h1 {
    margin-bottom: 20px;
    font-size: clamp(42px, 5.3vw, 62px);
    line-height: 1.1;
}

.quality-hero p {
    max-width: 690px;
    margin: 0 auto;
    color: #434751;
    font-size: 16px;
    line-height: 1.9;
}

.quality-cnas {
    padding: 116px 0 118px;
    background: #fff;
}

.quality-cnas-grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1fr);
    gap: 72px;
    align-items: center;
}

.quality-certificate-frame {
    overflow: hidden;
    border: 1px solid rgba(195, 198, 210, 0.32);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 52px rgba(35, 77, 147, 0.12);
}

.quality-certificate-frame img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.quality-cnas-image {
    max-width: 590px;
}

.quality-cnas-image img {
    aspect-ratio: 0.707 / 1;
    object-fit: contain;
    object-position: center;
}

.quality-title-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.quality-title-row h2,
.quality-section-head h2,
.quality-systems h2,
.quality-compliance h2 {
    font-size: clamp(32px, 3.5vw, 42px);
    line-height: 1.18;
}

.quality-cnas-copy > p,
.quality-systems > p {
    margin: 0 0 34px;
    color: #434751;
    font-size: 16px;
    line-height: 1.9;
}

.quality-icon {
    width: 20px;
    height: 20px;
    color: #003578;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.quality-title-row > .quality-icon {
    width: 30px;
    height: 30px;
}

.quality-capability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.quality-capability-grid article,
.quality-system-grid article,
.quality-reach-card,
.quality-ecovadis-card {
    border: 1px solid rgba(195, 198, 210, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 12px 38px rgba(35, 77, 147, 0.05);
}

.quality-capability-grid article {
    min-height: 142px;
    padding: 28px 24px;
}

.quality-capability-grid h3 {
    margin: 18px 0 8px;
    color: #241f55;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.35;
}

.quality-capability-grid p {
    margin: 0;
    color: #5d6472;
    font-size: 13px;
    line-height: 1.65;
}

.quality-flow {
    padding: 98px 0 104px;
    background: #f4f9fc;
}

.quality-section-head {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.quality-section-head p {
    margin: 16px 0 0;
    color: #434751;
    font-size: 15px;
    line-height: 1.8;
}

.quality-step-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.quality-step-grid article {
    min-height: 214px;
    border: 1px solid rgba(195, 198, 210, 0.32);
    border-radius: 8px;
    padding: 24px 22px 26px;
    background: #fff;
    color: #1b1b1d;
    box-shadow: 0 10px 34px rgba(35, 77, 147, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.quality-step-grid article:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(35, 77, 147, 0.1);
}

.quality-step-grid article.is-accent {
    border-color: rgba(0, 53, 120, 0.26);
    background: #234d93;
    color: #fff;
}

.quality-step-grid strong {
    display: block;
    margin-bottom: 26px;
    color: #003578;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
}

.quality-step-grid .is-accent strong {
    color: rgba(255, 255, 255, 0.58);
}

.quality-step-grid h3 {
    margin: 0 0 16px;
    color: #241f55;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 900;
}

.quality-step-grid .is-accent h3 {
    color: #fff;
}

.quality-step-grid ul {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.quality-step-grid li {
    position: relative;
    padding-left: 13px;
    color: #5d6472;
    font-size: 13px;
    line-height: 1.55;
}

.quality-step-grid li::before {
    position: absolute;
    top: 0.68em;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: currentColor;
    content: "";
}

.quality-step-grid .is-accent li {
    color: rgba(255, 255, 255, 0.9);
}

.quality-certifications {
    padding: 110px 0 118px;
    background: #fff;
}

.quality-cert-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 76px;
    align-items: start;
}

.quality-systems h2,
.quality-compliance h2 {
    margin-bottom: 24px;
}

.quality-system-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 34px;
}

.quality-system-grid article {
    display: flex;
    min-height: 56px;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
}

.quality-system-grid span {
    color: #241f55;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 900;
}

.quality-cqm-image {
    max-width: 390px;
    margin: 0 auto;
    border-color: rgba(245, 182, 45, 0.58);
    box-shadow: 0 18px 42px rgba(245, 182, 45, 0.16);
}

.quality-cqm-image img {
    aspect-ratio: 0.66 / 1;
    object-fit: contain;
    object-position: center;
}

.quality-compliance {
    display: grid;
    gap: 44px;
}

.quality-reach-card {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    padding: 28px;
}

.quality-reach-card img {
    display: block;
    width: 100%;
    aspect-ratio: 0.74 / 1;
    border: 1px solid rgba(195, 198, 210, 0.34);
    border-radius: 6px;
    object-fit: contain;
    object-position: center;
}

.quality-reach-card h3,
.quality-ecovadis-card h3 {
    margin: 0 0 12px;
    color: #234d93;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: 0;
}

.quality-reach-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quality-reach-card p,
.quality-ecovadis-card p {
    margin: 0;
    color: #434751;
    font-size: 15px;
    line-height: 1.8;
}

.quality-ecovadis-card {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 34px 36px;
}

.quality-ecovadis-card > span {
    display: grid;
    width: 78px;
    height: 78px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 999px;
    background: #eef8f1;
    color: #0a9f47;
}

.quality-ecovadis-card .quality-icon {
    width: 34px;
    height: 34px;
    color: currentColor;
}

.careers-page {
    overflow: hidden;
    background: #fbf9fb;
    color: #1b1b1d;
}

.careers-hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-image: var(--careers-hero-image);
    background-position: center;
    background-size: cover;
    color: #fff;
}

.careers-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(36, 31, 85, 0.82) 0%, rgba(36, 31, 85, 0.58) 40%, rgba(36, 31, 85, 0.18) 100%);
}

.careers-hero::after {
    position: absolute;
    inset: 0;
    content: "";
    background: rgba(17, 28, 58, 0.16);
    backdrop-filter: blur(1.6px);
}

.careers-hero-content {
    position: relative;
    z-index: 1;
}

.careers-hero h1 {
    max-width: none;
    width: fit-content;
    margin: 0 0 34px;
    color: #fff;
    font-size: clamp(42px, 6vw, 92px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 0;
    white-space: nowrap;
}

.careers-hero p {
    max-width: 720px;
    margin: 0 0 44px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 20px;
    line-height: 1.8;
}

.careers-hero-button {
    display: inline-flex;
    min-height: 64px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 8px;
    padding: 0 34px;
    background: #2a5da8;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 42px rgba(0, 53, 120, 0.22);
    transition: transform 0.25s ease, background 0.25s ease;
}

.careers-hero-button:hover {
    background: #234d93;
    transform: translateY(-2px);
}

.career-icon {
    width: 22px;
    height: 22px;
    color: currentColor;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.careers-benefits {
    padding: 108px 0 124px;
    background: #f4f9fc;
}

.careers-section-head {
    max-width: 760px;
    margin: 0 auto 76px;
    text-align: center;
}

.careers-section-head h2,
.careers-jobs-head h2 {
    margin: 0;
    color: #241f55;
    font-size: clamp(38px, 4.7vw, 56px);
    line-height: 1.14;
    font-weight: 900;
    letter-spacing: 0;
}

.careers-section-head p,
.careers-jobs-head p {
    margin: 22px 0 0;
    color: #5d6472;
    font-size: 18px;
    line-height: 1.75;
}

.careers-benefit-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 36px 46px;
}

.careers-benefit-grid article {
    display: grid;
    min-height: 150px;
    place-items: center;
    border: 1px solid rgba(195, 198, 210, 0.18);
    border-radius: 10px;
    padding: 30px 20px 28px;
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
    box-shadow: 0 18px 44px rgba(35, 77, 147, 0.05);
}

.careers-benefit-grid span {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #eef3ff;
    color: #234d93;
}

.careers-benefit-grid h3 {
    margin: 0;
    color: #1b1b1d;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 900;
}

.careers-jobs {
    padding: 122px 0 134px;
    background: #fff;
}

.careers-jobs-head {
    margin-bottom: 56px;
}

.careers-jobs-head p {
    max-width: 640px;
}

.careers-job-table {
    width: 100%;
    border-top: 1px solid rgba(195, 198, 210, 0.36);
}

.careers-job-row {
    display: grid;
    grid-template-columns: minmax(300px, 1.25fr) minmax(150px, 0.65fr) minmax(150px, 0.65fr) minmax(120px, 0.4fr);
    align-items: center;
    gap: 24px;
    min-height: 112px;
    border-bottom: 1px solid rgba(195, 198, 210, 0.28);
    padding: 26px 28px;
}

.careers-job-header {
    min-height: 60px;
    padding-top: 0;
    padding-bottom: 0;
    background: #f4f9fc;
    color: #434751;
    font-size: 15px;
    font-weight: 900;
}

.careers-job-row h3 {
    margin: 0 0 8px;
    color: #241f55;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 900;
}

.careers-job-row p {
    margin: 0;
    color: #8a909a;
    font-size: 15px;
    line-height: 1.45;
}

.careers-job-row > span {
    color: #434751;
    font-size: 17px;
    line-height: 1.45;
}

.careers-job-row a {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 7px;
    color: #003578;
    font-size: 17px;
    font-weight: 900;
    text-decoration: none;
}

.careers-job-row a .career-icon {
    width: 18px;
    height: 18px;
}

@media (max-width: 1180px) and (min-width: 981px) {
    .header-inner {
        gap: 16px;
    }

    .brand {
        min-width: 222px;
        font-size: 24px;
    }

    .site-nav ul {
        gap: 4px;
    }

    .site-nav a {
        min-width: 104px;
        font-size: 14px;
    }
}

.site-footer {
    padding: 52px 0 28px;
    background: var(--hb-navy);
    color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.35fr) minmax(250px, 0.9fr) minmax(150px, 0.55fr) minmax(132px, 0.45fr);
    gap: 42px;
    align-items: start;
}

.site-footer h2,
.site-footer h3 {
    margin: 0 0 24px;
    color: #fff;
    line-height: 1.25;
}

.site-footer h2 {
    font-size: clamp(20px, 1.7vw, 24px);
}

.site-footer h3 {
    font-size: clamp(16px, 1.35vw, 20px);
}

.site-footer p {
    margin: 0;
    font-size: clamp(12px, 1.05vw, 14px);
    line-height: 1.75;
}

.site-footer p + p {
    margin-top: 22px;
}

.footer-wechat img {
    display: block;
    width: 124px;
    max-width: 100%;
    border: 8px solid #fff;
    border-radius: 6px;
    background: #fff;
}

.footer-wechat {
    display: grid;
    justify-items: center;
    gap: 12px;
}

.footer-wechat h3 {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0;
}

.footer-bottom {
    margin-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 20px;
    font-size: 13px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
}

.footer-records {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.footer-records a {
    color: rgba(255, 255, 255, 0.82);
}

.footer-records a:hover {
    color: #fff;
}

@media (max-width: 980px) {
    .site-nav {
        order: 3;
        width: 100%;
        overflow: visible;
        border-top: 1px solid rgba(215, 221, 232, 0.72);
        padding-top: 8px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .site-nav::-webkit-scrollbar {
        display: none;
    }

    .site-nav ul {
        display: grid;
        width: 100%;
        min-width: 0;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 0;
    }

    .site-nav li {
        min-width: 0;
    }

    .site-nav a {
        width: 100%;
        min-width: 0;
        padding: 12px 4px;
        font-size: 14px;
        white-space: nowrap;
    }

    .site-nav a::after {
        bottom: 5px;
    }

    .site-nav .sub-menu {
        display: none;
    }

    .header-inner {
        flex-wrap: wrap;
        gap: 8px 18px;
        padding: 10px 0 8px;
    }

    .header-actions {
        margin-left: auto;
    }

    .home-products,
    .home-news {
        padding: 76px 0;
    }

    .home-section-head {
        margin-bottom: 38px;
    }

    .home-strength {
        padding: 76px 0;
    }

    .home-strength-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .home-strength-copy {
        max-width: 760px;
    }

    .home-strength-copy img {
        margin-bottom: 24px;
    }

    .home-strength-media {
        min-height: 360px;
        background-position: center 22%;
        background-size: cover;
    }

    .home-product-grid,
    .home-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .resin-hero {
        padding: 72px 0 58px;
    }

    .resin-hero-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .resin-browser-layout {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .resin-series-nav {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        border: 1px solid #e4eaf1;
        border-radius: 14px;
        padding: 18px;
        background: #fff;
        box-shadow: 0 14px 34px rgba(35, 77, 147, 0.06);
    }

    .resin-series-nav h2 {
        grid-column: 1 / -1;
        margin: 0 0 4px;
    }

    .resin-series-nav a {
        min-width: 0;
        min-height: 48px;
        border: 1px solid #e4eaf1;
        background: #fbfdff;
        line-height: 1.35;
    }

    .resin-series-nav a span {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .resin-series-nav .resin-consult-box {
        grid-column: 1 / -1;
        margin-top: 8px;
    }

    .resin-search-row {
        grid-template-columns: 1fr;
    }

    .resin-search-row button,
    .resin-search-row a {
        width: 100%;
    }

    .resin-product-head,
    .resin-product-row {
        grid-template-columns: minmax(110px, 0.72fr) minmax(180px, 1.1fr) minmax(150px, 0.9fr) 64px;
        gap: 12px;
        padding-right: 18px;
        padding-left: 18px;
    }

    .resin-category-cards {
        grid-template-columns: 1fr;
    }

    .resin-series-head {
        display: grid;
        align-items: start;
    }

    .resin-category-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .resin-card-visual {
        min-height: 170px;
    }

    .hero-grid,
    .product-showcase,
    .capability-layout,
    .service-hero-grid,
    .resin-type-section,
    .product-cross-layout,
    .product-finder,
    .product-detail-hero-grid,
    .product-related-grid,
    .archive-layout,
    .product-detail,
    .about-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .site-footer {
        padding: 44px 0 24px;
    }

    .footer-grid {
        gap: 28px;
    }

    .product-summary-card {
        padding: 24px;
    }

    .site-footer h2,
    .site-footer h3 {
        margin-bottom: 14px;
    }

    .site-footer h2 {
        font-size: clamp(18px, 4.4vw, 22px);
    }

    .site-footer h3 {
        font-size: clamp(15px, 3.8vw, 18px);
    }

    .site-footer p {
        font-size: clamp(10.5px, 2.35vw, 12px);
        line-height: 1.65;
    }

    .site-footer p + p {
        margin-top: 14px;
    }

    .footer-wechat {
        justify-items: start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .consult-layout,
    .consult-form-grid {
        grid-template-columns: 1fr;
    }

    .consult-layout {
        gap: 36px;
    }

    .consult-form-card {
        padding: 34px 28px;
    }

    .consult-hero {
        padding: 96px 20px 104px;
    }

    .consult-hero h1 {
        font-size: 44px;
    }

    .product-grid,
    .news-grid,
    .capability-grid,
    .service-detail-grid,
    .news-directory,
    .disclosure-list,
    .career-grid,
    .credential-grid,
    .instrument-strip,
    .service-flow,
    .service-process,
    .feature-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .careers-layout {
        grid-template-columns: 1fr;
    }

    .career-contact {
        position: static;
    }

    .application-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .filter-panel {
        position: static;
    }

    .resin-detail-hero {
        padding: 76px 0 72px;
    }

    .category-detail-hero {
        min-height: 330px;
        padding: 52px 0;
    }

    .category-feature-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .category-detail-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-detail-feature {
        padding: 86px 0 76px;
    }

    .news-center-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-card-featured {
        grid-column: span 2;
    }

    .news-card-standard.is-tall {
        grid-row: auto;
    }

    .news-detail-related-grid {
        grid-template-columns: 1fr;
    }

    .disclosure-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .disclosure-sidebar {
        position: static;
        border-right: 0;
        border-bottom: 1px solid rgba(199, 200, 202, 0.34);
        padding-right: 0;
        padding-bottom: 20px;
    }

    .disclosure-sidebar nav {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .disclosure-card {
        padding: 24px 24px;
    }

    .facilities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .delivery-pillar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .delivery-production-grid,
    .delivery-quality-card,
    .rd-bases-grid,
    .quality-cnas-grid,
    .quality-cert-grid {
        grid-template-columns: 1fr;
    }

    .delivery-production-images {
        max-width: 620px;
    }

    .rd-bases-image,
    .quality-cnas-image {
        max-width: 680px;
    }

    .rd-instrument-grid,
    .quality-step-grid,
    .careers-benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quality-cert-grid {
        gap: 58px;
    }

    .category-spec-section {
        padding: 24px 0 92px;
    }

    .resin-detail-main {
        padding: 76px 0 92px;
    }

    .resin-detail-stack {
        gap: 78px;
    }

    .resin-type-copy {
        position: static;
    }

    .resin-structure-card {
        min-height: 176px;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .brand {
        gap: 10px;
        font-size: 26px;
    }

    .brand-logo {
        width: 112px;
        max-height: 42px;
    }

    .site-nav ul {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 2px;
    }

    .site-nav a {
        min-height: 40px;
        padding: 9px 4px;
        font-size: 13px;
    }

    .header-actions .button {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        padding: 54px 0;
    }

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

    .home-hero,
    .home-hero-content {
        min-height: 560px;
    }

    .home-hero h1,
    .home-hero p {
        max-width: 100%;
        white-space: normal;
    }

    .home-hero-title-line {
        white-space: normal;
    }

    .home-stats-grid {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 28px 0;
    }

    .home-stats article {
        min-height: 86px;
        border-right: 0;
        border-bottom: 1px solid #e4eaf1;
    }

    .home-stats article:last-child {
        border-bottom: 0;
    }

    .home-products,
    .home-news,
    .home-strength {
        padding: 58px 0;
    }

    .home-strength-grid {
        gap: 28px;
    }

    .home-strength-copy h2,
    .home-section-head h2 {
        font-size: 30px;
    }

    .home-strength-copy p {
        line-height: 1.75;
    }

    .home-strength-media {
        min-height: 260px;
    }

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

    .home-news-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .home-product-card {
        min-height: 0;
        padding: 24px;
    }

    .home-product-card span:first-child {
        margin-bottom: 22px;
    }

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

    .resin-hero p {
        font-size: 15px;
        line-height: 1.75;
    }

    .resin-metrics {
        grid-template-columns: 1fr;
    }

    .resin-browser {
        padding: 48px 0 64px;
    }

    .resin-filter-panel {
        padding: 22px;
    }

    .resin-results-summary {
        display: grid;
        gap: 12px;
        align-items: start;
    }

    .resin-results-summary > span {
        width: fit-content;
    }

    .resin-category-block header {
        display: grid;
        padding: 20px;
    }

    .resin-category-block h2 {
        font-size: 22px;
    }

    .resin-category-card {
        padding: 20px;
    }

    .resin-card-head {
        display: grid;
        justify-content: start;
    }

    .resin-category-card h2 {
        font-size: 22px;
    }

    .resin-category-card {
        grid-template-columns: 1fr;
    }

    .resin-card-visual {
        min-height: 150px;
    }

    .resin-filter-group {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .resin-filter-group legend {
        margin-top: 0;
    }

    .resin-card-actions {
        display: grid;
    }

    .resin-card-actions a,
    .resin-cta a {
        justify-content: center;
        width: 100%;
    }

    .resin-cta .container > div {
        display: grid;
    }

    .resin-product-head {
        display: none;
    }

    .resin-product-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 18px 20px;
    }

    .resin-product-row > a {
        width: fit-content;
    }

    .section {
        padding: 58px 0;
    }

    .resin-detail-hero {
        padding: 68px 0 66px;
    }

    .category-detail-hero {
        min-height: 306px;
        padding: 48px 0;
    }

    .detail-back-link {
        top: 18px;
        left: 14px;
        min-height: 36px;
        padding: 0 12px;
        font-size: 13px;
    }

    .category-detail-hero h1 {
        font-size: 38px;
    }

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

    .category-detail-kicker {
        min-height: 34px;
        margin-bottom: 16px;
        padding: 0 14px;
        font-size: 11px;
    }

    .category-detail-facts {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .category-detail-feature {
        padding: 62px 0 56px;
    }

    .news-center-hero {
        min-height: 396px;
        padding: 94px 0 82px;
    }

    .news-center-hero h1 {
        font-size: 52px;
    }

    .news-center-hero p {
        font-size: 16px;
    }

    .news-center-main {
        padding: 62px 0 72px;
    }

    .news-center-filters {
        justify-content: flex-start;
        margin-bottom: 32px;
    }

    .news-center-grid {
        grid-template-columns: 1fr;
    }

    .news-card-featured {
        grid-column: span 1;
    }

    .news-card-featured .news-card-media,
    .news-card-standard .news-card-media {
        height: 220px;
    }

    .news-card-featured h2,
    .news-card-standard h3 {
        font-size: 24px;
    }

    .news-card-standard.is-text-only .news-card-body {
        min-height: 0;
    }

    .news-center-pagination {
        flex-wrap: wrap;
    }

    .news-detail-shell {
        padding: 52px 0 72px;
    }

    .news-detail-container {
        width: min(100% - 28px, 980px);
    }

    .news-detail-topbar {
        margin-bottom: 18px;
    }

    .news-detail-header {
        padding-bottom: 20px;
        margin-bottom: 24px;
    }

    .news-detail-header h1 {
        margin-bottom: 20px;
        font-size: clamp(24px, 6.4vw, 34px);
        line-height: 1.22;
    }

    .news-detail-meta {
        gap: 14px;
    }

    .news-detail-lead,
    .news-detail-body {
        font-size: 15px;
        line-height: 1.9;
    }

    .news-detail-figure {
        margin-bottom: 24px;
    }

    .news-detail-related {
        margin-top: 44px;
    }

    .news-detail-related h2 {
        font-size: 30px;
    }

    .disclosure-hero {
        padding: 84px 0 78px;
        background-position: center 34%;
    }

    .disclosure-hero h1 {
        font-size: 50px;
    }

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

    .disclosure-main {
        padding: 48px 0 68px;
    }

    .disclosure-sidebar nav {
        grid-template-columns: 1fr 1fr;
    }

    .disclosure-sections {
        gap: 52px;
    }

    .disclosure-section-head h2 {
        font-size: 24px;
    }

    .disclosure-card {
        display: grid;
        justify-content: stretch;
        gap: 18px;
        padding: 22px 20px;
    }

    .disclosure-card-action {
        width: fit-content;
    }

    .facilities-hero {
        min-height: 300px;
    }

    .facilities-hero::after {
        width: 72%;
        opacity: 0.72;
    }

    .facilities-hero-content {
        padding: 54px 0 62px;
    }

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

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

    .facilities-grid-section {
        padding: 70px 0 78px;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .facility-card-body {
        padding: 24px 22px 28px;
    }

    .facility-card h2 {
        font-size: 22px;
    }

    .facilities-chain {
        padding: 72px 0 82px;
    }

    .facilities-chain-flow {
        gap: 14px;
    }

    .delivery-hero {
        padding: 74px 0 82px;
    }

    .rd-hero {
        min-height: 320px;
    }

    .rd-hero::before {
        background: linear-gradient(90deg, rgba(251, 249, 251, 0.95) 0%, rgba(251, 249, 251, 0.84) 58%, rgba(251, 249, 251, 0.48) 100%);
    }

    .delivery-pillars,
    .delivery-production,
    .delivery-quality,
    .delivery-logistics,
    .delivery-commitments,
    .rd-bases,
    .rd-team,
    .rd-platform,
    .rd-capability,
    .quality-cnas,
    .quality-flow,
    .quality-certifications,
    .careers-benefits,
    .careers-jobs {
        padding: 64px 0;
    }

    .delivery-pillar-grid,
    .delivery-logistics-grid,
    .delivery-commitment-grid,
    .rd-bases-grid,
    .rd-stat-grid,
    .rd-instrument-grid,
    .quality-cnas-grid,
    .quality-capability-grid,
    .quality-step-grid,
    .quality-cert-grid,
    .quality-system-grid,
    .careers-benefit-grid {
        grid-template-columns: 1fr;
    }

    .rd-bases-grid,
    .rd-platform-top,
    .quality-cnas-grid,
    .quality-cert-grid {
        gap: 34px;
    }

    .rd-platform-top {
        grid-template-columns: 1fr;
    }

    .rd-investment {
        text-align: left;
    }

    .rd-instrument-grid img {
        height: 210px;
    }

    .quality-hero {
        padding: 72px 0 76px;
    }

    .quality-reach-card {
        grid-template-columns: 118px minmax(0, 1fr);
        gap: 20px;
        padding: 22px;
    }

    .quality-ecovadis-card {
        display: grid;
        padding: 26px 24px;
    }

    .careers-hero {
        min-height: 560px;
        background-position: center;
    }

    .careers-hero::before {
        background: linear-gradient(90deg, rgba(36, 31, 85, 0.86) 0%, rgba(36, 31, 85, 0.68) 62%, rgba(36, 31, 85, 0.36) 100%);
    }

    .careers-hero h1 {
        font-size: clamp(38px, 10vw, 48px);
    }

    .careers-hero p {
        font-size: 17px;
    }

    .careers-hero-button {
        width: 100%;
        min-height: 56px;
    }

    .careers-section-head {
        margin-bottom: 42px;
    }

    .careers-benefit-grid {
        gap: 18px;
    }

    .careers-benefit-grid article {
        min-height: 132px;
    }

    .careers-job-header {
        display: none;
    }

    .careers-job-row {
        grid-template-columns: 1fr;
        gap: 12px;
        min-height: 0;
        padding: 24px 0;
    }

    .careers-job-row a {
        margin-top: 4px;
    }

    .delivery-pillar-card {
        min-height: 0;
        padding: 28px 24px;
    }

    .delivery-production-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .delivery-production-images img,
    .delivery-logistics-grid img {
        height: 220px;
    }

    .delivery-production-images img:nth-child(2) {
        margin-top: 22px;
    }

    .delivery-quality-card {
        grid-template-columns: 1fr;
    }

    .delivery-quality-card > img {
        height: 230px;
    }

    .delivery-quality-card > div {
        padding: 32px 26px;
    }

    .delivery-logistics-grid article {
        min-height: 220px;
    }

    .delivery-commitment-grid {
        gap: 18px;
    }

    .category-feature-grid {
        gap: 34px;
    }

    .category-feature-copy h2,
    .category-spec-head h2 {
        font-size: 34px;
    }

    .category-feature-copy p {
        font-size: 15px;
        line-height: 1.82;
    }

    .category-structure-panel {
        padding: 24px;
    }

    .category-structure-panel figcaption {
        display: grid;
        gap: 8px;
        margin-bottom: 24px;
    }

    .category-structure-panel strong {
        font-size: 25px;
    }

    .category-spec-section {
        padding: 20px 0 72px;
    }

    .category-spec-table {
        min-width: 760px;
        font-size: 14px;
    }

    .resin-detail-hero h1 {
        font-size: 38px;
    }

    .resin-detail-hero p {
        font-size: 15px;
        line-height: 1.8;
    }

    .resin-detail-main {
        padding: 58px 0 72px;
    }

    .resin-detail-stack {
        gap: 58px;
    }

    .resin-type-section {
        gap: 24px;
    }

    .resin-type-copy h2 {
        font-size: 30px;
    }

    .resin-structure-card {
        min-height: 150px;
        padding: 22px;
    }

    .resin-structure-card img {
        max-height: 118px;
    }

    .resin-data-table {
        min-width: 680px;
    }

    .section-head,
    .search-row {
        display: block;
    }

    .search-row button {
        width: 100%;
        margin-top: 10px;
    }

    .product-grid,
    .product-grid-compact,
    .news-grid,
    .capability-grid,
    .service-detail-grid,
    .news-directory,
    .disclosure-list,
    .career-grid,
    .credential-grid,
    .instrument-strip,
    .service-flow,
    .service-process,
    .feature-list,
    .metric-grid {
        grid-template-columns: 1fr;
    }

    .service-hero {
        padding: 62px 0;
    }

    .service-hero p {
        font-size: 16px;
    }

    .service-hero-actions,
    .disclosure-panel {
        display: grid;
    }

    .service-hero-actions a,
    .disclosure-panel a {
        width: 100%;
    }

    .application-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-row-card {
        grid-template-columns: 1fr;
    }

    .product-row-meta {
        justify-items: start;
        text-align: left;
    }

    .timeline article {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 520px) {
    .resin-series-nav {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .resin-series-nav a {
        min-height: 46px;
    }

    .resin-series-nav a span {
        white-space: normal;
    }

    .home-product-grid {
        grid-template-columns: 1fr;
    }

    .home-product-card {
        grid-template-columns: 52px minmax(0, 1fr);
        column-gap: 18px;
    }

    .home-product-card span:first-child {
        grid-row: 1 / span 2;
        width: 46px;
        height: 46px;
        margin-bottom: 0;
    }

    .home-product-card h3 {
        margin-top: 2px;
    }
}
