/* Custom Styles */
.hero-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Home latest news ticker */
.home-news-ticker {
    position: relative;
    z-index: 2;
    margin-top: 4rem;
    border-bottom: 1px solid rgba(203, 213, 225, 0.85);
    background: #fff;
}

.home-news-ticker-inner {
    min-height: 2.45rem;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.home-news-ticker-label {
    height: 100%;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding-right: 1rem;
    margin-right: 1rem;
    border-right: 1px solid #d8dee7;
    color: #f97316;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.home-news-ticker-label i {
    font-size: 0.82rem;
}

.home-news-ticker-window {
    min-width: 0;
    overflow: hidden;
    color: #334155;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1;
}

.home-news-ticker-track {
    width: max-content;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: home-news-ticker-scroll 32s linear infinite;
}

.home-news-ticker-set {
    display: inline-flex;
    align-items: center;
    gap: 3rem;
    padding-right: 3rem;
}

.home-news-ticker-set span {
    position: relative;
}

.home-news-ticker-set span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -1.65rem;
    width: 0.38rem;
    height: 0.38rem;
    background: #f97316;
    transform: translateY(-50%) rotate(45deg);
}

.home-news-ticker:hover .home-news-ticker-track {
    animation-play-state: paused;
}

@keyframes home-news-ticker-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-news-ticker-track {
        animation: none;
    }
}

/* Home page industrial hero */
.home-industrial-hero {
    position: relative;
    min-height: 42rem;
    display: flex;
    align-items: center;
    padding: 5rem 0 4.5rem;
    overflow: hidden;
    isolation: isolate;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.home-industrial-hero-overlay {
    position: absolute;
    z-index: -3;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 20, 39, 0.96) 0%, rgba(8, 31, 57, 0.9) 43%, rgba(8, 31, 57, 0.48) 70%, rgba(8, 31, 57, 0.28) 100%),
        linear-gradient(0deg, rgba(5, 20, 39, 0.55), transparent 55%);
}

.home-industrial-hero-grid {
    position: absolute;
    z-index: -2;
    inset: 0;
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.55) 58%, transparent 88%);
}

.home-industrial-hero-frame {
    position: absolute;
    z-index: -1;
    top: 7.5rem;
    right: 0;
    bottom: 3.5rem;
    width: 34%;
    border-top: 5px solid #f97316;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 70%);
    pointer-events: none;
}

.home-industrial-hero-container {
    width: 100%;
}

.home-industrial-hero-panel {
    position: relative;
    width: min(100%, 47rem);
    padding: 3.5rem 3.5rem 3.25rem;
    border-left: 6px solid #f97316;
    background: linear-gradient(125deg, rgba(7, 26, 49, 0.94), rgba(11, 39, 70, 0.78));
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3px);
}

.home-industrial-hero-panel::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 7rem;
    height: 7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.26);
    border-right: 1px solid rgba(255, 255, 255, 0.26);
}

.home-industrial-hero-copy h1 {
    max-width: 12em;
    margin: 0 0 1.5rem;
    color: #fff;
    font-size: clamp(2.75rem, 5.5vw, 5rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.045em;
    text-wrap: balance;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.home-industrial-hero-copy p {
    max-width: 40rem;
    margin: 0;
    color: #dbe5ef;
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    line-height: 1.85;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.24);
}

.home-industrial-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
}

.home-industrial-hero-button {
    display: inline-grid;
    grid-template-columns: 2.75rem auto 1rem;
    align-items: center;
    gap: 0.9rem;
    min-width: 12.75rem;
    min-height: 4rem;
    padding: 0.6rem 1rem 0.6rem 0.6rem;
    font-size: 1rem;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.home-industrial-hero-button-icon {
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    place-items: center;
    font-size: 0.95rem;
}

.home-industrial-hero-button-arrow {
    justify-self: end;
    font-size: 0.8rem;
    transition: transform 220ms ease;
}

.home-industrial-hero-button:hover {
    transform: translateY(-3px);
}

.home-industrial-hero-button:hover .home-industrial-hero-button-arrow {
    transform: translateX(4px);
}

.home-industrial-hero-button-primary {
    color: #fff;
    background: #f97316;
    border-color: #f97316;
    box-shadow: 0 14px 30px rgba(249, 115, 22, 0.24);
}

.home-industrial-hero-button-primary .home-industrial-hero-button-icon {
    color: #f97316;
    background: #fff;
}

.home-industrial-hero-button-primary:hover {
    color: #0b1f3a;
    background: #fff;
    border-color: #fff;
}

.home-industrial-hero-button-secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.5);
}

.home-industrial-hero-button-secondary .home-industrial-hero-button-icon {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.home-industrial-hero-button-secondary:hover {
    color: #0b1f3a;
    background: #fff;
    border-color: #fff;
}

.home-industrial-hero-button-secondary:hover .home-industrial-hero-button-icon {
    color: #fff;
    background: #0b1f3a;
}

@media (max-width: 767px) {
    .home-news-ticker-inner {
        min-height: 2.25rem;
        padding: 0 1rem;
    }

    .home-news-ticker-label {
        gap: 0.35rem;
        padding-right: 0.65rem;
        margin-right: 0.65rem;
        font-size: 0.68rem;
        letter-spacing: 0.04em;
    }

    .home-news-ticker-window {
        font-size: 0.74rem;
    }

    .home-news-ticker-track {
        animation-duration: 26s;
    }

    .home-news-ticker-set {
        gap: 2.25rem;
        padding-right: 2.25rem;
    }

    .home-news-ticker-set span::after {
        right: -1.28rem;
        width: 0.32rem;
        height: 0.32rem;
    }

    .home-industrial-hero {
        min-height: 37rem;
        padding: 4.85rem 0 2.75rem;
        background-position: 62% center;
    }

    .home-industrial-hero-overlay {
        background: linear-gradient(90deg, rgba(5, 20, 39, 0.94), rgba(8, 31, 57, 0.76));
    }

    .home-industrial-hero-frame {
        display: none;
    }

    .home-industrial-hero-panel {
        width: 100%;
        padding: 2.25rem 1.25rem 2rem;
        border-left-width: 4px;
    }

    .home-industrial-hero-copy h1 {
        margin-bottom: 1.15rem;
        font-size: clamp(2.1rem, 10.5vw, 3rem);
    }

    .home-industrial-hero-copy p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .home-industrial-hero-actions {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 2rem;
    }

    .home-industrial-hero-button {
        width: 100%;
        grid-template-columns: 2.35rem auto 0.85rem;
        gap: 0.75rem;
        min-height: 3.45rem;
        padding: 0.45rem 0.85rem 0.45rem 0.45rem;
        font-size: 0.95rem;
    }

    .home-industrial-hero-button-icon {
        width: 2.35rem;
        height: 2.35rem;
        font-size: 0.85rem;
    }
}

.section {
    min-height: 100vh;
    scroll-margin-top: 80px;
}

.card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.input-field {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    background: white;
}

.input-field:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn-primary {
    background: #3b82f6;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

/* Navigation styles */
nav .nav-link {
    color: #000000 !important;
    font-weight: 500 !important;
    font-size: 1.1em !important;
    transition: color 0.2s ease !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
}

/* Responsive navigation font size */
@media (max-width: 1024px) {
    nav .nav-link {
        font-size: 0.9em !important;
    }
}

@media (max-width: 768px) {
    nav .nav-link {
        font-size: 0.85em !important;
    }
}

nav .nav-link:hover {
    color: #3b82f6 !important;
}

nav .nav-link-active,
nav a.nav-link-active,
nav button.nav-link-active {
    color: #3b82f6 !important;
    font-weight: 900 !important;
    font-size: 1.3em !important;
    text-shadow: 0px 0px 1px rgba(59, 130, 246, 0.5) !important;
}

nav .mobile-nav-link-active {
    color: #2563eb !important;
    background-color: #eff6ff !important;
    font-weight: 800 !important;
}

/* Shared quick contact widget */
.quick-contact-widget {
    position: fixed;
    z-index: 55;
    right: 0;
    bottom: 1.5rem;
    width: auto;
    margin: 0;
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    padding-left: 1rem;
    font-family: inherit;
    pointer-events: none;
}

.quick-contact-panel,
.quick-contact-button {
    pointer-events: auto;
}

.quick-contact-panel {
    width: min(17rem, calc(100vw - 5rem));
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.32);
    border-radius: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(1rem) translateY(0.5rem) scale(0.96);
    transform-origin: right bottom;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 52px rgba(11, 31, 58, 0.24);
    backdrop-filter: blur(12px);
    transition:
        opacity 280ms ease,
        visibility 280ms ease,
        transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.quick-contact-widget.is-open .quick-contact-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) translateY(0) scale(1);
}

.quick-contact-link {
    display: grid;
    grid-template-columns: 2.65rem 1fr auto;
    align-items: center;
    gap: 0.8rem;
    min-height: 4.1rem;
    padding: 0.7rem 0.85rem;
    color: #26364a;
    font-size: 0.92rem;
    font-weight: 750;
    text-decoration: none;
    transition: color 180ms ease, background-color 180ms ease;
}

.quick-contact-link + .quick-contact-link {
    border-top: 1px solid #e7ebf0;
}

.quick-contact-link:hover {
    color: #0b1f3a;
    background: #f2f6fa;
}

.quick-contact-link-icon {
    display: grid;
    width: 2.65rem;
    height: 2.65rem;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 7px 16px rgba(15, 23, 42, 0.14);
}

.quick-contact-line {
    background: #06c755;
}

.quick-contact-whatsapp {
    background: #25d366;
}

.quick-contact-zalo {
    background: #0068ff;
    font-size: 0.68rem;
    font-weight: 900;
}

.quick-contact-link-arrow {
    color: #94a3b8;
    font-size: 0.68rem;
    transition: color 180ms ease, transform 180ms ease;
}

.quick-contact-link:hover .quick-contact-link-arrow {
    color: #f97316;
    transform: translate(2px, -2px);
}

.quick-contact-button {
    display: flex;
    width: 3.35rem;
    min-height: 8rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 0.75rem 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1rem 0 0 1rem;
    color: #fff;
    background: linear-gradient(180deg, #12345c, #0b1f3a);
    box-shadow: 0 14px 34px rgba(11, 31, 58, 0.3);
    transition:
        background-color 220ms ease,
        box-shadow 220ms ease,
        transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.quick-contact-button:hover {
    transform: translateX(-0.2rem);
    box-shadow: 0 18px 38px rgba(11, 31, 58, 0.38);
}

.quick-contact-widget.is-open .quick-contact-button {
    transform: translateX(-0.15rem);
    background: linear-gradient(180deg, #f97316, #d95d0b);
}

.quick-contact-button-icon {
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), background-color 220ms ease;
}

.quick-contact-widget.is-open .quick-contact-button-icon {
    transform: rotate(180deg);
    background: rgba(255, 255, 255, 0.2);
}

.quick-contact-button-text {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.2;
    writing-mode: vertical-rl;
}

@media (max-width: 640px) {
    .quick-contact-widget {
        right: 0;
        bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
        width: auto;
        margin: 0;
        gap: 0.5rem;
    }

    .quick-contact-panel {
        width: min(16rem, calc(100vw - 4.5rem));
        border-radius: 0.85rem;
    }

    .quick-contact-button {
        width: 3rem;
        min-height: 7rem;
        border-radius: 0.85rem 0 0 0.85rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .quick-contact-panel,
    .quick-contact-button,
    .quick-contact-button-icon {
        transition-duration: 1ms;
    }
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    text-decoration: none;
    color: white;
    font-size: 18px;
}

.social-link:hover {
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

.animate-bounce {
    animation: bounce 1s infinite;
}

.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

/* Toast Notifications */
.toast {
    background: white;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #10b981;
    min-width: 300px;
    max-width: 400px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-left-color: #10b981;
}

.toast.error {
    border-left-color: #ef4444;
}

.toast.warning {
    border-left-color: #f59e0b;
}

.toast.info {
    border-left-color: #3b82f6;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Industrial fan loading screen */
html.industrial-loader-pending {
    background: #071728;
}

html.industrial-loader-pending::before {
    content: "";
    position: fixed;
    z-index: 9998;
    inset: 0;
    background:
        radial-gradient(circle at 50% 42%, rgba(36, 79, 119, 0.38), transparent 31%),
        linear-gradient(145deg, #071728 0%, #0b1f3a 55%, #102c4d 100%);
}

#loadingScreen.industrial-loading-screen {
    position: fixed !important;
    z-index: 9999 !important;
    inset: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden;
    padding: 1.5rem;
    opacity: 1 !important;
    visibility: visible !important;
    color: #fff;
    background:
        radial-gradient(circle at 50% 42%, rgba(36, 79, 119, 0.38), transparent 31%),
        linear-gradient(145deg, #071728 0%, #0b1f3a 55%, #102c4d 100%) !important;
    transition: opacity 450ms ease, visibility 450ms ease !important;
}

#loadingScreen.industrial-loading-screen.is-exiting {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.industrial-loader-grid {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at center, #000, transparent 75%);
}

.industrial-loader-panel {
    position: relative;
    width: min(100%, 26rem);
    padding: 2rem 2.25rem 2.25rem;
    text-align: center;
    border: 1px solid rgba(203, 213, 225, 0.22);
    border-top: 4px solid #f97316;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 55%),
        rgba(5, 20, 39, 0.82);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(8px);
}

.industrial-loader-panel::before,
.industrial-loader-panel::after {
    content: "";
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    border-color: rgba(255, 255, 255, 0.35);
}

.industrial-loader-panel::before {
    top: 0.75rem;
    left: 0.75rem;
    border-top: 1px solid;
    border-left: 1px solid;
}

.industrial-loader-panel::after {
    right: 0.75rem;
    bottom: 0.75rem;
    border-right: 1px solid;
    border-bottom: 1px solid;
}

.industrial-loader-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #cbd5e1;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.industrial-loader-logo {
    display: block;
    width: 2.25rem;
    height: 2.25rem;
    flex: 0 0 2.25rem;
    object-fit: contain;
}

.industrial-loader-machine {
    position: relative;
    width: 13.5rem;
    margin: 1.6rem auto 1.35rem;
    padding-bottom: 1.25rem;
}

.industrial-loader-housing {
    position: relative;
    width: 11.5rem;
    height: 11.5rem;
    margin: 0 auto;
    border: 0.75rem solid #718096;
    border-radius: 50%;
    background:
        radial-gradient(circle, #253b52 0 14%, #112b44 15% 52%, #0a1d32 53% 100%);
    box-shadow:
        inset 0 0 0 2px #a8b3bf,
        inset 0 0 28px rgba(0, 0, 0, 0.65),
        0 0 0 0.45rem #253b52,
        0 18px 30px rgba(0, 0, 0, 0.34);
}

.industrial-loader-housing::before {
    content: "";
    position: absolute;
    inset: -1.15rem;
    border: 2px solid rgba(203, 213, 225, 0.18);
    border-radius: 50%;
}

.industrial-loader-bolts span {
    position: absolute;
    z-index: 2;
    width: 0.52rem;
    height: 0.52rem;
    border-radius: 50%;
    background: #d5dbe2;
    box-shadow: inset 0 -2px 2px #687686;
}

.industrial-loader-bolts span:nth-child(1) { top: 0.45rem; left: 50%; transform: translateX(-50%); }
.industrial-loader-bolts span:nth-child(2) { top: 50%; right: 0.45rem; transform: translateY(-50%); }
.industrial-loader-bolts span:nth-child(3) { bottom: 0.45rem; left: 50%; transform: translateX(-50%); }
.industrial-loader-bolts span:nth-child(4) { top: 50%; left: 0.45rem; transform: translateY(-50%); }

.industrial-loader-rotor {
    position: absolute;
    inset: 1.2rem;
    animation: industrial-loader-spin 0.72s linear infinite;
}

.industrial-loader-blade {
    --blade-angle: calc(var(--blade-index) * 60deg);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2.15rem;
    height: 4.25rem;
    margin: -3.95rem 0 0 -1.075rem;
    border-radius: 85% 20% 70% 28%;
    transform: rotate(var(--blade-angle));
    transform-origin: 50% 3.95rem;
    background: linear-gradient(110deg, #d9e0e7 0%, #778797 48%, #354a5e 100%);
    box-shadow: inset -3px -2px 5px rgba(0, 0, 0, 0.28);
}

.industrial-loader-hub {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    width: 2.7rem;
    height: 2.7rem;
    border: 0.35rem solid #9aa7b5;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 38% 34%, #e6ebef, #657586 45%, #263c50 70%);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.45);
}

.industrial-loader-stand {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 8.5rem;
    height: 1.35rem;
    transform: translateX(-50%);
    border-top: 0.3rem solid #f97316;
    background: linear-gradient(90deg, #263c50, #728292 50%, #263c50);
    clip-path: polygon(15% 0, 85% 0, 100% 100%, 0 100%);
}

.industrial-loader-progress {
    width: 100%;
    height: 0.3rem;
    margin-top: 0.65rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
}

.industrial-loader-progress span {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, #f97316, #fb923c);
    animation: industrial-loader-progress 1.8s cubic-bezier(0.3, 0.1, 0.2, 1) forwards;
}

@keyframes industrial-loader-spin {
    to { transform: rotate(360deg); }
}

@keyframes industrial-loader-progress {
    0% { transform: scaleX(0); }
    28% { transform: scaleX(0.34); }
    68% { transform: scaleX(0.76); }
    100% { transform: scaleX(1); }
}

@media (max-width: 480px) {
    .industrial-loader-panel {
        padding: 1.75rem 1.25rem 2rem;
    }

    .industrial-loader-machine {
        width: 11.5rem;
    }

    .industrial-loader-housing {
        width: 9.75rem;
        height: 9.75rem;
    }

    .industrial-loader-rotor {
        inset: 1rem;
    }

    .industrial-loader-blade {
        width: 1.85rem;
        height: 3.65rem;
        margin: -3.4rem 0 0 -0.925rem;
        transform-origin: 50% 3.4rem;
    }

    .industrial-loader-status {
        font-size: 0.7rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .industrial-loader-rotor {
        animation-duration: 1.6s;
    }

}

/* Responsive Design */
@media (max-width: 768px) {
    .section {
        padding: 3rem 1rem;
    }
    
    .card {
        padding: 16px;
    }
    
    .service-card {
        padding: 16px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

#companyName {
    display: block;
    max-width: none;
    overflow: visible;
    text-overflow: clip;
    white-space: nowrap;
    font-size: 1.25rem;
    line-height: 1.2;
    text-align: left;
}

#companyName-footer {
    display: block;
    max-width: none;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    font-size: 1.125rem;
    line-height: 1.35;
}

@media (min-width: 1024px) {
    #navbar a:has(#companyName) {
        flex-shrink: 0;
        margin-right: 2rem;
    }

    #navbar .h-16 > .hidden {
        margin-left: 2rem;
    }

    html[data-lang="vn"] #companyName {
        font-size: 1.05rem;
        line-height: 1.08;
        white-space: normal;
    }
}

@media (max-width: 1023px) {
    #navbar .h-16 {
        position: relative;
    }

    #navbar .h-16 > .flex.items-center.space-x-3:first-child {
        flex: 1 1 auto;
        min-width: 0;
    }

    #navbar a:has(#companyName) {
        display: flex;
        align-items: center;
        position: absolute;
        inset: 0 3.25rem 0 0;
        width: auto;
        height: 100%;
        min-width: 0;
        z-index: 2;
    }

    #navbar a:has(#companyName) > div:first-child {
        position: absolute;
        left: 0;
        top: 50%;
        z-index: 2;
        transform: translateY(-50%);
    }

    #navbar a:has(#companyName) > div:last-child {
        position: absolute;
        left: 3.25rem;
        right: 3.25rem;
        top: 50%;
        display: flex;
        justify-content: center;
        min-width: 0;
        transform: translateY(-50%);
    }

    #companyName {
        max-width: 100%;
        font-size: 1.25rem;
        line-height: 1.08;
        text-align: center;
        white-space: normal;
    }

    html[data-lang="vn"] #companyName {
        font-size: 1.05rem;
        line-height: 1.05;
    }

    #mobileMenuBtn {
        position: relative;
        z-index: 3;
    }
}

