/* ═══════════════════════════════════════════
   ChenXuan Robotics - Sub-page Styles
   ═══════════════════════════════════════════ */

/* ── Page Hero ── */
.page-hero, .about-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: var(--header-height, 80px);
}
.page-hero-bg, .about-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 50%, #1a1a2e 100%);
}
.page-hero-bg > img, .about-hero-bg > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.page-hero-bg .hero-overlay, .about-hero-bg .hero-overlay {
    background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 60%, transparent 100%) !important;
}
.case-hero .page-hero-bg .hero-overlay {
    background: linear-gradient(90deg, rgba(6,12,24,0.78) 0%, rgba(6,18,36,0.58) 48%, rgba(6,12,24,0.28) 100%) !important;
}
.page-hero-content, .about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}
.page-hero-content h1, .about-hero-title {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 16px;
}
.page-hero-content p {
    font-size: 18px;
    color: var(--color-gray-300);
    max-width: 600px;
    margin: 0 auto;
}
.about-hero-tagline {
    font-size: 20px;
    color: var(--color-gray-300);
}

/* ── Stats Section (homepage counters) ── */
.stats-section {
    position: relative;
    background: #f7f8fa;
}
.stats-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f7f8fa 0%, #eef1f5 100%);
}
.stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-item {
    padding: 40px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--color-primary, #d80c1e);
    line-height: 1;
    display: inline;
    font-family: var(--font-display, 'Inter', sans-serif);
}
.stat-unit {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary, #d80c1e);
    display: inline;
}
.stat-label {
    font-size: 16px;
    color: #666;
    margin-top: 12px;
}

/* ── Partners Marquee (auto-scroll logo carousel) ── */
.partners-marquee {
    overflow: hidden;
    position: relative;
    padding: 30px 0;
}
.partners-marquee::before,
.partners-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.partners-marquee::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}
.partners-marquee::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}
.marquee-track {
    display: flex;
    gap: 30px;
    animation: marquee-scroll 30s linear infinite;
    width: max-content;
}
.marquee-track:hover {
    animation-play-state: paused;
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.partner-logo {
    flex-shrink: 0;
    width: 180px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    background: #fff;
    transition: box-shadow 0.2s;
}
.partner-logo:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.partner-placeholder {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    text-align: center;
    padding: 10px;
}

/* ── Page Banner (small) ── */
.page-banner {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 40px;
    background: var(--color-bg-gray);
    border-bottom: 1px solid var(--color-border);
}
.page-banner-sm { padding-bottom: 30px; }
.page-banner-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text-dark);
}
.breadcrumb {
    font-size: 13px;
    color: var(--color-gray-500);
    margin-top: 8px;
}
.breadcrumb a { color: var(--color-gray-400); }
.breadcrumb a:hover { color: var(--color-primary); }

/* ── About Page ── */
.about-intro { padding: 100px 0; }
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-intro-text h2 { text-align: left; margin-bottom: 24px; }
.about-intro-text p {
    font-size: 16px;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-img-wrapper {
    position: relative;
}
.about-placeholder-img {
    aspect-ratio: 4/3;
    background: var(--color-gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}
.about-img-deco {
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(216,12,30,0.2);
    border-radius: var(--radius-lg);
}
.about-stats { padding: 80px 0; }

/* ── Timeline ── */
.about-timeline { padding: 100px 0; }
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
    transform: translateX(-50%);
}
.timeline-item {
    position: relative;
    padding: 20px 0;
    display: flex;
}
.timeline-left { justify-content: flex-start; padding-right: 55%; }
.timeline-right { justify-content: flex-end; padding-left: 55%; }
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 28px;
    width: 16px;
    height: 16px;
    background: var(--color-primary);
    border: 3px solid var(--color-bg);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.timeline-content {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition-base);
}
.timeline-content:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.timeline-year {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    background: rgba(216,12,30,0.1);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 10px;
}
.timeline-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 6px;
}
.timeline-desc {
    font-size: 14px;
    color: var(--color-gray-600);
    line-height: 1.6;
}

/* ── Global Map ── */
.about-global { padding: 100px 0; }
.global-map-placeholder {
    position: relative;
    aspect-ratio: 2/1;
    background: var(--color-bg-gray);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    overflow: hidden;
    background-image:
        radial-gradient(circle at 70% 35%, rgba(216,12,30,0.04) 0%, transparent 50%),
        radial-gradient(circle at 30% 60%, rgba(216,12,30,0.03) 0%, transparent 40%);
}
.map-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
    cursor: pointer;
    animation: pulse 2s ease infinite;
    z-index: 1;
}
.map-dot::before {
    content: attr(data-city);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 12px;
    color: var(--color-white);
    background: var(--color-text-dark);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    opacity: 0;
    transition: opacity var(--transition-fast);
    pointer-events: none;
    margin-bottom: 8px;
}
.map-dot:hover::before { opacity: 1; }
.map-dot::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid rgba(216,12,30,0.3);
    border-radius: 50%;
    animation: ripple 2s ease-out infinite;
}

/* ── Awards / Patents ── */
.about-awards { padding: 100px 0; background: var(--color-bg-gray); }
.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.award-item {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 40px 20px;
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}
.award-item:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.award-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    font-family: var(--font-display);
}
.award-unit {
    display: inline-block;
    font-size: 16px;
    color: var(--color-gray-600);
    margin-top: 6px;
}
.award-label {
    font-size: 14px;
    color: var(--color-gray-600);
    margin-top: 12px;
}

/* ── Culture ── */
.about-culture { padding: 100px 0; }
.culture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.culture-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    transition: all var(--transition-base);
}
.culture-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.culture-icon { font-size: 40px; margin-bottom: 20px; }
.culture-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}
.culture-card p {
    font-size: 14px;
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* ── Products Page (restored product-list structure) ── */
body.page-template-page-products .site-content,
body.page-template-page-products main {
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
html { scroll-padding-top: var(--header-height); }

.pls-page {
    display: flex !important;
    flex-direction: row !important;
    min-height: 100vh;
    background-color: #f9f9f9;
    width: 100%;
    margin: 0;
}

/* ─ Sidebar (官网 .sideTree .left) ─ */
.pls-sidebar {
    width: 240px;
    min-width: 240px;
    max-width: 240px;
    flex-shrink: 0;
    background: #fff;
    border-right: 1px solid #ebebeb;
    position: sticky;
    top: var(--header-height);
    align-self: flex-start;
    height: calc(100vh - var(--header-height));
    overflow-y: auto;
    z-index: 5;
    margin-top: var(--header-height);
}
.pls-sidebar::-webkit-scrollbar { width: 4px; }
.pls-sidebar::-webkit-scrollbar-thumb { background: #d8d8d8; border-radius: 2px; }
.pls-sidebar-inner { padding: 20px 0 60px; }
.pls-first-box { margin-bottom: 0; }
.pls-first {
    display: block;
    padding: 14px 24px 10px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}
.pls-first:hover, .pls-first.act { color: #d80c1e; }
.pls-second {
    padding: 14px 24px 6px;
}
.pls-group-title {
    font-size: 13px;
    font-weight: 600;
    color: #d80c1e;
    display: block;
    letter-spacing: 0.5px;
}
.pls-third-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 24px 9px 32px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    font-weight: 400;
    transition: all 0.3s;
    user-select: none;
}
.pls-third-item:hover { color: #d80c1e; background: rgba(216,12,30,0.04); }
.pls-third-item.expanded { color: #d80c1e; }
.pls-expand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    font-size: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cg fill='none' stroke='%23333' stroke-width='2'%3E%3Cpath d='M0 6h12'/%3E%3Cpath d='M6 0v12'/%3E%3C/g%3E%3C/svg%3E");
}
.pls-third-item.expanded .pls-expand-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='2' viewBox='0 0 12 2'%3E%3Cpath fill='none' stroke='%23d80c1e' stroke-width='2' d='M0 1h12'/%3E%3C/svg%3E");
}
.pls-four-list {
    display: none;
    padding-left: 0;
}
.pls-four-item {
    display: block;
    padding: 7px 24px 7px 52px;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
}
.pls-four-item:hover, .pls-four-item.act {
    color: #d80c1e;
    background: rgba(216,12,30,0.05);
}

/* ─ Content Area (官网 .pls_con) ─ */
.pls-content {
    flex: 1;
    min-width: 0;
    overflow-x: hidden;
    padding-top: var(--header-height);
}

/* ─ Banner (官网 .pl_banner) ─ */
.pls-banner {
    position: relative;
    width: 100%;
    padding: 70px 56px 60px;
    background: linear-gradient(135deg, #f3f3f3 0%, #e9e9e9 100%);
    overflow: hidden;
}
.pls-banner::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -50px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(216,12,30,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.pls-banner::after {
    content: '';
    position: absolute;
    left: 56px;
    bottom: 0;
    width: 80px;
    height: 3px;
    background: #d80c1e;
}
.pls-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
}
.pls-banner-title {
    font-size: 38px;
    font-weight: 700;
    color: #d80c1e;
    margin: 0 0 16px;
    line-height: 1.2;
}
.pls-banner-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.85;
    max-width: 760px;
    margin: 0;
}

/* ─ Product Grid (官网 .boxs .box) ─ */
.pls-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 40px 56px 80px;
}
.pls-product-box {
    position: relative;
    display: block;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s;
}
.pls-product-box:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-4px);
    border-color: #d8d8d8;
}
.pls-product-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    z-index: 2;
}
.pls-tag-hot, .pls-tag-new { background: #d80c1e; }
.pls-product-img {
    position: relative;
    width: 100%;
    padding-bottom: 120%;
    background: #fafafa;
    overflow: hidden;
}
.pls-product-img .robot-silhouette {
    position: absolute;
    inset: 15%;
    background: linear-gradient(135deg, #e6e6e6 0%, #d4d4d4 100%);
    border-radius: 6px;
    transition: transform 0.5s;
}
.pls-product-box:hover .robot-silhouette { transform: scale(1.05); }
.pls-product-name {
    padding: 16px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-align: center;
    border-top: 1px solid #f0f0f0;
    transition: color 0.3s;
}
.pls-product-box:hover .pls-product-name { color: #d80c1e; }

/* ── Solutions Page ── */
.industry-section { padding: 100px 0; }
.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.industry-card {
    position: relative;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}
.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.industry-card-accent {
    height: 4px;
    width: 100%;
}
.industry-card-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--color-bg-gray);
}
.industry-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform var(--transition-base);
}
.industry-card:hover .industry-card-media img {
    transform: scale(1.05);
}
.industry-card-content {
    padding: 28px 24px;
}
.industry-card.has-media .industry-card-content {
    padding-top: 22px;
}
.industry-card.has-media .industry-icon {
    display: none;
}
.industry-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}
.industry-icon-inner {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
}
.industry-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}
.industry-card p {
    font-size: 13px;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
    min-height: 60px;
}

.application-section { padding: 80px 0; }
.application-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.application-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 14px;
    color: var(--color-gray-600);
    transition: all var(--transition-base);
}
.application-tag:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(216,12,30,0.04);
}
.application-tag svg { width: 14px; height: 14px; opacity: 0; transition: opacity var(--transition-fast); }
.application-tag:hover svg { opacity: 1; }

.workstation-section { padding: 100px 0; }
.workstation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.workstation-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}
.workstation-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
}
.workstation-img {
    aspect-ratio: 4/3;
    background: var(--color-bg-gray);
    overflow: hidden;
}
.workstation-media {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform var(--transition-base);
}
.workstation-card:hover .workstation-media {
    transform: scale(1.04);
}
.workstation-info {
    padding: 20px;
}
.workstation-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}
.workstation-info p {
    font-size: 13px;
    color: var(--color-gray-600);
    margin-bottom: 16px;
}

.solutions-cta {
    padding: 80px 0;
    background: var(--color-bg-gray);
}
.solutions-cta-inner {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}
.solutions-cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 60%);
}
.solutions-cta-inner h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
    position: relative;
}
.solutions-cta-inner p {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 28px;
    position: relative;
}
.solutions-cta-inner .btn {
    position: relative;
}

/* ── Contact Page ── */
.contact-info-section { padding: 80px 0; }
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.contact-info-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    transition: all var(--transition-base);
}
.contact-info-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
}
.contact-icon {
    width: 56px;
    height: 56px;
    background: rgba(216,12,30,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--color-primary);
}
.contact-icon svg { width: 24px; height: 24px; }
.contact-info-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}
.contact-value {
    font-size: 16px;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 6px;
}
.contact-note {
    font-size: 13px;
    color: var(--color-gray-500);
}

.contact-form-section { padding: 100px 0; }
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}
.contact-form-intro .section-title { text-align: left; }
.contact-form-intro p {
    font-size: 16px;
    color: var(--color-gray-600);
    margin-bottom: 30px;
    line-height: 1.7;
}
.contact-benefits { display: flex; flex-direction: column; gap: 14px; }
.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--color-gray-600);
}
.benefit-check {
    width: 24px;
    height: 24px;
    background: rgba(216,12,30,0.1);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.contact-form-wrap {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 40px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 8px;
}
.required { color: #ff4444; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--color-bg-gray);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text-dark);
    font-size: 14px;
    transition: border-color var(--transition-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(216,12,30,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-gray-600);
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23a1a1aa' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    accent-color: var(--color-primary);
}
.form-checkbox span {
    font-size: 13px;
    color: var(--color-gray-600);
}
.form-checkbox a { color: var(--color-primary); }
.btn-full { width: 100%; }

.offices-section { padding: 80px 0; }
.offices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.office-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition-base);
}
.office-card:hover { border-color: var(--color-primary); }
.office-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}
.office-address {
    font-size: 14px;
    color: var(--color-gray-600);
    margin-bottom: 8px;
}
.office-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--color-gray-600);
}
.office-phone svg { width: 14px; height: 14px; }

/* ── Blog/Archive ── */
.blog-section { padding: 60px 0; }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}
.blog-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
}
.blog-card-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f7f8fb;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.blog-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}
.blog-card-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--color-gray-500);
}
.blog-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.45;
}
.blog-card-title a { color: var(--color-text-dark); }
.blog-card-title a:hover { color: var(--color-primary); }
.blog-card-excerpt {
    font-size: 14px;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: 14px;
}
.blog-card .news-readmore {
    margin-top: auto;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
.pagination-wrap {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 40px;
}
.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 0;
}
.no-posts h2 { color: var(--color-text-dark); margin-bottom: 10px; }
.no-posts p { color: var(--color-gray-600); }

/* ── Single Post ── */
.single-meta-top {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
}
.page-content-section { padding: 60px 0; }
.container-narrow { max-width: 800px; }
.single-featured-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 40px;
}
.single-featured-img img { width: 100%; }
.single-content {
    font-size: 16px;
    line-height: 1.9;
    color: var(--color-text);
}
.single-content h2 { font-size: 28px; color: var(--color-text-dark); margin: 40px 0 16px; }
.single-content h3 { font-size: 22px; color: var(--color-text-dark); margin: 30px 0 12px; }
.single-content p { margin-bottom: 20px; }
.single-content img { border-radius: var(--radius-md); margin: 24px 0; }
.single-content a { color: var(--color-primary); }
.single-content a:hover { text-decoration: underline; }
.single-content blockquote {
    border-left: 3px solid var(--color-primary);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--color-bg-gray);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--color-gray-600);
}
.single-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid var(--color-border);
    margin-top: 40px;
}
.single-tags a {
    display: inline-block;
    padding: 4px 14px;
    background: var(--color-bg-gray);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--color-gray-600);
    margin-right: 6px;
}
.single-tags a:hover { border-color: var(--color-primary); color: var(--color-primary); }
.single-share {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;
    color: var(--color-gray-600);
}
.share-btn {
    padding: 6px 14px;
    background: var(--color-bg-gray);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--color-gray-600);
}
.share-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }

/* ── Related Posts ── */
.related-posts { margin-top: 60px; }
.related-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 24px;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.related-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}
.related-card:hover { border-color: var(--color-primary); transform: translateY(-4px); }
.related-card-img { aspect-ratio: 16/10; overflow: hidden; }
.related-card-img img { width: 100%; height: 100%; object-fit: cover; }
.related-card-body { padding: 16px; }
.related-card-body h4 {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-dark);
    margin-bottom: 6px;
    line-height: 1.4;
}


/* ── Service Page: Tabs ── */
.ser-tabs-section { padding: 60px 0 40px; background: var(--color-bg); }
.ser-tabs-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.ser-tab-item { text-align: center; padding: 30px 16px; border-radius: 12px; background: var(--color-white); box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: all 0.3s; }
.ser-tab-item:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.ser-tab-icon { width: 48px; height: 48px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; }
.ser-tab-icon svg { width: 48px; height: 48px; }
.ser-tab-remark { font-size: 13px; color: var(--color-primary); font-weight: 600; margin-bottom: 4px; }
.ser-tab-title { font-size: 16px; font-weight: 700; color: var(--color-text-dark); }

/* ── Service Page: Innovation ── */
.ser-part1 { padding: 60px 0; }
.ser-innovation-list { display: flex; flex-direction: column; gap: 0; }
.ser-innovation-item { display: flex; align-items: stretch; min-height: 360px; }
.ser-innovation-item.second { flex-direction: row-reverse; }
.ser-innovation-img { flex: 1; position: relative; background: var(--color-gray-100); min-height: 300px; }
.ser-innovation-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #e8edf5, #d0d8e8); }
.ser-innovation-img .cover { position: absolute; inset: 0; background: rgba(0,0,0,0.15); }
.ser-innovation-txt { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 40px 50px; }
.ser-innovation-txt h3 { font-size: 28px; font-weight: 700; margin-bottom: 16px; color: var(--color-text-dark); }
.ser-innovation-txt p { font-size: 15px; line-height: 1.8; color: var(--color-text-light); }
.ser-innovation-tips { display: flex; justify-content: center; gap: 40px; padding: 30px 0; }
.ser-tip-item { display: flex; align-items: center; gap: 8px; cursor: pointer; opacity: 0.5; transition: opacity 0.3s; }
.ser-tip-item.active { opacity: 1; }
.ser-tip-point { width: 10px; height: 10px; border-radius: 50%; background: var(--color-primary); }
.ser-tip-item span { font-size: 14px; font-weight: 500; }

/* ── Service Page: OTA 6C ── */
.ser-part2 { padding: 80px 0; }
.ota-6c-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.ota-6c-item { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 28px; transition: all 0.3s; }
.ota-6c-item:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.ota-6c-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--color-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; margin-bottom: 14px; }
.ota-6c-item h4 { font-size: 18px; color: #fff; margin-bottom: 8px; }
.ota-6c-item p { font-size: 13px; color: var(--color-gray-400); line-height: 1.7; }
.ota-mini-app { text-align: center; margin-top: 50px; padding: 30px; background: rgba(255,255,255,0.04); border-radius: 12px; border: 1px solid rgba(255,255,255,0.08); }
.ota-mini-badge { display: inline-block; background: var(--color-primary); color: #fff; padding: 6px 20px; border-radius: 20px; font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.ota-mini-app p { color: var(--color-gray-400); font-size: 14px; }

/* ── Service Page: Academy Layout ── */
.ser-part3 { padding: 80px 0; }
.academy-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.academy-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 30px; }
.academy-stat-item { }
.academy-stat-num { font-size: 40px; font-weight: 800; color: var(--color-primary); line-height: 1; }
.academy-stat-num .stat-unit { font-size: 24px; }
.academy-stat-label { font-size: 14px; color: var(--color-text-light); margin-top: 4px; }
.academy-img-placeholder { width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg, #e8edf5, #d0d8e8); border-radius: 16px; }

/* ── Service Page: Entry Cards ── */
.ser-part4 { padding: 60px 0; background: var(--color-bg-gray); }
.ser-entry-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 16px; }
.ser-entry-card { display: flex; align-items: center; gap: 16px; padding: 24px 28px; background: var(--color-white); border-radius: 12px; text-decoration: none; color: inherit; transition: all 0.3s; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.ser-entry-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.ser-entry-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--color-primary); opacity: 0.12; flex-shrink: 0; }
.ser-entry-info h3 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.ser-entry-info p { font-size: 13px; color: var(--color-text-light); }
.ser-entry-arrow { margin-left: auto; color: var(--color-gray-400); flex-shrink: 0; }

/* ══════════════════════════════════════════
   Smart Commerce Page (.jp-page)
   ══════════════════════════════════════════ */
.jp-page { line-height: 1.33; }

/* ── JP Banner ── */
.jp-banner {
    position: relative;
    height: 45vh;
    min-height: 350px;
    overflow: hidden;
}
.jp-banner-bg {
    position: absolute;
    inset: 0;
}
.jp-banner-cover {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(200,0,20,0.65), rgba(200,0,20,0.3));
}
.jp-banner-txt {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-top: var(--header-height, 80px);
    text-align: center;
    color: #fff;
}
.jp-banner-txt h1 {
    font-size: 50px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: 4px;
}
.jp-banner-txt p {
    font-size: 18px;
    opacity: 0.9;
}

/* ── JP Part 1: Categories ── */
.jp-part1 {
    padding: 60px 4.17vw 80px;
    text-align: center;
}
.jp-part1-desc {
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 16px;
    color: #333;
    line-height: 1.75;
}
.jp-categories {
    display: flex;
    margin: 0 auto;
    max-width: 65.1vw;
    box-shadow: 0 0 30px rgba(0,0,0,0.06);
    border-radius: 8px;
    overflow: hidden;
}
.jp-cat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 22.76vw;
    min-height: 280px;
    cursor: pointer;
    transition: all 0.5s;
    position: relative;
    color: #fff;
    background-size: cover !important;
    background-position: center !important;
}
.jp-cat-item:first-child { border-radius: 8px 0 0 8px; }
.jp-cat-item:last-child { border-radius: 0 8px 8px 0; }
.jp-cat-name {
    font-size: 18px;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.jp-cat-more {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
}
.jp-cat-item:hover .jp-cat-more { opacity: 1; }
.jp-cat-item:hover {
    flex: 1.8;
}

/* ── JP Part 2: Partners Grid ── */
.jp-part2 {
    padding: 70px 4.17vw 90px;
    background: #f9f9f9;
}
.jp-part2-title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 45px;
    color: #000;
}
.jp-partner-grid {
    display: flex;
    flex-wrap: wrap;
    border-left: 1px solid #e3e3e3;
    border-top: 1px solid #e3e3e3;
    max-width: 1200px;
    margin: 0 auto;
}
.jp-partner-cell {
    width: 20%;
    height: 0;
    padding-bottom: 12%;
    position: relative;
    border-right: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
    background: #fff;
}
.jp-partner-cell img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 60%;
    max-height: 55%;
    object-fit: contain;
    transition: transform 0.3s;
}
.jp-partner-cell:hover img { transform: translate(-50%, -50%) scale(1.08); }

/* ── JP Part 3: Apply Form ── */
.jp-part3 {
    display: flex;
    justify-content: space-between;
    padding: 65px 4.17vw 50px 7.4vw;
    background: linear-gradient(135deg, #f7f7f7 0%, #eef2f7 48%, #e5e7eb 100%);
    background-color: #f7f7f7;
}
.jp-part3-left {
    padding-top: 30px;
    flex-shrink: 0;
    width: 28%;
}
.jp-part3-left h2 {
    font-size: 32px;
    font-weight: 500;
    color: #4d4d4d;
    margin-bottom: 80px;
}
.jp-contact-info { display: flex; flex-direction: column; gap: 24px; }
.jp-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #5e5e5e;
}
.jp-contact-item svg { flex-shrink: 0; width: 40px; height: 40px; color: #888; }
.jp-contact-label { font-size: 14px; font-weight: 400; color: #5e5e5e; display: block; margin-bottom: 2px; }
.jp-contact-item strong { font-size: 20px; font-weight: 600; color: #4d4d4d; }

.jp-part3-right { width: 65%; }
.jp-apply-form { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0; }
.jp-form-row { display: flex; width: 100%; gap: 20px; }
.jp-form-group { margin-bottom: 18px; width: 100%; }
.jp-form-half { flex: 1; }
.jp-form-third { flex: 1; }
.jp-form-group label {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    color: #1c1c1c;
    margin-bottom: 8px;
}
.jp-form-group label span { color: #ed1c24; margin-right: 4px; }
.jp-form-group input,
.jp-form-group select,
.jp-form-group textarea {
    width: 100%;
    height: 44px;
    padding: 0 16px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 300;
    color: #333;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
}
.jp-form-group input:focus,
.jp-form-group select:focus,
.jp-form-group textarea:focus { border-color: var(--color-primary, #d80c1e); }
.jp-form-group textarea { height: auto; padding: 12px 16px; resize: none; }
.jp-form-group select { appearance: none; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E") no-repeat right 14px center; cursor: pointer; }
.jp-form-agree {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
    margin: 6px 0 20px;
    width: 100%;
}
.jp-form-agree input[type="checkbox"] { margin-right: 8px; cursor: pointer; }
.jp-form-agree a { color: var(--color-primary, #d80c1e); text-decoration: none; }
.jp-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 36px;
    background: linear-gradient(120deg, #ff2135, #d80c1e, #d80c1e, #af0514);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s;
}
.jp-submit-btn:hover { opacity: 0.9; }

/* ── Page Responsive Overrides ── */
@media (max-width: 992px) {
    .page-hero, .about-hero { height: 40vh; min-height: 300px; }
    .page-hero-content h1, .about-hero-title { font-size: 36px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-number { font-size: 40px; }
    .stat-unit { font-size: 26px; }
    .partner-logo { width: 150px; height: 75px; }
    .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .culture-grid { grid-template-columns: repeat(2, 1fr); }
    .product-showcase-grid { grid-template-columns: 1fr; }
    .series-intro { grid-template-columns: 1fr; gap: 30px; }
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
    .workstation-grid { grid-template-columns: repeat(2, 1fr); }
    .ser-tabs-grid { grid-template-columns: repeat(3, 1fr); }
    .ser-innovation-item, .ser-innovation-item.second { flex-direction: column; min-height: auto; }
    .ser-innovation-txt { padding: 30px 24px; }
    .ota-6c-grid { grid-template-columns: repeat(2, 1fr); }
    .academy-layout { grid-template-columns: 1fr; gap: 30px; }
    .contact-cards-grid { grid-template-columns: 1fr; }
    .contact-form-grid { grid-template-columns: 1fr; gap: 40px; }
    .offices-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline::before { left: 20px; }
    .timeline-left, .timeline-right { padding-left: 50px; padding-right: 0; justify-content: flex-start; }
    .timeline-dot { left: 20px; }
    .jp-categories { max-width: 100%; }
    .jp-cat-item { height: 200px; min-height: 200px; }
    .jp-cat-name { font-size: 15px; }
    .jp-part3 { flex-direction: column; gap: 40px; }
    .jp-part3-left { width: 100%; }
    .jp-part3-left h2 { margin-bottom: 30px; }
    .jp-part3-right { width: 100%; }
    .jp-partner-cell { width: 33.333%; padding-bottom: 16%; }
}
@media (max-width: 576px) {
    .page-hero-content h1 { font-size: 28px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat-item { padding: 24px 12px; }
    .stat-number { font-size: 32px; }
    .stat-unit { font-size: 22px; }
    .stat-label { font-size: 13px; }
    .partner-logo { width: 120px; height: 60px; }
    .culture-grid { grid-template-columns: 1fr; }
    .industry-grid { grid-template-columns: 1fr; }
    .workstation-grid { grid-template-columns: 1fr; }
    .offices-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 24px; }
    .product-showcase-card { flex-direction: column; }
    .showcase-img { width: 100%; aspect-ratio: 16/9; }
    .series-models { grid-template-columns: repeat(2, 1fr); }
    .ser-tabs-grid { grid-template-columns: repeat(2, 1fr); }
    .ota-6c-grid { grid-template-columns: 1fr; }
    .ser-entry-grid { grid-template-columns: 1fr; }
    .academy-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .academy-stat-num { font-size: 30px; }
    .ser-innovation-tips { gap: 20px; flex-wrap: wrap; justify-content: center; }
}

/* ═══════════════════════════════════════════
   Auth Pages (Login / Register)
   ═══════════════════════════════════════════ */
.auth-section {
    background-color: #f9f9f9;
    padding: 80px 0 60px;
    min-height: calc(100vh - var(--header-height) - 200px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.auth-container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 20px;
}
.auth-title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
    color: #000;
}

/* Steps indicator (register) */
.auth-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
}
.auth-steps .step {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-size: 14px;
}
.auth-steps .step.active { color: var(--color-primary, #d80c1e); }
.auth-steps .step.active .step-num {
    background: var(--color-primary, #d80c1e);
    color: #fff;
}
.step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ddd;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}
.step-line {
    width: 48px;
    height: 2px;
    background: #ddd;
    margin: 0 12px;
}

/* Auth card */
.auth-card {
    background: #fff;
    padding: 40px 36px 32px;
    border-radius: 4px;
}

/* Tabs */
.auth-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-bottom: 28px;
}
.auth-tab {
    font-size: 15px;
    font-weight: 400;
    color: #999;
    padding-bottom: 12px;
    margin-right: 32px;
    position: relative;
    cursor: pointer;
    background: none;
    border: none;
    transition: all 0.3s;
}
.auth-tab:hover { color: var(--color-primary, #d80c1e); }
.auth-tab.active {
    color: var(--color-primary, #d80c1e);
    font-weight: 500;
}
.auth-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary, #d80c1e);
    transition: width 0.3s;
}
.auth-tab:hover::after,
.auth-tab.active::after { width: 100%; }

/* Panels */
.auth-panel { display: none; }
.auth-panel.active { display: block; }

/* Form */
.form-group { margin-bottom: 16px; }
.form-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
    color: #333;
}
.form-label svg { flex-shrink: 0; }
.form-input {
    width: 100%;
    height: 42px;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 300;
    transition: border-color 0.3s;
    color: #333;
    background: #fff;
}
.form-input:focus {
    outline: none;
    border-color: var(--color-primary, #d80c1e);
}
.form-input::placeholder { color: #bbb; }
.form-input-group {
    display: flex;
    gap: 0;
}
.form-input-group .form-input {
    border-radius: 4px 0 0 4px;
    flex: 1;
}
.btn-sms-code {
    width: 128px;
    height: 42px;
    background: var(--color-primary, #d80c1e);
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s;
}
.btn-sms-code:hover { background: #b80a19; }

/* Checkbox / agreement */
.form-agree {
    margin: 16px 0;
    font-size: 13px;
    color: #666;
}
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--color-primary, #d80c1e);
}
.checkbox-label a {
    color: var(--color-primary, #d80c1e);
    text-decoration: none;
}
.checkbox-label a:hover { text-decoration: underline; }

/* Submit */
.btn-auth-submit {
    width: 100%;
    height: 44px;
    background: linear-gradient(120deg, #ff2135, #d80c1e, #d80c1e, #af0514);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s;
}
.btn-auth-submit:hover { opacity: 0.9; }

/* Footer links */
.auth-footer-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    font-size: 13px;
    color: #999;
}
.auth-footer-links a {
    color: var(--color-primary, #d80c1e);
    text-decoration: none;
}
.auth-footer-links a:hover { text-decoration: underline; }

/* Third-party login */
.auth-third-party { margin-top: 28px; }
.auth-divider {
    text-align: center;
    position: relative;
    margin-bottom: 20px;
}
.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #eee;
}
.auth-divider span {
    position: relative;
    background: #fff;
    padding: 0 16px;
    font-size: 13px;
    color: #999;
}
.auth-social-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
}
.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid #eee;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    font-size: 13px;
    color: #333;
    transition: border-color 0.3s;
}
.social-btn:hover { border-color: #07C160; }

/* Responsive */
@media (max-width: 576px) {
    .auth-section { padding: 40px 0 30px; }
    .auth-card { padding: 28px 20px 24px; }
    .auth-title { font-size: 22px; }
    .btn-sms-code { width: 100px; font-size: 12px; }
}

/* ═══════════════════════════════════════════
   Download Center Page (匹配官网 /download 结构)
   ═══════════════════════════════════════════ */
body.page-template-page-download .site-content,
body.page-template-page-download main {
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ── Download Center (restored download-page structure) ── */
.dlc-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: var(--header-height);
}

/* Search bar */
.dlc-search-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}
.dlc-heading {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto 16px;
    text-align: center;
}
.dlc-heading h1 {
    margin: 0;
    color: #17191f;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.2;
}
.dlc-search-inner {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 16px;
    transition: border-color 0.2s;
}
.dlc-search-inner:focus-within { border-color: var(--color-primary, #d80c1e); }
.dlc-search-icon { flex-shrink: 0; }
.dlc-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    color: #333;
    background: transparent;
}
.dlc-search-input::placeholder { color: #999; }

/* Body: sidebar + content */
.dlc-body {
    display: flex;
    flex: 1;
    min-height: 0;
}

/* Sidebar */
.dlc-sidebar {
    width: 220px;
    min-width: 220px;
    background: #fff;
    border-right: 1px solid #f0f0f0;
    position: sticky;
    top: var(--header-height);
    height: calc(100vh - var(--header-height));
    overflow-y: auto;
}
.dlc-sidebar-inner { padding: 24px 0; }
.dlc-tree-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 24px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1.4;
}
.dlc-tree-item:hover { color: var(--color-primary, #d80c1e); }
.dlc-tree-item.active {
    color: var(--color-primary, #d80c1e);
    font-weight: 600;
}
.dlc-tree-parent { font-size: 18px; font-weight: 500; }
.dlc-tree-child { padding-left: 44px; font-size: 16px; color: #666; }
.dlc-tree-children { display: none; }
.dlc-tree-group.expanded .dlc-tree-children { display: block; }
.dlc-tree-arrow {
    flex-shrink: 0;
    color: #999;
    transition: transform 0.3s;
}
.dlc-tree-group.expanded .dlc-tree-arrow { transform: rotate(90deg); color: var(--color-primary, #d80c1e); }

/* Content */
.dlc-content {
    flex: 1;
    min-width: 0;
    padding: 30px 40px 60px;
    background: #fff;
}

/* v2.0.201: top-to-bottom About factory floating gallery. */
body.page-template-page-about .about-values.about-values-factory {
    padding: clamp(74px, 8vw, 122px) 0 clamp(82px, 8.5vw, 132px) !important;
    overflow: hidden !important;
}

body.page-template-page-about .about-values.about-values-factory .container {
    max-width: min(1540px, calc(100vw - 120px)) !important;
}

body.page-template-page-about .about-values-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: clamp(34px, 4vw, 66px) !important;
    align-items: stretch !important;
}

body.page-template-page-about .about-values-copy {
    display: grid !important;
    gap: clamp(24px, 3vw, 42px) !important;
}

body.page-template-page-about .about-values.about-values-factory .about-values-title {
    max-width: 900px !important;
    margin: 0 auto !important;
    text-align: center !important;
    font-size: clamp(36px, 4.1vw, 68px) !important;
    line-height: 1.12 !important;
}

body.page-template-page-about .about-values.about-values-factory .about-value-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: clamp(14px, 1.7vw, 24px) !important;
    width: min(1160px, 100%) !important;
    margin: 0 auto !important;
}

body.page-template-page-about .about-values.about-values-factory .about-value-card {
    min-height: 156px !important;
    padding: clamp(22px, 2.2vw, 30px) !important;
    background: rgba(255, 255, 255, 0.9) !important;
}

body.page-template-page-about .about-factory-showcase {
    width: 100% !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.page-template-page-about .about-factory-preview,
body.page-template-page-about .about-factory-zoom,
body.page-template-page-about .about-factory-thumbs {
    display: none !important;
}

body.page-template-page-about .about-factory-cloud {
    display: grid !important;
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    gap: clamp(14px, 1.45vw, 24px) !important;
    align-items: start !important;
    width: 100% !important;
}

body.page-template-page-about .about-factory-photo {
    --factory-y: 0px;
    --factory-delay: 0s;
    position: relative !important;
    display: block !important;
    grid-column: span 3 !important;
    width: 100% !important;
    padding: 0 !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    aspect-ratio: 4 / 3 !important;
    background: #eef2f7 !important;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.11) !important;
    cursor: zoom-in !important;
    animation: cxFactoryFloat 7.2s ease-in-out infinite !important;
    animation-delay: var(--factory-delay) !important;
}

body.page-template-page-about .about-factory-photo:nth-child(1),
body.page-template-page-about .about-factory-photo:nth-child(6) {
    grid-column: span 4 !important;
}

body.page-template-page-about .about-factory-photo:nth-child(2) {
    --factory-y: 26px;
    --factory-delay: -1.6s;
}

body.page-template-page-about .about-factory-photo:nth-child(3) {
    --factory-y: 8px;
    --factory-delay: -3.1s;
}

body.page-template-page-about .about-factory-photo:nth-child(4) {
    --factory-y: 32px;
    --factory-delay: -0.9s;
}

body.page-template-page-about .about-factory-photo:nth-child(5) {
    --factory-y: -6px;
    --factory-delay: -2.4s;
}

body.page-template-page-about .about-factory-photo:nth-child(6) {
    --factory-y: 20px;
    --factory-delay: -4.2s;
}

body.page-template-page-about .about-factory-photo:nth-child(7) {
    --factory-y: 4px;
    --factory-delay: -1.1s;
}

body.page-template-page-about .about-factory-photo:nth-child(8) {
    --factory-y: 28px;
    --factory-delay: -3.8s;
}

@keyframes cxFactoryFloat {
    0%, 100% {
        transform: translate3d(0, var(--factory-y), 0);
    }
    50% {
        transform: translate3d(0, calc(var(--factory-y) - 12px), 0);
    }
}

body.page-template-page-about .about-factory-photo:hover,
body.page-template-page-about .about-factory-photo:focus-visible {
    animation-play-state: paused !important;
    border-color: rgba(216, 12, 30, 0.4) !important;
    box-shadow: 0 30px 86px rgba(15, 23, 42, 0.16) !important;
    transform: translate3d(0, calc(var(--factory-y) - 6px), 0) scale(1.012) !important;
}

body.page-template-page-about .about-factory-photo.is-active {
    border-color: rgba(216, 12, 30, 0.75) !important;
}

body.page-template-page-about .about-factory-photo img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transform: scale(1.001) !important;
    transition: transform 0.42s ease !important;
}

body.page-template-page-about .about-factory-photo:hover img,
body.page-template-page-about .about-factory-photo:focus-visible img {
    transform: scale(1.045) !important;
}

body.page-template-page-about .about-factory-photo-shade {
    position: absolute !important;
    inset: auto 0 0 !important;
    height: 46% !important;
    background: linear-gradient(180deg, transparent, rgba(3, 7, 18, 0.56)) !important;
    pointer-events: none !important;
}

body.page-template-page-about .about-factory-photo-meta {
    position: absolute !important;
    left: 18px !important;
    bottom: 16px !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 12px !important;
    width: calc(100% - 36px) !important;
    color: #fff !important;
    text-align: left !important;
}

body.page-template-page-about .about-factory-photo-meta span {
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 0.82) !important;
}

body.page-template-page-about .about-factory-photo-meta strong {
    font-size: clamp(24px, 2vw, 34px) !important;
    line-height: 1 !important;
}

body.page-template-page-about .about-factory-photo-zoom {
    position: absolute !important;
    top: 14px !important;
    right: 14px !important;
    z-index: 3 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.92) !important;
    color: var(--brand-red, #e60012) !important;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16) !important;
    opacity: 0 !important;
    transform: translateY(-6px) !important;
    transition: opacity 0.22s ease, transform 0.22s ease !important;
}

body.page-template-page-about .about-factory-photo:hover .about-factory-photo-zoom,
body.page-template-page-about .about-factory-photo:focus-visible .about-factory-photo-zoom {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

@media (prefers-reduced-motion: reduce) {
    body.page-template-page-about .about-factory-photo {
        animation: none !important;
        transform: translate3d(0, var(--factory-y), 0) !important;
    }
}

@media (max-width: 1180px) {
    body.page-template-page-about .about-values.about-values-factory .about-value-grid {
        grid-template-columns: 1fr !important;
        width: min(760px, 100%) !important;
    }

    body.page-template-page-about .about-factory-cloud {
        grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    }

    body.page-template-page-about .about-factory-photo,
    body.page-template-page-about .about-factory-photo:nth-child(1),
    body.page-template-page-about .about-factory-photo:nth-child(6) {
        grid-column: span 3 !important;
    }
}

@media (max-width: 760px) {
    body.page-template-page-about .about-values.about-values-factory {
        padding: 54px 0 72px !important;
    }

    body.page-template-page-about .about-values.about-values-factory .container {
        max-width: calc(100vw - 30px) !important;
    }

    body.page-template-page-about .about-values.about-values-factory .about-values-title {
        text-align: left !important;
        font-size: 30px !important;
    }

    body.page-template-page-about .about-factory-cloud {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    body.page-template-page-about .about-factory-photo,
    body.page-template-page-about .about-factory-photo:nth-child(1),
    body.page-template-page-about .about-factory-photo:nth-child(6) {
        grid-column: auto !important;
        --factory-y: 0px;
        animation: none !important;
        aspect-ratio: 4 / 3 !important;
    }

    body.page-template-page-about .about-factory-photo-zoom {
        opacity: 1 !important;
        transform: none !important;
    }
}

.dlc-access-notice {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
    padding: 18px 20px;
    border: 1px solid rgba(216, 12, 30, 0.16);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(216, 12, 30, 0.055), rgba(255, 255, 255, 0.96));
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.055);
}

.dlc-access-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--color-primary, #d80c1e);
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(216, 12, 30, 0.12);
    flex-shrink: 0;
}

.dlc-access-icon svg {
    width: 18px;
    height: 18px;
}

.dlc-access-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #4b5563;
    line-height: 1.55;
    flex: 1;
}

.dlc-access-copy strong {
    color: #111827;
    font-size: 16px;
}

.dlc-access-copy span {
    font-size: 14px;
}

.dlc-access-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.dlc-access-login,
.dlc-access-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 86px;
    height: 38px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.dlc-access-login {
    color: #fff;
    background: var(--color-primary, #d80c1e);
    box-shadow: 0 10px 22px rgba(216, 12, 30, 0.18);
}

.dlc-access-register {
    color: #111827;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.12);
}

/* Group */
.dlc-group { margin-bottom: 40px; }
.dlc-group-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 12px;
}

/* List rows - 2 columns matching official site */
.dlc-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}
.dlc-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
}
.dlc-row:hover { background: #fafafa; }
.dlc-row-left { flex: 1; min-width: 0; }
.dlc-row-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.dlc-file-badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary, #d80c1e);
    border: 1px solid var(--color-primary, #d80c1e);
    border-radius: 2px;
    text-transform: uppercase;
    line-height: 1.4;
    flex-shrink: 0;
}
.dlc-file-name {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}
.dlc-row-tools {
    display: flex;
    align-items: center;
    gap: 20px;
}
.dlc-tool-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}
.dlc-tool-link:hover { color: var(--color-primary, #d80c1e); }
.dlc-tool-link.is-locked::after {
    content: '';
    width: 12px;
    height: 12px;
    background: currentColor;
    opacity: 0.55;
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.2 6V4.5a2.8 2.8 0 0 1 5.6 0V6h.45c.69 0 1.25.56 1.25 1.25v4c0 .69-.56 1.25-1.25 1.25h-6.5c-.69 0-1.25-.56-1.25-1.25v-4C2.5 6.56 3.06 6 3.75 6h.45Zm1.2 0h3.2V4.5a1.6 1.6 0 0 0-3.2 0V6Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.2 6V4.5a2.8 2.8 0 0 1 5.6 0V6h.45c.69 0 1.25.56 1.25 1.25v4c0 .69-.56 1.25-1.25 1.25h-6.5c-.69 0-1.25-.56-1.25-1.25v-4C2.5 6.56 3.06 6 3.75 6h.45Zm1.2 0h3.2V4.5a1.6 1.6 0 0 0-3.2 0V6Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.dlc-tool-link svg { flex-shrink: 0; }
.dlc-row-right {
    flex-shrink: 0;
    text-align: right;
    padding-top: 2px;
}
.dlc-row-date {
    font-size: 16px;
    color: #333;
}

/* Hidden items for filtering */
.dlc-row.hidden { display: none; }

@media (max-width: 768px) {
    .dlc-access-notice {
        align-items: flex-start;
        flex-direction: column;
    }

    .dlc-access-actions {
        width: 100%;
    }

    .dlc-access-login,
    .dlc-access-register {
        flex: 1;
    }
}

/* ══════════════════════════════════════════
   Search Overlay (header search dropdown)
   ══════════════════════════════════════════ */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 100000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.search-overlay.active {
    opacity: 1;
    visibility: visible;
}
.search-overlay-inner {
    background: #fff;
    width: 100%;
    max-width: 100vw;
    padding: 22px 60px;
    display: flex;
    align-items: center;
    gap: 40px;
    transform: translateY(-100%);
    transition: transform 0.3s;
}
.search-overlay.active .search-overlay-inner {
    transform: translateY(0);
}
.search-overlay-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.search-overlay-form {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border: 1px solid #e5e5e5;
    border-radius: 28px;
    background: #fafafa;
    transition: border-color 0.2s, background 0.2s;
}
.search-overlay-form:focus-within {
    border-color: var(--color-primary, #d80c1e);
    background: #fff;
}
.search-overlay-form svg { color: #999; flex-shrink: 0; }
.search-overlay-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    color: #333;
}
.search-overlay-input::placeholder { color: #aaa; }
.search-overlay-submit {
    padding: 8px 24px;
    border: none;
    background: var(--color-primary, #d80c1e);
    color: #fff;
    border-radius: 22px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}
.search-overlay-submit:hover { background: #b00917; }
.search-overlay-close {
    width: 38px;
    height: 38px;
    border: 1px solid #e5e5e5;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    flex-shrink: 0;
    transition: all 0.2s;
}
.search-overlay-close:hover {
    border-color: var(--color-primary, #d80c1e);
    color: var(--color-primary, #d80c1e);
}

/* ══════════════════════════════════════════
   Search Results Page
   ══════════════════════════════════════════ */
.search-page {
    padding-top: var(--header-height, 80px);
    min-height: 100vh;
    background: #f7f8fa;
}
.search-page-inner { padding-bottom: 80px; }

/* Search form bar at top of results page */
.search-form-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 24px 0;
}
.search-form-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e5e5e5;
    border-radius: 28px;
    background: #fafafa;
}
.search-form-inner:focus-within {
    border-color: var(--color-primary, #d80c1e);
    background: #fff;
}
.search-form-icon { color: #999; flex-shrink: 0; }
.search-form-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    color: #333;
}
.search-form-submit {
    padding: 8px 24px;
    border: none;
    background: var(--color-primary, #d80c1e);
    color: #fff;
    border-radius: 22px;
    font-size: 14px;
    cursor: pointer;
}
.search-form-submit:hover { background: #b00917; }

/* Results container */
.search-container {
    padding-top: 30px;
}
.search-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e5e5e5;
}
.search-tab-item {
    padding: 14px 22px;
    font-size: 15px;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
}
.search-tab-item:hover { color: #333; }
.search-tab-item.act {
    color: var(--color-primary, #d80c1e);
    font-weight: 500;
}
.search-tab-item.act::after {
    content: '';
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: -1px;
    height: 2px;
    background: var(--color-primary, #d80c1e);
}
.search-tip {
    padding: 16px 0;
    color: #555;
    font-size: 15px;
}
.search-tip strong { color: var(--color-primary, #d80c1e); margin: 0 4px; }
.search-tip span { color: #333; font-weight: 500; }
.search-result-panel { display: none; }
.search-result-panel.active { display: block; }
.search-result-list {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}
.search-result-item {
    border-bottom: 1px solid #f0f0f0;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-link {
    display: block;
    padding: 22px 28px;
    color: inherit;
    text-decoration: none;
    transition: background 0.15s;
}
.search-result-link:hover { background: #fafafa; }
.search-result-title {
    font-size: 17px;
    font-weight: 500;
    color: #333;
    margin: 0 0 8px;
    line-height: 1.4;
}
.search-result-link:hover .search-result-title { color: var(--color-primary, #d80c1e); }
.search-result-excerpt {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin: 0 0 8px;
}
.search-result-date {
    font-size: 13px;
    color: #999;
}
.search-empty {
    text-align: center;
    padding: 80px 20px;
    color: #999;
}
.search-empty p {
    margin-top: 16px;
    font-size: 15px;
}

.case-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 42%);
    gap: 42px;
    align-items: start;
}
.case-detail-body {
    font-size: 16px;
    line-height: 1.9;
    color: var(--color-gray-700);
}
.case-detail-body p {
    margin: 0 0 18px;
}
.case-detail-body p:last-child {
    margin-bottom: 0;
}
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.case-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #e5e7eb, #cbd5e1);
}
.case-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.38));
    pointer-events: none;
}
.case-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform var(--transition-base);
}
.case-card:hover .case-card-media img {
    transform: scale(1.05);
}
.case-card-placeholder,
.case-detail-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 900;
    font-size: clamp(28px, 5vw, 46px);
    letter-spacing: 0;
    background:
        linear-gradient(135deg, rgba(16, 35, 63, 0.96), rgba(15, 118, 110, 0.86)),
        #10233f;
}

.case-media-type {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    backdrop-filter: blur(8px);
}
.case-detail-media {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #020617;
    box-shadow: var(--shadow-lg);
}
.case-detail-media img,
.case-detail-media video {
    width: 100%;
    height: 100%;
    display: block;
}
.case-detail-media img {
    object-fit: cover;
}
.case-detail-media video {
    object-fit: contain;
    background: #020617;
}

/* Mobile responsive */
@media (max-width: 992px) {
    .case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 768px) {
    .case-detail-layout {
        grid-template-columns: 1fr;
    }
    .case-detail-layout aside {
        position: static !important;
    }
    .case-brief > div,
    .case-filter-wrap > div {
        grid-template-columns: 1fr !important;
    }
    .search-overlay-inner {
        padding: 16px 20px;
        gap: 16px;
        flex-wrap: wrap;
    }
    .search-overlay-logo { display: none; }
    .search-form-bar { padding: 16px 0; }
    .search-tabs { overflow-x: auto; flex-wrap: nowrap; }
    .search-tab-item { padding: 12px 16px; font-size: 14px; flex-shrink: 0; }
    .search-result-link { padding: 18px 18px; }
}
@media (max-width: 640px) {
    .case-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════
   Toast Notifications (auth feedback)
   ══════════════════════════════════════════ */
/* Case center official-style restore */
.case-page-shell {
    background:
        var(--case-pattern, none) center top / 100% auto repeat-y,
        #fff;
}

.case-hero-official {
    position: relative;
    min-height: 350px;
    padding-top: var(--header-height, 84px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #eef2f7;
}

.case-hero-bg {
    position: absolute;
    inset: 0;
}

.case-hero-bg img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.case-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.62) 44%, rgba(255,255,255,0.18) 100%);
}

.case-hero-content {
    position: relative;
    z-index: 1;
    max-width: 620px;
    padding: 70px 0;
}

.case-hero-content h1 {
    margin: 12px 0 16px;
    color: var(--color-text-dark);
    font-size: clamp(42px, 4.1vw, 72px);
    line-height: 1.08;
    font-weight: 800;
}

.case-hero-content p {
    margin: 0;
    color: rgba(17, 24, 39, 0.68);
    font-size: clamp(17px, 1.1vw, 22px);
}

.case-filter-section {
    padding: 60px 0 34px;
    background: rgba(255, 255, 255, 0.9);
}

.case-filter-layout {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

.case-brand-name {
    color: var(--color-primary);
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
}

.case-filter-panel {
    display: grid;
    gap: 22px;
    padding-bottom: 42px;
    border-bottom: 1px dashed rgba(15, 23, 42, 0.12);
}

.case-filter-group {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.case-filter-group strong {
    color: var(--color-text-dark);
    font-size: 22px;
    line-height: 1.6;
    font-weight: 800;
}

.case-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 34px;
    min-height: 38px;
}

.case-chip {
    appearance: none;
    border: 0;
    padding: 5px 0;
    background: transparent;
    color: rgba(17, 24, 39, 0.52);
    cursor: pointer;
    font: inherit;
    font-size: 16px;
    line-height: 1.7;
    transition: color var(--transition-fast);
}

.case-chip:hover,
.case-chip.active {
    color: var(--color-primary);
}

.case-filter-row-static .case-chip {
    cursor: default;
}

.case-results-section {
    padding: 28px 0 110px;
}

.case-results-head {
    margin-bottom: 32px;
}

.case-results-head h2 {
    color: var(--color-text-dark);
    font-size: 28px;
    font-weight: 800;
}

.case-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.case-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.92);
    color: inherit;
    text-decoration: none;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.05);
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.case-card:hover {
    transform: translateY(-4px);
    border-color: rgba(216, 12, 30, 0.36);
    box-shadow: 0 24px 46px rgba(15, 23, 42, 0.09);
}

.case-card-media {
    aspect-ratio: 16 / 10;
    border-radius: 0;
    background: #eef2f7;
}

.case-card-media::after {
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.02), rgba(2, 6, 23, 0.18));
}

.case-card-media img {
    object-fit: cover;
    object-position: center;
}

.case-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 14px;
    border-radius: 999px;
    background: var(--color-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.case-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 26px 28px 28px;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.case-card-body > span {
    margin-bottom: 10px;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 800;
}

.case-card-body h3 {
    min-height: 54px;
    margin: 0 0 14px;
    color: var(--color-text-dark);
    font-size: 20px;
    line-height: 1.35;
    font-weight: 800;
}

.case-card-body p {
    margin: 0 0 18px;
    color: rgba(17, 24, 39, 0.62);
    font-size: 14px;
    line-height: 1.75;
}

.case-card-body em {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--color-primary);
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
}

.case-empty {
    display: none;
    padding: 70px 0;
    color: var(--color-gray-600);
    text-align: center;
}

.case-detail-section {
    padding: 80px 0 110px;
}

.case-back-link {
    margin-bottom: 28px;
}

.case-detail-card {
    padding: clamp(28px, 3vw, 46px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.case-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.case-detail-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 14px;
    border-radius: 999px;
    background: rgba(216, 12, 30, 0.1);
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 800;
}

.case-detail-card h2 {
    margin: 0 0 20px;
    color: var(--color-text-dark);
    font-size: clamp(30px, 2.4vw, 42px);
    line-height: 1.24;
}

.case-detail-media {
    border-radius: 8px;
}

@media (max-width: 992px) {
    .case-filter-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .case-filter-group {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .case-filter-row {
        gap: 10px 22px;
    }

    .case-hero-content {
        padding: 54px 0;
    }
}

@media (max-width: 640px) {
    .case-grid {
        grid-template-columns: 1fr;
    }
}

.jaka-toast {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    z-index: 100000;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-width: 90vw;
    white-space: nowrap;
    pointer-events: none;
}
.jaka-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.jaka-toast.error {
    background: rgba(216, 12, 30, 0.95);
}

/* Delivery pass: case center closer to the original site rhythm. */
.case-page-shell {
    background:
        var(--case-pattern, none) center top / 100% auto repeat-y,
        linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.case-hero-official {
    height: clamp(390px, 46vw, 640px);
    min-height: 0;
    padding-top: 0;
    align-items: stretch;
}

.case-hero-official .container,
.case-hero-overlay {
    display: none;
}

.case-hero-bg,
.case-hero-bg img {
    position: static;
    width: 100%;
    height: 100%;
}

.case-hero-bg img {
    object-fit: cover;
    object-position: center center;
}

.case-intro-block {
    max-width: 760px;
    margin-bottom: 34px;
}

.case-intro-block .section-label {
    margin-bottom: 14px;
}

.case-intro-block h1 {
    margin: 0 0 14px;
    color: var(--color-text-dark);
    font-size: clamp(38px, 3.5vw, 64px);
    line-height: 1.1;
    font-weight: 800;
}

.case-intro-block p {
    margin: 0;
    color: rgba(17, 24, 39, 0.66);
    font-size: clamp(16px, 1vw, 20px);
    line-height: 1.75;
}

.case-filter-section {
    padding: 58px 0 0;
    background: rgba(255, 255, 255, 0.82);
}

.case-filter-layout {
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 38px;
}

.case-brand-name {
    padding-top: 3px;
    font-size: clamp(28px, 2.3vw, 40px);
    line-height: 1.1;
}

.case-filter-panel {
    gap: 18px;
    padding-bottom: 42px;
}

.case-filter-group {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 22px;
}

.case-filter-group strong {
    font-size: 22px;
    line-height: 1.45;
}

.case-filter-row {
    gap: 10px 32px;
}

.case-chip {
    font-size: 16px;
    line-height: 1.55;
}

.case-results-section {
    padding: 34px 0 116px;
}

.case-results-head {
    margin-bottom: 28px;
}

.case-results-head h2 {
    font-size: 30px;
    line-height: 1.2;
}

.case-grid {
    gap: 44px 34px;
}

.case-card {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.case-card:hover {
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: none;
}

.case-card-media {
    aspect-ratio: 1.58 / 1;
    border-radius: 0;
    background: #eef2f7;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.07);
}

.case-card-media::after {
    background: linear-gradient(180deg, transparent 0%, rgba(2, 6, 23, 0.16) 100%);
}

.case-card-media img {
    object-fit: cover;
    object-position: center center;
}

.case-card-tag {
    display: none;
}

.case-card-body {
    padding: 18px 0 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.case-card-body > span {
    margin-bottom: 8px;
    color: rgba(17, 24, 39, 0.62);
    font-size: 15px;
    font-weight: 500;
}

.case-card-body h3 {
    min-height: 0;
    margin-bottom: 10px;
    font-size: 22px;
}

.case-card-body p {
    display: -webkit-box;
    min-height: 48px;
    overflow: hidden;
    margin-bottom: 12px;
    color: rgba(17, 24, 39, 0.68);
    font-size: 15px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.case-card-body em {
    color: rgba(17, 24, 39, 0.86);
    font-size: 15px;
}

/* Delivery pass: about timeline follows the original horizontal milestone feeling. */
.about-timeline-assets {
    overflow: hidden;
    padding: 104px 0 118px;
    background:
        radial-gradient(circle at 18% 18%, rgba(216, 12, 30, 0.05), transparent 24%),
        linear-gradient(180deg, #fff 0%, #f7f8fb 100%);
}

.about-timeline-stage {
    position: relative;
    margin-top: 46px;
    padding-bottom: 74px;
}

.about-timeline-swiper {
    overflow: visible;
}

.about-timeline-card {
    position: relative;
    height: auto;
    min-height: 520px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.06);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.about-timeline-card.swiper-slide-active {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
}

.about-timeline-year {
    position: absolute;
    top: 24px;
    left: 28px;
    z-index: 3;
    color: rgba(216, 12, 30, 0.94);
    font-family: var(--font-display);
    font-size: clamp(48px, 5vw, 86px);
    line-height: 1;
    font-weight: 800;
}

.about-timeline-media {
    height: 330px;
    overflow: hidden;
    background: #eef2f7;
}

.about-timeline-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-base);
}

.about-timeline-card:hover .about-timeline-media img {
    transform: scale(1.05);
}

.about-timeline-copy {
    padding: 28px 30px 34px;
}

.about-timeline-copy span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--color-primary);
    font-weight: 800;
}

.about-timeline-copy h3 {
    margin: 0;
    color: var(--color-text-dark);
    font-size: clamp(21px, 1.45vw, 28px);
    line-height: 1.35;
    font-weight: 800;
}

.about-timeline-rail {
    position: absolute;
    right: 110px;
    bottom: 10px;
    left: 0;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(15, 23, 42, 0.12);
}

.about-timeline-rail span {
    position: relative;
    padding-top: 18px;
    color: rgba(17, 24, 39, 0.46);
    font-weight: 700;
    transition: color var(--transition-fast);
}

.about-timeline-rail span::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    transform: translateX(-50%);
    transition: background var(--transition-fast), box-shadow var(--transition-fast);
}

.about-timeline-rail span.is-active {
    color: var(--color-primary);
}

.about-timeline-rail span.is-active::before {
    background: var(--color-primary);
    box-shadow: 0 0 0 7px rgba(216, 12, 30, 0.12);
}

.about-timeline-controls {
    position: absolute;
    right: 0;
    bottom: -6px;
    display: flex;
    gap: 12px;
}

.about-timeline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 50%;
    background: #fff;
    color: var(--color-text-dark);
    cursor: pointer;
    transition: border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.about-timeline-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .case-hero-official {
        height: clamp(340px, 62vw, 560px);
    }

    .case-filter-layout {
        grid-template-columns: 1fr;
    }

    .about-timeline-card {
        min-height: 480px;
    }

    .about-timeline-rail {
        right: 0;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 4px;
    }

    .about-timeline-rail span {
        min-width: 72px;
        text-align: center;
    }

    .about-timeline-controls {
        display: none;
    }
}

@media (max-width: 640px) {
    .case-filter-section {
        padding-top: 42px;
    }

    .case-grid {
        gap: 34px;
    }

    .case-card-media {
        aspect-ratio: 4 / 3;
    }

    .about-timeline-assets {
        padding: 76px 0 86px;
    }

    .about-timeline-card {
        min-height: 430px;
    }

    .about-timeline-media {
        height: 245px;
    }
}

/* Final restore pass: large clean media, lighter official page rhythm. */
.case-page-shell,
.about-values,
.about-intro-light,
.about-stats-document,
.about-offices,
.about-certificates {
    background:
        url("../images/home/pattern/impgbg.png") center top / 100% auto repeat-y,
        #fff;
}

.case-hero-official {
    height: clamp(460px, 52vw, 760px);
    background: #fff;
}

.case-hero-bg img {
    object-fit: contain;
    object-position: center center;
    background: #fff;
}

.case-filter-section {
    padding-top: clamp(50px, 5vw, 84px);
}

.case-intro-block {
    max-width: 940px;
}

.case-filter-layout {
    grid-template-columns: minmax(120px, 170px) minmax(0, 1fr);
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding-top: 30px;
}

.case-filter-panel {
    border-bottom-style: solid;
}

.case-grid {
    gap: clamp(30px, 3vw, 52px) clamp(24px, 2.4vw, 42px);
}

.case-card-media {
    aspect-ratio: 16 / 10;
}

.case-card-body h3 {
    font-size: clamp(20px, 1.35vw, 25px);
}

.about-hero-video {
    height: clamp(560px, 56vw, 860px);
    min-height: 560px;
    align-items: flex-end;
    background: #080b10;
}

.about-hero-bg video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.about-hero-bg .hero-overlay {
    background:
        linear-gradient(90deg, rgba(3, 7, 18, 0.58) 0%, rgba(3, 7, 18, 0.28) 38%, rgba(3, 7, 18, 0.05) 72%),
        linear-gradient(0deg, rgba(3, 7, 18, 0.56) 0%, rgba(3, 7, 18, 0.08) 48%, transparent 100%) !important;
}

.about-hero-content {
    max-width: 780px;
    margin: 0 0 clamp(54px, 7vw, 104px);
    text-align: left;
}

.about-hero-title {
    max-width: 760px;
    font-size: clamp(46px, 5.4vw, 82px);
    line-height: 1.05;
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
}

.about-hero-tagline {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.7;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.38);
}

.about-value-card {
    border-radius: 0;
    box-shadow: none;
    border-color: rgba(15, 23, 42, 0.08);
}

.about-intro-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    align-items: center;
}

.about-intro-video-card {
    overflow: hidden;
    border-radius: 0;
    background: #05070b;
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
}

.about-intro-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #05070b;
    object-fit: contain;
}

.about-office-image img {
    object-fit: cover;
    object-position: center;
}

.about-timeline-assets {
    background:
        url("../images/home/pattern/impgbg.png") center top / 100% auto repeat-y,
        linear-gradient(180deg, #fff 0%, #f7f8fb 100%);
}

.about-timeline-card {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.about-timeline-card.swiper-slide-active {
    transform: translateY(-8px);
    box-shadow: none;
}

.about-timeline-media {
    height: clamp(300px, 24vw, 420px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.08);
}

.about-timeline-copy {
    padding: 24px 0 0;
}

.about-timeline-year {
    top: 18px;
    left: 0;
    text-shadow: 0 10px 30px rgba(255, 255, 255, 0.7);
}

@media (max-width: 992px) {
    .case-filter-layout,
    .about-intro-grid {
        grid-template-columns: 1fr;
    }

    .case-hero-official {
        height: clamp(360px, 62vw, 620px);
    }

    .about-hero-video {
        height: clamp(520px, 72vw, 700px);
    }
}

@media (max-width: 640px) {
    .about-hero-video {
        min-height: 500px;
        height: 500px;
    }

    .about-hero-content {
        margin-bottom: 42px;
    }

    .about-hero-title {
        font-size: 40px;
    }

    .case-hero-official {
        height: 360px;
    }
}

/* ── Strategic Cooperation Page ── */
/* Browser comment restore pass: official-style horizontal company history carousel. */
.about-timeline-assets {
    position: relative;
    overflow: hidden;
    padding: clamp(8px, 1.4vw, 20px) 0 clamp(112px, 9vw, 150px);
    background:
        linear-gradient(112deg, rgba(231, 244, 255, 0.9) 0 40%, rgba(255, 255, 255, 0.74) 40% 100%),
        url("../images/home/pattern/impgbg.png") center top / 100% auto repeat-y,
        #f7fbff;
}

.about-timeline-assets::before {
    content: "";
    position: absolute;
    inset: -8% auto -12% 5%;
    width: 38%;
    background: linear-gradient(104deg, rgba(157, 180, 204, 0.16), rgba(255, 255, 255, 0));
    transform: skewX(-12deg);
    pointer-events: none;
}

.about-timeline-assets .container {
    position: relative;
    z-index: 1;
    max-width: min(1200px, calc(100vw - 88px));
}

.about-timeline-assets .section-header {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-timeline-assets .section-label {
    margin-bottom: 14px;
    color: var(--color-primary);
    letter-spacing: 0.18em;
}

.about-timeline-assets .section-title {
    color: #07182d;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.14;
    letter-spacing: 0;
}

.about-timeline-stage {
    margin-top: clamp(28px, 3.4vw, 44px);
    padding-bottom: clamp(88px, 9vw, 118px);
}

.about-timeline-swiper {
    overflow: visible;
    margin-right: calc((100vw - 100%) / -2);
    padding-right: clamp(54px, 7vw, 128px);
}

.about-timeline-card,
.about-timeline-card.swiper-slide-active {
    min-height: auto;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
}

.about-timeline-card {
    transition: opacity var(--transition-base);
}

.about-timeline-card:not(.swiper-slide-visible) {
    opacity: 0.55;
}

.about-timeline-year {
    top: clamp(16px, 2vw, 26px);
    left: 0;
    z-index: 2;
    color: rgba(195, 29, 67, 0.96);
    font-size: clamp(58px, 7vw, 96px);
    font-weight: 800;
    letter-spacing: 0;
    text-shadow: none;
}

.about-timeline-media {
    height: clamp(330px, 34vw, 430px);
    overflow: hidden;
    background: #e8eef5;
    box-shadow: none;
}

.about-timeline-media img {
    filter: saturate(0.96) contrast(1.02);
}

.about-timeline-card:hover .about-timeline-media img {
    transform: scale(1.035);
}

.about-timeline-copy {
    padding: clamp(22px, 2.4vw, 30px) 0 0;
}

.about-timeline-copy span {
    margin-bottom: 18px;
    color: var(--color-primary);
    font-size: 18px;
    line-height: 1;
    font-weight: 800;
}

.about-timeline-copy h3 {
    max-width: 94%;
    color: #07182d;
    font-size: clamp(22px, 2.3vw, 32px);
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: 0;
}

.about-timeline-rail {
    --timeline-progress: 0%;
    right: 116px;
    bottom: 2px;
    left: 0;
    align-items: flex-start;
    border-top: 1px solid rgba(119, 145, 174, 0.28);
}

.about-timeline-rail::after {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: var(--timeline-progress);
    height: 1px;
    background: rgba(216, 12, 30, 0.34);
    transition: width var(--transition-base);
}

.about-timeline-rail button {
    position: relative;
    min-width: 64px;
    padding: 20px 0 0;
    border: 0;
    background: transparent;
    color: rgba(71, 91, 117, 0.5);
    font: inherit;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.about-timeline-rail button::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bdd0e3;
    transform: translateX(-50%);
    transition: background var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.about-timeline-rail button:hover,
.about-timeline-rail button:focus-visible,
.about-timeline-rail button.is-active {
    color: var(--color-primary);
}

.about-timeline-rail button.is-active::before {
    background: var(--color-primary);
    box-shadow: 0 0 0 8px rgba(216, 12, 30, 0.12);
    transform: translateX(-50%) scale(1.04);
}

.about-timeline-rail button:focus-visible {
    outline: 2px solid rgba(216, 12, 30, 0.45);
    outline-offset: 8px;
}

.about-timeline-controls {
    right: 0;
    bottom: -22px;
    gap: 14px;
}

.about-timeline-btn {
    width: 56px;
    height: 56px;
    border-color: rgba(119, 145, 174, 0.18);
    background: rgba(247, 252, 255, 0.92);
    box-shadow: 0 12px 28px rgba(7, 24, 45, 0.08);
}

.about-timeline-btn:hover {
    background: #fff;
}

@media (max-width: 992px) {
    .about-timeline-assets {
        padding-top: 52px;
    }

    .about-timeline-assets .container {
        max-width: calc(100vw - 44px);
    }

    .about-timeline-swiper {
        margin-right: 0;
        padding-right: 0;
    }

    .about-timeline-media {
        height: clamp(280px, 50vw, 380px);
    }

    .about-timeline-rail {
        right: 0;
        overflow-x: auto;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .about-timeline-rail::-webkit-scrollbar {
        display: none;
    }

    .about-timeline-rail button {
        min-width: 78px;
        font-size: 18px;
    }

    .about-timeline-controls {
        display: none;
    }
}

@media (max-width: 640px) {
    .about-timeline-assets {
        padding: 46px 0 92px;
    }

    .about-timeline-assets .section-title {
        font-size: 32px;
    }

    .about-timeline-stage {
        margin-top: 32px;
        padding-bottom: 82px;
    }

    .about-timeline-media {
        height: 245px;
    }

    .about-timeline-year {
        font-size: 56px;
    }

    .about-timeline-copy h3 {
        font-size: 22px;
    }
}

/* Restore pass: JAKA-style history tabs and years below images, not over images. */
.about-history-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    max-width: 960px;
    margin: clamp(26px, 3vw, 38px) auto 0;
}

.about-history-tab {
    min-height: 76px;
    padding: 12px 10px;
    border: 0;
    background: rgba(255, 255, 255, 0.38);
    color: rgba(7, 24, 45, 0.78);
    font: inherit;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.about-history-tab span,
.about-history-tab em {
    display: block;
}

.about-history-tab em {
    margin-top: 3px;
    font-style: normal;
}

.about-history-tab:hover,
.about-history-tab:focus-visible,
.about-history-tab.is-active {
    background: #c41f48;
    color: #fff;
}

.about-history-tab:focus-visible {
    outline: 2px solid rgba(196, 31, 72, 0.42);
    outline-offset: 4px;
}

.about-timeline-card,
.about-timeline-card.swiper-slide-active {
    display: flex;
    flex-direction: column;
}

.about-timeline-media {
    order: 1;
}

.about-timeline-year {
    position: static;
    order: 2;
    margin: clamp(22px, 2.4vw, 34px) 0 0;
    color: rgba(7, 24, 45, 0.26);
    font-size: clamp(56px, 7vw, 92px);
    line-height: 0.92;
    text-align: center;
    text-shadow: none;
    pointer-events: none;
}

.about-timeline-card.swiper-slide-active .about-timeline-year {
    color: #07182d;
}

.about-timeline-copy {
    order: 3;
    padding-top: 10px;
    text-align: center;
}

.about-timeline-copy span {
    display: none;
}

.about-timeline-copy h3 {
    max-width: 520px;
    margin: 0 auto;
    font-size: clamp(18px, 1.6vw, 24px);
    line-height: 1.55;
}

@media (max-width: 992px) {
    .about-history-tabs {
        display: flex;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 10px;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .about-history-tabs::-webkit-scrollbar {
        display: none;
    }

    .about-history-tab {
        flex: 0 0 168px;
    }
}

@media (max-width: 640px) {
    .about-history-tab {
        flex-basis: 150px;
        min-height: 68px;
        font-size: 14px;
    }

    .about-timeline-year {
        font-size: 54px;
    }
}

/* Final visual lock: remove red year overlays and align about/case sections closer to the JAKA references. */
.about-timeline-assets {
    padding: clamp(58px, 6vw, 86px) 0 clamp(74px, 8vw, 112px);
    background:
        linear-gradient(112deg, rgba(222, 240, 255, 0.92) 0 45%, rgba(240, 248, 255, 0.76) 45% 100%),
        url("../images/home/pattern/impgbg.png") center top / 100% auto repeat-y,
        #dcefff;
}

.about-timeline-assets .section-label,
.about-timeline-assets .section-title {
    letter-spacing: 0;
}

.about-timeline-assets .section-label {
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 800;
}

.about-timeline-assets .section-title {
    color: #07182d;
    font-size: clamp(26px, 2.9vw, 38px);
    line-height: 1.25;
    font-weight: 800;
}

.about-history-tabs {
    max-width: 940px;
    margin-top: clamp(22px, 2.6vw, 34px);
    gap: 12px;
}

.about-history-tab {
    min-height: 72px;
    background: rgba(255, 255, 255, 0.34);
    color: #12243a;
    font-size: 16px;
}

.about-history-tab.is-active {
    background: #c31f48;
}

.about-timeline-stage {
    margin-top: clamp(38px, 4.5vw, 62px);
    padding-bottom: 0;
}

.about-timeline-swiper {
    max-width: 920px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
}

.about-timeline-card {
    opacity: 0.44;
    transform: scale(0.86);
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.about-timeline-card.swiper-slide-visible {
    opacity: 0.62;
}

.about-timeline-card.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.about-timeline-media {
    height: clamp(190px, 17vw, 270px);
    background: transparent;
    box-shadow: none;
}

.about-timeline-media img {
    opacity: 1;
    filter: none;
}

.about-timeline-year {
    position: static;
    top: auto;
    left: auto;
    z-index: auto;
    order: 2;
    margin: clamp(20px, 2.4vw, 30px) 0 0;
    color: rgba(7, 24, 45, 0.2);
    font-size: clamp(58px, 7vw, 90px);
    line-height: 0.9;
    text-align: center;
    text-shadow: none;
}

.about-timeline-card.swiper-slide-active .about-timeline-year {
    color: #07182d;
}

.about-timeline-copy {
    padding-top: 8px;
    text-align: center;
}

.about-timeline-copy h3 {
    max-width: 540px;
    font-size: clamp(16px, 1.35vw, 20px);
    line-height: 1.55;
    font-weight: 700;
}

.about-timeline-rail {
    display: none;
}

.about-timeline-controls {
    right: 0;
    bottom: 34%;
    left: 0;
    justify-content: space-between;
    pointer-events: none;
}

.about-timeline-btn {
    pointer-events: auto;
}

.about-certificates {
    padding: clamp(54px, 6vw, 78px) 0;
}

.about-certificate-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 28px);
    max-width: 1000px;
    margin: 0 auto;
}

.about-certificate-grid img {
    width: 100%;
    height: clamp(150px, 15vw, 220px);
    display: block;
    object-fit: cover;
}

.about-cta {
    display: none;
}

.case-hero-official {
    height: clamp(360px, 35vw, 500px);
    background: #111827;
}

.case-hero-official .container {
    position: relative;
    z-index: 2;
    display: block;
    height: 100%;
}

.case-hero-bg,
.case-hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.case-hero-bg img {
    object-fit: cover;
    object-position: center;
    background: #111827;
    filter: brightness(0.58);
}

.case-hero-overlay {
    display: block;
    background: rgba(0, 0, 0, 0.22);
}

.case-hero-content {
    max-width: none;
    height: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.case-hero-content .section-label {
    display: none;
}

.case-hero-content h1 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    font-weight: 800;
}

.case-hero-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(15px, 1.2vw, 19px);
}

.case-filter-section {
    padding: clamp(42px, 4.4vw, 62px) 0 12px;
    background: #fff;
}

.case-intro-block,
.case-brand-name {
    display: none;
}

.case-filter-layout {
    display: block;
    max-width: 960px;
    margin: 0 auto;
    padding-top: 0;
    border-top: 0;
}

.case-filter-panel {
    gap: 18px;
    padding-bottom: 34px;
    border-bottom: 1px dashed rgba(15, 23, 42, 0.18);
}

.case-filter-group {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 20px;
}

.case-filter-group strong {
    font-size: 22px;
    line-height: 1.45;
}

.case-filter-row {
    gap: 8px 28px;
}

.case-chip {
    color: rgba(17, 24, 39, 0.48);
    font-size: 16px;
}

.case-chip.active,
.case-chip:hover {
    color: var(--color-primary);
}

.case-results-section {
    padding: 22px 0 110px;
    background: #fff;
}

.case-results-section .container {
    max-width: 960px;
}

.case-results-head {
    margin-bottom: 24px;
}

.case-results-head h2 {
    font-size: 26px;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: dense;
    grid-auto-rows: 112px;
    gap: 8px;
}

.case-card {
    position: relative;
    min-height: 0;
    grid-row: span 2;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #07182d;
    box-shadow: none;
}

.case-card:nth-child(5n + 2),
.case-card:nth-child(7n + 5) {
    grid-row: span 3;
}

.case-card:nth-child(9n + 7) {
    grid-column: span 2;
}

.case-card:hover {
    transform: none;
    box-shadow: none;
}

.case-card-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    background: #07182d;
    box-shadow: none;
}

.case-card-media::after {
    background: linear-gradient(180deg, rgba(7, 24, 45, 0.05) 0%, rgba(7, 24, 45, 0.34) 48%, rgba(7, 24, 45, 0.78) 100%);
}

.case-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-base);
}

.case-card:hover .case-card-media img {
    transform: scale(1.04);
}

.case-card-tag,
.case-card-body > span,
.case-card-body p,
.case-card-body em {
    display: none;
}

.case-card-body {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    padding: 22px 24px;
    background: transparent;
}

.case-card-body h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(17px, 1.45vw, 23px);
    line-height: 1.35;
    font-weight: 800;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.36);
}

@media (max-width: 992px) {
    .about-timeline-assets .container {
        max-width: calc(100vw - 44px);
    }

    .about-timeline-controls {
        display: none;
    }

    .case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .case-card:nth-child(9n + 7) {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    .about-history-tabs {
        margin-right: -22px;
    }

    .about-timeline-media {
        height: 220px;
    }

    .about-certificate-grid,
    .case-grid {
        grid-template-columns: 1fr;
    }

    .case-card,
    .case-card:nth-child(5n + 2),
    .case-card:nth-child(7n + 5) {
        grid-row: span 2;
    }
}

.strategy-hero {
    position: relative;
    padding: 150px 0 110px;
    background: linear-gradient(135deg, #07152d 0%, #0f766e 58%, #153b6f 100%);
    color: var(--color-white);
    overflow: hidden;
}
.strategy-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -45% 35%;
    height: 420px;
    background: radial-gradient(circle, rgba(255,255,255,0.16), rgba(255,255,255,0));
    pointer-events: none;
}
.strategy-hero-content {
    position: relative;
    z-index: 1;
    max-width: 840px;
}
.strategy-hero-content h1 {
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.08;
    margin: 14px 0 22px;
    color: var(--color-white);
    letter-spacing: 0;
}
.strategy-hero-content p {
    max-width: 760px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
}
.strategy-main {
    padding: 80px 0 110px;
    background: var(--color-bg);
}
.strategy-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 56px;
    align-items: start;
    min-width: 0;
}
.strategy-sidebar {
    position: sticky;
    top: 110px;
    min-width: 0;
}
.strategy-sidebar nav {
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-white);
}
.strategy-sidebar a {
    display: block;
    padding: 12px 14px;
    border-radius: 6px;
    color: var(--color-text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: background .2s ease, color .2s ease;
}
.strategy-sidebar a:hover {
    background: rgba(216,12,30,0.08);
    color: var(--color-primary);
}
.strategy-content {
    display: grid;
    gap: 86px;
    min-width: 0;
}
.strategy-section {
    scroll-margin-top: 110px;
}
.strategy-section-head {
    max-width: 760px;
    margin-bottom: 30px;
}
.strategy-section-head h2 {
    font-size: clamp(30px, 3.2vw, 44px);
    line-height: 1.18;
    margin: 12px 0 14px;
    color: var(--color-text-dark);
}
.strategy-section-head p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-light);
}
.strategy-photo-grid {
    display: grid;
    gap: 18px;
}
.exhibition-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.strategy-photo-card {
    position: relative;
    min-height: 260px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--color-gray-100);
}
.strategy-photo-card img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}
.strategy-photo-card:hover img {
    transform: scale(1.04);
}
.strategy-photo-card figcaption {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(7,21,45,0.78);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 700;
}
.strategy-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.strategy-video-card {
    position: relative;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: var(--color-white);
    background: linear-gradient(135deg, #0d1830, #0f766e);
    transition: transform .25s ease, box-shadow .25s ease;
}

.strategy-youtube-embed {
    width: min(100%, 1120px);
    margin: 0 auto 32px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 18px;
    background: #0b1220;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.16);
}

.strategy-youtube-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}
.strategy-video-card.has-image {
    background-color: #0d1830;
    background-image:
        linear-gradient(180deg, rgba(5, 12, 28, 0.04), rgba(5, 12, 28, 0.46)),
        var(--strategy-video-image);
    background-size: cover;
    background-position: center;
}
.strategy-video-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(0,0,0,0.34));
}
.strategy-video-card.has-image::before {
    background:
        linear-gradient(90deg, rgba(7, 14, 30, 0.38), rgba(7, 14, 30, 0.08) 58%, rgba(7, 14, 30, 0.24)),
        linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.18));
}
.strategy-video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(5,12,28,0.10);
}
.strategy-video-index,
.strategy-video-play,
.strategy-video-card h3,
.strategy-video-link {
    position: relative;
    z-index: 1;
}
.strategy-video-index {
    position: absolute;
    top: 20px;
    left: 22px;
    font-family: var(--font-display);
    font-size: 38px;
    line-height: 1;
    font-weight: 800;
    color: rgba(255,255,255,0.22);
}
.strategy-video-play {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
}
.strategy-video-play::after {
    content: "";
    position: absolute;
    left: 18px;
    top: 13px;
    border-left: 14px solid var(--color-white);
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
}
.strategy-video-card h3 {
    font-size: 18px;
    line-height: 1.55;
    color: var(--color-white);
    margin-bottom: 18px;
}
.strategy-video-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--color-white);
}
@media (max-width: 1180px) {
    .strategy-layout { grid-template-columns: 200px minmax(0, 1fr); gap: 34px; }
    .strategy-video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 992px) {
    .strategy-layout { grid-template-columns: 1fr; }
    .strategy-sidebar { position: static; width: 100%; overflow: hidden; }
    .strategy-sidebar nav { display: flex; max-width: 100%; overflow-x: auto; white-space: nowrap; }
    .strategy-sidebar a { flex: 0 0 auto; }
    .exhibition-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
}
@media (max-width: 768px) {
    .strategy-hero { padding: 120px 0 80px; }
    .strategy-main { padding: 56px 0 80px; }
    .strategy-content { gap: 64px; }
    .project-grid,
    .strategy-video-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .strategy-hero-content h1 { font-size: 36px; }
    .strategy-hero-content p { font-size: 16px; }
    .strategy-sidebar nav {
        flex-wrap: wrap;
        overflow-x: visible;
        white-space: normal;
    }
    .strategy-sidebar a {
        flex: 1 1 calc(50% - 8px);
        text-align: center;
    }
    .exhibition-grid { grid-template-columns: 1fr; }
    .strategy-photo-card,
    .strategy-photo-card img { min-height: 220px; }
    .strategy-video-card { min-height: 230px; padding: 22px; }
}

/* Solutions page official-style light restore */
.solutions-page-shell {
    --solutions-page-bg: #f7f9fc;
    position: relative;
    overflow: hidden;
    background: var(--solutions-page-bg);
    background-image: var(--solutions-pattern);
    background-repeat: repeat-y;
    background-size: 100% auto;
    background-position: top center;
}

.solutions-hero-light {
    height: auto;
    min-height: 420px;
    padding: calc(var(--header-height, 80px) + 92px) 0 96px;
    background: transparent;
}

.solutions-hero-light .page-hero-bg {
    background: transparent;
}

.solutions-hero-light .page-hero-bg .hero-overlay {
    background: linear-gradient(180deg, rgba(247,249,252,0.94), rgba(247,249,252,0.68)) !important;
}

.solutions-hero-light .page-hero-content h1 {
    color: #000;
}

.solutions-hero-light .page-hero-content p {
    color: #666;
}

.solutions-page-shell .section-label {
    color: var(--color-primary);
}

.solutions-page-section,
.solutions-application-section,
.solutions-workstation-section {
    position: relative;
    background: transparent;
}

.solutions-page-section .section-title,
.solutions-application-section .section-title,
.solutions-workstation-section .section-title {
    color: #000;
}

.solutions-page-section .industry-grid,
.solutions-workstation-section .workstation-grid {
    gap: 28px;
}

.solutions-page-section .industry-card,
.solutions-workstation-section .workstation-card {
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

.solutions-page-section .industry-card-media,
.solutions-workstation-section .workstation-img {
    aspect-ratio: 16 / 10;
}

.solutions-page-section .industry-card-content {
    display: flex;
    min-height: 232px;
    flex-direction: column;
    padding: 28px 24px 24px;
}

.solutions-page-section .industry-card p {
    min-height: 70px;
}

.solutions-page-section .industry-card .solution-link {
    margin-top: auto;
    color: var(--color-primary);
}

.solutions-workstation-section .workstation-info {
    display: flex;
    min-height: 206px;
    flex-direction: column;
    padding: 24px;
}

.solutions-workstation-section .workstation-info p {
    line-height: 1.75;
    margin-bottom: 18px;
}

.solutions-workstation-section .workstation-info .btn {
    margin-top: auto;
    align-self: flex-start;
}

.solutions-page-shell .solutions-cta {
    background: transparent;
}

/* About page fidelity pass: global map and JAKA-style history stage */
.about-offices {
    position: relative;
    overflow: hidden;
    padding: clamp(78px, 7vw, 118px) 0 clamp(58px, 6vw, 96px);
    background:
        url("../images/home/pattern/impgbg.png") center top / 100% auto repeat-y,
        #fff;
}

.about-offices .container {
    width: min(100%, 1680px);
    max-width: none;
}

.about-offices .section-header {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
}

.about-offices .section-label {
    display: none;
}

.about-offices .section-title {
    margin: 0;
    color: #070b15;
    font-size: clamp(30px, 3.1vw, 52px);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0;
}

.about-office-layout {
    position: relative;
    display: block;
    width: min(100%, 1520px);
    height: clamp(520px, 43vw, 720px);
    margin: clamp(26px, 3vw, 46px) auto 0;
}

.about-office-image {
    position: absolute;
    inset: 0;
    background:
        url("../images/about/world-map.png") center 43% / min(1480px, 94vw) auto no-repeat;
}

.about-office-image img {
    display: none;
}

.about-office-layout::before {
    content: "";
    position: absolute;
    inset: 4% 2% 18%;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(circle at 23% 44%, #e4002b 0 3px, rgba(228, 0, 43, 0.16) 4px 10px, transparent 11px),
        radial-gradient(circle at 31% 69%, #e4002b 0 3px, rgba(228, 0, 43, 0.16) 4px 10px, transparent 11px),
        radial-gradient(circle at 48% 36%, #e4002b 0 3px, rgba(228, 0, 43, 0.16) 4px 10px, transparent 11px),
        radial-gradient(circle at 58% 42%, #e4002b 0 3px, rgba(228, 0, 43, 0.16) 4px 10px, transparent 11px),
        radial-gradient(circle at 73% 55%, #e4002b 0 3px, rgba(228, 0, 43, 0.16) 4px 10px, transparent 11px),
        radial-gradient(circle at 80% 44%, #e4002b 0 3px, rgba(228, 0, 43, 0.16) 4px 10px, transparent 11px);
}

.about-office-layout::after {
    content: "中国济南";
    position: absolute;
    z-index: 2;
    top: 30%;
    right: 19%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(108px, 10vw, 172px);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(228, 0, 43, 0.9) 0 31%, rgba(228, 0, 43, 0.08) 32% 33%, transparent 34%),
        radial-gradient(circle, transparent 0 54%, rgba(228, 0, 43, 0.16) 55% 57%, transparent 58%);
    color: #fff;
    font-size: clamp(13px, 1.1vw, 20px);
    font-weight: 800;
    opacity: 0.9;
    pointer-events: none;
}

.about-office-list {
    position: absolute;
    right: clamp(34px, 6vw, 96px);
    bottom: 0;
    left: clamp(34px, 6vw, 96px);
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(300px, 1.18fr) repeat(2, minmax(220px, 1fr));
    gap: clamp(14px, 1.4vw, 24px);
    align-items: end;
}

.about-office-card {
    min-height: 92px;
    padding: clamp(22px, 2vw, 32px);
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.about-office-card:first-child {
    min-height: clamp(190px, 15vw, 250px);
}

.about-office-card h3 {
    margin-bottom: 14px;
    color: #090d17;
    font-size: clamp(22px, 1.7vw, 30px);
    font-weight: 800;
}

.about-office-card p {
    margin: 0;
    color: #333b49;
    font-size: clamp(15px, 1vw, 18px);
    line-height: 1.85;
}

.about-timeline-assets {
    position: relative;
    overflow: hidden;
    min-height: clamp(700px, 61vw, 940px);
    padding: clamp(76px, 7vw, 112px) 0 clamp(86px, 7vw, 120px);
    background:
        url("../images/about/about-history-bg.png") center bottom / cover no-repeat,
        linear-gradient(180deg, #fff 0%, #f7fafc 100%);
}

.about-timeline-assets::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 48%;
    background: linear-gradient(105deg, rgba(216, 237, 252, 0.72), rgba(216, 237, 252, 0) 72%);
    transform: skewX(-12deg) translateX(-16%);
    transform-origin: top left;
    pointer-events: none;
}

.about-timeline-assets .container {
    position: relative;
    z-index: 1;
    width: min(100%, 1680px);
    max-width: none;
    padding: 0 clamp(24px, 4vw, 72px);
}

.about-timeline-assets .section-header {
    max-width: 1160px;
    margin: 0 auto;
    text-align: center;
}

.about-timeline-assets .section-label,
.about-timeline-assets .section-title {
    letter-spacing: 0;
}

.about-timeline-assets .section-label {
    color: #e4002b;
    font-size: clamp(17px, 1.2vw, 22px);
    line-height: 1;
    font-weight: 800;
}

.about-timeline-assets .section-title {
    margin-top: clamp(18px, 1.5vw, 26px);
    color: #07182d;
    font-size: clamp(34px, 3.2vw, 56px);
    line-height: 1.18;
    font-weight: 800;
}

.about-history-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: min(1180px, 86vw);
    max-width: none;
    margin: clamp(34px, 3.2vw, 52px) auto 0;
    gap: clamp(10px, 1.2vw, 18px);
}

.about-history-tab {
    min-height: clamp(72px, 5.4vw, 92px);
    padding: 12px 16px;
    border: 0;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.035);
    color: #0c1a2b;
    font-size: clamp(15px, 1vw, 18px);
    font-weight: 800;
    line-height: 1.45;
}

.about-history-tab em {
    margin-top: 2px;
    font-style: normal;
    font-weight: 800;
}

.about-history-tab.is-active {
    background: #d8002a;
    color: #fff;
    box-shadow: none;
}

.about-timeline-stage {
    position: relative;
    width: min(1380px, 92vw);
    max-width: none;
    min-height: clamp(440px, 36vw, 590px);
    margin: clamp(56px, 4.6vw, 84px) auto 0;
    padding: 0 clamp(58px, 5vw, 92px);
}

.about-timeline-swiper {
    max-width: min(1220px, 74vw);
    overflow: visible;
    margin: 0 auto;
    padding: 0;
}

.about-timeline-swiper::before,
.about-timeline-swiper::after {
    content: "";
    position: absolute;
    top: -8%;
    bottom: 25%;
    z-index: 4;
    width: 18%;
    pointer-events: none;
}

.about-timeline-swiper::before {
    left: -10%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0));
}

.about-timeline-swiper::after {
    right: -10%;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0));
}

.about-timeline-card,
.about-timeline-card.swiper-slide-active {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.82);
    transition:
        opacity 520ms ease,
        transform 520ms ease,
        visibility 520ms ease;
}

.about-timeline-card.swiper-slide-prev,
.about-timeline-card.swiper-slide-next,
.about-timeline-card.swiper-slide-active {
    visibility: visible;
}

.about-timeline-card.swiper-slide-prev,
.about-timeline-card.swiper-slide-next {
    opacity: 0.38;
}

.about-timeline-card.swiper-slide-prev {
    transform: translateX(18px) scale(0.78);
}

.about-timeline-card.swiper-slide-next {
    transform: translateX(-18px) scale(0.78);
}

.about-timeline-card.swiper-slide-active {
    z-index: 3;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.about-timeline-media {
    order: 1;
    width: 100%;
    height: clamp(190px, 14vw, 260px);
    overflow: visible;
    background: transparent;
    box-shadow: none;
}

.about-timeline-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: none;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}

.about-timeline-card.swiper-slide-active .about-timeline-media img {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.about-timeline-year {
    order: 2;
    position: static;
    z-index: auto;
    margin: clamp(28px, 3vw, 44px) 0 0;
    color: rgba(7, 24, 45, 0.18);
    font-size: clamp(68px, 7vw, 118px);
    line-height: 0.88;
    font-weight: 800;
    letter-spacing: 0;
    text-align: center;
    text-shadow: none;
}

.about-timeline-card.swiper-slide-active .about-timeline-year {
    color: #07182d;
    font-size: clamp(84px, 8vw, 140px);
}

.about-timeline-copy {
    order: 3;
    max-width: 420px;
    padding: clamp(16px, 1.4vw, 24px) 0 0;
    text-align: center;
}

.about-timeline-copy span {
    display: none;
}

.about-timeline-copy h3 {
    max-width: 420px;
    margin: 0 auto;
    color: #07182d;
    font-size: clamp(17px, 1.2vw, 22px);
    line-height: 1.48;
    font-weight: 800;
}

.about-timeline-card:not(.swiper-slide-active) .about-timeline-copy {
    opacity: 0.45;
}

.about-timeline-rail {
    display: none;
}

.about-timeline-controls {
    position: absolute;
    top: 35%;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.about-timeline-btn {
    width: clamp(48px, 4vw, 62px);
    height: clamp(48px, 4vw, 62px);
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.86);
    color: #d8002a;
    box-shadow: 0 18px 52px rgba(15, 23, 42, 0.08);
    pointer-events: auto;
}

.about-timeline-btn:hover {
    background: #fff;
    color: #d8002a;
    transform: translateY(-1px);
}

@media (max-width: 1180px) {
    .about-office-list {
        right: 28px;
        left: 28px;
    }

    .about-history-tabs {
        width: min(100%, 1040px);
    }

    .about-timeline-stage {
        width: min(100%, 1120px);
        padding-right: 48px;
        padding-left: 48px;
    }

    .about-timeline-swiper {
        max-width: min(1040px, 76vw);
    }
}

@media (max-width: 900px) {
    .about-offices {
        padding-top: 64px;
    }

    .about-office-layout {
        width: min(100%, calc(100vw - 32px));
        height: auto;
        min-height: 0;
        padding-top: clamp(280px, 58vw, 430px);
    }

    .about-office-image {
        bottom: auto;
        height: clamp(260px, 54vw, 400px);
        background-size: 120% auto;
    }

    .about-office-layout::after {
        top: 22%;
        right: 14%;
    }

    .about-office-list {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about-office-card:first-child {
        min-height: 0;
    }

    .about-timeline-assets {
        min-height: 0;
        padding-top: 64px;
        padding-bottom: 74px;
    }

    .about-history-tabs {
        display: flex;
        width: calc(100vw - 32px);
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 8px;
        scroll-snap-type: x proximity;
    }

    .about-history-tab {
        flex: 0 0 min(220px, 66vw);
        scroll-snap-align: center;
    }

    .about-timeline-stage {
        width: 100%;
        min-height: 0;
        margin-top: 42px;
        padding: 0 34px;
    }

    .about-timeline-swiper {
        max-width: min(520px, 82vw);
    }

    .about-timeline-card.swiper-slide-prev,
    .about-timeline-card.swiper-slide-next {
        opacity: 0.22;
    }

    .about-timeline-media {
        height: clamp(220px, 48vw, 320px);
    }

    .about-timeline-controls {
        top: 34%;
    }
}

@media (max-width: 560px) {
    .about-offices .container,
    .about-timeline-assets .container {
        padding-right: 16px;
        padding-left: 16px;
    }

    .about-office-card {
        padding: 20px;
    }

    .about-timeline-assets .section-title {
        font-size: 28px;
    }

    .about-history-tab {
        min-height: 68px;
        font-size: 14px;
    }

    .about-timeline-stage {
        padding-right: 12px;
        padding-left: 12px;
    }

    .about-timeline-swiper {
        max-width: 88vw;
    }

    .about-timeline-swiper::before,
    .about-timeline-swiper::after {
        display: none;
    }

    .about-timeline-year,
    .about-timeline-card.swiper-slide-active .about-timeline-year {
        font-size: 66px;
    }

    .about-timeline-copy h3 {
        font-size: 16px;
        line-height: 1.55;
    }
}

/* Product list compact repair + about map video-match polish */
body.page-template-page-products .pls-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: clamp(18px, 1.5vw, 28px);
    align-items: stretch;
}

body.page-template-page-products .pls-product-box {
    display: flex;
    min-height: 0;
    flex-direction: column;
}

body.page-template-page-products .pls-product-img {
    aspect-ratio: 4 / 3;
    padding-bottom: 0;
    background: #fbfbfb;
}

body.page-template-page-products .pls-product-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    padding: clamp(12px, 1vw, 18px);
}

body.page-template-page-products .pls-product-name {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 14px 12px 12px;
    line-height: 1.35;
}

body.page-template-page-products .pls-product-desc {
    display: -webkit-box;
    min-height: 70px;
    margin: 0;
    padding: 0 18px 20px;
    overflow: hidden;
    color: var(--color-gray-600);
    font-size: 13px;
    line-height: 1.6;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

body.page-template-page-products .pls-product-box:hover .pls-product-img img {
    transform: scale(1.035);
    transition: transform 0.42s ease;
}

.about-office-layout {
    height: clamp(560px, 45vw, 770px);
}

.about-office-image {
    background-position: center 47%;
    background-size: min(1600px, 96vw) auto;
}

.about-office-layout::after {
    display: none;
}

.about-office-main-pin {
    position: absolute;
    z-index: 2;
    top: 31%;
    right: 19%;
    display: flex;
    width: clamp(116px, 9.5vw, 168px);
    aspect-ratio: 1;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(228, 0, 43, 0.96) 0 32%, rgba(228, 0, 43, 0.12) 33% 35%, transparent 36%),
        radial-gradient(circle, transparent 0 53%, rgba(228, 0, 43, 0.18) 54% 56%, transparent 57%);
    color: #fff;
    font-size: clamp(13px, 1vw, 19px);
    font-weight: 800;
    line-height: 1;
    pointer-events: none;
}

.about-office-list {
    bottom: clamp(12px, 1.1vw, 22px);
    grid-template-columns: minmax(320px, 1.06fr) repeat(2, minmax(250px, 1fr));
}

.about-office-card {
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.075);
}

@media (min-width: 1600px) {
    .about-office-list {
        left: clamp(120px, 9vw, 180px);
        right: clamp(120px, 9vw, 180px);
    }
}

@media (max-width: 900px) {
    .about-office-main-pin {
        top: 22%;
        right: 13%;
    }
}

@media (max-width: 760px) {
    body.page-template-page-products .pls-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 28px 16px 56px;
    }

    body.page-template-page-products .pls-product-desc {
        min-height: 62px;
        padding-right: 14px;
        padding-left: 14px;
        font-size: 12px;
    }
}

/* Fidelity pass 2.0.6: product detail, light news archive, tighter product cards, map/history polish */
body.page-template-page-products .pls-product-box {
    min-height: 0;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
}

body.page-template-page-products .pls-product-box:hover {
    border-color: rgba(216, 0, 42, 0.24);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.075);
}

body.page-template-page-products .pls-product-img {
    min-height: 0;
    height: auto;
    aspect-ratio: 1 / 0.76;
}

body.page-template-page-products .pls-product-name {
    min-height: 52px;
    padding-top: 12px;
    font-size: clamp(15px, 0.9vw, 18px);
}

body.page-template-page-products .pls-product-desc {
    min-height: 0;
    padding-bottom: 18px;
    -webkit-line-clamp: 2;
}

.product-detail-page {
    overflow: hidden;
    background: #fff;
}

.product-detail-hero {
    position: relative;
    padding: calc(var(--header-height) + clamp(58px, 7vw, 112px)) 0 clamp(52px, 6vw, 94px);
    background: #fff;
}

.product-detail-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: transparent;
}

.product-detail-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
    gap: clamp(42px, 6vw, 110px);
    align-items: center;
}

.product-detail-back {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-bottom: clamp(20px, 2vw, 30px);
    color: #4b5563;
    font-weight: 700;
}

.product-detail-back svg {
    width: 18px;
    height: 18px;
}

.product-detail-category,
.product-detail-section-title span,
.news-card-eyebrow {
    display: inline-flex;
    align-items: center;
    color: #d8002a;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-detail-hero h1 {
    max-width: 760px;
    margin: 18px 0 22px;
    color: #07182d;
    font-size: clamp(30px, 3.2vw, 56px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: 0;
}

.product-detail-hero p {
    max-width: 680px;
    margin: 0;
    color: #526171;
    font-size: clamp(16px, 1.1vw, 20px);
    line-height: 1.85;
}

.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: clamp(28px, 3vw, 44px);
}

.product-detail-hero-media {
    position: relative;
    min-height: clamp(340px, 30vw, 520px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.08);
}

.product-detail-hero-media::before {
    content: "";
    position: absolute;
    inset: 28px;
    background:
        linear-gradient(135deg, rgba(245, 246, 248, 0.9), rgba(255, 255, 255, 0.5)),
        radial-gradient(circle at 80% 18%, rgba(216, 0, 42, 0.08), transparent 32%);
}

.product-detail-hero-media img {
    position: relative;
    z-index: 1;
    width: min(84%, 640px);
    max-height: clamp(280px, 26vw, 460px);
    object-fit: contain;
}

.product-detail-content-section,
.product-detail-related {
    background: #fff;
}

.news-archive-light {
    background:
        url("../images/home/pattern/impgbg.png") center top / 100% auto repeat-y,
        #fff;
}

.product-detail-content-section {
    padding: clamp(70px, 7vw, 118px) 0;
}

.product-detail-section-title {
    max-width: 900px;
    margin: 0 auto clamp(32px, 4vw, 58px);
    text-align: center;
}

.product-detail-section-title h2 {
    margin: 16px 0 0;
    color: #07182d;
    font-size: clamp(28px, 2.6vw, 46px);
    line-height: 1.22;
    font-weight: 800;
    letter-spacing: 0;
}

.product-detail-body {
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: clamp(28px, 4vw, 64px);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.06);
    color: #263142;
    font-size: 16px;
    line-height: 1.85;
}

.product-detail-body .fl-builder-content,
.product-detail-body .fl-row,
.product-detail-body .fl-row-content-wrap,
.product-detail-body .fl-row-content,
.product-detail-body .fl-col-group,
.product-detail-body .fl-col,
.product-detail-body .fl-col-content,
.product-detail-body .fl-module,
.product-detail-body .fl-module-content {
    width: auto !important;
    max-width: none !important;
    min-height: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.product-detail-body .fl-row-content-wrap,
.product-detail-body .fl-module-content {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.product-detail-body .fl-col-group {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(18px, 2vw, 32px);
    align-items: start;
}

.product-detail-body h1,
.product-detail-body h2,
.product-detail-body h3,
.product-detail-body .fl-heading {
    margin: clamp(28px, 3vw, 48px) 0 16px !important;
    color: #07182d !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    line-height: 1.28 !important;
}

.product-detail-body h2,
.product-detail-body .fl-heading {
    font-size: clamp(24px, 2vw, 34px) !important;
}

.product-detail-body h3 {
    font-size: clamp(20px, 1.5vw, 26px) !important;
}

.product-detail-body p,
.product-detail-body li {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.85;
}

.product-detail-body img {
    display: block;
    width: auto;
    max-width: min(100%, 980px);
    height: auto;
    margin: clamp(18px, 2vw, 34px) auto;
}

.product-detail-body table {
    width: 100%;
    border-collapse: collapse;
}

.product-detail-body td,
.product-detail-body th {
    border: 1px solid rgba(15, 23, 42, 0.1);
    padding: 12px 14px;
}

.product-detail-body [style*="font-size"] {
    line-height: 1.65;
}

.product-detail-related {
    padding: 0 0 clamp(78px, 8vw, 130px);
}

.product-detail-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 30px);
}

.product-detail-related-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: 18px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #07182d;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-detail-related-card:hover {
    transform: translateY(-5px);
    border-color: rgba(216, 0, 42, 0.24);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.product-detail-related-img {
    display: flex;
    aspect-ratio: 4 / 3;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: #f7f8fb;
}

.product-detail-related-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
}

.product-detail-related-card strong {
    display: block;
    min-height: 48px;
    color: #07182d;
    font-size: 17px;
    line-height: 1.45;
}

.product-detail-related-card em {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-top: 16px;
    color: #d8002a;
    font-style: normal;
    font-weight: 800;
}

.news-hero-light {
    min-height: clamp(360px, 40vw, 560px);
    background:
        linear-gradient(105deg, rgba(223, 241, 252, 0.82), rgba(255, 255, 255, 0) 48%),
        url("../images/home/pattern/impgbg.png") center top / 100% auto repeat-y,
        #fff;
}

.news-hero-light .page-hero-bg {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.62)),
        url("../images/home/news/news-01.jpg") center / cover no-repeat;
    opacity: 0.16;
}

.news-hero-light .page-hero-content {
    color: #07182d;
}

.news-hero-light .section-label {
    color: #d8002a;
}

.news-hero-light h1 {
    color: #07182d;
}

.news-hero-light p {
    color: #526171;
}

.news-archive-light {
    padding: clamp(56px, 6vw, 98px) 0 clamp(80px, 8vw, 132px);
}

.news-archive-light .container {
    max-width: 1320px;
}

.news-archive-light .news-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 28px;
    margin: 0 0 clamp(34px, 4vw, 58px);
    padding: 0 0 28px;
    border-bottom: 1px dashed rgba(15, 23, 42, 0.14);
}

.news-archive-light .filter-btn {
    padding: 0;
    border: 0;
    background: transparent;
    color: #8b95a1;
    font-size: 16px;
    font-weight: 700;
}

.news-archive-light .filter-btn.active,
.news-archive-light .filter-btn:hover {
    color: #d8002a;
}

.news-featured-row {
    margin-bottom: clamp(36px, 4vw, 64px);
}

.news-card-horizontal {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.07);
}

.news-card-horizontal .news-card-img {
    position: relative;
    min-height: clamp(300px, 29vw, 460px);
    overflow: hidden;
    background: #f7f8fb;
}

.news-card-horizontal .news-card-img img,
.news-archive-light .blog-card-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-horizontal .news-card-img img,
.news-archive-light .blog-card-img img {
    transition: transform 0.45s ease;
}

.news-card-horizontal:hover .news-card-img img,
.news-archive-light .blog-card:hover .blog-card-img img {
    transform: scale(1.04);
}

.news-card-horizontal .news-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(30px, 3.2vw, 58px);
}

.news-card-horizontal .news-card-title {
    margin: 16px 0 18px;
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1.22;
    font-weight: 800;
}

.news-card-horizontal .news-card-title a,
.news-archive-light .blog-card-title a {
    color: #07182d;
}

.news-card-horizontal .news-card-title a:hover,
.news-archive-light .blog-card-title a:hover {
    color: #d8002a;
}

.news-archive-light .news-card-excerpt {
    color: #526171;
    line-height: 1.8;
}

.news-archive-light .news-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    margin-top: auto;
}

.news-archive-light .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 2vw, 32px);
}

.news-archive-light .blog-card {
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 18px 52px rgba(15, 23, 42, 0.045);
}

.news-archive-light .blog-card-img {
    aspect-ratio: 16 / 10;
}

.news-archive-light .blog-card-body {
    min-height: 238px;
    padding: 24px;
}

.news-archive-light .blog-card-title {
    font-size: 20px;
    line-height: 1.42;
    font-weight: 800;
}

.news-archive-light .news-readmore {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-top: auto;
    color: #07182d;
    font-weight: 800;
}

.news-archive-light .news-readmore:hover {
    color: #d8002a;
}

.about-offices {
    padding-top: clamp(70px, 6vw, 104px);
    padding-bottom: clamp(42px, 5vw, 76px);
}

.about-office-layout {
    height: clamp(500px, 39vw, 680px);
    margin-top: clamp(22px, 2.3vw, 38px);
}

.about-office-image {
    background-position: center 44%;
    background-size: min(1500px, 94vw) auto;
}

.about-office-main-pin {
    top: 36%;
    right: 18%;
    width: clamp(104px, 8.2vw, 150px);
}

.about-office-list {
    right: 0;
    bottom: clamp(10px, 0.9vw, 18px);
    left: 0;
    grid-template-columns: minmax(330px, 430px) repeat(2, minmax(260px, 360px));
    justify-content: center;
    align-items: end;
}

.about-office-card {
    min-height: 90px;
    padding: clamp(20px, 1.7vw, 28px);
    box-shadow: 0 22px 64px rgba(15, 23, 42, 0.07);
}

.about-office-card:first-child {
    min-height: clamp(156px, 11vw, 188px);
}

.about-office-card h3 {
    margin-bottom: 10px;
    font-size: clamp(20px, 1.45vw, 26px);
}

.about-office-card p {
    font-size: clamp(14px, 0.92vw, 16px);
    line-height: 1.75;
}

.about-timeline-year {
    margin-top: clamp(22px, 2.4vw, 34px);
    font-size: clamp(40px, 4.2vw, 72px);
}

.about-timeline-card.swiper-slide-active .about-timeline-year {
    font-size: clamp(56px, 5.4vw, 96px);
}

@media (min-width: 1600px) {
    .about-office-list {
        left: 0;
        right: 0;
    }
}

@media (max-width: 1100px) {
    .product-detail-hero-inner,
    .news-card-horizontal {
        grid-template-columns: 1fr;
    }

    .product-detail-hero-media {
        min-height: 360px;
    }

    .news-card-horizontal .news-card-img {
        min-height: 320px;
    }
}

@media (max-width: 900px) {
    .product-detail-related-grid,
    .news-archive-light .blog-grid {
        grid-template-columns: 1fr;
    }

    .about-office-list {
        grid-template-columns: 1fr;
        justify-content: stretch;
    }
}

@media (max-width: 560px) {
    .product-detail-hero {
        padding-top: calc(var(--header-height) + 38px);
    }

    .product-detail-body {
        padding: 22px;
    }

    .about-timeline-year,
    .about-timeline-card.swiper-slide-active .about-timeline-year {
        font-size: 54px;
    }
}

/* Final containment fixes for imported legacy content. */
.news-card-horizontal {
    display: flex;
    align-items: stretch;
    max-width: 1180px;
    margin-inline: auto;
    overflow: hidden;
}

.news-card-horizontal .news-card-img {
    flex: 0 0 48%;
    min-width: 0;
    width: auto;
}

.news-card-horizontal .news-card-body {
    flex: 1 1 52%;
    min-width: 0;
    overflow: hidden;
}

.news-card-horizontal .news-card-title,
.news-card-horizontal .news-card-title a {
    overflow-wrap: anywhere;
}

.news-card-horizontal .news-card-excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}

.product-detail-body .fl-photo,
.product-detail-body .fl-photo-content,
.product-detail-body .fl-photo-img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

.product-detail-body .fl-photo-img {
    object-fit: contain !important;
}

@media (max-width: 1100px) {
    .news-card-horizontal {
        display: block;
    }

    .news-card-horizontal .news-card-img {
        width: 100%;
        min-height: 300px;
    }
}

/* Keep critical migrated pages readable even if JS reveal animations fail. */
.news-hero-light .page-hero-content,
.news-archive-light .news-filter,
.news-archive-light .news-card,
.news-archive-light .blog-card,
.product-detail-hero-copy,
.product-detail-hero-media,
.product-detail-section {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

body.page-template-page-news .news-card-horizontal {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
}

.news-archive-light .news-card-horizontal {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
}

body.page-template-page-news .news-card-horizontal .news-card-img {
    flex: 0 0 48% !important;
    width: 48% !important;
    max-width: 48% !important;
    aspect-ratio: auto !important;
}

.news-archive-light .news-card-horizontal .news-card-img {
    flex: 0 0 48% !important;
    width: 48% !important;
    max-width: 48% !important;
    aspect-ratio: auto !important;
}

body.page-template-page-news .news-card-horizontal .news-card-body {
    flex: 0 0 52% !important;
    width: 52% !important;
    max-width: 52% !important;
}

.news-archive-light .news-card-horizontal .news-card-body {
    flex: 0 0 52% !important;
    width: 52% !important;
    max-width: 52% !important;
}

@media (max-width: 1100px) {
    body.page-template-page-news .news-card-horizontal {
        display: block !important;
    }

    .news-archive-light .news-card-horizontal {
        display: block !important;
    }

    body.page-template-page-news .news-card-horizontal .news-card-img,
    body.page-template-page-news .news-card-horizontal .news-card-body,
    .news-archive-light .news-card-horizontal .news-card-img,
    .news-archive-light .news-card-horizontal .news-card-body {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* About page refinements: video hero, values, stats and office cards. */
.about-hero-video {
    align-items: center;
}

.about-hero-video .about-hero-bg {
    top: var(--header-height, 80px);
    bottom: 0;
}

.about-hero-video .container {
    position: relative;
    z-index: 2;
}

.about-hero-video .about-hero-content {
    margin-bottom: 0;
    padding-top: var(--header-height);
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(clamp(-110px, -7vw, -56px));
}

.about-hero-video .about-hero-tagline {
    max-width: 720px;
}

.about-values {
    position: relative;
    padding: clamp(76px, 6vw, 116px) 0;
    background: #fff;
    overflow: hidden;
}

.about-values::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(216, 0, 42, 0.05), transparent 28%),
        linear-gradient(116deg, rgba(230, 244, 255, 0.86) 0%, rgba(255, 255, 255, 0.96) 38%, #fff 100%);
    pointer-events: none;
}

.about-values .container {
    position: relative;
    z-index: 1;
    max-width: min(1240px, calc(100vw - 72px));
}

.about-value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 2vw, 32px);
    align-items: stretch;
}

.about-value-card {
    position: relative;
    min-height: clamp(220px, 16vw, 292px);
    padding: clamp(34px, 3vw, 52px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}

.about-value-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #d8002a;
}

.about-value-card::after {
    content: attr(data-card-number);
    position: absolute;
    right: clamp(18px, 1.8vw, 28px);
    bottom: clamp(-18px, -1.2vw, -8px);
    color: rgba(15, 23, 42, 0.035);
    font-size: clamp(76px, 7vw, 128px);
    font-weight: 800;
    line-height: 1;
    pointer-events: none;
}

.about-value-card span {
    margin-bottom: clamp(18px, 1.4vw, 24px);
    color: #d8002a;
    font-size: clamp(15px, 1vw, 18px);
    font-weight: 800;
    letter-spacing: 0;
}

.about-value-card h2 {
    margin: 0 0 clamp(16px, 1.4vw, 24px);
    color: #071426;
    font-size: clamp(28px, 2.2vw, 40px);
    line-height: 1.16;
}

.about-value-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 25em;
    color: #586274;
    font-size: clamp(15px, 1vw, 17px);
    line-height: 1.9;
}

.about-stats-document {
    padding: clamp(70px, 6vw, 104px) 0;
}

.about-stats-document .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(22px, 2vw, 34px);
    align-items: stretch;
}

.about-stats-document .stat-item {
    position: relative;
    min-height: clamp(168px, 12vw, 220px);
    padding: clamp(40px, 3vw, 52px) clamp(28px, 2.4vw, 42px) clamp(28px, 2.4vw, 42px);
    border: 1px solid rgba(15, 23, 42, 0.045);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-stats-document .stat-item:hover {
    transform: translateY(-4px);
    border-color: rgba(230, 0, 32, 0.12);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.about-stats-document .stat-icon {
    position: absolute;
    top: clamp(20px, 1.5vw, 26px);
    left: clamp(22px, 1.8vw, 30px);
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #e60020;
    box-shadow: none;
}

.about-stats-document .stat-icon svg {
    width: 28px;
    height: 28px;
}

.about-stats-document .stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.12em;
    min-height: 1.1em;
}

.about-stats-document .stat-count,
.about-stats-document .stat-suffix,
.about-stats-document .stat-unit {
    color: #d8002a;
    font-weight: 800;
    line-height: 1;
}

.about-stats-document .stat-label {
    margin-top: clamp(14px, 1vw, 18px);
}

.about-office-list {
    grid-template-columns: repeat(3, minmax(280px, 380px)) !important;
    grid-auto-rows: 1fr;
    align-items: stretch !important;
    gap: clamp(18px, 1.6vw, 28px);
}

.about-office-card,
.about-office-card:first-child {
    min-height: clamp(166px, 10.5vw, 206px) !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-office-card p {
    overflow-wrap: anywhere;
}

.contact-value a {
    color: inherit;
    text-decoration: none;
}

.contact-value a:hover {
    color: #d8002a;
}

.contact-address-value {
    max-width: 32em;
}

@media (max-width: 1180px) {
    .about-value-grid,
    .about-stats-document .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-office-list {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        width: min(100%, calc(100vw - 48px));
    }
}

@media (max-width: 900px) {
    .about-hero-video .about-hero-content {
        transform: translateY(-42px);
    }

    .about-value-grid {
        grid-template-columns: 1fr;
    }

    .about-office-list {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        grid-template-columns: 1fr !important;
        margin: 28px auto 0;
        width: 100%;
    }

    .about-office-card,
    .about-office-card:first-child {
        min-height: auto !important;
    }
}

@media (max-width: 640px) {
    .about-values .container {
        max-width: calc(100vw - 36px);
    }

    .about-stats-document .stats-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-video .about-hero-content {
        transform: translateY(-28px);
    }
}

/* Product category navigation */
.pls-results-meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    margin: 0 0 28px;
    padding: 0 0 18px;
    border-bottom: 1px solid #dedede;
    scroll-margin-top: 96px;
}

.pls-results-meta h2 {
    margin: 0;
    color: #111820;
    font-size: 28px;
    line-height: 1.25;
}

.pls-results-meta span {
    flex: 0 0 auto;
    color: #777d84;
    font-size: 14px;
}

.pls-product-box[hidden],
[data-news-filter][hidden] {
    display: none !important;
}

/* Filtered product cards must not depend on AOS' asynchronous position cache. */
body.page-template-page-products .pls-product-box.is-product-filter-match[data-aos] {
    opacity: 1;
    visibility: visible;
    transform: none;
}

body.page-template-page-products .pls-product-box.is-product-filter-match[data-aos]:hover {
    transform: translateY(-4px);
}

/* News cards revealed by filtering must not stay invisible in AOS' cached state. */
body.page-template-page-news [data-news-filter].is-news-filter-match[data-aos] {
    opacity: 1;
    visibility: visible;
}

/* JAKA-inspired news center */
.news-center-page {
    color: #15191d;
    background: #fff;
}

.news-center-intro {
    padding: 148px 0 0;
    background: #f1f1f1;
}

.news-center-heading {
    margin: 0 auto 54px;
    text-align: center;
}

.news-center-heading .section-label,
.news-detail-header .section-label,
.news-related-heading .section-label {
    display: block;
    margin-bottom: 14px;
    color: #df1025;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.news-center-heading h1 {
    margin: 0;
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 0;
}

.news-feature-story {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    min-height: 350px;
    overflow: hidden;
    background: #e4e4e4;
}

.news-feature-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 48px 56px;
}

.news-feature-date {
    color: #777d84;
    font-size: 13px;
    line-height: 1.4;
}

.news-category-tag {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    margin-top: 16px;
    padding: 3px 12px;
    border: 1px solid #df1025;
    border-radius: 2px;
    color: #df1025;
    font-size: 13px;
    line-height: 1.2;
}

.news-feature-copy h2 {
    max-width: 680px;
    margin: 20px 0 16px;
    font-size: 31px;
    line-height: 1.32;
    letter-spacing: 0;
}

.news-feature-copy h2 a,
.news-editorial-body h3 a,
.news-related-card,
.news-detail-pagination a {
    color: inherit;
    text-decoration: none;
}

.news-feature-copy p {
    display: -webkit-box;
    max-width: 620px;
    margin: 0 0 28px;
    overflow: hidden;
    color: #62686e;
    font-size: 16px;
    line-height: 1.8;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.news-feature-link,
.news-readmore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #161a1e;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.news-feature-link svg,
.news-readmore svg {
    width: 17px;
    height: 17px;
    transition: transform .2s ease;
}

.news-feature-link:hover svg,
.news-readmore:hover svg {
    transform: translateX(5px);
}

.news-feature-media {
    position: relative;
    min-height: 350px;
    overflow: hidden;
    background: #d6d6d6;
}

.news-feature-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(228, 228, 228, .28);
}

.news-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
}

.news-feature-media span {
    position: absolute;
    right: -16px;
    bottom: -20px;
    z-index: 1;
    color: rgba(255, 255, 255, .54);
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
}

.news-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 56px;
    border-bottom: 1px solid #d6d6d6;
}

.news-toolbar .news-filter {
    display: flex;
    align-items: stretch;
    gap: 34px;
    min-width: 0;
}

.news-toolbar .filter-btn {
    position: relative;
    padding: 0 0 22px;
    border: 0;
    border-radius: 0;
    color: #7a7f84;
    background: transparent;
    font: inherit;
    font-size: 16px;
    white-space: nowrap;
    cursor: pointer;
}

.news-toolbar .filter-btn::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: #df1025;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .2s ease;
}

.news-toolbar .filter-btn:hover,
.news-toolbar .filter-btn.active {
    color: #df1025;
}

.news-toolbar .filter-btn.active::after {
    transform: scaleX(1);
}

.news-search {
    display: flex;
    align-items: center;
    flex: 0 0 250px;
    gap: 10px;
    padding: 0 0 16px;
}

.news-search svg {
    width: 19px;
    height: 19px;
    color: #555b61;
}

.news-search input {
    width: 100%;
    padding: 5px 0;
    border: 0;
    outline: 0;
    color: #171b1f;
    background: transparent;
    font: inherit;
    font-size: 15px;
}

.news-center-results {
    padding: 68px 0 110px;
    background: #fff;
}

.news-editorial-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 66px 34px;
}

.news-editorial-card {
    min-width: 0;
}

.news-editorial-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #eceeef;
}

.news-editorial-image img,
.news-editorial-image .news-placeholder-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.news-editorial-card:hover .news-editorial-image img {
    transform: scale(1.025);
}

.news-editorial-body {
    padding-top: 21px;
}

.news-editorial-body h3 {
    min-height: 64px;
    margin: 10px 0 20px;
    font-size: 24px;
    line-height: 1.36;
    letter-spacing: 0;
}

.news-editorial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 18px;
    border-top: 1px solid #e1e3e5;
}

.news-editorial-footer .news-category-tag {
    margin-top: 0;
}

.news-empty-state {
    margin: 70px 0 0;
    color: #777d84;
    font-size: 17px;
    text-align: center;
}

/* Imported legacy news article layout */
.news-detail-page {
    color: #171b1f;
    background: #fff;
}

.news-detail-header {
    padding: 146px 0 72px;
    background: #f1f1f1;
}

.news-detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 38px;
    color: #83888d;
    font-size: 14px;
}

.news-detail-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.news-detail-header h1 {
    max-width: 980px;
    margin: 0;
    font-size: 48px;
    line-height: 1.22;
    letter-spacing: 0;
}

.news-detail-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 28px;
    color: #747a80;
    font-size: 14px;
}

.news-detail-meta a {
    color: inherit;
    text-decoration: none;
}

.news-detail-section {
    padding: 72px 0 0;
}

.news-detail-article {
    max-width: 920px;
    margin: 0 auto;
}

.news-detail-content {
    color: #3e454b;
    font-size: 17px;
    line-height: 1.9;
}

.news-detail-content p,
.news-detail-content ul,
.news-detail-content ol,
.news-detail-content blockquote,
.news-detail-content table {
    margin-top: 0;
    margin-bottom: 24px;
}

.news-detail-content h2,
.news-detail-content h3,
.news-detail-content h4 {
    margin: 46px 0 20px;
    color: #171b1f;
    line-height: 1.35;
    letter-spacing: 0;
}

.news-detail-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 34px auto;
}

.news-detail-content .fl-row,
.news-detail-content .fl-row-content,
.news-detail-content .fl-col,
.news-detail-content .fl-col-content,
.news-detail-content .fl-module,
.news-detail-content .fl-module-content {
    float: none !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.news-detail-content .fl-row-content-wrap {
    min-height: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

.news-detail-content iframe,
.news-detail-content video {
    display: block;
    max-width: 100%;
    margin: 34px auto;
}

.seo-longform {
    clear: both;
    margin-top: clamp(36px, 4vw, 58px);
    padding-top: clamp(28px, 3vw, 42px);
    border-top: 1px solid rgba(15, 23, 42, 0.12);
}

.seo-longform h2,
.seo-longform h3 {
    margin: 0 0 22px !important;
    color: #111827 !important;
    font-size: clamp(24px, 2.2vw, 34px) !important;
    line-height: 1.25 !important;
    letter-spacing: -0.02em !important;
}

.seo-longform h2::before,
.seo-longform h3::before {
    display: block;
    width: 44px;
    height: 3px;
    margin-bottom: 16px;
    background: var(--primary, #e60012);
    content: "";
}

.seo-longform-copy {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 32px;
}

.seo-longform-copy p {
    margin: 0 !important;
    color: #4b5563 !important;
    font-size: 16px !important;
    line-height: 1.85 !important;
}

@media (max-width: 760px) {
    .seo-longform-copy {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

.news-detail-pagination {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 32px;
    max-width: 920px;
    margin: 78px auto 0;
    padding: 30px 0;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
}

.news-detail-pagination > div {
    display: grid;
    gap: 8px;
}

.news-detail-pagination > div > span {
    color: #8a8f94;
    font-size: 13px;
}

.news-detail-next {
    text-align: right;
}

.news-detail-back {
    padding: 12px 18px;
    border: 1px solid #d5d8da;
    font-size: 14px;
}

.news-related-section {
    margin-top: 90px;
    padding: 78px 0 110px;
    background: #f3f3f3;
}

.news-related-heading {
    margin-bottom: 34px;
}

.news-related-heading h3 {
    margin: 0;
    font-size: 32px;
    letter-spacing: 0;
}

.news-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.news-related-card {
    display: grid;
    gap: 13px;
}

.news-related-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e4e6e7;
}

.news-related-image img,
.news-related-image .news-placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-related-card strong {
    font-size: 18px;
    line-height: 1.45;
}

@media (max-width: 980px) {
    body.page-template-page-products .pls-page {
        display: block !important;
        min-height: 0;
    }

    body.page-template-page-products .pls-sidebar {
        position: relative;
        top: auto;
        width: 100%;
        min-width: 0;
        max-width: none;
        height: auto;
        margin-top: 0;
        overflow: hidden;
        border-right: 0;
        border-bottom: 1px solid #e4e4e4;
    }

    body.page-template-page-products .pls-sidebar-inner {
        display: flex;
        gap: 10px;
        padding: 0 18px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
    }

    body.page-template-page-products .pls-sidebar-inner::-webkit-scrollbar {
        display: none;
    }

    body.page-template-page-products .pls-first-box {
        flex: 0 0 auto;
    }

    body.page-template-page-products .pls-first {
        position: relative;
        padding: 20px 10px 18px;
        font-size: 14px;
        white-space: nowrap;
    }

    body.page-template-page-products .pls-first::after {
        content: '';
        position: absolute;
        right: 10px;
        bottom: 0;
        left: 10px;
        height: 2px;
        background: #d80c1e;
        transform: scaleX(0);
    }

    body.page-template-page-products .pls-first.act::after {
        transform: scaleX(1);
    }

    body.page-template-page-products .pls-second,
    body.page-template-page-products .pls-third-item,
    body.page-template-page-products .pls-four-list {
        display: none !important;
    }

    body.page-template-page-products .pls-content {
        padding-top: 0;
    }

    .news-feature-story {
        grid-template-columns: 1fr;
    }

    .news-feature-media {
        min-height: 280px;
        grid-row: 1;
    }

    .news-toolbar {
        align-items: flex-end;
        flex-direction: column;
    }

    .news-toolbar .news-filter {
        width: 100%;
        overflow-x: auto;
    }

    .news-search {
        width: 100%;
        flex-basis: auto;
    }
}

@media (max-width: 720px) {
    .pls-results-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .news-center-intro {
        padding-top: 112px;
    }

    .news-center-heading {
        margin-bottom: 34px;
    }

    .news-center-heading h1 {
        font-size: 36px;
    }

    .news-feature-copy {
        padding: 34px 24px 40px;
    }

    .news-feature-copy h2 {
        font-size: 25px;
    }

    .news-feature-media {
        min-height: 220px;
    }

    .news-feature-media span {
        font-size: 42px;
    }

    .news-toolbar {
        margin-top: 38px;
    }

    .news-toolbar .news-filter {
        gap: 24px;
    }

    .news-editorial-grid,
    .news-related-grid {
        grid-template-columns: 1fr;
    }

    .news-editorial-grid {
        gap: 46px;
    }

    .news-editorial-body h3 {
        min-height: 0;
        font-size: 21px;
    }

    .news-detail-header {
        padding: 112px 0 48px;
    }

    .news-detail-header h1 {
        font-size: 34px;
    }

    .news-detail-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .news-detail-section {
        padding-top: 46px;
    }

    .news-detail-content {
        font-size: 16px;
    }

    .news-detail-pagination {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .news-detail-next {
        text-align: left;
    }

    .news-detail-back {
        width: max-content;
        grid-row: 3;
    }
}

@media (max-width: 560px) {
    body.page-template-page-products .pls-grid {
        grid-template-columns: 1fr;
    }

    body.page-template-page-products .pls-banner {
        padding: 42px 22px 36px;
    }
}

/* Current delivery polish: products, cases and contact pages */
body.page-template-page-products {
    overflow: hidden;
}

body.page-template-page-products .pls-page {
    background: #fff;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
}

body.page-template-page-products .pls-sidebar {
    background: #fff;
    box-shadow: 14px 0 34px rgba(15, 23, 42, 0.06);
    height: calc(100vh - var(--header-height));
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
}

body.page-template-page-products .pls-content {
    background: #fff;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    scroll-padding-top: var(--header-height);
}

body.page-template-page-products,
body.page-template-page-products .site-content,
body.page-template-page-products main {
    background: #fff !important;
    background-image: none !important;
}

body.page-template-page-products .pls-banner {
    margin: 0 clamp(24px, 4vw, 64px);
    padding: clamp(56px, 5vw, 88px) 0 clamp(44px, 4vw, 70px);
    background: transparent;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

body.page-template-page-products .pls-banner::after {
    left: 0;
    bottom: 0;
    top: auto;
    width: 104px;
    height: 4px;
}

body.page-template-page-products .pls-banner-title {
    font-size: clamp(42px, 5vw, 76px);
}

body.page-template-page-products .pls-results-meta {
    margin: 36px clamp(24px, 4vw, 64px) 26px;
    padding: 0 0 18px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

body.page-template-page-products .pls-results-meta h2 {
    font-size: clamp(28px, 2.2vw, 42px);
    line-height: 1.18;
    letter-spacing: 0;
}

body.page-template-page-products .pls-grid {
    padding-top: 18px;
}

body.page-template-page-products .pls-first.act,
body.page-template-page-products .pls-third-item.act,
body.page-template-page-products .pls-four-item.act {
    color: var(--color-primary);
}

body.page-template-page-products .pls-third-item,
body.page-template-page-products .pls-four-item {
    cursor: pointer;
}

body.page-template-page-products .pls-third-item.act .pls-expand-icon::before,
body.page-template-page-products .pls-third-item.act .pls-expand-icon::after {
    background: var(--color-primary);
}

.case-page-shell {
    background: var(--case-pattern) center top / 100% auto repeat-y, #fff;
}

.case-filter-section,
.case-results-section,
.case-detail-section {
    background: transparent;
}

.case-filter-section {
    padding-top: clamp(56px, 5vw, 88px);
}

.case-filter-layout,
.case-results-section .container {
    max-width: 1120px;
}

.case-results-section {
    padding-bottom: clamp(80px, 8vw, 130px);
}

.case-results-head h2 {
    color: #111827;
}

body.page-template-page-contact {
    background: url("../images/home/pattern/impgbg.png") center top / 100% auto repeat-y, #fff;
}

.contact-hero-light {
    height: auto;
    min-height: 0;
    padding: calc(var(--header-height) + 82px) 0 58px;
    background: transparent;
    overflow: hidden;
}

.contact-hero-light .page-hero-bg {
    inset: calc(var(--header-height) + 16px) 0 0;
    background: url("../images/about/world-map.png") center / min(1200px, 92vw) auto no-repeat;
    opacity: 0.16;
}

.contact-hero-light .page-hero-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    color: #111827;
}

.contact-hero-light .page-hero-content h1,
.contact-hero-light .page-hero-content p {
    color: #111827;
}

.contact-info-section,
.contact-form-section,
.offices-section {
    background: transparent;
}

.contact-info-section {
    padding: 34px 0 68px;
}

.contact-info-card,
.contact-form-wrap,
.office-card {
    border-radius: 8px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.contact-info-card {
    min-height: 250px;
}

.contact-icon {
    color: var(--color-primary);
    background: rgba(216, 12, 30, 0.08);
}

.contact-value,
.contact-value a,
.office-phone {
    color: var(--color-primary);
}

.contact-form-section {
    padding: 36px 0 86px;
}

.contact-form-grid {
    align-items: stretch;
}

.contact-form-intro {
    padding: clamp(34px, 4vw, 58px);
    background: rgba(255, 255, 255, 0.78);
    border-radius: 8px;
}

.benefit-check {
    color: var(--color-primary);
    background: rgba(216, 12, 30, 0.08);
}

.offices-section {
    padding: 74px 0 100px;
}

.offices-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.office-card {
    min-height: 220px;
    padding: clamp(30px, 3vw, 46px);
}

@media (max-width: 992px) {
    body.page-template-page-products .pls-banner,
    body.page-template-page-products .pls-results-meta {
        margin-left: 24px;
        margin-right: 24px;
    }

    .offices-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-light {
        padding-top: 120px;
    }
}

/* Final delivery polish: JAKA-style interactive office maps */
.about-office-layout,
.contact-network-stage {
    --office-map-x: 0%;
    --office-map-y: 0%;
    position: relative;
    overflow: hidden;
}

.about-office-layout {
    width: min(100%, 1680px);
    height: clamp(600px, 49vw, 780px);
    margin: clamp(24px, 2.6vw, 44px) auto 0;
}

.about-office-image,
.contact-network-map {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.about-office-image {
    background: none !important;
}

.about-office-image > img {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.about-office-map-layer,
.contact-network-map-layer {
    position: absolute;
    inset: 0;
    background-image: var(--office-map-bg);
    background-repeat: no-repeat;
    background-position: center 38%;
    background-size: min(1600px, 96vw) auto;
    opacity: 0.94;
    transform: translate(var(--office-map-x), var(--office-map-y));
    transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.about-office-map-layer::after,
.contact-network-map-layer::after {
    content: "";
    position: absolute;
    top: 32%;
    right: 16%;
    width: clamp(138px, 12vw, 220px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(216, 12, 30, 0.07);
    box-shadow:
        0 0 0 1px rgba(216, 12, 30, 0.08),
        0 0 68px rgba(216, 12, 30, 0.15);
    pointer-events: none;
}

.about-office-pins,
.contact-network-pins {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    transform: translate(var(--office-map-x), var(--office-map-y));
    transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.about-office-pin,
.contact-network-pin {
    position: absolute;
    left: var(--pin-x);
    top: var(--pin-y);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 0 7px rgba(216, 12, 30, 0.08);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    transform: translate(-50%, -50%);
    transition: width 0.28s ease, height 0.28s ease, box-shadow 0.28s ease;
}

.about-office-pin::after,
.contact-network-pin::after {
    content: "";
    position: absolute;
    inset: -12px;
    border: 2px solid rgba(216, 12, 30, 0.2);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.28s ease, inset 0.28s ease;
}

.about-office-pin span,
.contact-network-pin span {
    width: 4.5em;
    opacity: 0;
    transform: scale(0.86);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.about-office-pin.is-active,
.contact-network-pin.is-active {
    width: clamp(58px, 5vw, 78px);
    height: clamp(58px, 5vw, 78px);
    box-shadow: 0 0 0 18px rgba(216, 12, 30, 0.1);
}

.about-office-pin.is-active::after,
.contact-network-pin.is-active::after {
    inset: -18px;
    opacity: 1;
}

.about-office-pin.is-active span,
.contact-network-pin.is-active span {
    opacity: 1;
    transform: scale(1);
}

.about-office-list {
    position: absolute;
    left: clamp(70px, 9vw, 170px);
    right: clamp(70px, 9vw, 170px);
    bottom: clamp(28px, 4vw, 70px);
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-auto-rows: 1fr;
    align-items: end !important;
    gap: clamp(18px, 1.7vw, 30px);
}

.about-office-card,
.about-office-card:first-child {
    position: relative;
    min-height: clamp(162px, 10vw, 208px) !important;
    height: auto;
    padding: clamp(24px, 2.2vw, 34px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 22px 70px rgba(15, 23, 42, 0.08);
    cursor: pointer;
    transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.about-office-card::before,
.contact-network-cards .office-card::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background: var(--color-primary);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.about-office-card.is-active,
.contact-network-cards .office-card.is-active {
    border-color: rgba(216, 12, 30, 0.18);
    box-shadow: 0 28px 86px rgba(15, 23, 42, 0.13);
    transform: translateY(-18px);
}

.about-office-card.is-active::before,
.contact-network-cards .office-card.is-active::before {
    opacity: 1;
}

.about-office-index,
.office-card-index {
    display: block;
    margin-bottom: 18px;
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 800;
}

.about-office-card h3,
.contact-network-cards .office-card h3 {
    margin: 0 0 12px;
    color: #071121;
    font-size: clamp(22px, 1.6vw, 30px);
    font-weight: 800;
    line-height: 1.2;
}

.about-office-card p,
.contact-network-cards .office-card p {
    margin: 0;
    color: #4b5563;
    font-size: clamp(14px, 0.95vw, 16px);
    line-height: 1.75;
    overflow-wrap: anywhere;
}

.contact-hero-light {
    padding: calc(var(--header-height) + 76px) 0 38px;
}

.contact-info-section {
    padding: 20px 0 52px;
}

.contact-cards-grid {
    align-items: stretch;
}

.contact-info-card {
    display: flex;
    min-height: 224px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(30px, 3vw, 46px);
}

.contact-address-value {
    max-width: 25em;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(14px, 0.92vw, 17px);
    line-height: 1.62;
}

.offices-section {
    padding: clamp(66px, 6vw, 104px) 0 clamp(82px, 7vw, 130px);
}

.offices-section .section-header {
    margin-bottom: 0;
}

.contact-network-stage {
    width: min(100%, 1680px);
    min-height: clamp(590px, 45vw, 760px);
    margin: clamp(20px, 2.4vw, 40px) auto 0;
}

.contact-network-map-layer {
    background-position: center 36%;
    background-size: min(1580px, 95vw) auto;
}

.contact-network-cards {
    position: absolute;
    right: clamp(70px, 9vw, 170px);
    bottom: clamp(24px, 3.8vw, 66px);
    left: clamp(70px, 9vw, 170px);
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
    gap: clamp(18px, 1.7vw, 30px);
}

.contact-network-cards .office-card {
    position: relative;
    display: block;
    min-height: clamp(178px, 11vw, 224px);
    padding: clamp(24px, 2.2vw, 34px);
    appearance: none;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 22px 70px rgba(15, 23, 42, 0.08);
    transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.contact-network-cards .office-card:hover,
.about-office-card:hover {
    border-color: rgba(216, 12, 30, 0.22);
}

.contact-network-cards .office-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--color-primary);
    font-weight: 700;
}
.exhibition-grid .strategy-photo-card {
    aspect-ratio: 4 / 3;
    min-height: 0;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}
.exhibition-grid .strategy-photo-card img {
    min-height: 0;
    object-position: center;
}

.contact-network-cards .office-phone svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 1100px) {
    .about-office-layout,
    .contact-network-stage {
        height: auto;
        min-height: 0;
        padding-top: clamp(310px, 48vw, 460px);
    }

    .about-office-image,
    .contact-network-map {
        bottom: auto;
        height: clamp(300px, 46vw, 430px);
    }

    .about-office-map-layer,
    .contact-network-map-layer {
        background-size: 118% auto;
    }

    .about-office-list,
    .contact-network-cards {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
        grid-template-columns: 1fr !important;
        width: min(100%, calc(100vw - 48px));
        margin: 28px auto 0;
    }

    .about-office-card,
    .about-office-card:first-child,
    .contact-network-cards .office-card {
        min-height: auto !important;
        transform: none !important;
    }
}

@media (max-width: 640px) {
    .about-office-layout,
    .contact-network-stage {
        padding-top: 290px;
    }

    .about-office-image,
    .contact-network-map {
        height: 280px;
    }

    .about-office-map-layer,
    .contact-network-map-layer {
        background-size: 142% auto;
    }

    .about-office-pin.is-active,
    .contact-network-pin.is-active {
        width: 54px;
        height: 54px;
        font-size: 12px;
    }

    .contact-info-card {
        min-height: 190px;
    }
}

/* JAKA-style office map hover interaction */
.about-office-image,
.contact-network-map {
    pointer-events: none;
}

.about-office-list,
.contact-network-cards {
    z-index: 6;
    grid-auto-rows: auto;
    align-items: end !important;
    pointer-events: auto;
}

@media (min-width: 1101px) {
    .about-office-layout,
    .contact-network-stage {
        min-height: clamp(690px, 50vw, 860px);
    }

    .about-office-list,
    .contact-network-cards {
        bottom: clamp(-42px, -1.9vw, -24px);
    }
}

.about-office-card,
.about-office-card:first-child,
.contact-network-cards .office-card {
    min-height: clamp(70px, 5.2vw, 90px) !important;
    padding: clamp(18px, 1.35vw, 24px) clamp(22px, 1.8vw, 34px);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transform: none;
    transition: min-height 0.24s ease, padding 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.about-office-card.is-active,
.contact-network-cards .office-card.is-active {
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
    transform: none;
}

.about-office-card.is-expanded,
.contact-network-cards .office-card.is-expanded {
    z-index: 8;
    min-height: clamp(162px, 11.5vw, 218px) !important;
    padding: clamp(24px, 1.65vw, 30px) clamp(28px, 1.85vw, 38px);
    border-color: rgba(216, 12, 30, 0.18);
    box-shadow: 0 26px 72px rgba(15, 23, 42, 0.12);
    transform: none !important;
}

.about-office-card::before,
.contact-network-cards .office-card::before {
    width: 4px;
    opacity: 0;
}

.about-office-card.is-active::before,
.contact-network-cards .office-card.is-active::before {
    opacity: 0;
}

.about-office-card.is-expanded::before,
.contact-network-cards .office-card.is-expanded::before {
    opacity: 1;
}

.about-office-index,
.office-card-index {
    display: none;
}

.about-office-card h3,
.contact-network-cards .office-card h3 {
    margin: 0;
    color: #071426;
    font-size: clamp(18px, 1.22vw, 24px);
    font-weight: 800;
    line-height: 1.25;
    transition: color 0.22s ease, margin 0.22s ease;
}

.about-office-card.is-expanded h3,
.contact-network-cards .office-card.is-expanded h3 {
    margin-bottom: clamp(12px, 0.9vw, 18px);
    color: var(--color-primary);
}

.about-office-detail,
.office-card-detail {
    display: grid;
    max-height: 0;
    gap: 6px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 0.24s ease, opacity 0.2s ease, transform 0.24s ease;
}

.about-office-card.is-expanded .about-office-detail,
.contact-network-cards .office-card.is-expanded .office-card-detail {
    max-height: 210px;
    opacity: 1;
    transform: translateY(0);
}

.about-office-detail p,
.office-card-detail p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
    color: #4b5563;
    font-size: clamp(14px, 0.92vw, 16px);
    font-weight: 500;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.contact-network-cards .office-card .office-card-detail p {
    display: flex;
    margin: 0;
}

.about-office-detail svg,
.office-card-detail svg {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin-top: 3px;
    color: #c2c8d2;
}

.about-office-phone,
.office-card-detail .office-phone,
.about-office-email,
.office-card-detail .office-email {
    color: #071426;
    font-weight: 700;
}

.about-office-list .about-office-card:hover,
.contact-network-cards .office-card:hover {
    border-color: rgba(216, 12, 30, 0.18);
}

/* Cleaner value cards on the About page */
.about-values {
    padding: clamp(62px, 5vw, 92px) 0;
}

.about-values .container {
    width: min(1180px, calc(100vw - 72px));
}

.about-value-grid {
    gap: clamp(18px, 2vw, 28px);
}

.about-value-card {
    min-height: clamp(184px, 13vw, 232px);
    padding: clamp(30px, 2.3vw, 42px);
    border-left: 4px solid #d8002a;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 20px 58px rgba(15, 23, 42, 0.07);
}

.about-value-card::before {
    display: none;
}

.about-value-card::after {
    right: clamp(18px, 1.5vw, 24px);
    bottom: -10px;
    color: rgba(15, 23, 42, 0.032);
    font-size: clamp(66px, 5.3vw, 100px);
}

.about-value-card span {
    margin-bottom: clamp(16px, 1.2vw, 22px);
    font-size: clamp(13px, 0.86vw, 15px);
}

.about-value-card h2 {
    margin-bottom: clamp(12px, 1vw, 18px);
    font-size: clamp(26px, 1.8vw, 34px);
}

.about-value-card p {
    max-width: 24em;
    font-size: clamp(14px, 0.92vw, 16px);
    line-height: 1.75;
}

@media (max-width: 1100px) {
    .about-office-card.is-expanded,
    .contact-network-cards .office-card.is-expanded {
        transform: none;
    }

    .about-office-card,
    .about-office-card:first-child,
    .contact-network-cards .office-card {
        min-height: auto !important;
    }

    .about-office-detail,
    .office-card-detail {
        max-height: none;
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 760px) {
    .about-values .container {
        width: min(100% - 32px, 1180px);
    }
}

/* Product list page: keep the visual field clean while retaining the filter state hooks. */
body.page-template-page-products .pls-banner {
    min-height: clamp(150px, 13vw, 220px);
    padding: clamp(36px, 4.8vw, 72px) 0;
}

body.page-template-page-products .pls-banner-inner,
body.page-template-page-products .pls-banner::after,
body.page-template-page-products .pls-results-meta h2,
body.page-template-page-products #pls-results-count {
    display: none !important;
}

body.page-template-page-products .pls-results-meta {
    min-height: 1px;
    margin: 0 clamp(24px, 4vw, 64px) clamp(24px, 2.8vw, 46px);
    padding: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

body.page-template-page-products .pls-sidebar-h1 {
    margin: 0 !important;
    padding: 0 !important;
    color: inherit !important;
    font: inherit !important;
    line-height: inherit !important;
}

/* Office map cards: remove the rigid red rule and add a softer JAKA-like technical accent. */
.about-office-card::before,
.about-office-card.is-active::before,
.about-office-card.is-expanded::before,
.contact-network-cards .office-card::before,
.contact-network-cards .office-card.is-active::before,
.contact-network-cards .office-card.is-expanded::before {
    display: none !important;
    opacity: 0 !important;
}

.about-office-layout::after,
.contact-network-stage::after {
    content: "";
    position: absolute;
    right: clamp(70px, 8vw, 150px);
    bottom: clamp(92px, 8vw, 148px);
    width: clamp(132px, 10vw, 190px);
    aspect-ratio: 1;
    border: 1px dashed rgba(216, 12, 30, 0.12);
    background:
        linear-gradient(90deg, rgba(216, 12, 30, 0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(216, 12, 30, 0.08) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
    opacity: 0.6;
    z-index: 1;
}

.about-office-card.is-expanded,
.contact-network-cards .office-card.is-expanded {
    background:
        radial-gradient(circle at calc(100% - 36px) calc(100% - 34px), rgba(216, 12, 30, 0.12) 0 2px, transparent 3px),
        radial-gradient(circle at calc(100% - 36px) calc(100% - 34px), transparent 0 32px, rgba(216, 12, 30, 0.08) 33px 34px, transparent 35px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(255, 255, 255, 0.94));
}

/* About page customer review atmosphere. */
.about-testimonials {
    position: relative;
    overflow: hidden;
    padding: clamp(86px, 8vw, 145px) 0 clamp(100px, 8vw, 160px);
    background:
        radial-gradient(circle at center, rgba(216, 12, 30, 0.025), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
}

.about-testimonials::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle, rgba(216, 12, 30, 0.18) 0 2px, transparent 3px) 20% 36% / 260px 220px no-repeat,
        radial-gradient(circle, rgba(216, 12, 30, 0.1) 0 2px, transparent 3px) 70% 62% / 300px 260px no-repeat;
    pointer-events: none;
}

.about-testimonials .container {
    position: relative;
    z-index: 1;
    width: min(1380px, calc(100vw - 72px));
}

.about-testimonials-header {
    margin-bottom: 0;
    text-align: center;
}

.about-testimonials-header .section-title {
    color: #071426;
    font-size: clamp(28px, 2.5vw, 44px);
}

.about-testimonials-header p {
    margin: clamp(12px, 1vw, 18px) 0 0;
    color: rgba(15, 23, 42, 0.36);
    font-size: clamp(16px, 1.15vw, 22px);
}

.about-testimonials-stage {
    position: relative;
    min-height: clamp(500px, 42vw, 700px);
    isolation: isolate;
}

.about-testimonials-rings,
.about-testimonials-rings::before,
.about-testimonials-rings::after {
    position: absolute;
    left: 50%;
    top: 53%;
    aspect-ratio: 1;
    border: 1px solid rgba(15, 23, 42, 0.065);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.about-testimonials-rings {
    z-index: 0;
    width: clamp(400px, 38vw, 570px);
}

.about-testimonials-rings::before,
.about-testimonials-rings::after {
    content: "";
}

.about-testimonials-rings::before {
    width: 166%;
    border-color: rgba(15, 23, 42, 0.05);
}

.about-testimonials-rings::after {
    width: 232%;
    border-color: rgba(15, 23, 42, 0.038);
}

.about-testimonials-brand {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 53%;
    display: grid;
    place-items: center;
    width: clamp(190px, 17.5vw, 250px);
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 72px rgba(15, 23, 42, 0.07);
    color: #e60020;
    font-size: clamp(32px, 2.7vw, 46px);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}

.about-testimonial-note {
    --testimonial-float-y: -12px;
    position: absolute;
    z-index: 3;
    display: flex;
    gap: 12px;
    box-sizing: border-box;
    max-width: min(430px, 34vw);
    margin: 0;
    padding: clamp(10px, 0.9vw, 14px) clamp(16px, 1.45vw, 24px);
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: 999px;
    background: rgba(247, 247, 247, 0.78);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.025);
    color: rgba(15, 23, 42, 0.31);
    font-size: clamp(13px, 0.92vw, 16px);
    font-weight: 500;
    line-height: 1.55;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    animation: about-testimonial-float 6s ease-in-out infinite;
    will-change: transform;
}

@keyframes about-testimonial-float {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, var(--testimonial-float-y), 0); }
}

.about-testimonial-note span {
    flex: 0 0 auto;
    width: 6px;
    height: 6px;
    margin-top: 0.65em;
    border-radius: 999px;
    background: #e60020;
    opacity: 0.78;
}

.about-testimonial-note.note-1 {
    left: 0.5%;
    top: 25%;
    --testimonial-float-y: -13px;
    animation-duration: 5.8s;
    animation-delay: -1.2s;
}

.about-testimonial-note.note-2 {
    left: 0.5%;
    bottom: 18%;
    --testimonial-float-y: 11px;
    animation-duration: 6.6s;
    animation-delay: -3.4s;
}

.about-testimonial-note.note-3 {
    right: 0.5%;
    top: 32%;
    --testimonial-float-y: -10px;
    animation-duration: 6.2s;
    animation-delay: -4.6s;
}

.about-testimonial-note.note-4 {
    right: 0.5%;
    bottom: 23%;
    --testimonial-float-y: 13px;
    animation-duration: 7s;
    animation-delay: -2.1s;
}

@media (max-width: 900px) {
    .about-testimonials {
        padding: 72px 0;
    }

    .about-testimonials .container {
        width: min(100% - 32px, 1380px);
    }

    .about-testimonials-stage {
        display: grid;
        min-height: auto;
        gap: 18px;
        margin-top: 42px;
    }

    .about-testimonials-rings {
        display: none;
    }

    .about-testimonials-brand,
    .about-testimonial-note {
        position: static;
        transform: none;
    }

    .about-testimonials-brand {
        width: auto;
        aspect-ratio: auto;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        text-align: center;
    }

    .about-testimonial-note {
        max-width: none;
        padding: 18px 20px;
        border-color: rgba(15, 23, 42, 0.055);
        border-radius: 18px;
        background: rgba(248, 250, 252, 0.82);
        animation: none;
        will-change: auto;
    }
}

@media (max-width: 480px) {
    .about-testimonial-note {
        margin-right: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-testimonial-note {
        animation: none;
        will-change: auto;
    }
}

/* Latest product/contact/about refinements requested after visual QA. */
body.page-template-page-products .pls-banner > *,
body.page-template-page-products .pls-banner-inner,
body.page-template-page-products .pls-banner-title,
body.page-template-page-products .pls-banner-desc,
body.page-template-page-products .pls-banner .section-label,
body.page-template-page-products .pls-results-meta h2,
body.page-template-page-products .pls-results-meta span,
body.page-template-page-products #pls-results-count {
    display: none !important;
    visibility: hidden !important;
}

body.page-template-page-products .pls-banner::after,
.about-office-map-layer::after,
.contact-network-map-layer::after {
    content: none !important;
    display: none !important;
    opacity: 0 !important;
}

.about-office-card::before,
.about-office-card.is-active::before,
.about-office-card.is-expanded::before,
.contact-network-cards .office-card::before,
.contact-network-cards .office-card.is-active::before,
.contact-network-cards .office-card.is-expanded::before {
    content: none !important;
    display: none !important;
    width: 0 !important;
    opacity: 0 !important;
    background: transparent !important;
    border: 0 !important;
}

.about-office-layout,
.contact-network-stage {
    isolation: isolate;
}

.about-office-layout::before,
.contact-network-stage::before {
    content: "";
    position: absolute;
    left: clamp(44px, 5.8vw, 116px);
    bottom: clamp(48px, 5vw, 92px);
    z-index: 1;
    width: clamp(180px, 16vw, 310px);
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(224, 0, 35, 0), rgba(224, 0, 35, 0.28), rgba(224, 0, 35, 0));
}

.about-office-layout::after,
.contact-network-stage::after {
    opacity: 0.52;
}

@media (min-width: 1101px) {
    .about-office-list,
    .contact-network-cards {
        bottom: clamp(-70px, -3.1vw, -38px) !important;
        align-items: flex-end !important;
    }

    .about-office-card,
    .about-office-card:first-child,
    .about-office-card.is-expanded,
    .contact-network-cards .office-card,
    .contact-network-cards .office-card.is-expanded {
        transform: none !important;
        will-change: box-shadow, border-color, background-color;
    }
}

/* Product categories: restore normal document flow on tablet and mobile. */
@media (max-width: 980px) {
    html.products-scroll-lock {
        height: auto !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        overscroll-behavior: auto !important;
    }

    body.page-template-page-products {
        height: auto !important;
        min-height: 100% !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        overscroll-behavior: auto !important;
    }

    body.page-template-page-products .site-content,
    body.page-template-page-products main,
    body.page-template-page-products .pls-page {
        height: auto !important;
        min-height: 0 !important;
        overflow: visible !important;
    }

    body.page-template-page-products .pls-page {
        display: block !important;
    }

    body.page-template-page-products .pls-sidebar {
        position: relative !important;
        top: auto !important;
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        margin: 0 !important;
        overflow: hidden !important;
        box-shadow: none !important;
    }

    body.page-template-page-products .pls-sidebar-inner {
        display: flex !important;
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        gap: 10px !important;
        padding: 0 18px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scrollbar-gutter: auto !important;
    }

    body.page-template-page-products .pls-content {
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        padding-top: 0 !important;
        overflow: visible !important;
        scrollbar-gutter: auto !important;
    }

    body.page-template-page-products .pls-grid {
        padding-top: 28px !important;
    }
}

/* Final QA pass: remove the redundant migrated product heading band. */
body.page-template-page-products .pls-banner {
    min-height: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: transparent !important;
    border: 0 !important;
}

body.page-template-page-products .pls-banner::before,
body.page-template-page-products .pls-banner::after {
    content: none !important;
    display: none !important;
}

body.page-template-page-products .pls-results-meta {
    display: none !important;
    min-height: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
}

body.page-template-page-products .pls-grid {
    padding-top: clamp(34px, 3.8vw, 62px) !important;
}

/* Final QA pass: office cards should expand cleanly without the red vertical edge. */
.about-office-card,
.about-office-card:first-child,
.about-office-card.is-active,
.about-office-card.is-expanded,
.contact-network-cards .office-card,
.contact-network-cards .office-card.is-active,
.contact-network-cards .office-card.is-expanded {
    border-color: rgba(15, 23, 42, 0.08) !important;
    border-left: 1px solid rgba(15, 23, 42, 0.08) !important;
}

.about-office-card.is-expanded,
.contact-network-cards .office-card.is-expanded {
    background:
        radial-gradient(circle at calc(100% - 34px) calc(100% - 32px), rgba(216, 12, 30, 0.11) 0 2px, transparent 3px),
        radial-gradient(circle at calc(100% - 34px) calc(100% - 32px), transparent 0 29px, rgba(216, 12, 30, 0.07) 30px 31px, transparent 32px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)) !important;
    box-shadow: inset 0 3px 0 rgba(216, 12, 30, 0.22), 0 28px 78px rgba(15, 23, 42, 0.10) !important;
}

.about-office-card.is-expanded h3::after,
.contact-network-cards .office-card.is-expanded h3::after {
    content: "";
    display: block;
    width: 42px;
    height: 2px;
    margin-top: 10px;
    background: linear-gradient(90deg, #e60020, rgba(230, 0, 32, 0));
}

.about-office-layout::before,
.contact-network-stage::before {
    left: clamp(52px, 6vw, 120px) !important;
    bottom: clamp(30px, 3.2vw, 60px) !important;
}

.about-office-layout::after,
.contact-network-stage::after {
    right: clamp(76px, 8vw, 150px) !important;
    bottom: clamp(126px, 10vw, 190px) !important;
    border-style: dashed;
}

/* Final delivery tuning: keep product sidebar and content scrolling independently. */
@media (min-width: 981px) {
    body.page-template-page-products {
        overflow: hidden !important;
    }

    body.page-template-page-products .pls-page {
        height: 100vh !important;
        min-height: 100vh !important;
        overflow: hidden !important;
    }

    body.page-template-page-products .pls-sidebar {
        position: sticky !important;
        top: 0 !important;
        margin-top: var(--header-height) !important;
        height: calc(100vh - var(--header-height)) !important;
        max-height: calc(100vh - var(--header-height)) !important;
        overflow: hidden !important;
        align-self: flex-start !important;
        z-index: 8 !important;
    }

    body.page-template-page-products .pls-sidebar-inner {
        height: 100% !important;
        max-height: 100% !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        overscroll-behavior: contain !important;
        scrollbar-gutter: stable !important;
        padding-bottom: 118px !important;
    }

    body.page-template-page-products .pls-content {
        height: 100vh !important;
        max-height: 100vh !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        overscroll-behavior: contain !important;
        padding-top: var(--header-height) !important;
    }

    body.page-template-page-products .pls-banner {
        min-height: clamp(132px, 15vw, 210px) !important;
        padding: clamp(28px, 3.8vw, 54px) clamp(34px, 6vw, 92px) !important;
        display: flex !important;
        align-items: flex-end !important;
    }

    body.page-template-page-products .pls-banner-title,
    body.page-template-page-products .pls-banner-subtitle {
        display: none !important;
    }

    body.page-template-page-products .pls-results {
        padding-top: clamp(36px, 3.7vw, 64px) !important;
    }

    body.page-template-page-products .pls-section-head {
        margin-bottom: clamp(28px, 3vw, 46px) !important;
    }

    body.page-template-page-products .pls-section-title {
        font-size: clamp(30px, 2.35vw, 44px) !important;
        line-height: 1.16 !important;
    }
}

/* Office map/card interaction polish for About and Contact pages. */
.about-office-layout,
.contact-network-stage {
    --office-map-x: 0%;
    --office-map-y: 0%;
}

/* Keep About-page pins in the exact coordinate space of world-map.png. */
.about-office-pins {
    inset: auto;
    left: 50%;
    top: 38%;
    width: min(1600px, 96vw);
    aspect-ratio: 1832 / 856;
    transform: translate(
        calc(-50% + var(--office-map-x)),
        calc(-38% + var(--office-map-y))
    );
}

.about-office-layout::before,
.about-office-layout::after,
.contact-network-stage::before,
.contact-network-stage::after {
    pointer-events: none !important;
}

.about-office-list,
.contact-network-cards {
    pointer-events: auto !important;
    z-index: 12 !important;
}

.about-office-card,
.about-office-card:first-child,
.contact-network-cards .office-card,
.contact-network-cards .office-card:first-child {
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-left: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: 0 !important;
    background:
        radial-gradient(circle at calc(100% - 34px) 28px, rgba(216, 12, 30, 0.07) 0 2px, transparent 3px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)) !important;
    box-shadow: 0 18px 58px rgba(15, 23, 42, 0.06) !important;
    transform: none !important;
    cursor: pointer !important;
    will-change: height, box-shadow, background-color !important;
}

.about-office-card::before,
.contact-network-cards .office-card::before,
.about-office-card.is-active::before,
.contact-network-cards .office-card.is-active::before,
.about-office-card.is-expanded::before,
.contact-network-cards .office-card.is-expanded::before {
    display: none !important;
    content: none !important;
}

.about-office-card h3::after,
.contact-network-cards .office-card h3::after,
.about-office-card.is-expanded h3::after,
.contact-network-cards .office-card.is-expanded h3::after {
    display: none !important;
    content: none !important;
}

.about-office-card.is-expanded,
.contact-network-cards .office-card.is-expanded {
    background:
        radial-gradient(circle at calc(100% - 42px) 38px, rgba(216, 12, 30, 0.13) 0 3px, transparent 4px),
        radial-gradient(circle at calc(100% - 42px) 38px, transparent 0 30px, rgba(216, 12, 30, 0.08) 31px 32px, transparent 33px),
        linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.94)) !important;
    border-color: rgba(216, 12, 30, 0.16) !important;
    border-left-color: rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 30px 84px rgba(15, 23, 42, 0.12) !important;
}

@media (min-width: 1101px) {
    .about-office-layout {
        height: clamp(690px, 52vw, 880px) !important;
    }

    .contact-network-stage {
        min-height: clamp(720px, 55vw, 900px) !important;
    }

    .about-office-list,
    .contact-network-cards {
        bottom: clamp(36px, 4.2vw, 76px) !important;
        align-items: flex-end !important;
    }

    .about-office-card,
    .about-office-card:first-child,
    .contact-network-cards .office-card,
    .contact-network-cards .office-card:first-child {
        height: 88px !important;
        min-height: 88px !important;
        padding: 24px 34px !important;
        overflow: hidden !important;
        transition:
            height 0.24s ease,
            min-height 0.24s ease,
            padding 0.24s ease,
            box-shadow 0.24s ease,
            border-color 0.24s ease,
            background-color 0.24s ease !important;
    }

    .about-office-card.is-expanded,
    .contact-network-cards .office-card.is-expanded {
        height: 188px !important;
        min-height: 188px !important;
        padding: 30px 38px !important;
        z-index: 14 !important;
    }

    .about-office-card:not(.is-expanded) .about-office-detail,
    .contact-network-cards .office-card:not(.is-expanded) .office-card-detail {
        max-height: 0 !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .about-office-card.is-expanded .about-office-detail,
    .contact-network-cards .office-card.is-expanded .office-card-detail {
        max-height: 132px !important;
        opacity: 1 !important;
    }
}

/* About value cards: remove the heavy red rail and add softer JAKA-like detail. */
.about-value-card {
    border-left: 1px solid rgba(15, 23, 42, 0.08) !important;
    background:
        radial-gradient(circle at calc(100% - 42px) 42px, rgba(216, 12, 30, 0.08) 0 2px, transparent 3px),
        radial-gradient(circle at calc(100% - 42px) 42px, transparent 0 28px, rgba(216, 12, 30, 0.06) 29px 30px, transparent 31px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9)) !important;
    box-shadow: 0 26px 72px rgba(15, 23, 42, 0.08) !important;
}

.about-value-card::before {
    display: none !important;
}

/* 2026-06-14 final stabilization: product split scroll + office-card hover parity. */
@media (min-width: 981px) {
    body.page-template-page-products {
        overflow: hidden !important;
    }

    body.page-template-page-products .pls-page {
        display: grid !important;
        grid-template-columns: clamp(260px, 16vw, 320px) minmax(0, 1fr) !important;
        height: 100vh !important;
        min-height: 100vh !important;
        overflow: hidden !important;
        padding-top: var(--header-height) !important;
        align-items: stretch !important;
    }

    body.page-template-page-products .pls-sidebar {
        position: relative !important;
        top: auto !important;
        margin-top: 0 !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;
        height: calc(100vh - var(--header-height)) !important;
        max-height: calc(100vh - var(--header-height)) !important;
        overflow: hidden !important;
        align-self: stretch !important;
        z-index: 8 !important;
    }

    body.page-template-page-products .pls-sidebar-inner {
        height: 100% !important;
        max-height: 100% !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        overscroll-behavior: contain !important;
        scrollbar-gutter: stable !important;
        padding-top: clamp(34px, 4vw, 58px) !important;
        padding-bottom: 130px !important;
    }

    body.page-template-page-products .pls-content {
        height: calc(100vh - var(--header-height)) !important;
        max-height: calc(100vh - var(--header-height)) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        overscroll-behavior: contain !important;
        padding-top: 0 !important;
        min-width: 0 !important;
    }

    body.page-template-page-products .pls-banner {
        min-height: clamp(104px, 8vw, 138px) !important;
        padding: clamp(22px, 2.6vw, 34px) clamp(42px, 6vw, 96px) !important;
        margin: 0 !important;
        display: flex !important;
        align-items: flex-end !important;
    }

    body.page-template-page-products .pls-banner-title,
    body.page-template-page-products .pls-banner-subtitle,
    body.page-template-page-products .pls-banner-desc,
    body.page-template-page-products .pls-banner .section-label {
        display: none !important;
    }

    body.page-template-page-products .pls-results {
        padding: clamp(28px, 3vw, 48px) clamp(42px, 6vw, 96px) 90px !important;
    }

    body.page-template-page-products .pls-results-meta {
        display: none !important;
        height: 0 !important;
        min-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        overflow: hidden !important;
    }

    body.page-template-page-products .pls-grid {
        padding-top: 0 !important;
    }
}

.about-office-card,
.about-office-card:first-child,
.about-office-card.is-active,
.about-office-card.is-expanded,
.contact-network-cards .office-card,
.contact-network-cards .office-card:first-child,
.contact-network-cards .office-card.is-active,
.contact-network-cards .office-card.is-expanded {
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-left: 1px solid rgba(15, 23, 42, 0.08) !important;
    transform: none !important;
}

.about-office-card.is-expanded,
.contact-network-cards .office-card.is-expanded {
    border-color: rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 30px 84px rgba(15, 23, 42, 0.12) !important;
}

@media (min-width: 1101px) {
    .about-office-layout,
    .contact-network-stage {
        min-height: clamp(760px, 56vw, 920px) !important;
        overflow: hidden !important;
    }

    .about-office-list,
    .contact-network-cards {
        bottom: clamp(-4px, 0.4vw, 10px) !important;
        align-items: flex-end !important;
        min-height: 230px !important;
        pointer-events: auto !important;
        z-index: 20 !important;
    }

    .about-office-card,
    .about-office-card:first-child,
    .contact-network-cards .office-card,
    .contact-network-cards .office-card:first-child {
        height: 104px !important;
        min-height: 104px !important;
        padding: 28px 36px !important;
        overflow: hidden !important;
        pointer-events: auto !important;
        transition:
            height 0.22s ease,
            min-height 0.22s ease,
            padding 0.22s ease,
            box-shadow 0.22s ease,
            border-color 0.22s ease,
            background 0.22s ease !important;
    }

    .about-office-card.is-expanded,
    .contact-network-cards .office-card.is-expanded {
        height: 210px !important;
        min-height: 210px !important;
        padding: 32px 40px !important;
        z-index: 22 !important;
    }

    .about-office-card:not(.is-expanded) .about-office-detail,
    .contact-network-cards .office-card:not(.is-expanded) .office-card-detail {
        max-height: 0 !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .about-office-card.is-expanded .about-office-detail,
    .contact-network-cards .office-card.is-expanded .office-card-detail {
        max-height: 138px !important;
        opacity: 1 !important;
    }
}

.about-value-card {
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-left: 1px solid rgba(15, 23, 42, 0.08) !important;
    padding: clamp(44px, 4.2vw, 66px) clamp(40px, 4vw, 58px) !important;
}

/* About: JAKA-style mission/vision/value visual block with Chenxuan imagery. */
.about-values {
    position: relative !important;
    min-height: clamp(720px, 54vw, 960px) !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #0f1115 !important;
    isolation: isolate !important;
}

.about-values::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    background: url("../images/about/about-values-chenxuan.jpg") center 58% / cover no-repeat !important;
    filter: grayscale(0.06) saturate(0.92) brightness(0.82) !important;
    transform: scale(1.03) !important;
    z-index: -2 !important;
}

.about-values::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        linear-gradient(180deg, rgba(8, 12, 18, 0.18), rgba(8, 12, 18, 0.42)),
        rgba(226, 230, 235, 0.23) !important;
    z-index: -1 !important;
}

.about-values .container {
    position: relative !important;
    z-index: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    min-height: inherit !important;
    max-width: min(1620px, calc(100vw - 180px)) !important;
    padding: clamp(112px, 10vw, 172px) 0 clamp(70px, 5.8vw, 106px) !important;
}

.about-values-title {
    position: absolute !important;
    top: clamp(126px, 12.6vw, 218px) !important;
    left: 50% !important;
    width: min(1050px, 92vw) !important;
    margin: 0 !important;
    transform: translateX(-50%) !important;
    color: #fff !important;
    font-size: clamp(32px, 2.55vw, 52px) !important;
    line-height: 1.22 !important;
    font-weight: 800 !important;
    text-align: center !important;
    letter-spacing: 0 !important;
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.34) !important;
}

.about-values .about-value-grid {
    width: 100% !important;
    margin: auto 0 0 !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: clamp(24px, 2.35vw, 46px) !important;
}

.about-values .about-value-card {
    position: relative !important;
    display: grid !important;
    grid-template-columns: clamp(62px, 4.8vw, 78px) minmax(0, 1fr) !important;
    column-gap: clamp(22px, 2vw, 34px) !important;
    align-items: center !important;
    min-height: clamp(178px, 11.2vw, 218px) !important;
    padding: clamp(34px, 2.8vw, 52px) clamp(34px, 3.2vw, 62px) !important;
    border: 1px solid rgba(255, 255, 255, 0.34) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.34) !important;
    background: rgba(255, 255, 255, 0.24) !important;
    box-shadow: none !important;
    backdrop-filter: blur(4px) !important;
    color: #fff !important;
    overflow: hidden !important;
    transform: none !important;
    transition: background 0.22s ease, border-color 0.22s ease !important;
}

.about-values .about-value-card:hover {
    background: rgba(255, 255, 255, 0.34) !important;
    border-color: rgba(255, 255, 255, 0.46) !important;
    transform: none !important;
}

.about-values .about-value-card::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: auto !important;
    top: auto !important;
    bottom: 0 !important;
    display: block !important;
    width: 0 !important;
    height: 5px !important;
    background: var(--brand-red) !important;
    opacity: 1 !important;
    transition: width 0.22s ease !important;
}

.about-values .about-value-card:first-child::before,
.about-values .about-value-card:hover::before {
    width: 56% !important;
}

.about-values .about-value-card::after {
    content: attr(data-card-number) !important;
    position: absolute !important;
    right: clamp(18px, 2vw, 34px) !important;
    bottom: -0.24em !important;
    color: rgba(255, 255, 255, 0.12) !important;
    font-size: clamp(72px, 6vw, 118px) !important;
    font-weight: 800 !important;
    line-height: 1 !important;
}

.about-values .about-value-card span {
    position: relative !important;
    z-index: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: clamp(58px, 4.6vw, 76px) !important;
    height: clamp(58px, 4.6vw, 76px) !important;
    border: 1px solid rgba(255, 255, 255, 0.56) !important;
    border-radius: 50% !important;
    color: transparent !important;
    font-size: 0 !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}

.about-values .about-value-card span::before {
    content: "" !important;
    display: block !important;
    width: clamp(24px, 1.75vw, 32px) !important;
    height: clamp(24px, 1.75vw, 32px) !important;
    border: 2px solid rgba(255, 255, 255, 0.88) !important;
    border-radius: 50% !important;
    box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.13) !important;
}

.about-values .about-value-card h2 {
    position: relative !important;
    z-index: 1 !important;
    margin: 0 0 12px !important;
    color: #fff !important;
    font-size: clamp(25px, 1.75vw, 34px) !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
}

.about-values .about-value-card p {
    position: relative !important;
    z-index: 1 !important;
    margin: 0 !important;
    max-width: 24em !important;
    color: rgba(255, 255, 255, 0.86) !important;
    font-size: clamp(15px, 1vw, 18px) !important;
    line-height: 1.7 !important;
}

@media (max-width: 1180px) {
    .about-values .container {
        max-width: calc(100vw - 56px) !important;
    }

    .about-values .about-value-card {
        grid-template-columns: 1fr !important;
        row-gap: 18px !important;
    }
}

@media (max-width: 780px) {
    .about-values {
        min-height: auto !important;
    }

    .about-values .container {
        display: block !important;
        max-width: calc(100vw - 32px) !important;
        padding: 96px 0 40px !important;
    }

    .about-values-title {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: auto !important;
        margin: 0 auto 42px !important;
        transform: none !important;
        font-size: 28px !important;
    }

    .about-values .about-value-grid {
        grid-template-columns: 1fr !important;
    }
}

/* About values: final JAKA-style proportion tuning after visual QA. */
.about-values {
    min-height: clamp(760px, 56vw, 980px) !important;
}

.about-values::before {
    background-position: center 52% !important;
    filter: grayscale(0.03) saturate(0.98) brightness(0.9) !important;
    transform: scale(1.01) !important;
}

.about-values::after {
    background:
        linear-gradient(180deg, rgba(8, 10, 14, 0.16), rgba(8, 10, 14, 0.42)),
        rgba(196, 200, 205, 0.34) !important;
}

.about-values .container {
    max-width: min(1640px, calc(100vw - 260px)) !important;
    padding-top: clamp(128px, 10.2vw, 190px) !important;
    padding-bottom: clamp(76px, 5.2vw, 98px) !important;
}

.about-values-title {
    top: clamp(158px, 13.1vw, 226px) !important;
    width: min(1120px, 92vw) !important;
    font-size: clamp(34px, 2.45vw, 50px) !important;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.32) !important;
}

.about-values .about-value-grid {
    gap: clamp(22px, 2vw, 36px) !important;
}

.about-values .about-value-card {
    grid-template-columns: clamp(70px, 5vw, 88px) minmax(0, 1fr) !important;
    column-gap: clamp(24px, 2vw, 36px) !important;
    min-height: clamp(148px, 9.2vw, 178px) !important;
    padding: clamp(26px, 2.15vw, 40px) clamp(30px, 2.7vw, 52px) !important;
    background: rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(2px) !important;
}

.about-values .about-value-card::after {
    display: none !important;
}

.about-values .about-value-card span {
    width: clamp(68px, 5vw, 88px) !important;
    height: clamp(68px, 5vw, 88px) !important;
}

.about-values .about-value-card span::before {
    width: clamp(26px, 1.9vw, 34px) !important;
    height: clamp(26px, 1.9vw, 34px) !important;
}

.about-values .about-value-card h2 {
    margin-bottom: 8px !important;
    font-size: clamp(23px, 1.45vw, 30px) !important;
}

.about-values .about-value-card p {
    max-width: 28em !important;
    font-size: clamp(15px, 0.92vw, 17px) !important;
    line-height: 1.58 !important;
}

@media (max-width: 1180px) {
    .about-values .container {
        max-width: calc(100vw - 56px) !important;
    }

    .about-values .about-value-card {
        min-height: 172px !important;
    }
}

@media (max-width: 780px) {
    .about-values .container {
        max-width: calc(100vw - 32px) !important;
        padding-top: 96px !important;
        padding-bottom: 40px !important;
    }
}

/* About values: lock to the JAKA reference layout with the Chenxuan product-family image. */
.about-values {
    min-height: clamp(790px, 58vw, 1030px) !important;
    isolation: isolate !important;
}

.about-values::before {
    background-image: url("../images/about/about-values-chenxuan.jpg") !important;
    background-size: cover !important;
    background-position: center 50% !important;
    filter: grayscale(0.03) saturate(0.95) brightness(0.86) !important;
    transform: scale(1.015) !important;
}

.about-values::after {
    background:
        linear-gradient(180deg, rgba(12, 14, 18, 0.16) 0%, rgba(12, 14, 18, 0.24) 45%, rgba(12, 14, 18, 0.4) 100%),
        rgba(190, 194, 200, 0.38) !important;
}

.about-values .container {
    max-width: min(1580px, calc(100vw - 250px)) !important;
    padding-top: clamp(138px, 10.9vw, 200px) !important;
    padding-bottom: clamp(92px, 6.5vw, 132px) !important;
}

.about-values-title {
    top: clamp(168px, 13.7vw, 242px) !important;
    width: min(1180px, 88vw) !important;
    font-size: clamp(36px, 2.7vw, 54px) !important;
    line-height: 1.18 !important;
    letter-spacing: 0 !important;
    text-shadow: 0 12px 32px rgba(0, 0, 0, 0.34) !important;
}

.about-values .about-value-grid {
    gap: clamp(26px, 2.2vw, 42px) !important;
}

.about-values .about-value-card {
    grid-template-columns: clamp(76px, 5.3vw, 96px) minmax(0, 1fr) !important;
    column-gap: clamp(24px, 2.3vw, 40px) !important;
    min-height: clamp(172px, 10.8vw, 212px) !important;
    padding: clamp(30px, 2.45vw, 46px) clamp(34px, 3vw, 58px) !important;
    background: rgba(255, 255, 255, 0.34) !important;
    border-color: rgba(255, 255, 255, 0.34) !important;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.16) !important;
    backdrop-filter: blur(2px) !important;
    transform: none !important;
    transition: background-color 0.22s ease, border-color 0.22s ease !important;
}

.about-values .about-value-card:hover {
    background: rgba(255, 255, 255, 0.42) !important;
    transform: none !important;
}

.about-values .about-value-card::before {
    bottom: 0 !important;
    left: 0 !important;
    width: 0 !important;
    height: 4px !important;
    background: #d8002a !important;
    opacity: 1 !important;
    transform: none !important;
    transition: width 0.25s ease !important;
}

.about-values .about-value-card:first-child::before,
.about-values .about-value-card:hover::before {
    width: 56% !important;
}

.about-values .about-value-card::after {
    display: none !important;
}

.about-values .about-value-card span {
    width: clamp(74px, 5.3vw, 94px) !important;
    height: clamp(74px, 5.3vw, 94px) !important;
}

.about-values .about-value-card span::before {
    width: clamp(28px, 2vw, 36px) !important;
    height: clamp(28px, 2vw, 36px) !important;
}

.about-values .about-value-card h2 {
    margin-bottom: clamp(8px, 0.7vw, 12px) !important;
    font-size: clamp(25px, 1.65vw, 34px) !important;
    line-height: 1.24 !important;
}

.about-values .about-value-card p {
    max-width: 29em !important;
    font-size: clamp(16px, 1.02vw, 19px) !important;
    line-height: 1.62 !important;
}

@media (max-width: 1180px) {
    .about-values .container {
        max-width: calc(100vw - 56px) !important;
    }

    .about-values .about-value-grid {
        grid-template-columns: 1fr !important;
        max-width: 720px !important;
        margin-right: auto !important;
        margin-left: auto !important;
    }
}

@media (max-width: 780px) {
    .about-values {
        min-height: auto !important;
    }

    .about-values .container {
        max-width: calc(100vw - 32px) !important;
        padding-top: 96px !important;
        padding-bottom: 46px !important;
    }

    .about-values-title {
        font-size: 28px !important;
    }

    .about-values .about-value-card {
        grid-template-columns: 64px minmax(0, 1fr) !important;
        min-height: 148px !important;
        padding: 24px !important;
    }
}

/* About values final alignment: JAKA-style wide icon cards over the Chenxuan family image. */
.about-values .container {
    max-width: min(1640px, calc(100vw - 190px)) !important;
}

.about-values .about-value-card {
    display: grid !important;
    grid-template-columns: clamp(78px, 5.2vw, 96px) minmax(0, 1fr) !important;
    grid-template-rows: auto auto !important;
    align-content: center !important;
    align-items: center !important;
    overflow: hidden !important;
}

.about-values .about-value-card::after {
    content: attr(data-card-number) !important;
    display: block !important;
    position: absolute !important;
    right: clamp(22px, 2.2vw, 40px) !important;
    bottom: -0.3em !important;
    color: rgba(255, 255, 255, 0.14) !important;
    font-size: clamp(86px, 6.2vw, 130px) !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    pointer-events: none !important;
}

.about-values .about-value-card span {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    align-self: center !important;
    margin: 0 !important;
    color: transparent !important;
    font-size: 0 !important;
}

.about-values .about-value-card h2 {
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-self: end !important;
    margin: 0 0 clamp(8px, 0.65vw, 12px) !important;
    white-space: normal !important;
}

.about-values .about-value-card p {
    grid-column: 2 !important;
    grid-row: 2 !important;
    align-self: start !important;
    max-width: none !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
}

@media (max-width: 1180px) {
    .about-values .container {
        max-width: calc(100vw - 56px) !important;
    }
}

@media (max-width: 780px) {
    .about-values .about-value-card {
        grid-template-columns: 62px minmax(0, 1fr) !important;
    }
}

/* 2026-06-15 visual lock: JAKA-style values hero, stable office cards, split product scroll. */
@media (min-width: 1181px) {
    .about-values {
        min-height: clamp(805px, 45.8vw, 900px) !important;
        padding: 0 !important;
        background: #d7d8da !important;
    }

    .about-values::before {
        background-image: url("../images/about/about-values-chenxuan.jpg") !important;
        background-size: cover !important;
        background-position: center 52% !important;
        filter: grayscale(0.05) saturate(0.92) brightness(0.86) !important;
        transform: none !important;
    }

    .about-values::after {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(22, 24, 28, 0.08) 42%, rgba(20, 21, 24, 0.2) 100%),
            rgba(185, 188, 193, 0.36) !important;
    }

    .about-values .container {
        display: flex !important;
        min-height: inherit !important;
        max-width: min(1590px, calc(100vw - 220px)) !important;
        padding: clamp(116px, 6.2vw, 128px) 0 clamp(66px, 4.2vw, 82px) !important;
        align-items: flex-end !important;
    }

    .about-values-title {
        top: clamp(174px, 13.2vw, 248px) !important;
        width: min(1040px, 82vw) !important;
        font-size: clamp(34px, 2.18vw, 46px) !important;
        line-height: 1.22 !important;
        font-weight: 800 !important;
        text-align: center !important;
        text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28) !important;
    }

    .about-values .about-value-grid {
        width: 100% !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: clamp(24px, 1.45vw, 32px) !important;
        align-items: end !important;
    }

    .about-values .about-value-card {
        min-height: clamp(170px, 9.6vw, 186px) !important;
        padding: clamp(26px, 1.9vw, 34px) clamp(30px, 2.35vw, 46px) !important;
        grid-template-columns: clamp(66px, 4.3vw, 82px) minmax(0, 1fr) !important;
        column-gap: clamp(22px, 1.5vw, 30px) !important;
        background: rgba(255, 255, 255, 0.34) !important;
        border: 1px solid rgba(255, 255, 255, 0.24) !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        backdrop-filter: blur(2px) !important;
    }

    .about-values .about-value-card:hover {
        background: rgba(255, 255, 255, 0.42) !important;
        box-shadow: none !important;
    }

    .about-values .about-value-card::before {
        display: block !important;
        top: auto !important;
        right: auto !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 0 !important;
        height: 4px !important;
        background: #d8002a !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .about-values .about-value-card:first-child::before,
    .about-values .about-value-card:hover::before {
        width: 56% !important;
    }

    .about-values .about-value-card::after {
        display: none !important;
        content: none !important;
    }

    .about-values .about-value-card span {
        width: clamp(64px, 4.3vw, 82px) !important;
        height: clamp(64px, 4.3vw, 82px) !important;
        border-color: rgba(255, 255, 255, 0.52) !important;
    }

    .about-values .about-value-card span::before {
        width: clamp(26px, 1.65vw, 32px) !important;
        height: clamp(26px, 1.65vw, 32px) !important;
        opacity: 0.96 !important;
    }

    .about-values .about-value-card h2 {
        margin-bottom: clamp(7px, 0.52vw, 10px) !important;
        color: #fff !important;
        font-size: clamp(24px, 1.42vw, 30px) !important;
        font-weight: 800 !important;
        line-height: 1.24 !important;
    }

    .about-values .about-value-card p {
        color: rgba(255, 255, 255, 0.86) !important;
        font-size: clamp(15px, 0.92vw, 17px) !important;
        line-height: 1.58 !important;
    }
}

@media (min-width: 981px) {
    html.products-scroll-lock {
        height: 100% !important;
        overflow: hidden !important;
        overscroll-behavior: none !important;
    }

    body.page-template-page-products {
        height: 100% !important;
        overflow: hidden !important;
        overscroll-behavior: none !important;
    }

    body.page-template-page-products .site-content,
    body.page-template-page-products main {
        height: 100vh !important;
        overflow: hidden !important;
    }

    body.page-template-page-products .pls-page {
        height: 100vh !important;
        min-height: 100vh !important;
        overflow: hidden !important;
    }

    body.page-template-page-products .pls-sidebar-inner,
    body.page-template-page-products .pls-content {
        overscroll-behavior: contain !important;
        scrollbar-gutter: stable !important;
    }
}

@media (min-width: 1101px) {
    .about-office-list,
    .contact-network-cards {
        bottom: clamp(0px, 0.65vw, 14px) !important;
        min-height: 228px !important;
        align-items: flex-end !important;
        pointer-events: auto !important;
        z-index: 30 !important;
    }

    .about-office-card,
    .about-office-card:first-child,
    .about-office-card.is-active,
    .contact-network-cards .office-card,
    .contact-network-cards .office-card:first-child,
    .contact-network-cards .office-card.is-active {
        height: 104px !important;
        min-height: 104px !important;
        padding: 28px 34px !important;
        border-left-width: 1px !important;
        transform: none !important;
    }

    .about-office-card.is-expanded,
    .contact-network-cards .office-card.is-expanded {
        height: 214px !important;
        min-height: 214px !important;
        padding: 32px 38px !important;
        transform: none !important;
    }

    .about-office-card:hover,
    .contact-network-cards .office-card:hover {
        transform: none !important;
    }
}

/* About values: reveal each text panel only on hover, matching the image-card interaction. */
@media (min-width: 1181px) {
    .about-values .about-value-grid {
        overflow: visible !important;
    }

    .about-values .about-value-card {
        cursor: pointer !important;
        transform: translateY(calc(100% - clamp(82px, 5.9vw, 108px))) !important;
        transition:
            transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
            background-color 0.22s ease,
            border-color 0.22s ease !important;
    }

    .about-values .about-value-card:hover,
    .about-values .about-value-card:focus,
    .about-values .about-value-card:focus-within {
        background: rgba(255, 255, 255, 0.42) !important;
        border-color: rgba(255, 255, 255, 0.46) !important;
        transform: translateY(0) !important;
        outline: none !important;
    }

    .about-values .about-value-card:first-child::before {
        width: 0 !important;
    }

    .about-values .about-value-card:hover::before,
    .about-values .about-value-card:focus::before,
    .about-values .about-value-card:focus-within::before {
        width: 56% !important;
    }

    .about-values .about-value-card p {
        opacity: 0 !important;
        transform: translateY(10px) !important;
        transition: opacity 0.22s ease 0.08s, transform 0.28s ease 0.08s !important;
    }

    .about-values .about-value-card:hover p,
    .about-values .about-value-card:focus p,
    .about-values .about-value-card:focus-within p {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* 2026-06-15 product list polish: stable card text and cleaner filter state. */
body.page-template-page-products .pls-product-name {
    display: block !important;
    height: calc(1.46em * 3 + 27px) !important;
    min-height: calc(1.46em * 3 + 27px) !important;
    padding: 18px 20px 8px !important;
    overflow: hidden !important;
    align-items: initial !important;
    justify-content: initial !important;
    color: #242933 !important;
    font-size: clamp(15px, 0.82vw, 17px) !important;
    font-weight: 700 !important;
    line-height: 1.46 !important;
    text-align: left !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    text-wrap: pretty !important;
}

body.page-template-page-products .pls-product-name-text {
    display: -webkit-box;
    max-height: calc(1.46em * 3);
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

body.page-template-page-products .pls-product-desc {
    display: -webkit-box !important;
    height: calc(1.62em * 2) !important;
    min-height: calc(1.62em * 2) !important;
    margin: 0 0 22px !important;
    padding: 0 20px !important;
    overflow: hidden !important;
    color: #68717f !important;
    font-size: 13px !important;
    line-height: 1.62 !important;
    text-align: left !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    text-wrap: pretty !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
}

body.page-template-page-products .pls-four-item.act,
body.page-template-page-products .pls-four-item.active {
    color: inherit !important;
    background: transparent !important;
}

@media (max-width: 980px) {
    body.page-template-page-products .pls-sidebar {
        border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
        overflow: hidden !important;
    }

    body.page-template-page-products .pls-sidebar-inner {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        width: 100% !important;
        padding: 10px 16px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x proximity;
        scrollbar-width: none !important;
    }

    body.page-template-page-products .pls-sidebar-inner::-webkit-scrollbar {
        display: none !important;
    }

    body.page-template-page-products .pls-first-box {
        display: contents !important;
    }

    body.page-template-page-products .pls-second,
    body.page-template-page-products .pls-four-list {
        display: none !important;
    }

    body.page-template-page-products .pls-first,
    body.page-template-page-products .pls-third-item {
        display: inline-flex !important;
        flex: 0 0 auto !important;
        align-items: center !important;
        max-width: min(72vw, 260px) !important;
        min-height: 36px !important;
        padding: 9px 13px !important;
        border: 1px solid rgba(15, 23, 42, 0.12) !important;
        border-radius: 3px !important;
        background: rgba(255, 255, 255, 0.96) !important;
        color: #2d3440 !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        line-height: 1.25 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        scroll-snap-align: start;
    }

    body.page-template-page-products .pls-first::after {
        content: none !important;
        display: none !important;
    }

    body.page-template-page-products .pls-third-item .pls-expand-icon {
        display: none !important;
    }

    body.page-template-page-products .pls-first.act,
    body.page-template-page-products .pls-first.active,
    body.page-template-page-products .pls-third-item.act,
    body.page-template-page-products .pls-third-item.active,
    body.page-template-page-products .pls-third-item.expanded {
        border-color: rgba(216, 12, 30, 0.32) !important;
        background: rgba(216, 12, 30, 0.07) !important;
        color: #d80c1e !important;
    }
}

@media (max-width: 760px) {
    body.page-template-page-products .pls-product-name {
        height: calc(1.42em * 3 + 21px) !important;
        min-height: calc(1.42em * 3 + 21px) !important;
        padding: 14px 14px 6px !important;
        font-size: 13px !important;
        line-height: 1.42 !important;
    }

    body.page-template-page-products .pls-product-name-text {
        max-height: calc(1.42em * 3);
    }

    body.page-template-page-products .pls-product-desc {
        height: calc(1.55em * 2) !important;
        min-height: calc(1.55em * 2) !important;
        margin-bottom: 18px !important;
        padding: 0 14px !important;
        font-size: 12px !important;
        line-height: 1.55 !important;
    }
}

/* 2026-06-15 case filters: reserve enough label width for English translations. */
body.page-template-page-cases .case-filter-group {
    grid-template-columns: 132px minmax(0, 1fr) !important;
    column-gap: 24px !important;
}

body.page-template-page-cases .case-filter-group > strong {
    white-space: nowrap !important;
}

/* Case center list banner: preserve the supplied 1920 × 850 artwork as one full-bleed asset. */
body.page-template-page-cases .case-hero-official.is-list {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    margin-top: var(--header-height, 90px);
    aspect-ratio: 1920 / 850;
    background: #fff !important;
}

/* 2026-06-23 case center: clearer industry mapping and a cleaner industrial-tech presentation. */
body.page-template-page-cases .case-page-shell {
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        linear-gradient(135deg, #f7f9fc 0%, #fff 46%, #eef3f8 100%) !important;
    background-size: 36px 36px, 36px 36px, auto !important;
}

body.page-template-page-cases .case-filter-section,
body.page-template-page-cases .case-results-section {
    background: transparent !important;
}

body.page-template-page-cases .case-filter-layout {
    max-width: 1120px !important;
}

body.page-template-page-cases .case-filter-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(18px, 2vw, 26px) clamp(20px, 2.4vw, 32px) !important;
    border: 1px solid rgba(15, 23, 42, 0.1) !important;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 252, 0.94)) !important;
    box-shadow: 0 22px 70px rgba(15, 23, 42, 0.08);
}

body.page-template-page-cases .case-filter-panel::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, #d80c1e, rgba(216, 12, 30, 0));
}

body.page-template-page-cases .case-chip {
    min-height: 32px;
    padding: 4px 10px !important;
    border: 1px solid transparent !important;
    border-radius: 999px;
    color: #4a5565 !important;
    font-weight: 700;
}

body.page-template-page-cases .case-chip.active,
body.page-template-page-cases .case-chip:hover {
    border-color: rgba(216, 12, 30, 0.24) !important;
    background: rgba(216, 12, 30, 0.07) !important;
    color: #d80c1e !important;
}

body.page-template-page-cases .case-results-section .container {
    max-width: 1120px !important;
}

body.page-template-page-cases .case-grid {
    grid-auto-rows: 138px !important;
    gap: 14px !important;
}

body.page-template-page-cases .case-card {
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 8px !important;
    background: #0b1726 !important;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.16) !important;
}

body.page-template-page-cases .case-card-media::after {
    background:
        linear-gradient(180deg, rgba(7, 16, 29, 0.02) 0%, rgba(7, 16, 29, 0.34) 46%, rgba(7, 16, 29, 0.86) 100%),
        linear-gradient(135deg, rgba(216, 12, 30, 0.34), transparent 38%) !important;
}

body.page-template-page-cases .case-card::before {
    content: "";
    position: absolute;
    z-index: 3;
    right: 14px;
    top: 14px;
    width: 34px;
    height: 2px;
    background: #d80c1e;
    box-shadow: 0 7px 0 rgba(255, 255, 255, 0.34);
    pointer-events: none;
}

body.page-template-page-cases .case-card-body {
    padding: 24px !important;
}

body.page-template-page-cases .case-card-body h3 {
    max-width: 92%;
}

body.page-template-page-cases .case-empty {
    border: 1px dashed rgba(216, 12, 30, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    color: #d80c1e;
}

@media (max-width: 640px) {
    body.page-template-page-cases .case-grid {
        grid-template-columns: 1fr !important;
        grid-auto-rows: 180px !important;
    }
}

body.page-template-page-cases .case-hero-official.is-list .case-hero-bg,
body.page-template-page-cases .case-hero-official.is-list .case-hero-bg img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

body.page-template-page-cases .case-hero-official.is-list .case-hero-bg img {
    object-fit: cover !important;
    object-position: center center !important;
    background: #fff !important;
    filter: none !important;
}

body.page-template-page-cases .case-hero-official.is-list .case-hero-overlay,
body.page-template-page-cases .case-hero-official.is-list > .container {
    display: none !important;
}

@media (max-width: 768px) {
    body.page-template-page-cases .case-filter-group {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 10px !important;
    }

}

/* v2.0.83: final product and About page refinements. */
body.page-template-page-products .pls-product-name {
    height: calc(1.46em * 2 + 27px) !important;
    min-height: calc(1.46em * 2 + 27px) !important;
}

body.page-template-page-products .pls-product-name-text {
    max-height: calc(1.46em * 2) !important;
    -webkit-line-clamp: 2 !important;
}

body.page-template-page-products .pls-page[data-product-lang]:not([data-product-lang="zh"]):not([data-product-lang="zh_tw"]) .pls-product-name {
    height: calc(1.46em * 3 + 27px) !important;
    min-height: calc(1.46em * 3 + 27px) !important;
}

body.page-template-page-products .pls-page[data-product-lang]:not([data-product-lang="zh"]):not([data-product-lang="zh_tw"]) .pls-product-name-text {
    max-height: calc(1.46em * 3) !important;
    -webkit-line-clamp: 3 !important;
}

/* v2.0.190: reduce the initial product-card offset below the desktop header. */
@media (min-width: 981px) {
    body.page-template-page-products .pls-banner {
        min-height: clamp(44px, 2.6vw, 52px) !important;
        height: clamp(44px, 2.6vw, 52px) !important;
        padding: 0 !important;
        margin: 0 !important;
        display: block !important;
    }

    body.page-template-page-products .pls-grid {
        padding-top: 0 !important;
    }
}

body.page-template-page-about .about-hero-bg video {
    filter: brightness(1.16) saturate(1.08) contrast(1.03);
}

body.page-template-page-about .about-hero-bg .hero-overlay {
    background:
        linear-gradient(90deg, rgba(3, 7, 18, 0.34) 0%, rgba(3, 7, 18, 0.14) 40%, rgba(3, 7, 18, 0.01) 76%),
        linear-gradient(0deg, rgba(3, 7, 18, 0.28) 0%, rgba(3, 7, 18, 0.04) 50%, transparent 100%) !important;
}

body.page-template-page-about .about-intro-video {
    filter: brightness(1.1) saturate(1.05) contrast(1.02);
}

body.page-template-page-about .about-intro {
    padding-bottom: clamp(50px, 4vw, 68px);
}

body.page-template-page-about .about-stats-document {
    padding: clamp(30px, 2.5vw, 42px) 0 clamp(24px, 2vw, 34px);
}

body.page-template-page-about .about-offices {
    padding-top: clamp(38px, 3.4vw, 54px);
}

body.page-template-page-about .about-testimonial-note {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    filter: blur(5px);
    animation-play-state: paused;
    transition:
        opacity 0.55s ease,
        filter 0.55s ease,
        visibility 0s linear 0.55s;
}

body.page-template-page-about .about-testimonial-note.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    filter: none;
    animation-play-state: running;
    transition-delay: 0s;
}

@media (min-width: 901px) {
    body.page-template-page-about .about-testimonial-note {
        max-width: min(390px, 30vw);
    }

    body.page-template-page-about .about-testimonial-note.note-1 {
        top: 13%;
        bottom: auto;
    }

    body.page-template-page-about .about-testimonial-note.note-2 {
        top: 43%;
        bottom: auto;
    }

    body.page-template-page-about .about-testimonial-note.note-3 {
        top: auto;
        right: auto;
        bottom: 8%;
        left: 3%;
    }

    body.page-template-page-about .about-testimonial-note.note-4 {
        top: 13%;
        right: 0.5%;
        bottom: auto;
        left: auto;
    }

    body.page-template-page-about .about-testimonial-note.note-5 {
        top: 43%;
        right: 0.5%;
        bottom: auto;
        left: auto;
        --testimonial-float-y: 10px;
        animation-duration: 6.5s;
        animation-delay: -3s;
    }

    body.page-template-page-about .about-testimonial-note.note-6 {
        top: auto;
        right: 3%;
        bottom: 8%;
        left: auto;
        --testimonial-float-y: -11px;
        animation-duration: 6.8s;
        animation-delay: -4s;
    }

    body.page-template-page-about .about-testimonial-note[data-testimonial-group="0"] {
        width: min(360px, 27vw);
        max-width: min(360px, 27vw);
        right: auto;
        bottom: auto;
        translate: -50% -50%;
    }

    body.page-template-page-about .about-testimonial-note[data-testimonial-group="0"].note-1 {
        top: 18%;
        left: 50%;
    }

    body.page-template-page-about .about-testimonial-note[data-testimonial-group="0"].note-2 {
        top: 35.5%;
        left: 24.5%;
    }

    body.page-template-page-about .about-testimonial-note[data-testimonial-group="0"].note-3 {
        top: 70.5%;
        left: 24.5%;
    }

    body.page-template-page-about .about-testimonial-note[data-testimonial-group="0"].note-4 {
        top: 35.5%;
        left: 75.5%;
    }

    body.page-template-page-about .about-testimonial-note[data-testimonial-group="0"].note-5 {
        top: 70.5%;
        left: 75.5%;
    }

    body.page-template-page-about .about-testimonial-note[data-testimonial-group="0"].note-6 {
        top: 88%;
        left: 50%;
    }

    body.page-template-page-about .about-testimonial-note[data-testimonial-group="1"].note-1 {
        top: 21%;
        right: auto;
        bottom: auto;
        left: 7%;
    }

    body.page-template-page-about .about-testimonial-note[data-testimonial-group="1"].note-2 {
        top: auto;
        right: auto;
        bottom: 12%;
        left: 12%;
    }

    body.page-template-page-about .about-testimonial-note[data-testimonial-group="1"].note-3 {
        top: 50%;
        right: auto;
        bottom: auto;
        left: 4%;
        max-width: min(340px, 25vw);
    }

    body.page-template-page-about .about-testimonial-note[data-testimonial-group="1"].note-4 {
        top: 20%;
        right: 9%;
        bottom: auto;
        left: auto;
    }

    body.page-template-page-about .about-testimonial-note[data-testimonial-group="1"].note-5 {
        top: auto;
        right: 10%;
        bottom: 12%;
        left: auto;
    }

    body.page-template-page-about .about-testimonial-note[data-testimonial-group="1"].note-6 {
        top: 50%;
        right: 4%;
        bottom: auto;
        left: auto;
        max-width: min(340px, 25vw);
    }
}

@media (min-width: 1181px) {
    body.page-template-page-about .about-values::before {
        filter: grayscale(0) saturate(1.06) brightness(1.08) contrast(1.03) !important;
    }

    body.page-template-page-about .about-values::after {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, rgba(22, 24, 28, 0.035) 52%, rgba(20, 21, 24, 0.11) 100%) !important;
    }
}

@media (max-width: 760px) {
    body.page-template-page-products .pls-product-name {
        height: calc(1.42em * 2 + 21px) !important;
        min-height: calc(1.42em * 2 + 21px) !important;
    }

    body.page-template-page-products .pls-product-name-text {
        max-height: calc(1.42em * 2) !important;
    }

    body.page-template-page-products .pls-page[data-product-lang]:not([data-product-lang="zh"]):not([data-product-lang="zh_tw"]) .pls-product-name {
        height: calc(1.42em * 3 + 21px) !important;
        min-height: calc(1.42em * 3 + 21px) !important;
    }

    body.page-template-page-products .pls-page[data-product-lang]:not([data-product-lang="zh"]):not([data-product-lang="zh_tw"]) .pls-product-name-text {
        max-height: calc(1.42em * 3) !important;
    }

    body.page-template-page-about .about-intro {
        padding-bottom: 44px;
    }

    body.page-template-page-about .about-stats-document {
        padding: 26px 0 22px;
    }

    body.page-template-page-about .about-offices {
        padding-top: 34px;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.page-template-page-about .about-testimonial-note {
        transition: none;
    }
}

/* v2.0.90: make the About hero value cards easier to read on bright media. */
body.page-template-page-about .about-value-card {
    border-color: rgba(255, 255, 255, 0.78) !important;
    background: rgba(255, 255, 255, 0.52) !important;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.12) !important;
    backdrop-filter: blur(1.5px) saturate(1.04) !important;
    -webkit-backdrop-filter: blur(1.5px) saturate(1.04) !important;
}

body.page-template-page-about .about-value-card::before,
body.page-template-page-about .about-value-card::after {
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

body.page-template-page-about .about-value-card h2 {
    color: #111827 !important;
    text-shadow: none !important;
}

body.page-template-page-about .about-value-card p {
    color: rgba(31, 41, 55, 0.84) !important;
    text-shadow: none !important;
}

body.page-template-page-about .about-value-card span {
    color: #e60020 !important;
    text-shadow: none !important;
}

/* v2.0.92: dim only the image area underneath the About value text panels. */
body.page-template-page-about .about-value-card {
    background: rgba(255, 255, 255, 0.46) !important;
    backdrop-filter: brightness(0.72) blur(1.5px) saturate(1.02) !important;
    -webkit-backdrop-filter: brightness(0.72) blur(1.5px) saturate(1.02) !important;
}

/* v2.0.93: keep the About value artwork bright; dim only behind the panels. */
body.page-template-page-about .about-values::before {
    filter: grayscale(0) saturate(1.12) brightness(1.16) contrast(1.08) !important;
}

body.page-template-page-about .about-values::after {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.025) 52%, rgba(255, 255, 255, 0.055) 100%) !important;
}

body.page-template-page-about .about-values-title {
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.36) !important;
}

/* v2.0.94: use one home-style background artwork per About/Solutions page, no tiling. */
body.page-template-page-about {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 249, 251, 0.82)),
        url("../images/home/fit/pattern/jaka-products-bg.png?v=2.0.72") center top / cover no-repeat fixed,
        #f3f7f9 !important;
}

body.page-template-page-solutions {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(242, 247, 249, 0.8)),
        url("../images/home/fit/pattern/jaka-solutions-bg.png?v=2.0.72") center top / cover no-repeat fixed,
        #eef3f5 !important;
}

body.page-template-page-about .about-intro-light,
body.page-template-page-about .about-stats-document,
body.page-template-page-about .about-offices,
body.page-template-page-about .about-certificates,
body.page-template-page-about .about-timeline-assets,
body.page-template-page-about .about-testimonials,
body.page-template-page-about .about-cta,
body.page-template-page-solutions .solutions-page-shell,
body.page-template-page-solutions .solutions-page-section,
body.page-template-page-solutions .solutions-application-section,
body.page-template-page-solutions .solutions-workstation-section,
body.page-template-page-solutions .solutions-cta {
    background-color: transparent !important;
    background-image: none !important;
}

body.page-template-page-about .about-intro-light,
body.page-template-page-about .about-stats-document,
body.page-template-page-about .about-offices,
body.page-template-page-about .about-certificates,
body.page-template-page-about .about-timeline-assets,
body.page-template-page-about .about-testimonials,
body.page-template-page-about .about-cta,
body.page-template-page-solutions .solutions-page-shell {
    position: relative;
}

@media (max-width: 1024px) {
    body.page-template-page-about,
    body.page-template-page-solutions {
        background-attachment: scroll !important;
        background-size: cover !important;
    }
}

/* v2.0.96: tighten About history spacing and show reputation images without cropping. */
body.page-template-page-about .about-timeline-assets {
    min-height: 0 !important;
    padding-top: clamp(54px, 4.8vw, 82px) !important;
    padding-bottom: clamp(18px, 1.6vw, 30px) !important;
}

body.page-template-page-about .about-timeline-stage {
    min-height: 0 !important;
    margin-top: clamp(34px, 3.2vw, 56px) !important;
    padding-bottom: 0 !important;
}

body.page-template-page-about .about-certificates {
    overflow: visible !important;
    padding-top: clamp(24px, 2.2vw, 40px) !important;
    padding-bottom: clamp(62px, 5.6vw, 92px) !important;
}

body.page-template-page-about .about-certificate-grid {
    max-width: min(1160px, calc(100vw - 220px)) !important;
    align-items: center !important;
    gap: clamp(28px, 3vw, 54px) !important;
    overflow: visible !important;
}

    body.page-template-page-about .about-certificate-grid img {
    width: 100% !important;
    height: auto !important;
    max-height: clamp(220px, 18vw, 310px) !important;
    object-fit: contain !important;
    object-position: center !important;
}

@media (max-width: 1180px) {
    body.page-template-page-about .about-certificate-grid {
        max-width: calc(100vw - 48px) !important;
    }
}

@media (max-width: 900px) {
    body.page-template-page-about .about-timeline-assets {
        padding-top: 50px !important;
        padding-bottom: 46px !important;
    }

    body.page-template-page-about .about-certificate-grid {
        grid-template-columns: 1fr !important;
        max-width: min(520px, calc(100vw - 36px)) !important;
    }

body.page-template-page-about .about-certificate-grid img {
        max-height: none !important;
    }
}

/* v2.0.99: split solution industry scenes and video-only process entries. */
body.page-template-page-solutions .solution-view-all-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin-top: 16px;
    padding: 0 24px;
    border: 1px solid rgba(216, 12, 30, .18);
    border-radius: 999px;
    color: #d80c1e;
    font-weight: 700;
    background: rgba(216, 12, 30, .04);
}

body.page-template-page-solutions .solution-industry-showcase {
    display: grid;
    gap: clamp(26px, 3vw, 42px);
}

body.page-template-page-solutions .solution-industry-row {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
    min-height: clamp(360px, 30vw, 470px);
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 22px 60px rgba(15, 23, 42, .08);
}

body.page-template-page-solutions .solution-industry-row.is-active-detail {
    min-height: clamp(430px, 36vw, 560px);
}

body.page-template-page-solutions .solution-industry-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(34px, 4.2vw, 66px);
}

body.page-template-page-solutions .solution-industry-copy::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: var(--industry-accent, #d80c1e);
}

body.page-template-page-solutions .solution-industry-tags,
body.page-template-page-solutions .solution-related-cases {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

body.page-template-page-solutions .solution-industry-tags span,
body.page-template-page-solutions .solution-related-cases span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 15px;
    border-radius: 999px;
    color: #d80c1e;
    font-size: 13px;
    font-weight: 700;
    background: rgba(216, 12, 30, .09);
}

body.page-template-page-solutions .solution-related-cases {
    margin-top: 20px;
}

body.page-template-page-solutions .solution-related-cases span {
    color: #475569;
    background: #f1f5f9;
}

body.page-template-page-solutions .solution-industry-copy h3 {
    margin: 24px 0 18px;
    color: #071322;
    font-size: clamp(30px, 3vw, 48px);
    line-height: 1.16;
    letter-spacing: 0;
}

body.page-template-page-solutions .solution-industry-copy p {
    max-width: 760px;
    margin: 0;
    color: #4b5563;
    font-size: 17px;
    line-height: 2;
}

body.page-template-page-solutions .solution-industry-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
}

body.page-template-page-solutions .solution-industry-visual {
    position: relative;
    display: block;
    min-height: 100%;
    overflow: hidden;
    background: #0f172a;
}

body.page-template-page-solutions .solution-industry-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .28);
    pointer-events: none;
}

body.page-template-page-solutions .solution-industry-visual img,
body.page-template-page-solutions .solution-industry-visual .product-placeholder {
    width: 100%;
    height: 100%;
    min-height: clamp(360px, 30vw, 470px);
    object-fit: cover;
}

body.page-template-page-solutions .solution-industry-row.is-active-detail .solution-industry-visual img,
body.page-template-page-solutions .solution-industry-row.is-active-detail .solution-industry-visual .product-placeholder {
    min-height: clamp(430px, 36vw, 560px);
}

body.page-template-page-solutions .solution-application-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: -10px 0 34px;
}

body.page-template-page-solutions .solution-application-pills a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 18px;
    border: 1px solid rgba(15, 23, 42, .1);
    border-radius: 999px;
    color: #334155;
    font-weight: 700;
    background: rgba(255, 255, 255, .84);
}

body.page-template-page-solutions .solution-application-pills a:hover {
    border-color: rgba(216, 12, 30, .24);
    color: #d80c1e;
    background: #fff;
}

body.page-template-page-solutions .solution-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.2vw, 28px);
}

body.page-template-page-solutions .solution-video-card,
body.page-template-page-cases .case-card--video-only {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    background: #111827;
    box-shadow: 0 20px 44px rgba(15, 23, 42, .12);
}

body.page-template-page-solutions .solution-video-card {
    aspect-ratio: 16 / 9;
}

body.page-template-page-solutions .solution-video-card video,
body.page-template-page-cases .case-card--video-only video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

body.page-template-page-solutions .solution-video-card::after,
body.page-template-page-cases .case-video-only-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 42%, rgba(15, 23, 42, .72) 100%);
    pointer-events: none;
}

body.page-template-page-solutions .solution-video-card span,
body.page-template-page-cases .case-video-only-media span {
    position: absolute;
    left: 18px;
    top: 16px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    background: rgba(216, 12, 30, .92);
}

body.page-template-page-solutions .solution-video-card strong {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 1;
    color: #fff;
    font-size: 18px;
    line-height: 1.42;
}

body.page-template-page-cases .case-grid--videos-only {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.2vw, 28px);
}

body.page-template-page-cases .case-card--video-only {
    aspect-ratio: 16 / 9;
    min-height: 0;
}

body.page-template-page-cases .case-card--video-only:hover {
    transform: translateY(-6px);
}

body.page-template-page-cases .case-video-only-media {
    position: relative;
    width: 100%;
    height: 100%;
}

@media (max-width: 1100px) {
    body.page-template-page-solutions .solution-industry-row {
        grid-template-columns: 1fr;
    }

    body.page-template-page-solutions .solution-industry-visual {
        min-height: 320px;
        order: -1;
    }

    body.page-template-page-solutions .solution-video-grid,
    body.page-template-page-cases .case-grid--videos-only {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    body.page-template-page-solutions .solution-industry-copy {
        padding: 28px 22px 32px;
    }

    body.page-template-page-solutions .solution-industry-copy h3 {
        font-size: 28px;
    }

    body.page-template-page-solutions .solution-video-grid,
    body.page-template-page-cases .case-grid--videos-only {
        grid-template-columns: 1fr;
    }
}

/* v2.0.101: JAKA-like independent industry/process solution pages. */
body.page-template-page-solutions .solutions-hero-light {
    min-height: clamp(260px, 24vw, 360px);
    padding: calc(var(--header-height, 80px) + 78px) 0 70px;
    background:
        linear-gradient(120deg, rgba(255,255,255,.94), rgba(248,250,252,.88)),
        var(--solutions-pattern);
}

body.page-template-page-solutions .solutions-hero-light .page-hero-content {
    max-width: 920px;
}

body.page-template-page-solutions .solutions-hero-light .page-hero-content h1 {
    font-size: clamp(42px, 4.2vw, 72px);
}

body.page-template-page-solutions .solutions-page-shell.is-detail-page .solutions-hero-light {
    min-height: clamp(230px, 20vw, 320px);
    padding-bottom: clamp(42px, 4.5vw, 64px);
}

body.page-template-page-solutions .solutions-page-shell.is-detail-page .industry-section,
body.page-template-page-solutions .solutions-page-shell.is-detail-page .solutions-application-section {
    padding-top: clamp(36px, 4vw, 58px);
}

body.page-template-page-solutions .solution-industry-row.is-active-detail {
    grid-template-columns: minmax(360px, .86fr) minmax(520px, 1.14fr);
    min-height: clamp(420px, 33vw, 560px);
    border-color: rgba(15, 23, 42, .06);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 30px 90px rgba(15, 23, 42, .07);
}

body.page-template-page-solutions .solution-industry-row.is-active-detail .solution-industry-copy::before {
    width: 4px;
    background: #d80c1e;
}

body.page-template-page-solutions .solution-industry-row.is-active-detail .solution-industry-copy h3 {
    max-width: 640px;
    font-size: clamp(34px, 3vw, 48px);
    word-break: keep-all;
}

body.page-template-page-solutions .solution-industry-row.is-active-detail .solution-industry-copy p {
    max-width: 640px;
    color: #374151;
    font-size: clamp(16px, .95vw, 18px);
}

body.page-template-page-solutions .solution-industry-row.is-active-detail .solution-industry-visual {
    background: #eef2f7;
}

body.page-template-page-solutions .solution-industry-row.is-active-detail .solution-industry-visual::after {
    border-color: rgba(15, 23, 42, .08);
}

body.page-template-page-solutions .solution-industry-row.is-active-detail .solution-industry-visual img {
    object-fit: cover;
}

body.page-template-page-solutions .solutions-application-section {
    padding-top: clamp(72px, 7vw, 118px);
}

body.page-template-page-solutions .solutions-application-section .section-header {
    max-width: 920px;
}

@media (max-width: 1100px) {
    body.page-template-page-solutions .solution-industry-row.is-active-detail {
        grid-template-columns: 1fr;
    }
}

/* v2.0.100: solution industry entries open into a JAKA-like case detail page. */
body.page-template-page-cases .case-hero-official.is-detail {
    height: clamp(132px, 13vw, 188px) !important;
    min-height: 0 !important;
    margin-top: var(--header-height, 90px);
    padding: 0 !important;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 24%, rgba(216, 12, 30, .045), transparent 22%),
        linear-gradient(90deg, rgba(15, 23, 42, .035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(15, 23, 42, .03) 1px, transparent 1px),
        linear-gradient(135deg, #f8fafc 0%, #fff 58%, #f1f5f9 100%) !important;
    background-size: auto, 42px 42px, 42px 42px, auto !important;
}

body.page-template-page-cases .case-hero-official.is-detail::before {
    content: "ChenXuan";
    position: absolute;
    left: 50%;
    top: 50%;
    color: rgba(15, 23, 42, .035);
    font-size: clamp(72px, 10vw, 154px);
    font-weight: 900;
    letter-spacing: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

body.page-template-page-cases .case-hero-official.is-detail .case-hero-bg,
body.page-template-page-cases .case-hero-official.is-detail .case-hero-overlay {
    display: none !important;
}

body.page-template-page-cases .case-hero-official.is-detail > .container {
    position: relative;
    z-index: 1;
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 100%;
}

body.page-template-page-cases .case-hero-official.is-detail .case-hero-content {
    max-width: min(920px, 92vw);
    margin: 0 auto;
    text-align: center;
    color: #071322 !important;
}

body.page-template-page-cases .case-hero-official.is-detail .section-label {
    display: none;
}

body.page-template-page-cases .case-hero-official.is-detail h1 {
    margin: 0;
    color: #071322 !important;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.12;
    letter-spacing: 0;
    text-shadow: none !important;
}

body.page-template-page-cases .case-hero-official.is-detail p {
    margin: 14px 0 0;
    color: #64748b !important;
    font-size: 17px;
    font-weight: 700;
    text-shadow: none !important;
}

body.page-template-page-cases .case-detail-section {
    padding: clamp(42px, 5vw, 76px) 0 clamp(78px, 8vw, 120px) !important;
    background: transparent !important;
}

body.page-template-page-cases .case-detail-section .container {
    max-width: 1180px !important;
}

body.page-template-page-cases .case-back-link {
    min-height: 42px;
    margin-bottom: clamp(24px, 3vw, 38px) !important;
    padding: 0 26px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, .86) !important;
}

body.page-template-page-cases .case-detail-layout {
    grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr) !important;
    gap: clamp(34px, 5vw, 64px) !important;
    align-items: center !important;
}

body.page-template-page-cases .case-detail-card {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.page-template-page-cases .case-detail-tags {
    margin-bottom: 26px !important;
}

body.page-template-page-cases .case-detail-tags span {
    min-height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    color: #d80c1e;
    background: rgba(216, 12, 30, .09);
}

body.page-template-page-cases .case-detail-card h2 {
    margin-bottom: 22px !important;
    color: #020617 !important;
    font-size: clamp(34px, 3.7vw, 56px) !important;
}

body.page-template-page-cases .case-detail-body {
    max-width: 620px;
    color: #334155;
}

body.page-template-page-cases .case-detail-body p {
    margin-bottom: 0;
    font-size: 17px;
    line-height: 2;
}

body.page-template-page-cases .case-detail-media {
    min-height: clamp(330px, 32vw, 470px);
    aspect-ratio: 16 / 10;
    border-radius: 8px !important;
    background: #020617 !important;
    box-shadow: 0 28px 72px rgba(15, 23, 42, .18) !important;
}

body.page-template-page-cases .case-detail-media img,
body.page-template-page-cases .case-detail-media video {
    object-fit: cover !important;
}

@media (max-width: 992px) {
    body.page-template-page-cases .case-detail-layout {
        grid-template-columns: 1fr !important;
    }

    body.page-template-page-cases .case-detail-media {
        min-height: 300px;
    }
}

@media (max-width: 640px) {
    body.page-template-page-cases .case-hero-official.is-detail {
        height: 130px !important;
    }

    body.page-template-page-cases .case-hero-official.is-detail h1 {
        font-size: 30px;
    }

    body.page-template-page-cases .case-hero-official.is-detail p {
        font-size: 14px;
    }
}

/* v2.0.102: rebuild solution industry/application details to follow the JAKA page structure. */
body.page-template-page-solutions .solutions-page-shell.is-detail-page {
    background: #fff !important;
    background-image: none !important;
}

body.page-template-page-solutions .solutions-page-shell.is-detail-page .solutions-hero-light {
    height: clamp(220px, 16.2vw, 310px) !important;
    min-height: 0 !important;
    margin-top: var(--header-height, 90px);
    padding: 0 !important;
    overflow: hidden;
    background: #f5f6f8 !important;
}

body.page-template-page-solutions .solutions-page-shell.is-detail-page .solutions-hero-light .page-hero-bg {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .88), rgba(246, 247, 249, .92)),
        var(--solutions-pattern) center / 100% auto repeat-y !important;
}

body.page-template-page-solutions .solutions-page-shell.is-detail-page .solutions-hero-light .page-hero-bg::before {
    content: "ChenXuan";
    position: absolute;
    left: 50%;
    top: 50%;
    color: rgba(15, 23, 42, .035);
    font-size: clamp(86px, 13vw, 210px);
    font-weight: 900;
    transform: translate(-50%, -48%);
    white-space: nowrap;
}

body.page-template-page-solutions .solutions-page-shell.is-detail-page .solutions-hero-light .hero-overlay {
    background:
        linear-gradient(135deg, rgba(255,255,255,.8), transparent 38%),
        linear-gradient(315deg, rgba(229,231,235,.58), transparent 42%) !important;
}

body.page-template-page-solutions .solutions-page-shell.is-detail-page .solutions-hero-light .page-hero-content {
    max-width: none;
    margin: 0 auto;
    text-align: center;
}

body.page-template-page-solutions .solutions-page-shell.is-detail-page .solutions-hero-light .section-label,
body.page-template-page-solutions .solutions-page-shell.is-detail-page .solutions-hero-light .page-hero-content p {
    display: none !important;
}

body.page-template-page-solutions .solutions-page-shell.is-detail-page .solutions-hero-light .page-hero-content h1 {
    margin: 0;
    color: #000 !important;
    font-size: clamp(46px, 4.25vw, 82px);
    font-weight: 900;
    letter-spacing: 0;
    text-shadow: none !important;
}

body.page-template-page-solutions .solutions-page-shell [data-aos] {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

body.page-template-page-solutions .cx-solution-container {
    width: min(1460px, calc(100vw - 112px));
    margin: 0 auto;
}

body.page-template-page-solutions .cx-section-kicker,
body.page-template-page-solutions .cx-section-heading span {
    display: block;
    margin-bottom: 18px;
    color: #e60012;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0;
    text-align: center;
}

body.page-template-page-solutions .cx-section-heading {
    margin-bottom: clamp(42px, 4.8vw, 76px);
    text-align: center;
}

body.page-template-page-solutions .cx-section-heading h2 {
    margin: 0;
    color: #000;
    font-size: clamp(34px, 3vw, 54px);
    font-weight: 900;
    line-height: 1.22;
    letter-spacing: 0;
}

body.page-template-page-solutions .cx-solution-intro,
body.page-template-page-solutions .cx-application-intro {
    padding: clamp(92px, 8vw, 140px) 0 clamp(82px, 7vw, 120px);
    background: #fff;
}

body.page-template-page-solutions .cx-intro-layout,
body.page-template-page-solutions .cx-app-layout {
    display: grid;
    grid-template-columns: minmax(420px, .86fr) minmax(560px, 1.14fr);
    gap: clamp(72px, 8vw, 132px);
    align-items: center;
}

body.page-template-page-solutions .cx-intro-copy h2,
body.page-template-page-solutions .cx-app-copy h2 {
    margin: 0 0 34px;
    color: #000;
    font-size: clamp(36px, 3.15vw, 56px);
    font-weight: 900;
    line-height: 1.16;
    letter-spacing: 0;
}

body.page-template-page-solutions .cx-intro-copy p,
body.page-template-page-solutions .cx-app-copy p {
    max-width: 610px;
    margin: 0 0 18px;
    color: #3f4650;
    font-size: clamp(17px, 1vw, 20px);
    line-height: 2.05;
    font-weight: 500;
}

body.page-template-page-solutions .cx-intro-media,
body.page-template-page-solutions .cx-app-video {
    overflow: hidden;
    border-radius: 6px;
    background: #eef1f5;
    box-shadow: 0 18px 52px rgba(15, 23, 42, .08);
}

body.page-template-page-solutions .cx-intro-media {
    aspect-ratio: 16 / 9;
}

body.page-template-page-solutions .cx-intro-media img,
body.page-template-page-solutions .cx-app-video video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.page-template-page-solutions .cx-app-video {
    aspect-ratio: 16 / 9;
    background: #0f172a;
}

body.page-template-page-solutions .cx-solution-compare {
    padding: clamp(94px, 8vw, 138px) 0;
    background:
        linear-gradient(120deg, rgba(245, 247, 250, .94), rgba(255,255,255,.92)),
        var(--solutions-pattern) center top / 100% auto repeat-y;
}

body.page-template-page-solutions .cx-compare-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(52px, 5vw, 88px);
    align-items: stretch;
}

body.page-template-page-solutions .cx-compare-card {
    min-height: 330px;
    padding: clamp(34px, 3vw, 54px);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(15, 23, 42, .08);
}

body.page-template-page-solutions .cx-compare-card--advantage {
    background: #e60012;
    color: #fff;
}

body.page-template-page-solutions .cx-compare-card span {
    display: inline-flex;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 800;
}

body.page-template-page-solutions .cx-compare-card h3 {
    margin: 0 0 28px;
    color: inherit;
    font-size: clamp(26px, 2.1vw, 38px);
    font-weight: 900;
    line-height: 1.28;
}

body.page-template-page-solutions .cx-compare-card ul,
body.page-template-page-solutions .cx-scene-copy ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

body.page-template-page-solutions .cx-compare-card li,
body.page-template-page-solutions .cx-scene-copy li {
    position: relative;
    margin-bottom: 15px;
    padding-left: 22px;
    color: inherit;
    font-size: 17px;
    line-height: 1.75;
}

body.page-template-page-solutions .cx-compare-card li::before,
body.page-template-page-solutions .cx-scene-copy li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .78em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

body.page-template-page-solutions .cx-compare-card--pain {
    color: #1f2937;
}

body.page-template-page-solutions .cx-compare-card--pain li::before,
body.page-template-page-solutions .cx-scene-copy li::before {
    color: #e60012;
}

body.page-template-page-solutions .cx-vs-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    width: 74px;
    height: 74px;
    place-items: center;
    border-radius: 50%;
    color: #e60012;
    background: #fff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, .16);
    font-size: 20px;
    font-weight: 900;
    transform: translate(-50%, -50%);
    z-index: 2;
}

body.page-template-page-solutions .cx-scenes-section {
    padding: clamp(94px, 8vw, 146px) 0;
    background: #fff;
}

body.page-template-page-solutions .cx-scene-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: clamp(18px, 2.5vw, 42px);
    align-items: stretch;
    margin-bottom: 54px;
}

body.page-template-page-solutions .cx-tab-button {
    min-height: 104px;
    padding: 18px 14px;
    border: 0;
    border-radius: 4px;
    color: #30343a;
    background: transparent;
    cursor: pointer;
    transition: transform .24s ease, background .24s ease, color .24s ease, box-shadow .24s ease;
}

body.page-template-page-solutions .cx-tab-button span {
    display: block;
    margin-bottom: 8px;
    color: inherit;
    font-size: 14px;
    font-weight: 700;
}

body.page-template-page-solutions .cx-tab-button strong {
    display: block;
    color: inherit;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.3;
}

body.page-template-page-solutions .cx-tab-button.is-active,
body.page-template-page-solutions .cx-tab-button:hover {
    color: #fff;
    background: #e60012;
    box-shadow: 0 16px 42px rgba(230, 0, 18, .2);
    transform: translateY(-4px);
}

body.page-template-page-solutions .cx-scene-panels {
    min-height: 520px;
}

body.page-template-page-solutions .cx-scene-panel {
    display: none;
    grid-template-columns: minmax(460px, .92fr) minmax(420px, 1fr);
    gap: clamp(52px, 5vw, 88px);
    align-items: center;
    padding: clamp(48px, 4vw, 70px);
    background: #fff;
    box-shadow: 0 34px 92px rgba(15, 23, 42, .1);
}

body.page-template-page-solutions .cx-scene-panel.is-active {
    display: grid;
}

body.page-template-page-solutions .cx-scene-media {
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 16 / 10.2;
    background: #eef2f7;
}

body.page-template-page-solutions .cx-scene-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.page-template-page-solutions .cx-scene-icon {
    display: grid;
    width: 92px;
    height: 92px;
    margin-bottom: 28px;
    place-items: center;
    border: 1px solid #edf0f4;
    border-radius: 50%;
    color: #e60012;
    background: #fff;
    font-size: 34px;
    font-weight: 900;
}

body.page-template-page-solutions .cx-scene-copy h3 {
    margin: 0 0 24px;
    color: #000;
    font-size: clamp(30px, 2.5vw, 44px);
    font-weight: 900;
    line-height: 1.24;
}

body.page-template-page-solutions .cx-scene-copy li {
    color: #404752;
}

body.page-template-page-solutions .cx-scene-copy .btn {
    margin-top: 18px;
}

body.page-template-page-solutions .cx-case-strip-section,
body.page-template-page-solutions .cx-enable-section,
body.page-template-page-solutions .cx-overview-section {
    padding: clamp(92px, 8vw, 142px) 0;
    background:
        linear-gradient(115deg, rgba(245,247,250,.9), rgba(255,255,255,.96)),
        var(--solutions-pattern) center top / 100% auto repeat-y;
}

body.page-template-page-solutions .cx-application-cases {
    background: #f4f6f9;
}

body.page-template-page-solutions .cx-case-strip,
body.page-template-page-solutions .cx-enable-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(360px, 1fr);
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

body.page-template-page-solutions .cx-case-strip::-webkit-scrollbar,
body.page-template-page-solutions .cx-enable-grid::-webkit-scrollbar {
    display: none;
}

body.page-template-page-solutions .cx-case-tile,
body.page-template-page-solutions .cx-enable-card,
body.page-template-page-solutions .cx-video-case {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 6px;
    background: #111827;
    box-shadow: 0 18px 46px rgba(15, 23, 42, .12);
    scroll-snap-align: start;
}

body.page-template-page-solutions .cx-case-tile,
body.page-template-page-solutions .cx-enable-card {
    aspect-ratio: 16 / 9.6;
}

body.page-template-page-solutions .cx-case-tile::after,
body.page-template-page-solutions .cx-enable-card::after,
body.page-template-page-solutions .cx-video-case::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.62));
}

body.page-template-page-solutions .cx-case-tile img,
body.page-template-page-solutions .cx-enable-card img,
body.page-template-page-solutions .cx-video-case img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

body.page-template-page-solutions .cx-case-tile:hover img,
body.page-template-page-solutions .cx-enable-card:hover img,
body.page-template-page-solutions .cx-video-case:hover img {
    transform: scale(1.05);
}

body.page-template-page-solutions .cx-case-tile span,
body.page-template-page-solutions .cx-video-case span {
    position: absolute;
    left: 28px;
    top: 28px;
    z-index: 2;
    padding: 8px 15px;
    border-radius: 999px;
    color: #fff;
    background: #e60012;
    font-size: 15px;
    font-weight: 900;
}

body.page-template-page-solutions .cx-case-tile strong,
body.page-template-page-solutions .cx-enable-card span,
body.page-template-page-solutions .cx-video-case strong {
    position: absolute;
    right: 28px;
    bottom: 26px;
    left: 28px;
    z-index: 2;
    color: #fff;
    font-size: clamp(20px, 1.5vw, 28px);
    font-weight: 900;
    line-height: 1.28;
}

body.page-template-page-solutions .cx-more-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 190px;
    min-height: 52px;
    margin: 54px auto 0;
    padding: 0 28px;
    border-radius: 4px;
    color: #fff;
    background: #e60012;
    font-size: 17px;
    font-weight: 800;
}

body.page-template-page-solutions .cx-case-strip-section .cx-more-link,
body.page-template-page-solutions .cx-overview-section .cx-more-link {
    display: flex;
    width: fit-content;
}

body.page-template-page-solutions .cx-video-case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 28px);
}

body.page-template-page-solutions .cx-video-case {
    aspect-ratio: 16 / 9.4;
}

body.page-template-page-solutions .cx-video-case em {
    position: absolute;
    right: 26px;
    top: 26px;
    z-index: 2;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 50%;
    color: #e60012;
    background: rgba(255,255,255,.94);
    font-size: 0;
}

body.page-template-page-solutions .cx-video-case em::before {
    content: "";
    margin-left: 4px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid currentColor;
}

body.page-template-page-solutions .cx-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

body.page-template-page-solutions .cx-overview-card {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(15,23,42,.06);
}

body.page-template-page-solutions .cx-overview-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

body.page-template-page-solutions .cx-overview-card span,
body.page-template-page-solutions .cx-overview-card p {
    display: block;
    padding: 0 28px;
}

body.page-template-page-solutions .cx-overview-card span {
    margin-top: 28px;
    color: #0f172a;
    font-size: 24px;
    font-weight: 900;
}

body.page-template-page-solutions .cx-overview-card p {
    margin: 14px 0 30px;
    color: #667085;
    font-size: 16px;
    line-height: 1.8;
}

body.page-template-page-solutions .cx-overview-section--process {
    background: #fff;
}

@media (max-width: 1180px) {
    body.page-template-page-solutions .cx-solution-container {
        width: min(100% - 48px, 980px);
    }

    body.page-template-page-solutions .cx-intro-layout,
    body.page-template-page-solutions .cx-app-layout,
    body.page-template-page-solutions .cx-scene-panel,
    body.page-template-page-solutions .cx-compare-grid {
        grid-template-columns: 1fr;
    }

    body.page-template-page-solutions .cx-vs-badge {
        top: 50%;
    }

    body.page-template-page-solutions .cx-video-case-grid,
    body.page-template-page-solutions .cx-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    body.page-template-page-solutions .solutions-page-shell.is-detail-page .solutions-hero-light {
        height: 190px !important;
    }

    body.page-template-page-solutions .solutions-page-shell.is-detail-page .solutions-hero-light .page-hero-content h1 {
        font-size: 38px;
    }

    body.page-template-page-solutions .cx-solution-container {
        width: min(100% - 32px, 620px);
    }

    body.page-template-page-solutions .cx-solution-intro,
    body.page-template-page-solutions .cx-application-intro,
    body.page-template-page-solutions .cx-solution-compare,
    body.page-template-page-solutions .cx-scenes-section,
    body.page-template-page-solutions .cx-case-strip-section,
    body.page-template-page-solutions .cx-enable-section,
    body.page-template-page-solutions .cx-overview-section {
        padding: 64px 0;
    }

    body.page-template-page-solutions .cx-intro-layout,
    body.page-template-page-solutions .cx-app-layout {
        gap: 34px;
    }

    body.page-template-page-solutions .cx-compare-card,
    body.page-template-page-solutions .cx-scene-panel {
        padding: 28px;
    }

    body.page-template-page-solutions .cx-scene-tabs,
    body.page-template-page-solutions .cx-video-case-grid,
    body.page-template-page-solutions .cx-overview-grid {
        grid-template-columns: 1fr;
    }

    body.page-template-page-solutions .cx-case-strip,
    body.page-template-page-solutions .cx-enable-grid {
        grid-auto-columns: minmax(280px, 86vw);
    }
}

/* v2.0.103 solution detail polish */
body.page-template-page-solutions .cx-solution-compare {
    position: relative;
    overflow: hidden;
    padding: clamp(96px, 8.5vw, 148px) 0;
    background:
        radial-gradient(circle at 12% 16%, rgba(230, 0, 18, .055), transparent 28%),
        linear-gradient(125deg, rgba(248, 250, 252, .96), rgba(255, 255, 255, .96)),
        var(--solutions-pattern) center top / 100% auto repeat-y;
}

body.page-template-page-solutions .cx-solution-compare::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(105deg, transparent 0 45%, rgba(15, 23, 42, .035) 45.2% 45.8%, transparent 46%),
        linear-gradient(180deg, rgba(255,255,255,.35), transparent 48%);
}

body.page-template-page-solutions .cx-value-board {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 82px minmax(0, 1fr);
    gap: clamp(24px, 3.2vw, 44px);
    align-items: center;
    margin-top: clamp(42px, 4.6vw, 74px);
}

body.page-template-page-solutions .cx-value-column {
    display: grid;
    gap: 18px;
}

body.page-template-page-solutions .cx-value-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    margin-bottom: 8px;
    color: #e60012;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: .02em;
}

body.page-template-page-solutions .cx-value-label::before {
    content: "";
    width: 30px;
    height: 2px;
    background: #e60012;
}

body.page-template-page-solutions .cx-value-item {
    position: relative;
    min-height: 154px;
    padding: 30px 34px 28px 98px;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 4px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 24px 68px rgba(15, 23, 42, .075);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

body.page-template-page-solutions .cx-value-item:hover {
    transform: translateY(-5px);
    border-color: rgba(230, 0, 18, .28);
    box-shadow: 0 30px 86px rgba(15, 23, 42, .11);
}

body.page-template-page-solutions .cx-value-item em {
    position: absolute;
    left: 30px;
    top: 28px;
    color: rgba(230, 0, 18, .16);
    font-size: 44px;
    font-style: normal;
    font-weight: 900;
    line-height: 1;
}

body.page-template-page-solutions .cx-value-item h3 {
    margin: 0 0 12px;
    color: #061426;
    font-size: clamp(22px, 1.7vw, 30px);
    font-weight: 900;
    line-height: 1.24;
}

body.page-template-page-solutions .cx-value-item p {
    margin: 0;
    color: #667085;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.78;
}

body.page-template-page-solutions .cx-value-column--solution .cx-value-item {
    border-color: rgba(230, 0, 18, .16);
    background:
        linear-gradient(90deg, #e60012 0 5px, transparent 5px),
        rgba(255,255,255,.98);
}

body.page-template-page-solutions .cx-value-column--solution .cx-value-item:first-of-type {
    color: #fff;
    border-color: #e60012;
    background: #e60012;
    box-shadow: 0 28px 84px rgba(230, 0, 18, .22);
}

body.page-template-page-solutions .cx-value-column--solution .cx-value-item:first-of-type h3,
body.page-template-page-solutions .cx-value-column--solution .cx-value-item:first-of-type p {
    color: #fff;
}

body.page-template-page-solutions .cx-value-column--solution .cx-value-item:first-of-type em {
    color: rgba(255,255,255,.22);
}

body.page-template-page-solutions .cx-value-board .cx-vs-badge {
    position: static;
    width: 82px;
    height: 82px;
    color: #e60012;
    background: #fff;
    border: 10px solid rgba(246, 247, 249, .95);
    box-shadow: 0 18px 54px rgba(15, 23, 42, .12);
    transform: none;
}

body.page-template-page-solutions .cx-scene-icon {
    display: none !important;
}

body.page-template-page-solutions .cx-scene-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #e60012;
    font-size: 15px;
    font-weight: 900;
}

body.page-template-page-solutions .cx-scene-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: #e60012;
}

@media (max-width: 1180px) {
    body.page-template-page-solutions .cx-value-board {
        grid-template-columns: 1fr;
    }

    body.page-template-page-solutions .cx-value-board .cx-vs-badge {
        justify-self: center;
        margin: 4px 0;
    }
}

@media (max-width: 720px) {
    body.page-template-page-solutions .cx-value-item {
        min-height: auto;
        padding: 26px 24px 24px 78px;
    }

    body.page-template-page-solutions .cx-value-item em {
        left: 22px;
        top: 25px;
        font-size: 36px;
    }
}

/* v2.0.104: compact solution detail sections and case detail alignment */
body.page-template-page-solutions .solutions-page-shell.is-detail-page .solutions-hero-light {
    height: clamp(198px, 14.4vw, 276px) !important;
}

body.page-template-page-solutions .cx-solution-intro,
body.page-template-page-solutions .cx-application-intro {
    padding: clamp(62px, 5.4vw, 92px) 0 clamp(54px, 4.7vw, 82px) !important;
}

body.page-template-page-solutions .cx-solution-compare,
body.page-template-page-solutions .cx-scenes-section,
body.page-template-page-solutions .cx-case-strip-section,
body.page-template-page-solutions .cx-enable-section,
body.page-template-page-solutions .cx-overview-section {
    padding: clamp(66px, 5.8vw, 104px) 0 !important;
}

body.page-template-page-solutions .cx-intro-layout,
body.page-template-page-solutions .cx-app-layout {
    gap: clamp(46px, 5vw, 82px) !important;
}

body.page-template-page-solutions .cx-section-heading {
    margin-bottom: clamp(28px, 3.2vw, 48px) !important;
}

body.page-template-page-solutions .cx-value-board {
    margin-top: clamp(30px, 3.4vw, 52px) !important;
}

body.page-template-page-solutions .cx-scene-tabs {
    margin-bottom: clamp(28px, 3vw, 46px) !important;
}

body.page-template-page-solutions .cx-video-case-grid,
body.page-template-page-solutions .cx-case-strip,
body.page-template-page-solutions .cx-enable-grid {
    margin-top: clamp(28px, 3.2vw, 48px) !important;
}

body.page-template-page-cases .case-hero-official.is-detail {
    height: clamp(126px, 10.8vw, 168px) !important;
}

body.page-template-page-cases .case-detail-section {
    padding: clamp(28px, 3.4vw, 50px) 0 clamp(72px, 7vw, 108px) !important;
}

body.page-template-page-cases .case-detail-section .container {
    width: min(100% - 80px, 1420px) !important;
    max-width: 1420px !important;
}

body.page-template-page-cases .case-back-link {
    margin: 0 0 clamp(28px, 3.2vw, 46px) !important;
}

body.page-template-page-cases .case-detail-layout {
    grid-template-columns: minmax(420px, .82fr) minmax(620px, 1.18fr) !important;
    gap: clamp(54px, 6vw, 96px) !important;
    align-items: center !important;
}

body.page-template-page-cases .case-detail-card {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.page-template-page-cases .case-detail-card h2 {
    margin-bottom: 22px !important;
    font-size: clamp(42px, 3.8vw, 64px) !important;
    line-height: 1.12;
}

body.page-template-page-cases .case-detail-body {
    max-width: 560px;
    color: #384456;
    font-size: 17px;
    line-height: 1.92;
}

body.page-template-page-cases .case-detail-card .btn {
    margin-top: 18px;
}

body.page-template-page-cases .case-detail-media {
    min-height: clamp(390px, 34vw, 540px) !important;
    box-shadow: 0 26px 72px rgba(15, 23, 42, .12) !important;
}

@media (max-width: 1180px) {
    body.page-template-page-cases .case-detail-section .container {
        width: min(100% - 48px, 980px) !important;
    }

    body.page-template-page-cases .case-detail-layout {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
    }
}

@media (max-width: 720px) {
    body.page-template-page-solutions .solutions-page-shell.is-detail-page .solutions-hero-light {
        height: 166px !important;
    }

    body.page-template-page-cases .case-detail-section .container {
        width: min(100% - 32px, 620px) !important;
    }

    body.page-template-page-cases .case-detail-card h2 {
        font-size: 36px !important;
    }

body.page-template-page-cases .case-detail-media {
    min-height: 280px !important;
    }
}

/* v2.0.173: keep About ChenXuan value artwork at its source brightness. */
body.page-template-page-about .about-values::before {
    filter: none !important;
    opacity: 1 !important;
}

body.page-template-page-about .about-values::after {
    background:
        linear-gradient(180deg, rgba(5, 8, 14, 0.02) 0%, rgba(5, 8, 14, 0.08) 100%) !important;
}

/* v2.0.195: About page sales country map markers. */
body.page-template-page-about .about-office-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    left: clamp(150px, 12vw, 230px) !important;
    right: auto !important;
    bottom: clamp(82px, 7vw, 124px) !important;
    width: min(980px, calc(100% - clamp(300px, 24vw, 460px))) !important;
    max-width: none;
    margin: 0;
    align-items: end !important;
}

body.page-template-page-about .about-office-map-layer,
body.page-template-page-about .about-office-pins {
    inset: auto !important;
    left: 50% !important;
    top: 38% !important;
    width: min(1600px, 96vw) !important;
    aspect-ratio: 1836 / 873;
    transform: translate(-50%, -38%) !important;
}

body.page-template-page-about .about-office-map-layer {
    background-position: center center !important;
    background-size: 100% auto !important;
}

body.page-template-page-about .about-office-pins {
    height: auto !important;
}

body.page-template-page-about .about-sales-country-pin {
    position: absolute;
    left: var(--pin-x);
    top: var(--pin-y);
    z-index: 1;
    width: 6px;
    height: 6px;
    border: 0;
    border-radius: 50%;
    background: #e60012;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.95);
    transform: translate(-50%, -50%);
}

body.page-template-page-about .about-sales-country-pin::after {
    content: none;
    display: none;
}

body.page-template-page-about .about-sales-country-pin span {
    position: absolute;
    left: 100%;
    top: 50%;
    display: block;
    min-width: max-content;
    color: #4b5563;
    font-size: clamp(10px, 0.66vw, 12px);
    font-weight: 700;
    line-height: 1;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95),
        0 0 8px rgba(255, 255, 255, 0.95);
    transform: translate(var(--label-x, 10px), var(--label-y, -50%));
    white-space: nowrap;
}

body.page-template-page-about .about-sales-country-pin span::before {
    content: attr(data-label);
}

body.page-template-page-about .about-sales-country-pin:hover,
body.page-template-page-about .about-sales-country-pin:focus-within {
    z-index: 4;
    background: #e60012;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.95);
}

body.page-template-page-about .about-sales-country-pin:hover span,
body.page-template-page-about .about-sales-country-pin:focus-within span {
    color: #e60012;
}

@media (max-width: 900px) {
    body.page-template-page-about .about-office-list {
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: auto !important;
        grid-template-columns: 1fr !important;
        max-width: none;
    }

    body.page-template-page-about .about-sales-country-pin {
        width: 6px;
        height: 6px;
    }

    body.page-template-page-about .about-sales-country-pin span {
        display: none;
    }
}

/* v2.0.200: About ChenXuan factory photo module with compressed gallery assets. */
body.page-template-page-about .about-values.about-values-factory {
    min-height: 0 !important;
    padding: clamp(72px, 7vw, 124px) 0 !important;
    overflow: hidden !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 252, 0.98)),
        #fff !important;
    isolation: isolate !important;
}

body.page-template-page-about .about-values.about-values-factory::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        linear-gradient(125deg, rgba(216, 12, 30, 0.055), transparent 34%),
        linear-gradient(305deg, rgba(15, 23, 42, 0.055), transparent 38%) !important;
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
    z-index: -2 !important;
}

body.page-template-page-about .about-values.about-values-factory::after {
    content: "" !important;
    position: absolute !important;
    inset: auto 0 0 !important;
    height: 1px !important;
    background: rgba(15, 23, 42, 0.08) !important;
    z-index: -1 !important;
}

body.page-template-page-about .about-values.about-values-factory .container {
    display: block !important;
    min-height: 0 !important;
    max-width: min(1500px, calc(100vw - 120px)) !important;
    padding: 0 !important;
}

body.page-template-page-about .about-values-layout {
    display: grid !important;
    grid-template-columns: minmax(360px, 0.86fr) minmax(520px, 1.14fr) !important;
    gap: clamp(38px, 5.2vw, 92px) !important;
    align-items: center !important;
}

body.page-template-page-about .about-values-copy {
    min-width: 0 !important;
}

body.page-template-page-about .about-values.about-values-factory .about-values-title {
    position: static !important;
    width: auto !important;
    max-width: 720px !important;
    margin: 0 0 clamp(28px, 3vw, 44px) !important;
    transform: none !important;
    color: #07182d !important;
    font-size: clamp(32px, 3.1vw, 56px) !important;
    line-height: 1.12 !important;
    text-align: left !important;
    text-shadow: none !important;
}

body.page-template-page-about .about-values.about-values-factory .about-value-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    margin: 0 !important;
}

body.page-template-page-about .about-values.about-values-factory .about-value-card {
    display: grid !important;
    grid-template-columns: 56px minmax(0, 1fr) !important;
    column-gap: 20px !important;
    align-items: center !important;
    min-height: 118px !important;
    padding: 22px 24px !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-left: 3px solid rgba(216, 12, 30, 0.82) !important;
    border-radius: 4px !important;
    background: rgba(255, 255, 255, 0.86) !important;
    box-shadow: 0 18px 52px rgba(15, 23, 42, 0.06) !important;
    backdrop-filter: none !important;
    color: #07182d !important;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease !important;
}

body.page-template-page-about .about-values.about-values-factory .about-value-card:hover,
body.page-template-page-about .about-values.about-values-factory .about-value-card:focus {
    transform: translateY(-3px) !important;
    border-color: rgba(216, 12, 30, 0.28) !important;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.09) !important;
}

body.page-template-page-about .about-values.about-values-factory .about-value-card::before {
    width: 3px !important;
    height: 100% !important;
    background: var(--brand-red, #e60012) !important;
}

body.page-template-page-about .about-values.about-values-factory .about-value-card::after {
    right: 18px !important;
    bottom: -0.28em !important;
    color: rgba(216, 12, 30, 0.055) !important;
    font-size: 88px !important;
}

body.page-template-page-about .about-values.about-values-factory .about-value-card span {
    grid-row: 1 / span 2 !important;
    width: 50px !important;
    height: 50px !important;
    border: 1px solid rgba(216, 12, 30, 0.22) !important;
    color: var(--brand-red, #e60012) !important;
    font-size: 14px !important;
    background: rgba(216, 12, 30, 0.055) !important;
}

body.page-template-page-about .about-values.about-values-factory .about-value-card span::before {
    content: none !important;
}

body.page-template-page-about .about-values.about-values-factory .about-value-card h2 {
    grid-column: 2 !important;
    margin: 0 0 8px !important;
    color: #07182d !important;
    font-size: clamp(20px, 1.45vw, 27px) !important;
    line-height: 1.22 !important;
}

body.page-template-page-about .about-values.about-values-factory .about-value-card p {
    display: block !important;
    grid-column: 2 !important;
    visibility: visible !important;
    max-height: none !important;
    max-width: 34em !important;
    margin: 0 !important;
    overflow: visible !important;
    opacity: 1 !important;
    color: #526171 !important;
    font-size: clamp(14px, 0.9vw, 16px) !important;
    line-height: 1.68 !important;
}

body.page-template-page-about .about-factory-showcase {
    position: relative !important;
    min-width: 0 !important;
    padding: clamp(14px, 1.5vw, 22px) !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: 6px !important;
    background: rgba(255, 255, 255, 0.88) !important;
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.09) !important;
}

body.page-template-page-about .about-factory-preview {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    aspect-ratio: 16 / 10 !important;
    background: #eef2f7 !important;
    cursor: zoom-in !important;
}

body.page-template-page-about .about-factory-preview img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    transition: transform 0.45s ease !important;
}

body.page-template-page-about .about-factory-preview:hover img,
body.page-template-page-about .about-factory-preview:focus-visible img {
    transform: scale(1.035) !important;
}

body.page-template-page-about .about-factory-preview-shade {
    position: absolute !important;
    inset: auto 0 0 !important;
    height: 42% !important;
    background: linear-gradient(180deg, transparent, rgba(3, 7, 18, 0.52)) !important;
    pointer-events: none !important;
}

body.page-template-page-about .about-factory-preview-caption {
    position: absolute !important;
    left: clamp(18px, 2vw, 28px) !important;
    bottom: clamp(18px, 2vw, 28px) !important;
    display: grid !important;
    gap: 6px !important;
    text-align: left !important;
    color: #fff !important;
}

body.page-template-page-about .about-factory-preview-caption span {
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 0.82) !important;
}

body.page-template-page-about .about-factory-preview-caption strong {
    font-size: clamp(22px, 2vw, 34px) !important;
    line-height: 1.08 !important;
}

body.page-template-page-about .about-factory-zoom {
    position: absolute !important;
    top: clamp(26px, 2.6vw, 38px) !important;
    right: clamp(26px, 2.6vw, 38px) !important;
    z-index: 2 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    border: 1px solid rgba(255, 255, 255, 0.72) !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.92) !important;
    color: var(--brand-red, #e60012) !important;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14) !important;
    cursor: zoom-in !important;
}

body.page-template-page-about .about-factory-zoom span {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
}

body.page-template-page-about .about-factory-thumbs {
    display: grid !important;
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin-top: 12px !important;
}

body.page-template-page-about .about-factory-thumb {
    display: block !important;
    padding: 0 !important;
    border: 2px solid transparent !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    aspect-ratio: 4 / 3 !important;
    background: #eef2f7 !important;
    opacity: 0.72 !important;
    cursor: pointer !important;
}

body.page-template-page-about .about-factory-thumb.is-active,
body.page-template-page-about .about-factory-thumb:focus-visible {
    border-color: var(--brand-red, #e60012) !important;
    opacity: 1 !important;
}

body.page-template-page-about .about-factory-thumb img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

body.page-template-page-about .about-factory-lightbox {
    position: fixed !important;
    inset: 0 !important;
    z-index: 2147483000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: clamp(18px, 3vw, 52px) !important;
    background: rgba(3, 7, 18, 0.82) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.22s ease !important;
}

body.page-template-page-about .about-factory-lightbox.is-active {
    opacity: 1 !important;
    pointer-events: auto !important;
}

body.factory-lightbox-open .fixed-sidebar {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateX(18px) !important;
}

body.page-template-page-about .about-factory-lightbox-figure {
    width: min(1360px, 88vw) !important;
    margin: 0 !important;
    color: #fff !important;
}

body.page-template-page-about .about-factory-lightbox-figure img {
    display: block !important;
    width: 100% !important;
    max-height: 82vh !important;
    object-fit: contain !important;
    border-radius: 4px !important;
    background: #111827 !important;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34) !important;
}

body.page-template-page-about .about-factory-lightbox-figure figcaption {
    margin-top: 14px !important;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 15px !important;
    text-align: center !important;
}

body.page-template-page-about .about-factory-lightbox-close,
body.page-template-page-about .about-factory-lightbox-nav {
    position: absolute !important;
    z-index: 2 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
    backdrop-filter: blur(8px) !important;
}

body.page-template-page-about .about-factory-lightbox-close {
    top: 24px !important;
    right: 24px !important;
}

body.page-template-page-about .about-factory-lightbox-prev {
    left: 28px !important;
}

body.page-template-page-about .about-factory-lightbox-next {
    right: 28px !important;
}

@media (max-width: 1180px) {
    body.page-template-page-about .about-values.about-values-factory .container {
        max-width: calc(100vw - 48px) !important;
    }

    body.page-template-page-about .about-values-layout {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
    }

    body.page-template-page-about .about-values.about-values-factory .about-values-title {
        max-width: 920px !important;
    }
}

@media (max-width: 760px) {
    body.page-template-page-about .about-values.about-values-factory {
        padding: 54px 0 66px !important;
    }

    body.page-template-page-about .about-values.about-values-factory .container {
        max-width: calc(100vw - 30px) !important;
    }

    body.page-template-page-about .about-values.about-values-factory .about-values-title {
        margin-bottom: 24px !important;
        font-size: 30px !important;
        text-align: left !important;
    }

    body.page-template-page-about .about-values.about-values-factory .about-value-card {
        grid-template-columns: 44px minmax(0, 1fr) !important;
        min-height: 0 !important;
        padding: 18px !important;
    }

    body.page-template-page-about .about-values.about-values-factory .about-value-card span {
        width: 40px !important;
        height: 40px !important;
        font-size: 12px !important;
    }

    body.page-template-page-about .about-factory-showcase {
        padding: 10px !important;
    }

    body.page-template-page-about .about-factory-preview {
        aspect-ratio: 4 / 3 !important;
    }

    body.page-template-page-about .about-factory-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }

    body.page-template-page-about .about-factory-lightbox {
        padding: 16px !important;
    }

    body.page-template-page-about .about-factory-lightbox-figure {
        width: 100% !important;
    }

    body.page-template-page-about .about-factory-lightbox-close {
        top: 14px !important;
        right: 14px !important;
    }

    body.page-template-page-about .about-factory-lightbox-prev {
        left: 14px !important;
        bottom: 22px !important;
        top: auto !important;
    }

    body.page-template-page-about .about-factory-lightbox-next {
        right: 14px !important;
        bottom: 22px !important;
        top: auto !important;
    }
}

/* v2.0.201 order guard: keep the About factory module in the requested stacked layout. */
body.page-template-page-about .about-values-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: clamp(34px, 4vw, 66px) !important;
    align-items: stretch !important;
}

body.page-template-page-about .about-values.about-values-factory .about-values-title {
    max-width: 900px !important;
    margin: 0 auto !important;
    text-align: center !important;
    font-size: clamp(36px, 4.1vw, 68px) !important;
}

body.page-template-page-about .about-values.about-values-factory .about-value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    width: min(1160px, 100%) !important;
    margin: 0 auto !important;
}

body.page-template-page-about .about-factory-showcase {
    width: 100% !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.page-template-page-about .about-factory-preview,
body.page-template-page-about .about-factory-zoom,
body.page-template-page-about .about-factory-thumbs {
    display: none !important;
}

body.page-template-page-about .about-factory-cloud {
    display: grid !important;
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    gap: clamp(14px, 1.45vw, 24px) !important;
    align-items: start !important;
}

@media (max-width: 1180px) {
    body.page-template-page-about .about-values.about-values-factory .about-value-grid {
        grid-template-columns: 1fr !important;
        width: min(760px, 100%) !important;
    }

    body.page-template-page-about .about-factory-cloud {
        grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 760px) {
    body.page-template-page-about .about-values.about-values-factory .about-values-title {
        text-align: left !important;
        font-size: 30px !important;
    }

    body.page-template-page-about .about-factory-cloud {
        grid-template-columns: 1fr !important;
    }
}

/* v2.0.202: compact Big-Dipper style factory constellation. */
body.page-template-page-about .about-values.about-values-factory {
    padding: clamp(78px, 8vw, 126px) 0 clamp(86px, 9vw, 142px) !important;
}

body.page-template-page-about .about-values.about-values-factory .about-values-title {
    max-width: 980px !important;
    margin: 0 auto !important;
    text-align: center !important;
    letter-spacing: 0 !important;
}

body.page-template-page-about .about-values.about-values-factory .about-value-grid {
    position: relative !important;
    z-index: 3 !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    width: min(1160px, 100%) !important;
    margin: 0 auto !important;
}

body.page-template-page-about .about-factory-showcase {
    position: relative !important;
    z-index: 1 !important;
    width: min(1160px, 100%) !important;
    min-height: clamp(390px, 33vw, 520px) !important;
    margin: clamp(4px, 1.2vw, 16px) auto 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.page-template-page-about .about-factory-showcase::before {
    content: "" !important;
    position: absolute !important;
    inset: 10% 4% 8% !important;
    border-radius: 999px !important;
    background:
        radial-gradient(circle at 24% 32%, rgba(216, 12, 30, 0.12), transparent 18%),
        radial-gradient(circle at 80% 42%, rgba(15, 23, 42, 0.08), transparent 22%),
        linear-gradient(135deg, rgba(216, 12, 30, 0.06), rgba(255, 255, 255, 0) 48%, rgba(15, 23, 42, 0.055)) !important;
    filter: blur(10px) !important;
    opacity: 0.86 !important;
    pointer-events: none !important;
}

body.page-template-page-about .about-factory-cloud {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

body.page-template-page-about .about-factory-cloud::before {
    content: none !important;
}

body.page-template-page-about .about-factory-link {
    position: absolute !important;
    z-index: 0 !important;
    display: block !important;
    height: 1px !important;
    width: var(--line-w) !important;
    left: var(--line-x) !important;
    top: var(--line-y) !important;
    transform: rotate(var(--line-r)) !important;
    transform-origin: 0 50% !important;
    background: linear-gradient(90deg, rgba(216, 12, 30, 0), rgba(216, 12, 30, 0.34), rgba(216, 12, 30, 0)) !important;
    box-shadow: 0 0 12px rgba(216, 12, 30, 0.12) !important;
    pointer-events: none !important;
}

body.page-template-page-about .about-factory-link-1 {
    --line-x: 17%;
    --line-y: 48%;
    --line-w: 20%;
    --line-r: -31deg;
}

body.page-template-page-about .about-factory-link-2 {
    --line-x: 31%;
    --line-y: 33%;
    --line-w: 17%;
    --line-r: 27deg;
}

body.page-template-page-about .about-factory-link-3 {
    --line-x: 45%;
    --line-y: 47%;
    --line-w: 17%;
    --line-r: -38deg;
}

body.page-template-page-about .about-factory-link-4 {
    --line-x: 57%;
    --line-y: 31%;
    --line-w: 16%;
    --line-r: 31deg;
}

body.page-template-page-about .about-factory-link-5 {
    --line-x: 68%;
    --line-y: 45%;
    --line-w: 15%;
    --line-r: 33deg;
}

body.page-template-page-about .about-factory-link-6 {
    --line-x: 78%;
    --line-y: 59%;
    --line-w: 17%;
    --line-r: -43deg;
}

body.page-template-page-about .about-factory-link-7 {
    --line-x: 45%;
    --line-y: 47%;
    --line-w: 13%;
    --line-r: 112deg;
}

body.page-template-page-about .about-factory-photo {
    --factory-x: 50%;
    --factory-y: 50%;
    --factory-w: clamp(118px, 9.2vw, 168px);
    --factory-delay: 0s;
    position: absolute !important;
    left: var(--factory-x) !important;
    top: var(--factory-y) !important;
    width: var(--factory-w) !important;
    min-width: 0 !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
    border-radius: 6px !important;
    border: 1px solid rgba(255, 255, 255, 0.86) !important;
    box-shadow:
        0 18px 46px rgba(15, 23, 42, 0.16),
        0 0 0 1px rgba(15, 23, 42, 0.05) !important;
    transform: translate3d(-50%, -50%, 0) !important;
    animation: cxFactoryConstellationFloat 7.4s ease-in-out infinite !important;
    animation-delay: var(--factory-delay) !important;
}

body.page-template-page-about .about-factory-photo:nth-child(1) {
    --factory-x: 17%;
    --factory-y: 48%;
    --factory-w: clamp(138px, 10.5vw, 184px);
    --factory-delay: -0.8s;
}

body.page-template-page-about .about-factory-photo:nth-child(2) {
    --factory-x: 31%;
    --factory-y: 33%;
    --factory-w: clamp(118px, 8.5vw, 154px);
    --factory-delay: -2.2s;
}

body.page-template-page-about .about-factory-photo:nth-child(3) {
    --factory-x: 45%;
    --factory-y: 47%;
    --factory-w: clamp(128px, 9.2vw, 164px);
    --factory-delay: -3.5s;
}

body.page-template-page-about .about-factory-photo:nth-child(4) {
    --factory-x: 57%;
    --factory-y: 31%;
    --factory-w: clamp(112px, 8vw, 148px);
    --factory-delay: -1.3s;
}

body.page-template-page-about .about-factory-photo:nth-child(5) {
    --factory-x: 68%;
    --factory-y: 45%;
    --factory-w: clamp(120px, 8.7vw, 156px);
    --factory-delay: -4.1s;
}

body.page-template-page-about .about-factory-photo:nth-child(6) {
    --factory-x: 78%;
    --factory-y: 59%;
    --factory-w: clamp(130px, 9.4vw, 168px);
    --factory-delay: -2.9s;
}

body.page-template-page-about .about-factory-photo:nth-child(7) {
    --factory-x: 88%;
    --factory-y: 39%;
    --factory-w: clamp(112px, 8.2vw, 150px);
    --factory-delay: -5.2s;
}

body.page-template-page-about .about-factory-photo:nth-child(8) {
    --factory-x: 38%;
    --factory-y: 68%;
    --factory-w: clamp(106px, 7.6vw, 138px);
    --factory-delay: -1.7s;
}

body.page-template-page-about .about-factory-photo-1 {
    --factory-x: 17%;
    --factory-y: 48%;
    --factory-w: clamp(138px, 10.5vw, 184px);
    --factory-delay: -0.8s;
}

body.page-template-page-about .about-factory-photo-2 {
    --factory-x: 31%;
    --factory-y: 33%;
    --factory-w: clamp(118px, 8.5vw, 154px);
    --factory-delay: -2.2s;
}

body.page-template-page-about .about-factory-photo-3 {
    --factory-x: 45%;
    --factory-y: 47%;
    --factory-w: clamp(128px, 9.2vw, 164px);
    --factory-delay: -3.5s;
}

body.page-template-page-about .about-factory-photo-4 {
    --factory-x: 57%;
    --factory-y: 31%;
    --factory-w: clamp(112px, 8vw, 148px);
    --factory-delay: -1.3s;
}

body.page-template-page-about .about-factory-photo-5 {
    --factory-x: 68%;
    --factory-y: 45%;
    --factory-w: clamp(120px, 8.7vw, 156px);
    --factory-delay: -4.1s;
}

body.page-template-page-about .about-factory-photo-6 {
    --factory-x: 78%;
    --factory-y: 59%;
    --factory-w: clamp(130px, 9.4vw, 168px);
    --factory-delay: -2.9s;
}

body.page-template-page-about .about-factory-photo-7 {
    --factory-x: 88%;
    --factory-y: 39%;
    --factory-w: clamp(112px, 8.2vw, 150px);
    --factory-delay: -5.2s;
}

body.page-template-page-about .about-factory-photo-8 {
    --factory-x: 38%;
    --factory-y: 68%;
    --factory-w: clamp(106px, 7.6vw, 138px);
    --factory-delay: -1.7s;
}

@keyframes cxFactoryConstellationFloat {
    0%, 100% {
        transform: translate3d(-50%, -50%, 0) translateY(0);
    }
    50% {
        transform: translate3d(-50%, -50%, 0) translateY(-10px);
    }
}

body.page-template-page-about .about-factory-photo:hover,
body.page-template-page-about .about-factory-photo:focus-visible {
    animation-play-state: paused !important;
    transform: translate3d(-50%, -50%, 0) translateY(-8px) scale(1.06) !important;
    z-index: 10 !important;
    border-color: rgba(216, 12, 30, 0.55) !important;
}

body.page-template-page-about .about-factory-photo-meta {
    left: 12px !important;
    bottom: 10px !important;
    width: calc(100% - 24px) !important;
}

body.page-template-page-about .about-factory-photo-meta span {
    font-size: 10px !important;
}

body.page-template-page-about .about-factory-photo-meta strong {
    font-size: clamp(18px, 1.35vw, 24px) !important;
}

body.page-template-page-about .about-factory-photo-zoom {
    width: 34px !important;
    height: 34px !important;
    top: 9px !important;
    right: 9px !important;
}

body.page-template-page-about .about-factory-photo-zoom svg {
    width: 16px !important;
    height: 16px !important;
}

@media (prefers-reduced-motion: reduce) {
    body.page-template-page-about .about-factory-photo {
        animation: none !important;
    }
}

@media (max-width: 1180px) {
    body.page-template-page-about .about-factory-showcase {
        min-height: 520px !important;
    }

    body.page-template-page-about .about-factory-photo:nth-child(1) { --factory-x: 18%; --factory-y: 42%; }
    body.page-template-page-about .about-factory-photo:nth-child(2) { --factory-x: 36%; --factory-y: 29%; }
    body.page-template-page-about .about-factory-photo:nth-child(3) { --factory-x: 54%; --factory-y: 43%; }
    body.page-template-page-about .about-factory-photo:nth-child(4) { --factory-x: 71%; --factory-y: 30%; }
    body.page-template-page-about .about-factory-photo:nth-child(5) { --factory-x: 25%; --factory-y: 67%; }
    body.page-template-page-about .about-factory-photo:nth-child(6) { --factory-x: 49%; --factory-y: 73%; }
    body.page-template-page-about .about-factory-photo:nth-child(7) { --factory-x: 75%; --factory-y: 64%; }
    body.page-template-page-about .about-factory-photo:nth-child(8) { --factory-x: 88%; --factory-y: 48%; }

    body.page-template-page-about .about-factory-photo-1 { --factory-x: 18%; --factory-y: 42%; }
    body.page-template-page-about .about-factory-photo-2 { --factory-x: 36%; --factory-y: 29%; }
    body.page-template-page-about .about-factory-photo-3 { --factory-x: 54%; --factory-y: 43%; }
    body.page-template-page-about .about-factory-photo-4 { --factory-x: 71%; --factory-y: 30%; }
    body.page-template-page-about .about-factory-photo-5 { --factory-x: 25%; --factory-y: 67%; }
    body.page-template-page-about .about-factory-photo-6 { --factory-x: 49%; --factory-y: 73%; }
    body.page-template-page-about .about-factory-photo-7 { --factory-x: 75%; --factory-y: 64%; }
    body.page-template-page-about .about-factory-photo-8 { --factory-x: 88%; --factory-y: 48%; }
}

@media (max-width: 760px) {
    body.page-template-page-about .about-values.about-values-factory .about-value-grid {
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }

    body.page-template-page-about .about-values.about-values-factory .about-value-card {
        grid-template-columns: 44px minmax(0, 1fr) !important;
        min-height: 0 !important;
        padding: 18px !important;
    }

    body.page-template-page-about .about-values.about-values-factory .about-value-card h2,
    body.page-template-page-about .about-values.about-values-factory .about-value-card p {
        writing-mode: horizontal-tb !important;
        text-orientation: mixed !important;
        word-break: normal !important;
    }

    body.page-template-page-about .about-factory-showcase {
        min-height: 560px !important;
    }

    body.page-template-page-about .about-factory-link {
        display: none !important;
    }

    body.page-template-page-about .about-factory-photo {
        --factory-w: clamp(104px, 36vw, 138px) !important;
    }

    body.page-template-page-about .about-factory-photo:nth-child(1) { --factory-x: 25%; --factory-y: 17%; }
    body.page-template-page-about .about-factory-photo:nth-child(2) { --factory-x: 68%; --factory-y: 12%; }
    body.page-template-page-about .about-factory-photo:nth-child(3) { --factory-x: 43%; --factory-y: 31%; }
    body.page-template-page-about .about-factory-photo:nth-child(4) { --factory-x: 76%; --factory-y: 38%; }
    body.page-template-page-about .about-factory-photo:nth-child(5) { --factory-x: 26%; --factory-y: 53%; }
    body.page-template-page-about .about-factory-photo:nth-child(6) { --factory-x: 62%; --factory-y: 62%; }
    body.page-template-page-about .about-factory-photo:nth-child(7) { --factory-x: 31%; --factory-y: 80%; }
    body.page-template-page-about .about-factory-photo:nth-child(8) { --factory-x: 75%; --factory-y: 82%; }

    body.page-template-page-about .about-factory-photo-1 { --factory-x: 25%; --factory-y: 17%; }
    body.page-template-page-about .about-factory-photo-2 { --factory-x: 68%; --factory-y: 12%; }
    body.page-template-page-about .about-factory-photo-3 { --factory-x: 43%; --factory-y: 31%; }
    body.page-template-page-about .about-factory-photo-4 { --factory-x: 76%; --factory-y: 38%; }
    body.page-template-page-about .about-factory-photo-5 { --factory-x: 26%; --factory-y: 53%; }
    body.page-template-page-about .about-factory-photo-6 { --factory-x: 62%; --factory-y: 62%; }
    body.page-template-page-about .about-factory-photo-7 { --factory-x: 31%; --factory-y: 80%; }
    body.page-template-page-about .about-factory-photo-8 { --factory-x: 75%; --factory-y: 82%; }
}

/* v2.0.203: selected factory image stage plus compact Big-Dipper thumbnail nodes. */
body.page-template-page-about .about-factory-showcase {
    width: min(1180px, 100%) !important;
    min-height: 0 !important;
    margin: clamp(8px, 1.4vw, 18px) auto 0 !important;
    padding: 0 !important;
}

body.page-template-page-about .about-factory-showcase::before {
    inset: 20% 12% 4% !important;
    filter: blur(16px) !important;
    opacity: 0.7 !important;
}

body.page-template-page-about .about-factory-stage {
    position: relative !important;
    z-index: 4 !important;
    display: block !important;
    width: min(560px, 72vw) !important;
    margin: 0 auto clamp(24px, 3vw, 40px) !important;
    padding: 0 !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    aspect-ratio: 16 / 10 !important;
    background: #eef2f7 !important;
    box-shadow: 0 28px 90px rgba(15, 23, 42, 0.13) !important;
    cursor: zoom-in !important;
}

body.page-template-page-about .about-factory-stage img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.45s ease, filter 0.45s ease !important;
}

body.page-template-page-about .about-factory-stage:hover img,
body.page-template-page-about .about-factory-stage:focus-visible img {
    transform: scale(1.035) !important;
    filter: saturate(1.04) contrast(1.02) !important;
}

body.page-template-page-about .about-factory-stage-shade {
    position: absolute !important;
    inset: auto 0 0 !important;
    height: 42% !important;
    background: linear-gradient(180deg, transparent, rgba(3, 7, 18, 0.58)) !important;
    pointer-events: none !important;
}

body.page-template-page-about .about-factory-stage-caption {
    position: absolute !important;
    left: 22px !important;
    bottom: 18px !important;
    z-index: 2 !important;
    max-width: calc(100% - 88px) !important;
    color: #fff !important;
    font-size: clamp(16px, 1.3vw, 20px) !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
    text-align: left !important;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.28) !important;
}

body.page-template-page-about .about-factory-stage-zoom {
    position: absolute !important;
    right: 18px !important;
    bottom: 18px !important;
    z-index: 3 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.94) !important;
    color: var(--brand-red, #e60012) !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.2) !important;
}

body.page-template-page-about .about-factory-cloud {
    position: relative !important;
    inset: auto !important;
    width: min(980px, 100%) !important;
    height: clamp(210px, 18vw, 280px) !important;
    margin: 0 auto !important;
}

body.page-template-page-about .about-factory-link {
    height: 1px !important;
    background: linear-gradient(90deg, rgba(216, 12, 30, 0), rgba(216, 12, 30, 0.28), rgba(216, 12, 30, 0)) !important;
    opacity: 0.7 !important;
}

body.page-template-page-about .about-factory-link-1 { --line-x: 10%; --line-y: 51%; --line-w: 18%; --line-r: -28deg; }
body.page-template-page-about .about-factory-link-2 { --line-x: 25%; --line-y: 33%; --line-w: 17%; --line-r: 22deg; }
body.page-template-page-about .about-factory-link-3 { --line-x: 39%; --line-y: 45%; --line-w: 15%; --line-r: -35deg; }
body.page-template-page-about .about-factory-link-4 { --line-x: 51%; --line-y: 27%; --line-w: 16%; --line-r: 24deg; }
body.page-template-page-about .about-factory-link-5 { --line-x: 64%; --line-y: 39%; --line-w: 15%; --line-r: 31deg; }
body.page-template-page-about .about-factory-link-6 { --line-x: 76%; --line-y: 54%; --line-w: 14%; --line-r: -38deg; }
body.page-template-page-about .about-factory-link-7 { --line-x: 39%; --line-y: 45%; --line-w: 12%; --line-r: 112deg; }

body.page-template-page-about .about-factory-cloud::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        radial-gradient(circle at 10% 51%, rgba(216, 12, 30, 0.22) 0 3px, transparent 4px),
        radial-gradient(circle at 25% 33%, rgba(216, 12, 30, 0.18) 0 3px, transparent 4px),
        radial-gradient(circle at 39% 45%, rgba(216, 12, 30, 0.18) 0 3px, transparent 4px),
        radial-gradient(circle at 51% 27%, rgba(216, 12, 30, 0.18) 0 3px, transparent 4px),
        radial-gradient(circle at 64% 39%, rgba(216, 12, 30, 0.18) 0 3px, transparent 4px),
        radial-gradient(circle at 76% 54%, rgba(216, 12, 30, 0.18) 0 3px, transparent 4px),
        radial-gradient(circle at 88% 37%, rgba(216, 12, 30, 0.18) 0 3px, transparent 4px);
    pointer-events: none !important;
}

body.page-template-page-about .about-factory-photo {
    --factory-w: clamp(66px, 5.1vw, 92px);
    border-radius: 5px !important;
    border-color: rgba(255, 255, 255, 0.92) !important;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14), 0 0 0 1px rgba(216, 12, 30, 0.07) !important;
}

body.page-template-page-about .about-factory-photo-1 { --factory-x: 10%; --factory-y: 51%; --factory-w: clamp(72px, 5.8vw, 104px); }
body.page-template-page-about .about-factory-photo-2 { --factory-x: 25%; --factory-y: 33%; }
body.page-template-page-about .about-factory-photo-3 { --factory-x: 39%; --factory-y: 45%; }
body.page-template-page-about .about-factory-photo-4 { --factory-x: 51%; --factory-y: 27%; }
body.page-template-page-about .about-factory-photo-5 { --factory-x: 64%; --factory-y: 39%; }
body.page-template-page-about .about-factory-photo-6 { --factory-x: 76%; --factory-y: 54%; }
body.page-template-page-about .about-factory-photo-7 { --factory-x: 88%; --factory-y: 37%; }
body.page-template-page-about .about-factory-photo-8 {
    --factory-x: 35%;
    --factory-y: 74%;
    --factory-w: clamp(58px, 4.5vw, 78px);
    opacity: 0.78 !important;
}

body.page-template-page-about .about-factory-photo.is-active {
    border-color: rgba(216, 12, 30, 0.9) !important;
    box-shadow: 0 16px 42px rgba(216, 12, 30, 0.18), 0 0 0 4px rgba(216, 12, 30, 0.08) !important;
}

body.page-template-page-about .about-factory-photo-meta {
    display: none !important;
}

body.page-template-page-about .about-factory-photo-zoom {
    width: 24px !important;
    height: 24px !important;
    top: 6px !important;
    right: 6px !important;
    opacity: 0 !important;
}

body.page-template-page-about .about-factory-photo-zoom svg {
    width: 12px !important;
    height: 12px !important;
}

body.page-template-page-about .about-factory-photo:hover,
body.page-template-page-about .about-factory-photo:focus-visible {
    transform: translate3d(-50%, -50%, 0) translateY(-6px) scale(1.12) !important;
}

@media (max-width: 760px) {
    body.page-template-page-about .about-factory-stage {
        width: 100% !important;
        margin-bottom: 22px !important;
    }

    body.page-template-page-about .about-factory-cloud {
        height: 330px !important;
    }

    body.page-template-page-about .about-factory-photo {
        --factory-w: clamp(58px, 22vw, 82px) !important;
    }

    body.page-template-page-about .about-factory-photo-1 { --factory-x: 14%; --factory-y: 30%; }
    body.page-template-page-about .about-factory-photo-2 { --factory-x: 35%; --factory-y: 18%; }
    body.page-template-page-about .about-factory-photo-3 { --factory-x: 56%; --factory-y: 31%; }
    body.page-template-page-about .about-factory-photo-4 { --factory-x: 76%; --factory-y: 18%; }
    body.page-template-page-about .about-factory-photo-5 { --factory-x: 26%; --factory-y: 57%; }
    body.page-template-page-about .about-factory-photo-6 { --factory-x: 52%; --factory-y: 69%; }
    body.page-template-page-about .about-factory-photo-7 { --factory-x: 80%; --factory-y: 58%; }
body.page-template-page-about .about-factory-photo-8 { --factory-x: 68%; --factory-y: 86%; }
}

/* v2.0.204: final compact factory stage with small, dispersed Big-Dipper nodes. */
body.page-template-page-about .about-values.about-values-factory {
    padding: clamp(44px, 5vw, 76px) 0 clamp(56px, 6vw, 92px) !important;
}

body.page-template-page-about .about-values.about-values-factory .about-values-layout {
    gap: clamp(18px, 2.1vw, 34px) !important;
}

body.page-template-page-about .about-values.about-values-factory .about-values-copy,
body.page-template-page-about .about-values.about-values-factory .about-values-title,
body.page-template-page-about .about-values.about-values-factory .about-value-card {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    filter: none !important;
}

body.page-template-page-about .about-values.about-values-factory .about-values-title {
    max-width: 800px !important;
    margin: 0 auto clamp(16px, 1.8vw, 26px) !important;
    color: #07182d !important;
    font-size: clamp(32px, 3.2vw, 50px) !important;
    line-height: 1.12 !important;
    text-align: center !important;
}

body.page-template-page-about .about-values.about-values-factory .about-value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    width: min(1120px, 100%) !important;
    gap: clamp(12px, 1.5vw, 20px) !important;
    margin: 0 auto !important;
}

body.page-template-page-about .about-values.about-values-factory .about-value-card {
    min-height: 108px !important;
    padding: clamp(16px, 1.5vw, 22px) !important;
    background: rgba(255, 255, 255, 0.92) !important;
    border-color: rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 16px 46px rgba(15, 23, 42, 0.055) !important;
}

body.page-template-page-about .about-values.about-values-factory .about-value-card h2 {
    font-size: clamp(18px, 1.2vw, 22px) !important;
}

body.page-template-page-about .about-values.about-values-factory .about-value-card p {
    font-size: 15px !important;
    line-height: 1.62 !important;
}

body.page-template-page-about .about-factory-showcase {
    width: min(1120px, 100%) !important;
    margin: clamp(12px, 1.7vw, 22px) auto 0 !important;
}

body.page-template-page-about .about-factory-stage {
    width: min(430px, 54vw) !important;
    margin: 0 auto clamp(6px, 0.9vw, 12px) !important;
    aspect-ratio: 16 / 9 !important;
    border-radius: 7px !important;
    box-shadow: 0 22px 70px rgba(15, 23, 42, 0.12) !important;
}

body.page-template-page-about .about-factory-stage-caption {
    left: 18px !important;
    bottom: 15px !important;
    max-width: calc(100% - 76px) !important;
    font-size: clamp(14px, 1vw, 17px) !important;
}

body.page-template-page-about .about-factory-stage-zoom {
    right: 14px !important;
    bottom: 14px !important;
    width: 36px !important;
    height: 36px !important;
}

body.page-template-page-about .about-factory-cloud {
    width: min(1080px, 100%) !important;
    height: clamp(162px, 12.4vw, 210px) !important;
    margin: 0 auto !important;
}

body.page-template-page-about .about-factory-cloud::after {
    background:
        radial-gradient(circle at 7% 56%, rgba(216, 12, 30, 0.24) 0 2px, transparent 3px),
        radial-gradient(circle at 22% 32%, rgba(216, 12, 30, 0.22) 0 2px, transparent 3px),
        radial-gradient(circle at 38% 47%, rgba(216, 12, 30, 0.2) 0 2px, transparent 3px),
        radial-gradient(circle at 52% 26%, rgba(216, 12, 30, 0.22) 0 2px, transparent 3px),
        radial-gradient(circle at 66% 41%, rgba(216, 12, 30, 0.2) 0 2px, transparent 3px),
        radial-gradient(circle at 79% 60%, rgba(216, 12, 30, 0.2) 0 2px, transparent 3px),
        radial-gradient(circle at 93% 38%, rgba(216, 12, 30, 0.22) 0 2px, transparent 3px),
        radial-gradient(circle at 34% 78%, rgba(216, 12, 30, 0.16) 0 2px, transparent 3px) !important;
}

body.page-template-page-about .about-factory-link {
    height: 1px !important;
    background: linear-gradient(90deg, rgba(216, 12, 30, 0), rgba(216, 12, 30, 0.32), rgba(216, 12, 30, 0)) !important;
    opacity: 0.55 !important;
}

body.page-template-page-about .about-factory-link-1 { --line-x: 7%; --line-y: 56%; --line-w: 18%; --line-r: -31deg; }
body.page-template-page-about .about-factory-link-2 { --line-x: 22%; --line-y: 32%; --line-w: 18%; --line-r: 23deg; }
body.page-template-page-about .about-factory-link-3 { --line-x: 38%; --line-y: 47%; --line-w: 17%; --line-r: -34deg; }
body.page-template-page-about .about-factory-link-4 { --line-x: 52%; --line-y: 26%; --line-w: 17%; --line-r: 26deg; }
body.page-template-page-about .about-factory-link-5 { --line-x: 66%; --line-y: 41%; --line-w: 17%; --line-r: 32deg; }
body.page-template-page-about .about-factory-link-6 { --line-x: 79%; --line-y: 60%; --line-w: 17%; --line-r: -36deg; }
body.page-template-page-about .about-factory-link-7 { --line-x: 38%; --line-y: 47%; --line-w: 15%; --line-r: 112deg; }

body.page-template-page-about .about-factory-photo {
    --factory-w: clamp(40px, 3.3vw, 58px) !important;
    border-radius: 5px !important;
    border: 1px solid rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.14), 0 0 0 1px rgba(216, 12, 30, 0.08) !important;
    animation: aboutFactoryTinyNodeFloat 5.6s ease-in-out infinite !important;
    animation-delay: var(--factory-delay, 0s) !important;
}

body.page-template-page-about .about-factory-photo::before {
    content: "" !important;
    position: absolute !important;
    inset: -7px !important;
    border: 1px solid rgba(216, 12, 30, 0.12) !important;
    border-radius: 8px !important;
    pointer-events: none !important;
}

body.page-template-page-about .about-factory-photo-meta {
    position: absolute !important;
    right: 4px !important;
    bottom: 2px !important;
    z-index: 3 !important;
    display: block !important;
    color: #fff !important;
    line-height: 1 !important;
    text-shadow: 0 5px 14px rgba(0, 0, 0, 0.42) !important;
}

body.page-template-page-about .about-factory-photo-meta span {
    display: none !important;
}

body.page-template-page-about .about-factory-photo-meta strong {
    display: block !important;
    font-size: clamp(11px, 0.9vw, 14px) !important;
    font-weight: 800 !important;
}

body.page-template-page-about .about-factory-photo-zoom {
    display: none !important;
}

body.page-template-page-about .about-factory-photo-1 { --factory-x: 7%; --factory-y: 56%; --factory-w: clamp(44px, 3.6vw, 64px) !important; --factory-delay: -0.4s; }
body.page-template-page-about .about-factory-photo-2 { --factory-x: 22%; --factory-y: 32%; --factory-delay: -1.2s; }
body.page-template-page-about .about-factory-photo-3 { --factory-x: 38%; --factory-y: 47%; --factory-delay: -2.1s; }
body.page-template-page-about .about-factory-photo-4 { --factory-x: 52%; --factory-y: 26%; --factory-delay: -0.8s; }
body.page-template-page-about .about-factory-photo-5 { --factory-x: 66%; --factory-y: 41%; --factory-delay: -1.8s; }
body.page-template-page-about .about-factory-photo-6 { --factory-x: 79%; --factory-y: 60%; --factory-delay: -2.7s; }
body.page-template-page-about .about-factory-photo-7 { --factory-x: 93%; --factory-y: 38%; --factory-delay: -1.4s; }
body.page-template-page-about .about-factory-photo-8 { --factory-x: 34%; --factory-y: 76%; --factory-w: clamp(36px, 2.9vw, 50px) !important; --factory-delay: -3.2s; opacity: 0.78 !important; }

body.page-template-page-about .about-factory-cloud .about-factory-photo-1 { --factory-x: 7%; --factory-y: 56%; --factory-w: clamp(44px, 3.6vw, 64px) !important; }
body.page-template-page-about .about-factory-cloud .about-factory-photo-2 { --factory-x: 22%; --factory-y: 32%; }
body.page-template-page-about .about-factory-cloud .about-factory-photo-3 { --factory-x: 38%; --factory-y: 47%; }
body.page-template-page-about .about-factory-cloud .about-factory-photo-4 { --factory-x: 52%; --factory-y: 26%; }
body.page-template-page-about .about-factory-cloud .about-factory-photo-5 { --factory-x: 66%; --factory-y: 41%; }
body.page-template-page-about .about-factory-cloud .about-factory-photo-6 { --factory-x: 79%; --factory-y: 60%; }
body.page-template-page-about .about-factory-cloud .about-factory-photo-7 { --factory-x: 93%; --factory-y: 38%; }
body.page-template-page-about .about-factory-cloud .about-factory-photo-8 { --factory-x: 34%; --factory-y: 76%; --factory-w: clamp(36px, 2.9vw, 50px) !important; }

body.page-template-page-about .about-factory-photo:hover,
body.page-template-page-about .about-factory-photo:focus-visible {
    transform: translate3d(-50%, -50%, 0) translateY(-5px) scale(1.1) !important;
}

body.page-template-page-about .about-factory-photo.is-active {
    border-color: rgba(216, 12, 30, 0.9) !important;
    box-shadow: 0 13px 34px rgba(216, 12, 30, 0.2), 0 0 0 4px rgba(216, 12, 30, 0.08) !important;
}

@keyframes aboutFactoryTinyNodeFloat {
    0%, 100% {
        transform: translate3d(-50%, -50%, 0) translateY(0);
    }
    50% {
        transform: translate3d(-50%, -50%, 0) translateY(-4px);
    }
}

@media (max-width: 980px) {
    body.page-template-page-about .about-values.about-values-factory .about-value-grid {
        grid-template-columns: 1fr !important;
        width: min(720px, 100%) !important;
    }

    body.page-template-page-about .about-factory-stage {
        width: min(410px, 78vw) !important;
    }
}

@media (max-width: 760px) {
    body.page-template-page-about .about-values.about-values-factory {
        padding: 42px 0 58px !important;
    }

    body.page-template-page-about .about-values.about-values-factory .about-values-title {
        font-size: 30px !important;
        text-align: left !important;
    }

    body.page-template-page-about .about-values.about-values-factory .about-value-card {
        min-height: 0 !important;
        padding: 16px !important;
    }

    body.page-template-page-about .about-factory-stage {
        width: 100% !important;
        margin-bottom: 14px !important;
    }

    body.page-template-page-about .about-factory-cloud {
        height: 238px !important;
    }

    body.page-template-page-about .about-factory-link {
        display: block !important;
    }

    body.page-template-page-about .about-factory-photo {
        --factory-w: clamp(40px, 15vw, 56px) !important;
    }

    body.page-template-page-about .about-factory-photo-1 { --factory-x: 12%; --factory-y: 55%; }
    body.page-template-page-about .about-factory-photo-2 { --factory-x: 31%; --factory-y: 32%; }
    body.page-template-page-about .about-factory-photo-3 { --factory-x: 50%; --factory-y: 48%; }
    body.page-template-page-about .about-factory-photo-4 { --factory-x: 68%; --factory-y: 28%; }
    body.page-template-page-about .about-factory-photo-5 { --factory-x: 84%; --factory-y: 43%; }
    body.page-template-page-about .about-factory-photo-6 { --factory-x: 68%; --factory-y: 67%; }
    body.page-template-page-about .about-factory-photo-7 { --factory-x: 88%; --factory-y: 73%; }
    body.page-template-page-about .about-factory-photo-8 { --factory-x: 35%; --factory-y: 79%; }

    body.page-template-page-about .about-factory-cloud .about-factory-photo-1 { --factory-x: 12%; --factory-y: 55%; }
    body.page-template-page-about .about-factory-cloud .about-factory-photo-2 { --factory-x: 31%; --factory-y: 32%; }
    body.page-template-page-about .about-factory-cloud .about-factory-photo-3 { --factory-x: 50%; --factory-y: 48%; }
    body.page-template-page-about .about-factory-cloud .about-factory-photo-4 { --factory-x: 68%; --factory-y: 28%; }
    body.page-template-page-about .about-factory-cloud .about-factory-photo-5 { --factory-x: 84%; --factory-y: 43%; }
    body.page-template-page-about .about-factory-cloud .about-factory-photo-6 { --factory-x: 68%; --factory-y: 67%; }
    body.page-template-page-about .about-factory-cloud .about-factory-photo-7 { --factory-x: 88%; --factory-y: 73%; }
    body.page-template-page-about .about-factory-cloud .about-factory-photo-8 { --factory-x: 35%; --factory-y: 79%; }
}

/* v2.0.205: wider factory stage and denser industrial track decoration. */
body.page-template-page-about .about-values.about-values-factory {
    background:
        linear-gradient(118deg, rgba(216, 12, 30, 0.035), rgba(255, 255, 255, 0) 28%),
        linear-gradient(142deg, rgba(255, 255, 255, 0) 58%, rgba(7, 24, 45, 0.04)),
        #fff !important;
}

body.page-template-page-about .about-factory-showcase {
    width: min(1320px, 100%) !important;
    margin-top: clamp(16px, 1.9vw, 26px) !important;
    padding: clamp(16px, 1.5vw, 22px) 0 clamp(10px, 1vw, 16px) !important;
}

body.page-template-page-about .about-factory-showcase::before {
    content: "" !important;
    position: absolute !important;
    z-index: 0 !important;
    inset: 0 max(-48px, -3vw) 0 !important;
    border: 1px solid rgba(7, 24, 45, 0.045) !important;
    border-radius: 8px !important;
    background:
        linear-gradient(90deg, rgba(216, 12, 30, 0.08), rgba(216, 12, 30, 0) 22%, rgba(216, 12, 30, 0) 78%, rgba(216, 12, 30, 0.08)),
        repeating-linear-gradient(90deg, rgba(7, 24, 45, 0.032) 0 1px, transparent 1px 96px),
        repeating-linear-gradient(0deg, rgba(7, 24, 45, 0.024) 0 1px, transparent 1px 76px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(247, 250, 253, 0.64)) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 26px 84px rgba(15, 23, 42, 0.045) !important;
    filter: none !important;
    opacity: 1 !important;
    pointer-events: none !important;
}

body.page-template-page-about .about-factory-showcase::after {
    content: "" !important;
    position: absolute !important;
    z-index: 1 !important;
    inset: clamp(22px, 2vw, 34px) max(-36px, -2vw) auto !important;
    height: 1px !important;
    background: linear-gradient(90deg, rgba(216, 12, 30, 0), rgba(216, 12, 30, 0.22), rgba(216, 12, 30, 0.04), rgba(7, 24, 45, 0.1), rgba(216, 12, 30, 0)) !important;
    pointer-events: none !important;
}

body.page-template-page-about .about-factory-stage,
body.page-template-page-about .about-factory-cloud {
    position: relative !important;
    z-index: 2 !important;
}

body.page-template-page-about .about-factory-stage {
    width: min(720px, 70vw) !important;
    aspect-ratio: 21 / 10 !important;
    margin-bottom: clamp(8px, 1vw, 14px) !important;
    box-shadow: 0 24px 78px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.82) !important;
}

body.page-template-page-about .about-factory-stage-caption {
    left: 22px !important;
    bottom: 18px !important;
    font-size: clamp(15px, 1.08vw, 18px) !important;
}

body.page-template-page-about .about-factory-stage-zoom {
    right: 18px !important;
    bottom: 16px !important;
}

body.page-template-page-about .about-factory-cloud {
    width: min(1260px, 100%) !important;
    height: clamp(178px, 12.8vw, 220px) !important;
}

body.page-template-page-about .about-factory-cloud::before {
    content: "" !important;
    position: absolute !important;
    inset: 8% 3% 2% !important;
    background:
        linear-gradient(113deg, transparent 0 37%, rgba(216, 12, 30, 0.06) 37.2%, transparent 37.5%),
        linear-gradient(151deg, transparent 0 62%, rgba(7, 24, 45, 0.055) 62.2%, transparent 62.6%) !important;
    pointer-events: none !important;
}

body.page-template-page-about .about-factory-cloud::after {
    opacity: 0.72 !important;
}

body.page-template-page-about .about-factory-link {
    opacity: 0.68 !important;
}

body.page-template-page-about .about-factory-link-1 { --line-x: 4%; --line-y: 52%; --line-w: 19%; --line-r: -23deg; }
body.page-template-page-about .about-factory-link-2 { --line-x: 19%; --line-y: 35%; --line-w: 18%; --line-r: 21deg; }
body.page-template-page-about .about-factory-link-3 { --line-x: 35%; --line-y: 48%; --line-w: 19%; --line-r: -28deg; }
body.page-template-page-about .about-factory-link-4 { --line-x: 52%; --line-y: 30%; --line-w: 19%; --line-r: 26deg; }
body.page-template-page-about .about-factory-link-5 { --line-x: 69%; --line-y: 45%; --line-w: 17%; --line-r: 29deg; }
body.page-template-page-about .about-factory-link-6 { --line-x: 83%; --line-y: 62%; --line-w: 13%; --line-r: -36deg; }
body.page-template-page-about .about-factory-link-7 { --line-x: 35%; --line-y: 48%; --line-w: 13%; --line-r: 108deg; }

body.page-template-page-about .about-factory-cloud .about-factory-photo-1 { --factory-x: 4%; --factory-y: 52%; }
body.page-template-page-about .about-factory-cloud .about-factory-photo-2 { --factory-x: 19%; --factory-y: 35%; }
body.page-template-page-about .about-factory-cloud .about-factory-photo-3 { --factory-x: 35%; --factory-y: 48%; }
body.page-template-page-about .about-factory-cloud .about-factory-photo-4 { --factory-x: 52%; --factory-y: 30%; }
body.page-template-page-about .about-factory-cloud .about-factory-photo-5 { --factory-x: 69%; --factory-y: 45%; }
body.page-template-page-about .about-factory-cloud .about-factory-photo-6 { --factory-x: 83%; --factory-y: 62%; }
body.page-template-page-about .about-factory-cloud .about-factory-photo-7 { --factory-x: 96%; --factory-y: 41%; }
body.page-template-page-about .about-factory-cloud .about-factory-photo-8 { --factory-x: 31%; --factory-y: 76%; }

@media (max-width: 980px) {
    body.page-template-page-about .about-factory-stage {
        width: min(680px, 88vw) !important;
    }

    body.page-template-page-about .about-factory-showcase::before {
        inset-inline: 0 !important;
    }
}

@media (max-width: 760px) {
    body.page-template-page-about .about-factory-showcase {
        padding-top: 12px !important;
    }

    body.page-template-page-about .about-factory-stage {
        width: 100% !important;
        aspect-ratio: 16 / 10 !important;
    }

    body.page-template-page-about .about-factory-cloud {
        height: 252px !important;
    }
}

/* v2.0.206: white factory showcase title strip with lighter ChenXuan industrial accents. */
body.page-template-page-about .about-values.about-values-factory {
    background: #fff !important;
}

body.page-template-page-about .about-values.about-values-factory::before {
    content: none !important;
}

body.page-template-page-about .about-factory-showcase {
    width: min(1380px, 100%) !important;
    margin-top: clamp(14px, 1.6vw, 24px) !important;
    padding: clamp(8px, 1vw, 14px) 0 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

body.page-template-page-about .about-factory-showcase::before {
    content: none !important;
}

body.page-template-page-about .about-factory-showcase::after {
    content: "" !important;
    position: absolute !important;
    z-index: 1 !important;
    left: 50% !important;
    top: clamp(34px, 3vw, 48px) !important;
    width: min(1040px, 78vw) !important;
    height: 1px !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(90deg, transparent, rgba(216, 12, 30, 0.2), rgba(7, 24, 45, 0.08), rgba(216, 12, 30, 0.2), transparent) !important;
    pointer-events: none !important;
}

body.page-template-page-about .about-factory-heading {
    position: relative !important;
    z-index: 3 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(12px, 1.6vw, 24px) !important;
    width: min(980px, 100%) !important;
    margin: 0 auto clamp(16px, 1.6vw, 24px) !important;
    color: #07182d !important;
    text-align: center !important;
}

body.page-template-page-about .about-factory-heading span {
    display: block !important;
    flex: 1 1 0 !important;
    max-width: 260px !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent, rgba(216, 12, 30, 0.42)) !important;
}

body.page-template-page-about .about-factory-heading span:last-child {
    background: linear-gradient(90deg, rgba(216, 12, 30, 0.42), transparent) !important;
}

body.page-template-page-about .about-factory-heading h3 {
    position: relative !important;
    margin: 0 !important;
    padding: 0 18px !important;
    color: #07182d !important;
    font-size: clamp(22px, 1.9vw, 32px) !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    letter-spacing: 0 !important;
    background: #fff !important;
}

body.page-template-page-about .about-factory-heading h3::before,
body.page-template-page-about .about-factory-heading h3::after {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: var(--brand-red, #e60012) !important;
    transform: translateY(-50%) !important;
    box-shadow: 0 0 0 5px rgba(216, 12, 30, 0.075) !important;
}

body.page-template-page-about .about-factory-heading h3::before {
    left: 0 !important;
}

body.page-template-page-about .about-factory-heading h3::after {
    right: 0 !important;
}

body.page-template-page-about .about-factory-stage {
    width: min(920px, 78vw) !important;
    aspect-ratio: 22 / 9.5 !important;
    margin-bottom: clamp(10px, 1.1vw, 16px) !important;
    border-color: rgba(7, 24, 45, 0.09) !important;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.13), 0 0 0 1px rgba(255, 255, 255, 0.9) !important;
}

body.page-template-page-about .about-factory-cloud {
    width: min(1280px, 100%) !important;
    height: clamp(172px, 12vw, 210px) !important;
}

body.page-template-page-about .about-factory-cloud::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        linear-gradient(90deg, transparent 0 6%, rgba(7, 24, 45, 0.05) 6.1%, transparent 6.2% 93.8%, rgba(7, 24, 45, 0.05) 93.9%, transparent 94%),
        linear-gradient(0deg, transparent 0 78%, rgba(216, 12, 30, 0.045) 78.2%, transparent 78.4%) !important;
    pointer-events: none !important;
}

body.page-template-page-about .about-factory-cloud::after {
    background:
        radial-gradient(circle at 4% 52%, rgba(216, 12, 30, 0.32) 0 2px, transparent 3px),
        radial-gradient(circle at 19% 35%, rgba(216, 12, 30, 0.26) 0 2px, transparent 3px),
        radial-gradient(circle at 35% 48%, rgba(216, 12, 30, 0.24) 0 2px, transparent 3px),
        radial-gradient(circle at 52% 30%, rgba(216, 12, 30, 0.24) 0 2px, transparent 3px),
        radial-gradient(circle at 69% 45%, rgba(216, 12, 30, 0.24) 0 2px, transparent 3px),
        radial-gradient(circle at 83% 62%, rgba(216, 12, 30, 0.22) 0 2px, transparent 3px),
        radial-gradient(circle at 96% 41%, rgba(216, 12, 30, 0.26) 0 2px, transparent 3px),
        radial-gradient(circle at 31% 76%, rgba(216, 12, 30, 0.18) 0 2px, transparent 3px) !important;
    opacity: 1 !important;
}

body.page-template-page-about .about-factory-link {
    opacity: 0.58 !important;
    background: linear-gradient(90deg, rgba(216, 12, 30, 0), rgba(216, 12, 30, 0.24), rgba(7, 24, 45, 0.08), rgba(216, 12, 30, 0)) !important;
}

@media (max-width: 980px) {
    body.page-template-page-about .about-factory-stage {
        width: min(760px, 92vw) !important;
    }
}

@media (max-width: 760px) {
    body.page-template-page-about .about-factory-heading {
        gap: 10px !important;
        margin-bottom: 14px !important;
    }

    body.page-template-page-about .about-factory-heading h3 {
        padding: 0 14px !important;
        font-size: 22px !important;
        white-space: nowrap !important;
    }

    body.page-template-page-about .about-factory-stage {
        width: 100% !important;
        aspect-ratio: 16 / 10 !important;
    }

    body.page-template-page-about .about-factory-cloud {
        height: 244px !important;
    }
}

/* v2.0.208: denser white industrial showcase field for the factory constellation. */
body.page-template-page-about .about-values.about-values-factory {
    background: #fff !important;
}

body.page-template-page-about .about-values.about-values-factory::before {
    content: none !important;
}

body.page-template-page-about .about-factory-showcase {
    width: min(1540px, 100%) !important;
    margin-top: clamp(12px, 1.2vw, 20px) !important;
    padding: clamp(12px, 1vw, 16px) clamp(20px, 3vw, 58px) clamp(18px, 1.6vw, 30px) !important;
    overflow: visible !important;
}

body.page-template-page-about .about-factory-showcase::before {
    content: "" !important;
    position: absolute !important;
    z-index: 0 !important;
    left: 50% !important;
    top: clamp(58px, 5.3vw, 78px) !important;
    bottom: clamp(-2px, -0.2vw, 0px) !important;
    width: min(1480px, calc(100% - 20px)) !important;
    border: 1px solid rgba(7, 24, 45, 0.055) !important;
    border-radius: 8px !important;
    transform: translateX(-50%) !important;
    background:
        linear-gradient(90deg, rgba(216, 12, 30, 0.34), rgba(216, 12, 30, 0)) 28px 28px / 112px 1px no-repeat,
        linear-gradient(180deg, rgba(216, 12, 30, 0.34), rgba(216, 12, 30, 0)) 28px 28px / 1px 112px no-repeat,
        linear-gradient(270deg, rgba(216, 12, 30, 0.3), rgba(216, 12, 30, 0)) calc(100% - 28px) 28px / 112px 1px no-repeat,
        linear-gradient(180deg, rgba(216, 12, 30, 0.3), rgba(216, 12, 30, 0)) calc(100% - 28px) 28px / 1px 112px no-repeat,
        linear-gradient(90deg, rgba(216, 12, 30, 0.22), rgba(216, 12, 30, 0)) 28px calc(100% - 28px) / 112px 1px no-repeat,
        linear-gradient(0deg, rgba(216, 12, 30, 0.22), rgba(216, 12, 30, 0)) 28px calc(100% - 28px) / 1px 112px no-repeat,
        linear-gradient(270deg, rgba(216, 12, 30, 0.24), rgba(216, 12, 30, 0)) calc(100% - 28px) calc(100% - 28px) / 112px 1px no-repeat,
        linear-gradient(0deg, rgba(216, 12, 30, 0.24), rgba(216, 12, 30, 0)) calc(100% - 28px) calc(100% - 28px) / 1px 112px no-repeat,
        repeating-linear-gradient(90deg, rgba(7, 24, 45, 0.032) 0 1px, transparent 1px 116px),
        repeating-linear-gradient(0deg, rgba(7, 24, 45, 0.026) 0 1px, transparent 1px 92px),
        #fff !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 26px 86px rgba(15, 23, 42, 0.045) !important;
    opacity: 1 !important;
    pointer-events: none !important;
}

body.page-template-page-about .about-factory-showcase::after {
    content: "" !important;
    position: absolute !important;
    z-index: 1 !important;
    left: 50% !important;
    top: clamp(39px, 3.5vw, 54px) !important;
    width: min(1240px, 84vw) !important;
    height: 1px !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(90deg, transparent, rgba(216, 12, 30, 0.24), rgba(7, 24, 45, 0.09), rgba(216, 12, 30, 0.24), transparent) !important;
    pointer-events: none !important;
}

body.page-template-page-about .about-factory-heading {
    margin-bottom: clamp(18px, 1.7vw, 28px) !important;
}

body.page-template-page-about .about-factory-stage {
    width: min(1120px, 82vw) !important;
    aspect-ratio: 23 / 10 !important;
    margin-bottom: clamp(16px, 1.4vw, 24px) !important;
    border-color: rgba(7, 24, 45, 0.1) !important;
    box-shadow:
        0 28px 82px rgba(15, 23, 42, 0.16),
        0 0 0 1px rgba(255, 255, 255, 0.94) !important;
}

body.page-template-page-about .about-factory-stage::before {
    content: "" !important;
    position: absolute !important;
    z-index: 2 !important;
    inset: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.24) !important;
    border-radius: 5px !important;
    pointer-events: none !important;
}

body.page-template-page-about .about-factory-cloud {
    width: min(1400px, 96vw) !important;
    height: clamp(226px, 14.6vw, 276px) !important;
}

body.page-template-page-about .about-factory-cloud::before {
    inset: 0 1.5% !important;
    background:
        linear-gradient(104deg, transparent 0 14%, rgba(216, 12, 30, 0.105) 14.1%, transparent 14.35%),
        linear-gradient(142deg, transparent 0 36%, rgba(7, 24, 45, 0.07) 36.15%, transparent 36.45%),
        linear-gradient(29deg, transparent 0 58%, rgba(216, 12, 30, 0.08) 58.15%, transparent 58.4%),
        linear-gradient(151deg, transparent 0 78%, rgba(7, 24, 45, 0.055) 78.2%, transparent 78.5%) !important;
}

body.page-template-page-about .about-factory-cloud::after {
    opacity: 0.95 !important;
}

body.page-template-page-about .about-factory-link {
    opacity: 0.82 !important;
    height: 1px !important;
    background: linear-gradient(90deg, rgba(216, 12, 30, 0), rgba(216, 12, 30, 0.34), rgba(7, 24, 45, 0.1), rgba(216, 12, 30, 0)) !important;
}

body.page-template-page-about .about-factory-photo {
    box-shadow:
        0 18px 42px rgba(15, 23, 42, 0.14),
        0 0 0 1px rgba(7, 24, 45, 0.06) !important;
}

body.page-template-page-about .about-factory-photo.is-active {
    box-shadow:
        0 22px 54px rgba(216, 12, 30, 0.16),
        0 0 0 1px rgba(216, 12, 30, 0.72) !important;
}

body.page-template-page-about .about-factory-cloud .about-factory-photo-1 { --factory-x: 4.5%; --factory-y: 54%; }
body.page-template-page-about .about-factory-cloud .about-factory-photo-2 { --factory-x: 20%; --factory-y: 33%; }
body.page-template-page-about .about-factory-cloud .about-factory-photo-3 { --factory-x: 36%; --factory-y: 49%; }
body.page-template-page-about .about-factory-cloud .about-factory-photo-4 { --factory-x: 53%; --factory-y: 31%; }
body.page-template-page-about .about-factory-cloud .about-factory-photo-5 { --factory-x: 70%; --factory-y: 46%; }
body.page-template-page-about .about-factory-cloud .about-factory-photo-6 { --factory-x: 84%; --factory-y: 64%; }
body.page-template-page-about .about-factory-cloud .about-factory-photo-7 { --factory-x: 96%; --factory-y: 36%; }
body.page-template-page-about .about-factory-cloud .about-factory-photo-8 { --factory-x: 31%; --factory-y: 78%; }

@media (max-width: 980px) {
    body.page-template-page-about .about-factory-showcase {
        padding-inline: 18px !important;
    }

    body.page-template-page-about .about-factory-stage {
        width: min(820px, 92vw) !important;
        aspect-ratio: 16 / 8.3 !important;
    }
}

@media (max-width: 760px) {
    body.page-template-page-about .about-factory-showcase {
        padding-inline: 0 !important;
    }

    body.page-template-page-about .about-factory-showcase::before {
        width: 100% !important;
        top: 52px !important;
    }

    body.page-template-page-about .about-factory-stage {
        width: 100% !important;
        aspect-ratio: 16 / 10 !important;
    }

    body.page-template-page-about .about-factory-cloud {
        width: 100% !important;
        height: 248px !important;
    }
}

/* v2.0.209: keep the constellation safely inside the page chrome. */
body.page-template-page-about .about-factory-cloud {
    width: min(1320px, calc(100vw - 220px)) !important;
    transform: translateX(clamp(-34px, -2vw, -18px)) !important;
}

body.page-template-page-about .about-factory-link-1 { --line-x: 7%; --line-y: 54%; --line-w: 15%; --line-r: -22deg; }
body.page-template-page-about .about-factory-link-2 { --line-x: 22%; --line-y: 34%; --line-w: 16%; --line-r: 21deg; }
body.page-template-page-about .about-factory-link-3 { --line-x: 38%; --line-y: 49%; --line-w: 17%; --line-r: -27deg; }
body.page-template-page-about .about-factory-link-4 { --line-x: 53%; --line-y: 31%; --line-w: 16%; --line-r: 26deg; }
body.page-template-page-about .about-factory-link-5 { --line-x: 67%; --line-y: 46%; --line-w: 15%; --line-r: 29deg; }
body.page-template-page-about .about-factory-link-6 { --line-x: 80%; --line-y: 62%; --line-w: 11%; --line-r: -34deg; }
body.page-template-page-about .about-factory-link-7 { --line-x: 38%; --line-y: 49%; --line-w: 12%; --line-r: 108deg; }

body.page-template-page-about .about-factory-cloud .about-factory-photo-1 { --factory-x: 7%; --factory-y: 54%; }
body.page-template-page-about .about-factory-cloud .about-factory-photo-2 { --factory-x: 22%; --factory-y: 34%; }
body.page-template-page-about .about-factory-cloud .about-factory-photo-3 { --factory-x: 38%; --factory-y: 49%; }
body.page-template-page-about .about-factory-cloud .about-factory-photo-4 { --factory-x: 53%; --factory-y: 31%; }
body.page-template-page-about .about-factory-cloud .about-factory-photo-5 { --factory-x: 67%; --factory-y: 46%; }
body.page-template-page-about .about-factory-cloud .about-factory-photo-6 { --factory-x: 80%; --factory-y: 64%; }
body.page-template-page-about .about-factory-cloud .about-factory-photo-7 { --factory-x: 90%; --factory-y: 38%; }
body.page-template-page-about .about-factory-cloud .about-factory-photo-8 { --factory-x: 32%; --factory-y: 78%; }

@media (max-width: 1180px) {
    body.page-template-page-about .about-factory-cloud {
        width: min(1040px, 92vw) !important;
        transform: none !important;
    }

    body.page-template-page-about .about-factory-cloud .about-factory-photo-7 {
        --factory-x: 86%;
    }
}

/* v2.0.210: factory showcase becomes the full section, with a larger title. */
body.page-template-page-about .about-values.about-values-factory {
    padding: clamp(56px, 5vw, 84px) 0 clamp(74px, 6vw, 108px) !important;
}

body.page-template-page-about .about-values.about-values-factory .container {
    max-width: min(1640px, calc(100vw - 96px)) !important;
}

body.page-template-page-about .about-values.about-values-factory .about-values-layout {
    display: block !important;
}

body.page-template-page-about .about-factory-showcase {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body.page-template-page-about .about-factory-showcase::before {
    top: clamp(84px, 6.5vw, 110px) !important;
}

body.page-template-page-about .about-factory-showcase::after {
    top: clamp(52px, 4vw, 68px) !important;
    width: min(1360px, 88vw) !important;
}

body.page-template-page-about .about-factory-heading {
    width: min(1180px, 100%) !important;
    margin-bottom: clamp(26px, 2.4vw, 42px) !important;
}

body.page-template-page-about .about-factory-heading h3 {
    padding: 0 clamp(24px, 2.5vw, 40px) !important;
    font-size: clamp(38px, 3.2vw, 60px) !important;
    font-weight: 850 !important;
    line-height: 1.12 !important;
}

body.page-template-page-about .about-factory-heading h3::before,
body.page-template-page-about .about-factory-heading h3::after {
    width: 9px !important;
    height: 9px !important;
    box-shadow: 0 0 0 8px rgba(216, 12, 30, 0.075) !important;
}

@media (max-width: 760px) {
    body.page-template-page-about .about-values.about-values-factory {
        padding: 42px 0 70px !important;
    }

    body.page-template-page-about .about-values.about-values-factory .container {
        max-width: calc(100vw - 30px) !important;
    }

    body.page-template-page-about .about-factory-heading h3 {
        font-size: 28px !important;
        white-space: normal !important;
    }
}

/* v2.0.211: center About service office cards and tighten the handoff into history. */
body.page-template-page-about .about-offices {
    padding-bottom: clamp(6px, 1vw, 18px) !important;
}

body.page-template-page-about .about-office-layout {
    height: clamp(560px, 42vw, 720px) !important;
    min-height: clamp(560px, 42vw, 720px) !important;
}

body.page-template-page-about .about-office-list {
    left: 50% !important;
    right: auto !important;
    bottom: clamp(10px, 1vw, 18px) !important;
    width: min(1240px, calc(100vw - 360px)) !important;
    max-width: none !important;
    margin: 0 !important;
    transform: translateX(-50%) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: clamp(28px, 2.4vw, 48px) !important;
    align-items: flex-end !important;
    min-height: clamp(216px, 14vw, 252px) !important;
}

body.page-template-page-about .about-office-card,
body.page-template-page-about .about-office-card:first-child,
body.page-template-page-about .about-office-card.is-active {
    display: flex !important;
    height: clamp(116px, 7vw, 136px) !important;
    min-height: clamp(116px, 7vw, 136px) !important;
    padding: clamp(24px, 1.7vw, 30px) clamp(34px, 2.5vw, 48px) !important;
    flex-direction: column !important;
    justify-content: center !important;
    transform: none !important;
    transition: height 0.26s ease, min-height 0.26s ease, padding 0.26s ease, box-shadow 0.24s ease, border-color 0.24s ease !important;
}

body.page-template-page-about .about-office-card.is-expanded {
    height: clamp(216px, 14vw, 252px) !important;
    min-height: clamp(216px, 14vw, 252px) !important;
    padding: clamp(32px, 2.25vw, 42px) clamp(38px, 2.8vw, 52px) !important;
    justify-content: flex-start !important;
}

body.page-template-page-about .about-office-card.is-expanded .about-office-detail {
    max-height: 142px !important;
}

body.page-template-page-about .about-office-card:not(.is-expanded) .about-office-detail {
    max-height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

body.page-template-page-about .about-timeline-assets {
    padding-top: clamp(28px, 2.8vw, 46px) !important;
}

@media (max-width: 1180px) {
    body.page-template-page-about .about-office-list {
        width: min(900px, calc(100vw - 64px)) !important;
    }
}

@media (max-width: 900px) {
    body.page-template-page-about .about-offices {
        padding-bottom: 28px !important;
    }

    body.page-template-page-about .about-office-layout {
        height: auto !important;
        min-height: 0 !important;
    }

    body.page-template-page-about .about-office-list {
        left: auto !important;
        bottom: auto !important;
        width: auto !important;
        transform: none !important;
        min-height: 0 !important;
        gap: 16px !important;
    }

    body.page-template-page-about .about-office-card,
    body.page-template-page-about .about-office-card:first-child,
    body.page-template-page-about .about-office-card.is-active,
    body.page-template-page-about .about-office-card.is-expanded {
        height: auto !important;
        min-height: 128px !important;
    }
}

/* v2.0.213: shorten the factory-to-profile transition whitespace. */
body.page-template-page-about .about-values.about-values-factory {
    padding-bottom: clamp(18px, 1.8vw, 30px) !important;
}

body.page-template-page-about .about-factory-showcase {
    padding-bottom: clamp(4px, 0.7vw, 12px) !important;
}

body.page-template-page-about .about-factory-cloud {
    margin-bottom: 0 !important;
}

body.page-template-page-about .about-intro.about-intro-light {
    padding-top: clamp(28px, 2.4vw, 40px) !important;
}

@media (max-width: 760px) {
    body.page-template-page-about .about-values.about-values-factory {
        padding-bottom: 36px !important;
    }

    body.page-template-page-about .about-intro.about-intro-light {
        padding-top: 38px !important;
    }
}

/* v2.0.215: keep office card expansion, but remove excess inner blank space. */
body.page-template-page-about .about-office-list {
    min-height: clamp(188px, 11vw, 204px) !important;
}

body.page-template-page-about .about-office-card,
body.page-template-page-about .about-office-card:first-child,
body.page-template-page-about .about-office-card.is-active {
    height: clamp(112px, 6.4vw, 126px) !important;
    min-height: clamp(112px, 6.4vw, 126px) !important;
    padding-top: clamp(22px, 1.5vw, 28px) !important;
    padding-bottom: clamp(22px, 1.5vw, 28px) !important;
}

body.page-template-page-about .about-office-card.is-expanded {
    height: clamp(188px, 11vw, 204px) !important;
    min-height: clamp(188px, 11vw, 204px) !important;
    padding-top: clamp(28px, 1.9vw, 34px) !important;
    padding-bottom: clamp(24px, 1.6vw, 30px) !important;
}
