        :root {
            --ink: #0c1427;
            --body: #263247;
            --muted: #6d7788;
            --blue: #064b9b;
            --blue-dark: #052b63;
            --red: #e04335;
            --red-dark: #b92820;
            --soft: #f5f6f8;
            --panel: #ffffff;
            --line: #d9dfe8;
            --shade: #edf2f8;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            background: #fff;
            color: var(--ink);
            font-family: 'Inter', Arial, Helvetica, sans-serif;
            font-size: 16px;
            line-height: 1.5;
        }

        img {
            display: block;
            max-width: 100%;
        }

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

        button,
        input,
        select {
            font: inherit;
        }

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

        .notice {
            background: var(--red);
            color: #fff;
            font-size: 14px;
            font-weight: 800;
        }

        .notice .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            min-height: 46px;
        }

        .notice a {
            border-bottom: 2px solid #fff;
        }

        .top-bar {
            background: #0b2545;
            color: #cbd5e1;
            font-size: 13px;
            font-weight: 600;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .top-bar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .top-bar-left, .top-bar-right {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .top-bar-break {
            display: none;
        }

        .top-bar-divider {
            color: rgba(255,255,255,0.25);
        }

        .top-bar-link {
            color: #ffffff;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: color 0.2s;
        }

        .top-bar-link:hover {
            color: var(--red);
        }

        .top-bar-wa {
            color: #25d366;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-weight: 700;
        }
        .top-bar-wa:hover {
            color: #4ade80;
        }

        .top-bar-wa-badge {
            background: #25d366;
            color: #ffffff !important;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 700;
            font-size: 12px;
            padding: 4px 12px;
            border-radius: 20px;
            transition: background 0.2s ease, transform 0.2s ease;
            text-decoration: none;
        }
        .top-bar-wa-badge:hover {
            background: #1eb956;
            color: #ffffff !important;
            transform: translateY(-1px);
        }

        .header {
            position: sticky;
            top: 0;
            z-index: 20;
            background: rgba(255, 255, 255, 0.96);
            border-bottom: 1px solid var(--line);
            backdrop-filter: blur(10px);
        }

        /* Same-page anchor targets (#factoryGrid, #faq, etc.) — offset so the
           sticky header (up to 82px tall on desktop) doesn't cover the top of
           the section on jump. Value covers every breakpoint's header height. */
        #factoryGrid,
        #faq,
        #quote {
            scroll-margin-top: 100px;
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 82px;
            gap: 16px;
        }

        .brand {
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        .brand img {
            height: 52px;
            width: auto;
            display: block;
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 18px;
            color: var(--body);
            font-size: 14px;
            font-weight: 700;
            white-space: nowrap;
        }

        .nav a {
            white-space: nowrap;
            transition: color 0.2s ease, background 0.2s ease;
        }

        .nav a:hover {
            color: var(--red);
        }

        /* Plain top-level links (Capabilities, Resources, Service & Support,
           About, Contact) get the same padded pill shape as the dropdown
           toggles, so the active state below reads consistently across
           both — a filled pill, not a bare underline. */
        .nav > a {
            padding: 6px 10px;
            border-radius: 6px;
        }

        /* Current-page indicator — filled pill instead of an underline,
           since an inset line looked disconnected against the toggle's
           own rounded/padded box. */
        .nav > a.active,
        .nav-dropdown-toggle.active {
            color: var(--red);
            background: rgba(224, 67, 53, 0.1);
        }

        .nav-dropdown {
            position: relative;
        }

        /* Invisible bridge fills the gap between button and menu,
           preventing hover loss when the mouse crosses the spacing. */
        .nav-dropdown::after {
            content: "";
            position: absolute;
            top: 100%;
            left: -8px;
            right: -8px;
            height: 16px;
            display: none;
        }

        .nav-dropdown:hover::after,
        .nav-dropdown:focus-within::after {
            display: block;
        }

        .nav-dropdown-toggle {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            background: none;
            border: 0;
            font: inherit;
            color: inherit;
            padding: 6px 10px;
            border-radius: 6px;
            transition: background 0.2s ease, color 0.2s ease;
        }

        .nav-dropdown-toggle:hover {
            color: var(--red);
        }

        .nav-dropdown-toggle::after {
            content: "";
            width: 7px;
            height: 7px;
            border-right: 2px solid currentColor;
            border-bottom: 2px solid currentColor;
            transform: rotate(45deg) translateY(-2px);
            transition: transform 0.2s ease;
            flex-shrink: 0;
        }

        .nav-dropdown-menu {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            z-index: 25;
            min-width: 230px;
            padding: 6px;
            border-radius: 10px;
            background: #0b2545;
            box-shadow: 0 20px 40px rgba(5, 15, 40, 0.32), 0 4px 12px rgba(5, 15, 40, 0.18);
            border-top: 3px solid var(--red);
            /* Hidden state */
            opacity: 0;
            transform: translateY(6px);
            pointer-events: none;
            transition: opacity 0.18s ease, transform 0.18s ease;
            isolation: isolate;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
        }

        .nav-dropdown:hover .nav-dropdown-menu,
        .nav-dropdown:focus-within .nav-dropdown-menu {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .nav-dropdown:hover .nav-dropdown-toggle::after,
        .nav-dropdown:focus-within .nav-dropdown-toggle::after {
            transform: rotate(225deg) translateY(2px);
        }

        .nav-dropdown-menu a {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 9px 14px;
            border-radius: 7px;
            font-weight: 600;
            font-size: 13.5px;
            white-space: nowrap;
            color: #cbd5e1;
            transition: background 0.15s ease, color 0.15s ease;
        }

        .nav-dropdown-menu a::before {
            content: "";
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--red);
            opacity: 0.5;
            flex-shrink: 0;
            transition: opacity 0.15s ease;
        }

        .nav-dropdown-menu a:hover {
            background: rgba(255, 255, 255, 0.08);
            color: #ffffff;
        }

        .nav-dropdown-menu a:hover::before {
            opacity: 1;
        }

        .nav-dropdown-menu .nav-dropdown-all {
            margin-top: 4px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 10px;
            color: #fb7c72;
            font-weight: 700;
        }

        .nav-dropdown-menu .nav-dropdown-all::before {
            background: #fb7c72;
        }

        .nav-dropdown-menu .nav-dropdown-all:hover {
            background: rgba(224, 67, 53, 0.15);
            color: #ffffff;
        }

        /* Mega-menu variant — used by the "Applications" dropdown, which lists
           20 items in a 2-column grid instead of one long single column.
           Centered on the toggle (not left-anchored) and hard-capped to the
           viewport width so it can never push the page into horizontal
           scroll, regardless of where the toggle sits in the nav bar. */
        .nav-dropdown-mega .nav-dropdown-menu {
            left: 50%;
            min-width: 0;
            width: max-content;
            max-width: min(420px, calc(100vw - 32px));
            padding: 14px;
            transform: translateX(-50%) translateY(6px);
        }

        .nav-dropdown-mega:hover .nav-dropdown-menu,
        .nav-dropdown-mega:focus-within .nav-dropdown-menu {
            transform: translateX(-50%) translateY(0);
        }

        .nav-mega-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0 4px;
            max-height: 320px;
            overflow-y: auto;
        }

        /* Long application labels must wrap within their column rather than
           forcing the grid track (and the whole panel) wider than max-width. */
        .nav-mega-grid a {
            white-space: normal;
            line-height: 1.25;
        }

        /* ── Mega Menu Navigation (Products) ── */
        .nav-dropdown-products-mega {
            position: relative;
        }

        .nav-mega-products-wrapper {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            transform: translateY(6px);
            z-index: 100;
            width: 640px;
            max-width: calc(100vw - 32px);
            padding: 6px;
            border-radius: 12px;
            background: #ffffff;
            box-shadow: 0 20px 45px rgba(11, 37, 69, 0.22), 0 4px 14px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--line);
            border-top: 3px solid var(--red);
            opacity: 0;
            pointer-events: none;
            overflow: hidden;
            transition: opacity 0.2s ease, transform 0.2s ease;
            isolation: isolate;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
        }

        .nav-dropdown-products-mega:hover .nav-mega-products-wrapper,
        .nav-dropdown-products-mega:focus-within .nav-mega-products-wrapper {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        /* ── Mega Menu Navigation (Industries / Applications) ──
           Full-width panels, per client review. The generic .nav-dropdown
           base class sets position:relative (see line ~342) — overridden
           back to static here so these two toggles do NOT become the
           containing block for their wrapper. That lets the wrapper's
           absolute positioning resolve against .header (position:sticky,
           the next positioned ancestor up) instead, so the panel spans the
           same width as .container regardless of where its trigger sits in
           the nav, rather than being centered/anchored on the toggle like
           Products. */
        .nav-dropdown-industries-mega,
        .nav-dropdown-applications-mega {
            position: static;
        }

        .nav-mega-industries-wrapper,
        .nav-mega-applications-wrapper {
            position: absolute;
            top: calc(100% + 6px);
            left: 50%;
            transform: translateX(-50%) translateY(6px);
            z-index: 100;
            width: min(1280px, calc(100vw - 32px));
            padding: 0;
            border-radius: 12px;
            background: #ffffff;
            box-shadow: 0 20px 45px rgba(11, 37, 69, 0.22), 0 4px 14px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--line);
            border-top: 4px solid var(--red);
            opacity: 0;
            pointer-events: none;
            overflow: hidden;
            transition: opacity 0.2s ease, transform 0.2s ease;
            isolation: isolate;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
        }

        .nav-dropdown-industries-mega:hover .nav-mega-industries-wrapper,
        .nav-dropdown-industries-mega:focus-within .nav-mega-industries-wrapper,
        .nav-dropdown-applications-mega:hover .nav-mega-applications-wrapper,
        .nav-dropdown-applications-mega:focus-within .nav-mega-applications-wrapper,
        .nav-dropdown-industries-mega.is-open .nav-mega-industries-wrapper,
        .nav-dropdown-applications-mega.is-open .nav-mega-applications-wrapper {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
            pointer-events: auto;
        }

        /* Being full-width, these two panels render well outside the small
           toggle's own box (~30px vertical gap once you factor in the
           toggle's position inside the header), so plain :hover breaks the
           instant the pointer leaves the toggle before reaching the panel.
           .is-open is driven by JS (mouseenter/mouseleave with a grace
           period) below, bridging that gap the way a small anchored dropdown
           doesn't need to. */
        .nav-dropdown-industries-mega:hover .nav-dropdown-toggle::after,
        .nav-dropdown-industries-mega.is-open .nav-dropdown-toggle::after,
        .nav-dropdown-applications-mega:hover .nav-dropdown-toggle::after,
        .nav-dropdown-applications-mega.is-open .nav-dropdown-toggle::after {
            transform: rotate(225deg) translateY(2px);
        }

        /* Links inside any mega panel sit inside .nav-dropdown-menu, whose
           generic `a` rule (pill padding, bullet dot, nowrap) is meant for
           the plain single-column dropdowns, not these catalog tiles.
           Same specificity as that generic rule, so source order — this
           block comes later — is what wins the reset. */
        .nav-mega-products-wrapper a,
        .nav-mega-industries-wrapper a,
        .nav-mega-applications-wrapper a {
            display: revert;
            align-items: unset;
            padding: 0;
            gap: 0;
            color: inherit;
            font-weight: inherit;
            font-size: inherit;
            white-space: normal;
        }

        .nav-mega-products-wrapper a::before,
        .nav-mega-industries-wrapper a::before,
        .nav-mega-applications-wrapper a::before {
            display: none;
        }

        .nav-mega-products-wrapper a:hover,
        .nav-mega-industries-wrapper a:hover,
        .nav-mega-applications-wrapper a:hover {
            background: transparent;
        }

        .mega-catalog-panel {
            padding: 16px 20px;
            background: #ffffff;
            border-radius: 8px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .mega-catalog-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            padding-bottom: 10px;
            margin-bottom: 14px;
            border-bottom: 1px solid #f1f5f9;
        }

        .mega-header-tag {
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.8px;
            color: var(--red);
            display: block;
            margin-bottom: 2px;
            text-transform: uppercase;
        }

        .mega-header-title {
            font-size: 1.05rem;
            font-weight: 800;
            color: #0c1427;
            margin: 0;
        }

        .mega-full-catalogue-link {
            font-size: 11.5px;
            font-weight: 800;
            color: var(--red) !important;
            text-decoration: none;
            transition: color 0.15s ease;
            background: transparent !important;
        }
        .mega-full-catalogue-link::before {
            display: none !important;
        }
        .mega-full-catalogue-link:hover {
            color: var(--red-dark) !important;
            background: transparent !important;
        }

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

        /* Full-width panels (Industries / Applications) get more columns and
           roomier padding to make use of the extra width instead of just
           stretching the same 3-column layout into oversized tiles. */
        .nav-mega-industries-wrapper .mega-catalog-panel,
        .nav-mega-applications-wrapper .mega-catalog-panel {
            padding: 22px 28px;
        }

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

        .mega-catalog-grid-wide .mega-catalog-thumb {
            height: 160px;
        }

        .mega-catalog-tile {
            display: flex;
            flex-direction: column;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            background: #ffffff;
            text-decoration: none;
            transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
        }

        .mega-catalog-tile:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 22px rgba(11, 37, 69, 0.12);
            border-color: var(--line);
        }

        .mega-catalog-thumb {
            position: relative;
            display: block;
            height: 120px;
            background: #0b2545;
            overflow: hidden;
        }

        .mega-catalog-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            transition: transform 0.35s ease;
            /* Prevent browser bilinear blur on downsampled images */
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
            /* GPU compositing for sharper subpixel rendering */
            will-change: transform;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
        }

        .mega-catalog-tile:hover .mega-catalog-thumb img {
            transform: scale(1.04) translateZ(0);
        }

        .mega-catalog-tone {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mega-tone-1 { background: linear-gradient(140deg, #0b2545, #1a3a68); }
        .mega-tone-2 { background: linear-gradient(140deg, #b92820, #e04335); }
        .mega-tone-3 { background: linear-gradient(140deg, #263247, #46536b); }
        .mega-tone-4 { background: linear-gradient(140deg, #0c1427, #263247); }
        .mega-tone-5 { background: linear-gradient(140deg, #7a3a33, #b92820); }

        .mega-catalog-badge {
            position: absolute;
            top: 8px;
            right: 8px;
            font-size: 9.5px;
            font-weight: 800;
            letter-spacing: 0.02em;
            color: #ffffff;
            background: rgba(11, 25, 46, 0.72);
            padding: 3px 8px;
            border-radius: 20px;
            backdrop-filter: blur(2px);
            -webkit-backdrop-filter: blur(2px);
        }

        .mega-catalog-info {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            padding: 10px 12px;
        }

        .mega-catalog-name {
            font-size: 12.5px;
            font-weight: 800;
            color: #0c1427;
            line-height: 1.25;
        }

        .mega-catalog-go {
            font-size: 10px;
            font-weight: 800;
            color: var(--red);
            letter-spacing: 0.02em;
            flex-shrink: 0;
        }

        .nav-mega-industries-wrapper {
            width: min(1040px, calc(100vw - 32px));
        }

        .nav-mega-industries-wrapper .mega-catalog-panel {
            padding: 16px 18px 18px;
        }

        .nav-mega-industries-wrapper .mega-catalog-header {
            padding-bottom: 10px;
            margin-bottom: 12px;
        }

        .nav-mega-industries-wrapper .mega-header-title {
            font-size: 1.25rem;
            line-height: 1.15;
        }

        .nav-mega-industries-wrapper .mega-full-catalogue-link {
            font-size: 12.5px;
        }

        .nav-mega-industries-wrapper .mega-catalog-grid-wide {
            gap: 12px;
        }

        .nav-mega-industries-wrapper .mega-catalog-tile {
            border-radius: 8px;
        }

        .nav-mega-industries-wrapper .mega-catalog-thumb {
            height: 88px;
            background: #ffffff;
            padding: 6px;
        }

        .nav-mega-industries-wrapper .mega-catalog-thumb img {
            /* These are square-ish icon illustrations (~440x370), not wide
               photos — object-fit:cover was cropping ~63% of each one away
               to fill this wide/short box. contain shows the whole icon. */
            object-fit: contain;
            width: 100%;
            height: 100%;
        }

        .nav-mega-industries-wrapper .mega-catalog-info {
            min-height: 40px;
            padding: 7px 10px 8px;
        }

        .nav-mega-industries-wrapper .mega-catalog-name {
            font-size: 12px;
            line-height: 1.2;
        }

        .nav-mega-industries-wrapper .mega-catalog-go {
            font-size: 10.5px;
        }

        .nav-mega-industries-wrapper .mega-catalog-badge {
            top: 7px;
            right: 7px;
            font-size: 9.5px;
            padding: 3px 8px;
            background: #071229;
        }

        .mega-catalog-count {
            font-size: 10px;
            font-weight: 700;
            color: var(--muted);
            flex-shrink: 0;
        }

        /* Applications — ~20 items, laid out 5 across (20 divides evenly
           into 4 clean rows) and scrolls after a couple of rows instead of
           growing the panel taller than the viewport can comfortably hold. */
        .mega-catalog-grid-dense {
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 12px;
        }

        .mega-catalog-grid-scroll {
            max-height: 360px;
            overflow-y: auto;
            padding-right: 4px;
            padding-top: 4px;
            margin-top: -4px;
        }

        /* Outline-icon card — plain white tile with a circled icon, used for
           Applications instead of the photo/duotone tiles Products and
           Industries use, since Applications has no imagery of its own.
           Scoped under .mega-catalog-grid to out-specificity the older
           .nav-dropdown-menu a / .nav-mega-applications-wrapper a rules —
           both are (0,1,1) and were winning the cascade on `display`,
           collapsing this back to a left-aligned block/row instead of a
           centered column. */
        .mega-catalog-grid .mega-catalog-tile-outline {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 6px;
            padding: 12px 8px;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            background: #ffffff;
            text-decoration: none;
            transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
        }

        .mega-catalog-tile-outline:hover {
            border-color: var(--red);
            box-shadow: 0 4px 10px rgba(11, 37, 69, 0.07);
        }

        .mega-catalog-icon-circle {
            width: 38px;
            height: 38px;
            flex-shrink: 0;
            border-radius: 50%;
            border: 1.5px solid var(--red);
            color: var(--red);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mega-catalog-tile-outline .mega-catalog-name {
            font-size: 12px;
            line-height: 1.3;
        }

        /* ── Mobile Mega Menu Styles inside Drawer ── */
        .mobile-mega-menu {
            background: #0f172a !important;
            padding: 0 !important;
        }
        .mobile-nav-dropdown.active .mobile-mega-menu {
            max-height: 480px;
            padding: 12px !important;
        }

        .mobile-mega-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 10px;
            margin-bottom: 12px;
        }
        .mobile-mega-tag {
            display: block;
            font-size: 10px;
            font-weight: 800;
            color: #60a5fa;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 2px;
        }
        .mobile-mega-title {
            font-size: 13.5px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.3;
            margin: 0;
        }
        .mobile-mega-all-btn {
            display: inline-block;
            font-size: 11.5px;
            font-weight: 800;
            color: #fb7c72 !important;
            padding: 0 !important;
            border: 0 !important;
            flex-shrink: 0;
            white-space: nowrap;
        }
        .mobile-mega-all-btn::before {
            display: none !important;
        }

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

        .mobile-mega-tile {
            display: flex !important;
            flex-direction: column !important;
            align-items: stretch !important;
            gap: 0 !important;
            padding: 0 !important;
            border-radius: 8px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.05) !important;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        }
        .mobile-mega-tile::before {
            display: none !important;
        }

        .mobile-mega-tile-thumb {
            position: relative;
            height: 62px;
            background: #1e293b;
        }
        .mobile-mega-tile-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .mobile-mega-tile-thumb .mega-catalog-tone {
            width: 100%;
            height: 100%;
        }

        .mobile-mega-tile-info {
            padding: 7px 9px 8px;
        }
        .mobile-mega-tile-name {
            display: block;
            font-size: 11.5px;
            font-weight: 800;
            color: #ffffff !important;
            line-height: 1.25;
            margin-bottom: 2px;
        }
        .mobile-mega-tile-count {
            display: block;
            font-size: 10px;
            font-weight: 700;
            color: #93c5fd;
        }

        /* Applications tile on mobile — same outline-icon card as desktop,
           a white card against the drawer's dark background instead of a
           photo/tone thumbnail. */
        .mobile-mega-tile-outline {
            background: #ffffff !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            align-items: center !important;
            justify-content: center !important;
            text-align: center;
            padding: 10px 8px !important;
            gap: 6px !important;
        }

        .mobile-mega-icon-circle {
            width: 34px;
            height: 34px;
            flex-shrink: 0;
            border-radius: 50%;
            border: 1.5px solid var(--red);
            color: var(--red);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-mega-tile-outline .mobile-mega-tile-info {
            padding: 0 !important;
        }

        .mobile-mega-tile-outline .mobile-mega-tile-name {
            color: #0c1427 !important;
            text-align: center;
            margin-bottom: 0;
        }

        #mobileIndustriesDropdown .mobile-mega-menu {
            background: #ffffff !important;
            border: 1px solid #e2e8f0;
        }

        #mobileIndustriesDropdown .mobile-mega-tag {
            color: var(--red);
        }

        #mobileIndustriesDropdown .mobile-mega-title {
            color: #0c1427;
        }

        #mobileIndustriesDropdown .mobile-mega-grid {
            gap: 7px;
        }

        #mobileIndustriesDropdown .mobile-mega-tile {
            background: #ffffff !important;
            border: 1px solid #e2e8f0 !important;
            border-radius: 8px;
        }

        #mobileIndustriesDropdown .mobile-mega-tile-thumb {
            height: 52px;
            background: #ffffff;
        }

        #mobileIndustriesDropdown .mobile-mega-tile-thumb img {
            object-fit: cover;
        }

        #mobileIndustriesDropdown .mobile-mega-tile-info {
            padding: 5px 7px 6px;
        }

        #mobileIndustriesDropdown .mobile-mega-tile-name {
            color: #0c1427 !important;
            font-size: 10.5px;
        }

        #mobileIndustriesDropdown .mobile-mega-tile-count {
            color: #475569;
            font-size: 9.5px;
        }

        .contact-header-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--ink);
            font-weight: 800;
            font-size: 13px;
            padding: 8px 10px;
            border-radius: 6px;
            white-space: nowrap;
            transition: background 0.2s ease;
        }
        .contact-header-link:hover {
            background: var(--soft);
            color: var(--blue);
        }

        .whatsapp-header-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #25d366;
            color: #ffffff;
            font-weight: 800;
            font-size: 13px;
            padding: 9px 12px;
            border-radius: 6px;
            white-space: nowrap;
            transition: background 0.2s ease;
        }
        .whatsapp-header-btn:hover {
            background: #1eb956;
            color: #ffffff;
        }

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

        .mobile-toggle {
            display: none;
            background: transparent;
            border: 1px solid var(--line);
            color: var(--ink);
            cursor: pointer;
            padding: 8px 10px;
            border-radius: 6px;
            align-items: center;
            justify-content: center;
        }

        .mobile-drawer {
            position: fixed;
            top: 0;
            right: 0;
            width: 300px;
            height: 100vh;
            /* 100vh on mobile browsers is calculated against the address bar being
               collapsed — with it visible the real viewport is shorter, clipping
               whatever sits at the bottom of the drawer (the WhatsApp button below
               Call). 100dvh tracks the actual visible viewport; falls back to the
               line above on browsers that don't support dvh. */
            height: 100dvh;
            background: #ffffff;
            z-index: 100;
            box-shadow: -6px 0 24px rgba(0,0,0,0.15);
            display: flex;
            flex-direction: column;
            transform: translateX(110%);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-drawer.active {
            transform: translateX(0);
        }

        .mobile-drawer-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 20px;
            border-bottom: 1px solid var(--line);
        }

        .mobile-drawer-close {
            background: transparent;
            border: none;
            font-size: 28px;
            color: var(--ink);
            cursor: pointer;
            line-height: 1;
            padding: 4px 8px;
        }

        .mobile-nav {
            display: flex;
            flex-direction: column;
            padding: 20px;
            gap: 12px;
            overflow-y: auto;
            flex: 1;
        }

        .mobile-nav a {
            font-size: 16px;
            font-weight: 700;
            color: var(--ink);
            padding: 10px 0;
            border-bottom: 1px solid #f1f5f9;
            transition: color 0.2s;
        }

        .mobile-nav > a.active,
        .mobile-nav-dropdown-label.active {
            color: var(--red);
        }

        .mobile-nav a:hover {
            color: var(--red);
        }

        .mobile-nav-dropdown {
            display: flex;
            flex-direction: column;
        }

        .mobile-nav-dropdown-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            border-bottom: 1px solid #f1f5f9;
        }

        .mobile-nav-dropdown-label {
            flex: 1;
            font: inherit;
            font-size: 16px;
            font-weight: 700;
            color: var(--ink);
            padding: 10px 0;
            text-decoration: none;
            transition: color 0.2s;
        }

        .mobile-nav-dropdown-label:hover {
            color: var(--red);
        }

        .mobile-nav-dropdown-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            background: none;
            border: 0;
            padding: 12px 4px 12px 12px;
            margin-right: -4px;
            cursor: pointer;
            color: var(--ink);
        }

        .mobile-nav-dropdown-arrow::after {
            content: "";
            width: 8px;
            height: 8px;
            border-right: 2px solid currentColor;
            border-bottom: 2px solid currentColor;
            transform: rotate(45deg);
            transition: transform 0.2s ease;
            flex-shrink: 0;
        }

        .mobile-nav-dropdown.active .mobile-nav-dropdown-arrow::after {
            transform: rotate(225deg);
        }

        .mobile-nav-dropdown-menu {
            max-height: 0;
            overflow: hidden;
            background: #0b2545;
            border-radius: 8px;
            transition: max-height 0.25s ease;
        }

        .mobile-nav-dropdown.active .mobile-nav-dropdown-menu {
            max-height: 320px;
            overflow-y: auto;
            margin: 8px 0;
        }

        .mobile-nav-dropdown-menu a {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 14px;
            font-size: 14px;
            font-weight: 600;
            color: #cbd5e1;
            border-bottom: 0;
        }

        .mobile-nav-dropdown-menu a::before {
            content: "";
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--red);
            opacity: 0.6;
            flex-shrink: 0;
        }

        .mobile-nav-dropdown-menu a:hover {
            background: rgba(255, 255, 255, 0.08);
            color: #ffffff;
        }

        .mobile-nav-dropdown-menu .mobile-nav-dropdown-all {
            color: #fb7c72;
            font-weight: 700;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-drawer-contact {
            padding: 20px;
            border-top: 1px solid var(--line);
            display: flex;
            flex-direction: column;
            gap: 10px;
            background: #f8fafc;
        }

        .mobile-contact-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 14px;
            text-decoration: none;
        }

        .mobile-contact-btn.call {
            background: #ffffff;
            color: var(--ink);
            border: 1px solid var(--line);
        }

        .mobile-contact-btn.wa {
            background: #25d366;
            color: #ffffff;
        }

        .mobile-drawer-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(11, 37, 69, 0.5);
            backdrop-filter: blur(4px);
            z-index: 99;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .mobile-drawer-backdrop.active {
            opacity: 1;
            pointer-events: auto;
        }

        .icon-btn {
            display: grid;
            width: 42px;
            height: 42px;
            place-items: center;
            border: 2px solid var(--ink);
            border-radius: 50%;
            font-size: 20px;
            font-weight: 900;
        }

        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 52px;
            padding: 0 24px;
            border: 1px solid transparent;
            border-radius: 5px;
            background: var(--red);
            color: #fff;
            font-weight: 900;
            text-align: center;
            cursor: pointer;
        }

        .button:hover {
            background: var(--red-dark);
        }

        .button.dark {
            background: var(--blue-dark);
        }

        .button.dark:hover {
            background: var(--blue);
        }

        .button.outline {
            background: #fff;
            color: var(--red);
            border-color: var(--red);
        }

        .button.outline:hover {
            background: #fff4f3;
        }

        .tag-chip {
            display: inline-flex;
            align-items: center;
            background: #f1f5f9;
            color: #334155;
            border: 1px solid #cbd5e1;
            padding: 6px 14px;
            border-radius: 8px;
            font-size: 0.84rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
            cursor: pointer;
        }

        .tag-chip:hover {
            background: var(--red, #e04335) !important;
            color: #ffffff !important;
            border-color: var(--red, #e04335) !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(224, 67, 53, 0.28);
        }

        /* Global Mobile Responsive CAPTCHA Styling (Applies to all forms & modals) */
        .h-captcha-wrapper {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: visible;
            margin: 14px 0;
        }

        .h-captcha-wrapper .h-captcha {
            width: 302px;
            height: 78px;
            position: relative;
            margin: 0 auto;
        }

        @media (max-width: 480px) {
            .h-captcha-wrapper {
                width: 100% !important;
                margin: 12px 0 !important;
                display: flex !important;
                justify-content: center !important;
            }

            .h-captcha-wrapper .h-captcha {
                width: 233px !important;
                height: 60px !important;
                position: relative !important;
                overflow: hidden !important;
                margin: 0 auto !important;
            }

            .h-captcha-wrapper .h-captcha iframe,
            .h-captcha-wrapper .h-captcha > div {
                width: 302px !important;
                height: 78px !important;
                transform: scale(0.77) !important;
                -webkit-transform: scale(0.77) !important;
                transform-origin: 0 0 !important;
                -webkit-transform-origin: 0 0 !important;
                position: absolute !important;
                top: 0 !important;
                left: 0 !important;
                margin: 0 !important;
            }
        }

        .hero {
            position: relative;
            overflow: hidden;
            background:
                url("/assets/images/industrial-laser-cutting-real.jpg") right 40px center / contain no-repeat,
                #ffffff;
        }

        .hero::before {
            position: absolute;
            inset: 0;
            content: "";
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 39%, rgba(255, 255, 255, 0.28) 58%, rgba(255, 255, 255, 0) 76%);
            pointer-events: none;
        }

        .hero .container {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(460px, 1fr);
            align-items: center;
            min-height: 560px;
        }

        .hero-copy {
            display: flex;
            flex-direction: column;
            justify-content: center;
            /* Bottom padding must clear .stats-wrap's -72px overlap margin below
               (see .stats-wrap) or hero-contact text gets covered by the stat cards. */
            padding: 34px 34px 84px 26px;
        }

        .trust-line {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            color: var(--body);
            font-size: 13px;
            margin-bottom: 16px;
        }

        .trust-line span,
        .trust-line b {
            display: inline-flex;
            align-items: center;
            min-height: 28px;
            padding: 0 11px;
            border: 1px solid #d9dfe8;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.82);
            color: var(--body);
            font-weight: 700;
        }

        .trust-line b {
            border-color: rgba(6, 75, 155, 0.22);
            color: var(--blue);
        }

        .eyebrow {
            margin: 0 0 16px;
            color: var(--ink);
            font-weight: 700;
            text-transform: uppercase;
        }

        /* Scoped to the home hero specifically — every other page's h1 sets its
           own inline font-size/color/etc. and only inherited max-width from a
           bare "h1" selector here by accident, capping headlines that had far
           more room in their own wrapper (see Service & Support fix). */
        .hero h1 {
            max-width: 640px;
            margin: 0;
            color: #020713;
            font-size: clamp(36px, 4.2vw, 54px);
            font-weight: 700;
            letter-spacing: 0;
            line-height: 1.12;
        }

        .lead {
            max-width: 560px;
            margin: 20px 0 0;
            color: var(--body);
            font-size: 18px;
            font-weight: 700;
        }

        .hero-fit {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 8px;
            max-width: 100%;
            margin: 22px 0 0;
        }

        .fit-item {
            display: flex;
            align-items: center;
            gap: 8px;
            min-height: 36px;
            color: var(--body);
            font-size: 13px;
            font-weight: 900;
        }

        .fit-item::before {
            display: grid;
            width: 22px;
            height: 22px;
            flex: 0 0 22px;
            place-items: center;
            border-radius: 50%;
            background: rgba(224, 67, 53, 0.12);
            color: var(--red);
            content: "✓";
            font-size: 13px;
            font-weight: 900;
        }

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

        .hero-contact {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 16px;
        }

        .hero-call-link,
        .hero-wa-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            height: 38px;
            line-height: 1;
            padding: 0 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 800;
            box-sizing: border-box;
            text-decoration: none;
            vertical-align: middle;
        }

        .hero-call-link {
            color: var(--ink);
            background: #f1f5f9;
            border: 1px solid #e2e8f0;
            transition: background 0.2s ease, color 0.2s ease;
        }
        .hero-call-link:hover {
            background: #e2e8f0;
            color: var(--blue);
        }

        .hero-wa-badge {
            background: #25d366;
            color: #ffffff !important;
            border: 1px solid #20bd5a;
            transition: background 0.2s ease, transform 0.2s ease;
        }
        .hero-wa-badge:hover {
            background: #1eb956;
            color: #ffffff !important;
            transform: translateY(-1px);
        }

        .hero-media {
            position: relative;
            min-height: 560px;
            margin-right: calc((100vw - min(1180px, calc(100vw - 40px))) / -2);
        }

        .hero-media img {
            display: none;
        }

        .stats-wrap {
            position: relative;
            z-index: 3;
            margin-top: -25px;
            padding-bottom: 0;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 22px;
        }

        .stat {
            min-height: 145px;
            border: 1.5px solid #e2e8f0;
            border-radius: 20px;
            background: #ffffff;
            padding: 30px 18px 24px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.03);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            overflow: hidden;
            outline: none;
        }

        .stat strong {
            display: block;
            color: #0f172a;
            font-size: 34px;
            font-weight: 800;
            line-height: 1;
            letter-spacing: -0.5px;
        }

        .stat span {
            display: block;
            margin-top: 10px;
            font-size: 13px;
            font-weight: 700;
            color: #475569;
            line-height: 1.35;
            max-width: 180px;
        }

        .stat:hover {
            transform: translateY(-6px);
            border-color: var(--blue);
            box-shadow: 0 20px 40px rgba(11, 37, 69, 0.12);
        }

        section {
            padding: 96px 0;
        }

        /* .hero manages its own vertical rhythm (min-height + .hero-copy padding +
           the overlapping .stats-wrap negative margin) — the generic section padding
           above would stack on top of that and shift the stats overlap. */
        .hero {
            padding: 0;
        }

        /* FAQ's left title column is much shorter than its answer list, so the
           generic 96px section padding on both sides of the #faq/#quote boundary
           reads as an oversized gap — tighten just this transition. */
        #faq {
            padding-bottom: 48px;
        }

        #quote {
            padding-top: 48px;
        }

        .section-intro {
            display: grid;
            grid-template-columns: 0.9fr 1fr;
            gap: 70px;
            align-items: start;
            margin-bottom: 48px;
        }

        .section-intro.center {
            display: block;
            max-width: 760px;
            margin: 0 auto 42px;
            text-align: center;
        }

        .section-intro h2,
        .center-title {
            margin: 0;
            color: #000;
            font-size: clamp(28px, 3.4vw, 42px);
            line-height: 1.12;
        }

        .section-intro p {
            margin: 0;
            color: var(--body);
        }

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

        .service-card {
            border: 1px solid #e2e8f0;
            border-radius: 14px;
            background: #ffffff;
            overflow: hidden;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            border-color: rgba(224, 67, 53, 0.5);
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(224, 67, 53, 0.14);
        }

        .resource-card,
        .work-card,
        .tool-card {
            border: 1px solid var(--ink);
            border-radius: 10px;
            background: #fff;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .resource-card:hover {
            border-color: var(--red);
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(224, 67, 53, 0.12);
        }

        .service-card figure {
            margin: 0;
            height: 170px;
            max-height: 170px;
            aspect-ratio: auto;
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-bottom: 1px solid #f1f5f9;
            position: relative;
            padding: 8px;
        }

        .service-card img {
            max-width: 92%;
            max-height: 154px;
            width: auto;
            height: auto;
            object-fit: contain;
            display: block;
            margin: 0 auto;
            padding: 0;
            background: transparent;
        }

        .model-count-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #0f172a;
            color: #ffffff;
            padding: 3px 9px;
            border-radius: 12px;
            font-size: 0.68rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.4px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.15);
        }

        .service-card-body {
            padding: 14px 16px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .service-card-title {
            margin: 0 0 8px;
            font-size: 1.05rem;
            font-weight: 800;
            color: #0f172a;
            line-height: 1.25;
        }

        .subtype-pills-wrap {
            margin-bottom: 14px;
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
        }

        .subtype-pill {
            padding: 3px 8px;
            font-size: 0.72rem;
            border-radius: 5px;
            background: #f1f5f9;
            color: #334155;
            font-weight: 700;
            border: 1px solid #e2e8f0;
        }

        .service-card-actions {
            display: flex;
            gap: 8px;
            align-items: center;
            margin-top: auto;
            padding-top: 12px;
            border-top: 1px solid #f1f5f9;
        }

        .card-btn-primary {
            flex: 1;
            text-align: center;
            padding: 8px 10px;
            font-size: 0.8rem;
            font-weight: 800;
            border-radius: 6px;
        }

        .quick-btn-call,
        .quick-btn-wa {
            width: 36px;
            height: 36px;
            flex-shrink: 0;
            border-radius: 6px;
            display: grid;
            place-items: center;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .quick-btn-call {
            background: rgba(6, 75, 155, 0.08);
            color: var(--blue);
            border: 1px solid rgba(6, 75, 155, 0.2);
        }
        .quick-btn-call:hover {
            background: var(--blue);
            color: #ffffff;
            transform: scale(1.08);
        }

        .quick-btn-wa {
            background: rgba(37, 211, 102, 0.12);
            color: #16a34a;
            border: 1px solid rgba(37, 211, 102, 0.3);
        }
        .quick-btn-wa:hover {
            background: #25d366;
            color: #ffffff;
            transform: scale(1.08);
        }

        .service-card h3,
        .resource-card h3 {
            margin: 0 0 12px;
            font-size: 20px;
            line-height: 1.15;
        }

        .service-card p,
        .resource-card p,
        .work-card p,
        .tool-card p {
            margin: 0;
            color: var(--body);
            font-size: 14px;
        }

        .light {
            background: var(--soft);
        }

        .tools {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .tool-card {
            border: 1px solid #f1f5f9;
            background: #f8fafc;
            border-radius: 20px;
            padding: 36px 32px;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .tool-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
        }

        .tool-card.alt {
            background: #fff5f3;
            border-color: #ffe4e0;
        }

        .pill {
            display: inline-flex;
            align-items: center;
            height: 32px;
            padding: 0 16px;
            border-radius: 20px;
            background: var(--red);
            color: #fff;
            font-size: 13px;
            font-weight: 800;
            width: max-content;
        }

        .pill.alt {
            background: rgba(224, 67, 53, 0.18);
            color: var(--red);
        }

        .tool-card h3 {
            margin: 18px 0 8px;
            font-size: 26px;
            font-weight: 800;
            color: #0f172a;
        }

        .tool-card p {
            margin: 0 0 24px;
            color: #475569;
            font-size: 14px;
            line-height: 1.5;
            flex: 1;
        }

        .tool-img-wrap {
            background: #ffffff;
            border-radius: 14px;
            border: 1px solid #e2e8f0;
            padding: 16px;
            margin-bottom: 24px;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .tool-card img {
            width: 100%;
            height: 220px;
            object-fit: contain;
            display: block;
        }

        .tool-btn {
            width: 100% !important;
            max-width: 100% !important;
            display: flex !important;
            align-items: center;
            justify-content: center;
            min-height: 48px !important;
            font-size: 15px;
            font-weight: 800;
            border-radius: 10px !important;
            text-align: center;
            text-decoration: none;
        }

        .tool-btn.alt {
            background: linear-gradient(135deg, #e04335, #c83225) !important;
        }

        /* ── Google Reviews Section Styling ── */
        .google-rating-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 42px;
            flex-wrap: wrap;
        }

        .google-rating-score {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1;
            color: #0c1427;
        }

        .google-rating-details {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .google-stars {
            color: #f59e0b;
            font-size: 1.25rem;
            letter-spacing: 2px;
        }

        .google-rating-count {
            font-size: 0.85rem;
            color: #718096;
            font-weight: 600;
        }

        .google-brand-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding-left: 18px;
            border-left: 1px solid #cbd5e0;
            font-size: 0.95rem;
            font-weight: 700;
            color: #5a6a82;
        }

        .google-reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 56px;
        }

        .google-review-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 28px 24px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 10px 30px rgba(12, 20, 39, 0.04);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .google-review-card:hover {
            transform: translateY(-4px);
            border-color: var(--red);
            box-shadow: 0 16px 36px rgba(224, 67, 53, 0.12);
        }

        .google-review-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .google-review-user {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .google-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            color: #fff;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .google-avatar.avatar-1 { background: #d97706; }
        .google-avatar.avatar-2 { background: #2563eb; }
        .google-avatar.avatar-3 { background: #059669; }

        .google-user-info h4 {
            margin: 0;
            font-size: 0.95rem;
            font-weight: 800;
            color: #1a202c;
        }

        .google-user-info span {
            font-size: 0.78rem;
            color: #a0aec0;
            font-weight: 500;
        }

        .google-review-stars {
            color: #f59e0b;
            font-size: 1.05rem;
            letter-spacing: 2px;
        }

        .google-review-text {
            margin: 0;
            color: #4a5568;
            font-size: 0.9rem;
            line-height: 1.6;
            font-weight: 450;
        }

        /* ── Partner / World Map Manufacturing Section ── */
        .partner-map-card {
            position: relative;
            background: #ffffff;
            border-radius: 24px;
            padding: 60px 48px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 10px 35px rgba(12, 20, 39, 0.04);
            margin-bottom: 60px;
            overflow: hidden;
        }

        .partner-map-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.35;
            pointer-events: none;
            z-index: 0;
        }

        .partner-map-content {
            position: relative;
            z-index: 1;
            max-width: 820px;
        }

        .partner-map-content h2 {
            font-size: clamp(26px, 3.2vw, 38px);
            font-weight: 800;
            color: #0c1427;
            margin: 0 0 20px;
            line-height: 1.18;
            letter-spacing: -0.01em;
        }

        .partner-map-content p {
            font-size: 1.05rem;
            color: #475569;
            line-height: 1.65;
            margin: 0 0 44px;
            max-width: 780px;
        }

        .map-stats-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }

        .map-stat-item strong {
            display: block;
            color: var(--red);
            font-size: 1.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 8px;
        }

        .map-stat-item span {
            display: block;
            color: #334155;
            font-size: 0.95rem;
            font-weight: 700;
            line-height: 1.35;
        }

        /* ── Factory / Machine Line Carousel Section ── */
        .factory-slider-wrap {
            position: relative;
            margin-top: 40px;
        }

        .factory-slider-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .mobile-only-br {
            display: none;
        }

        .factory-slider-title {
            font-size: 1.15rem;
            font-weight: 800;
            color: var(--ink);
        }

        .factory-slider-arrows {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .slider-arrow {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 1.5px solid #cbd5e1;
            background: #ffffff;
            color: var(--ink);
            padding: 0;
            line-height: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.25s ease;
            box-shadow: 0 2px 6px rgba(0,0,0,0.04);
        }

        .slider-arrow svg {
            width: 18px;
            height: 18px;
            display: block;
            flex-shrink: 0;
        }

        .slider-arrow:hover {
            background: var(--red);
            color: #ffffff;
            border-color: var(--red);
            box-shadow: 0 6px 16px rgba(224, 67, 53, 0.25);
            transform: scale(1.05);
        }

        .factory-grid {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            padding-bottom: 12px;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }

        .factory-grid::-webkit-scrollbar {
            display: none;
        }

        .factory-card {
            flex: 0 0 calc(25% - 15px);
            min-width: 270px;
            position: relative;
            height: 380px;
            border-radius: 20px;
            overflow: hidden;
            background: #111;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            cursor: pointer;
            display: block;
            text-decoration: none;
            color: inherit;
            scroll-snap-align: start;
        }

        .factory-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            padding: 0;
            background: #111;
            transition: transform 0.5s ease;
        }

        .factory-card:hover img {
            transform: scale(1.08);
        }

        div.factory-card {
            cursor: default;
        }

        .factory-card-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 2;
            background: rgba(22, 27, 38, 0.92);
            backdrop-filter: blur(8px);
            padding: 14px 18px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: #ffffff;
            transition: background 0.3s ease;
        }

        .factory-card-bar span {
            font-size: 0.92rem;
            font-weight: 700;
            letter-spacing: 0.01em;
            color: #ffffff;
        }

        .factory-arrow {
            font-style: normal;
            font-size: 1.1rem;
            color: #94a3b8;
            transition: all 0.3s ease;
        }

        .factory-card:hover .factory-arrow {
            color: var(--red);
            transform: translate(3px, -3px);
        }

        .factory-hover-overlay {
            position: absolute;
            inset: 0;
            z-index: 5;
            background: linear-gradient(180deg, rgba(11, 20, 39, 0.45) 0%, rgba(11, 20, 39, 0.96) 100%);
            backdrop-filter: blur(6px);
            padding: 24px 20px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            gap: 8px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            border-radius: 20px;
        }

        .factory-card:hover .factory-hover-overlay {
            opacity: 1;
            visibility: visible;
        }

        .factory-tag {
            font-size: 0.68rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 800;
            color: #ff9e93;
            background: rgba(224, 67, 53, 0.22);
            border: 1px solid rgba(224, 67, 53, 0.4);
            padding: 3px 10px;
            border-radius: 4px;
            display: inline-block;
            width: max-content;
            margin-bottom: 2px;
        }

        .factory-hover-overlay h4 {
            margin: 0;
            color: #ffffff;
            font-size: 1.2rem;
            font-weight: 800;
            line-height: 1.25;
        }

        .factory-hover-overlay p {
            margin: 0;
            color: #cbd5e1;
            font-size: 0.85rem;
            line-height: 1.48;
            font-weight: 400;
        }

        .factory-link-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            margin-top: 10px;
            background: var(--red);
            color: #ffffff !important;
            font-size: 0.8rem;
            font-weight: 800;
            padding: 8px 16px;
            border-radius: 6px;
            text-decoration: none;
            width: max-content;
            transition: background 0.2s ease, transform 0.2s ease;
            box-shadow: 0 4px 12px rgba(224, 67, 53, 0.3);
        }

        .factory-link-btn:hover {
            background: #c83225;
            transform: translateY(-1px);
        }

        /* ── Modern Digital Platform Accordion & Preview ── */
        .platform-heading {
            font-size: 32px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 12px;
            white-space: nowrap;
        }

        @media (max-width: 1100px) {
            .platform-heading {
                white-space: normal;
                font-size: clamp(24px, 5vw, 32px);
            }
        }

        .platform {
            display: grid;
            grid-template-columns: 1fr 1fr;
            max-width: 1080px;
            margin: 0 auto;
            gap: 36px;
            align-items: start;
        }

        .accordion {
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            overflow: hidden;
            background: #ffffff;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            display: flex;
            flex-direction: column;
            height: fit-content;
        }

        .acc-row {
            border-bottom: 1px solid #e2e8f0;
            padding: 18px 22px;
            cursor: pointer;
            transition: background 0.2s ease;
        }

        .acc-row:last-child {
            border-bottom: 0;
        }

        .acc-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
        }

        .acc-icon-box {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            color: var(--red);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.2s ease;
        }

        .acc-row.open .acc-icon-box {
            background: var(--red);
            color: #ffffff;
            border-color: var(--red);
        }

        .acc-title {
            font-size: 1.08rem;
            font-weight: 800;
            color: #0f172a;
            flex: 1;
        }

        .acc-toggle-icon {
            font-size: 1.3rem;
            font-weight: 800;
            color: #64748b;
            width: 24px;
            text-align: center;
        }

        .acc-row.open .acc-toggle-icon {
            color: var(--red);
        }

        .acc-body {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            margin-top: 0;
            padding-top: 0;
            border-top: 0 dashed #e2e8f0;
            transition: max-height 0.4s ease, opacity 0.35s ease, margin-top 0.35s ease, padding-top 0.35s ease, border-top-width 0.35s ease;
        }

        .acc-row.open .acc-body {
            max-height: 600px;
            opacity: 1;
            margin-top: 14px;
            padding-top: 14px;
            border-top-width: 1px;
            transition: max-height 0.4s ease, opacity 0.45s ease 0.05s, margin-top 0.35s ease, padding-top 0.35s ease, border-top-width 0.35s ease;
        }

        .acc-body p {
            margin: 0 0 14px;
            color: #475569;
            font-size: 0.9rem;
            line-height: 1.55;
        }

        .acc-check-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .acc-check-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.88rem;
            font-weight: 600;
            color: #334155;
        }

        .check-icon {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(224, 67, 53, 0.15);
            color: var(--red);
            font-size: 0.75rem;
            font-weight: 900;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        /* ── Right Column Preview Window ── */
        .platform-preview {
            border: 1px solid #ffe4e0;
            border-radius: 16px;
            background: #ffffff;
            box-shadow: 0 10px 30px rgba(224, 67, 53, 0.06);
            overflow: hidden;
            padding: 20px;
            display: flex;
            flex-direction: column;
        }

        .preview-card {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .preview-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #ffffff;
            padding: 12px 18px;
            border-bottom: 1px solid #e2e8f0;
        }

        .preview-tabs {
            display: flex;
            gap: 8px;
        }

        .file-tag {
            font-size: 0.78rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 6px;
            background: #f1f5f9;
            color: #64748b;
        }

        .file-tag.active {
            background: rgba(224, 67, 53, 0.15);
            color: var(--red);
        }

        .status-badge {
            font-size: 0.78rem;
            font-weight: 700;
            color: #16a34a;
        }

        .preview-body {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 16px;
            padding: 18px;
            flex: 1;
            align-items: center;
        }

        .cad-viewer {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            height: 100%;
            min-height: 210px;
        }

        .cad-label {
            margin-top: 12px;
            font-size: 0.78rem;
            font-weight: 700;
            color: #64748b;
        }

        .spec-sidebar {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .spec-field label {
            display: block;
            font-size: 0.7rem;
            font-weight: 700;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 2px;
        }

        .spec-input {
            background: #ffffff;
            border: 1px solid #cbd5e1;
            border-radius: 6px;
            padding: 5px 9px;
            font-size: 0.8rem;
            font-weight: 700;
            color: #0f172a;
        }

        .spec-input.dotted {
            border-style: dashed;
            color: var(--red);
        }

        .price-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 4px;
            font-size: 0.8rem;
        }

        .price-val {
            color: var(--red);
            font-size: 0.92rem;
            font-weight: 800;
        }

        .spec-btn {
            background: var(--red);
            color: #ffffff !important;
            border-radius: 8px;
            padding: 9px 12px;
            font-size: 0.82rem;
            font-weight: 800;
            text-align: center;
            text-decoration: none;
            margin-top: 4px;
            transition: background 0.2s ease;
        }

        .spec-btn:hover {
            background: #c83225;
        }

        .platform-cta-wrap {
            text-align: center;
            margin-top: 36px;
        }

        .platform-cta-btn {
            background: var(--red) !important;
            padding: 14px 32px !important;
            font-size: 16px !important;
            font-weight: 800 !important;
            border-radius: 10px !important;
            display: inline-flex !important;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .chat-bubble span {
            display: block;
            padding: 18px;
            color: var(--body);
            font-size: 14px;
        }

        .work-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            max-width: 820px;
            margin: 0 auto 44px;
        }

        .work-card {
            min-height: 210px;
            border: 0;
            background: #ebebeb;
            padding: 28px;
        }

        .work-icon {
            display: grid;
            width: 48px;
            height: 48px;
            place-items: center;
            margin-bottom: 26px;
            border-radius: 50%;
            background: #fff;
            color: var(--red);
            font-size: 24px;
            font-weight: 900;
        }

        /* ── Stepper Timeline & Solution Detail Section ── */
        .timeline {
            max-width: 1040px;
            margin: 0 auto;
        }

        .timeline-line {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            align-items: start;
            margin: 70px 0 44px;
            border-top: 2px solid #e2e8f0;
            position: relative;
        }

        .timeline-step-item {
            text-align: center;
            cursor: pointer;
            position: relative;
        }

        .timeline-node-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 2px solid #cbd5e1;
            background: #ffffff;
            color: #64748b;
            margin: -23px auto 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 2px 6px rgba(0,0,0,0.04);
        }

        .timeline-step-item.active .timeline-node-icon {
            border-color: var(--red);
            color: var(--red);
            background: #ffffff;
            box-shadow: 0 0 0 6px rgba(224, 67, 53, 0.15);
            transform: scale(1.08);
        }

        .timeline-step-item:hover .timeline-node-icon {
            border-color: var(--red);
            color: var(--red);
        }

        .timeline-node-label {
            display: block;
            font-size: 0.85rem;
            font-weight: 700;
            color: #64748b;
            transition: color 0.3s ease;
            padding: 0 8px;
        }

        .timeline-step-item.active .timeline-node-label {
            color: #0f172a;
            font-weight: 800;
        }

        .solution-detail {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 20px;
            padding: 36px 32px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        }

        .solution-step-header {
            margin-bottom: 28px;
        }

        .step-panel-title {
            margin: 0 0 6px;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--red);
        }

        .step-panel-lead {
            margin: 0;
            font-size: 0.95rem;
            color: #475569;
            line-height: 1.5;
        }

        .solution-grid {
            display: grid;
            grid-template-columns: 1fr 1.25fr;
            gap: 40px;
            align-items: center;
        }

        .solution-img-col {
            max-height: 380px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 14px;
            border: 1px solid #e2e8f0;
            background: #ffffff;
            box-shadow: 0 8px 24px rgba(0,0,0,0.05);
        }

        .solution-img-col img {
            width: 100%;
            max-height: 380px;
            object-fit: contain;
            border-radius: 14px;
            display: block;
            padding: 12px;
        }

        .check-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 20px;
        }

        .check-item:last-child {
            margin-bottom: 0;
        }

        .check-item .check-icon {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: rgba(224, 67, 53, 0.15);
            color: var(--red);
            font-size: 0.8rem;
            font-weight: 900;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .check-item b {
            display: block;
            font-size: 1.02rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 4px;
        }

        .check-item p {
            margin: 0;
            font-size: 0.88rem;
            color: #475569;
            line-height: 1.5;
        }

        .solution-actions {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-top: 28px;
        }

        .solution-btn-primary {
            background: var(--red) !important;
            color: #ffffff !important;
            padding: 12px 24px !important;
            border-radius: 8px !important;
            font-size: 0.92rem !important;
            font-weight: 800 !important;
            text-decoration: none;
        }

        /* ── Industry & Application Spotlight Machine Card ── */
        .app-single-spotlight {
            display: grid;
            grid-template-columns: 320px 1fr;
            background: #ffffff;
            border: 1px solid #cbd5e1;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0,0,0,0.05);
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
        }
        .app-single-spotlight:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 36px rgba(6, 75, 155, 0.12);
            border-color: rgba(6, 75, 155, 0.35);
        }
        .app-spotlight-img {
            background: #f8fafc;
            border-right: 1px solid #e2e8f0;
            padding: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .app-spotlight-img img {
            max-width: 100%;
            max-height: 220px;
            object-fit: contain;
        }
        .app-spotlight-body {
            padding: 28px 32px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .app-spotlight-badge {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 800;
            color: var(--red);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 6px;
        }
        .app-spotlight-title {
            font-size: 1.35rem;
            font-weight: 900;
            color: #0f172a;
            margin: 0 0 14px;
            line-height: 1.25;
        }
        .app-spotlight-specs {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 10px;
            margin-bottom: 20px;
        }
        .app-spec-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.86rem;
            color: #475569;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            padding: 8px 12px;
            border-radius: 8px;
        }
        .app-spotlight-actions {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
            padding-top: 18px;
            border-top: 1px solid #f1f5f9;
        }
        @media (max-width: 840px) {
            .app-single-spotlight { grid-template-columns: 1fr; }
            .app-spotlight-img { border-right: none; border-bottom: 1px solid #e2e8f0; padding: 20px; }
            .app-spotlight-body { padding: 20px; }
            .app-spotlight-actions { flex-direction: column; width: 100%; }
            .app-spotlight-actions .button { width: 100%; text-align: center; justify-content: center; }
        }

        .solution-btn-outline {
            background: transparent !important;
            color: var(--red) !important;
            border: 1.5px solid var(--red) !important;
            padding: 12px 24px !important;
            border-radius: 8px !important;
            font-size: 0.92rem !important;
            font-weight: 800 !important;
            text-decoration: none;
            transition: background 0.2s ease;
        }

        .solution-btn-outline:hover {
            background: rgba(224, 67, 53, 0.08) !important;
        }

        .check-list b {
            display: block;
            color: var(--ink);
        }

        .check-list p {
            margin: 4px 0 0;
            color: var(--body);
        }

        .quality {
            display: grid;
            grid-template-columns: 1fr 0.85fr;
            gap: 90px;
            align-items: center;
        }

        .quality h2 {
            margin: 0 0 16px;
            font-size: 35px;
            line-height: 1.15;
        }

        .quality-item {
            margin-top: 24px;
        }

        .quality-item b {
            display: block;
            color: var(--red);
            margin-bottom: 8px;
        }

        .video-card {
            position: relative;
            border-bottom: 12px solid var(--red);
        }

        .video-card img {
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: contain;
            padding: 14px;
            background: #fff;
        }

        .play {
            position: absolute;
            inset: 50% auto auto 50%;
            display: grid;
            width: 76px;
            height: 76px;
            place-items: center;
            border: 3px solid #fff;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.28);
            color: #fff;
            font-size: 30px;
            transform: translate(-50%, -50%);
        }

        .resource-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            width: 100%;
            margin: 0;
            justify-content: flex-start;
        }

        .resource-card {
            flex: 1 1 320px;
            max-width: 360px;
            width: 100%;
            border: 1px solid #e2e8f0;
            background: #ffffff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0,0,0,0.03);
            display: flex;
            flex-direction: column;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }

        .resource-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 14px 32px rgba(6, 75, 155, 0.1);
            border-color: rgba(6, 75, 155, 0.25);
        }

        .resource-card figure {
            height: 165px;
            background: #f8fafc;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-bottom: 1px solid #f1f5f9;
        }

        .resource-card figure img {
            max-width: 88%;
            max-height: 140px;
            object-fit: contain;
        }

        .resource-card div {
            padding: 18px 20px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .resource-card time {
            color: #64748b;
            font-size: 0.82rem;
            margin-top: auto;
        }

        .faq-wrap {
            display: grid;
            grid-template-columns: 0.55fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .faq-intro {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 18px;
        }

        .faq-intro p {
            margin: 0;
            color: var(--body);
            font-size: 15px;
            line-height: 1.6;
        }

        .faq-title {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 32px;
            font-weight: 800;
            color: #0f172a;
        }

        .faq-title::after {
            width: 50px;
            height: 3px;
            background: var(--red);
            border-radius: 2px;
            content: "";
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .faq-item {
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            background: #ffffff;
            padding: 18px 22px;
            cursor: pointer;
            transition: all 0.25s ease;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
        }

        .faq-item:hover {
            border-color: #cbd5e1;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
        }

        .faq-item.open {
            border-color: #ffd3cf;
            box-shadow: 0 8px 20px rgba(224, 67, 53, 0.08);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            font-size: 0.98rem;
            font-weight: 800;
            color: #0f172a;
            user-select: none;
        }

        details summary {
            list-style: none;
        }
        details summary::-webkit-details-marker {
            display: none;
        }

        .faq-arrow {
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.open .faq-arrow,
        details[open] .faq-arrow {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            margin-top: 0;
            padding-top: 0;
            border-top: 0 dashed #e2e8f0;
            transition: max-height 0.4s ease, opacity 0.35s ease, margin-top 0.35s ease, padding-top 0.35s ease, border-top-width 0.35s ease;
        }

        .faq-item.open .faq-answer {
            max-height: 400px;
            opacity: 1;
            margin-top: 14px;
            padding-top: 14px;
            border-top-width: 1px;
            transition: max-height 0.4s ease, opacity 0.45s ease 0.05s, margin-top 0.35s ease, padding-top 0.35s ease, border-top-width 0.35s ease;
        }

        .faq-answer p {
            margin: 0;
            font-size: 0.9rem;
            color: #475569;
            line-height: 1.6;
            font-weight: 500;
        }

        .quote-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        /* ── Modern 3-Tier Footer Section (NEXCNC Dark Navy Theme) ── */
        .footer {
            background: var(--blue-dark);
            border-top: 1px solid #1e293b;
            color: #94a3b8;
            padding: 64px 0 32px;
        }

        .footer-main-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-logo {
            height: 48px;
            width: auto;
            display: block;
            margin-bottom: 16px;
        }

        .footer-company-name {
            font-size: 0.85rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
        }

        .footer-contact-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.88rem;
            color: #cbd5e1;
            text-decoration: none;
            line-height: 1.45;
            transition: color 0.2s ease;
        }

        a.footer-contact-item:hover {
            color: var(--red);
        }

        .footer-contact-item svg {
            color: var(--red);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .footer-contact-item small {
            display: block;
            font-size: 0.75rem;
            color: #64748b;
        }

        .footer-col-title {
            font-size: 0.85rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            margin: 0 0 20px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links a,
        .footer-links button {
            font-size: 0.88rem;
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.2s ease;
            background: none;
            border: 0;
            padding: 0;
            font-family: inherit;
            cursor: pointer;
            text-align: left;
        }

        .footer-links a:hover,
        .footer-links button:hover {
            color: #ffffff;
        }

        /* Tier 2: Middle Bar (Social Badges & Newsletter) */
        .footer-middle-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            padding-top: 32px;
            margin-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-social-list {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .social-badge {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .social-badge:hover {
            background: var(--red);
            border-color: var(--red);
            transform: translateY(-2px);
        }

        .footer-newsletter-form {
            display: flex;
            align-items: center;
        }

        .newsletter-input {
            padding: 10px 16px;
            font-size: 0.88rem;
            border: 1px solid #1e3a5f;
            border-right: 0;
            border-radius: 6px 0 0 6px;
            outline: none;
            width: 280px;
            background: #0f2744;
            color: #ffffff;
            transition: border-color 0.2s ease;
        }

        .newsletter-input::placeholder {
            color: #64748b;
        }

        .newsletter-input:focus {
            border-color: var(--red);
        }

        .newsletter-submit-btn {
            padding: 10px 22px;
            font-size: 0.88rem;
            font-weight: 800;
            color: #ffffff;
            background: var(--red);
            border: 1px solid var(--red);
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background 0.2s ease;
        }

        .newsletter-submit-btn:hover {
            background: #c8372a;
        }

        /* Tier 3: Bottom Legal Bar */
        .footer-bottom-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding-top: 24px;
            margin-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.82rem;
            color: #64748b;
        }

        .footer-brand-link {
            color: #cbd5e1;
            font-weight: 700;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-brand-link:hover {
            color: var(--red);
        }

        .footer-legal-links {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .footer-legal-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-legal-links a:hover {
            color: #ffffff;
        }

        .footer-copyright-break {
            display: none;
        }

        .footer-credit {
            display: block;
            margin-top: 4px;
            font-size: 0.78rem;
            color: #64748b;
        }

        /* ── Policy Pages & Legal Documentation Styling (Compact & Clean) ── */
        .policy-hero {
            background: linear-gradient(135deg, #071a33 0%, #0b2545 100%);
            color: #ffffff;
            padding: 36px 0 30px;
            border-bottom: 3px solid var(--red);
        }

        .policy-badge {
            display: inline-block;
            background: rgba(224, 67, 53, 0.2);
            color: #ff8a7a;
            border: 1px solid rgba(224, 67, 53, 0.4);
            font-size: 0.75rem;
            font-weight: 800;
            padding: 3px 10px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            margin-bottom: 8px;
        }

        .policy-hero h1 {
            font-size: clamp(26px, 4vw, 36px);
            font-weight: 900;
            margin: 0 0 6px;
            color: #ffffff;
        }

        .policy-date {
            font-size: 0.85rem;
            color: #94a3b8;
            margin: 0;
        }

        .policy-layout {
            display: grid;
            grid-template-columns: 240px 1fr;
            gap: 28px;
            align-items: start;
        }

        .policy-sidebar {
            position: sticky;
            top: 90px;
        }

        .policy-toc {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 16px 18px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.02);
        }

        .policy-toc h4 {
            font-size: 0.82rem;
            font-weight: 800;
            color: #0f172a;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            margin: 0 0 10px;
            padding-bottom: 8px;
            border-bottom: 1px solid #e2e8f0;
        }

        .policy-toc a {
            display: block;
            font-size: 0.84rem;
            color: #475569;
            text-decoration: none;
            padding: 4px 0;
            transition: color 0.2s ease;
        }

        .policy-toc a:hover {
            color: var(--red);
            font-weight: 700;
        }

        .policy-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 14px;
            padding: 24px 28px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.02);
            overflow: hidden;
            outline: none;
        }

        .policy-card section {
            padding: 0;
            margin-bottom: 22px;
            scroll-margin-top: 100px;
        }

        .policy-card section:last-child {
            margin-bottom: 0;
        }

        .policy-card h2 {
            font-size: 1.2rem;
            font-weight: 800;
            color: #0f172a;
            margin: 0 0 8px;
            padding-bottom: 6px;
            border-bottom: 1.5px solid #f1f5f9;
        }

        .policy-card p {
            font-size: 0.92rem;
            color: #334155;
            line-height: 1.55;
            margin: 0 0 8px;
        }

        .policy-card ul {
            padding-left: 18px;
            margin: 0 0 8px;
        }

        .policy-card li {
            font-size: 0.9rem;
            color: #334155;
            line-height: 1.5;
            margin-bottom: 6px;
        }

        .policy-callout {
            background: #f8fafc;
            border-left: 3px solid var(--red);
            padding: 12px 16px;
            border-radius: 0 8px 8px 0;
            margin: 10px 0;
        }

        .policy-callout b {
            display: block;
            font-size: 0.9rem;
            color: #0f172a;
            margin-bottom: 4px;
        }

        .policy-contact-box {
            background: #fff5f3;
            border: 1px solid #ffe4e0;
            padding: 14px 18px;
            border-radius: 10px;
            font-size: 0.88rem;
            color: #334155;
            line-height: 1.5;
        }

        .policy-contact-box a {
            color: var(--red);
            font-weight: 700;
            text-decoration: none;
        }

        .consent-option {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 14px 18px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            overflow: hidden;
            outline: none;
        }

        .consent-info h3 {
            margin: 0 0 6px;
            font-size: 1.05rem;
            font-weight: 800;
            color: #0f172a;
        }

        .consent-info p {
            margin: 0;
            font-size: 0.88rem;
            color: #475569;
            line-height: 1.5;
        }

        .consent-switch input {
            display: none;
        }

        .switch-slider {
            width: 48px;
            height: 26px;
            background: #cbd5e1;
            display: block;
            border-radius: 13px;
            position: relative;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .switch-slider::before {
            content: "";
            width: 20px;
            height: 20px;
            background: #ffffff;
            border-radius: 50%;
            position: absolute;
            top: 3px;
            left: 3px;
            transition: transform 0.3s ease;
        }

        .consent-switch input:checked + .switch-slider {
            background: var(--red);
        }

        .consent-switch input:checked + .switch-slider::before {
            transform: translateX(22px);
        }

        @media (max-width: 860px) {
            .policy-layout {
                grid-template-columns: 1fr;
            }

            .policy-sidebar {
                position: static;
            }

            .policy-card {
                padding: 24px 20px;
            }

            .consent-option {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        .footer-legal-links a {
            color: #64748b;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-legal-links a:hover {
            color: var(--red);
        }

        @media (max-width: 992px) {
            .footer-main-grid {
                grid-template-columns: 1fr 1fr;
                gap: 36px;
            }

            .footer-middle-bar {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
        }

        @media (max-width: 600px) {
            .footer-main-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom-bar {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

            .footer-copyright-break {
                display: block;
            }

            .footer-legal-links {
                flex-wrap: wrap;
                gap: 10px 16px;
            }

            .footer-newsletter-form {
                width: 100%;
            }

            .newsletter-input {
                width: 100%;
            }
        }

        .floating-chat {
            position: fixed;
            right: 24px;
            bottom: 24px;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 14px;
            border-radius: 50%;
            background: #25D366;
            color: #ffffff;
            box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
            text-decoration: none;
            font-size: 14px;
            font-weight: 800;
            transition: all 0.3s ease;
        }

        .floating-chat-text {
            display: none;
        }

        .floating-chat:hover {
            background: #20ba5a;
            box-shadow: 0 14px 34px rgba(37, 211, 102, 0.6);
            transform: translateY(-3px);
            color: #ffffff;
        }

        .floating-chat svg {
            flex-shrink: 0;
            filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
        }

        @media (max-width: 1280px) {
            .nav {
                display: none;
            }

            .mobile-toggle {
                display: inline-flex;
            }

            .contact-header-link,
            .whatsapp-header-btn,
            .header-actions .button {
                display: none;
            }
        }

        @media (min-width: 1281px) {
            .mobile-drawer,
            .mobile-drawer-backdrop {
                display: none;
            }
        }

        @media (max-width: 1080px) {
            .nav {
                display: none;
            }

            .mobile-toggle {
                display: inline-flex;
            }

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

            .hero::before {
                background: linear-gradient(180deg, #fff 0%, #fff 58%, #eef2f7 100%);
            }

            .hero-copy {
                padding-right: 0;
                padding-bottom: 34px;
                padding-left: 0;
            }

            .hero-media {
                min-height: 360px;
                margin-right: 0;
            }

            .hero-media img {
                display: block;
                position: relative;
                width: 100%;
                height: auto;
                max-height: 300px;
                padding: 20px;
                object-fit: contain;
                object-position: center;
                background: #fff;
            }

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

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

            .factory-card {
                flex: 0 0 calc(33.333% - 14px);
            }

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

            .platform,
            .quality,
            .section-intro {
                grid-template-columns: 1fr;
                gap: 34px;
            }
        }

        /* Tablet range only — below this, .hero-cta-row's own max-width:760px
           rules take over and stack everything full-width instead. */
        @media (min-width: 761px) and (max-width: 1080px) {
            .hero-cta-row {
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                justify-content: center;
                gap: 10px;
                margin-top: 24px;
            }

            .hero-actions,
            .hero-contact {
                display: contents;
            }

            .hero-actions .button {
                width: auto;
                min-height: 42px;
                padding: 0 18px;
                font-size: 13px;
                white-space: nowrap;
            }
        }

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

            .tools {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .tool-card {
                padding: 24px 20px;
            }

            .solution-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            /* Hide the image on mobile to keep the card compact */
            .solution-img-col {
                display: none;
            }

            .solution-detail {
                padding: 24px 20px;
            }

            .solution-actions {
                flex-direction: column;
                gap: 10px;
            }

            .solution-actions .button {
                width: 100%;
                text-align: center;
            }

            .notice .container {
                align-items: flex-start;
                flex-direction: column;
                gap: 8px;
                padding: 12px 0;
            }

            .notice {
                font-size: 14px;
                line-height: 1.35;
            }

            .header .container {
                min-height: 72px;
                gap: 10px;
            }

            .brand {
                min-width: 0;
                font-size: 20px;
            }

            .brand-mark {
                width: 38px;
                height: 38px;
                flex: 0 0 38px;
            }

            .brand small {
                font-size: 10px;
            }

            .header-actions {
                flex: 0 0 auto;
                gap: 12px;
            }

            .top-bar-break {
                display: block;
            }

            .top-bar-left {
                line-height: 1.25;
            }

            .top-bar-call-text {
                display: none;
            }

            .top-bar-wa-text {
                display: none;
            }

            .top-bar-wa-badge {
                padding: 4px 10px;
            }

            .header-actions .icon-btn {
                display: none;
            }

            .header-actions .button {
                width: auto;
                max-width: 116px;
                min-height: 44px;
                padding: 0 10px;
                font-size: 12px;
                line-height: 1.1;
                white-space: normal;
            }

            .hero {
                background: #fff;
            }

            .hero .container {
                min-height: 0;
            }

            .hero-copy {
                padding-top: 28px;
                padding-bottom: 24px;
            }

            .hero-media {
                min-height: 0;
            }

            h1 {
                font-size: clamp(38px, 12vw, 48px);
                line-height: 1.06;
            }

            .eyebrow {
                margin-bottom: 18px;
                font-size: 14px;
            }

            .lead {
                font-size: 17px;
            }

            .trust-line {
                margin-bottom: 18px;
            }

            .trust-line span,
            .trust-line b {
                min-height: 26px;
                padding: 0 9px;
                font-size: 12px;
            }

            .hero-fit {
                grid-template-columns: 1fr;
                gap: 6px;
            }

            .fit-item {
                min-height: 34px;
                font-size: 13px;
            }

            .hero-actions,
            .tools,
            .platform,
            .work-grid,
            .resource-grid,
            .faq-wrap,
            .solution-detail,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .preview-body {
                grid-template-columns: 1fr;
            }

            .hero-actions {
                display: grid;
            }

            .hero-actions .button,
            .tool-card .button,
            .work-grid + p .button,
            .quote-grid .button,
            .check-list .button {
                width: 100%;
            }

            .stats-wrap {
                margin-top: 0;
                padding: 18px 0;
                background: var(--soft);
            }

            .stats,
            .google-reviews-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .service-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 10px !important;
            }

            .service-card {
                border-radius: 10px !important;
            }

            .service-card figure {
                height: 125px !important;
                max-height: 125px !important;
                padding: 4px !important;
            }

            .service-card figure img {
                max-height: 112px !important;
            }

            .model-count-badge {
                top: 6px !important;
                right: 6px !important;
                font-size: 0.6rem !important;
                padding: 2px 6px !important;
            }

            .service-card-body {
                padding: 10px 10px !important;
            }

            .service-card-title {
                font-size: 0.92rem !important;
                margin-bottom: 6px !important;
            }

            .subtype-pills-wrap {
                margin-bottom: 10px !important;
                gap: 4px !important;
            }

            .subtype-pill {
                font-size: 0.65rem !important;
                padding: 2px 6px !important;
            }

            .service-card-actions {
                padding-top: 8px !important;
                gap: 6px !important;
            }

            .card-btn-primary {
                padding: 7px 6px !important;
                font-size: 0.72rem !important;
            }

            .quick-btn-call,
            .quick-btn-wa {
                width: 30px !important;
                height: 30px !important;
            }

            .mobile-only-br {
                display: block;
            }

            .factory-slider-header {
                align-items: flex-end;
                gap: 10px;
                margin-bottom: 16px;
            }

            .factory-slider-title {
                font-size: 1.02rem;
                line-height: 1.25;
            }

            .slider-arrow {
                width: 36px;
                height: 36px;
                padding: 0;
                line-height: 1;
            }

            .slider-arrow svg {
                width: 15px;
                height: 15px;
            }

            .factory-grid {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                padding-bottom: 12px;
                gap: 16px;
                scrollbar-width: thin;
                scrollbar-color: var(--red) transparent;
            }

            .factory-card {
                flex: 0 0 280px;
                height: 340px;
            }

            .map-stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .partner-map-card {
                padding: 36px 24px;
            }

            section {
                padding: 42px 0;
            }

            .section-intro {
                margin-bottom: 24px;
            }

            .section-intro h2,
            .center-title,
            .partner-map h2,
            .quality h2 {
                font-size: 28px;
            }

            .service-card,
            .resource-card,
            .work-card,
            .tool-card {
                border-radius: 8px;
            }

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

            .platform-preview {
                padding: 16px;
            }

            .quote-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            /* Centre the stepper block inside the container */
            .timeline {
                text-align: center;
            }

            /* ── Mobile vertical stepper — centered block ── */
            .timeline-line {
                display: inline-flex;       /* shrink-wrap to content width */
                flex-direction: column;
                gap: 0;
                border-top: 0;
                margin: 36px auto 32px;     /* auto left/right = horizontally centred */
                position: relative;
            }

            /* Vertical connecting line passes through centre of the 44 px icons */
            .timeline-line::before {
                content: "";
                position: absolute;
                top: 32px;          /* start below first icon centre */
                bottom: 32px;       /* stop above last icon centre   */
                left: 21px;         /* 44/2 = 22px, minus 1px for line half-width */
                width: 2px;
                background: linear-gradient(to bottom, var(--red) 0%, #e2e8f0 100%);
                border-radius: 2px;
                z-index: 0;
            }

            .timeline-step-item {
                display: flex;
                align-items: center;
                gap: 20px;
                text-align: left;
                padding: 8px 0;
                cursor: pointer;
                position: relative;
                z-index: 1;
            }

            .timeline-node-icon {
                margin: 0;
                flex-shrink: 0;
                width: 44px;
                height: 44px;
                background: #f8fafc;
            }

            .timeline-step-item.active .timeline-node-icon {
                background: #fff5f4;
            }

            .timeline-node-label {
                font-size: 0.95rem;
                padding: 0;
                white-space: nowrap;    /* keep label on one line */
            }

            .timeline-step-item.active .timeline-node-label {
                font-size: 1rem;
            }

            .faq-wrap {
                gap: 26px;
            }

            .hero-contact {
                display: flex;
                align-items: center;
                gap: 10px;
                width: 100%;
            }

            .hero-call-link,
            .hero-wa-badge {
                flex: 1;
                min-width: 0;
                height: 40px;
                font-size: 12px;
                padding: 0 8px;
                justify-content: center;
                white-space: nowrap;
            }

            .floating-chat {
                right: 16px;
                bottom: 16px;
            }
        }

        @media (max-width: 430px) {
            .container {
                width: min(100% - 22px, 1180px);
            }

            .notice {
                font-size: 13px;
            }

            .header .container {
                min-height: 68px;
            }

            .brand {
                gap: 9px;
                font-size: 19px;
            }

            .brand-mark {
                width: 36px;
                height: 36px;
                flex-basis: 36px;
                font-size: 17px;
            }

            .header-actions .button {
                max-width: 104px;
                min-height: 40px;
                padding: 0 8px;
                font-size: 11px;
            }

            .hero-copy {
                padding-top: 24px;
            }

            .trust-line {
                gap: 7px;
            }

            h1 {
                font-size: clamp(36px, 11vw, 43px);
            }

            .lead {
                font-size: 16px;
                line-height: 1.55;
            }

            .hero-media img {
                max-height: 230px;
                padding: 12px 0 18px;
            }

            .stat {
                min-height: 98px;
            }

            .stat strong {
                font-size: 30px;
            }
        }

        /* Privacy & Cookie Consent Banner */
        .cookie-banner {
            position: fixed;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%) translateY(150%);
            width: min(1060px, calc(100% - 32px));
            background: #0b192e;
            border: 1px solid rgba(224, 67, 53, 0.4);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
            border-radius: 14px;
            padding: 18px 24px;
            z-index: 9999;
            color: #ffffff;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
            opacity: 0;
        }

        .cookie-banner.show {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }

        .cookie-banner-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .cookie-banner-text h4 {
            margin: 0 0 4px;
            font-size: 1rem;
            font-weight: 800;
            color: #ffffff;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .cookie-banner-text p {
            margin: 0;
            font-size: 0.86rem;
            color: #94a3b8;
            line-height: 1.45;
        }

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

        .cookie-btn-primary {
            background: var(--red);
            color: #ffffff;
            border: none;
            padding: 10px 18px;
            border-radius: 6px;
            font-weight: 800;
            font-size: 0.86rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
        }

        .cookie-btn-primary:hover {
            background: var(--red-dark);
            transform: translateY(-1px);
        }

        .cookie-btn-secondary {
            background: rgba(255, 255, 255, 0.08);
            color: #e2e8f0;
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 10px 16px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 0.86rem;
            cursor: pointer;
            transition: background 0.2s, color 0.2s;
        }

        .cookie-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.18);
            color: #ffffff;
        }

        .cookie-btn-link {
            color: #cbd5e1;
            font-weight: 700;
            font-size: 0.84rem;
            text-decoration: underline;
            padding: 8px;
            transition: color 0.2s;
        }

        .cookie-btn-link:hover {
            color: #ffffff;
        }

        /* Global Consent Toast Notification */
        .consent-toast {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #0f172a;
            color: #ffffff;
            padding: 14px 20px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 10000;
            border-left: 4px solid #10b981;
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            pointer-events: none;
        }

        .consent-toast.show {
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
        }

        @media (max-width: 768px) {
            .cookie-banner-content {
                flex-direction: column;
                align-items: flex-start;
            }

            .cookie-banner-actions {
                width: 100%;
                flex-wrap: wrap;
            }

            .cookie-btn-primary, .cookie-btn-secondary {
                flex: 1;
                text-align: center;
            }

            .consent-toast {
                left: 16px;
                right: 16px;
                bottom: 16px;
            }
        }

        .quote-alert-box.success-box {
            background: #dcfce7;
            color: #166534;
            border: 1px solid #bbf7d0;
        }
        .quote-alert-box.error-box {
            background: #fee2e2;
            color: #991b1b;
            border: 1px solid #fecaca;
        }

        .nx-modal-backdrop { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(6, 18, 36, 0.72); backdrop-filter: blur(2px); overflow-y: auto; padding: 40px 20px; }
        .nx-modal-backdrop.active { display: block; }
        .nx-modal { background: #ffffff; border-radius: 16px; padding: 0; max-width: 760px; width: 92vw; margin: 0 auto; box-shadow: 0 24px 60px rgba(0,0,0,0.35); }
        .nx-modal .nx-modal-head { position: sticky; top: 14px; z-index: 5; width: fit-content; margin: 0 14px 0 auto; }
        .nx-modal .nx-modal-close { background: #f1f5f9; border: none; width: 34px; height: 34px; border-radius: 50%; font-size: 1.1rem; font-weight: 800; color: #334155; cursor: pointer; line-height: 1; box-shadow: 0 2px 8px rgba(15,23,42,0.15); outline: none; }
        .nx-modal .nx-modal-close:focus-visible { box-shadow: 0 0 0 3px rgba(6,75,155,0.35); }
        .nx-modal .nx-modal-body { padding: 4px 32px 36px; text-align: center; }
        .nx-modal-body .h-captcha-wrapper { margin: 12px auto; display: flex; justify-content: center; }