html[data-lang="vn"] #companyName-footer {
    line-height: 1.25;
}

html[data-lang="vn"] #companyName-footer-2 {
    display: inline-block;
    max-width: 100%;
    line-height: 1.35;
    vertical-align: top;
}

@media (max-width: 640px) {
    html[data-lang="vn"] .about-market-card p {
        font-size: 0.98rem;
        line-height: 1.45;
        overflow-wrap: anywhere;
    }
}

#nav-about-certifications,
#mobile-nav-about-certifications,
#quality-certifications {
    display: none !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Navigation Background on Scroll */
.nav-scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Categories Slider Styles */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}

.scroll-smooth {
    scroll-behavior: smooth;
}

/* Category card hover effects for mobile */
@media (max-width: 1024px) {
    #categoriesContainer .group:hover {
        transform: translateY(-2px);
    }
}

/* Scroll button animations */
@media (min-width: 1024px) {
    [onclick*="scrollCategories"] {
        transition: all 0.3s ease;
    }
    
    [onclick*="scrollCategories"]:hover {
        transform: scale(1.1);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
    
    [onclick*="scrollCategories"]:active {
        transform: scale(0.95);
    }
}

/* Home page categories marquee */
.home-marquee-section {
    overflow: hidden;
    background:
        linear-gradient(rgba(15, 39, 66, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 39, 66, 0.035) 1px, transparent 1px),
        #f5f7f8;
    background-size: 32px 32px;
}

.home-categories-marquee {
    overflow: hidden;
    padding: 0.75rem 0 1rem;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
}

.home-categories-marquee-track {
    display: flex;
    width: max-content;
    animation: home-categories-marquee 46s linear infinite;
}

.home-categories-marquee-track:hover {
    animation-play-state: paused;
}

.home-categories-marquee-set {
    display: flex;
    gap: 1.25rem;
    padding-right: 1.25rem;
    flex-shrink: 0;
}

.home-categories-marquee-item {
    position: relative;
    flex: none;
    width: 17rem;
    height: auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #fff;
    border: 1px solid #aeb8c1;
    border-top: 4px solid #f97316;
    box-shadow: 7px 7px 0 rgba(15, 39, 66, 0.1);
}

.home-categories-marquee-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    background:
        linear-gradient(rgba(15, 39, 66, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 39, 66, 0.04) 1px, transparent 1px),
        #f8fafb;
    background-size: 18px 18px;
}

.home-categories-marquee-item > div {
    display: none;
}

.home-categories-marquee-item span {
    display: block;
    margin-bottom: 0.25rem;
    color: #c2410c;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.home-categories-marquee-item strong {
    display: block;
    color: #0f2742;
    font-size: 1rem;
    line-height: 1.4;
}

@keyframes home-categories-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(100vw - 100%));
    }
}

/* Home page engineering capabilities */
.home-features-section {
    position: relative;
    overflow: hidden;
    background:
        repeating-linear-gradient(135deg, transparent 0 20px, rgba(255, 255, 255, 0.018) 20px 22px),
        #0a2238;
    border-top: 7px solid #f97316;
}

.home-features-section::after {
    content: "";
    position: absolute;
    right: -5rem;
    bottom: -7rem;
    width: 22rem;
    height: 22rem;
    border: 3rem solid rgba(249, 115, 22, 0.07);
    transform: rotate(45deg);
    pointer-events: none;
}

.home-feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 25rem;
    padding: 2rem 1.5rem;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.035);
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.home-feature-card:last-child {
    border-right: 0;
}

.home-feature-card:hover {
    z-index: 1;
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-5px);
}

.home-feature-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: rgba(255, 255, 255, 0.16);
    font-size: 2.5rem;
    font-weight: 900;
}

.home-feature-icon {
    display: flex;
    width: 3.75rem;
    height: 3.75rem;
    margin-bottom: 2rem;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #f97316;
    font-size: 1.4rem;
    box-shadow: 5px 5px 0 rgba(255, 255, 255, 0.16);
}

.home-feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.35rem;
    font-weight: 900;
}

.home-feature-card > p {
    min-height: 6rem;
    color: #cbd5e1;
    line-height: 1.75;
}

.home-feature-card ul {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.home-feature-card li {
    margin-top: 0.65rem;
    color: #e2e8f0;
    font-size: 0.9rem;
}

.home-feature-card li::before {
    content: "";
    display: inline-block;
    width: 0.45rem;
    height: 0.45rem;
    margin-right: 0.65rem;
    background: #f97316;
    transform: rotate(45deg);
}

@media (min-width: 768px) {
    .home-feature-card h3 {
        min-height: 4rem;
        line-height: 1.45;
    }

    .home-feature-card > p {
        min-height: 7.25rem;
        margin-bottom: 1.35rem;
    }
}

.home-brand-media {
    height: auto !important;
    aspect-ratio: 6 / 5;
}

.home-brand-image {
    object-fit: cover;
}

.home-solutions-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(15, 39, 66, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 39, 66, 0.045) 1px, transparent 1px),
        linear-gradient(135deg, #f4f7fa 0%, #edf2f6 52%, #f8fafc 100%);
    background-size: 34px 34px, 34px 34px, auto;
}

.home-solutions-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: min(32rem, 42vw);
    height: 6px;
    background: #f97316;
}

.home-solutions-section::after {
    content: "";
    position: absolute;
    right: -7rem;
    bottom: -8rem;
    width: 24rem;
    height: 24rem;
    border: 2.75rem solid rgba(11, 31, 58, 0.055);
    transform: rotate(45deg);
    pointer-events: none;
}

.home-solutions-section > div {
    position: relative;
    z-index: 1;
}

.home-solutions-section > div > .text-center > p {
    max-width: none !important;
    white-space: nowrap;
}

.home-solutions-intro {
    display: grid;
    gap: 0.4rem;
    max-width: 46rem;
    font-size: 1.125rem;
    line-height: 1.75;
}

.home-solutions-intro p {
    margin: 0;
}

.home-solution-card {
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(174, 184, 193, 0.9) !important;
    box-shadow: 0 14px 30px rgba(11, 31, 58, 0.08) !important;
}

.home-brand-carousel {
    position: relative;
}

.home-brand-arrow {
    display: none;
}

.services-page .services-brand-grid .home-brand-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.services-page .services-brand-grid .home-brand-card h3 {
    min-height: 3.4rem;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
}

.services-page .services-brand-grid .home-brand-card p {
    min-height: 4.25rem;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
}

.services-page .services-brand-grid .home-brand-card a {
    justify-content: center;
    margin-top: auto;
}

@media (min-width: 1024px) {
    .services-page .services-brand-grid .home-brand-card {
        padding: 1rem !important;
    }

    .services-page .services-brand-grid .home-brand-card h3 {
        font-size: clamp(0.9rem, 0.95vw, 1.04rem) !important;
        line-height: 1.35 !important;
    }

    .services-page .services-brand-grid .home-brand-card p {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.88rem !important;
        line-height: 1.6 !important;
    }
}

@media (min-width: 1280px) {
    .services-page .services-brand-grid .home-brand-card h3 {
        min-height: 4.15rem;
    }

    .services-page .services-brand-grid .home-brand-card p {
        min-height: 4.65rem;
    }
}

@media (max-width: 767px) {
    .home-brand-section {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
        overflow: hidden;
    }

    .home-brand-section > div > .text-center {
        margin-bottom: 2rem !important;
    }

    .home-brand-section h2 {
        margin-bottom: 0.75rem !important;
        font-size: 1.85rem !important;
        line-height: 1.25 !important;
    }

    .home-brand-section .text-center p {
        font-size: 0.98rem !important;
        line-height: 1.65 !important;
    }

    .home-brand-grid {
        display: flex !important;
        gap: 0.9rem !important;
        margin-right: -1rem;
        margin-left: -1rem;
        padding: 0.15rem 3.25rem 1rem;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x proximity;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .services-page .services-brand-grid {
        display: flex !important;
        grid-template-columns: none !important;
    }

    .home-brand-grid::-webkit-scrollbar {
        display: none;
    }

    .home-brand-card {
        width: min(72vw, 17rem);
        min-width: min(72vw, 17rem);
        padding: 1rem !important;
        scroll-snap-align: center;
    }

    .services-page .services-brand-grid .home-brand-card {
        flex: 0 0 min(72vw, 17rem);
        width: min(72vw, 17rem);
        min-width: min(72vw, 17rem);
    }

    .home-brand-media {
        margin-bottom: 1rem !important;
    }

    .home-brand-card h3 {
        margin-bottom: 0.45rem !important;
        font-size: 1rem !important;
        line-height: 1.35 !important;
        white-space: normal;
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    .home-brand-card p {
        margin-bottom: 1rem !important;
        font-size: 0.78rem !important;
        line-height: 1.5 !important;
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    .home-brand-card a {
        padding: 0.55rem 0.85rem !important;
        font-size: 0.78rem !important;
    }

    .home-brand-arrow {
        width: 2.35rem;
        height: 2.35rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 48%;
        z-index: 3;
        border: 1px solid rgba(203, 213, 225, 0.95);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.96);
        color: #0b1f3a;
        box-shadow: 0 14px 28px rgba(11, 31, 58, 0.16);
        transform: translateY(-50%);
        transition: background-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
    }

    .home-brand-arrow:hover,
    .home-brand-arrow:focus-visible {
        outline: none;
        background: #f97316;
        color: #fff;
        box-shadow: 0 16px 32px rgba(249, 115, 22, 0.28);
    }

    .home-brand-arrow:active {
        transform: translateY(-50%) scale(0.96);
    }

    .home-brand-arrow:disabled {
        cursor: default;
        opacity: 0.35;
        color: #64748b;
        background: rgba(255, 255, 255, 0.82);
        box-shadow: none;
        pointer-events: none;
    }

    .home-brand-arrow-left {
        left: 0.15rem;
    }

    .home-brand-arrow-right {
        right: 0.15rem;
    }
}

@media (max-width: 767px) {
    .home-solutions-section {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }

    .home-solutions-section > div > .text-center {
        margin-bottom: 2rem !important;
    }

    .home-solutions-section h2 {
        margin-bottom: 0.75rem !important;
        font-size: 1.8rem !important;
        line-height: 1.25 !important;
    }

    .home-solutions-section .text-center p {
        font-size: 0.98rem !important;
        line-height: 1.65 !important;
        white-space: normal;
    }

    .home-solutions-intro {
        max-width: 21rem;
        gap: 0.35rem;
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .home-solutions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.75rem !important;
    }

    .home-solution-card {
        min-height: 0 !important;
        height: auto !important;
        padding: 0.8rem !important;
        border-radius: 0.65rem !important;
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.07) !important;
    }

    .home-solution-card h4 {
        margin-bottom: 0.55rem !important;
        font-size: 0.92rem !important;
        line-height: 1.35 !important;
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    .home-solution-card p {
        display: block;
        overflow: visible;
        -webkit-line-clamp: unset;
        font-size: 0.75rem !important;
        line-height: 1.48 !important;
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    html[lang="en"] .home-solution-card h4,
    html[lang="vn"] .home-solution-card h4 {
        font-size: 0.86rem !important;
        line-height: 1.32 !important;
    }

    html[lang="en"] .home-solution-card p,
    html[lang="vn"] .home-solution-card p {
        font-size: 0.68rem !important;
        line-height: 1.42 !important;
    }

    html[lang="ja"] .home-solution-card p {
        font-size: 0.72rem !important;
        line-height: 1.46 !important;
    }
}

.home-case-media {
    height: auto !important;
    aspect-ratio: 4 / 3;
}

.home-case-image {
    object-fit: cover !important;
    padding: 0;
    background:
        linear-gradient(rgba(15, 39, 66, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 39, 66, 0.035) 1px, transparent 1px),
        #f8fafc;
    background-size: 18px 18px;
}

.home-cases-carousel {
    position: relative;
}

.home-cases-grid {
    max-width: 58rem;
    margin-right: auto;
    margin-left: auto;
    gap: 1.25rem !important;
}

.home-case-card {
    border-radius: 0.75rem;
}

.home-case-card .p-5 {
    padding: 1.1rem !important;
}

.home-case-card h3 {
    height: auto !important;
    min-height: 2.9rem;
    margin-bottom: 0.6rem !important;
    font-size: 1rem;
    line-height: 1.45;
}

.home-case-card p {
    margin-bottom: 0.85rem !important;
}

.home-case-card span {
    padding: 0.45rem 0.78rem !important;
    font-size: 0.8rem !important;
}

.home-case-arrow {
    display: none;
}

.home-client-section {
    overflow: hidden;
}

.home-client-heading {
    max-width: 48rem;
    margin-right: auto;
    margin-left: auto;
}

.client-marquee {
    position: relative;
    --client-gap: clamp(1rem, 2vw, 1.65rem);
    --client-gap-half: clamp(0.5rem, 1vw, 0.825rem);
    --client-side-padding: clamp(2.75rem, 8vw, 5.5rem);
    max-width: 68rem;
    margin: 0 auto;
}

.client-marquee::before,
.client-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: clamp(2rem, 8vw, 5.5rem);
    pointer-events: none;
}

.client-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.client-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

.client-marquee-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
}

.client-marquee-viewport:active {
    cursor: grabbing;
}

.client-marquee-viewport::-webkit-scrollbar {
    display: none;
}

.client-marquee-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: var(--client-gap);
    padding: 0.35rem var(--client-side-padding);
    animation: client-marquee-scroll 34s linear infinite;
    will-change: transform;
}

