/*
 Theme Name: Wangju Theme
 Theme URI: https://enyou.cnwangju.com
 Description: Cross-border showcase theme for product / news / solutions.
 Author: Wangju
 Version: 1.0.1
 Text Domain: wangju-theme
*/

/* ===== Local Montserrat fonts ===== */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('assets/fonts/montserrat/montserrat-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('assets/fonts/montserrat/montserrat-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('assets/fonts/montserrat/montserrat-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('assets/fonts/montserrat/montserrat-700.woff2') format('woff2');
}


/* ===== from assets\css\main.css ===== */
/**
 * Wangju Theme ??shared front-end utilities
 * Global responsive helpers used across all templates.
 */

:root {
    --header-offset: 88px;
    --theme-green: #8cc63f;
    --theme-navy: #0b1f4d;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    padding-top: var(--header-offset);
    overflow-x: hidden;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

/* ---- Header toggle ---- */
.site-header__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    font-size: 18px;
    flex-shrink: 0;
    padding: 0;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.site-header__toggle:hover,
.site-header__toggle[aria-expanded="true"] {
    background-color: var(--theme-green);
    border-color: var(--theme-green);
}

body.nav-open {
    overflow: hidden;
}

/* ---- Shared inner banner ---- */
.inner-banner__content {
    padding: 0 24px;
    max-width: 920px;
    margin: 0 auto;
    box-sizing: border-box;
}

@media (max-width: 1200px) and (min-width: 1025px) {
    .site-header__nav {
        margin-left: 32px;
    }
    .main-menu {
        gap: 20px;
    }
    .main-menu li a {
        font-size: 14px;
    }
}

/* ?? / ??????????901??024???????? */
@media (max-width: 1024px) {
    :root {
        --header-offset: 64px;
    }

    .site-header__inner {
        position: relative;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 12px;
        padding: 10px 16px;
    }

    .site-header__logo {
        order: 1;
        flex: 1 1 auto;
        min-width: 0;
    }

    .site-header__logo img {
        max-height: 44px !important;
    }

    .site-header__logo span {
        font-size: 16px !important;
    }

    .site-header__right {
        order: 2;
        gap: 10px;
        flex-shrink: 0;
    }

    .site-header__right .site-header__lang {
        display: flex;
        font-size: 12px;
        gap: 4px;
    }

    .site-header__cta {
        padding: 9px 12px !important;
        font-size: 11px !important;
        letter-spacing: 0.2px !important;
    }

    .site-header__toggle {
        display: flex;
        order: 3;
    }

    .site-header__nav {
        order: 4;
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        margin-left: 0 !important;
        background-color: var(--theme-navy);
        padding: 0 16px;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: max-height 0.3s ease, opacity 0.25s ease, visibility 0.25s ease, padding 0.3s ease;
        z-index: 998;
    }

    .site-header__nav.is-open {
        max-height: min(70vh, 520px);
        overflow-y: auto;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        padding: 8px 16px 20px;
        -webkit-overflow-scrolling: touch;
    }

    .site-header__nav .main-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .site-header__nav .main-menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .site-header__nav .main-menu > li:last-child {
        border-bottom: none;
    }

    .site-header__nav .main-menu li a {
        display: block;
        width: 100%;
        padding: 14px 4px;
        font-size: 15px;
    }

    .site-header__nav .main-menu li a::after {
        display: none;
    }

    .site-header__nav .main-menu .sub-menu {
        list-style: none;
        margin: 0 0 8px;
        padding: 0 0 0 14px;
        border-left: 2px solid rgba(140, 198, 63, 0.45);
    }

    .site-header__nav .main-menu .sub-menu li {
        border-bottom: none;
    }

    .site-header__nav .main-menu .sub-menu a {
        padding: 10px 4px;
        font-size: 14px;
        color: #aeb6c9;
    }

    .inner-banner__content {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .inner-banner {
        height: 220px !important;
    }
    .inner-banner__title {
        font-size: clamp(24px, 7vw, 32px) !important;
    }
    .inner-banner__subtitle {
        font-size: 14px !important;
        line-height: 1.5;
    }
    .inner-banner__content {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    :root {
        --header-offset: 56px;
    }

    .site-header__inner {
        padding: 8px 12px;
        gap: 8px;
    }

    .site-header__logo img {
        max-height: 38px !important;
    }

    .site-header__cta {
        padding: 8px 10px !important;
        font-size: 10px !important;
    }

    .site-header__toggle {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}


/* ===== from header.php ===== */
/* ============================================================
           ??????
           ============================================================ */
        * {
            box-sizing: border-box;
        }
        body {
            margin: 0;
            font-family: 'Montserrat', sans-serif;
            /* padding-top ??main.css --header-offset ???? */
        }
        a {
            text-decoration: none;
        }

        /* ============================================================
           ?? Header ??
           ============================================================ */
        .site-header {
            background-color: #0b1f4d;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 999;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }

        .site-header__inner {
            max-width: 1350px;
            margin: 0 auto;
            padding: 12px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
        }

        /* Logo */
        .site-header__logo img {
            max-height: 64px;
            width: auto;
            display: block;
        }
        .site-header__logo span {
            color: #fff;
            font-size: 22px;
            font-weight: 700;
        }

        /* ????*/
        .site-header__nav {
            flex: 1;
            margin-left: 80px; /* ?Logo???? */
        }
        .main-menu {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .main-menu li {
            position: relative;
        }
        .main-menu li a {
            color: #d6dce8;
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
            font-size: 15px;
            font-weight: 500;
            padding-bottom: 6px;
            display: inline-block;
            position: relative;
            transition: color 0.2s ease;
        }

        /* ???????????????hover??? */
        .main-menu li a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 2px;
            background-color: #8cc63f;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.25s ease;
        }
        .main-menu li a:hover {
            color: #ffffff;
        }
        .main-menu li a:hover::after {
            transform: scaleX(1);
        }

        /* ????/????????????*/
        .main-menu li.current-menu-item > a,
        .main-menu li.current_page_item > a {
            color: #ffffff;
        }
        .main-menu li.current-menu-item > a::after,
        .main-menu li.current_page_item > a::after {
            transform: scaleX(1);
        }

        /* ????????? + ???? */
        .site-header__right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .site-header__lang {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
        }
        .site-header__lang a {
            color: #d6dce8;
            text-decoration: none;
            font-weight: 600;
        }
        .site-header__lang a.is-active,
        .site-header__lang a:hover {
            color: #ffffff;
        }
        .site-header__lang span {
            color: #5a6c93;
        }

        .site-header__cta {
            background-color: #8cc63f;
            color: #ffffff;
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.5px;
            padding: 12px 22px;
            border-radius: 4px;
            text-decoration: none;
            white-space: nowrap;
            transition: background-color 0.2s ease;
        }
        .site-header__cta:hover {
            background-color: #79ad2e;
            color: #ffffff;
        }

        /* ??????????????025 ???????? */
        @media (max-width: 1200px) and (min-width: 1025px) {
            .main-menu {
                gap: 18px;
            }
            .site-header__nav {
                margin-left: 24px;
            }
            .site-header__cta {
                padding: 10px 16px;
                font-size: 12px;
            }
        }


/* ===== from footer.php ===== */
/* --- footer.php block 1 --- */
/* ============================================================
   ?????????? + ??????
   ============================================================ */

/* ???????? */
.float-inquiry-btn {
    position: fixed;
    left: 24px;
    bottom: 40px;
    z-index: 999;
    background-color: #8cc63f;
    color: #ffffff;
    border-radius: 50px;
    padding: 16px 26px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(140, 198, 63, 0.35);
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
    border: none;
    text-decoration: none;
}
.float-inquiry-btn i {
    font-size: 22px;
    flex-shrink: 0;
}
.float-inquiry-btn__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-transform: uppercase;
    writing-mode: horizontal-tb;
    transform: none;
}
.float-inquiry-btn:hover {
    background-color: #79ad2e;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(140, 198, 63, 0.5);
}

@media (max-width: 600px) {
    .float-inquiry-btn__text {
        display: none;
    }
    .float-inquiry-btn {
        padding: 12px 14px;
    }
}

@media (max-width: 768px) {
    .float-inquiry-btn {
        left: 12px;
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
        z-index: 998;
    }
    .site-footer {
        padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
    }
}

/* ============================================================
   ????????????????   ============================================================ */
.float-contact {
    position: fixed;
    right: 0;
    top: 30%;
    z-index: 999;
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 20px rgba(11, 31, 77, 0.18);
}
.float-contact__item {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    text-decoration: none;
    color: #ffffff;
    border: none;
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: pointer;
    outline: none;
}
.float-contact__item + .float-contact__item .float-contact__icon {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.float-contact__icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #8cc63f;
    color: #ffffff;
    font-size: 22px;
    transition: background-color 0.25s ease;
    position: relative;
    z-index: 2;
}
.float-contact__panel {
    position: absolute;
    right: 52px;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 0;
    background-color: #8cc63f;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    width: 0;
    min-width: 0;
    overflow: hidden;
    opacity: 0;
    transition: width 0.3s ease, min-width 0.3s ease, padding 0.3s ease, opacity 0.2s ease;
    z-index: 1;
    box-sizing: border-box;
}
.float-contact__item:not(.float-contact__item--top):hover .float-contact__panel,
.float-contact__item:not(.float-contact__item--top):focus-visible .float-contact__panel {
    width: 230px;
    min-width: 230px;
    padding: 0 18px;
    opacity: 1;
}
.float-contact__item:hover .float-contact__icon,
.float-contact__item:focus-visible .float-contact__icon {
    background-color: #79ad2e;
}
.float-contact__item--top .float-contact__icon {
    background-color: #0b1f4d;
}
.float-contact__item--top:hover .float-contact__icon,
.float-contact__item--top:focus-visible .float-contact__icon {
    background-color: #8cc63f;
}

@media (max-width: 600px) {
    .float-contact {
        top: 28%;
        bottom: auto;
        right: 0;
        max-height: 52vh;
        overflow: visible;
    }
    .float-contact__icon {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }
    .float-contact__panel {
        right: 44px;
        font-size: 12px;
    }
    /* ??????????????????????????/?? */
    .float-contact__item:not(.float-contact__item--top):hover .float-contact__panel,
    .float-contact__item:not(.float-contact__item--top):focus-visible .float-contact__panel {
        width: 0;
        min-width: 0;
        padding: 0;
        opacity: 0;
    }
}

.float-contact-toast {
    position: fixed;
    left: 50%;
    bottom: 100px;
    transform: translateX(-50%) translateY(8px);
    background: rgba(11, 31, 77, 0.92);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 6px;
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    max-width: 80vw;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}
.float-contact-toast.is-show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ============================================================
   ????
   ============================================================ */
.inquiry-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background-color: rgba(11, 31, 77, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.inquiry-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.inquiry-modal {
    background-color: #ffffff;
    border-radius: 8px;
    width: 100%;
    max-width: 720px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(30px);
    transition: transform 0.35s ease;
    position: relative;
}
.inquiry-overlay.is-open .inquiry-modal {
    transform: translateY(0);
}

.inquiry-modal__head {
    background-color: #0b1f4d;
    padding: 28px 32px;
    border-radius: 8px 8px 0 0;
}
.inquiry-modal__tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #8cc63f;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.inquiry-modal__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}
.inquiry-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    z-index: 2;
}
.inquiry-modal__close:hover {
    background-color: #8cc63f;
    border-color: #8cc63f;
}

.inquiry-modal__body {
    padding: 32px;
}

/* CF7 ?????? */
.inquiry-modal__body .wpcf7 {
    font-family: 'Montserrat', sans-serif;
}
.inquiry-modal__body .iq-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    /* 原 16px + p 默认下边距，现整体只少 3px */
    margin-bottom: calc(1em + 18px);
}
.inquiry-modal__body .iq-field {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.inquiry-modal__body .iq-field--full {
    margin-bottom: calc(1em + 18px);
}
.inquiry-modal__body label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #0b1f4d;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 9px;
}
.inquiry-modal__body label span {
    color: #e53e3e;
    margin-left: 2px;
}
.inquiry-modal__body input[type="text"],
.inquiry-modal__body input[type="email"],
.inquiry-modal__body input[type="tel"],
.inquiry-modal__body select,
.inquiry-modal__body textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #dde2ec;
    border-radius: 4px;
    padding: 12px 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #0b1f4d;
    background-color: #f8f9fc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}
.inquiry-modal__body input:focus,
.inquiry-modal__body select:focus,
.inquiry-modal__body textarea:focus {
    border-color: #8cc63f;
    box-shadow: 0 0 0 3px rgba(140, 198, 63, 0.15);
    background-color: #ffffff;
}
.inquiry-modal__body textarea {
    height: 110px;
    resize: vertical;
}
.inquiry-modal__body .wpcf7-submit {
    width: 100%;
    background-color: #8cc63f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.25s ease;
    margin-top: 8px;
}
.inquiry-modal__body .wpcf7-submit:hover {
    background-color: #79ad2e;
}
.inquiry-modal__body .wpcf7-response-output {
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
    border: none !important;
}
.inquiry-modal__body .wpcf7-mail-sent-ok {
    background-color: #f0fde8;
    color: #3a7c0f;
}
.inquiry-modal__body .wpcf7-validation-errors,
.inquiry-modal__body .wpcf7-mail-sent-ng {
    background-color: #fff5f5;
    color: #c53030;
}
.inquiry-modal__body .wpcf7-not-valid-tip {
    font-size: 12px;
    color: #e53e3e;
    margin-top: 4px;
}

@media (max-width: 600px) {
    .inquiry-overlay {
        padding: 12px;
        align-items: center;
    }
    .inquiry-modal {
        max-height: 90vh;
        border-radius: 8px;
    }
    .inquiry-modal__head {
        padding: 16px 44px 14px 16px;
        border-radius: 8px 8px 0 0;
    }
    .inquiry-modal__tag {
        font-size: 11px;
        margin-bottom: 4px;
    }
    .inquiry-modal__title {
        font-size: 18px;
    }
    .inquiry-modal__close {
        top: 12px;
        right: 12px;
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    .inquiry-modal__body {
        padding: 14px 16px 16px;
    }
    .inquiry-modal__body .iq-row {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 12px;
    }
    .inquiry-modal__body .iq-field {
        gap: 0;
    }
    .inquiry-modal__body .iq-field--full {
        margin-bottom: 12px;
    }
    .inquiry-modal__body label {
        font-size: 11px;
    }
    .inquiry-modal__body input[type="text"],
    .inquiry-modal__body input[type="email"],
    .inquiry-modal__body input[type="tel"],
    .inquiry-modal__body select,
    .inquiry-modal__body textarea {
        padding: 10px 12px;
        font-size: 13px;
    }
    .inquiry-modal__body textarea {
        height: 88px;
    }
    .inquiry-modal__body .wpcf7-submit {
        padding: 12px;
        font-size: 13px;
        margin-top: 4px;
    }
    .inquiry-modal__body .wpcf7-response-output {
        margin-top: 8px;
        padding: 8px 12px;
        font-size: 13px;
    }
    .inquiry-modal__body .wpcf7 p {
        margin: 0;
    }
}

/* --- footer.php block 2 --- */
.site-footer {
    width: 100%;
    background-color: #0b1f4d;
    font-family: 'Montserrat', sans-serif;
    padding: 70px 24px 0;
}
.site-footer__inner {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 50px;
}

/* ????Logo + ???+ ?? */
.footer-brand__logo {
    margin-bottom: 22px;
}
.footer-brand__logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}
.footer-brand__intro {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 24px;
    max-width: 300px;
}
.footer-brand__social {
    display: flex;
    gap: 12px;
}
.footer-brand__social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    overflow: hidden;
}
.footer-brand__social a img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    display: block;
}
.footer-brand__social a:hover {
    background-color: #8cc63f;
    border-color: #8cc63f;
    color: #ffffff;
}

/* ??/???Products / Quick Link */
.footer-col__title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    margin: 0 0 22px;
}
.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 14px;
}
.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.25s ease, padding-left 0.25s ease;
}
.footer-col ul li a:hover {
    color: #8cc63f;
    padding-left: 4px;
}

