:root {
            --bg: #f4f6f8;
            --surface: #ffffff;
            --ink: #0f172a;
            --muted: #475569;
            --line: #e2e8f0;
            --brand: #0b3d6e;
            --brand-2: #1264a8;
            --accent: #0ea5e9;
            --max: 1120px;
            --nav-h: 58px;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: calc(var(--nav-h) + 12px);
        }

        body {
            font-family: "Segoe UI", "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
            font-size: 15px;
            line-height: 1.55;
            color: var(--ink);
            background: var(--bg);
        }

        a { color: var(--brand-2); text-decoration: none; }
        a:hover { text-decoration: underline; }

        .wrap {
            max-width: var(--max);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Nav */
        .nav {
            position: sticky;
            top: 0;
            z-index: 50;
            height: var(--nav-h);
            background: rgba(255, 255, 255, 0.96);
            border-bottom: 1px solid var(--line);
        }

        .nav .wrap {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .logo {
            font-weight: 700;
            font-size: 15px;
            color: var(--brand);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        .logo small {
            display: block;
            font-size: 11px;
            font-weight: 500;
            color: var(--muted);
            letter-spacing: 0.04em;
        }

        .nav-links {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 14px;
            justify-content: flex-end;
        }

        .nav-anchors {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 14px;
        }

        .nav-links a {
            font-size: 13px;
            color: var(--muted);
            text-decoration: none;
            font-weight: 500;
        }

        .nav-links a:hover { color: var(--brand); }

        .lang-switch {
            display: inline-flex;
            align-items: center;
            gap: 2px;
            margin-left: 4px;
            padding: 2px;
            border: 1px solid var(--line);
            border-radius: 999px;
            background: #fff;
        }

        .lang-btn {
            border: 0;
            background: transparent;
            font-size: 12px;
            font-weight: 600;
            line-height: 1;
            padding: 6px 10px;
            border-radius: 999px;
            color: var(--muted);
            cursor: pointer;
        }

        .lang-btn.is-active {
            background: var(--brand);
            color: #fff;
        }

        body.lang-zh .hero-cn { display: none; }
        body.lang-zh .addr-en { display: none; }
        body.lang-zh .addr-zh { margin-top: 0 !important; color: inherit !important; font-size: inherit !important; font-weight: inherit !important; }
        body:not(.lang-zh) .addr-zh { display: block; }

        @media (max-width: 780px) {
            .nav-anchors { display: none; }
        }

        /* Hero */
        .hero {
            background: linear-gradient(135deg, #0b2744 0%, #0b3d6e 55%, #1264a8 100%);
            color: #f8fafc;
            padding: 48px 0 56px;
        }

        .hero-grid {
            display: grid;
            gap: 28px;
            align-items: center;
        }

        @media (min-width: 860px) {
            .hero-grid {
                grid-template-columns: 1.15fr 0.85fr;
                gap: 36px;
            }
        }

        .hero-badge {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #93c5fd;
            margin-bottom: 12px;
        }

        .hero h1 {
            font-size: clamp(1.7rem, 3.8vw, 2.35rem);
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin-bottom: 14px;
            max-width: 18em;
        }

        .hero-lead {
            font-size: 1.02rem;
            color: rgba(248, 250, 252, 0.88);
            max-width: 38em;
            margin-bottom: 22px;
            line-height: 1.65;
        }

        .hero-cn {
            font-size: 0.88rem;
            color: rgba(248, 250, 252, 0.62);
            margin-bottom: 22px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 26px;
        }

        .btn {
            display: inline-block;
            padding: 10px 16px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
        }

        .btn-primary {
            background: #fff;
            color: var(--brand);
        }

        .btn-primary:hover { text-decoration: none; background: #e2e8f0; }

        .btn-ghost {
            border: 1px solid rgba(255, 255, 255, 0.35);
            color: #fff;
        }

        .btn-ghost:hover { text-decoration: none; background: rgba(255, 255, 255, 0.08); }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
            max-width: 480px;
        }

        .hero-stat {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 10px;
            padding: 12px 12px;
        }

        .hero-stat strong {
            display: block;
            font-size: 1.15rem;
            margin-bottom: 2px;
        }

        .hero-stat span {
            font-size: 0.78rem;
            color: rgba(248, 250, 252, 0.7);
        }

        .hero-side {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 14px;
            padding: 14px;
        }

        .hero-side img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }

        .hero-side .zoom {
            display: block;
            width: 100%;
            border: 0;
            padding: 0;
            background: transparent;
            cursor: zoom-in;
            border-radius: 10px;
            overflow: hidden;
        }

        .hero-side p {
            margin-top: 10px;
            font-size: 0.82rem;
            color: rgba(248, 250, 252, 0.75);
            text-align: center;
        }

        /* Sections */
        section.block {
            padding: 48px 0;
        }

        section.block.alt { background: var(--surface); }

        .sec-head {
            margin-bottom: 22px;
            max-width: 46em;
        }

        .sec-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--brand-2);
            margin-bottom: 6px;
        }

        .sec-head h2 {
            font-size: clamp(1.35rem, 2.6vw, 1.75rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 8px;
        }

        .sec-head p {
            color: var(--muted);
            font-size: 0.98rem;
        }

        /* Factory grid */
        .factory-grid {
            display: grid;
            gap: 10px;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            grid-template-rows: auto auto;
        }

        @media (max-width: 900px) {
            .factory-grid {
                grid-template-columns: repeat(5, minmax(148px, 1fr));
                overflow-x: auto;
                padding-bottom: 6px;
                -webkit-overflow-scrolling: touch;
            }
        }

        .factory-card {
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: 12px;
            overflow: hidden;
            min-width: 0;
        }

        section.block.alt .factory-card { background: var(--bg); }

        .factory-card button {
            display: block;
            width: 100%;
            border: 0;
            padding: 0;
            background: transparent;
            cursor: zoom-in;
        }

        .factory-card img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
            display: block;
            background: #e2e8f0;
        }

        .factory-card figcaption {
            padding: 8px 8px 10px;
            font-size: 0.72rem;
            line-height: 1.35;
            min-height: 2.7em;
            color: var(--muted);
            font-weight: 600;
        }

        .cap-list {
            display: grid;
            gap: 10px;
            grid-template-columns: 1fr;
            margin-top: 18px;
        }

        @media (min-width: 720px) {
            .cap-list { grid-template-columns: repeat(3, 1fr); }
        }

        .cap-item {
            border: 1px solid var(--line);
            background: var(--bg);
            border-radius: 10px;
            padding: 14px 14px;
        }

        section.block.alt .cap-item { background: var(--surface); }

        .cap-item b {
            display: block;
            font-size: 0.92rem;
            margin-bottom: 4px;
            color: var(--brand);
        }

        .cap-item span {
            font-size: 0.84rem;
            color: var(--muted);
        }

        /* Product blocks */
        .product {
            border: 1px solid var(--line);
            background: var(--surface);
            border-radius: 14px;
            padding: 20px;
            margin-bottom: 16px;
            scroll-margin-top: calc(var(--nav-h) + 12px);
        }

        section.block.alt .product { background: var(--bg); }

        .product:last-child { margin-bottom: 0; }

        .product-jump {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 0 0 18px;
            padding: 12px 14px;
            border: 1px solid var(--line);
            border-radius: 12px;
            background: var(--surface);
            position: sticky;
            top: calc(var(--nav-h) + 6px);
            z-index: 20;
            box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
        }

        section.block.alt .product-jump { background: var(--bg); }

        .product-jump a {
            display: inline-flex;
            align-items: center;
            font-size: 0.78rem;
            font-weight: 600;
            line-height: 1.2;
            color: var(--brand);
            text-decoration: none;
            padding: 7px 11px;
            border-radius: 999px;
            border: 1px solid var(--line);
            background: #fff;
            white-space: nowrap;
        }

        .product-jump a:hover {
            border-color: var(--brand-2);
            color: var(--brand-2);
            text-decoration: none;
        }

        .product-jump a.is-active {
            background: var(--brand);
            border-color: var(--brand);
            color: #fff;
        }

        .product-top {
            display: grid;
            gap: 18px;
            margin-bottom: 14px;
        }

        @media (min-width: 800px) {
            .product-top {
                grid-template-columns: 280px 1fr;
                align-items: start;
            }
        }

        .product-media button {
            display: block;
            width: 100%;
            border: 0;
            padding: 0;
            background: #fff;
            border-radius: 10px;
            border: 1px solid var(--line);
            cursor: zoom-in;
            overflow: hidden;
        }

        .product-media img {
            width: 100%;
            height: auto;
            display: block;
            aspect-ratio: 4/3;
            object-fit: contain;
            background: #fff;
        }

        .product-video {
            margin-top: 8px;
            border: 1px solid var(--line);
            border-radius: 10px;
            overflow: hidden;
            background: #fff;
        }

        .product-video video {
            width: 100%;
            height: auto;
            display: block;
            vertical-align: middle;
            max-height: 280px;
            background: #0b2744;
        }

        .product-video figcaption {
            padding: 8px 10px 10px;
            font-size: 0.78rem;
            color: var(--ink);
            background: #fff;
            font-weight: 600;
        }

        .media-row {
            display: grid;
            gap: 12px;
            grid-template-columns: 1fr;
            margin: 0 0 16px;
            align-items: stretch;
        }

        @media (min-width: 800px) {
            .media-row {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .media-row--2 {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .media-row--4 {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .media-row--6 {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        @media (min-width: 1100px) {
            .media-row--4 {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }

            .media-row--6 {
                grid-template-columns: repeat(6, minmax(0, 1fr));
            }
        }

        .media-row > .product-media-item,
        .media-row > .product-video {
            display: flex;
            flex-direction: column;
            min-width: 0;
            height: 100%;
        }

        .media-row .product-video {
            margin-top: 0;
            height: 100%;
        }

        .media-row .product-media-item button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            aspect-ratio: 4 / 3;
            border: 0;
            padding: 0;
            background: #fff;
            border-radius: 10px;
            border: 1px solid var(--line);
            cursor: zoom-in;
            overflow: hidden;
        }

        .media-row .product-media-item img {
            width: 100% !important;
            height: 100% !important;
            display: block;
            object-fit: contain !important;
            aspect-ratio: auto !important;
            background: #fff;
        }

        .media-row .product-video video {
            width: 100%;
            max-height: none;
            aspect-ratio: 4 / 3;
            object-fit: contain;
            background: #0b2744;
        }

        .media-row .product-media-item figcaption,
        .media-row .product-video figcaption {
            margin-top: 0;
            min-height: 2.7em;
            font-size: 0.72rem;
            color: var(--ink);
            font-weight: 600;
            line-height: 1.35;
        }

        .media-row .product-media-item figcaption {
            margin-top: 6px;
            color: var(--muted);
        }

        .media-row .product-video figcaption {
            padding: 8px 10px 10px;
            background: #fff;
            color: var(--ink);
        }

        .product h3 {
            font-size: 1.15rem;
            color: var(--brand);
            margin-bottom: 6px;
        }

        .product .cn {
            font-size: 0.82rem;
            color: var(--muted);
            margin-bottom: 8px;
        }

        .product .intro {
            color: var(--ink);
            font-size: 0.94rem;
            margin-bottom: 10px;
        }

        .pills {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 10px;
        }

        .pills span {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--brand);
            background: #e8f1fa;
            border-radius: 999px;
            padding: 3px 9px;
        }

        .bullets {
            margin: 0;
            padding-left: 18px;
            color: var(--muted);
            font-size: 0.88rem;
        }

        .bullets li { margin-bottom: 4px; }

        .spec-wrap {
            overflow-x: auto;
            border: 1px solid var(--line);
            border-radius: 10px;
            background: #fff;
            margin-top: 12px;
        }

        table.spec {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.8rem;
            min-width: 620px;
        }

        table.spec th,
        table.spec td {
            padding: 9px 11px;
            border-bottom: 1px solid var(--line);
            text-align: left;
            vertical-align: top;
        }

        table.spec th {
            background: #f1f5f9;
            font-weight: 700;
            color: var(--ink);
            white-space: nowrap;
        }

        table.spec td:first-child {
            color: var(--muted);
            font-weight: 600;
            white-space: nowrap;
        }

        table.spec tr:last-child td { border-bottom: none; }

        table.spec-eq {
            table-layout: fixed;
            width: 100%;
        }

        table.spec-eq th,
        table.spec-eq td {
            width: 20%;
            text-align: center;
            white-space: normal;
            word-break: break-word;
            vertical-align: middle;
        }

        table.spec-eq th:first-child,
        table.spec-eq td:first-child {
            text-align: left;
        }

        .spec-wrap--dim {
            background: #e8f1fa;
            border-color: #9ec0e0;
        }

        table.spec-dim {
            min-width: 720px;
            font-size: 0.78rem;
        }

        table.spec-dim thead th {
            background: #2f7fbf;
            color: #fff;
            font-weight: 700;
            border-bottom: 1px solid #2569a0;
            white-space: normal;
            line-height: 1.3;
        }

        table.spec-dim tbody td {
            background: #fff;
            border-bottom: 1px solid #c5d8ec;
            color: var(--ink);
            white-space: nowrap;
        }

        table.spec-dim tbody td:first-child {
            color: var(--ink);
            font-weight: 700;
            background: #f3f8fc;
        }

        table.spec-dim tfoot td {
            background: #e8f1fa;
            color: var(--brand);
            font-weight: 600;
            text-align: center;
            border-bottom: none;
            white-space: normal;
            padding: 11px 12px;
        }

        .note {
            margin-top: 10px;
            font-size: 0.8rem;
            color: var(--muted);
        }

        /* Scenes */
        .scene-grid {
            display: grid;
            gap: 14px;
        }

        @media (min-width: 800px) {
            .scene-grid { grid-template-columns: 1.2fr 0.8fr; }
        }

        .scene-card {
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: 12px;
            overflow: hidden;
        }

        .scene-card button {
            display: block;
            width: 100%;
            border: 0;
            padding: 0;
            cursor: zoom-in;
            background: transparent;
        }

        .scene-card img {
            width: 100%;
            aspect-ratio: 16/10;
            object-fit: cover;
            display: block;
        }

        .scene-card .body {
            padding: 14px 16px 16px;
        }

        .scene-card h3 {
            font-size: 1rem;
            margin-bottom: 4px;
            color: var(--brand);
        }

        .scene-card p {
            font-size: 0.88rem;
            color: var(--muted);
        }

        /* Contact */
        .contact-grid {
            display: grid;
            gap: 12px;
            grid-template-columns: 1fr;
        }

        @media (min-width: 720px) {
            .contact-grid { grid-template-columns: repeat(2, 1fr); }
        }

        .contact-item {
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: 10px;
            padding: 14px 16px;
        }

        .contact-item b {
            display: block;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--muted);
            margin-bottom: 4px;
        }

        .contact-item a,
        .contact-item span {
            font-size: 0.98rem;
            color: var(--ink);
            font-weight: 600;
        }

        .contact-item.contact-wide {
            grid-column: 1 / -1;
        }

        .dl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 6px;
        }

        .dl-list a {
            display: inline-block;
            font-size: 0.86rem !important;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 8px;
            border: 1px solid var(--line);
            background: var(--bg);
            color: var(--brand) !important;
            text-decoration: none;
        }

        .dl-list a:hover {
            border-color: var(--brand);
        }

        .contact-note {
            margin: 14px 0 0;
            font-size: 0.88rem;
            color: var(--muted);
            line-height: 1.5;
        }

        footer {
            background: #0b2744;
            color: rgba(248, 250, 252, 0.75);
            text-align: center;
            padding: 28px 20px 36px;
            font-size: 0.84rem;
        }

        footer strong {
            display: block;
            color: #fff;
            margin-bottom: 6px;
        }

        footer a { color: #93c5fd; }

        /* Lightbox */
        .lb {
            position: fixed;
            inset: 0;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 48px 16px 16px;
            cursor: zoom-out;
        }

        .lb[hidden] { display: none !important; }

        .lb img {
            max-width: min(96vw, 1400px);
            max-height: 90vh;
            object-fit: contain;
            cursor: default;
            border-radius: 6px;
        }

        .lb-close {
            position: fixed;
            top: 12px;
            right: 14px;
            width: 40px;
            height: 40px;
            border: 0;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.16);
            color: #fff;
            font-size: 22px;
            cursor: pointer;
            z-index: 2;
        }

        .lb-nav {
            position: fixed;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 56px;
            border: 0;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.16);
            color: #fff;
            font-size: 28px;
            line-height: 1;
            cursor: pointer;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lb-nav:hover { background: rgba(255, 255, 255, 0.28); }

        .lb-prev { left: 12px; }
        .lb-next { right: 12px; }

        .lb-close:focus-visible,
        .lb-nav:focus-visible {
            outline: 2px solid #93c5fd;
            outline-offset: 2px;
        }

        .lb-counter {
            position: fixed;
            bottom: 14px;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            z-index: 2;
            pointer-events: none;
        }

        @media (max-width: 640px) {
            .lb-nav { width: 36px; height: 48px; font-size: 24px; }
            .lb-prev { left: 6px; }
            .lb-next { right: 6px; }
        }


/* ===== Multi-page additions ===== */
.nav-anchors { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; }
.nav-anchors > a,
.nav-drop > summary {
    display: inline-block;
    padding: 8px 12px;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.92rem;
    border-radius: 8px;
    cursor: pointer;
    list-style: none;
}
.nav-anchors > a:hover,
.nav-drop > summary:hover,
.nav-anchors > a.is-active {
    background: #e8eef5;
    text-decoration: none;
    color: var(--brand);
}
.nav-drop { position: relative; }
.nav-drop > summary { list-style: none; }
.nav-drop > summary::-webkit-details-marker { display: none; }
.nav-drop > summary::after { content: " ▾"; font-size: 0.75em; opacity: 0.7; }
.nav-drop[open] > summary { background: #e8eef5; color: var(--brand); }
.nav-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 230px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(15,23,42,.12);
    padding: 8px;
    z-index: 60;
}
.nav-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.9rem;
}
.nav-menu a:hover { background: #f1f5f9; text-decoration: none; color: var(--brand); }
.nav-menu a small {
    display: block;
    font-weight: 500;
    color: var(--muted);
    font-size: 0.78rem;
    margin-top: 2px;
}

.page-hero {
    background: linear-gradient(135deg, #0b3d6e 0%, #1264a8 55%, #0ea5e9 140%);
    color: #fff;
    padding: 36px 0 32px;
}
.page-hero h1 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin: 6px 0 8px; }
.page-hero p { opacity: 0.92; max-width: 680px; }
.page-hero .crumb { font-size: 0.85rem; opacity: 0.85; }
.page-hero .crumb a { color: #fff; text-decoration: underline; }

.home-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 900px) { .home-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .home-cards { grid-template-columns: 1fr; } }
.home-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: inherit;
    transition: box-shadow .15s, border-color .15s;
}
a.home-card:hover {
    border-color: #bcd3ea;
    box-shadow: 0 10px 28px rgba(11,61,110,.08);
    text-decoration: none;
}
.home-card h3 { font-size: 1.05rem; color: var(--brand); }
.home-card p { color: var(--muted); font-size: 0.9rem; flex: 1; }
.home-card .go { font-weight: 700; color: var(--brand-2); font-size: 0.9rem; }

.product-page .product {
    border: none;
    box-shadow: none;
    padding: 8px 0 24px;
    background: transparent;
}
.teaser-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 12px;
}
@media (max-width: 800px) { .teaser-grid { grid-template-columns: repeat(3, 1fr); } }
.teaser-grid a { display: block; }
.teaser-grid img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}
.logo a {
    color: inherit;
    text-decoration: none;
    display: block;
}
.logo a:hover { text-decoration: none; }