.client-marquee:hover .client-marquee-track,
.client-marquee-viewport:active .client-marquee-track {
    animation-play-state: paused;
}

.client-marquee-item {
    display: grid;
    width: clamp(6.75rem, 11vw, 8.75rem);
    aspect-ratio: 1 / 1;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid #e5eaf0;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 14px 32px rgba(11, 31, 58, 0.08);
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.client-marquee-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(11, 31, 58, 0.13);
}

.client-marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.85rem;
}

@keyframes client-marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% + var(--client-side-padding) - var(--client-gap-half)));
    }
}

@media (max-width: 767px) {
    .home-cases-section {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
        overflow: hidden;
    }

    .home-cases-section > div > .flex {
        gap: 1rem !important;
        margin-bottom: 2rem !important;
    }

    .home-cases-section h2 {
        margin-bottom: 0.75rem !important;
        font-size: 1.8rem !important;
        line-height: 1.25 !important;
    }

    .home-cases-section p {
        font-size: 0.9rem !important;
        line-height: 1.55 !important;
    }

    .home-cases-section > div > .flex a {
        width: fit-content;
        padding: 0.55rem 0.85rem !important;
        font-size: 0.78rem !important;
    }

    .home-cases-carousel {
        margin-right: -1rem;
        margin-left: -1rem;
        padding: 0 3.25rem;
    }

    .home-cases-grid {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 0.9rem !important;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x proximity;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .home-cases-grid::-webkit-scrollbar {
        display: none;
    }

    .home-case-card {
        width: min(72vw, 17rem);
        min-width: min(72vw, 17rem);
        scroll-snap-align: center;
    }

    .home-case-card:hover {
        transform: none;
    }

    .home-case-card .p-5 {
        padding: 0.95rem !important;
    }

    .home-case-media {
        aspect-ratio: 4 / 3;
    }

    .home-case-card h3 {
        height: 3.05rem !important;
        margin-bottom: 0.45rem !important;
        font-size: 0.98rem !important;
        line-height: 1.45 !important;
    }

    .home-case-card p {
        margin-bottom: 0.75rem !important;
        font-size: 0.74rem !important;
    }

    .home-case-card span {
        padding: 0.45rem 0.65rem !important;
        font-size: 0.72rem !important;
    }

    .home-case-arrow {
        width: 2.35rem;
        height: 2.35rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        z-index: 3;
        border: 1px solid rgba(203, 213, 225, 0.95);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.96);
        color: #0b1f3a;
        box-shadow: 0 14px 28px rgba(11, 31, 58, 0.16);
        transform: translateY(-50%);
        transition: background-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
    }

    .home-case-arrow:hover,
    .home-case-arrow:focus-visible {
        outline: none;
        background: #f97316;
        color: #fff;
        box-shadow: 0 16px 32px rgba(249, 115, 22, 0.28);
    }

    .home-case-arrow:active {
        transform: translateY(-50%) scale(0.96);
    }

    .home-case-arrow:disabled {
        cursor: default;
        opacity: 0.35;
        color: #64748b;
        background: rgba(255, 255, 255, 0.82);
        box-shadow: none;
        pointer-events: none;
    }

    .home-case-arrow-left {
        left: 0.15rem;
    }

    .home-case-arrow-right {
        right: 0.15rem;
    }

    .home-client-heading {
        margin-bottom: 1.7rem !important;
        text-align: center;
    }

    .home-client-heading p {
        max-width: 20rem;
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    .client-marquee {
        --client-gap: 0.85rem;
        --client-gap-half: 0.425rem;
        --client-side-padding: 2.25rem;
        max-width: none;
        margin-right: -1rem;
        margin-left: -1rem;
    }

    .client-marquee::before,
    .client-marquee::after {
        width: 2.25rem;
    }

    .client-marquee-track {
        gap: var(--client-gap);
        padding: 0.25rem var(--client-side-padding);
        animation-duration: 28s;
    }

    .client-marquee-item {
        width: clamp(5.75rem, 29vw, 7rem);
        border-radius: 0.85rem;
    }

    .client-marquee-item:hover {
        transform: none;
    }

    .client-marquee-item img {
        padding: 0.65rem;
    }

    .home-features-section {
        padding-top: 3.75rem !important;
        padding-bottom: 3.75rem !important;
    }

    .home-features-section::after {
        right: -8rem;
        bottom: -9rem;
        width: 18rem;
        height: 18rem;
        border-width: 2.25rem;
        opacity: 0.72;
    }

    .home-features-section .max-w-7xl > .grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.45rem !important;
        align-items: start !important;
    }

    .home-features-copy {
        display: flex;
        flex-direction: column;
        min-width: 0;
        max-width: 24rem;
    }

    .home-features-copy .flex.items-center {
        gap: 0.65rem !important;
        margin-bottom: 0.85rem !important;
    }

    .home-features-copy .flex.items-center span:first-child {
        width: 2.2rem !important;
        height: 0.2rem !important;
    }

    .home-features-copy .flex.items-center span:last-child {
        font-size: 0.72rem !important;
        letter-spacing: 0.1em !important;
    }

    .home-features-copy h2 {
        margin-bottom: 0.9rem !important;
        font-size: 1.85rem !important;
        line-height: 1.22 !important;
    }

    .home-features-copy p {
        max-width: 20rem;
        margin-bottom: 0 !important;
        font-size: 0.92rem !important;
        line-height: 1.72 !important;
    }

    .home-features-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0.85rem !important;
        min-width: 0;
        border: 0 !important;
    }

    .home-categories-marquee-item {
        width: 14rem;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .home-categories-marquee-item img {
        height: 100%;
    }

    .home-case-media {
        aspect-ratio: 4 / 3;
    }

    .home-feature-card {
        min-height: 0;
        padding: 1rem 1rem 1rem 4.55rem;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-left: 3px solid #f97316;
        background: rgba(255, 255, 255, 0.06);
    }

    .home-feature-card:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .home-feature-card > p {
        min-height: auto;
        margin-bottom: 0;
        font-size: 0.82rem;
        line-height: 1.62;
    }

    .home-feature-card:hover {
        transform: none;
    }

    .home-feature-number {
        top: 0.85rem;
        right: 0.9rem;
        font-size: 1.55rem;
    }

    .home-feature-icon {
        width: 2.45rem;
        height: 2.45rem;
        position: absolute;
        top: 1rem;
        left: 1rem;
        margin-bottom: 0;
        font-size: 0.92rem;
        box-shadow: 3px 3px 0 rgba(255, 255, 255, 0.14);
    }

    .home-feature-card h3 {
        margin-bottom: 0.45rem;
        padding-right: 1.65rem;
        font-size: 0.98rem;
        line-height: 1.35;
    }

    .home-feature-card ul {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem 0.7rem;
        margin-top: 0.75rem;
        padding-top: 0.65rem;
    }

    .home-feature-card li {
        margin-top: 0;
        font-size: 0.72rem;
        line-height: 1.35;
    }

    .home-feature-card li::before {
        width: 0.32rem;
        height: 0.32rem;
        margin-right: 0.42rem;
    }
}

@media (max-width: 380px) {
    .home-features-section .max-w-7xl > .grid {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
    }

    .home-features-copy h2 {
        font-size: 1.62rem !important;
    }

    .home-features-copy p {
        font-size: 0.86rem !important;
    }

    .home-feature-card {
        padding: 0.9rem 0.85rem 0.9rem 4.1rem;
    }

    .home-feature-card > p {
        font-size: 0.78rem;
    }

    .home-feature-card h3 {
        font-size: 0.92rem;
    }

    .home-feature-card li {
        font-size: 0.68rem;
    }

    .home-feature-icon {
        width: 2.2rem;
        height: 2.2rem;
        left: 0.85rem;
    }
}

/* Product detail pages (e.g. oil-smoke-treatment) */
.product-detail-hero {
    min-height: 22rem;
}

.industrial-hero-rail {
    width: fit-content;
    max-width: 100%;
    display: inline-flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    overflow: hidden;
    background: rgba(7, 24, 44, 0.82);
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: 0 14px 30px rgba(7, 24, 44, 0.22);
}

.industrial-hero-rail span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 2.25rem;
    padding: 0.55rem 1rem;
    color: #e5edf7;
    font-size: 0.8125rem;
    font-weight: 800;
    white-space: nowrap;
    border-right: 1px solid rgba(148, 163, 184, 0.24);
}

.industrial-hero-rail span:last-child {
    border-right: 0;
}

.industrial-hero-rail i {
    color: #f97316;
    font-size: 0.75rem;
}

.product-detail-aside {
    width: 100%;
}

.product-detail-sidebar {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.product-sidebar-group-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1e3a8a;
    letter-spacing: 0.02em;
}

html[data-lang="en"] #navbar h4,
html[data-lang="vn"] #navbar h4,
html[data-lang="en"] #mobileMenu h4,
html[data-lang="vn"] #mobileMenu h4,
html[data-lang="en"] .product-sidebar-group-title,
html[data-lang="vn"] .product-sidebar-group-title {
    max-width: 100%;
    line-height: 1.35;
    overflow-wrap: anywhere;
    white-space: normal;
}

.product-sidebar-link {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    color: #374151;
    transition: background-color 0.2s, color 0.2s;
}

.product-sidebar-link:hover {
    background: #eff6ff;
    color: #1e3a8a;
}

.product-sidebar-link.is-active {
    background: #1e3a8a;
    color: #fff;
    font-weight: 600;
}

@media (min-width: 1024px) {
    .product-detail-aside {
        width: fit-content;
        min-width: 16.5rem;
        max-width: 18.5rem;
    }

    .product-detail-sidebar {
        width: 18.5rem;
        min-width: 16.5rem;
        max-width: 18.5rem;
    }

    .product-detail-sidebar nav {
        width: 100%;
        max-width: none;
    }

    .product-sidebar-group-title {
        white-space: nowrap;
    }

    html[data-lang="en"] .product-sidebar-group-title,
    html[data-lang="vn"] .product-sidebar-group-title {
        white-space: normal;
    }

    .product-sidebar-link {
        white-space: nowrap;
    }
}

.product-advantage-item {
    text-align: center;
}

.product-advantage-icon {
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto 1rem;
    border-radius: 0.75rem;
    background: #1e3a8a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.product-equipment-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-equipment-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    border-radius: 0.5rem;
    background: #eff6ff;
    color: #1e3a8a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.product-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;
}

.product-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.product-feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #1e3a8a;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.product-application-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 0.75rem;
    background: #f3f4f6;
    border-radius: 0.5rem;
    text-align: center;
    min-height: 7rem;
}

.product-application-item i {
    font-size: 2rem;
    color: #1e3a8a;
}

.product-application-item span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

.product-detail-cta {
    box-shadow: 0 10px 25px -5px rgba(30, 58, 138, 0.25);
}

.product-detail-hero-advantage {
    text-align: center;
}

.product-detail-hero-advantage-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 0.75rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.product-section-title-line {
    width: 3rem;
    height: 3px;
    background: #1e3a8a;
    border-radius: 2px;
}

@media (max-width: 767px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    .product-detail-hero,
    .product-detail-hero + div,
    .product-detail-hero + div > div,
    .product-detail-aside,
    .product-detail-sidebar,
    .product-detail-aside + main {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .product-detail-hero {
        overflow: hidden;
    }

    .product-detail-hero .relative.max-w-7xl {
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
        padding-top: 3.25rem;
        padding-bottom: 3.5rem;
    }

    .product-detail-hero .industrial-kicker,
    .product-detail-hero h1,
    .product-detail-hero p,
    .product-detail-hero .industrial-hero-rail {
        max-width: 100%;
        min-width: 0;
    }

    .product-detail-hero h1 {
        font-size: 2.15rem;
        line-height: 1.16;
    }

    .product-detail-hero p {
        font-size: 0.95rem;
        line-height: 1.72;
    }

    .industrial-kicker {
        font-size: 0.72rem;
        line-height: 1.4;
    }

    .industrial-hero-rail {
        width: calc(100vw - 2rem);
        max-width: calc(100vw - 2rem);
        gap: 0.55rem;
        box-sizing: border-box;
        margin-top: 1.35rem;
        margin-right: 0;
        margin-left: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .industrial-hero-rail span {
        justify-content: center;
        min-height: 2.45rem;
        padding: 0.55rem 0.72rem;
        font-size: 0.78rem;
        white-space: normal;
        border-right: 0;
    }

    .product-detail-sidebar {
        padding: 1rem;
        overflow: hidden;
    }

    .product-detail-sidebar nav {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        padding-right: 0;
    }

    .product-detail-sidebar nav > div {
        min-width: 0;
    }

    .product-sidebar-group-title,
    .product-sidebar-link {
        max-width: 100%;
        overflow-wrap: anywhere;
        white-space: normal;
    }

    .product-sidebar-link {
        padding-right: 0.6rem;
        padding-left: 0.6rem;
        line-height: 1.55;
    }

    .product-detail-aside + main section {
        margin-bottom: 2.75rem;
    }

    .product-detail-aside + main section .rounded-xl {
        border-radius: 0.75rem;
    }

    .product-detail-aside + main section h2 {
        font-size: 1.42rem;
        line-height: 1.35;
    }

    .product-detail-aside + main section h3 {
        font-size: 1rem;
        line-height: 1.45;
    }

    .product-detail-aside + main section p {
        font-size: 0.9rem;
        line-height: 1.75;
    }

    .product-application-item {
        min-height: 5.8rem;
        gap: 0.5rem;
        padding: 0.95rem 0.55rem;
    }

    .product-application-item i {
        font-size: 1.35rem;
    }

    .product-application-item span {
        font-size: 0.8rem;
        line-height: 1.35;
    }

    .product-detail-cta .relative {
        padding: 2rem 1.25rem;
    }

    .product-detail-cta h2 {
        font-size: 1.35rem;
        line-height: 1.35;
    }

    .product-detail-cta p {
        font-size: 0.95rem;
    }
}

.product-equipment-card-numbered {
    position: relative;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    padding-top: 2.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-equipment-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.5rem;
    background: #1e3a8a;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 0.375rem;
}

.product-equipment-figure {
    aspect-ratio: 1 / 1;
    width: 100%;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%);
    border-radius: 0.5rem;
    padding: 0.25rem;
    overflow: hidden;
}

.product-equipment-figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: auto;
}

.product-industry-tag {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #1e40af;
    background: #dbeafe;
    border-radius: 9999px;
}

#air-pollution-control article.group,
#construction-engineering article.group {
    min-width: 0;
    overflow: hidden;
}

#air-pollution-control article.group > div:last-child,
#construction-engineering article.group > div:last-child {
    min-width: 0;
}

#air-pollution-control article.group h3,
#air-pollution-control article.group h4,
#air-pollution-control article.group p,
#construction-engineering article.group h3,
#construction-engineering article.group h4,
#construction-engineering article.group p {
    overflow-wrap: anywhere;
    hyphens: auto;
}

#air-pollution-control article.group > div:last-child > h3 {
    min-height: 4.8rem !important;
}

#air-pollution-control article.group > div:last-child > p {
    height: 10rem !important;
}

#air-pollution-control article.group > div:last-child > div.mb-6 {
    height: 21.75rem;
    display: flex;
    flex-direction: column;
}

#air-pollution-control article.group > div:last-child > div.mb-6 > .grid {
    grid-auto-rows: 4.35rem;
}

#air-pollution-control article.group > div:last-child > div.mb-6 > .grid > p {
    height: 4.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.35;
}