/* ????Contact Us */
.footer-contact__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-contact__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}
.footer-contact__list li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.25s ease;
}
.footer-contact__list li a:hover {
    color: #8cc63f;
}
.footer-contact__list i {
    width: 16px;
    margin-top: 3px;
    color: #8cc63f;
    font-size: 14px;
}

/* 页脚底部栏 */
.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 0;
}
.site-footer__bottom-inner {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.site-footer__bottom-left,
.site-footer__bottom-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.site-footer__bottom a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.25s ease;
}
.site-footer__bottom a:hover {
    color: #8cc63f;
}

/* HTML Sitemap 页面 */
.sitemap-page {
    width: 100%;
    padding: 60px 24px 80px;
    background-color: #f5f6f8;
    font-family: 'Montserrat', sans-serif;
}
.sitemap-page__inner {
    max-width: 1100px;
    margin: 0 auto;
}
.sitemap-page__head {
    margin-bottom: 40px;
}
.sitemap-page__title {
    margin: 0 0 12px;
    font-size: 36px;
    font-weight: 800;
    color: #0b1f4d;
}
.sitemap-page__desc {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c93;
}
.sitemap-page__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.sitemap-block {
    background: #ffffff;
    border-radius: 8px;
    padding: 28px 28px 24px;
    box-shadow: 0 4px 16px rgba(11, 31, 77, 0.06);
}
.sitemap-block__title {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 800;
    color: #0b1f4d;
    padding-bottom: 12px;
    border-bottom: 2px solid #8cc63f;
}
.sitemap-block__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sitemap-block__list > li {
    margin: 0 0 8px;
}
.sitemap-block__list a {
    color: #334155;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.2s ease;
}
.sitemap-block__list a:hover {
    color: #8cc63f;
}
.sitemap-block__sublist {
    list-style: none;
    margin: 6px 0 10px;
    padding: 0 0 0 16px;
}
.sitemap-block__sublist li {
    margin: 0 0 6px;
}
.sitemap-block__list--columns {
    column-count: 2;
    column-gap: 24px;
}
.sitemap-block__list--columns > li {
    break-inside: avoid;
}
.sitemap-block__empty {
    margin: 0;
    font-size: 14px;
    color: #94a3b8;
}
.sitemap-page__xml {
    margin: 32px 0 0;
    font-size: 13px;
    color: #5a6c93;
}
.sitemap-page__xml a {
    color: #8cc63f;
    text-decoration: none;
    font-weight: 600;
}
.sitemap-page__xml a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .sitemap-page {
        padding: 40px 16px 60px;
    }
    .sitemap-page__title {
        font-size: 28px;
    }
    .sitemap-page__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .sitemap-block__list--columns {
        column-count: 1;
    }
    .site-footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 900px) {
    .site-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px 24px;
        padding: 0 20px;
    }
    .site-footer__bottom {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (max-width: 600px) {
    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 16px;
    }
    .site-footer__bottom {
        padding-left: 16px;
        padding-right: 16px;
        text-align: center;
    }
}


/* ===== from front-page.php ===== */
/* --- front-page.php block 1 --- */
/* ============================================================
   ?? Banner ??
   ??????920 x 800
   ============================================================ */

.hero-banner {
    position: relative;
    width: 100%;
    height: clamp(480px, 52vw, 800px);
    overflow: hidden;
    background-color: #f5f6f8;
}

.hero-banner__track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-banner__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
    z-index: 1;
}
.hero-banner__slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-banner__content {
    position: relative;
    z-index: 3;
    height: 100%;
    box-sizing: border-box;
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min(440px, calc(100% - 48px));
    margin-left: clamp(24px, 14.5vw, 280px);
    font-family: 'Montserrat', sans-serif;
}

.hero-banner__tag,
.hero-banner__title,
.hero-banner__desc,
.hero-banner__buttons {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-banner__slide.is-active .hero-banner__tag {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}
.hero-banner__slide.is-active .hero-banner__title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}
.hero-banner__slide.is-active .hero-banner__desc {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.45s;
}
.hero-banner__slide.is-active .hero-banner__buttons {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.hero-banner__tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #8cc63f;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.hero-banner__tag-line {
    display: inline-block;
    width: 24px;
    height: 2px;
    background-color: #8cc63f;
    flex-shrink: 0;
}

.hero-banner__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 3.2vw, 48px);
    line-height: 1.2;
    font-weight: 800;
    color: #0b1f4d;
    margin: 0 0 20px;
}
.hero-banner__highlight {
    color: #8cc63f;
}

.hero-banner__desc {
    font-size: clamp(14px, 1.15vw, 16px);
    line-height: 1.7;
    color: #5a6577;
    margin: 0 0 32px;
    max-width: 460px;
}

.hero-banner__buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.hero-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 14px 26px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.hero-banner__btn--solid {
    background-color: #8cc63f;
    color: #ffffff;
}
.hero-banner__btn--solid:hover {
    background-color: #79ad2e;
}
.hero-banner__btn--outline {
    background-color: transparent;
    color: #0b1f4d;
    border: 1px solid #c7cdd9;
}
.hero-banner__btn--outline:hover {
    border-color: #0b1f4d;
}

.hero-banner__dots {
    position: absolute;
    left: 24px;
    bottom: 32px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-banner__dot {
    border: none;
    cursor: pointer;
    padding: 0;
    background-color: rgba(11, 31, 77, 0.25);
    border-radius: 4px;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}
.hero-banner__dot.is-active {
    width: 40px;
    background-color: #8cc63f;
}

.hero-banner__arrows {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 4;
    display: flex;
    gap: 12px;
}
.hero-banner__arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background-color: #ffffff;
    color: #0b1f4d;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease;
    box-shadow: 0 4px 12px rgba(11, 31, 77, 0.12);
}
.hero-banner__arrow:hover {
    background-color: rgba(11, 31, 77, 0.7);
    color: #ffffff;
}

/* ???? */
@media (max-width: 1200px) {
    .hero-banner__content {
        margin-left: clamp(24px, 6vw, 80px);
        width: min(420px, calc(100% - 48px));
    }
}

