﻿/* ============================================
   HIFUTURE - Page-Specific Styles
   ============================================ */

/* ===== Homepage: Product Showcase ===== */
.product-showcase {
    position: relative;
    overflow: hidden;
}

.power-matrix-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.8fr);
    gap: 28px;
    align-items: stretch;
    margin-top: 8px;
}

.power-matrix-visual {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    border: 1px solid #cfe0f5;
    border-radius: 8px;
    background: #eaf3ff;
    box-shadow: 0 18px 48px rgba(15, 38, 72, 0.1);
}

.power-matrix-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.power-matrix-showcase .power-matrix {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    height: 100%;
}

.power-matrix-showcase .power-matrix-item {
    display: flex;
    min-height: 190px;
    flex-direction: column;
    justify-content: center;
}
.power-matrix {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.power-matrix-item {
    background: var(--bg-card);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.power-matrix-item:hover {
    background: var(--bg-card-hover);
}

.power-matrix-item .power {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-mono);
    margin-bottom: 8px;
}

.power-matrix-item .range {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.power-matrix-item .scenario {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===== Homepage: Core Technology ===== */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tech-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.tech-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.tech-card:hover::before {
    transform: scaleX(1);
}

.tech-card .tech-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-mono);
    margin-bottom: 16px;
}

.tech-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.tech-card .tech-metric {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent-glow);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 16px;
    font-family: var(--font-mono);
}

.tech-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}


/* Homepage: End-to-end solutions visual */
.solution-visual-panel {
    position: relative;
    overflow: hidden;
    margin: 8px auto 28px;
    border: 1px solid #cfe0f5;
    border-radius: 8px;
    background: #eaf3ff;
    box-shadow: 0 18px 48px rgba(15, 38, 72, 0.1);
}

.solution-visual-panel img {
    display: block;
    width: 100%;
    min-height: 420px;
    object-fit: cover;
}

.solution-highlight-grid {
    margin-top: 0;
}

body.manufacturing-page .solution-highlight-grid .card {
    background: #ffffff;
    border-color: #d7e2ef;
    box-shadow: 0 14px 34px rgba(15, 38, 72, 0.07);
}

body.manufacturing-page .solution-highlight-grid .card-icon {
    background: #eaf3ff;
}

@media (max-width: 900px) {
    .solution-visual-panel img {
        min-height: 340px;
    }
}

@media (max-width: 640px) {
    .solution-visual-panel img {
        min-height: 250px;
    }
}/* ===== Homepage: Global Map ===== */
.global-section {
    position: relative;
}

.global-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.global-stat {
    text-align: center;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.global-stat .flag {
    font-size: 32px;
    margin-bottom: 16px;
}

.global-stat .count {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.global-stat .label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* ===== Products Page ===== */
.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.products-count {
    font-size: 14px;
    color: var(--text-muted);
}

.products-count span {
    color: var(--accent);
    font-weight: 600;
}

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

/* ===== Product Detail Page ===== */
.product-detail-hero {
    padding: calc(var(--header-height) + 48px) 0 48px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.product-detail-image {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.product-detail-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

.product-detail-image img {
    max-height: 360px;
    position: relative;
    z-index: 1;
}

.product-detail-info h1 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 8px;
}

.product-detail-info .model {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 24px;
}

.product-detail-info .description {
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.product-detail-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.spec-item {
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.spec-item .label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.spec-item .value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
}

.spec-item .value .unit {
    font-size: 0.875rem;
    color: var(--accent);
    margin-left: 4px;
}

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

.product-detail-section h2 {
    font-size: 1.75rem;
    margin-bottom: 32px;
}

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.related-products {
    padding: 60px 0;
    background: var(--bg-secondary);
}

/* ===== About Page ===== */
.about-hero-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.about-overview-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
    gap: 34px;
    align-items: stretch;
    margin-top: 48px;
}

.about-overview-copy {
    padding: 34px 36px;
    background: #ffffff;
    border: 1px solid #d7e2ef;
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(15, 38, 72, 0.08);
}

.about-overview-copy p {
    margin: 0 0 18px;
    color: #4d5f74;
    font-size: 1.03rem;
    line-height: 1.82;
}

.about-overview-copy p:last-child {
    margin-bottom: 0;
}

.about-overview-copy strong {
    color: #0d2b63;
    font-weight: 800;
}

.about-overview-media {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border: 1px solid #d7e2ef;
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(15, 38, 72, 0.1);
    background: #eaf3ff;
}

.about-overview-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

@media (max-width: 900px) {
    .about-overview-split {
        grid-template-columns: 1fr;
    }

    .about-overview-media,
    .about-overview-media img {
        min-height: 320px;
    }
}

@media (max-width: 640px) {
    .about-overview-copy {
        padding: 26px 22px;
    }

    .about-overview-media,
    .about-overview-media img {
        min-height: 260px;
    }
}
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--border));
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid var(--bg-primary);
    box-shadow: 0 0 0 2px var(--accent);
}

.timeline-year {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-mono);
    margin-bottom: 8px;
}

.timeline-content h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.advantage-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.advantage-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.advantage-card .icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border-radius: 50%;
    font-size: 28px;
}

.advantage-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.advantage-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.cert-badge:hover {
    border-color: var(--accent);
}

.cert-badge .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border-radius: var(--radius-sm);
    font-size: 20px;
    flex-shrink: 0;
}

.cert-badge .name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.cert-badge .desc {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== About Page: Certification Details ===== */
.cert-detail-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cert-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent);
    opacity: 0;
    transition: var(--transition);
}

.cert-detail-card:hover {
    border-color: var(--accent);
    background: var(--bg-card-hover);
}

.cert-detail-card:hover::before {
    opacity: 1;
}

.cert-detail-card .cert-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(0, 102, 255, 0.1);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.cert-detail-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.cert-detail-card .cert-issuer {
    font-size: 12px;
    color: var(--accent-light);
    font-family: var(--font-mono);
    margin-bottom: 10px;
}