#construction-engineering article.group > div:last-child > h3 {
    min-height: 4.8rem;
}

#construction-engineering article.group > div:last-child > p:first-of-type {
    height: 8.25rem !important;
}

#construction-engineering article.group > div:last-child > .bg-white.border-l-4 {
    height: 8.5rem;
    display: flex;
    flex-direction: column;
}

#construction-engineering article.group > div:last-child > .bg-white.border-l-4 > h4 {
    min-height: 1.35rem;
}

#construction-engineering article.group > div:last-child > .bg-white.border-l-4 > p {
    min-height: 3.6rem;
}

#construction-engineering article.group > div:last-child > .mb-6 {
    height: 8rem;
}

#construction-engineering article.group > div:last-child > .mb-6 .grid > p {
    min-height: 2.6rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.45;
}

#air-pollution-control article.group > div:last-child > a,
#construction-engineering article.group > div:last-child > a {
    min-height: 3rem;
}

@media (max-width: 767px) {
    #air-pollution-control article.group > div:last-child > h3,
    #construction-engineering article.group > div:last-child > h3 {
        min-height: 3.75rem !important;
        font-size: 1.35rem !important;
        line-height: 1.35 !important;
    }

    #air-pollution-control article.group > div:last-child > p,
    #construction-engineering article.group > div:last-child > p:first-of-type {
        height: 10rem !important;
        font-size: 0.95rem;
        line-height: 1.65;
    }

    #air-pollution-control article.group > div:last-child > div.mb-6 {
        height: 21.75rem;
    }

    #construction-engineering article.group > div:last-child > .bg-white.border-l-4 {
        height: 8.5rem;
    }

    #construction-engineering article.group > div:last-child > .mb-6 {
        height: 8rem;
    }
}

.industry-result-grid,
.industry-showcase-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
}

.services-metal-results-section {
    max-width: 68rem;
    margin: 5rem auto 0;
    padding: 4.5rem 0 0;
    border-top: 1px solid #d8dee7;
}

.services-metal-results-section .industry-result-grid {
    margin-top: 0;
}

.services-metal-results-section .industry-result-card {
    border-radius: 12px;
    border-top-width: 3px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.services-metal-results-section .industry-result-figure {
    height: 13.25rem;
}

.services-metal-results-section .industry-result-body {
    min-height: 0;
    padding: 1rem;
}

.services-metal-results-section .industry-result-body h3 {
    min-height: 0;
    margin-bottom: 0.2rem;
    font-size: 1.05rem;
}

.services-metal-results-section .industry-result-body .industry-result-location {
    min-height: 0;
    margin-bottom: 0.65rem;
    font-size: 0.82rem;
}

.services-metal-results-section .industry-result-body > p:not(.industry-result-location) {
    min-height: 3.6rem;
    margin-bottom: 0;
    font-size: 0.88rem;
    line-height: 1.65;
}

.services-metal-results-section .industry-result-meta {
    display: none;
}

.services-metal-results-section .industry-result-view-button {
    min-height: 2.35rem;
    right: 0.85rem;
    bottom: 0.85rem;
    padding: 0.55rem 0.85rem;
    font-size: 0.82rem;
}

.services-metal-results-section .industry-result-photo-count {
    right: 0.85rem;
    top: 0.85rem;
    min-height: 1.8rem;
    padding: 0.3rem 0.62rem;
    font-size: 0.72rem;
}

.services-metal-results-intro {
    max-width: 42rem;
    margin: 1rem auto 0;
    color: #526174;
    font-size: 1rem;
    line-height: 1.8;
}

.industry-result-mobile-carousel {
    position: relative;
}

.industry-result-carousel-arrow {
    display: none;
}

.industry-result-card,
.industry-showcase-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    background: #fff;
    border: 1px solid #d1d5db;
    border-top: 4px solid #f97316;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.industry-result-card {
    display: flex;
    flex-direction: column;
}

.industry-result-figure,
.industry-showcase-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e5e7eb;
}

.industry-result-card[data-gallery] .industry-result-figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 38%, rgba(15, 23, 42, 0.68) 100%);
    opacity: 0.9;
    pointer-events: none;
}

.industry-result-figure img,
.industry-showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.industry-result-card:hover .industry-result-figure img,
.industry-showcase-card:hover .industry-showcase-media img {
    transform: scale(1.04);
}

.industry-result-view-button {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #0b1f3a;
    font-size: 0.88rem;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.22);
    transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.industry-result-view-button:hover,
.industry-result-view-button:focus-visible {
    outline: none;
    transform: translateY(-2px);
    background: #f97316;
    color: #fff;
    box-shadow: 0 18px 34px rgba(249, 115, 22, 0.3);
}

.industry-result-photo-count {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    position: absolute;
    right: 1rem;
    top: 1rem;
    z-index: 2;
    padding: 0.38rem 0.7rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.78);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 900;
}

.industry-result-number,
.industry-showcase-media span {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    height: 3rem;
    padding: 0 0.875rem;
    background: #f97316;
    color: #fff;
    font-weight: 900;
    letter-spacing: 0;
}

.industry-result-body,
.industry-showcase-body {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.industry-result-body {
    flex: 1;
    min-height: 17.25rem;
}

.industry-result-body h3,
.industry-showcase-body h3 {
    margin-bottom: 0.75rem;
    color: #0f2d63;
    font-size: 1.125rem;
    font-weight: 900;
    line-height: 1.45;
}

.industry-result-body h3 {
    min-height: 1.65rem;
    margin-bottom: 0.35rem;
    text-align: center;
}

.industry-result-body .industry-result-location {
    min-height: 1.5rem;
    margin-bottom: 0.85rem;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.industry-result-body p,
.industry-showcase-body p {
    color: #4b5563;
    font-size: 0.9375rem;
    line-height: 1.8;
}

.industry-result-body > p:not(.industry-result-location) {
    min-height: 5.05rem;
    margin-bottom: 1rem;
}

.industry-result-meta,
.industry-showcase-summary {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.industry-result-meta {
    min-height: 5.85rem;
}

.industry-result-meta > span {
    display: block;
    margin-bottom: 0.625rem;
    color: #6b7280;
    font-size: 0.75rem;
    font-weight: 800;
}

.industry-result-meta ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.industry-result-meta li {
    padding: 0.25rem 0.625rem;
    color: #c2410c;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    font-size: 0.75rem;
    font-weight: 700;
}

body.industry-gallery-open {
    overflow: hidden;
}

.industry-gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 1.25rem;
}

.industry-gallery-modal.hidden {
    display: none;
}

.industry-gallery-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 20, 36, 0.82);
    backdrop-filter: blur(5px);
}

.industry-gallery-panel {
    width: min(66rem, 100%);
    max-height: calc(100vh - 2.5rem);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    background: #0b1f3a;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.industry-gallery-close {
    width: 2.75rem;
    height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    transition: background-color 160ms ease, transform 160ms ease;
}

.industry-gallery-close:hover,
.industry-gallery-close:focus-visible {
    outline: none;
    background: #f97316;
    transform: rotate(90deg);
}

.industry-gallery-header {
    padding: 1.35rem 4.75rem 1.1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.industry-gallery-header p {
    margin: 0 0 0.25rem;
    color: #fdba74;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.industry-gallery-header h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 900;
}

.industry-gallery-stage {
    min-height: 18rem;
    display: grid;
    place-items: center;
    position: relative;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        #07172b;
    background-size: 36px 36px;
}

.industry-gallery-stage img {
    width: 100%;
    max-height: min(68vh, 42rem);
    display: block;
    object-fit: contain;
}

.industry-gallery-nav {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    transform: translateY(-50%);
    transition: background-color 160ms ease, transform 160ms ease;
}

.industry-gallery-nav:hover,
.industry-gallery-nav:focus-visible {
    outline: none;
    background: #f97316;
}

.industry-gallery-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.industry-gallery-prev {
    left: 1rem;
}

.industry-gallery-next {
    right: 1rem;
}

.industry-gallery-footer {
    min-height: 4.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: #cbd5e1;
}

.industry-gallery-dots {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.industry-gallery-dots button {
    width: 0.65rem;
    height: 0.65rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
}

.industry-gallery-dots button.is-active {
    width: 1.75rem;
    background: #f97316;
}

@media (max-width: 767px) {
    .industry-gallery-modal {
        padding: 0.6rem;
        align-items: center;
    }

    .industry-gallery-panel {
        width: 100%;
        max-height: calc(100dvh - 1.2rem);
        border-radius: 0.85rem;
    }

    .industry-gallery-close {
        width: 2.35rem;
        height: 2.35rem;
        top: 0.7rem;
        right: 0.7rem;
    }

    .industry-gallery-header {
        padding: 0.9rem 3.6rem 0.75rem 1rem;
    }

    .industry-gallery-header p {
        font-size: 0.7rem;
    }

    .industry-gallery-header h3 {
        font-size: 1.08rem;
        line-height: 1.35;
    }

    .industry-gallery-stage {
        min-height: 0;
        height: min(58dvh, 26rem);
    }

    .industry-gallery-stage img {
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: contain;
    }

    .industry-gallery-nav {
        width: 2.35rem;
        height: 2.35rem;
        background: rgba(11, 31, 58, 0.68);
    }

    .industry-gallery-prev {
        left: 0.55rem;
    }

    .industry-gallery-next {
        right: 0.55rem;
    }

    .industry-gallery-footer {
        min-height: 3.25rem;
        padding: 0.75rem 1rem;
    }

    .industry-gallery-dots {
        gap: 0.4rem;
    }

    .industry-gallery-dots button {
        width: 0.55rem;
        height: 0.55rem;
    }

    .industry-gallery-dots button.is-active {
        width: 1.4rem;
    }
}

.industry-showcase-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.industry-showcase-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.industry-showcase-summary div {
    padding: 0.75rem;
    background: #f8fafc;
    border-left: 3px solid #f97316;
}

.industry-showcase-summary strong,
.industry-showcase-summary span {
    display: block;
}

.industry-showcase-summary strong {
    color: #0f2d63;
    font-size: 0.75rem;
    font-weight: 900;
}

.industry-showcase-summary span {
    margin-top: 0.25rem;
    color: #475569;
    font-size: 0.8125rem;
    line-height: 1.5;
}

.industry-showcase-action {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1rem;
    color: #0f2d63;
    font-weight: 900;
    transition: color 0.2s ease;
}

.industry-showcase-card:hover .industry-showcase-action {
    color: #ea580c;
}

@media (min-width: 640px) {
    .industry-result-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .industry-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .services-metal-results-section .industry-result-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.15rem;
    }
}

@media (min-width: 1180px) {
    .services-metal-results-section .industry-result-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
    .industry-result-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .industry-showcase-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .services-metal-results-section {
        margin-top: 3.25rem;
        padding-top: 3rem;
    }

    .services-metal-results-section h2 {
        margin-bottom: 0.75rem !important;
        font-size: 1.85rem !important;
        line-height: 1.25 !important;
    }

    .services-metal-results-intro {
        padding: 0 0.5rem;
        font-size: 0.92rem;
    }

    .services-metal-results-section .industry-result-mobile-carousel {
        margin-right: -1rem;
        margin-left: -1rem;
        padding-right: 2.65rem;
        padding-left: 2.65rem;
    }

    .services-metal-results-section .industry-result-track {
        align-items: stretch;
    }

    .services-metal-results-section .industry-result-track .industry-result-card {
        width: min(76vw, 18rem);
        min-width: min(76vw, 18rem);
        max-width: 18rem;
    }

    .services-metal-results-section .industry-result-figure {
        height: 11.8rem;
    }

    .services-metal-results-section .industry-result-body {
        padding: 0.95rem;
    }

    .services-metal-results-section .industry-result-body > p:not(.industry-result-location) {
        min-height: 4.2rem;
        font-size: 0.84rem;
    }

    .services-metal-results-section .industry-result-view-button {
        min-height: 2.25rem;
        padding: 0.5rem 0.72rem;
        font-size: 0.78rem;
    }

    .industry-result-mobile-carousel {
        margin-right: -1rem;
        margin-left: -1rem;
        padding: 0 2.85rem;
    }

    .industry-result-track {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 1rem;
        padding: 0.25rem 0 1.1rem;
        overflow-x: auto;
        overflow-y: visible;
        scroll-behavior: smooth;
        scroll-padding-inline: 0;
        scroll-snap-type: x proximity;
        overscroll-behavior-x: contain;
        touch-action: pan-x;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .industry-result-track::-webkit-scrollbar {
        display: none;
    }

    .industry-result-track .industry-result-card {
        width: min(74vw, 18.5rem);
        min-width: min(74vw, 18.5rem);
        max-width: 18.5rem;
        height: auto;
        scroll-snap-align: center;
        scroll-snap-stop: normal;
        transform: translateZ(0);
        backface-visibility: hidden;
    }

    .industry-result-carousel-arrow {
        width: 2.35rem;
        height: 2.35rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        z-index: 3;
        border: 1px solid rgba(203, 213, 225, 0.9);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.94);
        color: #0b1f3a;
        box-shadow: 0 14px 28px rgba(11, 31, 58, 0.16);
        transform: translateY(-50%);
        transition: background-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
    }

    .industry-result-carousel-arrow:hover,
    .industry-result-carousel-arrow:focus-visible {
        outline: none;
        background: #f97316;
        color: #fff;
        box-shadow: 0 16px 32px rgba(249, 115, 22, 0.28);
    }

    .industry-result-carousel-arrow:active {
        transform: translateY(-50%) scale(0.96);
    }

    .industry-result-carousel-arrow:disabled {
        cursor: default;
        opacity: 0.35;
        color: #64748b;
        background: rgba(255, 255, 255, 0.82);
        box-shadow: none;
        pointer-events: none;
    }

    .industry-result-carousel-arrow-left {
        left: 0.35rem;
    }

    .industry-result-carousel-arrow-right {
        right: 0.35rem;
    }

    .industry-result-grid,
    .industry-showcase-grid {
        gap: 1rem;
    }

    .industry-result-body,
    .industry-showcase-body {
        padding: 1.125rem;
    }

    .industry-result-body {
        min-height: 16.4rem;
    }

    .industry-result-view-button {
        right: 0.75rem;
        bottom: 0.75rem;
        padding: 0.65rem 0.85rem;
        font-size: 0.8rem;
    }

    .industry-result-photo-count {
        right: 0.75rem;
        top: 0.75rem;
    }

    .industry-result-body h3,
    .industry-showcase-body h3 {
        font-size: 1rem;
    }

    .industry-result-body p,
    .industry-showcase-body p {
        font-size: 0.875rem;
        line-height: 1.7;
    }

    .industry-result-body > p:not(.industry-result-location) {
        min-height: 4.5rem;
    }

    .industry-result-meta {
        min-height: 5.65rem;
    }

    .industry-gallery-modal {
        padding: 0.75rem;
    }

    .industry-gallery-panel {
        max-height: calc(100vh - 1.5rem);
        border-radius: 0.85rem;
    }

    .industry-gallery-header {
        padding: 1rem 4rem 0.85rem 1rem;
    }

    .industry-gallery-stage {
        min-height: 16rem;
    }

    .industry-gallery-stage img {
        max-height: 60vh;
    }

    .industry-gallery-nav {
        width: 2.55rem;
        height: 2.55rem;
    }

    .industry-gallery-prev {
        left: 0.65rem;
    }

    .industry-gallery-next {
        right: 0.65rem;
    }

    .industry-gallery-footer {
        min-height: 3.75rem;
        padding: 0.85rem 1rem;
    }
}

@media (max-width: 767px) {
    .industry-gallery-modal {
        padding: max(0.55rem, env(safe-area-inset-top, 0px)) 0.55rem max(0.55rem, env(safe-area-inset-bottom, 0px));
        place-items: center;
    }

    .industry-gallery-panel {
        width: min(100%, 25rem);
        max-height: calc(100dvh - 1.1rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
        grid-template-rows: auto minmax(0, auto) auto;
        border-radius: 0.9rem;
    }

    .industry-gallery-header {
        padding: 0.82rem 3.45rem 0.72rem 0.95rem;
    }

    .industry-gallery-header p {
        margin-bottom: 0.2rem;
        font-size: 0.64rem;
        letter-spacing: 0.08em;
    }

    .industry-gallery-header h3 {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        font-size: clamp(0.95rem, 4.4vw, 1.12rem);
        line-height: 1.32;
    }

    .industry-gallery-close {
        width: 2.15rem;
        height: 2.15rem;
        top: 0.62rem;
        right: 0.62rem;
    }

    .industry-gallery-stage {
        min-height: 0;
        height: clamp(14rem, 56dvh, 28rem);
        max-height: calc(100dvh - 10.5rem);
        overflow: hidden;
    }

    .industry-gallery-stage img {
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: contain;
    }

    .industry-gallery-nav {
        width: 2.25rem;
        height: 2.25rem;
        background: rgba(11, 31, 58, 0.72);
        box-shadow: 0 10px 24px rgba(5, 20, 36, 0.24);
    }

    .industry-gallery-prev {
        left: 0.5rem;
    }

    .industry-gallery-next {
        right: 0.5rem;
    }

    .industry-gallery-footer {
        min-height: 0;
        align-items: center;
        gap: 0.65rem;
        padding: 0.68rem 0.85rem 0.78rem;
        font-size: 0.78rem;
    }

    .industry-gallery-dots {
        max-width: 55%;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 0.32rem;
    }

    .industry-gallery-dots button {
        width: 0.48rem;
        height: 0.48rem;
    }

    .industry-gallery-dots button.is-active {
        width: 1.12rem;
    }
}

@media (max-width: 380px) {
    .industry-gallery-panel {
        width: 100%;
    }

    .industry-gallery-stage {
        height: clamp(13rem, 50dvh, 22rem);
        max-height: calc(100dvh - 9.75rem);
    }

    .industry-gallery-footer {
        padding-right: 0.7rem;
        padding-left: 0.7rem;
    }
}

.product-detail-cta-dots {
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
    background-size: 12px 12px;
}

/* Animated mobile navigation toggle */
.mobile-menu-toggle {
    position: relative;
    width: 2.75rem;
    height: 2.75rem;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0;
    border: 0;
    border-radius: 0.25rem;
    background: transparent;
    color: #334155;
    cursor: pointer;
    transition: background-color 180ms ease, color 180ms ease;
}

.mobile-menu-toggle:hover {
    background: #f1f5f9;
    color: #0b1f3a;
}

.mobile-menu-toggle:focus-visible {
    outline: 3px solid rgba(249, 115, 22, 0.35);
    outline-offset: 2px;
}

.mobile-menu-toggle span {
    width: 1.35rem;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition: transform 260ms cubic-bezier(0.4, 0, 0.2, 1), opacity 160ms ease, width 220ms ease;
}

.mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(0.5rem) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
    width: 0;
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-0.5rem) rotate(-45deg);
}