/* ?? */
@media (max-width: 1024px) {
    .hero-banner {
        height: clamp(520px, 62vw, 640px);
    }
    .hero-banner__slide {
        background-position: 62% center;
    }
    .hero-banner__content {
        margin-left: 40px;
        width: min(400px, calc(100% - 80px));
        padding: 40px 0 72px;
    }
    .hero-banner__desc {
        margin-bottom: 24px;
    }
    .hero-banner__btn {
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* ???? / ????*/
@media (max-width: 768px) {
    .hero-banner {
        height: auto;
        min-height: 480px;
        aspect-ratio: 4 / 5;
        max-height: 620px;
    }
    .hero-banner__slide {
        background-position: 70% center;
    }
    /* ??????? */
    .hero-banner__slide::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            90deg,
            rgba(245, 246, 248, 0.92) 0%,
            rgba(245, 246, 248, 0.78) 42%,
            rgba(245, 246, 248, 0.2) 72%,
            rgba(245, 246, 248, 0) 100%
        );
        z-index: 1;
        pointer-events: none;
    }
    .hero-banner__content {
        margin-left: 0;
        width: 100%;
        max-width: 100%;
        padding: 32px 20px 88px;
        z-index: 3;
    }
    .hero-banner__title {
        font-size: 30px;
        margin-bottom: 14px;
    }
    .hero-banner__desc {
        font-size: 14px;
        margin-bottom: 22px;
        max-width: 100%;
    }
    .hero-banner__tag {
        font-size: 12px;
        margin-bottom: 12px;
    }
    .hero-banner__dots {
        left: 20px;
        bottom: 20px;
        right: auto;
    }
    .hero-banner__arrows {
        right: 16px;
        bottom: 16px;
        gap: 8px;
    }
    .hero-banner__arrow {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}

/* ???? */
@media (max-width: 600px) {
    .hero-banner {
        min-height: 460px;
        aspect-ratio: 3 / 4;
        max-height: 580px;
    }
    .hero-banner__slide {
        background-position: 75% center;
    }
    .hero-banner__slide::before {
        background: linear-gradient(
            180deg,
            rgba(245, 246, 248, 0.88) 0%,
            rgba(245, 246, 248, 0.82) 48%,
            rgba(245, 246, 248, 0.45) 72%,
            rgba(245, 246, 248, 0.15) 100%
        );
    }
    .hero-banner__content {
        justify-content: flex-end;
        padding: 24px 16px 96px;
    }
    .hero-banner__title {
        font-size: 26px;
        line-height: 1.25;
    }
    .hero-banner__desc {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 18px;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .hero-banner__buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
    }
    .hero-banner__btn {
        width: 100%;
        padding: 13px 18px;
        font-size: 13px;
    }
    .hero-banner__dot.is-active {
        width: 28px;
    }
}

/* ????*/
@media (max-width: 380px) {
    .hero-banner {
        min-height: 440px;
        max-height: 540px;
    }
    .hero-banner__title {
        font-size: 22px;
    }
    .hero-banner__arrows {
        display: none;
    }
    .hero-banner__dots {
        left: 50%;
        transform: translateX(-50%);
        bottom: 16px;
    }
}

/* --- front-page.php block 2 --- */
.stats-section {
    width: 100%;
    padding: 60px 24px;
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}
.stats-section__inner {
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
}
.stats-item {
    flex: 1;
    text-align: center;
    padding: 0 32px;
    border-right: 1px solid #e3e6ec;
}
.stats-item:last-child {
    border-right: none;
}
.stats-item__number {
    font-size: 44px;
    font-weight: 800;
    color: #8cc63f;
    line-height: 1.2;
}
.stats-item__label {
    margin-top: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #5a6577;
}

@media (max-width: 900px) {
    .stats-section__inner {
        flex-wrap: wrap;
        row-gap: 32px;
    }
    .stats-item {
        flex: 0 0 50%;
        border-right: none;
    }
}
@media (max-width: 480px) {
    .stats-item {
        flex: 0 0 100%;
    }
    .stats-item__number {
        font-size: 36px;
    }
}

/* --- front-page.php block 3 --- */
.product-cats {
    width: 100%;
    padding: 80px 24px;
    background-color: #f5f6f8;
    font-family: 'Montserrat', sans-serif;
}
.product-cats__inner {
    max-width: 1350px;
    margin: 0 auto;
}

/* ??????*/
.product-cats__head {
    text-align: center;
    margin-bottom: 48px;

    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.product-cats__head.is-inview {
    opacity: 1;
    transform: translateY(0);
}
.product-cats__tag {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #8cc63f;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.product-cats__title {
    font-size: 38px;
    font-weight: 800;
    color: #0b1f4d;
    margin: 0 0 12px;
}
.product-cats__subtitle {
    font-size: 16px;
    color: #6b7385;
}

/* ???? */
.product-cats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;

    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.product-cats__grid.is-inview {
    opacity: 1;
    transform: translateY(0);
}

/* ???? */
.pc-card {
    position: relative;
    height: 420px;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.pc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(11, 31, 77, 0.18);
}

/* ????????????????????????????????*/
.pc-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 65%;
    background: linear-gradient(to top, rgba(11,31,77,0.85) 0%, rgba(11,31,77,0) 100%);
    pointer-events: none;
}

/* ????????*/
.pc-card__icon {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}
.pc-card__icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    transition: filter 0.3s ease;
}
.pc-card:hover .pc-card__icon {
    background-color: #8cc63f;
}
.pc-card:hover .pc-card__icon img {
    filter: brightness(0) invert(1); /* ????????*/
}

/* ???????? */
.pc-card__content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2;
}
.pc-card__title {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
}
.pc-card__desc {
    font-size: 13px;
    line-height: 1.6;
    color: #d6dce8;
    margin: 0 0 14px;
}
.pc-card__link {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #8cc63f;
    text-decoration: none;
}
.pc-card__link:hover {
    color: #ffffff;
}

@media (max-width: 1024px) {
    .product-cats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .product-cats {
        padding: 60px 16px;
    }
    .product-cats__title {
        font-size: 28px;
    }
    .product-cats__grid {
        grid-template-columns: 1fr;
    }
    .pc-card {
        height: 340px;
    }
}
@media (max-width: 480px) {
    .product-cats__title {
        font-size: 24px;
    }
    .pc-card {
        height: 300px;
    }
}

/* --- front-page.php block 4 --- */
.company-profile {
    width: 100%;
    padding: 90px 24px;
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}
.company-profile__inner {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ??????*/
.company-profile__tag {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #8cc63f;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.company-profile__title {
    font-size: 38px;
    font-weight: 800;
    color: #0b1f4d;
    margin: 0 0 20px;
}
.company-profile__desc p {
    font-size: 15px;
    line-height: 1.8;
    color: #5a6577;
    margin: 0 0 18px;
}
.company-profile__btn {
    display: inline-block;
    margin-top: 12px;
    background-color: #0b1f4d;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 18px 36px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}
.company-profile__btn:hover {
    background-color: #8cc63f;
}

/* ??????*/
.company-profile__media {
    position: relative;
}
.company-profile__img-wrap {
    position: relative;
    z-index: 2;
}
.company-profile__img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* ??????????*/
.company-profile__deco {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 140px;
    height: 140px;
    background-color: #8cc63f;
    z-index: 1;
}

/* ??????????*/
.company-profile__badge {
    position: absolute;
    top: 30px;
    left: -30px;
    z-index: 3;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(11,31,77,0.12);
    padding: 24px 28px;
}
.company-profile__badge-number {
    font-size: 32px;
    font-weight: 800;
    color: #0b1f4d;
    line-height: 1;
    margin-bottom: 6px;
}
.company-profile__badge-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #6b7385;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .company-profile__inner {
        grid-template-columns: 1fr;
    }
    .company-profile__media {
        /* ?????????????????? */
        overflow: hidden;
        padding: 8px 8px 16px;
    }
    .company-profile__badge {
        left: 16px;
        top: 16px;
    }
    .company-profile__deco {
        right: 0;
        bottom: 0;
        width: 100px;
        height: 100px;
    }
    .company-profile__title {
        font-size: 28px;
    }
}
@media (max-width: 600px) {
    .company-profile {
        padding: 60px 16px;
    }
    .company-profile__title {
        font-size: 24px;
    }
}

/* --- front-page.php block 5 --- */
.advantages {
    width: 100%;
    padding: 90px 24px;
    background-color: #f5f6f8;
    font-family: 'Montserrat', sans-serif;
}
.advantages__inner {
    max-width: 1350px;
    margin: 0 auto;
}

/* ??????*/
.advantages__head {
    text-align: center;
    margin-bottom: 48px;

    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.advantages__head.is-inview {
    opacity: 1;
    transform: translateY(0);
}
.advantages__tag {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #8cc63f;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.advantages__title {
    font-size: 38px;
    font-weight: 800;
    color: #0b1f4d;
    margin: 0 0 12px;
}
.advantages__subtitle {
    font-size: 16px;
    color: #6b7385;
}

/* ???? */
.advantages__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;

    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.advantages__grid.is-inview {
    opacity: 1;
    transform: translateY(0);
}

/* ???? */
.oa-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 48px 28px;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.oa-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(11, 31, 77, 0.12);
}

/* ???? */
.oa-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: #eef3e2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: background-color 0.35s ease;
}
.oa-card__icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: filter 0.35s ease;
}
.oa-card:hover .oa-card__icon {
    background-color: #8cc63f;
}
.oa-card:hover .oa-card__icon img {
    filter: brightness(0) invert(1); /* ????????*/
}

.oa-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #0b1f4d;
    margin: 0 0 12px;
}
.oa-card__desc {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7385;
    margin: 0;
}

@media (max-width: 1024px) {
    .advantages__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .advantages {
        padding: 60px 16px;
    }
    .advantages__title {
        font-size: 28px;
    }
    .advantages__grid {
        grid-template-columns: 1fr;
    }
}

/* --- front-page.php block 6 --- */
.industry-solutions {
    position: relative;
    width: 100%;
    padding: 100px 24px;
    background-color: #0b1f4d;
    /* Background image is set via inline style on the section */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Montserrat', sans-serif;
}
.industry-solutions__inner {
    max-width: 1350px;
    margin: 0 auto;
}

/* ??????*/
.industry-solutions__head {
    text-align: center;
    margin-bottom: 48px;

    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.industry-solutions__head.is-inview {
    opacity: 1;
    transform: translateY(0);
}
.industry-solutions__tag {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #8cc63f;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.industry-solutions__title {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px;
}
.industry-solutions__subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
}

/* ???? */
.industry-solutions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;

    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.industry-solutions__grid.is-inview {
    opacity: 1;
    transform: translateY(0);
}

/* ???? */
.is-card {
    position: relative;
    padding: 40px 32px 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: background-color 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
}
.is-card:hover {
    background-color: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ??????????? */
.is-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #8cc63f;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.is-card:hover::after {
    transform: scaleX(1);
}

/* ???? */
.is-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid #8cc63f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.35s ease, background-color 0.35s ease;
}
.is-card__icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: filter 0.35s ease;
}
.is-card:hover .is-card__icon {
    transform: scale(1.15);
    background-color: #8cc63f;
}
.is-card:hover .is-card__icon img {
    filter: brightness(0) invert(1);
}

.is-card__title {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px;
}
.is-card__desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

/* ???? */
.industry-solutions__btn-wrap {
    text-align: center;
}
.industry-solutions__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 16px 32px;
    text-decoration: none;
    transition: background-color 0.25s ease, border-color 0.25s ease;
}
.industry-solutions__btn:hover {
    background-color: #8cc63f;
    border-color: #8cc63f;
}

@media (max-width: 1024px) {
    .industry-solutions__grid {
        grid-template-columns: 1fr;
    }
}

/* --- front-page.php block 7 --- */
.news-section {
    width: 100%;
    padding: 90px 24px;
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}
.news-section__inner {
    max-width: 1350px;
    margin: 0 auto;
}

/* ??????*/
.news-section__head {
    text-align: center;
    margin-bottom: 48px;

    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.news-section__head.is-inview {
    opacity: 1;
    transform: translateY(0);
}
.news-section__tag {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #8cc63f;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.news-section__title {
    font-size: 38px;
    font-weight: 800;
    color: #0b1f4d;
    margin: 0 0 12px;
}
.news-section__subtitle {
    font-size: 16px;
    color: #6b7385;
}

/* ???? */
.news-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;

    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.news-section__grid.is-inview {
    opacity: 1;
    transform: translateY(0);
}

/* ???? */
.news-card {
    display: block;
    text-decoration: none;
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(11, 31, 77, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(11, 31, 77, 0.14);
}

.news-card__media {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}
.news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.news-card:hover .news-card__media img {
    transform: scale(1.06);
}

/* ????????*/
.news-card__date {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background-color: #ffffff;
    text-align: center;
    padding: 8px 14px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(11, 31, 77, 0.12);
}
.news-card__date-day {
    font-size: 20px;
    font-weight: 800;
    color: #0b1f4d;
    line-height: 1.1;
}
.news-card__date-month {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #8cc63f;
    text-transform: uppercase;
}

.news-card__body {
    padding: 24px 24px 28px;
}
.news-card__cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #8cc63f;
    margin-bottom: 12px;
}
.news-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #0b1f4d;
    margin: 0 0 12px;
    line-height: 1.4;
    transition: color 0.25s ease;
}
.news-card:hover .news-card__title {
    color: #8cc63f;
}
.news-card__excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7385;
    margin: 0 0 18px;
}
.news-card__more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #0b1f4d;
}
.news-card__more span {
    transition: transform 0.25s ease;
}
.news-card:hover .news-card__more span {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .news-section__grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .news-section {
        padding: 60px 16px;
    }
    .news-section__title {
        font-size: 28px;
    }
    .news-card__media {
        height: 200px;
    }
}


/* ===== from single-product.php ===== */
/* ============================================================
   Banner ????????????
   ============================================================ */
.inner-banner {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: #0b1f4d;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}
.inner-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(11, 31, 77, 0.55);
}
.inner-banner__content {
    position: relative;
    z-index: 2;
}
.inner-banner__title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px;
    line-height: 1.2;
}
.inner-banner__subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}
@media (max-width: 768px) {
    .inner-banner { height: 220px; }
    .inner-banner__title { font-size: 32px; }
}