.cert-detail-card .cert-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cert-detail-card .cert-year {
    display: inline-block;
    margin-top: 10px;
    font-size: 11px;
    color: var(--text-muted);
    padding: 2px 10px;
    background: var(--bg-input);
    border-radius: 100px;
    font-family: var(--font-mono);
}

/* IP Portfolio Grid */
.ip-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.ip-portfolio-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 16px;
    text-align: center;
    transition: var(--transition);
}

.ip-portfolio-item:hover {
    border-color: var(--accent);
    background: var(--bg-card-hover);
}

.ip-portfolio-item .ip-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-mono);
    line-height: 1;
    margin-bottom: 8px;
}

.ip-portfolio-item .ip-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* R&D Infrastructure */
.rd-infra-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.rd-infra-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.rd-infra-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.rd-infra-card .rd-icon {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.rd-infra-card .rd-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-mono);
    margin-bottom: 4px;
}

.rd-infra-card .rd-label {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Standards Table */
.standards-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin-top: 16px;
}

.standards-table thead th {
    background: var(--bg-card);
    color: var(--text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.standards-table tbody td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
}

.standards-table tbody td:first-child {
    color: var(--accent-light);
    font-family: var(--font-mono);
    font-weight: 600;
    white-space: nowrap;
}

.standards-table tbody tr:hover {
    background: var(--bg-card);
}

.standards-table .std-category {
    display: inline-block;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 100px;
    font-weight: 600;
    text-transform: uppercase;
}

.std-cat-intl { background: rgba(0, 102, 255, 0.15); color: var(--accent-light); }
.std-cat-cn { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.std-cat-industry { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }

/* Honors Grid */
.honors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.honor-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    transition: var(--transition);
}

.honor-item:hover {
    border-color: var(--accent);
}

.honor-item .honor-check {
    color: var(--green, #10b981);
    font-size: 1rem;
    flex-shrink: 0;
}

.honor-item .honor-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.honor-item .honor-text strong {
    color: var(--text-primary);
    display: block;
    font-size: 13px;
    margin-bottom: 2px;
}

/* ===== Solutions Page ===== */
.solution-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
    position: relative;
}

.solution-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.solution-card .step-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 3rem;
    font-weight: 800;
    color: var(--border-light);
    font-family: var(--font-mono);
    line-height: 1;
}

.solution-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    padding-right: 60px;
}

.solution-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.solution-card .metrics {
    display: flex;
    gap: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.solution-card .metric .value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

.solution-card .metric .label {
    font-size: 12px;
    color: var(--text-muted);
}

/* Cooperation Models */
.coop-model-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.coop-model-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent), var(--cyan));
}

.coop-model-card:hover {
    border-color: var(--border-light);
    transform: translateX(4px);
}

.coop-model-card .model-number {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-mono);
    margin-bottom: 12px;
}

.coop-model-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.coop-model-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.partner-tag {
    padding: 6px 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ===== Cases Page ===== */
.case-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.case-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.case-card-body {
    padding: 28px;
}

.case-card .case-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent-glow);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 12px;
}

.case-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.case-card .location {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.case-card .case-stats {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.case-card .case-stat .value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent);
}

.case-card .case-stat .label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


body.manufacturing-page .global-strategy-map-panel {
    overflow: hidden;
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #d7e2ef;
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(15, 38, 72, 0.08);
}

body.manufacturing-page .global-strategy-map-panel img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
}