.mobile-menu-toggle.is-open {
    color: #0b1f3a;
}

.mobile-menu-panel {
    opacity: 0;
    transform: translateY(-0.65rem) scale(0.985);
    transform-origin: top center;
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
    box-shadow: 0 22px 42px rgba(11, 31, 58, 0.14);
    transition: opacity 220ms ease, transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.mobile-menu-panel.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.mobile-menu-panel > div > * {
    opacity: 0;
    transform: translateY(-0.35rem);
    transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-menu-panel.is-open > div > * {
    animation: mobileNavItemIn 260ms ease forwards;
}

.mobile-menu-panel.is-open > div > *:nth-child(1) { animation-delay: 35ms; }
.mobile-menu-panel.is-open > div > *:nth-child(2) { animation-delay: 70ms; }
.mobile-menu-panel.is-open > div > *:nth-child(3) { animation-delay: 105ms; }
.mobile-menu-panel.is-open > div > *:nth-child(4) { animation-delay: 140ms; }
.mobile-menu-panel.is-open > div > *:nth-child(5) { animation-delay: 175ms; }
.mobile-menu-panel.is-open > div > *:nth-child(6) { animation-delay: 210ms; }
.mobile-menu-panel.is-open > div > *:nth-child(7) { animation-delay: 245ms; }

.mobile-menu-panel button i {
    transition: transform 180ms ease;
}

.mobile-menu-panel button.is-open i {
    transform: rotate(180deg);
}

.mobile-submenu-panel {
    opacity: 0;
    max-height: 0;
    transform: translateY(-0.35rem);
    transform-origin: top center;
    overflow: hidden;
    transition: max-height 240ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 180ms ease, transform 220ms ease;
}

.mobile-submenu-panel.is-open {
    opacity: 1;
    transform: translateY(0);
}

.mobile-submenu-panel > * {
    opacity: 0;
    transform: translateY(-0.25rem);
    transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-submenu-panel.is-open > * {
    opacity: 1;
    transform: translateY(0);
}

.mobile-submenu-panel.is-open > *:nth-child(1) { transition-delay: 35ms; }
.mobile-submenu-panel.is-open > *:nth-child(2) { transition-delay: 70ms; }
.mobile-submenu-panel.is-open > *:nth-child(3) { transition-delay: 105ms; }
.mobile-submenu-panel.is-open > *:nth-child(4) { transition-delay: 140ms; }
.mobile-submenu-panel.is-open > *:nth-child(5) { transition-delay: 175ms; }

@keyframes mobileNavItemIn {
    from {
        opacity: 0;
        transform: translateY(-0.35rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Services page industrial catalog */
.services-page {
    color: #142033;
    background: #f4f6f8;
}

.services-hero {
    position: relative;
    min-height: 38rem;
    display: flex;
    align-items: flex-end;
    padding: 8rem 0 6rem;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 20, 36, 0.96) 0%, rgba(5, 25, 45, 0.78) 48%, rgba(5, 25, 45, 0.2) 100%);
}

.services-hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 52px 52px;
}

.services-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.services-hero-copy {
    max-width: 50rem;
    padding: 0.75rem 0 0.75rem 2rem;
    border-left: 6px solid #f97316;
}

.services-hero-copy h1 {
    margin: 0 0 1rem;
    color: #fff;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.04em;
}

.services-hero-copy p {
    margin: 0;
    color: #e2e8f0;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    line-height: 1.7;
}

.services-catalog-section {
    position: relative;
    padding: 7rem 0;
    background: #eef2f6;
}

.services-catalog-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 18%;
    height: 5px;
    background: #f97316;
}

.services-section-heading {
    max-width: 48rem;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-section-heading h2 {
    margin: 0;
    color: #0b1f3a;
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    font-weight: 900;
    line-height: 1.2;
}

.services-section-heading h2::after {
    content: "";
    display: block;
    width: 4.5rem;
    height: 4px;
    margin: 1.25rem auto 0;
    background: #f97316;
}

.services-section-heading p {
    margin: 1.25rem auto 0;
    color: #64748b;
    font-size: 1.15rem;
    line-height: 1.8;
}

#categoriesContainer.services-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.services-mobile-carousel {
    position: relative;
}

.services-carousel-arrow {
    display: none;
}

#categoriesContainer.services-catalog-grid > div {
    min-height: 31rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #d8dee7;
    border-top: 5px solid #f97316;
    border-radius: 0;
    background: #fff;
    box-shadow: 0 12px 30px rgba(11, 31, 58, 0.08);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

#categoriesContainer.services-catalog-grid > div:hover {
    transform: translateY(-7px);
    border-color: #f97316;
    box-shadow: 0 20px 38px rgba(11, 31, 58, 0.14);
}

#categoriesContainer.services-catalog-grid > div > div:first-child {
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 0;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(rgba(11, 31, 58, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 31, 58, 0.035) 1px, transparent 1px),
        #f4f7fa;
    background-size: 30px 30px;
}

#categoriesContainer.services-catalog-grid > div > div:first-child > div {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
}

#categoriesContainer.services-catalog-grid > div > div:first-child > div > div {
    width: min(100%, 15rem);
    aspect-ratio: 1 / 1;
    height: auto;
    margin: 0 auto;
    padding: 1rem;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: inset 0 0 0 1px #d8dee7;
}

#categoriesContainer.services-catalog-grid > div > div:first-child img {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    margin: auto;
    padding: 0;
    object-fit: contain;
    object-position: center center;
    transition: transform 260ms ease;
}

#categoriesContainer.services-catalog-grid > div:hover > div:first-child img {
    transform: scale(1.06);
}

/* Product page consultation CTA */
.product-consultation {
    position: relative;
    padding: 5.5rem 0;
    overflow: hidden;
    background:
        linear-gradient(rgba(11, 31, 58, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 31, 58, 0.04) 1px, transparent 1px),
        #eef2f6;
    background-size: 32px 32px;
}

.product-consultation::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(100% - 2rem, 80rem);
    height: 4px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #f97316 0 22%, #0b1f3a 22% 100%);
}

.product-consultation-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 3rem;
    min-height: 18rem;
    padding: 3.75rem 4rem;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(115deg, rgba(11, 31, 58, 0.98), rgba(18, 55, 91, 0.96)),
        #0b1f3a;
    box-shadow: 0 24px 55px rgba(11, 31, 58, 0.2);
}

.product-consultation-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, transparent 0 62%, rgba(255, 255, 255, 0.04) 62% 63%, transparent 63%),
        repeating-linear-gradient(90deg, transparent 0 54px, rgba(255, 255, 255, 0.025) 54px 55px);
}

.product-consultation-panel::after {
    content: "";
    position: absolute;
    right: -5rem;
    bottom: -7rem;
    width: 20rem;
    height: 20rem;
    border: 3rem solid rgba(249, 115, 22, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.product-consultation-copy,
.product-consultation-action {
    position: relative;
    z-index: 1;
}

.product-consultation-copy {
    padding-left: 1.5rem;
    border-left: 5px solid #f97316;
}

.product-consultation-copy h2 {
    margin: 0 0 1rem;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.product-consultation-copy p {
    max-width: 42rem;
    margin: 0;
    color: #cbd5e1;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.8;
}

.product-consultation-button {
    display: inline-grid;
    grid-template-columns: 3.25rem auto 1.25rem;
    align-items: center;
    gap: 1rem;
    min-width: 15.5rem;
    padding: 0.8rem 1.25rem 0.8rem 0.8rem;
    color: #0b1f3a;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    transition: transform 220ms ease, color 220ms ease, background-color 220ms ease;
}

.product-consultation-button-icon {
    display: grid;
    width: 3.25rem;
    height: 3.25rem;
    place-items: center;
    color: #fff;
    background: #f97316;
    font-size: 1.05rem;
}

.product-consultation-arrow {
    color: #f97316;
    transition: transform 220ms ease;
}

.product-consultation-button:hover {
    color: #fff;
    background: #f97316;
    transform: translateY(-3px);
}

.product-consultation-button:hover .product-consultation-button-icon {
    color: #f97316;
    background: #fff;
}

.product-consultation-button:hover .product-consultation-arrow {
    color: #fff;
    transform: translateX(4px);
}

@media (max-width: 767px) {
    .product-consultation {
        padding: 3.5rem 0;
    }

    .product-consultation-panel {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: 0;
        padding: 2.5rem 1.5rem;
    }

    .product-consultation-copy {
        padding-left: 1rem;
    }

    .product-consultation-action,
    .product-consultation-button {
        width: 100%;
    }

    .product-consultation-button {
        min-width: 0;
    }
}

#categoriesContainer.services-catalog-grid > div > div:first-child h3 {
    margin: 1.1rem 0 0;
    color: #0b1f3a;
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1.3;
}

#categoriesContainer.services-catalog-grid > div > div:nth-child(2) {
    min-height: 12rem;
    padding: 1.75rem;
    display: flex;
    flex: 1;
    flex-direction: column;
    background: #fff;
}

#categoriesContainer.services-catalog-grid > div > div:nth-child(2) h4 {
    margin: 0;
    color: #526174;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.75;
}

#categoriesContainer.services-catalog-grid > div > div:nth-child(2) a {
    min-height: 3.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding: 0.8rem 1rem;
    border: 1px solid #0b1f3a;
    border-radius: 0;
    background: #0b1f3a;
    color: #fff;
    font-weight: 800;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

#categoriesContainer.services-catalog-grid > div > div:nth-child(2) a:hover {
    border-color: #f97316;
    background: #f97316;
}

#categoriesContainer.services-catalog-grid > div > div:nth-child(2) a i {
    margin-left: 1rem;
    transition: transform 180ms ease;
}

#categoriesContainer.services-catalog-grid > div > div:nth-child(2) a:hover i {
    transform: translateX(4px);
}

.services-product-modal {
    padding: 1rem;
    background: rgba(5, 20, 36, 0.8);
    backdrop-filter: blur(5px);
}

.services-product-modal-panel {
    border: 1px solid #64748b;
    border-radius: 0;
    background: #f4f6f8;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.services-product-modal-header {
    border-bottom: 4px solid #f97316;
    background: #0b1f3a;
}

.services-product-modal-header button {
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 0;
}

#productModalContent {
    color: #142033;
}

@media (max-width: 1023px) {
    #categoriesContainer.services-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 639px) {
    .services-hero {
        min-height: 30rem;
        padding: 7rem 0 4rem;
        background-position: 62% center;
    }

    .services-hero-overlay {
        background: rgba(5, 20, 36, 0.8);
    }

    .services-hero-copy {
        padding-left: 1.25rem;
    }

    .services-catalog-section {
        padding: 5rem 0;
    }

    .services-mobile-carousel {
        margin: 0 -1rem;
        padding: 0 2.85rem;
    }

    #categoriesContainer.services-catalog-grid {
        display: flex;
        gap: 1rem;
        padding: 0.25rem 0 1.15rem;
        overflow-x: auto;
        overflow-y: visible;
        scroll-behavior: smooth;
        scroll-padding-inline: 0;
        scroll-snap-type: x proximity;
        overscroll-behavior-x: contain;
        touch-action: pan-x;
        cursor: grab;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    #categoriesContainer.services-catalog-grid.is-dragging {
        cursor: grabbing;
        scroll-behavior: auto;
        user-select: none;
    }

    #categoriesContainer.services-catalog-grid.is-scrolling > div,
    #categoriesContainer.services-catalog-grid.is-dragging > div,
    #categoriesContainer.services-catalog-grid.is-scrolling img,
    #categoriesContainer.services-catalog-grid.is-dragging img {
        transition: none;
    }

    #categoriesContainer.services-catalog-grid::-webkit-scrollbar {
        display: none;
    }

    #categoriesContainer.services-catalog-grid > div {
        width: min(74vw, 18.5rem);
        min-width: min(74vw, 18.5rem);
        max-width: 18.5rem;
        min-height: 25rem;
        scroll-snap-align: center;
        scroll-snap-stop: normal;
        transform: translateZ(0);
        backface-visibility: hidden;
    }

    #categoriesContainer.services-catalog-grid > div > div:first-child {
        aspect-ratio: 1 / 1;
        height: auto;
        min-height: 0;
        padding: 1rem;
    }

    #categoriesContainer.services-catalog-grid > div > div:first-child > div > div {
        width: min(100%, 13.5rem);
        aspect-ratio: 1 / 1;
        height: auto;
        padding: 0.75rem;
    }

    #categoriesContainer.services-catalog-grid > div > div:nth-child(2) {
        min-height: 9.5rem;
        padding: 1.25rem;
    }

    #categoriesContainer.services-catalog-grid > div > div:first-child h3 {
        font-size: 1.2rem;
    }

    #categoriesContainer.services-catalog-grid > div > div:nth-child(2) h4 {
        font-size: 0.92rem;
        line-height: 1.55;
    }

    #categoriesContainer.services-catalog-grid > div > div:nth-child(2) a {
        min-height: 2.9rem;
        margin-top: 1.1rem;
        padding: 0.7rem 0.85rem;
        font-size: 0.92rem;
    }

    .services-carousel-arrow {
        width: 2.35rem;
        height: 2.35rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        z-index: 3;
        border: 1px solid rgba(203, 213, 225, 0.9);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.94);
        color: #0b1f3a;
        box-shadow: 0 14px 28px rgba(11, 31, 58, 0.16);
        transform: translateY(-50%);
        transition: background-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
    }

    .services-carousel-arrow:hover,
    .services-carousel-arrow:focus-visible {
        outline: none;
        background: #f97316;
        color: #fff;
        box-shadow: 0 16px 32px rgba(249, 115, 22, 0.28);
    }

    .services-carousel-arrow:active {
        transform: translateY(-50%) scale(0.96);
    }

    .services-carousel-arrow:disabled {
        cursor: default;
        opacity: 0.35;
        color: #64748b;
        background: rgba(255, 255, 255, 0.82);
        box-shadow: none;
        pointer-events: none;
    }

    .services-carousel-arrow-left {
        left: 0.35rem;
    }

    .services-carousel-arrow-right {
        right: 0.35rem;
    }
}