/* ============================================================
   ??????
   ============================================================ */
.product-detail {
    width: 100%;
    padding: 60px 24px 80px;
    background-color: #f5f6f8;
    font-family: 'Montserrat', sans-serif;
}
.product-detail__inner {
    max-width: 1350px;
    margin: 0 auto;
}

/* ============================================================
   ???? - ?????   ============================================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   ????????   ============================================================ */
.product-detail__top {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(11, 31, 77, 0.06);
    overflow: hidden;
    padding: 40px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.product-detail__top:hover {
    box-shadow: 0 8px 32px rgba(11, 31, 77, 0.12);
}

/* ---- ?????? ---- */
.product-detail__gallery {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background-color: #f5f6f8;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}
.product-detail__gallery-track {
    display: flex;
    transition: transform 0.5s ease;
}
.product-detail__gallery-track .gallery-slide {
    min-width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f6f8;
}
.product-detail__gallery-track .gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}
.product-detail__gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background-color: rgba(11, 31, 77, 0.6);
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.3s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.product-detail__gallery-btn:hover {
    background-color: #8cc63f;
    transform: translateY(-50%) scale(1.1);
}
.product-detail__gallery-btn--prev {
    left: 8px;
}
.product-detail__gallery-btn--next {
    right: 8px;
}
.product-detail__gallery-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}
.product-detail__gallery-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(140, 198, 63, 0.35);
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.3s ease;
}
.product-detail__gallery-dots span:hover {
    background-color: rgba(140, 198, 63, 0.65);
    transform: scale(1.3);
}
.product-detail__gallery-dots span.is-active {
    background-color: #8cc63f;
}

/* ---- ?????? ---- */
.product-detail__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}
.product-detail__cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #8cc63f;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.product-detail__cat i {
    font-size: 11px;
}
.product-detail__title {
    font-size: 26px;
    font-weight: 800;
    color: #0b1f4d;
    margin: 0 0 6px;
    line-height: 1.3;
}
.product-detail__model {
    font-size: 14px;
    color: #9aa0ae;
    font-weight: 500;
    margin-bottom: 16px;
}
.product-detail__model strong {
    color: #0b1f4d;
    font-weight: 700;
}
.product-detail__intro {
    font-size: 15px;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 24px;
}
.product-detail__intro p {
    margin: 0;
}
.product-detail__quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background-color: #8cc63f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.3s ease, box-shadow 0.3s ease;
    align-self: flex-start;
}
.product-detail__quote-btn:hover {
    background-color: #79ad2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(140, 198, 63, 0.35);
}
.product-detail__quote-btn:active {
    transform: translateY(0);
}
.product-detail__quote-btn i {
    font-size: 16px;
}

/* ============================================================
   ??????   ============================================================ */
.product-detail__divider {
    margin: 28px 0;
    border: none;
    border-top: 1px solid rgba(11, 31, 77, 0.08);
}

/* ============================================================
   ????????+ ?? + ????????????
   ============================================================ */
.product-detail__bottom {
    padding: 0;
}

/* ---- ???? ---- */
.product-detail__specs {
    margin-bottom: 40px;
    padding: 32px 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(11, 31, 77, 0.06);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.product-detail__specs:hover {
    box-shadow: 0 8px 32px rgba(11, 31, 77, 0.12);
}
.product-detail__specs-title {
    font-size: 16px;
    font-weight: 800;
    color: #0b1f4d;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.product-detail__specs-title i {
    color: #8cc63f;
}
.product-detail__specs .content {
    font-size: 15px;
    line-height: 1.8;
    color: #2d3748;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.product-detail__specs .content p {
    margin: 0 0 16px;
}
.product-detail__specs .content p:last-child {
    margin-bottom: 0;
}
.product-detail__specs .content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 16px 0;
}
.product-detail__specs .content ul,
.product-detail__specs .content ol {
    margin: 0 0 16px;
    padding-left: 1.4em;
}
.product-detail__specs .content table {
    width: 100%;
    min-width: 280px;
    border-collapse: collapse;
    font-size: 14px;
    margin: 0 0 16px;
}
.product-detail__specs .content table td,
.product-detail__specs .content table th {
    padding: 10px 16px;
    border: 1px solid #eef0f5;
    transition: background-color 0.3s ease;
}
.product-detail__specs .content table tr:hover td {
    background-color: #f8f9fc;
}
.product-detail__specs .content table th,
.product-detail__specs .content table td:first-child {
    background-color: #f8f9fc;
    font-weight: 600;
    color: #0b1f4d;
}
.product-detail__specs .content table tr:hover td:first-child {
    background-color: #eef3e2;
}

/* ---- ???? ---- */
.product-detail__downloads {
    margin-bottom: 40px;
    padding: 32px 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(11, 31, 77, 0.06);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.product-detail__downloads:hover {
    box-shadow: 0 8px 32px rgba(11, 31, 77, 0.12);
}
.product-detail__downloads-title {
    font-size: 16px;
    font-weight: 800;
    color: #0b1f4d;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.product-detail__downloads-title i {
    color: #8cc63f;
}
.product-detail__downloads-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.product-detail__downloads-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #f8f9fc;
    border: 1px solid #dde2ec;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    color: #0b1f4d;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-detail__downloads-list a:hover {
    background-color: #8cc63f;
    border-color: #8cc63f;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(140, 198, 63, 0.3);
}
.product-detail__downloads-list a:active {
    transform: translateY(0);
}
.product-detail__downloads-list a i {
    font-size: 16px;
    transition: transform 0.3s ease;
}
.product-detail__downloads-list a:hover i {
    transform: scale(1.2);
}

/* ---- ???? ---- */
.product-detail__description {
    padding: 32px 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(11, 31, 77, 0.06);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.product-detail__description:hover {
    box-shadow: 0 8px 32px rgba(11, 31, 77, 0.12);
}
.product-detail__description-title {
    font-size: 16px;
    font-weight: 800;
    color: #0b1f4d;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.product-detail__description-title i {
    color: #8cc63f;
}
.product-detail__description .content {
    font-size: 15px;
    line-height: 1.8;
    color: #2d3748;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.product-detail__description .content p {
    margin: 0 0 16px;
}
.product-detail__description .content p:last-child {
    margin-bottom: 0;
}
.product-detail__description .content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 16px 0;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.product-detail__description .content img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(11, 31, 77, 0.15);
}
.product-detail__description .content ul,
.product-detail__description .content ol {
    margin: 0 0 16px;
    padding-left: 24px;
}
.product-detail__description .content li {
    margin-bottom: 6px;
    transition: transform 0.3s ease;
}
.product-detail__description .content li:hover {
    transform: translateX(4px);
}
.product-detail__description .content table {
    width: 100%;
    min-width: 480px;
    border-collapse: collapse;
    margin: 16px 0;
}
.product-detail__description .content table td,
.product-detail__description .content table th {
    border: 1px solid #e2e8f0;
    padding: 8px 12px;
    transition: background-color 0.3s ease;
}
.product-detail__description .content table tr:hover td {
    background-color: #f8f9fc;
}
.product-detail__description .content table th {
    background-color: #f8f9fc;
    font-weight: 700;
}
.product-detail__description .content blockquote {
    margin: 16px 0;
    padding: 12px 20px;
    background-color: #f8f9fc;
    border-left: 4px solid #8cc63f;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}
.product-detail__description .content blockquote:hover {
    border-left-color: #79ad2e;
    background-color: #eef3e2;
}

/* ============================================================
   ????
   ============================================================ */
.product-detail__related {
    margin-top: 28px;
    padding: 32px 40px 0 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(11, 31, 77, 0.06);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    overflow: visible;
}
.product-detail__related:hover {
    box-shadow: 0 8px 32px rgba(11, 31, 77, 0.12);
}
.product-detail__related-title {
    font-size: 18px;
    font-weight: 800;
    color: #0b1f4d;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.product-detail__related-title i {
    color: #8cc63f;
}
.product-detail__related-carousel {
    position: relative;
    overflow: visible;
}
.product-detail__related-viewport {
    overflow: hidden;
    /* ??????????????????????????*/
    margin: 0 -40px;
    padding: 28px 40px 48px;
}
.product-detail__related-track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.product-detail__related-item {
    flex: 0 0 calc((100% - 60px) / 4);
    width: calc((100% - 60px) / 4);
    min-width: 0;
    background-color: #f8f9fc;
    border-radius: 6px;
    /* ?????? hidden?????? box-shadow???????? */
    overflow: visible;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}
.product-detail__related-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background-color: rgba(11, 31, 77, 0.85);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}
.product-detail__related-carousel:hover .product-detail__related-btn,
.product-detail__related-btn.is-visible {
    opacity: 1;
    pointer-events: auto;
}
.product-detail__related-btn:hover {
    background-color: #8cc63f;
}
.product-detail__related-btn--prev {
    left: -12px;
}
.product-detail__related-btn--next {
    right: -12px;
}
.product-detail__related-btn:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}
.product-detail__related-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}
.product-detail__related-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d0d5e0;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.product-detail__related-dots span.is-active {
    background-color: #8cc63f;
    transform: scale(1.2);
}
.product-detail__related-dots:empty {
    display: none;
}
.product-detail__related-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(11, 31, 77, 0.15);
}
.product-detail__related-item .related-img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #f5f6f8;
    border-radius: 6px 6px 0 0;
}
.product-detail__related-item .related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-detail__related-item:hover .related-img img {
    transform: scale(1.1);
}
.product-detail__related-item .related-name {
    padding: 12px 14px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #0b1f4d;
    text-align: center;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
    border-radius: 0 0 6px 6px;
    background-color: #f8f9fc;
}
.product-detail__related-item:hover .related-name {
    color: #8cc63f;
}
.product-detail__related-item .related-name i {
    color: #8cc63f;
    margin-right: 4px;
    transition: transform 0.3s ease;
}
.product-detail__related-item:hover .related-name i {
    transform: rotate(-15deg);
}

/* ============================================================
   ????/ ??????   ============================================================ */