@media (max-width: 640px) {
    body.manufacturing-page .global-strategy-map-panel {
        padding: 10px;
    }
}
/* Flag showcase for global reach */
.global-reach {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.country-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.country-card:hover {
    border-color: var(--accent);
    background: var(--bg-card-hover);
}

.country-card .flag {
    font-size: 24px;
}

.country-card .name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.country-card .region {
    font-size: 11px;
    color: var(--text-muted);
}

/* ===== Contact Page ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    font-size: 18px;
}

.contact-info-item .label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.contact-info-item .value {
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 500;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.inquiry-kicker {
    margin-bottom: 18px;
    color: #006f70;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.inquiry-title {
    margin: 0 0 30px;
    color: #071523;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: 0;
    text-transform: uppercase;
}

.inquiry-submit {
    width: auto;
    min-width: 166px;
    margin-top: 4px;
    background: #07111d;
    border-color: #07111d;
}

.inquiry-submit:hover {
    background: #122033;
    border-color: #122033;
}


.form-status {
    display: none;
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.form-status.visible {
    display: block;
}

.form-status.error {
    background: #fff7f7;
    border: 1px solid rgba(217, 45, 32, 0.28);
    color: #b42318;
}

.form-status.success {
    background: rgba(31, 174, 91, 0.1);
    border: 1px solid rgba(31, 174, 91, 0.28);
    color: #157347;
}

.inquiry-submit:disabled,
body.manufacturing-page .inquiry-submit:disabled {
    cursor: not-allowed;
    opacity: 0.72;
    transform: none;
}
.form-note {
    margin: 18px 0 0;
    color: #5e6f83;
    font-size: 15px;
    line-height: 1.7;
}
.required-mark {
    color: #d92d20;
    font-weight: 700;
}

.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid,
body.manufacturing-page .form-group input.is-invalid,
body.manufacturing-page .form-group select.is-invalid,
body.manufacturing-page .form-group textarea.is-invalid {
    background: #fff7f7;
    border-color: #d92d20;
    box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.14);
}

.field-error {
    display: none;
    margin-top: 7px;
    color: #b42318;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.field-error.visible {
    display: block;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--bg-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-success {
    padding: 16px;
    background: rgba(0, 217, 126, 0.1);
    border: 1px solid rgba(0, 217, 126, 0.3);
    border-radius: var(--radius-sm);
    color: var(--green);
    font-size: 14px;
    margin-bottom: 24px;
    display: none;
}

.form-success.visible {
    display: block;
}

/* ===== Responsive for page-specific ===== */
@media (max-width: 992px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .power-matrix {
        grid-template-columns: repeat(2, 1fr);
    }

    .global-stats {
        grid-template-columns: 1fr;
    }

    .product-detail-layout {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

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

    .ip-portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .rd-infra-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .power-matrix {
        grid-template-columns: 1fr;
    }

    .product-detail-specs {
        grid-template-columns: 1fr;
    }

    .product-features-grid {
        grid-template-columns: 1fr;
    }

    .cert-grid {
        grid-template-columns: 1fr;
    }

    .ip-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rd-infra-grid {
        grid-template-columns: 1fr;
    }

    .honors-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .timeline {
        padding-left: 28px;
    }

    .timeline::before {
        left: 8px;
    }

    .timeline-item::before {
        left: -26px;
    }
}

/* ===== About page manufacturing trust style sample ===== */
body.about-manufacturing {
    background: #f4f7fb;
    color: #122033;
}

body.about-manufacturing .site-header.scrolled {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid #d9e2ef;
    box-shadow: 0 8px 28px rgba(16, 42, 77, 0.08);
}

body.about-manufacturing .site-header.scrolled .nav-link,
body.about-manufacturing .site-header.scrolled .logo-text {
    color: #122033;
}

body.about-manufacturing .site-header.scrolled .nav-toggle span {
    background: #122033;
}

body.about-manufacturing .page-hero {
    background: linear-gradient(135deg, #0d2b63 0%, #1662c4 58%, #1aa7d8 100%);
    padding: calc(var(--header-height) + 70px) 0 70px;
    text-align: center;
}

body.about-manufacturing .page-hero::before {
    background:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 56px 56px;
}

body.about-manufacturing .page-hero .breadcrumb {
    justify-content: center;
    color: rgba(255, 255, 255, 0.72);
}

body.about-manufacturing .page-hero .breadcrumb a,
body.about-manufacturing .page-hero .breadcrumb .current,
body.about-manufacturing .page-hero h1,
body.about-manufacturing .page-hero p {
    color: #fff;
}

body.about-manufacturing .page-hero h1 {
    font-size: clamp(2.25rem, 4.8vw, 4rem);
    letter-spacing: 0;
}

body.about-manufacturing .page-hero p {
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.82);
}

body.about-manufacturing .section {
    background: #fff;
}

body.about-manufacturing .section-bg-dark,
body.about-manufacturing .culture-section,
body.about-manufacturing .about-showcase-section {
    background: #f4f7fb;
}

body.about-manufacturing .section-header .label {
    color: #1766c2;
}

body.about-manufacturing .section-header .label::before {
    background: #1766c2;
}

body.about-manufacturing .section-header h2,
body.about-manufacturing .product-detail-section h2,
body.about-manufacturing .timeline-content h4,
body.about-manufacturing .advantage-card h3,
body.about-manufacturing .cert-detail-card h4 {
    color: #122033;
}

body.about-manufacturing .section-header p,
body.about-manufacturing .timeline-content p,
body.about-manufacturing .advantage-card p,
body.about-manufacturing .cert-desc,
body.about-manufacturing .honor-text,
body.about-manufacturing .country-card .region {
    color: #5d6b7d;
}

body.about-manufacturing .stats-bar {
    border: 0;
    border-radius: 14px;
    padding: 42px 34px;
    background: linear-gradient(135deg, #0f3a7d, #1766c2);
    box-shadow: 0 18px 45px rgba(17, 86, 173, 0.22);
}

body.about-manufacturing .stat-item .value,
body.about-manufacturing .stat-item .value .unit {
    color: #ffc940;
}

body.about-manufacturing .stat-item .label {
    color: rgba(255, 255, 255, 0.78);
}

body.about-manufacturing .about-hero-image,
body.about-manufacturing .advantage-card,
body.about-manufacturing .cert-detail-card,
body.about-manufacturing .rd-infra-card,
body.about-manufacturing .ip-portfolio-item,
body.about-manufacturing .honor-item,
body.about-manufacturing .country-card,
body.about-manufacturing .global-stat {
    background: #fff;
    border: 1px solid #dfe7f2;
    box-shadow: 0 12px 34px rgba(15, 42, 77, 0.08);
}

body.about-manufacturing .about-hero-image p,
body.about-manufacturing .about-hero-image strong {
    color: #122033 !important;
}

body.about-manufacturing .about-hero-image strong[style] {
    color: #1766c2 !important;
}

body.about-manufacturing .advantage-card,
body.about-manufacturing .cert-detail-card,
body.about-manufacturing .rd-infra-card,
body.about-manufacturing .ip-portfolio-item,
body.about-manufacturing .global-stat {
    border-radius: 14px;
}

body.about-manufacturing .advantage-card {
    border-top: 4px solid #1766c2;
}

body.about-manufacturing .advantage-card:hover,
body.about-manufacturing .cert-detail-card:hover,
body.about-manufacturing .country-card:hover,
body.about-manufacturing .global-stat:hover {
    border-color: #1766c2;
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(17, 86, 173, 0.16);
}

body.about-manufacturing .advantage-card .icon,
body.about-manufacturing .cert-icon,
body.about-manufacturing .rd-icon {
    background: #eaf3ff;
    color: #1766c2;
}

body.about-manufacturing .timeline::before {
    background: linear-gradient(180deg, #1766c2, #b7c9df);
}

body.about-manufacturing .timeline-item::before {
    background: #1766c2;
    border-color: #fff;
    box-shadow: 0 0 0 3px rgba(23, 102, 194, 0.18);
}

body.about-manufacturing .timeline-content {
    background: #fff;
    border: 1px solid #dfe7f2;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(15, 42, 77, 0.08);
    padding: 22px 24px;
}

body.about-manufacturing .timeline-year,
body.about-manufacturing .cert-issuer,
body.about-manufacturing .cert-year,
body.about-manufacturing .ip-value,
body.about-manufacturing .rd-value,
body.about-manufacturing .global-stat .count,
body.about-manufacturing .country-card .name {
    color: #1766c2;
}

body.about-manufacturing .standards-table {
    background: #fff;
    border: 1px solid #dfe7f2;
    box-shadow: 0 12px 34px rgba(15, 42, 77, 0.08);
}

body.about-manufacturing .standards-table th {
    background: #eaf3ff;
    color: #122033;
}

body.about-manufacturing .standards-table td {
    color: #334155;
    border-color: #e4ebf5;
}

body.about-manufacturing .standards-table tbody td:first-child {
    color: #0f3a7d;
}

body.about-manufacturing .standards-table tbody tr:hover {
    background: #f1f7ff;
}

body.about-manufacturing .standards-table tbody tr:hover td {
    color: #122033;
}

body.about-manufacturing .standards-table tbody tr:hover td:first-child {
    color: #0f3a7d;
}

body.about-manufacturing .partner-tag,
body.about-manufacturing .spec-tag {
    background: #eaf3ff;
    border-color: #cfe0f5;
    color: #1766c2;
}

body.about-manufacturing .about-showcase-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

body.about-manufacturing .about-showcase-card {
    background: #fff;
    border: 1px solid #dfe7f2;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(15, 42, 77, 0.08);
    transition: var(--transition);
}

body.about-manufacturing .about-showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(17, 86, 173, 0.16);
}

body.about-manufacturing .about-showcase-card img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    padding: 26px;
    background: linear-gradient(135deg, #f7fbff, #eaf3ff);
}

body.about-manufacturing .about-showcase-caption {
    padding: 18px 20px;
    color: #122033;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
}

body.about-manufacturing .cta-section {
    background: linear-gradient(135deg, #0d2b63, #1766c2);
}

body.about-manufacturing .cta-section::before {
    background: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 52px 52px;
}

@media (max-width: 992px) {
    body.about-manufacturing .about-showcase-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    body.about-manufacturing .stats-bar,
    body.about-manufacturing .about-showcase-track {
        grid-template-columns: 1fr;
    }

    body.about-manufacturing .stats-bar {
        padding: 34px 24px;
    }

    body.about-manufacturing .about-showcase-card img {
        height: 210px;
    }
}

/* ===== Global manufacturing-page light B2B style ===== */
body.manufacturing-page {
    background: #f4f7fb;
    color: #122033;
}

body.manufacturing-page .site-header.scrolled,
body.manufacturing-page .site-header.header-light {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid #d9e2ef;
    box-shadow: 0 8px 28px rgba(16, 42, 77, 0.08);
}

body.manufacturing-page .site-header.scrolled .nav-link,
body.manufacturing-page .site-header.scrolled .logo-text,
body.manufacturing-page .site-header.header-light .nav-link,
body.manufacturing-page .site-header.header-light .logo-text {
    color: #122033;
}

body.manufacturing-page .site-header.scrolled .nav-toggle span,
body.manufacturing-page .site-header.header-light .nav-toggle span {
    background: #122033;
}

body.manufacturing-page .hero,
body.manufacturing-page .page-hero,
body.manufacturing-page .product-detail-hero {
    background: linear-gradient(135deg, #0d2b63 0%, #1662c4 58%, #1aa7d8 100%);
}

body.manufacturing-page .hero::before,
body.manufacturing-page .page-hero::before {
    background:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 56px 56px;
}

body.manufacturing-page .hero-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
}

body.manufacturing-page .hero h1,
body.manufacturing-page .hero p,
body.manufacturing-page .page-hero h1,
body.manufacturing-page .page-hero p,
body.manufacturing-page .page-hero .breadcrumb,
body.manufacturing-page .page-hero .breadcrumb a,
body.manufacturing-page .page-hero .breadcrumb .current,
body.manufacturing-page .product-detail-info h1,
body.manufacturing-page .product-detail-info .description,
body.manufacturing-page .product-detail-info .breadcrumb,
body.manufacturing-page .product-detail-info .breadcrumb a,
body.manufacturing-page .product-detail-info .breadcrumb .current {
    color: #fff;
}

body.manufacturing-page .hero p,
body.manufacturing-page .page-hero p,
body.manufacturing-page .product-detail-info .description {
    color: rgba(255, 255, 255, 0.82);
}

body.manufacturing-page .hero-badge {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}

body.manufacturing-page .hero-stats {
    border-top-color: rgba(255, 255, 255, 0.24);
}

body.manufacturing-page .hero-stat .value,
body.manufacturing-page .hero-stat .label {
    color: #fff;
}

body.manufacturing-page .hero-stat .value .unit,
body.manufacturing-page .gradient-text,
body.manufacturing-page .bg-gradient-text {
    color: #ffc940;
    background: none;
    -webkit-text-fill-color: currentColor;
}

body.manufacturing-page .section,
body.manufacturing-page .product-detail-section {
    background: #fff;
}

body.manufacturing-page .section-bg-dark,
body.manufacturing-page .section-bg-card,
body.manufacturing-page .section-bg-gradient,
body.manufacturing-page .product-detail-section.section-bg-dark,
body.manufacturing-page .product-showcase,
body.manufacturing-page .showcase-section,
body.manufacturing-page .culture-section {
    background: #f4f7fb;
}

body.manufacturing-page .section-header .label {
    color: #1766c2;
}

body.manufacturing-page .section-header .label::before {
    background: #1766c2;
}

body.manufacturing-page h1,
body.manufacturing-page h2,
body.manufacturing-page h3,
body.manufacturing-page h4,
body.manufacturing-page .section-header h2,
body.manufacturing-page .product-detail-section h2,
body.manufacturing-page .product-card-title,
body.manufacturing-page .card h3,
body.manufacturing-page .tech-card h3,
body.manufacturing-page .solution-card h3,
body.manufacturing-page .coop-model-card h3,
body.manufacturing-page .case-card h3,
body.manufacturing-page .contact-info-card h3,
body.manufacturing-page .contact-form h3,
body.manufacturing-page .feature-content h4 {
    color: #122033;
    letter-spacing: 0;
}

body.manufacturing-page p,
body.manufacturing-page .section-header p,
body.manufacturing-page .card p,
body.manufacturing-page .tech-card p,
body.manufacturing-page .solution-card p,
body.manufacturing-page .coop-model-card p,
body.manufacturing-page .case-card .location,
body.manufacturing-page .products-count,
body.manufacturing-page .feature-content p,
body.manufacturing-page .contact-info-item .label,
body.manufacturing-page .contact-info-item .value,
body.manufacturing-page .form-group label,
body.manufacturing-page .text-secondary,
body.manufacturing-page .text-muted {
    color: #5d6b7d;
}

body.manufacturing-page .card,
body.manufacturing-page .tech-card,
body.manufacturing-page .product-card,
body.manufacturing-page .solution-card,
body.manufacturing-page .coop-model-card,
body.manufacturing-page .case-card,
body.manufacturing-page .contact-info-card,
body.manufacturing-page .contact-form,
body.manufacturing-page .global-stat,
body.manufacturing-page .country-card,
body.manufacturing-page .spec-item,
body.manufacturing-page .feature-item,
body.manufacturing-page .power-matrix-item {
    background: #fff;
    border: 1px solid #dfe7f2;
    box-shadow: 0 12px 34px rgba(15, 42, 77, 0.08);
}

body.manufacturing-page .card:hover,
body.manufacturing-page .tech-card:hover,
body.manufacturing-page .product-card:hover,
body.manufacturing-page .solution-card:hover,
body.manufacturing-page .coop-model-card:hover,
body.manufacturing-page .case-card:hover,
body.manufacturing-page .country-card:hover,
body.manufacturing-page .global-stat:hover {
    background: #fff;
    border-color: #1766c2;
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(17, 86, 173, 0.16);
}

body.manufacturing-page .card-icon,
body.manufacturing-page .feature-icon,
body.manufacturing-page .contact-info-item .icon,
body.manufacturing-page .advantage-card .icon {
    background: #eaf3ff;
    color: #1766c2;
}

body.manufacturing-page .product-card-image,
body.manufacturing-page .product-detail-image {
    background: linear-gradient(135deg, #f7fbff, #eaf3ff);
    border-color: #dfe7f2;
}

body.manufacturing-page .product-card-image::before,
body.manufacturing-page .product-detail-image::before {
    background-image:
        linear-gradient(rgba(23, 102, 194, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 102, 194, 0.055) 1px, transparent 1px);
}

body.manufacturing-page .product-card-series,
body.manufacturing-page .product-card-link,
body.manufacturing-page .tech-card .tech-number,
body.manufacturing-page .timeline-year,
body.manufacturing-page .solution-card .metric .value,
body.manufacturing-page .case-card .case-stat .value,
body.manufacturing-page .global-stat .count,
body.manufacturing-page .power-matrix-item .power,
body.manufacturing-page .product-detail-info .model,
body.manufacturing-page .spec-item .value {
    color: #1766c2;
}

body.manufacturing-page .product-card-model,
body.manufacturing-page .spec-item .label,
body.manufacturing-page .power-matrix-item .range,
body.manufacturing-page .power-matrix-item .scenario,
body.manufacturing-page .global-stat .label,
body.manufacturing-page .country-card .region {
    color: #5d6b7d;
}

body.manufacturing-page .spec-tag,
body.manufacturing-page .partner-tag,
body.manufacturing-page .filter-tab,
body.manufacturing-page .tag {
    background: #eaf3ff;
    border-color: #cfe0f5;
    color: #1766c2;
}

body.manufacturing-page .filter-tab.active,
body.manufacturing-page .btn-primary {
    background: #1766c2;
    border-color: #1766c2;
    color: #fff;
}

body.manufacturing-page .btn-outline {
    background: transparent;
    color: #1766c2;
    border-color: #9fc2ea;
}

body.manufacturing-page .hero .btn-outline,
body.manufacturing-page .page-hero .btn-outline,
body.manufacturing-page .cta-section .btn-outline,
body.manufacturing-page .product-detail-hero .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
}


body.manufacturing-page .product-detail-hero .product-quote-btn {
    background: #1fae5b;
    border: 1px solid #1fae5b;
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(16, 125, 68, 0.28);
}

body.manufacturing-page .product-detail-hero .product-quote-btn:hover {
    background: #168a49;
    border-color: #168a49;
    color: #ffffff;
    box-shadow: 0 18px 42px rgba(16, 125, 68, 0.36);
}
body.manufacturing-page .power-matrix {
    background: #dfe7f2;
    border-color: #dfe7f2;
}

body.manufacturing-page .stats-bar {
    border: 0;
    border-radius: 14px;
    padding: 42px 34px;
    background: linear-gradient(135deg, #0f3a7d, #1766c2);
    box-shadow: 0 18px 45px rgba(17, 86, 173, 0.22);
}

body.manufacturing-page .stat-item .value,
body.manufacturing-page .stat-item .value .unit {
    color: #ffc940;
}

body.manufacturing-page .stat-item .label {
    color: rgba(255, 255, 255, 0.78);
}

body.manufacturing-page .spec-table {
    background: #fff;
    border: 1px solid #dfe7f2;
    box-shadow: 0 12px 34px rgba(15, 42, 77, 0.08);
}

body.manufacturing-page .spec-table th {
    background: #eaf3ff;
    color: #122033;
    border-color: #dfe7f2;
}

body.manufacturing-page .spec-table td {
    color: #334155;
    border-color: #e4ebf5;
}

body.manufacturing-page .spec-table .mono {
    color: #0f3a7d;
}

body.manufacturing-page .spec-table tr:hover td {
    background: #f1f7ff;
    color: #122033;
}

body.manufacturing-page .form-group input,
body.manufacturing-page .form-group select,
body.manufacturing-page .form-group textarea {
    background: #f7fbff;
    border-color: #cfe0f5;
    color: #122033;
}

body.manufacturing-page .form-group input:focus,
body.manufacturing-page .form-group select:focus,
body.manufacturing-page .form-group textarea:focus {
    background: #fff;
    border-color: #1766c2;
    box-shadow: 0 0 0 3px rgba(23, 102, 194, 0.12);
}

body.manufacturing-page .contact-info-item {
    border-bottom-color: #dfe7f2;
}

body.manufacturing-page .cta-section {
    background: linear-gradient(135deg, #0d2b63, #1766c2);
}

body.manufacturing-page .cta-section::before {
    background:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 52px 52px;
}

body.manufacturing-page .cta-content h2,
body.manufacturing-page .cta-content p {
    color: #fff;
}

body.manufacturing-page .site-footer {
    background: #0d203f;
    border-top-color: rgba(255, 255, 255, 0.12);
}

body.manufacturing-page .site-footer h4,
body.manufacturing-page .site-footer .logo-text {
    color: #fff;
}

body.manufacturing-page .site-footer p,
body.manufacturing-page .site-footer li,
body.manufacturing-page .site-footer a,
body.manufacturing-page .footer-bottom {
    color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 992px) {
    body.manufacturing-page .nav-menu {
        background: #fff;
        border-top: 1px solid #dfe7f2;
    }

    body.manufacturing-page .nav-menu .nav-link {
        color: #122033;
        border-bottom-color: #dfe7f2;
    }
}

/* Manufacturing overrides for legacy inline-styled case blocks */
body.manufacturing-page .flagship-case,
body.manufacturing-page .flagship-stat-item {
    background: #fff !important;
    border: 1px solid #dfe7f2 !important;
    box-shadow: 0 12px 34px rgba(15, 42, 77, 0.08);
}

body.manufacturing-page .flagship-case-title,
body.manufacturing-page .flagship-facilities h4,
body.manufacturing-page [style*="color: var(--text-primary)"] {
    color: #122033 !important;
}

body.manufacturing-page .flagship-case-location,
body.manufacturing-page .flagship-case-desc,
body.manufacturing-page .flagship-stat-item .label,
body.manufacturing-page [style*="color: var(--text-secondary)"],
body.manufacturing-page [style*="color:var(--text-secondary)"],
body.manufacturing-page [style*="color: var(--text-muted)"],
body.manufacturing-page [style*="color:var(--text-muted)"] {
    color: #5d6b7d !important;
}

body.manufacturing-page .flagship-stat-item .value,
body.manufacturing-page [style*="color: var(--accent)"] {
    color: #1766c2 !important;
}

body.manufacturing-page [style*="background: var(--bg-secondary)"] {
    background: #f7fbff !important;
}

/* ===== Conversion-focused manufacturing additions ===== */
body.manufacturing-page .hero-banner,
body.manufacturing-page .page-hero-banner,
body.manufacturing-page .product-detail-hero-banner {
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(90deg, rgba(8, 31, 67, 0.92) 0%, rgba(13, 43, 99, 0.78) 42%, rgba(13, 43, 99, 0.24) 100%),
        var(--banner-image) !important;
    background-size: cover;
    background-position: center;
}

body.manufacturing-page .hero-banner::before,
body.manufacturing-page .page-hero-banner::before,
body.manufacturing-page .product-detail-hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
}

body.manufacturing-page .hero-banner .container,
body.manufacturing-page .page-hero-banner .container,
body.manufacturing-page .product-detail-hero-banner .container {
    position: relative;
    z-index: 1;
}


/* Inner page banner height tuning: keep homepage unchanged */
body.manufacturing-page .page-hero-banner {
    min-height: 500px;
    display: flex;
    align-items: center;
}

body.manufacturing-page .product-detail-hero-banner {
    min-height: 800px;
    display: flex;
    align-items: center;
}

@media (max-width: 992px) {
    body.manufacturing-page .page-hero-banner {
        min-height: 430px;
    }

    body.manufacturing-page .product-detail-hero-banner {
        min-height: 720px;
    }
}

@media (max-width: 640px) {
    body.manufacturing-page .page-hero-banner {
        min-height: 360px;
    }

    body.manufacturing-page .product-detail-hero-banner {
        min-height: auto;
        padding-top: calc(var(--header-height) + 42px);
        padding-bottom: 42px;
    }
}
body.manufacturing-page .selection-matrix {
    overflow: hidden;
    border: 1px solid #dfe7f2;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(15, 42, 77, 0.08);
}

body.manufacturing-page .selection-row {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1.2fr;
    gap: 20px;
    align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid #e4ebf5;
    color: #334155;
    text-decoration: none;
    transition: var(--transition);
}

body.manufacturing-page .selection-row:last-child {
    border-bottom: 0;
}

body.manufacturing-page .selection-row:hover {
    background: #f1f7ff;
}

body.manufacturing-page .selection-head {
    background: #eaf3ff;
    color: #122033;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

body.manufacturing-page .selection-row strong {
    display: block;
    color: #122033;
    margin-bottom: 4px;
}

body.manufacturing-page .selection-row span {
    display: block;
    color: #5d6b7d;
    font-size: 13px;
}

body.manufacturing-page .product-application-grid,

body.manufacturing-page .cooperation-model-visual {
    overflow: hidden;
    margin: 0 0 30px;
    border: 1px solid #d7e2ef;
    border-radius: 8px;
    background: #eaf3ff;
    box-shadow: 0 18px 48px rgba(15, 38, 72, 0.1);
}

body.manufacturing-page .cooperation-model-visual img {
    display: block;
    width: 100%;
    min-height: 420px;
    object-fit: cover;
}

@media (max-width: 900px) {
    body.manufacturing-page .cooperation-model-visual img {
        min-height: 330px;
    }
}

@media (max-width: 640px) {
    body.manufacturing-page .cooperation-model-visual img {
        min-height: 240px;
    }
}
body.manufacturing-page .cooperation-model-grid,
body.manufacturing-page .case-study-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

body.manufacturing-page .application-card,
body.manufacturing-page .proof-card,
body.manufacturing-page .inquiry-checklist {
    background: #fff;
    border: 1px solid #dfe7f2;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 12px 34px rgba(15, 42, 77, 0.08);
}

body.manufacturing-page .application-card h3,
body.manufacturing-page .proof-card h3,
body.manufacturing-page .inquiry-checklist h3 {
    color: #122033;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

body.manufacturing-page .application-card p,
body.manufacturing-page .proof-card p {
    color: #5d6b7d;
    font-size: 0.95rem;
}

body.manufacturing-page .product-export-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 32px;
    align-items: start;
}

body.manufacturing-page .product-export-layout > div:first-child {
    background: linear-gradient(135deg, #0d2b63, #1766c2);
    border-radius: 14px;
    padding: 34px;
    box-shadow: 0 18px 45px rgba(17, 86, 173, 0.20);
}

body.manufacturing-page .product-export-layout > div:first-child .label,
body.manufacturing-page .product-export-layout > div:first-child h2,
body.manufacturing-page .product-export-layout > div:first-child p {
    color: #fff;
}

body.manufacturing-page .product-export-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

body.manufacturing-page .product-export-badges span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

body.manufacturing-page .inquiry-checklist ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

body.manufacturing-page .inquiry-checklist li {
    position: relative;
    padding: 12px 0 12px 28px;
    border-bottom: 1px solid #e4ebf5;
    color: #334155;
}

body.manufacturing-page .inquiry-checklist li:last-child {
    border-bottom: 0;
}

body.manufacturing-page .inquiry-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1766c2;
    box-shadow: 0 0 0 4px #eaf3ff;
}

body.manufacturing-page .cooperation-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.manufacturing-page .cooperation-detail-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

body.manufacturing-page .cooperation-detail-list div {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #f7fbff;
    border: 1px solid #dfe7f2;
}

body.manufacturing-page .cooperation-detail-list strong {
    color: #1766c2;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

body.manufacturing-page .cooperation-detail-list span {
    color: #334155;
    font-size: 13px;
}


body.manufacturing-page .case-study-visual {
    overflow: hidden;
    margin: 0 0 28px;
    border: 1px solid #d7e2ef;
    border-radius: 8px;
    background: #eaf3ff;
    box-shadow: 0 18px 48px rgba(15, 38, 72, 0.1);
}

body.manufacturing-page .case-study-visual img {
    display: block;
    width: 100%;
    min-height: 430px;
    object-fit: cover;
}

@media (max-width: 900px) {
    body.manufacturing-page .case-study-visual img {
        min-height: 340px;
    }
}

@media (max-width: 640px) {
    body.manufacturing-page .case-study-visual img {
        min-height: 250px;
    }
}
body.manufacturing-page .case-study-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: stretch;
    margin-bottom: 28px;
}

body.manufacturing-page .case-study-main,
body.manufacturing-page .case-study-stats {
    background: #fff;
    border: 1px solid #dfe7f2;
    border-radius: 14px;
    padding: 32px;
    box-shadow: 0 12px 34px rgba(15, 42, 77, 0.08);
}

body.manufacturing-page .case-study-main h3 {
    font-size: 1.75rem;
    margin: 14px 0 12px;
}

body.manufacturing-page .case-study-phases {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

body.manufacturing-page .case-study-phases div {
    padding: 16px;
    background: #f7fbff;
    border: 1px solid #dfe7f2;
    border-left: 4px solid #1766c2;
    border-radius: 10px;
}

body.manufacturing-page .case-study-phases strong,
body.manufacturing-page .case-study-phases span {
    display: block;
}

body.manufacturing-page .case-study-phases strong {
    color: #122033;
    margin-bottom: 5px;
}

body.manufacturing-page .case-study-phases span {
    color: #5d6b7d;
    font-size: 0.94rem;
}

body.manufacturing-page .case-study-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

body.manufacturing-page .case-study-stats div {
    padding: 18px;
    border-radius: 12px;
    background: #eaf3ff;
}

body.manufacturing-page .case-study-stats strong {
    display: block;
    color: #1766c2;
    font-family: var(--font-mono);
    font-size: 1.75rem;
    line-height: 1;
    margin-bottom: 8px;
}

body.manufacturing-page .case-study-stats span {
    color: #334155;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

@media (max-width: 992px) {
    body.manufacturing-page .selection-row,
    body.manufacturing-page .product-export-layout,
    body.manufacturing-page .case-study-layout {
        grid-template-columns: 1fr;
    }

    body.manufacturing-page .selection-head {
        display: none;
    }

    body.manufacturing-page .product-application-grid,
    body.manufacturing-page .cooperation-model-grid,
    body.manufacturing-page .case-study-proof-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    body.manufacturing-page .case-study-stats {
        grid-template-columns: 1fr;
    }

    body.manufacturing-page .cooperation-detail-list div {
        grid-template-columns: 1fr;
    }
}




/* Product detail key features polish */
body.manufacturing-page .product-detail-section .product-features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

body.manufacturing-page .product-detail-section .feature-item {
    position: relative;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    align-items: start;
    min-height: 164px;
    padding: 28px 30px;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #d9e5f3;
    box-shadow: 0 14px 34px rgba(15, 42, 77, 0.08);
    overflow: hidden;
}

body.manufacturing-page .product-detail-section .feature-item::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, #1766c2, #1aa7d8);
    opacity: 0;
    transition: var(--transition);
}

body.manufacturing-page .product-detail-section .feature-item:hover {
    border-color: #9fc2ea;
    box-shadow: 0 18px 42px rgba(17, 86, 173, 0.15);
    transform: translateY(-3px);
}

body.manufacturing-page .product-detail-section .feature-item:hover::before {
    opacity: 1;
}

body.manufacturing-page .product-detail-section .feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #eaf3ff;
    border: 1px solid #cfe0f5;
    color: #1766c2;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}

body.manufacturing-page .product-detail-section .feature-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.4;
}

body.manufacturing-page .product-detail-section .feature-content h4 {
    margin: 0 0 9px;
    color: #102a4c;
    font-size: 1.02rem;
    line-height: 1.28;
    font-weight: 750;
    letter-spacing: 0;
}

body.manufacturing-page .product-detail-section .feature-content p {
    margin: 0;
    color: #53657c;
    font-size: 0.95rem;
    line-height: 1.72;
    font-weight: 400;
    max-width: 58ch;
}

@media (max-width: 1100px) {
    body.manufacturing-page .product-detail-section .product-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    body.manufacturing-page .product-detail-section .product-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    body.manufacturing-page .product-detail-section .feature-item {
        grid-template-columns: 40px 1fr;
        min-height: auto;
        padding: 22px;
    }

    body.manufacturing-page .product-detail-section .feature-icon {
        width: 40px;
        height: 40px;
    }
}

/* Product detail image gallery */
body.manufacturing-page .product-detail-image {
    flex-direction: column;
    gap: 18px;
}

.product-gallery-main {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: zoom-in;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.product-gallery-main img {
    max-height: 360px;
    max-width: 100%;
    object-fit: contain;
}

.product-gallery-thumbs {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 520px;
}

.product-gallery-thumb {
    aspect-ratio: 1 / 1;
    border: 1px solid #cfe0f5;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.72);
    padding: 8px;
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
}

.product-gallery-thumb:hover,
.product-gallery-thumb.active {
    border-color: #1766c2;
    background: #fff;
    box-shadow: 0 10px 24px rgba(17, 86, 173, 0.16);
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-image-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 42px;
    background: rgba(7, 18, 38, 0.82);
    backdrop-filter: blur(8px);
    cursor: zoom-out;
}

.product-image-modal.open {
    display: flex;
}

.product-image-modal img {
    max-width: min(1100px, 92vw);
    max-height: 88vh;
    object-fit: contain;
    border-radius: 14px;
    background: #f7fbff;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.product-image-modal-close {
    position: absolute;
    top: 22px;
    right: 26px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 640px) {
    .product-gallery-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
    }

    .product-image-modal {
        padding: 18px;
    }
}
/* Contact inquiry form polish */
body.manufacturing-page .contact-form {
    background: #f2f6fb;
    border-color: #d7e2ef;
    box-shadow: 0 18px 48px rgba(15, 38, 72, 0.08);
}

body.manufacturing-page .contact-form .form-row {
    gap: 20px;
}

body.manufacturing-page .contact-form .form-group {
    margin-bottom: 22px;
}

body.manufacturing-page .contact-form .form-group label {
    margin-bottom: 10px;
    color: #18324f;
    font-size: 15px;
    font-weight: 700;
}

body.manufacturing-page .contact-form .form-group input,
body.manufacturing-page .contact-form .form-group select,
body.manufacturing-page .contact-form .form-group textarea {
    min-height: 52px;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid #cfddec;
    border-radius: 8px;
    color: #122033;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 1px 2px rgba(15, 38, 72, 0.04);
}

body.manufacturing-page .contact-form .form-group input::placeholder,
body.manufacturing-page .contact-form .form-group textarea::placeholder {
    color: #7a8797;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

body.manufacturing-page .contact-form .form-group select {
    cursor: pointer;
    text-transform: none;
}

body.manufacturing-page .contact-form .form-group input:focus,
body.manufacturing-page .contact-form .form-group select:focus,
body.manufacturing-page .contact-form .form-group textarea:focus {
    background: #ffffff;
    border-color: #1766c2;
    box-shadow: 0 0 0 4px rgba(23, 102, 194, 0.13), 0 8px 22px rgba(23, 102, 194, 0.08);
}

body.manufacturing-page .contact-form .form-group textarea {
    min-height: 150px;
    line-height: 1.65;
}

body.manufacturing-page .contact-form .inquiry-kicker {
    margin-bottom: 14px;
}

body.manufacturing-page .contact-form .inquiry-title {
    max-width: 680px;
    margin-bottom: 28px;
}

@media (max-width: 640px) {
    body.manufacturing-page .contact-form .inquiry-title {
        font-size: 1.45rem;
    }
}
.partner-logo-panel {
    max-width: 1080px;
    margin: 42px auto 0;
    padding: 24px 28px 28px;
    background: #ffffff;
    border: 1px solid #d7e2ef;
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(15, 38, 72, 0.08);
    text-align: center;
}

.partner-logo-panel p {
    margin: 0 0 18px;
    color: #4d5f74;
    font-size: 1rem;
    line-height: 1.6;
}

.partner-logo-panel img {
    display: block;
    width: 100%;
    max-width: 980px;
    height: auto;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .partner-logo-panel {
        padding: 18px 14px 20px;
    }
}
@media (max-width: 1024px) {
    .power-matrix-showcase {
        grid-template-columns: 1fr;
    }

    .power-matrix-visual,
    .power-matrix-visual img {
        min-height: 360px;
    }
}

@media (max-width: 640px) {
    .power-matrix-showcase .power-matrix {
        grid-template-columns: 1fr;
    }

    .power-matrix-showcase .power-matrix-item {
        min-height: 150px;
    }

    .power-matrix-visual,
    .power-matrix-visual img {
        min-height: 260px;
    }
}