/* Contact page industrial layout */
.contact-page,
.contact-success-page,
.privacy-page {
    color: #142033;
    background: #f4f6f8;
}

.contact-hero,
.privacy-hero {
    position: relative;
    min-height: 34rem;
    display: flex;
    align-items: flex-end;
    padding: 8rem 0 5rem;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.contact-hero-overlay,
.privacy-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 20, 36, 0.96) 0%, rgba(5, 25, 45, 0.78) 48%, rgba(5, 25, 45, 0.22) 100%);
}

.contact-hero-grid,
.privacy-hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 52px 52px;
}

.contact-hero-content,
.privacy-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.contact-hero-copy,
.privacy-hero-copy {
    max-width: 48rem;
    padding: 0.75rem 0 0.75rem 2rem;
    border-left: 6px solid #f97316;
}

.contact-hero-copy h1,
.privacy-hero-copy h1 {
    margin: 0 0 1rem;
    color: #fff;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.04em;
}

.contact-hero-copy p,
.privacy-hero-copy p {
    margin: 0;
    color: #e2e8f0;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    line-height: 1.7;
}

.contact-info-section,
.contact-location-section {
    padding: 7rem 0;
    background: #fff;
}

.contact-form-section {
    padding: 7rem 0;
    background: #eef2f6;
}

.contact-section-heading {
    max-width: 48rem;
    margin: 0 auto 3.75rem;
    text-align: center;
}

.contact-section-heading h2 {
    margin: 0;
    color: #0b1f3a;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 900;
    line-height: 1.2;
}

.contact-section-heading h2::after {
    content: "";
    display: block;
    width: 4.5rem;
    height: 4px;
    margin: 1.25rem auto 0;
    background: #f97316;
}

.contact-section-heading p {
    margin: 1.25rem auto 0;
    color: #64748b;
    font-size: 1.15rem;
    line-height: 1.8;
}

.contact-info-grid {
    display: grid;
    max-width: 64rem;
    margin: 0 auto;
    grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.75fr);
    gap: 1.25rem;
    align-items: stretch;
}

.contact-info-card {
    position: relative;
    min-height: 0;
    padding: 2rem;
    border: 1px solid #d8dee7;
    border-radius: 1.1rem;
    background: linear-gradient(180deg, #fff, #f8fafc);
    box-shadow: 0 18px 45px rgba(11, 31, 58, 0.08);
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-info-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #ffb167);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(11, 31, 58, 0.12);
}

.contact-info-card-phone {
    display: grid;
    grid-template-columns: minmax(9rem, 0.35fr) minmax(0, 1fr);
    gap: 1.25rem 1.5rem;
    align-items: start;
}

.contact-info-card-phone .contact-info-icon,
.contact-info-card-phone h3,
.contact-info-card-phone > p {
    grid-column: 1;
}

.contact-info-card-phone .contact-phone-list {
    grid-column: 2;
    grid-row: 1 / span 3;
}

.contact-info-card-email {
    display: flex;
    flex-direction: column;
}

.contact-info-icon {
    width: 3.25rem;
    height: 3.25rem;
    display: grid;
    place-items: center;
    margin-bottom: 1.35rem;
    border-radius: 0.75rem;
    background: #0b1f3a;
    color: #fff;
    font-size: 1.35rem;
}

.contact-info-card h3 {
    margin: 0 0 0.85rem;
    color: #0b1f3a;
    font-size: 1.35rem;
    font-weight: 900;
}

.contact-info-card p {
    margin: 0 0 0.7rem;
    color: #526174;
    line-height: 1.7;
}

.contact-info-card p:last-child {
    margin: 0;
    color: #7c8998;
    font-size: 0.9rem;
}

.contact-phone-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 0;
}

.contact-phone-list a {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.82rem 0.95rem;
    border: 1px solid #e4e9f0;
    border-radius: 0.9rem;
    background: linear-gradient(180deg, #fff, #f8fafc);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    color: #0b1f3a;
    line-height: 1.35;
    text-decoration: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

.contact-phone-list a:hover {
    border-color: #f97316;
    box-shadow: 0 14px 30px rgba(249, 115, 22, 0.12);
    color: #c2410c;
    transform: translateY(-1px);
}

.contact-phone-list strong {
    flex: 1;
    min-width: 0;
    text-align: right;
    font-size: 0.95rem;
    font-weight: 850;
    letter-spacing: 0.01em;
}

.contact-phone-flag {
    display: inline-flex;
    min-width: 2.25rem;
    width: auto;
    height: 2.25rem;
    align-items: center;
    justify-content: center;
    padding: 0 0.35rem;
    flex-shrink: 0;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    letter-spacing: 0;
}

.footer-phone-flag {
    display: inline-flex;
    min-width: 1.75rem;
    width: auto;
    height: 1.25rem;
    align-items: center;
    justify-content: center;
    padding: 0 0.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
    letter-spacing: 0;
}

.footer-social-zalo-mark {
    color: #fff;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0;
}

.contact-email-link {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 0.55rem;
    color: #0b1f3a;
    font-size: 1.02rem;
    font-weight: 850;
    text-decoration: none;
}

.contact-email-link:hover {
    color: #c2410c;
}

.contact-email-button {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    background: #0b1f3a;
    color: #fff;
    font-weight: 850;
    text-decoration: none;
    transition: background-color 160ms ease, transform 160ms ease;
}

.contact-email-button:hover {
    background: #f97316;
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        max-width: 42rem;
    }

    .contact-info-card-phone {
        grid-template-columns: 1fr;
    }

    .contact-info-card-phone .contact-info-icon,
    .contact-info-card-phone h3,
    .contact-info-card-phone > p,
    .contact-info-card-phone .contact-phone-list {
        grid-column: 1;
    }

    .contact-info-card-phone .contact-phone-list {
        grid-row: auto;
    }
}

@media (max-width: 640px) {
    .contact-info-card {
        padding: 1.35rem;
        border-radius: 0.95rem;
    }

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

@media (max-width: 480px) {
    .contact-phone-list a {
        padding: 0.78rem 0.82rem;
        gap: 0.7rem;
    }

    .contact-phone-list strong {
        font-size: 0.94rem;
    }

    .contact-phone-flag {
        min-width: 2.05rem;
        width: auto;
        height: 2.05rem;
        font-size: 0.96rem;
    }
}

.contact-form-wrap {
    max-width: 56rem;
    margin: 0 auto;
}

.contact-form {
    position: relative;
    padding: 3.25rem;
    border: 1px solid rgba(203, 213, 225, 0.75);
    border-top: 5px solid #f97316;
    border-radius: 1.35rem;
    background:
        linear-gradient(180deg, rgba(255, 247, 237, 0.54) 0%, rgba(255, 255, 255, 0) 18rem),
        #fff;
    box-shadow: 0 24px 60px rgba(11, 31, 58, 0.13);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form-field {
    margin-bottom: 1.65rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.7rem;
    color: #0b1f3a;
    font-size: 0.96rem;
    font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 3.45rem;
    padding: 0.95rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.8rem;
    outline: none;
    background: #f8fafc;
    color: #142033;
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
    border-color: #f97316;
    background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #f97316;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.contact-form textarea {
    min-height: 11rem;
    resize: vertical;
}

.contact-service-category-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    padding: 0.25rem;
    border: 1px solid transparent;
    border-radius: 0.9rem;
}

.contact-service-category-group.border-red-500 {
    border-color: #ef4444;
}

.contact-service-option {
    margin: 0;
    cursor: pointer;
}

.contact-service-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.contact-service-option span {
    min-height: 3.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.85rem;
    background: #f8fafc;
    color: #142033;
    font-size: 0.95rem;
    font-weight: 800;
    text-align: center;
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.contact-service-option:hover span {
    border-color: #f97316;
    background: #fff7ed;
}

.contact-service-option input:checked + span {
    border-color: #f97316;
    background: #f97316;
    color: #fff;
    box-shadow: 0 14px 26px rgba(249, 115, 22, 0.2);
}

.contact-service-option input:focus-visible + span {
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.18);
}

.contact-service-dropdown {
    position: relative;
    z-index: 2;
}

.contact-service-dropdown-toggle {
    width: 100%;
    min-height: 3.65rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.85rem;
    outline: none;
    background: #f8fafc;
    color: #142033;
    font-size: 1rem;
    text-align: left;
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contact-service-dropdown-toggle i {
    color: #0b1f3a;
    font-size: 0.85rem;
    transition: transform 180ms ease;
}

.contact-service-dropdown-toggle:hover,
.contact-service-dropdown.is-open .contact-service-dropdown-toggle {
    border-color: #f97316;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.13);
}

.contact-service-dropdown.is-open .contact-service-dropdown-toggle {
    border-bottom-right-radius: 0.65rem;
    border-bottom-left-radius: 0.65rem;
}

.contact-service-dropdown.is-open .contact-service-dropdown-toggle i {
    transform: rotate(180deg);
}

.contact-service-dropdown.is-disabled .contact-service-dropdown-toggle {
    cursor: not-allowed;
    color: #7c8998;
    background: #eef2f6;
}

.contact-service-dropdown.border-red-500 .contact-service-dropdown-toggle {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.contact-service-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0;
    right: 0;
    max-height: 16rem;
    display: none;
    padding: 0.45rem;
    border: 1px solid rgba(203, 213, 225, 0.95);
    border-radius: 0.75rem;
    background: #fff;
    box-shadow: 0 18px 42px rgba(11, 31, 58, 0.18);
    overflow-y: auto;
}

.contact-service-dropdown.is-open .contact-service-dropdown-menu {
    display: grid;
    gap: 0.25rem;
}

.contact-service-dropdown-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 2.75rem;
    padding: 0.7rem 0.85rem;
    border: 0;
    border-radius: 0.5rem;
    background: transparent;
    color: #142033;
    font-size: 1rem;
    text-align: left;
    transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.contact-service-dropdown-item:hover,
.contact-service-dropdown-item:focus-visible {
    outline: none;
    background: #fff7ed;
    color: #c2410c;
}

.contact-service-dropdown-item.is-selected {
    background: #f97316;
    color: #fff;
    font-weight: 800;
}

.contact-service-dropdown-item.is-selected::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.8rem;
}

.contact-form-submit {
    display: flex;
    justify-content: flex-end;
}

.contact-form-submit button {
    min-width: 11rem;
    min-height: 3.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.04em;
    box-shadow: 0 16px 34px rgba(249, 115, 22, 0.24);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.contact-form-submit button:hover {
    transform: translateY(-3px);
    filter: brightness(1.02);
    box-shadow: 0 20px 42px rgba(249, 115, 22, 0.3);
}

.contact-form-submit button:disabled {
    cursor: wait;
    opacity: 0.7;
    transform: none;
}

.contact-location-panel {
    min-height: 24rem;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #cbd5e1;
    background:
        linear-gradient(rgba(11, 31, 58, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 31, 58, 0.035) 1px, transparent 1px),
        #eef2f6;
    background-size: 36px 36px;
    text-align: center;
}

.contact-location-panel::before,
.contact-location-panel::after {
    content: "";
    position: absolute;
    width: 8rem;
    height: 8rem;
    border-color: #f97316;
}

.contact-location-panel::before {
    top: 1.5rem;
    left: 1.5rem;
    border-top: 4px solid #f97316;
    border-left: 4px solid #f97316;
}

.contact-location-panel::after {
    right: 1.5rem;
    bottom: 1.5rem;
    border-right: 4px solid #f97316;
    border-bottom: 4px solid #f97316;
}

.contact-location-panel > div {
    position: relative;
    z-index: 1;
}

.contact-location-panel i {
    margin-bottom: 1.25rem;
    color: #0b1f3a;
    font-size: 4.25rem;
}

.contact-location-panel p {
    margin: 0 0 0.4rem;
    color: #526174;
    font-size: 1.05rem;
}

.contact-location-panel p:last-child {
    color: #7c8998;
    font-size: 0.9rem;
}

/* Contact success state */
.contact-success-section {
    min-height: 100vh;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 5rem;
    background:
        linear-gradient(rgba(11, 31, 58, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 31, 58, 0.045) 1px, transparent 1px),
        #eef2f6;
    background-size: 44px 44px;
}

.contact-success-section > div {
    width: calc(100% - 2rem);
    max-width: 56rem;
    padding-right: 0 !important;
    padding-left: 0 !important;
    box-sizing: border-box;
}

.contact-success-panel {
    position: relative;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 3.5rem;
    border-top: 6px solid #f97316;
    background: #fff;
    text-align: center;
    box-shadow: 0 22px 48px rgba(11, 31, 58, 0.13);
    overflow: hidden;
}

.contact-success-icon {
    width: 6rem;
    height: 6rem;
    display: grid;
    place-items: center;
    margin: 0 auto 2rem;
    background: #0b1f3a;
    color: #fff;
    font-size: 3rem;
}

.contact-success-panel h1 {
    margin: 0 0 1.25rem;
    color: #0b1f3a;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.15;
}

.contact-success-message {
    max-width: 42rem;
    margin: 0 auto 2rem;
    color: #526174;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    line-height: 1.7;
}

.contact-success-notice {
    margin-bottom: 2rem;
    padding: 1.25rem;
    border-left: 4px solid #f97316;
    background: #f7f9fb;
}

.contact-success-notice > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    color: #163d68;
}

.contact-success-notice p {
    margin: 0;
    overflow-wrap: anywhere;
}

.contact-success-actions {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.contact-success-button {
    min-width: 10rem;
    min-height: 3.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 0.95rem 1.4rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    font-weight: 900;
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.contact-success-button:hover {
    transform: translateY(-3px);
}

.contact-success-button-primary {
    background: #f97316;
    color: #fff;
}

.contact-success-button-primary:hover {
    background: #ea580c;
}

.contact-success-button-secondary {
    border-color: #0b1f3a;
    background: #fff;
    color: #0b1f3a;
}

.contact-success-button-secondary:hover {
    background: #0b1f3a;
    color: #fff;
}

.contact-success-emergency {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #d8dee7;
}

.contact-success-emergency > p {
    margin: 0 0 1rem;
    color: #64748b;
}

.contact-success-emergency > div {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.contact-success-emergency > div > div {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #526174;
    font-size: 0.95rem;
}

.contact-success-emergency span {
    overflow-wrap: anywhere;
}

.contact-success-emergency i {
    color: #f97316;
}

/* Privacy policy document */
.privacy-content-section {
    padding: 7rem 0;
    background: #eef2f6;
}

.privacy-header {
    max-width: 48rem;
    margin: 0 auto 4rem;
    text-align: center;
}

.privacy-header-icon {
    width: 5rem;
    height: 5rem;
    display: grid;
    place-items: center;
    margin: 0 auto 1.5rem;
    background: #0b1f3a;
    color: #fff;
    font-size: 2rem;
}

.privacy-header h1 {
    margin: 0 0 1.25rem;
    color: #0b1f3a;
    font-size: clamp(2.4rem, 5vw, 3.75rem);
    font-weight: 900;
    line-height: 1.15;
}

.privacy-header > p {
    margin: 0;
    color: #526174;
    font-size: 1.15rem;
    line-height: 1.8;
}

.privacy-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.75rem;
}

.privacy-meta > div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.privacy-meta i {
    color: #f97316;
}

.privacy-intro-card {
    margin-bottom: 1rem;
    padding: 2.5rem;
    border-top: 5px solid #f97316;
    background: #fff;
    box-shadow: 0 14px 34px rgba(11, 31, 58, 0.08);
}

.privacy-intro-card > div {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.privacy-section-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: #0b1f3a;
    color: #fff;
    font-size: 1.2rem;
}

.privacy-intro-card h2 {
    margin: 0 0 0.75rem;
    color: #0b1f3a;
    font-size: 1.65rem;
    font-weight: 900;
}

.privacy-intro-card p {
    margin: 0;
    color: #526174;
    font-size: 1.02rem;
    line-height: 1.9;
}

.privacy-policy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.privacy-policy-grid > div {
    position: relative;
    padding: 2rem;
    border: 1px solid #d8dee7;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.privacy-policy-grid > div:hover {
    transform: translateY(-4px);
    border-color: #f97316;
    box-shadow: 0 15px 30px rgba(11, 31, 58, 0.09);
}

.privacy-policy-grid > div > div:first-child {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.privacy-policy-grid > div > div:first-child > div {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    margin-right: 0.85rem;
    border-radius: 0;
    background: #0b1f3a;
    color: #fff;
}

.privacy-policy-grid h3 {
    margin: 0;
    color: #0b1f3a;
    font-size: 1.15rem;
    font-weight: 900;
}

.privacy-policy-grid p {
    color: #526174;
    line-height: 1.85;
}

.privacy-policy-grid > div > .space-y-2 {
    display: grid;
    gap: 0.55rem;
}

.privacy-policy-grid > div > .space-y-2 > div {
    color: #526174;
}

.privacy-policy-grid > div > .space-y-2 i {
    color: #f97316;
}

.privacy-policy-grid > div:nth-last-child(1) {
    grid-column: 1 / -1;
    border: 0;
    border-top: 5px solid #f97316;
    background: #0b1f3a;
    color: #fff;
}

.privacy-policy-grid > div:nth-last-child(2) {
    grid-column: 1 / -1;
}

.privacy-policy-grid > div:nth-last-child(1) h3,
.privacy-policy-grid > div:nth-last-child(1) p {
    color: #fff;
}

.privacy-policy-grid > div:nth-last-child(1) > div:first-child > div,
.privacy-policy-grid > div:nth-last-child(1) .bg-white {
    background: rgba(255, 255, 255, 0.12);
}

.privacy-policy-grid > div:nth-last-child(1) .grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.privacy-policy-grid > div:nth-last-child(1) .grid > div {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.privacy-content-section .text-center.mt-12 {
    margin-top: 2.5rem;
    color: #64748b;
}

@media (max-width: 767px) {
    .contact-hero,
    .privacy-hero {
        min-height: 29rem;
        padding: 7rem 0 4rem;
        background-position: 60% center;
    }

    .contact-hero-overlay,
    .privacy-hero-overlay {
        background: rgba(5, 20, 36, 0.8);
    }

    .contact-hero-copy,
    .privacy-hero-copy {
        padding-left: 1.25rem;
    }

    .contact-info-section,
    .contact-form-section,
    .contact-location-section,
    .privacy-content-section {
        padding: 5rem 0;
    }

    .contact-info-grid,
    .contact-form-grid,
    .contact-service-category-group,
    .privacy-policy-grid {
        grid-template-columns: 1fr;
    }

    .contact-form,
    .contact-success-panel,
    .privacy-intro-card {
        padding: 2rem;
    }

    .contact-form-submit button {
        width: 100%;
    }

    .contact-location-panel {
        min-height: 20rem;
    }

    .contact-success-section {
        width: 100vw;
        max-width: 100vw;
        padding: 7rem 0 4rem;
        overflow-x: hidden;
    }

    .contact-success-section > div {
        width: 100vw;
        max-width: 100vw;
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    .contact-success-actions,
    .contact-success-emergency > div,
    .privacy-meta,
    .privacy-intro-card > div {
        flex-direction: column;
    }

    .contact-success-button {
        width: 100%;
    }

    .contact-success-panel {
        width: calc(100vw - 2rem) !important;
        max-width: calc(100vw - 2rem) !important;
        margin-right: auto;
        margin-left: auto;
    }

    .contact-success-panel h1,
    .contact-success-message,
    .contact-success-notice,
    .contact-success-emergency {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .contact-success-notice > div {
        align-items: flex-start;
        text-align: left;
    }

    .privacy-meta {
        align-items: center;
        gap: 0.6rem;
    }

    .privacy-policy-grid > div:nth-last-child(1) .grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ page industrial layout */
.faq-page {
    color: #142033;
    background: #f4f6f8;
}

.faq-hero {
    position: relative;
    min-height: 34rem;
    display: flex;
    align-items: flex-end;
    padding: 8rem 0 5rem;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.faq-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 20, 36, 0.96) 0%, rgba(5, 25, 45, 0.78) 48%, rgba(5, 25, 45, 0.22) 100%);
}

.faq-hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 52px 52px;
}

.faq-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.faq-hero-copy {
    max-width: 46rem;
    padding: 0.75rem 0 0.75rem 2rem;
    border-left: 6px solid #f97316;
}

.faq-hero-copy h1 {
    margin: 0 0 1rem;
    color: #fff;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.04em;
}

.faq-hero-copy p {
    margin: 0;
    color: #e2e8f0;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    line-height: 1.7;
}

.faq-list-section {
    position: relative;
    padding: 7rem 0;
    background: #fff;
}

.faq-list-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 18%;
    height: 5px;
    background: #f97316;
}

.faq-list {
    border-top: 1px solid #d8dee7;
}

.faq-item {
    position: relative;
    border-right: 1px solid #d8dee7;
    border-bottom: 1px solid #d8dee7;
    border-left: 1px solid #d8dee7;
    background: #fff;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-item:has(.faq-answer:not(.hidden)) {
    z-index: 1;
    border-color: #f97316;
    box-shadow: 0 14px 30px rgba(11, 31, 58, 0.09);
}

.faq-question {
    width: 100%;
    min-height: 6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.5rem 1.75rem;
    background: transparent;
    color: #0b1f3a;
    text-align: left;
    transition: background-color 180ms ease, color 180ms ease;
}

.faq-question::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5px;
    background: #d8dee7;
    transition: background-color 180ms ease;
}

.faq-question:hover {
    background: #f7f9fb;
}

.faq-item:has(.faq-answer:not(.hidden)) .faq-question::before {
    background: #f97316;
}

.faq-question span {
    font-size: 1.15rem;
    font-weight: 900;
    line-height: 1.55;
}

.faq-question i {
    width: 2.75rem;
    height: 2.75rem;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    color: #163d68;
    transition: transform 200ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.faq-item:has(.faq-answer:not(.hidden)) .faq-question i {
    border-color: #f97316;
    background: #f97316;
    color: #fff;
}

.faq-answer {
    position: relative;
    padding: 0 5.75rem 1.75rem 1.75rem;
    background: #fff;
}

.faq-answer::before {
    content: "";
    display: block;
    height: 1px;
    margin-bottom: 1.4rem;
    background: #e2e8f0;
}

.faq-answer p {
    margin: 0;
    color: #526174;
    font-size: 1.02rem;
    line-height: 1.95;
}

.faq-contact-section {
    padding: 5rem 0;
    background: #eef2f6;
}

.faq-contact-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 3.25rem;
    border-top: 5px solid #f97316;
    background: #fff;
    box-shadow: 0 18px 40px rgba(11, 31, 58, 0.09);
}

.faq-contact-copy h2 {
    margin: 0 0 0.75rem;
    color: #0b1f3a;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
}

.faq-contact-copy p {
    margin: 0;
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
}

.faq-contact-actions {
    display: flex;
    flex-shrink: 0;
    gap: 0.75rem;
}

.faq-contact-button {
    min-width: 9.5rem;
    min-height: 3.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 0.9rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.faq-contact-button:hover {
    transform: translateY(-3px);
}

.faq-contact-button-primary {
    background: #0b1f3a;
    color: #fff;
}

.faq-contact-button-primary:hover {
    background: #163d68;
}

.faq-contact-button-secondary {
    border-color: #0b1f3a;
    background: #fff;
    color: #0b1f3a;
}

.faq-contact-button-secondary:hover {
    border-color: #f97316;
    background: #f97316;
    color: #fff;
}

@media (max-width: 767px) {
    .faq-hero {
        min-height: 29rem;
        padding: 7rem 0 4rem;
        background-position: 60% center;
    }

    .faq-hero-overlay {
        background: rgba(5, 20, 36, 0.8);
    }

    .faq-hero-copy {
        padding-left: 1.25rem;
    }

    .faq-list-section {
        padding: 5rem 0;
    }

    .faq-question {
        min-height: 5.25rem;
        gap: 1rem;
        padding: 1.25rem;
    }

    .faq-question span {
        font-size: 1rem;
    }

    .faq-question i {
        width: 2.4rem;
        height: 2.4rem;
    }

    .faq-answer {
        padding: 0 1.25rem 1.5rem;
    }

    .faq-contact-panel {
        flex-direction: column;
        align-items: stretch;
        padding: 2rem;
    }

    .faq-contact-actions {
        flex-direction: column;
    }

    .faq-contact-button {
        width: 100%;
    }
}

/* About page industrial layout */
.about-page {
    color: #142033;
    background: #f4f6f8;
}

.about-hero {
    position: relative;
    min-height: 38rem;
    display: flex;
    align-items: flex-end;
    padding: 8rem 0 6rem;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 20, 36, 0.96) 0%, rgba(5, 25, 45, 0.78) 48%, rgba(5, 25, 45, 0.2) 100%);
}

.about-hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 52px 52px;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.about-hero-copy {
    max-width: 46rem;
    padding: 0.75rem 0 0.75rem 2rem;
    border-left: 6px solid #f97316;
}

.about-hero-copy h1 {
    margin: 0 0 1rem;
    color: #fff;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.04em;
}

.about-hero-copy p {
    margin: 0;
    color: #e2e8f0;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    line-height: 1.7;
}

.about-intro,
.about-capabilities,
.about-advantages,
.about-certifications {
    padding: 7rem 0;
    background: #fff;
}

.about-intro-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.85fr);
    gap: 5rem;
    align-items: center;
}

.about-section-title,
.about-section-heading h2 {
    position: relative;
    margin: 0;
    color: #0b1f3a;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 900;
    line-height: 1.18;
}

.about-section-title {
    padding-bottom: 1.25rem;
    margin-bottom: 2rem;
}

.about-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 5rem;
    height: 5px;
    background: #f97316;
}