.product-detail__nav {
    margin-top: 28px;
    padding: 24px 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(11, 31, 77, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.product-detail__nav:hover {
    box-shadow: 0 8px 32px rgba(11, 31, 77, 0.12);
}
.product-detail__nav-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #0b1f4d;
    background-color: #f8f9fc;
    border: 1px solid #dde2ec;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 45%;
}
.product-detail__nav-link:hover {
    background-color: #8cc63f;
    border-color: #8cc63f;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(140, 198, 63, 0.3);
}
.product-detail__nav-link:active {
    transform: translateY(0);
}
.product-detail__nav-link--prev {
    margin-right: auto;
}
.product-detail__nav-link--next {
    margin-left: auto;
}
.product-detail__nav-link--disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}
.product-detail__nav-link i {
    font-size: 14px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.product-detail__nav-link:hover i {
    transform: translateX(-4px);
}
.product-detail__nav-link--next:hover i {
    transform: translateX(4px);
}
.product-detail__nav-link .nav-text {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* ============================================================
   ??????????
   ============================================================ */
.inquiry-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background-color: rgba(11, 31, 77, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.inquiry-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.inquiry-modal {
    background-color: #ffffff;
    border-radius: 8px;
    width: 100%;
    max-width: 720px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(30px);
    transition: transform 0.35s ease;
    position: relative;
}
.inquiry-overlay.is-open .inquiry-modal {
    transform: translateY(0);
}

.inquiry-modal__head {
    background-color: #0b1f4d;
    padding: 28px 32px;
    border-radius: 8px 8px 0 0;
}
.inquiry-modal__tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #8cc63f;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.inquiry-modal__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}
.inquiry-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    z-index: 2;
}
.inquiry-modal__close:hover {
    background-color: #8cc63f;
    border-color: #8cc63f;
}

.inquiry-modal__body {
    padding: 32px;
}

/* CF7 ?????? */
.inquiry-modal__body .wpcf7 {
    font-family: 'Montserrat', sans-serif;
}
.inquiry-modal__body .iq-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    /* 原 16px + p 默认下边距，现整体只少 3px */
    margin-bottom: calc(1em + 18px);
}
.inquiry-modal__body .iq-field {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.inquiry-modal__body .iq-field--full {
    margin-bottom: calc(1em + 18px);
}
.inquiry-modal__body label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #0b1f4d;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 9px;
}
.inquiry-modal__body label span {
    color: #e53e3e;
    margin-left: 2px;
}
.inquiry-modal__body input[type="text"],
.inquiry-modal__body input[type="email"],
.inquiry-modal__body input[type="tel"],
.inquiry-modal__body select,
.inquiry-modal__body textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #dde2ec;
    border-radius: 4px;
    padding: 12px 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #0b1f4d;
    background-color: #f8f9fc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}
.inquiry-modal__body input:focus,
.inquiry-modal__body select:focus,
.inquiry-modal__body textarea:focus {
    border-color: #8cc63f;
    box-shadow: 0 0 0 3px rgba(140, 198, 63, 0.15);
    background-color: #ffffff;
}
.inquiry-modal__body textarea {
    height: 110px;
    resize: vertical;
}
.inquiry-modal__body .wpcf7-submit {
    width: 100%;
    background-color: #8cc63f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.25s ease;
    margin-top: 8px;
}
.inquiry-modal__body .wpcf7-submit:hover {
    background-color: #79ad2e;
}
.inquiry-modal__body .wpcf7-response-output {
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
    border: none !important;
}
.inquiry-modal__body .wpcf7-mail-sent-ok {
    background-color: #f0fde8;
    color: #3a7c0f;
}
.inquiry-modal__body .wpcf7-validation-errors,
.inquiry-modal__body .wpcf7-mail-sent-ng {
    background-color: #fff5f5;
    color: #c53030;
}
.inquiry-modal__body .wpcf7-not-valid-tip {
    font-size: 12px;
    color: #e53e3e;
    margin-top: 4px;
}

/* ============================================================
   ????   ============================================================ */
@media (max-width: 1024px) {
    .product-detail__top {
        grid-template-columns: 1fr;
        padding: 24px;
    }
    .product-detail__gallery {
        max-width: 400px;
    }
    .product-detail__related-item {
        flex: 0 0 calc((100% - 20px) / 2);
        width: calc((100% - 20px) / 2);
    }
    .product-detail__related-btn {
        opacity: 1;
        pointer-events: auto;
    }
    .product-detail__related-btn--prev {
        left: -6px;
    }
    .product-detail__related-btn--next {
        right: -6px;
    }
}
@media (max-width: 768px) {
    .product-detail__top {
        padding: 16px;
    }
    .product-detail__gallery {
        max-width: 100%;
    }
    .product-detail__title {
        font-size: 22px;
    }
    .product-detail__intro {
        font-size: 14px;
    }
    .product-detail__specs {
        padding: 20px;
    }
    .product-detail__downloads {
        padding: 20px;
    }
    .product-detail__description {
        padding: 20px;
    }
    .product-detail__related {
        padding: 20px;
    }
    .product-detail__related-viewport {
        margin: 0 -20px;
        padding: 24px 20px 40px;
    }
    .product-detail__nav {
        flex-direction: column;
        padding: 16px 20px;
        gap: 12px;
    }
    .product-detail__nav-link {
        max-width: 100%;
        width: 100%;
        justify-content: center;
    }
    .product-detail__nav-link--prev {
        margin-right: 0;
    }
    .product-detail__nav-link--next {
        margin-left: 0;
    }
    .product-detail__specs .content table td,
    .product-detail__specs .content table th {
        padding: 6px 10px;
        font-size: 13px;
    }
    .product-detail__downloads-list a {
        width: 100%;
        justify-content: center;
    }
    .product-detail__related-track {
        gap: 12px;
    }
    .product-detail__related-item {
        flex: 0 0 calc((100% - 12px) / 2);
        width: calc((100% - 12px) / 2);
    }
    .inquiry-modal__body .iq-row {
        grid-template-columns: 1fr;
    }
    .inquiry-modal__body {
        padding: 20px;
    }
}
@media (max-width: 480px) {
    .product-detail__gallery-btn {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
    .product-detail__gallery-btn--prev {
        left: 4px;
    }
    .product-detail__gallery-btn--next {
        right: 4px;
    }
    .product-detail__quote-btn {
        width: 100%;
        justify-content: center;
    }
    .product-detail__related-item {
        flex: 0 0 100%;
        width: 100%;
    }
    .product-detail__related-btn {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }
}


/* ===== from archive-product.php ===== */
/* ============================================================
   ???? Banner 1920?300
   ============================================================ */
.inner-banner {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: #0b1f4d;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}
.inner-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(11, 31, 77, 0.55);
}
.inner-banner__content {
    position: relative;
    z-index: 2;
}
.inner-banner__title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px;
    line-height: 1.2;
}
.inner-banner__subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}
@media (max-width: 768px) {
    .inner-banner { height: 220px; }
    .inner-banner__title { font-size: 32px; }
}

/* ============================================================
   ???????
   ============================================================ */
.product-archive {
    width: 100%;
    padding: 60px 24px 80px;
    background-color: #f5f6f8;
    font-family: 'Montserrat', sans-serif;
}
.product-archive__inner {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 25% 75%;
    gap: 28px;
    align-items: start;
}

/* ============================================================
   ??????   ============================================================ */
.product-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 24px;
}

/* ??????? */
.sidebar-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(11, 31, 77, 0.06);
    overflow: hidden;
}
.sidebar-card__head {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f2f7;
}
.sidebar-card__title {
    font-size: 14px;
    font-weight: 800;
    color: #0b1f4d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sidebar-card__title i {
    color: #8cc63f;
    font-size: 14px;
}
.sidebar-card__body {
    padding: 0;
}

/* ?????*/
.cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.cat-list__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border-left: 3px solid transparent;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    gap: 0;
    position: relative;
}
.cat-list__link {
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 11px 12px 11px 20px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.cat-list__item:hover {
    background-color: #f5f6f8;
    border-left-color: #8cc63f;
}
.cat-list__item.is-active {
    background-color: #eef3e2;
    border-left-color: #8cc63f;
}
.cat-list__item.is-active .cat-list__name {
    color: #8cc63f;
    font-weight: 700;
}
.cat-list__name {
    font-size: 14px;
    color: #0b1f4d;
    font-weight: 500;
    transition: color 0.2s ease;
    flex: 1;
}
.cat-list__count {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    background-color: #c8d8f0;
    border-radius: 20px;
    padding: 2px 10px;
    min-width: 28px;
    text-align: center;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}
.cat-list__item.is-active .cat-list__count,
.cat-list__item:hover .cat-list__count {
    background-color: #8cc63f;
}

.cat-list__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-right: 8px;
    border: none;
    background: transparent;
    color: #9aa0ae;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.2s ease;
    padding: 0;
    flex-shrink: 0;
    font-size: 12px;
    border-radius: 4px;
}
.cat-list__toggle:hover {
    color: #8cc63f;
    background-color: rgba(140, 198, 63, 0.1);
}
.cat-list__toggle.is-open {
    transform: rotate(90deg);
    color: #8cc63f;
}
.cat-list__item--all .cat-list__toggle {
    display: none;
}

/* ?????? */
.cat-list__sub {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fafbfc;
}
.cat-list__sub.is-open {
    max-height: 500px;
}
.cat-list__sub-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border-left: 3px solid transparent;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    gap: 0;
}
.cat-list__sub-item .cat-list__link {
    padding: 9px 20px 9px 40px;
}
.cat-list__sub-item:hover {
    background-color: #f0f2f7;
    border-left-color: #8cc63f;
}
.cat-list__sub-item.is-active {
    background-color: #eef3e2;
    border-left-color: #8cc63f;
}
.cat-list__sub-item.is-active .cat-list__name {
    color: #8cc63f;
    font-weight: 700;
}
.cat-list__sub-item .cat-list__name {
    font-size: 13px;
    font-weight: 400;
}

/* ???? */
.cat-list__item--all {
    font-weight: 600;
}

/* ?????? */
.sidebar-contact {
    background-color: #0b1f4d;
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(11, 31, 77, 0.12);
}
.sidebar-contact__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(140, 198, 63, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.sidebar-contact__icon i {
    font-size: 22px;
    color: #8cc63f;
}
.sidebar-contact__title {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px;
}
.sidebar-contact__desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0 0 20px;
}
.sidebar-contact__btn {
    display: block;
    background-color: #8cc63f;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 13px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.25s ease;
}
.sidebar-contact__btn:hover {
    background-color: #79ad2e;
    color: #ffffff;
}

/* ============================================================
   ??????   ============================================================ */
.product-main {}

/* ???? */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
    min-height: 300px;
    position: relative;
}

/* ???? */
.product-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(11, 31, 77, 0.06);
    text-decoration: none;
    display: block;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(11, 31, 77, 0.13);
}

/* ??????*/
.product-card__media {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background-color: #f5f6f8;
}
.product-card__media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-card__media img {
    transform: scale(1.06);
}
.product-card__no-img {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card__no-img i {
    font-size: 40px;
    color: #c8d8f0;
}

/* ???? */
.product-card__body {
    padding: 14px 16px;
}
.product-card__cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #8cc63f;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.product-card__cat i {
    font-size: 10px;
}
.product-card__title {
    font-size: 14px;
    font-weight: 700;
    color: #0b1f4d;
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.25s ease;
}
.product-card:hover .product-card__title {
    color: #8cc63f;
}

/* ============================================================
   ?? + ??
   ============================================================ */
.product-pagination-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
}
.product-showing {
    font-size: 13px;
    color: #9aa0ae;
}
.product-showing strong {
    color: #0b1f4d;
}
.product-pagination {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
.product-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    color: #0b1f4d;
    background-color: #ffffff;
    border: 1px solid #dde2ec;
    text-decoration: none;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
    gap: 6px;
}
.product-pagination a.page-numbers:hover {
    background-color: #8cc63f;
    border-color: #8cc63f;
    color: #ffffff;
}
.product-pagination span.page-numbers.current {
    background-color: #8cc63f;
    border-color: #8cc63f;
    color: #ffffff;
}
.product-pagination span.page-numbers.dots {
    border: none;
    background: transparent;
    color: #9aa0ae;
    min-width: auto;
    padding: 0 4px;
}
.product-pagination .page-numbers.prev,
.product-pagination .page-numbers.next {
    padding: 0 14px;
}

/* ??????*/
.product-empty {
    text-align: center;
    padding: 80px 0;
    color: #6b7385;
    font-size: 16px;
    grid-column: 1 / -1;
}
.product-empty i {
    font-size: 48px;
    color: #dde2ec;
    display: block;
    margin-bottom: 16px;
}

@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 900px) {
    .product-archive__inner {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    /* ???????????????? ???? ???? */
    .product-sidebar {
        display: contents;
        position: static;
    }
    .sidebar-card {
        order: 1;
        width: 100%;
    }
    .product-main {
        order: 2;
        width: 100%;
    }
    .sidebar-contact {
        order: 3;
        width: 100%;
    }
}
@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .product-archive {
        padding: 40px 16px 60px;
    }
    .product-archive__inner {
        gap: 20px;
    }
    .product-pagination-wrap {
        flex-direction: column;
        align-items: stretch;
    }
    .product-pagination {
        justify-content: center;
        width: 100%;
    }
    .product-pagination .page-numbers {
        min-width: 36px;
        height: 36px;
        font-size: 12px;
    }
}
@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== from archive-news.php ===== */
/* ============================================================
   ???? Banner 1920?300
   ============================================================ */
.inner-banner {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: #0b1f4d;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}
.inner-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(11, 31, 77, 0.55);
}
.inner-banner__content {
    position: relative;
    z-index: 2;
}
.inner-banner__title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px;
    line-height: 1.2;
}
.inner-banner__subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}
@media (max-width: 768px) {
    .inner-banner { height: 220px; }
    .inner-banner__title { font-size: 32px; }
}

/* ============================================================
   ???????
   ============================================================ */
.news-archive {
    width: 100%;
    padding: 60px 24px 80px;
    background-color: #f5f6f8;
    font-family: 'Montserrat', sans-serif;
}
.news-archive__inner {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 28px;
    align-items: start;
}

/* ============================================================
   ??????
   ============================================================ */
.news-list {}