/* Product detail pages: title already in page-hero */
.product-page article.product > h3:first-child,
.product-page article.product > p.cn:first-of-type {
    display: none;
}

/* ===== Home redesign ===== */
.hero--compact .hero-stats { display: none; }
.hero--compact { padding-bottom: 40px; }
.btn-ghost--soft { opacity: 0.85; font-size: 0.9rem; }

.feat-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
    margin-top: 8px;
}
@media (max-width: 800px) {
    .feat-grid { grid-template-columns: 1fr; }
}
.feat-visuals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 8px;
}
.feat-visuals--video-only {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 800px) {
    .feat-visuals { grid-template-columns: 1fr; }
}
.feat-media,
.feat-video {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
}
.feat-media .zoom,
.feat-media img {
    width: 100%;
    display: block;
    border-radius: 10px;
}
.feat-media img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: #fff;
}
.feat-video video {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    background: #0f172a;
    display: block;
}
.feat-cap {
    margin-top: 10px;
    text-align: center;
    color: var(--muted);
    font-size: 0.88rem;
}
.feat-copy--below {
    margin-top: 22px;
}
.feat-copy--below .feat-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
}
@media (max-width: 700px) {
    .feat-copy--below .feat-bullets { grid-template-columns: 1fr; }
}
.feat-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 0 20px;
}
.feat-bullets li {
    position: relative;
    padding-left: 18px;
    color: var(--ink);
    font-size: 0.98rem;
}
.feat-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-2);
}
.feat-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.btn-on-light {
    background: var(--brand);
    color: #fff !important;
    border: 1px solid var(--brand);
}
.btn-on-light:hover {
    background: var(--brand-2);
    border-color: var(--brand-2);
    text-decoration: none;
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--brand) !important;
    font-weight: 700;
    font-size: 0.92rem;
}
.btn-outline:hover {
    border-color: #bcd3ea;
    background: #f8fbff;
    text-decoration: none;
}

.home-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
@media (max-width: 900px) {
    .home-links { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
    .home-links { grid-template-columns: 1fr 1fr; }
}
.home-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 14px 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    color: inherit;
}
.home-link:hover {
    border-color: #bcd3ea;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(11,61,110,.06);
}
.home-link strong {
    color: var(--brand);
    font-size: 0.95rem;
}
.home-link span {
    color: var(--muted);
    font-size: 0.82rem;
}

.factory-strip {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    align-items: center;
}
@media (max-width: 800px) {
    .factory-strip { grid-template-columns: 1fr; }
}
.teaser-grid--strip {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 0;
}

.home-cta {
    background: linear-gradient(135deg, #0b3d6e 0%, #1264a8 70%);
    color: #fff;
    padding: 36px 0;
}
.home-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.home-cta h2 {
    font-size: 1.35rem;
    margin-bottom: 6px;
}
.home-cta p {
    opacity: 0.9;
    max-width: 520px;
}
.home-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