.about-intro-copy > p {
    margin: 0 0 1.5rem;
    color: #526174;
    font-size: 1.08rem;
    line-height: 2;
}

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

.about-office-list {
    position: relative;
    display: grid;
    gap: 1rem;
}

.about-office-list::before {
    content: "";
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 8rem;
    height: 8rem;
    border-top: 4px solid #f97316;
    border-right: 4px solid #f97316;
    pointer-events: none;
}

.about-office-card {
    position: relative;
    z-index: 1;
    padding: 1.75rem;
    border: 1px solid #d8dee7;
    border-left: 5px solid #163d68;
    background: #f7f9fb;
    box-shadow: 0 12px 28px rgba(11, 31, 58, 0.08);
    transition: transform 180ms ease, border-color 180ms ease;
}

.about-office-card:hover {
    transform: translateX(5px);
    border-left-color: #f97316;
}

.about-office-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #d8dee7;
}

.about-office-icon {
    width: 3.25rem;
    height: 3.25rem;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: #0b1f3a;
    color: #fff;
    font-size: 1.15rem;
}

.about-office-header h3 {
    margin: 0 0 0.2rem;
    color: #0b1f3a;
    font-size: 1.35rem;
    font-weight: 900;
}

.about-office-header p,
.about-office-details p {
    margin: 0;
    color: #64748b;
}

.about-office-details {
    display: grid;
    gap: 0.45rem;
    padding-top: 1rem;
    font-size: 0.95rem;
}

.about-mission {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    background: #0b1f3a;
}

.about-mission::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 18px 18px;
}

.about-section-heading {
    position: relative;
    z-index: 1;
    max-width: 48rem;
    margin: 0 auto 3.75rem;
    text-align: center;
}

.about-section-heading h2::after {
    content: "";
    display: block;
    width: 4.5rem;
    height: 4px;
    margin: 1.25rem auto 0;
    background: #f97316;
}

.about-section-heading p {
    margin: 1.25rem auto 0;
    color: #64748b;
    font-size: 1.15rem;
    line-height: 1.8;
}

.about-section-heading-light h2 {
    color: #fff;
}

.about-mission-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.about-mission-panel {
    position: relative;
    min-height: 24rem;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.055);
}

.about-mission-panel::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 4rem;
    height: 4rem;
    border-right: 4px solid #f97316;
    border-bottom: 4px solid #f97316;
}

.about-mission-icon {
    width: 4.5rem;
    height: 4.5rem;
    display: grid;
    place-items: center;
    margin-bottom: 2rem;
    background: #f97316;
    color: #fff;
    font-size: 1.75rem;
}

.about-mission-panel h3 {
    margin: 0 0 0.75rem;
    color: #f97316;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.about-mission-panel h4 {
    margin: 0 0 1.25rem;
    color: #fff;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 900;
    line-height: 1.4;
}

.about-mission-panel p {
    margin: 0;
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.9;
}

.about-capability-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #d8dee7;
    border-bottom: 1px solid #d8dee7;
}

.about-capability-item {
    position: relative;
    min-height: 15rem;
    padding: 3rem 1.5rem 2rem;
    text-align: center;
    border-right: 1px solid #d8dee7;
    transition: background-color 180ms ease, color 180ms ease;
}

.about-capability-item:last-child {
    border-right: 0;
}

.about-capability-item:hover {
    background: #0b1f3a;
}

.about-capability-icon {
    width: 4.5rem;
    height: 4.5rem;
    display: grid;
    place-items: center;
    margin: 0 auto 1.5rem;
    border: 2px solid #f97316;
    color: #f97316;
    font-size: 1.6rem;
}

.about-capability-item h3 {
    margin: 0;
    color: #0b1f3a;
    font-size: 1.12rem;
    font-weight: 900;
    line-height: 1.5;
}

.about-capability-item:hover h3 {
    color: #fff;
}

.about-markets {
    padding: 7rem 0;
    background: #eef2f6;
}

.about-market-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.about-market-card {
    position: relative;
    min-height: 16rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-top: 5px solid #f97316;
    background: #fff;
    box-shadow: 0 12px 30px rgba(11, 31, 58, 0.08);
}

.about-market-card::after {
    content: "";
    position: absolute;
    right: -3rem;
    bottom: -3rem;
    width: 9rem;
    height: 9rem;
    border: 1.5rem solid #eef2f6;
    transform: rotate(45deg);
}

.about-market-country {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
    margin-bottom: 1.25rem;
    color: #0b1f3a;
    font-size: 1.75rem;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.about-market-icon {
    flex: 0 0 auto;
    font-size: 0.78em;
    line-height: 1;
}

.about-market-card p {
    position: relative;
    z-index: 1;
    min-height: 3.6rem;
    margin: 0 0 1.5rem;
    color: #526174;
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-market-card > div:last-child {
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.about-market-card span {
    position: relative;
    z-index: 1;
    display: inline-block;
    max-width: 100%;
    padding: 0.55rem 0.8rem;
    border-left: 3px solid #f97316;
    background: #eef2f6;
    color: #163d68;
    font-size: 0.85rem;
    font-weight: 800;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.about-advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.about-advantage-card {
    position: relative;
    min-height: 19rem;
    padding: 2.25rem;
    border: 1px solid #d8dee7;
    background: #f8fafc;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.about-advantage-card:hover {
    transform: translateY(-6px);
    border-color: #f97316;
    box-shadow: 0 18px 35px rgba(11, 31, 58, 0.12);
}

.about-advantage-icon {
    width: 4rem;
    height: 4rem;
    display: grid;
    place-items: center;
    margin-bottom: 2rem;
    background: #0b1f3a;
    color: #fff;
    font-size: 1.35rem;
}

.about-advantage-card h3 {
    margin: 0 0 1rem;
    color: #0b1f3a;
    font-size: 1.25rem;
    font-weight: 900;
}

.about-advantage-card p {
    margin: 0;
    color: #5f6d7d;
    line-height: 1.85;
}

.about-certifications {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(135deg, #07182b 0%, #0b1f3a 56%, #132f4d 100%);
    background-size: 42px 42px, 42px 42px, auto;
}

.about-certifications::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: min(36rem, 48vw);
    height: 5px;
    background: #f97316;
}

.about-certifications::after {
    content: "";
    position: absolute;
    right: -7rem;
    bottom: -8rem;
    width: 24rem;
    height: 24rem;
    border: 2.5rem solid rgba(255, 255, 255, 0.055);
    transform: rotate(45deg);
    pointer-events: none;
}

.about-certifications > div {
    position: relative;
    z-index: 1;
}

.about-certifications .about-section-heading h2 {
    color: #fff;
}

.about-certifications .about-section-heading p {
    color: #cbd5e1;
}

.about-certification-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.1rem;
    align-items: stretch;
}

.about-certification-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 27rem;
    padding: 0;
    color: #fff;
    background: transparent;
    transition: transform 180ms ease;
}

.about-certification-card:hover {
    transform: translateY(-4px);
}

.about-certification-document {
    position: relative;
    aspect-ratio: 3 / 4;
    display: grid;
    place-items: center;
    padding: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 22px 38px rgba(0, 0, 0, 0.22);
}

.about-certification-document::before {
    content: "";
    position: absolute;
    inset: 1rem;
    background:
        linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(255, 255, 255, 0)),
        #fff;
    box-shadow: inset 0 0 0 1px rgba(11, 31, 58, 0.1);
}

.about-certification-document::after {
    content: "";
    position: absolute;
    inset: 2.05rem;
    border: 1px dashed rgba(11, 31, 58, 0.24);
}

.about-certification-document span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 6rem;
    min-height: 2.15rem;
    padding: 0.45rem 0.8rem;
    border: 1px solid rgba(249, 115, 22, 0.55);
    color: #0b1f3a;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.about-certification-meta {
    min-height: 8rem;
    display: grid;
    grid-template-rows: auto auto 1fr;
    gap: 0.45rem;
    padding: 1.1rem 0 0;
}