/* ?????? */
.news-list-item {
    display: flex;
    align-items: stretch;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    height: 180px;
    box-shadow: 0 4px 16px rgba(11, 31, 77, 0.06);
    text-decoration: none;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.news-list-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(11, 31, 77, 0.13);
}
.news-list-item:last-of-type {
    margin-bottom: 0;
}

/* ???? */
.news-list-item__media {
    flex: 0 0 32%;
    max-width: 32%;
    height: 180px;
    overflow: hidden;
    position: relative;
}
.news-list-item__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.news-list-item:hover .news-list-item__media img {
    transform: scale(1.05);
}
.news-list-item__no-img {
    width: 100%;
    height: 100%;
    background-color: #eef3e2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-list-item__no-img i {
    font-size: 40px;
    color: #8cc63f;
    opacity: 0.5;
}

/* ???? */
.news-list-item__body {
    flex: 1;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    min-width: 0;
}

/* ???? */
.news-list-item__cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #8cc63f;
    text-transform: uppercase;
}
.news-list-item__cat i {
    font-size: 11px;
}

/* ?? */
.news-list-item__title {
    font-size: 17px;
    font-weight: 700;
    color: #0b1f4d;
    margin: 0;
    line-height: 1.4;
    transition: color 0.25s ease;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.news-list-item:hover .news-list-item__title {
    color: #8cc63f;
}

/* ?? 1????*/
.news-list-item__excerpt {
    font-size: 14px;
    color: #6b7385;
    line-height: 1.6;
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* ?? + ???*/
.news-list-item__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: #9aa0ae;
}
.news-list-item__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.news-list-item__meta i {
    font-size: 12px;
    color: #8cc63f;
}

/* ============================================================
   ??
   ============================================================ */
.news-pagination {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}
.news-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.news-pagination .page-numbers li a,
.news-pagination .page-numbers li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #0b1f4d;
    background-color: #ffffff;
    border: 1px solid #dde2ec;
    text-decoration: none;
    transition: all 0.25s ease;
}
.news-pagination .page-numbers li a:hover {
    background-color: #8cc63f;
    border-color: #8cc63f;
    color: #ffffff;
}
.news-pagination .page-numbers li span.current {
    background-color: #8cc63f;
    border-color: #8cc63f;
    color: #ffffff;
}
.news-pagination .page-numbers li span.dots {
    border: none;
    background: transparent;
    color: #9aa0ae;
    min-width: auto;
    padding: 0 4px;
}

/* ============================================================
   ??????   ============================================================ */
.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ??????? */
.sidebar-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(11, 31, 77, 0.06);
    overflow: hidden;
}
.sidebar-card__head {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f2f7;
}
.sidebar-card__title {
    font-size: 14px;
    font-weight: 800;
    color: #0b1f4d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sidebar-card__title i {
    color: #8cc63f;
    font-size: 14px;
}
.sidebar-card__body {
    padding: 16px 20px;
}

/* ?????? */
.sidebar-tags {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.sidebar-tag {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f2f7;
    text-decoration: none;
    transition: padding-left 0.25s ease;
}
.sidebar-tag:last-child {
    border-bottom: none;
}
.sidebar-tag:hover {
    padding-left: 4px;
}
.sidebar-tag.is-active {
    padding-left: 4px;
}
.sidebar-tag__name {
    font-size: 14px;
    color: #0b1f4d;
    font-weight: 500;
    transition: color 0.25s ease;
}
.sidebar-tag:hover .sidebar-tag__name,
.sidebar-tag.is-active .sidebar-tag__name {
    color: #8cc63f;
}
.sidebar-tag__count {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    background-color: #8cc63f;
    border-radius: 20px;
    padding: 2px 10px;
    min-width: 28px;
    text-align: center;
}
.sidebar-tag.is-active .sidebar-tag__count {
    background-color: #0b1f4d;
}

/* ???????? */
.sidebar-contact {
    background-color: #0b1f4d;
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(11, 31, 77, 0.12);
}
.sidebar-contact__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(140, 198, 63, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.sidebar-contact__icon i {
    font-size: 22px;
    color: #8cc63f;
}
.sidebar-contact__title {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px;
}
.sidebar-contact__desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0 0 20px;
}
.sidebar-contact__btn {
    display: block;
    background-color: #8cc63f;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 13px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.25s ease;
}
.sidebar-contact__btn:hover {
    background-color: #79ad2e;
    color: #ffffff;
}

/* ??????*/
.news-empty {
    text-align: center;
    padding: 80px 0;
    color: #6b7385;
    font-size: 16px;
}
.news-empty i {
    font-size: 48px;
    color: #dde2ec;
    display: block;
    margin-bottom: 16px;
}

@media (max-width: 1024px) {
    .news-archive__inner {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    /* ????????/?????????????? ???? */
    .news-sidebar {
        display: contents;
    }
    .sidebar-card {
        order: 1;
        width: 100%;
    }
    .news-list {
        order: 2;
        width: 100%;
    }
    .sidebar-contact {
        order: 3;
        width: 100%;
    }
}
@media (max-width: 768px) {
    .news-list-item {
        flex-direction: column;
        height: auto;
    }
    .news-list-item__media {
        flex: none;
        max-width: 100%;
        height: 200px;
    }
    .news-list-item__body {
        padding: 16px;
    }
    .news-list-item__title {
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: unset;
    }
    .news-list-item__excerpt {
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .news-archive {
        padding: 40px 16px 60px;
    }
    .news-archive__inner {
        gap: 20px;
    }
}


/* ===== from single-news.php ===== */
/* ============================================================
   ???? Banner 1920?300
   ============================================================ */
.inner-banner {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: #0b1f4d;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}
.inner-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(11, 31, 77, 0.55);
}
.inner-banner__content {
    position: relative;
    z-index: 2;
}
.inner-banner__title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px;
    line-height: 1.2;
}
.inner-banner__subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}
@media (max-width: 768px) {
    .inner-banner { height: 220px; }
    .inner-banner__title { font-size: 32px; }
}

/* ============================================================
   ?????????
   ============================================================ */
.news-detail {
    width: 100%;
    padding: 60px 24px 80px;
    background-color: #f5f6f8;
    font-family: 'Montserrat', sans-serif;
}
.news-detail__inner {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 28px;
    align-items: start;
}

/* ============================================================
   ??????
   ============================================================ */
.news-detail__main {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(11, 31, 77, 0.06);
    overflow: hidden;
}

/* ???? */
.news-detail__header {
    padding: 40px 48px 24px;
    border-bottom: 1px solid #f0f2f7;
}
.news-detail__cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #8cc63f;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.news-detail__cat i {
    font-size: 11px;
}
.news-detail__title {
    font-size: 28px;
    font-weight: 800;
    color: #0b1f4d;
    margin: 0 0 16px;
    line-height: 1.3;
}
.news-detail__meta {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 13px;
    color: #9aa0ae;
}
.news-detail__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.news-detail__meta i {
    font-size: 12px;
    color: #8cc63f;
}

/* ???? */
.news-detail__content {
    padding: 32px 48px 40px;
}
.news-detail__content p {
    font-size: 15px;
    line-height: 1.8;
    color: #2d3748;
    margin: 0 0 20px;
}
.news-detail__content h2,
.news-detail__content h3,
.news-detail__content h4 {
    color: #0b1f4d;
    margin: 32px 0 16px;
    font-weight: 700;
}
.news-detail__content h2 { font-size: 22px; }
.news-detail__content h3 { font-size: 18px; }
.news-detail__content h4 { font-size: 16px; }
.news-detail__content ul,
.news-detail__content ol {
    margin: 0 0 20px;
    padding-left: 24px;
    font-size: 15px;
    line-height: 1.8;
    color: #2d3748;
}
.news-detail__content li {
    margin-bottom: 6px;
}
.news-detail__content blockquote {
    margin: 24px 0;
    padding: 16px 24px;
    background-color: #f8f9fc;
    border-left: 4px solid #8cc63f;
    font-size: 16px;
    line-height: 1.7;
    color: #0b1f4d;
    font-style: italic;
}
.news-detail__content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 16px 0;
}
.news-detail__content table {
    width: 100%;
    min-width: 480px;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
}
.news-detail__content table td,
.news-detail__content table th {
    border: 1px solid #e2e8f0;
    padding: 10px 14px;
    text-align: left;
}
.news-detail__content table th {
    background-color: #f8f9fc;
    font-weight: 700;
    color: #0b1f4d;
}

/* ============================================================
   ????/ ??????   ============================================================ */
.news-detail__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px 40px;
    border-top: 1px solid #f0f2f7;
    gap: 20px;
}
.news-detail__nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #0b1f4d;
    background-color: #f8f9fc;
    border: 1px solid #dde2ec;
    text-decoration: none;
    transition: all 0.25s ease;
    max-width: 45%;
}
.news-detail__nav-link:hover {
    background-color: #8cc63f;
    border-color: #8cc63f;
    color: #ffffff;
}
.news-detail__nav-link--prev {
    margin-right: auto;
}
.news-detail__nav-link--next {
    margin-left: auto;
}
.news-detail__nav-link--disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}
.news-detail__nav-link i {
    font-size: 12px;
}
.news-detail__nav-link .nav-text {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* ============================================================
   ???????????????
   ============================================================ */
.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ??????? */
.sidebar-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(11, 31, 77, 0.06);
    overflow: hidden;
}
.sidebar-card__head {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f2f7;
}
.sidebar-card__title {
    font-size: 14px;
    font-weight: 800;
    color: #0b1f4d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sidebar-card__title i {
    color: #8cc63f;
    font-size: 14px;
}
.sidebar-card__body {
    padding: 16px 20px;
}

/* ?????? */
.sidebar-tags {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.sidebar-tag {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f2f7;
    text-decoration: none;
    transition: padding-left 0.25s ease;
}
.sidebar-tag:last-child {
    border-bottom: none;
}
.sidebar-tag:hover {
    padding-left: 4px;
}
.sidebar-tag__name {
    font-size: 14px;
    color: #0b1f4d;
    font-weight: 500;
    transition: color 0.25s ease;
}
.sidebar-tag:hover .sidebar-tag__name {
    color: #8cc63f;
}
.sidebar-tag__count {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    background-color: #8cc63f;
    border-radius: 20px;
    padding: 2px 10px;
    min-width: 28px;
    text-align: center;
}

/* ?????? */
.sidebar-contact {
    background-color: #0b1f4d;
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(11, 31, 77, 0.12);
}
.sidebar-contact__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(140, 198, 63, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.sidebar-contact__icon i {
    font-size: 22px;
    color: #8cc63f;
}
.sidebar-contact__title {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px;
}
.sidebar-contact__desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0 0 20px;
}
.sidebar-contact__btn {
    display: block;
    background-color: #8cc63f;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 13px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.25s ease;
}
.sidebar-contact__btn:hover {
    background-color: #79ad2e;
    color: #ffffff;
}

/* ============================================================
   ????   ============================================================ */
@media (max-width: 1024px) {
    .news-detail__inner {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    /* ????????/???????????? ???? */
    .news-sidebar {
        display: contents;
    }
    .sidebar-card {
        order: 1;
        width: 100%;
    }
    .news-detail__main {
        order: 2;
        width: 100%;
    }
    .sidebar-contact {
        order: 3;
        width: 100%;
    }
}
@media (max-width: 768px) {
    .news-detail {
        padding: 40px 16px 60px;
    }
    .news-detail__inner {
        gap: 20px;
    }
    .news-detail__header {
        padding: 24px 20px 16px;
    }
    .news-detail__title {
        font-size: 22px;
    }
    .news-detail__content {
        padding: 24px 20px 28px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .news-detail__content p {
        font-size: 14px;
    }
    .news-detail__nav {
        flex-direction: column;
        padding: 20px 20px 28px;
    }
    .news-detail__nav-link {
        max-width: 100%;
        width: 100%;
        justify-content: center;
    }
    .news-detail__nav-link--prev {
        margin-right: 0;
    }
    .news-detail__nav-link--next {
        margin-left: 0;
    }
}
@media (max-width: 480px) {
    .news-detail__meta {
        flex-wrap: wrap;
        gap: 12px;
    }
}


/* ===== from page-about.php ===== */
/* ============================================================
   Banner ??
   ============================================================ */
.inner-banner {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: #0b1f4d;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}
.inner-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(11, 31, 77, 0.55);
}
.inner-banner__content {
    position: relative;
    z-index: 2;
}
.inner-banner__title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px;
    line-height: 1.2;
}
.inner-banner__subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}
@media (max-width: 768px) {
    .inner-banner { height: 220px; }
    .inner-banner__title { font-size: 32px; }
}

/* ============================================================
   About ????
   ============================================================ */
.about-page {
    width: 100%;
    padding: 60px 24px 80px;
    background-color: #f5f6f8;
    font-family: 'Montserrat', sans-serif;
}
.about-page__inner {
    max-width: 1350px;
    margin: 0 auto;
}

/* ============================================================
   ??????????
   ============================================================ */
.highlight {
    color: #8cc63f;
    font-weight: 700;
}

/* ============================================================
   ????
   ============================================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   ?????   ============================================================ */
.about-intro {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(11, 31, 77, 0.06);
    transition: box-shadow 0.5s ease;
}
.about-intro:hover {
    box-shadow: 0 8px 32px rgba(11, 31, 77, 0.12);
}
.about-intro__content {
    padding: 48px 40px;
}
.about-intro__tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #8cc63f;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.about-intro__title {
    font-size: 28px;
    font-weight: 800;
    color: #0b1f4d;
    margin: 0 0 8px;
    line-height: 1.3;
}
.about-intro__subtitle {
    font-size: 14px;
    color: #9aa0ae;
    font-weight: 500;
    margin-bottom: 20px;
}
.about-intro__text {
    font-size: 15px;
    line-height: 1.9;
    color: #2d3748;
}
.about-intro__text p {
    margin: 0 0 16px;
}
.about-intro__text p:last-child {
    margin-bottom: 0;
}
.about-intro__text strong {
    color: #8cc63f;
    font-weight: 700;
}
.about-intro__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.about-intro__stat {
    background-color: #f8f9fc;
    border-radius: 6px;
    padding: 16px 12px;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.about-intro__stat:hover {
    background-color: #eef3e2;
    transform: translateY(-2px);
}
.about-intro__stat-number {
    font-size: 24px;
    font-weight: 800;
    color: #8cc63f;
    line-height: 1.2;
}
.about-intro__stat-label {
    font-size: 12px;
    color: #6b7385;
    font-weight: 500;
    margin-top: 4px;
}
.about-intro__image {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}
.about-intro__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-intro:hover .about-intro__image img {
    transform: scale(1.03);
}
.about-intro__image .image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, #0b1f4d 0%, #1a3a7a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 64px;
    opacity: 0.3;
}

/* ============================================================
   ????/ ?? / ??????????   ============================================================ */
.about-section {
    margin-top: 40px;
}
.about-section__title {
    font-size: 26px;
    font-weight: 800;
    color: #0b1f4d;
    text-align: center;
    margin: 0 0 8px;
}
.about-section__subtitle {
    font-size: 14px;
    color: #9aa0ae;
    text-align: center;
    margin: 0 0 32px;
}
.about-grid {
    display: grid;
    gap: 20px;
}
.about-grid--factory {
    grid-template-columns: repeat(3, 1fr);
}
.about-grid--team {
    grid-template-columns: repeat(4, 1fr);
}
.about-grid--cert {
    grid-template-columns: repeat(5, 1fr);
}

.about-item {
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 4px 16px rgba(11, 31, 77, 0.06);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-item:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 12px 40px rgba(11, 31, 77, 0.15);
}
.about-item__image {
    width: 100%;
    overflow: hidden;
    background-color: #f5f6f8;
}
.about-item__image img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-item:hover .about-item__image img {
    transform: scale(1.05);
}
.about-item__image .placeholder {
    width: 100%;
    background: linear-gradient(135deg, #dde2ec 0%, #f0f2f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #c8d8f0;
}
.about-item__caption {
    padding: 14px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #0b1f4d;
    text-align: center;
    line-height: 1.4;
}

/* ???? 4:3 */
.about-item--factory .about-item__image {
    aspect-ratio: 4 / 3;
}
.about-item--factory .about-item__image .placeholder {
    aspect-ratio: 4 / 3;
}
.about-item--factory .about-item__image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* ???? 1:1 */
.about-item--team .about-item__image {
    aspect-ratio: 1 / 1;
}
.about-item--team .about-item__image .placeholder {
    aspect-ratio: 1 / 1;
}
.about-item--team .about-item__image img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* ???? ?? 3:4 */
.about-item--cert .about-item__image {
    aspect-ratio: 3 / 4;
}
.about-item--cert .about-item__image .placeholder {
    aspect-ratio: 3 / 4;
}
.about-item--cert .about-item__image img {
    aspect-ratio: 3 / 4;
    object-fit: contain;
    padding: 12px;
}
.about-item--cert .about-item__caption {
    font-size: 12px;
    padding: 10px 14px;
    color: #0b1f4d;
}

/* ============================================================
   ???????? - ??????????   ============================================================ */
.about-advantages {
    margin-top: 40px;
    padding: 48px 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(11, 31, 77, 0.06);
    transition: box-shadow 0.5s ease;
}
.about-advantages:hover {
    box-shadow: 0 8px 32px rgba(11, 31, 77, 0.12);
}
.about-advantages__title {
    font-size: 26px;
    font-weight: 800;
    color: #0b1f4d;
    text-align: center;
    margin: 0 0 8px;
}
.about-advantages__subtitle {
    font-size: 14px;
    color: #9aa0ae;
    text-align: center;
    margin: 0 0 32px;
}
.about-advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.about-advantage-item {
    text-align: center;
    padding: 28px 20px;
    border-radius: 8px;
    background-color: #f8f9fc;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                background-color 0.3s ease,
                box-shadow 0.4s ease;
}
.about-advantage-item:hover {
    transform: translateY(-6px);
    background-color: #eef3e2;
    box-shadow: 0 8px 24px rgba(140, 198, 63, 0.2);
}
.about-advantage-item__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 2px solid #8cc63f;
    transition: transform 0.4s ease, border-color 0.3s ease;
}
.about-advantage-item:hover .about-advantage-item__icon {
    transform: scale(1.1) rotate(-5deg);
    border-color: #0b1f4d;
}
.about-advantage-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-advantage-item__icon .placeholder-icon {
    width: 100%;
    height: 100%;
    background-color: #8cc63f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
}
.about-advantage-item__title {
    font-size: 16px;
    font-weight: 700;
    color: #0b1f4d;
    margin: 0 0 8px;
}
.about-advantage-item__desc {
    font-size: 13px;
    color: #6b7385;
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   ????
   ============================================================ */
.about-slogan {
    margin-top: 40px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #0b1f4d 0%, #1a3a7a 100%);
    border-radius: 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.5s ease;
}
.about-slogan:hover {
    box-shadow: 0 8px 40px rgba(11, 31, 77, 0.3);
}
.about-slogan::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 160px;
    color: rgba(255, 255, 255, 0.05);
    font-family: Georgia, serif;
}
.about-slogan::after {
    content: '"';
    position: absolute;
    bottom: -80px;
    right: 40px;
    font-size: 160px;
    color: rgba(255, 255, 255, 0.05);
    font-family: Georgia, serif;
}
.about-slogan__text {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.4;
    margin: 0 0 16px;
    position: relative;
    z-index: 1;
}
.about-slogan__text .highlight {
    color: #8cc63f;
    font-weight: 700;
}
.about-slogan__sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ============================================================
   ????   ============================================================ */
@media (max-width: 1024px) {
    .about-intro {
        grid-template-columns: 1fr;
    }
    .about-intro__image {
        min-height: 300px;
        order: -1;
    }
    .about-intro__image img {
        height: 300px;
        object-fit: cover;
    }
    .about-intro__stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid--factory {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid--team {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid--cert {
        grid-template-columns: repeat(3, 1fr);
    }
    .about-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .about-intro__content {
        padding: 28px 20px;
    }
    .about-intro__title {
        font-size: 22px;
    }
    .about-intro__stats {
        grid-template-columns: 1fr 1fr;
    }
    .about-intro__stat-number {
        font-size: 20px;
    }
    .about-grid--factory {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .about-grid--team {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .about-grid--cert {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .about-advantages {
        padding: 28px 20px;
    }
    .about-advantages-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .about-advantage-item {
        padding: 20px 16px;
    }
    .about-slogan {
        padding: 40px 20px;
    }
    .about-slogan__text {
        font-size: 24px;
    }
    .about-section__title {
        font-size: 22px;
    }
}
@media (max-width: 480px) {
    .about-page {
        padding: 40px 16px 60px;
    }
    .about-grid--factory {
        grid-template-columns: 1fr;
    }
    .about-grid--team {
        grid-template-columns: 1fr;
    }
    .about-grid--cert {
        grid-template-columns: 1fr;
    }
    .about-advantages-grid {
        grid-template-columns: 1fr;
    }
    .about-intro__stats {
        grid-template-columns: 1fr 1fr;
    }
    .about-slogan__text {
        font-size: 20px;
    }
}


/* ===== from page-contact-us.php ===== */
/* ============================================================
   ?????
   ============================================================ */
.contact-page {
    font-family: 'Montserrat', sans-serif;
}

/* ============================================================
   ?? Banner  1920 ? 300
   ============================================================ */
.contact-banner {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: #0b1f4d;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.contact-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(11, 31, 77, 0.55);
}
.contact-banner__content {
    position: relative;
    z-index: 2;
}
.contact-banner__title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px;
    line-height: 1.2;
}
.contact-banner__subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

@media (max-width: 768px) {
    .contact-banner { height: 220px; }
    .contact-banner__title { font-size: 32px; }
}

/* ============================================================
   ??????????????margin????????
   ============================================================ */
.contact-cards {
    width: 100%;
    padding: 60px 24px 0;  /* ????60px????banner?? */
    background-color: #f5f6f8;
}
.contact-cards__inner {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    /* ????transform: translateY(-40px); */
}
.contact-card {
    background-color: #ffffff;
    padding: 36px 28px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    border-right: 1px solid #eef0f5;
    box-shadow: 0 8px 24px rgba(11, 31, 77, 0.08);
    transition: box-shadow 0.3s ease;
}
.contact-card:last-child {
    border-right: none;
}
.contact-card:hover {
    box-shadow: 0 12px 32px rgba(11, 31, 77, 0.14);
}
.contact-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #eef3e2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}
.contact-card__icon i {
    font-size: 20px;
    color: #8cc63f;
    transition: color 0.3s ease;
}
.contact-card:hover .contact-card__icon {
    background-color: #8cc63f;
}
.contact-card:hover .contact-card__icon i {
    color: #ffffff;
}
.contact-card__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #8cc63f;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.contact-card__value {
    font-size: 14px;
    line-height: 1.7;
    color: #0b1f4d;
    font-weight: 500;
}
.contact-card__value a {
    color: #0b1f4d;
    text-decoration: none;
    transition: color 0.25s ease;
}
.contact-card__value a:hover {
    color: #8cc63f;
}

@media (max-width: 900px) {
    .contact-cards {
        padding: 40px 24px 0;  /* ?????????? */
    }
    .contact-cards__inner {
        grid-template-columns: repeat(2, 1fr);
        /* ????transform: translateY(-24px); */
    }
    .contact-card {
        border-right: none;
        border-bottom: 1px solid #eef0f5;
    }
}
@media (max-width: 500px) {
    .contact-cards {
        padding: 30px 16px 0;  /* ?????????? */
    }
    .contact-cards__inner {
        grid-template-columns: 1fr;
        /* ????transform: translateY(-16px); */
    }
}

/* ============================================================
   ?? + ?????????????????   ============================================================ */
.contact-main {
    width: 100%;
    padding: 40px 24px 90px;  /* ????40px?????????? */
    background-color: #f5f6f8;
}
.contact-main__inner {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
    align-items: stretch;
}

/* ?? */
.contact-map {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(11, 31, 77, 0.1);
    min-height: 560px;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 560px;
    border: none;
    display: block;
}

/* ????*/
.contact-form-box {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(11, 31, 77, 0.08);
    overflow: hidden;
}
.contact-form-box__head {
    background-color: #0b1f4d;
    padding: 28px 32px;
}
.contact-form-box__tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #8cc63f;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.contact-form-box__title {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}
.contact-form-box__body {
    padding: 32px;
}

/* CF7 ???? */
.contact-form-box__body .wpcf7 {
    font-family: 'Montserrat', sans-serif;
}
.contact-form-box__body .iq-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: calc(1em + 16px);
}
.contact-form-box__body .iq-field {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.contact-form-box__body .iq-field--full {
    margin-bottom: calc(1em + 16px);
}
.contact-form-box__body label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #0b1f4d;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 9px;
}
.contact-form-box__body label span {
    color: #e53e3e;
    margin-left: 2px;
}
.contact-form-box__body input[type="text"],
.contact-form-box__body input[type="email"],
.contact-form-box__body input[type="tel"],
.contact-form-box__body select,
.contact-form-box__body textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #dde2ec;
    border-radius: 4px;
    padding: 11px 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #0b1f4d;
    background-color: #f8f9fc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}
.contact-form-box__body input:focus,
.contact-form-box__body select:focus,
.contact-form-box__body textarea:focus {
    border-color: #8cc63f;
    box-shadow: 0 0 0 3px rgba(140, 198, 63, 0.15);
    background-color: #ffffff;
}
.contact-form-box__body textarea {
    height: 100px;
    resize: vertical;
}
.contact-form-box__body .wpcf7-submit {
    width: 100%;
    background-color: #8cc63f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.25s ease;
    margin-top: 6px;
}
.contact-form-box__body .wpcf7-submit:hover {
    background-color: #79ad2e;
}
.contact-form-box__body .wpcf7-response-output {
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 13px;
    border: none !important;
}
.contact-form-box__body .wpcf7-mail-sent-ok {
    background-color: #f0fde8;
    color: #3a7c0f;
}
.contact-form-box__body .wpcf7-validation-errors,
.contact-form-box__body .wpcf7-mail-sent-ng {
    background-color: #fff5f5;
    color: #c53030;
}
.contact-form-box__body .wpcf7-not-valid-tip {
    font-size: 12px;
    color: #e53e3e;
    margin-top: 4px;
}

@media (max-width: 1024px) {
    .contact-main {
        padding: 30px 24px 70px;  /* ?????????? */
    }
    .contact-main__inner {
        grid-template-columns: 1fr;
    }
    .contact-map,
    .contact-map iframe {
        min-height: 380px;
    }
}
@media (max-width: 600px) {
    .contact-main {
        padding: 20px 16px 60px;
    }
    .contact-form-box__head {
        padding: 16px 16px 14px;
    }
    .contact-form-box__tag {
        font-size: 11px;
        margin-bottom: 4px;
    }
    .contact-form-box__title {
        font-size: 18px;
    }
    .contact-form-box__body {
        padding: 14px 16px 16px;
    }
    .contact-form-box__body .iq-row {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 12px;
    }
    .contact-form-box__body .iq-field {
        gap: 0;
    }
    .contact-form-box__body .iq-field--full {
        margin-bottom: 12px;
    }
    .contact-form-box__body label {
        font-size: 11px;
    }
    .contact-form-box__body input[type="text"],
    .contact-form-box__body input[type="email"],
    .contact-form-box__body input[type="tel"],
    .contact-form-box__body select,
    .contact-form-box__body textarea {
        padding: 10px 12px;
        font-size: 13px;
    }
    .contact-form-box__body textarea {
        height: 88px;
    }
    .contact-form-box__body .wpcf7-submit {
        padding: 12px;
        font-size: 13px;
        margin-top: 4px;
    }
    .contact-form-box__body .wpcf7-response-output {
        margin-top: 8px;
        padding: 8px 12px;
        font-size: 13px;
    }
    .contact-form-box__body .wpcf7 p {
        margin: 0;
    }
    .contact-card {
        padding: 24px 16px;
    }
    .contact-map,
    .contact-map iframe {
        min-height: 280px;
    }
}


/* ===== from page-solutions.php ===== */
/* ============================================================
   Banner ?????????????
   ============================================================ */
.inner-banner {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: #0b1f4d;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}
.inner-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(11, 31, 77, 0.55);
}
.inner-banner__content {
    position: relative;
    z-index: 2;
}
.inner-banner__title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px;
    line-height: 1.2;
}
.inner-banner__subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}
@media (max-width: 768px) {
    .inner-banner { height: 220px; }
    .inner-banner__title { font-size: 32px; }
}