.about-certification-meta > span {
    color: #f97316;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.about-certification-meta h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(0.94rem, 1vw, 1.08rem);
    font-weight: 900;
    line-height: 1.35;
}

.about-certification-meta p {
    margin: 0;
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.65;
}

@media (max-width: 1023px) {
    .about-intro-layout {
        grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.85fr);
        gap: 2rem;
    }

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

    .about-certification-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .about-capability-item:nth-child(2) {
        border-right: 0;
    }

    .about-capability-item:nth-child(-n+2) {
        border-bottom: 1px solid #d8dee7;
    }
}

@media (max-width: 767px) {
    .about-hero {
        min-height: 31rem;
        padding: 7rem 0 4rem;
        background-position: 62% center;
    }

    .about-hero-overlay {
        background: rgba(5, 20, 36, 0.78);
    }

    .about-hero-copy {
        padding-left: 1.25rem;
    }

    .about-intro,
    .about-mission,
    .about-capabilities,
    .about-markets,
    .about-advantages,
    .about-certifications {
        padding: 5rem 0;
    }

    .about-intro-layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
        gap: 0.85rem;
        align-items: stretch;
    }

    .about-section-title {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
        font-size: 1.45rem;
    }

    .about-section-title::after {
        width: 3rem;
        height: 3px;
    }

    .about-intro-copy > p {
        margin-bottom: 0.75rem;
        font-size: 0.72rem;
        line-height: 1.65;
    }

    .about-office-list {
        gap: 0.55rem;
    }

    .about-office-list::before {
        display: none;
    }

    .about-office-card {
        min-height: 6.25rem;
        padding: 0.65rem;
        border-left-width: 3px;
        box-shadow: 0 8px 18px rgba(11, 31, 58, 0.07);
    }

    .about-office-card:hover {
        transform: none;
    }

    .about-office-header {
        gap: 0.45rem;
        padding-bottom: 0.5rem;
    }

    .about-office-icon {
        width: 1.8rem;
        height: 1.8rem;
        font-size: 0.72rem;
    }

    .about-office-header h3 {
        margin-bottom: 0.05rem;
        font-size: 0.82rem;
        line-height: 1.25;
    }

    .about-office-header p,
    .about-office-details p {
        font-size: 0.62rem;
        line-height: 1.35;
    }

    .about-office-details {
        gap: 0.22rem;
        padding-top: 0.45rem;
    }

    .about-mission-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .about-section-heading {
        margin-bottom: 1.75rem;
    }

    .about-section-heading h2 {
        font-size: 1.6rem;
    }

    .about-section-heading h2::after {
        width: 3.25rem;
        height: 3px;
        margin-top: 0.8rem;
    }

    .about-market-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 10.5rem), 1fr));
        gap: 0.75rem;
    }

    .about-market-card {
        min-height: 10.5rem;
        padding: 0.95rem 0.7rem;
        border-top-width: 3px;
        box-shadow: 0 8px 18px rgba(11, 31, 58, 0.08);
    }

    .about-market-card::after {
        right: -2.25rem;
        bottom: -2.25rem;
        width: 5.5rem;
        height: 5.5rem;
        border-width: 0.9rem;
    }

    .about-market-country {
        gap: 0.35rem;
        margin-bottom: 0.55rem;
        font-size: 0.9rem;
        line-height: 1.35;
    }

    .about-market-card p {
        min-height: 2.35rem;
        margin-bottom: 0.45rem;
        font-size: 0.72rem;
        line-height: 1.45;
    }

    .about-market-card span {
        padding: 0.35rem 0.45rem;
        border-left-width: 2px;
        font-size: 0.62rem;
        line-height: 1.3;
    }

    .about-advantage-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.65rem;
    }

    .about-advantage-card {
        min-height: 9.6rem;
        padding: 0.9rem 0.55rem;
    }

    .about-advantage-icon {
        width: 2.25rem;
        height: 2.25rem;
        margin-bottom: 0.65rem;
        font-size: 0.9rem;
    }

    .about-advantage-card h3 {
        margin-bottom: 0.35rem;
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .about-advantage-card p {
        font-size: 0.68rem;
        line-height: 1.45;
    }

    .about-certification-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
    }

    .about-certification-card {
        min-height: 17.5rem;
    }

    .about-certification-card:hover {
        transform: none;
    }

    .about-certification-document {
        padding: 0.65rem;
        box-shadow: 0 12px 22px rgba(0, 0, 0, 0.2);
    }

    .about-certification-document::before {
        inset: 0.58rem;
    }

    .about-certification-document::after {
        inset: 1.25rem;
    }

    .about-certification-document span {
        min-width: 4.4rem;
        min-height: 1.65rem;
        padding: 0.32rem 0.5rem;
        font-size: 0.62rem;
        letter-spacing: 0.08em;
    }

    .about-certification-meta {
        min-height: 5.7rem;
        gap: 0.25rem;
        padding-top: 0.65rem;
    }

    .about-certification-meta > span {
        font-size: 0.62rem;
    }

    .about-certification-meta h3 {
        font-size: 0.72rem;
        line-height: 1.3;
    }

    .about-certification-meta p {
        font-size: 0.68rem;
        line-height: 1.45;
    }

    .about-mission-panel {
        min-height: 13rem;
        padding: 1.1rem 0.85rem;
    }

    .about-mission-panel::after {
        width: 2.25rem;
        height: 2.25rem;
        border-right-width: 3px;
        border-bottom-width: 3px;
    }

    .about-mission-icon {
        width: 2.35rem;
        height: 2.35rem;
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
    }

    .about-mission-panel h3 {
        margin-bottom: 0.4rem;
        font-size: 0.75rem;
        letter-spacing: 0.08em;
    }

    .about-mission-panel h4 {
        margin-bottom: 0.55rem;
        font-size: 0.92rem;
        line-height: 1.35;
    }

    .about-mission-panel p {
        font-size: 0.68rem;
        line-height: 1.55;
    }

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

    .about-capability-item {
        min-height: 10rem;
        padding: 1.75rem 0.75rem 1.5rem;
    }

    .about-capability-icon {
        width: 3.25rem;
        height: 3.25rem;
        margin-bottom: 1rem;
        font-size: 1.25rem;
    }

    .about-capability-item h3 {
        font-size: 0.95rem;
        line-height: 1.45;
    }

    .about-capability-item,
    .about-capability-item:last-child {
        border-right: 1px solid #d8dee7;
        border-bottom: 1px solid #d8dee7;
    }

    .about-capability-item:nth-child(2n) {
        border-right: 0;
    }

    .about-capability-item:nth-last-child(-n+2) {
        border-bottom: 0;
    }
}

@media (max-width: 380px) {
    .about-intro-layout {
        gap: 0.65rem;
    }

    .about-section-title {
        font-size: 1.3rem;
    }

    .about-intro-copy > p {
        font-size: 0.66rem;
        line-height: 1.55;
    }

    .about-office-card {
        padding: 0.55rem;
    }

    .about-office-header p,
    .about-office-details p {
        font-size: 0.58rem;
    }

    .about-mission-grid {
        gap: 0.55rem;
    }

    .about-mission-panel {
        min-height: 12.6rem;
        padding: 0.95rem 0.7rem;
    }

    .about-mission-panel h4 {
        font-size: 0.84rem;
    }

    .about-mission-panel p {
        font-size: 0.62rem;
    }

    .about-certification-grid {
        gap: 0.55rem;
    }

    .about-certification-card {
        min-height: 16.4rem;
    }

    .about-certification-meta h3 {
        font-size: 0.66rem;
    }

    .about-certification-meta p {
        font-size: 0.62rem;
    }
}

/* Shared industrial call-to-action */
.industrial-cta {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    background:
        linear-gradient(90deg, rgba(7, 24, 43, 0.98), rgba(13, 48, 75, 0.96)),
        #07182b;
    border-top: 5px solid #f97316;
}

.industrial-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

.industrial-cta::after {
    content: "";
    position: absolute;
    top: -7rem;
    right: 7%;
    width: 22rem;
    height: 22rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transform: rotate(45deg);
    pointer-events: none;
}

.industrial-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.industrial-cta-copy {
    position: relative;
    max-width: 42rem;
    padding-left: 1.5rem;
    text-align: left;
}

.industrial-cta-copy::before {
    content: "";
    position: absolute;
    top: 0.25rem;
    bottom: 0.2rem;
    left: 0;
    width: 4px;
    background: #f97316;
}

.industrial-cta-copy h2 {
    margin: 0 0 0.75rem;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0.02em;
}

.industrial-cta-copy p {
    margin: 0;
    color: #cbd5e1;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.7;
}

.industrial-cta-actions {
    display: flex;
    flex-shrink: 0;
    gap: 0.875rem;
}

.industrial-cta-button {
    min-width: 10.5rem;
    min-height: 3.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.industrial-cta-button:hover {
    transform: translateY(-3px);
}

.industrial-cta-button-primary {
    background: #f97316;
    color: #fff;
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.2);
}

.industrial-cta-button-primary:hover {
    background: #ea580c;
}

.industrial-cta-button-secondary {
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.industrial-cta-button-secondary:hover {
    border-color: #fff;
    background: #fff;
    color: #0b1f3a;
}

@media (max-width: 767px) {
    .industrial-cta {
        padding: 4rem 0;
    }

    .industrial-cta-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
    }

    .industrial-cta-actions {
        flex-direction: column;
    }

    .industrial-cta-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mobile-menu-toggle,
    .mobile-menu-toggle span,
    .mobile-menu-panel,
    .mobile-menu-panel > div > *,
    .mobile-submenu-panel,
    .mobile-submenu-panel > *,
    .mobile-menu-panel button i {
        animation: none !important;
        transition: none;
        transform: none;
    }

    .industrial-cta-button {
        transition: none;
    }

    .industrial-cta-button:hover {
        transform: none;
    }

    .home-categories-marquee-track {
        animation: none;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
        gap: 1.5rem;
    }

    .home-categories-marquee-set {
        flex-wrap: wrap;
        justify-content: center;
        padding-right: 0;
    }

    .home-categories-marquee {
        -webkit-mask-image: none;
        mask-image: none;
        overflow: visible;
    }
}

/* Product image focal points
   Portrait assets are frequently placed in landscape cards. Keep the main
   equipment in view instead of relying on object-cover's geometric center. */
img.object-cover[src*="/fans/"],
img.object-cover[src*="/solutions/"],
img.object-cover[src*="/ventilation-parts/"] {
    object-position: 50% 56%;
}

img.object-cover[src*="chemical-gas-main.png"] {
    object-position: 50% 48%;
}

img.object-cover[src*="pp-spray-tower.png"],
img.object-cover[src*="pulse-bag-filter.png"] {
    object-position: 50% 52%;
}

img.object-cover[src*="electrostatic-main.png"] {
    object-position: 50% 58%;
}

img.object-cover[src*="/equipment/"] {
    object-position: 50% 54%;
}

img.object-cover[src*="oil-smoke-main.png"],
img.object-cover[src*="paint-dust-main.png"],
img.object-cover[src*="metal-grinding-filter.png"],
img.object-cover[src*="spray-equipment-main.png"],
img.object-cover[src*="chemical-plant-main.png"] {
    object-position: 50% 52%;
}

img.object-cover[src*="/設備/"],
img.object-cover[src*="/精選工程案例/"] {
    object-position: 50% 55%;
}

.product-detail-hero[style*="/fans/"],
.product-detail-hero[style*="/solutions/"],
.product-detail-hero[style*="/ventilation-parts/"] {
    background-position: 50% 56% !important;
}

.product-detail-hero[style*="chemical-gas-main.png"] {
    background-position: 50% 48% !important;
}

.product-detail-hero[style*="electrostatic-main.png"] {
    background-position: 50% 58% !important;
}

.product-detail-hero[style*="/equipment/"],
.product-detail-hero[style*="oil-smoke-main.png"],
.product-detail-hero[style*="paint-dust-main.png"],
.product-detail-hero[style*="spray-equipment-main.png"],
.product-detail-hero[style*="chemical-plant-main.png"] {
    background-position: 50% 53% !important;
}

@media (max-width: 767px) {
    img.object-cover[src*="/fans/"],
    img.object-cover[src*="/solutions/"],
    img.object-cover[src*="/ventilation-parts/"],
    img.object-cover[src*="/equipment/"],
    img.object-cover[src*="/設備/"],
    img.object-cover[src*="/精選工程案例/"] {
        object-position: 50% 58%;
    }

    img.object-cover[src*="chemical-gas-main.png"] {
        object-position: 50% 50%;
    }

    .product-detail-hero[style*="/fans/"],
    .product-detail-hero[style*="/solutions/"],
    .product-detail-hero[style*="/ventilation-parts/"],
    .product-detail-hero[style*="/equipment/"] {
        background-position: 50% 58% !important;
    }

    .product-detail-hero[style*="chemical-gas-main.png"] {
        background-position: 50% 50% !important;
    }
}

@media (max-width: 767px) {
    .product-detail-hero {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    .product-detail-hero > .relative.max-w-7xl {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    .product-detail-hero .industrial-hero-rail {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0 !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
        border-right: 0 !important;
        box-sizing: border-box !important;
    }

    .product-detail-hero .industrial-hero-rail span {
        min-width: 0 !important;
        width: 100% !important;
        justify-content: center !important;
        white-space: normal !important;
        border-right: 1px solid rgba(148, 163, 184, 0.24) !important;
        box-sizing: border-box !important;
    }

    .product-detail-hero .industrial-hero-rail span:nth-child(2n) {
        border-right: 0 !important;
    }
}

/* Shared company logo watermark */
.site-watermark-mark {
    --site-watermark-logo: url("images/company/logo.png");
    --site-watermark-width: 5rem;
    --site-watermark-offset: 0.75rem;
    --site-watermark-padding: 0.75rem;
    position: absolute;
    display: block;
    overflow: hidden;
    pointer-events: none;
    line-height: 0;
}

.site-watermark-mark[hidden] {
    display: none !important;
}

.site-image-watermark-mark {
    z-index: 6;
    contain: layout paint;
}

.site-background-watermark-mark {
    inset: 0;
    z-index: 1;
}

.site-has-background-watermark > .home-industrial-hero-container,
.site-has-background-watermark > .services-hero-content,
.site-has-background-watermark > .contact-hero-content,
.site-has-background-watermark > .privacy-hero-content,
.site-has-background-watermark > .faq-hero-content,
.site-has-background-watermark > .about-hero-content,
.site-has-background-watermark > .relative {
    position: relative;
    z-index: 2;
}

.site-watermark-mark::before,
.site-watermark-mark::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    right: auto;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.site-watermark-mark::before {
    display: none;
}

.site-watermark-mark::after {
    width: var(--site-watermark-width);
    aspect-ratio: 230 / 142;
    background-image: var(--site-watermark-logo);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.66;
    filter:
        drop-shadow(0 1px 1px rgba(255, 255, 255, 0.6))
        drop-shadow(0 2px 4px rgba(15, 23, 42, 0.22));
}

.site-image-watermark-mark[data-watermark-compact="true"]::before {
    display: none;
}

.site-image-watermark-mark[data-watermark-compact="true"]::after {
    opacity: 0.58;
}

.site-background-watermark-mark::before {
    display: none;
}

.site-background-watermark-mark::after {
    opacity: 0.48;
}