/* ============================================================
   Solutions ??
   ============================================================ */
.solutions-page {
    width: 100%;
    padding: 60px 24px 80px;
    background-color: #f5f6f8;
    font-family: 'Montserrat', sans-serif;
}
.solutions-page__inner {
    max-width: 1350px;
    margin: 0 auto;
}

/* ============================================================
   ???????   ============================================================ */
.solutions-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    justify-content: center;
}
.solutions-filters__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #0b1f4d;
    background-color: #ffffff;
    border: 2px solid #dde2ec;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 2px 8px rgba(11, 31, 77, 0.06);
}
.solutions-filters__btn i {
    font-size: 16px;
    color: #9aa0ae;
    transition: color 0.3s ease;
}
.solutions-filters__btn:hover {
    border-color: #8cc63f;
    color: #8cc63f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(140, 198, 63, 0.15);
}
.solutions-filters__btn:hover i {
    color: #8cc63f;
}
.solutions-filters__btn.is-active {
    background-color: #8cc63f;
    border-color: #8cc63f;
    color: #ffffff;
}
.solutions-filters__btn.is-active i {
    color: #ffffff;
}
.solutions-filters__btn .btn-count {
    font-size: 12px;
    font-weight: 600;
    background-color: rgba(140, 198, 63, 0.15);
    padding: 0 8px;
    border-radius: 12px;
    color: #8cc63f;
}
.solutions-filters__btn.is-active .btn-count {
    background-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* ============================================================
   ????
   ============================================================ */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    min-height: 300px;
    position: relative;
}

/* ============================================================
   ????
   ============================================================ */
.solutions-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(11, 31, 77, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}
.solutions-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(11, 31, 77, 0.12);
}

/* 16:9 ???? */
.solutions-card__media {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    background-color: #0b1f4d;
}
.solutions-card__media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.solutions-card:hover .solutions-card__media img {
    transform: scale(1.05);
}
.solutions-card__media .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(140, 198, 63, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 2;
}
.solutions-card:hover .solutions-card__media .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #8cc63f;
}
.solutions-card__media .play-icon i {
    margin-left: 4px;
}
.solutions-card__media .media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11, 31, 77, 0) 50%, rgba(11, 31, 77, 0.3) 100%);
    z-index: 1;
}
.solutions-card__media .media-type-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    background-color: rgba(11, 31, 77, 0.7);
    color: #ffffff;
}

/* ???? */
.solutions-card__body {
    padding: 16px 20px 20px;
}
.solutions-card__title {
    font-size: 15px;
    font-weight: 700;
    color: #0b1f4d;
    margin: 0 0 8px;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.solutions-card__desc {
    font-size: 13px;
    color: #6b7385;
    line-height: 1.6;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* ============================================================
   ??
   ============================================================ */
.solutions-pagination {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.solutions-pagination__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    color: #0b1f4d;
    background-color: #ffffff;
    border: 1px solid #dde2ec;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Montserrat', sans-serif;
}
.solutions-pagination__btn:hover:not(:disabled) {
    background-color: #8cc63f;
    border-color: #8cc63f;
    color: #ffffff;
}
.solutions-pagination__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.solutions-pagination__info {
    font-size: 13px;
    color: #9aa0ae;
}
.solutions-pagination__info strong {
    color: #0b1f4d;
}

/* ============================================================
   ????   ============================================================ */
.solutions-empty {
    text-align: center;
    padding: 80px 0;
    color: #6b7385;
    font-size: 16px;
    grid-column: 1 / -1;
}
.solutions-empty i {
    font-size: 48px;
    color: #dde2ec;
    display: block;
    margin-bottom: 16px;
}

/* ============================================================
   Lightbox ????
   ============================================================ */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.92);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.lightbox-overlay.is-open {
    display: flex;
}
.lightbox-overlay__close {
    position: absolute;
    top: 24px;
    right: 32px;
    width: 48px;
    height: 48px;
    border: none;
    background: none;
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 10;
}
.lightbox-overlay__close:hover {
    transform: rotate(90deg);
    color: #8cc63f;
}
.lightbox-overlay__content {
    max-width: 90vw;
    max-height: 85vh;
    position: relative;
}
.lightbox-overlay__content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: block;
}
.lightbox-overlay__content video {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox-overlay__caption {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

/* ============================================================
   ????   ============================================================ */
@media (max-width: 1100px) {
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .solutions-filters {
        gap: 8px;
    }
    .solutions-filters__btn {
        padding: 10px 16px;
        font-size: 12px;
    }
    .solutions-filters__btn i {
        font-size: 14px;
    }
    .solutions-card__body {
        padding: 12px 16px 16px;
    }
    .solutions-card__title {
        font-size: 13px;
    }
    .solutions-card__desc {
        font-size: 12px;
    }
}
@media (max-width: 480px) {
    .solutions-page {
        padding: 40px 16px 60px;
    }
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    .solutions-filters__btn {
        padding: 8px 12px;
        font-size: 11px;
        gap: 6px;
    }
    .solutions-filters__btn i {
        font-size: 12px;
    }
    .lightbox-overlay {
        padding: 16px;
    }
    .lightbox-overlay__close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }
}


/* ===== from 404.php ===== */
.page-404 {
    max-width: 720px;
    margin: 80px auto;
    padding: 0 24px 100px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}
.page-404__code {
    font-size: 96px;
    font-weight: 800;
    color: #0b1f4d;
    line-height: 1;
    margin: 0 0 12px;
}
.page-404__title {
    font-size: 28px;
    font-weight: 700;
    color: #0b1f4d;
    margin: 0 0 12px;
}
.page-404__desc {
    font-size: 15px;
    color: #5a6c93;
    margin: 0 0 28px;
}
.page-404__btn {
    display: inline-block;
    background-color: #8cc63f;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
}
.page-404__btn:hover {
    background-color: #79ad2e;
    color: #fff;
}
@media (max-width: 768px) {
    .page-404 {
        margin: 40px auto;
        padding: 0 16px 80px;
    }
    .page-404__code {
        font-size: 72px;
    }
    .page-404__title {
        font-size: 22px;
    }
    .page-404__desc {
        font-size: 14px;
    }
}


/* ===== from page.php ===== */
.page-default {
    max-width: 960px;
    margin: 0 auto;
    padding: 60px 24px 100px;
    font-family: 'Montserrat', sans-serif;
}
.page-default__title {
    font-size: 36px;
    font-weight: 800;
    color: #0b1f4d;
    margin: 0 0 24px;
}
.page-default__content {
    font-size: 15px;
    line-height: 1.8;
    color: #334155;
}
.page-default__content img {
    max-width: 100%;
    height: auto;
}

/* 全站视频：隐藏下载按钮（保留播放速度、画中画） */
video::-webkit-media-controls-download-button {
    display: none !important;
}
video::-internal-media-controls-download-button {
    display: none !important;
}

/* 全站表单：标题与输入框间距 +9px；行距仅比原来少 3px */
.inquiry-modal__body .iq-field > p,
.contact-form-box__body .iq-field > p {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.inquiry-modal__body .iq-field > p > br,
.contact-form-box__body .iq-field > p > br {
    display: none;
}
.inquiry-modal__body .iq-field label,
.contact-form-box__body .iq-field label {
    margin-bottom: 0;
}
.inquiry-modal__body .iq-row,
.inquiry-modal__body .iq-field--full {
    margin-bottom: calc(1em + 18px);
}
.contact-form-box__body .iq-row,
.contact-form-box__body .iq-field--full {
    margin-bottom: calc(1em + 16px);
}
@media (max-width: 768px) {
    .inquiry-modal__body .iq-row,
    .inquiry-modal__body .iq-field--full,
    .contact-form-box__body .iq-row,
    .contact-form-box__body .iq-field--full {
        margin-bottom: 12px;
    }
}




