/*
 * Haitai Global V3 — a ground-up editorial industrial interface.
 * Legacy page content and forms remain the source of truth; this layer owns
 * the public navigation, home composition, visual language and responsive UI.
 */

:root {
    --hg3-ink: #0a1730;
    --hg3-navy: #071a35;
    --hg3-blue: #164fe0;
    --hg3-blue-deep: #0b38a5;
    --hg3-red: #e62b32;
    --hg3-sky: #e9f0ff;
    --hg3-paper: #f5f7fb;
    --hg3-white: #fff;
    --hg3-muted: #647083;
    --hg3-line: rgba(10, 23, 48, .13);
    --hg3-shell: min(1480px, calc(100vw - 80px));
    --hg3-ease: cubic-bezier(.22, .72, .24, 1);
    --hg3-shadow: 0 32px 80px rgba(7, 26, 53, .14);
}

html.hg-v3-active {
    scroll-behavior: smooth;
    scroll-padding-top: 112px;
}

body.hg-v3-ready {
    animation: hgV3Ready .28s ease both;
}

@keyframes hgV3Ready {
    from { opacity: 0; }
    to { opacity: 1; }
}

body.hg-v3 {
    margin: 0 !important;
    overflow-x: clip;
    color: var(--hg3-ink);
    background: var(--hg3-white);
    font-family: "Roboto-Regular", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.hg-v3 *,
body.hg-v3 *::before,
body.hg-v3 *::after {
    box-sizing: border-box;
}

body.hg-v3-lock {
    overflow: hidden;
}

body.hg-v3 a,
body.hg-v3 button,
body.hg-v3 input,
body.hg-v3 textarea,
body.hg-v3 select {
    font: inherit;
}

body.hg-v3 button,
body.hg-v3 a {
    -webkit-tap-highlight-color: transparent;
}

body.hg-v3 a:focus-visible,
body.hg-v3 button:focus-visible,
body.hg-v3 input:focus-visible,
body.hg-v3 textarea:focus-visible,
body.hg-v3 select:focus-visible {
    outline: 3px solid rgba(22, 79, 224, .35) !important;
    outline-offset: 3px;
}

body.hg-v3 img {
    display: block;
    max-width: 100%;
}

.hg-v3-shell {
    width: var(--hg3-shell);
    margin-inline: auto;
}

/* Remove the old site chrome. Content pages remain intact underneath. */
body.hg-v3 .header_box,
body.hg-v3 .mobile_header,
body.hg-v3 .float_fixed,
body.hg-v3 > .footer,
body.hg-v3 > .footer_inq {
    display: none !important;
}

body.hg-v3-page-home > .banner_box,
body.hg-v3-page-home > .ind_box1,
body.hg-v3-page-home > .ind_box2,
body.hg-v3-page-home > .ind_box3,
body.hg-v3-page-home > .ind_box4,
body.hg-v3-page-home > .ind_box5,
body.hg-v3-page-home > .ind_box6 {
    display: none !important;
}

/* Header */
.hg-v3-header {
    position: fixed;
    z-index: 4000;
    inset: 0 0 auto;
    width: 100%;
    color: var(--hg3-ink);
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid rgba(10, 23, 48, .09);
    transition: box-shadow .32s ease, background-color .32s ease;
}

.hg-v3-header.is-scrolled {
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 14px 44px rgba(7, 26, 53, .12);
}

.hg-v3-topline {
    height: 30px;
    color: rgba(255, 255, 255, .76);
    background: var(--hg3-navy);
    font-family: "Roboto-Medium", Arial, sans-serif;
    font-size: 10px;
    line-height: 1;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hg-v3-topline-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hg-v3-topline-inner > div {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hg-v3-topline a {
    color: rgba(255, 255, 255, .82) !important;
    text-decoration: none;
}

.hg-v3-topline a:hover {
    color: #fff !important;
}

.hg-v3-topline i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--hg3-red);
}

.hg-v3-nav {
    height: 78px;
}

.hg-v3-nav-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.hg-v3-brand {
    flex: 0 0 auto;
    width: 195px;
    text-decoration: none;
}

.hg-v3-brand img {
    width: 100%;
    height: auto;
}

.hg-v3-primary {
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: clamp(16px, 2vw, 34px);
}

.hg-v3-primary > a,
.hg-v3-product-trigger {
    position: relative;
    display: flex;
    align-items: center;
    color: #23304a !important;
    background: transparent;
    border: 0;
    padding: 0;
    font-family: "Roboto-Medium", Arial, sans-serif;
    font-size: 13px;
    letter-spacing: .035em;
    text-decoration: none !important;
    cursor: pointer;
}

.hg-v3-primary > a::after,
.hg-v3-product-trigger::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--hg3-blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s var(--hg3-ease);
}

.hg-v3-primary > a:hover,
.hg-v3-primary > a.is-current,
.hg-v3-product-trigger:hover,
.hg-v3-product-trigger.is-current,
.hg-v3-product-menu:hover .hg-v3-product-trigger,
.hg-v3-product-menu.is-open .hg-v3-product-trigger {
    color: var(--hg3-blue) !important;
}

.hg-v3-primary > a:hover::after,
.hg-v3-primary > a.is-current::after,
.hg-v3-product-trigger:hover::after,
.hg-v3-product-trigger.is-current::after,
.hg-v3-product-menu:hover .hg-v3-product-trigger::after,
.hg-v3-product-menu.is-open .hg-v3-product-trigger::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hg-v3-product-menu {
    height: 100%;
    display: flex;
    align-items: stretch;
}

.hg-v3-product-trigger {
    gap: 7px;
}

.hg-v3-product-trigger svg {
    width: 9px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    transition: transform .25s ease;
}

.hg-v3-product-menu:hover .hg-v3-product-trigger svg,
.hg-v3-product-menu.is-open .hg-v3-product-trigger svg {
    transform: rotate(180deg);
}

.hg-v3-mega {
    position: fixed;
    z-index: 3998;
    top: 108px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 108px);
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    color: var(--hg3-ink);
    background: rgba(255, 255, 255, .985);
    border-top: 1px solid rgba(10, 23, 48, .08);
    box-shadow: 0 35px 70px rgba(7, 26, 53, .18);
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .32s var(--hg3-ease), visibility .25s ease;
}

.hg-v3-product-menu:hover .hg-v3-mega,
.hg-v3-product-menu:focus-within .hg-v3-mega,
.hg-v3-product-menu.is-open .hg-v3-mega {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.hg-v3-mega-shell {
    padding-top: 24px;
    padding-bottom: 34px;
}

.hg-v3-mega-heading {
    min-height: 58px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    border-bottom: 1px solid var(--hg3-line);
}

.hg-v3-mega-heading > div {
    display: flex;
    align-items: baseline;
    gap: 24px;
}

.hg-v3-mega-heading span,
.hg-v3-mega-panel-heading > span {
    color: var(--hg3-blue);
    font-family: "Roboto-SemiBold", Arial, sans-serif;
    font-size: 9px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hg-v3-mega-heading strong {
    color: var(--hg3-ink);
    font-family: "Roboto-SemiBold", Arial, sans-serif;
    font-size: 21px;
    letter-spacing: -.025em;
}

.hg-v3-mega-all,
.hg-v3-mega-family {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--hg3-blue) !important;
    font-family: "Roboto-SemiBold", Arial, sans-serif;
    font-size: 11px;
    letter-spacing: .04em;
    text-decoration: none !important;
}

.hg-v3-mega-all b,
.hg-v3-mega-family b {
    font-size: 13px;
    transition: transform .25s ease;
}

.hg-v3-mega-all:hover b,
.hg-v3-mega-family:hover b {
    transform: translate(2px, -2px);
}

.hg-v3-mega-body {
    min-height: 340px;
    display: grid;
    grid-template-columns: minmax(260px, 32%) minmax(0, 1fr);
}

.hg-v3-mega-rail {
    padding: 22px 34px 0 0;
    border-right: 1px solid var(--hg3-line);
}

.hg-v3-mega-tab {
    width: 100%;
    min-height: 49px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    padding: 0 13px 0 0;
    color: var(--hg3-muted);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(10, 23, 48, .08);
    text-align: left;
    cursor: pointer;
    transition: color .22s ease, background-color .22s ease, padding .22s ease;
}

.hg-v3-mega-tab > span {
    color: #96a0b0;
    font-size: 9px;
    letter-spacing: .08em;
}

.hg-v3-mega-tab > strong {
    font-family: "Roboto-Medium", Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
}

.hg-v3-mega-tab > b {
    opacity: 0;
    color: var(--hg3-blue);
    font-size: 14px;
    transform: translateX(-5px);
    transition: .22s ease;
}

.hg-v3-mega-tab:hover,
.hg-v3-mega-tab.is-active {
    padding-left: 12px;
    color: var(--hg3-ink);
    background: var(--hg3-paper);
}

.hg-v3-mega-tab.is-active > span {
    color: var(--hg3-blue);
}

.hg-v3-mega-tab:hover > b,
.hg-v3-mega-tab.is-active > b {
    opacity: 1;
    transform: translateX(0);
}

.hg-v3-mega-panels {
    padding: 28px 0 0 48px;
}

.hg-v3-mega-panel {
    display: none;
    grid-template-columns: minmax(210px, .72fr) minmax(0, 1.28fr);
    gap: clamp(42px, 5vw, 92px);
    animation: hgV3MegaPanel .28s ease both;
}

.hg-v3-mega-panel.is-active {
    display: grid;
}

@keyframes hgV3MegaPanel {
    from { opacity: 0; transform: translateX(8px); }
    to { opacity: 1; transform: translateX(0); }
}

.hg-v3-mega-panel-heading h3 {
    max-width: 300px;
    margin: 12px 0 24px;
    color: var(--hg3-ink);
    font-family: "Roboto-SemiBold", Arial, sans-serif;
    font-size: clamp(31px, 3vw, 44px);
    font-weight: 600;
    line-height: .98;
    letter-spacing: -.055em;
}

.hg-v3-mega-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    gap: 0 32px;
}

.hg-v3-mega-links a {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #33405a !important;
    border-bottom: 1px solid var(--hg3-line);
    font-family: "Roboto-Medium", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.25;
    text-decoration: none !important;
    transition: color .22s ease, padding .22s ease;
}

.hg-v3-mega-links a b {
    opacity: .45;
    color: var(--hg3-blue);
    font-size: 12px;
}

.hg-v3-mega-links a:hover {
    padding-left: 7px;
    color: var(--hg3-blue) !important;
}

.hg-v3-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hg-v3-language {
    position: relative;
}

.hg-v3-language-trigger {
    min-width: 54px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 10px;
    color: var(--hg3-ink);
    background: transparent;
    border: 0;
    border-radius: 7px;
    font-family: "Roboto-SemiBold", Arial, sans-serif !important;
    font-size: 12px !important;
    cursor: pointer;
}

.hg-v3-language-trigger:hover {
    background: var(--hg3-paper);
}

.hg-v3-language-trigger svg {
    width: 10px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.hg-v3-language-menu {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: 174px;
    padding: 8px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    background: #fff;
    border: 1px solid var(--hg3-line);
    border-radius: 10px;
    box-shadow: var(--hg3-shadow);
    transition: .24s ease;
}

.hg-v3-language.is-open .hg-v3-language-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.hg-v3-language-menu button {
    width: 100%;
    padding: 10px 12px;
    color: var(--hg3-muted);
    background: transparent;
    border: 0;
    border-radius: 6px;
    text-align: left;
    cursor: pointer;
}

.hg-v3-language-menu button:hover,
.hg-v3-language-menu button.is-active {
    color: var(--hg3-blue);
    background: var(--hg3-sky);
}

.hg-v3-quote {
    height: 44px;
    padding: 0 19px;
    color: #fff;
    background: var(--hg3-blue);
    border: 1px solid var(--hg3-blue);
    border-radius: 6px;
    font-family: "Roboto-SemiBold", Arial, sans-serif !important;
    font-size: 12px !important;
    letter-spacing: .03em;
    cursor: pointer;
    transition: .28s var(--hg3-ease);
}

.hg-v3-quote:hover {
    background: var(--hg3-blue-deep);
    border-color: var(--hg3-blue-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(22, 79, 224, .2);
}

.hg-v3-menu-button {
    width: 46px;
    height: 44px;
    display: none;
    place-content: center;
    gap: 6px;
    padding: 0;
    background: var(--hg3-navy);
    border: 0;
    border-radius: 6px;
    cursor: pointer;
}

.hg-v3-menu-button span {
    width: 18px;
    height: 1px;
    display: block;
    background: #fff;
    transition: .25s ease;
}

.hg-v3-header.menu-open .hg-v3-menu-button span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.hg-v3-header.menu-open .hg-v3-menu-button span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.hg-v3-drawer {
    position: fixed;
    z-index: -1;
    inset: 108px 0 0;
    visibility: hidden;
    opacity: 0;
    background: rgba(7, 26, 53, .34);
    transition: opacity .3s ease, visibility .3s ease;
}

.hg-v3-drawer-inner {
    width: min(520px, 100%);
    height: 100%;
    margin-left: auto;
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    background: #fff;
    transform: translateX(100%);
    transition: transform .4s var(--hg3-ease);
}

.hg-v3-header.menu-open .hg-v3-drawer {
    z-index: 4001;
    visibility: visible;
    opacity: 1;
}

.hg-v3-header.menu-open .hg-v3-drawer-inner {
    transform: translateX(0);
}

.hg-v3-drawer-nav {
    display: flex;
    flex-direction: column;
}

.hg-v3-drawer-nav > a,
.hg-v3-drawer-product-toggle {
    width: 100%;
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    padding: 17px 0;
    color: var(--hg3-ink) !important;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--hg3-line);
    font-family: "Roboto-SemiBold", Arial, sans-serif;
    font-size: clamp(24px, 5vw, 36px);
    line-height: 1;
    text-align: left;
    text-decoration: none !important;
    cursor: pointer;
}

.hg-v3-drawer-nav > a span,
.hg-v3-drawer-product-toggle > span {
    color: var(--hg3-blue);
    font-family: "Roboto-Regular", Arial, sans-serif;
    font-size: 10px;
}

.hg-v3-drawer-nav > a b,
.hg-v3-drawer-product-toggle > b {
    color: var(--hg3-muted);
    font-size: 16px;
}

.hg-v3-drawer-product-toggle > strong {
    font-weight: 600;
}

.hg-v3-drawer-product-toggle > b {
    transition: transform .25s ease;
}

.hg-v3-drawer-product.is-open .hg-v3-drawer-product-toggle > b {
    transform: rotate(45deg);
}

.hg-v3-drawer-product-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s var(--hg3-ease);
}

.hg-v3-drawer-product.is-open .hg-v3-drawer-product-panel {
    max-height: 1600px;
}

.hg-v3-drawer-product-group {
    border-bottom: 1px solid var(--hg3-line);
}

.hg-v3-drawer-product-group summary {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 2px 0 44px;
    color: #344159;
    font-family: "Roboto-Medium", Arial, sans-serif;
    font-size: 14px;
    list-style: none;
    cursor: pointer;
}

.hg-v3-drawer-product-group summary::-webkit-details-marker {
    display: none;
}

.hg-v3-drawer-product-group summary b {
    color: var(--hg3-blue);
    font-size: 15px;
    transition: transform .22s ease;
}

.hg-v3-drawer-product-group[open] summary b {
    transform: rotate(45deg);
}

.hg-v3-drawer-product-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 20px;
    padding: 0 0 12px 44px;
}

.hg-v3-drawer-product-links a {
    min-height: 38px;
    display: flex;
    align-items: center;
    padding: 7px 0;
    color: var(--hg3-muted) !important;
    border-bottom: 1px solid rgba(10, 23, 48, .07);
    font-size: 11px;
    line-height: 1.3;
    text-decoration: none !important;
}

.hg-v3-drawer-product-links a.is-family {
    color: var(--hg3-blue) !important;
    font-family: "Roboto-SemiBold", Arial, sans-serif;
}

.hg-v3-drawer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: auto;
    padding-top: 32px;
}

.hg-v3-drawer-meta a {
    color: var(--hg3-muted) !important;
    font-size: 13px;
    text-decoration: none !important;
}

/* Shared homepage typography and controls */
.hg-v3-home {
    padding-top: 108px;
}

.hg-v3-home h1,
.hg-v3-home h2,
.hg-v3-home h3,
.hg-v3-home p {
    margin-top: 0;
}

.hg-v3-home h1,
.hg-v3-home h2,
.hg-v3-home h3 {
    color: inherit;
    font-family: "Roboto-SemiBold", "Helvetica Neue", Arial, sans-serif !important;
    letter-spacing: -.045em;
}

.hg-v3-home h2 {
    margin-bottom: 0;
    font-size: clamp(42px, 5.4vw, 82px);
    line-height: .98;
}

.hg-v3-home em {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -.055em;
}

.hg-v3-kicker {
    display: block;
    margin-bottom: 22px;
    color: var(--hg3-blue);
    font-family: "Roboto-SemiBold", Arial, sans-serif;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.hg-v3-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border-radius: 5px;
    font-family: "Roboto-SemiBold", Arial, sans-serif !important;
    font-size: 13px !important;
    letter-spacing: .02em;
    text-decoration: none !important;
    cursor: pointer;
    transition: transform .28s var(--hg3-ease), background .28s ease, border-color .28s ease, color .28s ease, box-shadow .28s ease;
}

.hg-v3-button:hover {
    transform: translateY(-3px);
}

.hg-v3-button-light {
    color: var(--hg3-ink) !important;
    background: #fff;
    border: 1px solid #fff;
}

.hg-v3-button-light:hover {
    color: var(--hg3-blue) !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .16);
}

.hg-v3-button-ghost {
    color: #fff;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .42);
}

.hg-v3-button-ghost:hover {
    background: rgba(255, 255, 255, .12);
    border-color: #fff;
}

.hg-v3-button-blue {
    color: #fff !important;
    background: var(--hg3-blue);
    border: 1px solid var(--hg3-blue);
}

.hg-v3-button-blue:hover {
    background: var(--hg3-blue-deep);
    border-color: var(--hg3-blue-deep);
    box-shadow: 0 16px 34px rgba(22, 79, 224, .24);
}

.hg-v3-text-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--hg3-ink) !important;
    border-bottom: 1px solid var(--hg3-ink);
    font-family: "Roboto-SemiBold", Arial, sans-serif;
    font-size: 13px;
    text-decoration: none !important;
}

.hg-v3-text-link span {
    color: var(--hg3-blue);
    transition: transform .25s ease;
}

.hg-v3-text-link:hover span {
    transform: translate(3px, -3px);
}

.hg-v3-section-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    align-items: end;
    gap: 60px;
    margin-bottom: clamp(42px, 6vw, 80px);
}

.hg-v3-section-intro .hg-v3-section-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.hg-v3-section-intro p {
    margin-bottom: 0;
    color: var(--hg3-muted);
    font-size: 16px;
    line-height: 1.75;
}

/* Hero */
.hg-v3-hero {
    position: relative;
    min-height: max(700px, calc(100svh - 108px));
    display: flex;
    align-items: stretch;
    overflow: hidden;
    color: #fff;
    background-color: var(--hg3-navy);
    background-image: var(--hg-hero-image);
    background-position: center 54%;
    background-size: cover;
    background-repeat: no-repeat;
}

.hg-v3-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 17, 36, .94) 0%, rgba(4, 17, 36, .7) 43%, rgba(4, 17, 36, .18) 74%, rgba(4, 17, 36, .28) 100%),
        linear-gradient(0deg, rgba(4, 17, 36, .58), transparent 52%);
}

.hg-v3-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .17;
    background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
    background-size: 96px 96px;
    -webkit-mask-image: linear-gradient(90deg, #000, transparent 70%);
    mask-image: linear-gradient(90deg, #000, transparent 70%);
}

.hg-v3-hero-inner {
    position: relative;
    z-index: 2;
    min-height: inherit;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 335px;
    align-items: end;
    gap: 70px;
    padding-top: clamp(100px, 13vh, 160px);
    padding-bottom: clamp(110px, 13vh, 145px);
}

.hg-v3-hero-copy {
    max-width: 900px;
}

.hg-v3-hero-label {
    margin-bottom: 27px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, .78);
    font-family: "Roboto-SemiBold", Arial, sans-serif;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.hg-v3-hero-label::before {
    content: "";
    width: 31px;
    height: 2px;
    background: var(--hg3-red);
}

.hg-v3-hero h1 {
    max-width: 900px;
    margin-bottom: 29px;
    color: #fff;
    font-size: clamp(56px, 6.4vw, 106px);
    line-height: .89;
    text-wrap: balance;
}

.hg-v3-hero h1 em {
    color: #fff;
    font-size: .85em;
}

.hg-v3-hero-copy > p {
    max-width: 620px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, .76);
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.65;
}

.hg-v3-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hg-v3-hero-card {
    margin-bottom: 4px;
    padding: 27px;
    color: #fff;
    background: rgba(7, 26, 53, .74);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 4px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hg-v3-hero-card > span {
    display: block;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .58);
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hg-v3-hero-card > div {
    display: grid;
    grid-template-columns: 36px 1fr;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.hg-v3-hero-card b {
    color: #82a7ff;
    font-family: "Roboto-Regular", Arial, sans-serif;
    font-size: 10px;
    font-weight: 400;
}

.hg-v3-hero-card p {
    margin: 0;
    font-family: "Roboto-Medium", Arial, sans-serif;
    font-size: 14px;
}

.hg-v3-hero-card > a {
    margin-top: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 15px;
    color: #fff !important;
    background: var(--hg3-blue);
    border-radius: 3px;
    font-family: "Roboto-SemiBold", Arial, sans-serif;
    font-size: 12px;
    text-decoration: none !important;
}

.hg-v3-hero-card i {
    font-style: normal;
}

.hg-v3-scroll-cue {
    position: absolute;
    z-index: 2;
    left: 32px;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(255, 255, 255, .48);
    font-size: 9px;
    letter-spacing: .16em;
    text-transform: uppercase;
    transform: rotate(-90deg) translateY(100%);
    transform-origin: bottom left;
}

.hg-v3-scroll-cue span {
    width: 42px;
    height: 1px;
    background: rgba(255, 255, 255, .45);
}

/* Principles */
.hg-v3-principles {
    padding: clamp(96px, 9vw, 150px) 0;
    background: #fff;
}

.hg-v3-statement {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
    align-items: end;
    gap: 80px;
    padding-bottom: clamp(60px, 7vw, 100px);
    border-bottom: 1px solid var(--hg3-line);
}

.hg-v3-statement .hg-v3-kicker {
    grid-column: 1 / -1;
    margin-bottom: -45px;
}

.hg-v3-statement h2 {
    font-size: clamp(46px, 5.3vw, 80px);
}

.hg-v3-statement h2 em {
    color: var(--hg3-blue);
}

.hg-v3-statement > p {
    margin-bottom: 7px;
    color: var(--hg3-muted);
    font-size: 17px;
    line-height: 1.8;
}

.hg-v3-principle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.hg-v3-principle {
    min-height: 260px;
    padding: 42px clamp(24px, 3vw, 50px) 10px 0;
}

.hg-v3-principle + .hg-v3-principle {
    padding-left: clamp(24px, 3vw, 50px);
    border-left: 1px solid var(--hg3-line);
}

.hg-v3-principle > span {
    color: var(--hg3-blue);
    font-size: 11px;
}

.hg-v3-principle h3 {
    margin: 54px 0 14px;
    font-size: clamp(24px, 2vw, 31px);
    line-height: 1.1;
}

.hg-v3-principle p {
    max-width: 335px;
    margin-bottom: 0;
    color: var(--hg3-muted);
    font-size: 14px;
    line-height: 1.75;
}

/* Product bento */
.hg-v3-products {
    padding: clamp(90px, 9vw, 145px) 0;
    background: var(--hg3-paper);
}

.hg-v3-product-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.hg-v3-product-card {
    position: relative;
    min-height: 365px;
    display: block;
    overflow: hidden;
    color: #fff !important;
    background: var(--hg3-navy);
    border-radius: 4px;
    text-decoration: none !important;
}

.hg-v3-product-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(4, 17, 36, .94), rgba(4, 17, 36, .12) 72%);
    transition: background .35s ease;
}

.hg-v3-product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .75s var(--hg3-ease), filter .4s ease;
}

.hg-v3-product-card:hover img {
    transform: scale(1.045);
    filter: saturate(1.08);
}

.hg-v3-product-card:hover::after {
    background: linear-gradient(0deg, rgba(4, 17, 36, .98), rgba(4, 17, 36, .04) 78%);
}

.hg-v3-product-content {
    position: absolute;
    z-index: 2;
    inset: auto 0 0;
    padding: clamp(24px, 3vw, 38px);
}

.hg-v3-product-content > span {
    display: block;
    margin-bottom: 10px;
    color: #91afff;
    font-size: 10px;
    letter-spacing: .14em;
}

.hg-v3-product-content h3 {
    max-width: 520px;
    margin-bottom: 10px;
    color: #fff;
    font-size: clamp(27px, 3vw, 45px);
    line-height: 1.02;
}

.hg-v3-product-content p {
    max-width: 480px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .65);
    font-size: 13px;
}

.hg-v3-product-content > b {
    position: absolute;
    right: 30px;
    bottom: 30px;
    display: flex;
    gap: 9px;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: .28s ease;
}

.hg-v3-product-content > b i {
    color: #91afff;
    font-style: normal;
}

.hg-v3-product-card:hover .hg-v3-product-content > b {
    opacity: 1;
    transform: translateY(0);
}

.hg-v3-product-1 {
    grid-column: span 7;
    min-height: 580px;
}

.hg-v3-product-2 {
    grid-column: span 5;
    min-height: 580px;
}

.hg-v3-product-3,
.hg-v3-product-4,
.hg-v3-product-5 {
    grid-column: span 4;
}

.hg-v3-product-6 {
    grid-column: 1 / -1;
    min-height: 430px;
}

.hg-v3-product-3 h3,
.hg-v3-product-4 h3,
.hg-v3-product-5 h3 {
    font-size: clamp(24px, 2.3vw, 34px);
}

/* Capability split */
.hg-v3-capability {
    min-height: 760px;
    display: grid;
    grid-template-columns: 54% 46%;
    color: #fff;
    background: var(--hg3-navy);
}

.hg-v3-capability-media {
    position: relative;
    min-height: 700px;
    overflow: hidden;
}

.hg-v3-capability-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 60%, var(--hg3-navy)), linear-gradient(0deg, rgba(7, 26, 53, .2), transparent);
}

.hg-v3-capability-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hg-v3-capability-copy {
    display: flex;
    align-items: center;
    padding: clamp(65px, 8vw, 130px) max(40px, calc((100vw - 1480px) / 2));
    padding-left: clamp(52px, 6vw, 105px);
}

.hg-v3-capability-copy-inner {
    width: min(100%, 560px);
}

.hg-v3-capability .hg-v3-kicker {
    color: #8daeff;
}

.hg-v3-capability h2 {
    margin-bottom: 28px;
    color: #fff;
    font-size: clamp(42px, 4.5vw, 70px);
}

.hg-v3-capability-copy-inner > p {
    max-width: 510px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, .65);
    font-size: 16px;
    line-height: 1.75;
}

.hg-v3-capability-list {
    margin-bottom: 34px;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.hg-v3-capability-list > div {
    display: grid;
    grid-template-columns: 46px 1fr;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.hg-v3-capability-list span {
    color: #8daeff;
    font-size: 10px;
}

.hg-v3-capability-list b {
    font-size: 14px;
    font-weight: 500;
}

/* Projects */
.hg-v3-projects {
    padding: clamp(92px, 9vw, 145px) 0;
    background: #fff;
}

.hg-v3-project-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.hg-v3-project-card {
    position: relative;
    min-height: 330px;
    grid-column: span 6;
    display: block;
    overflow: hidden;
    color: #fff !important;
    background: var(--hg3-navy);
    border-radius: 4px;
    text-decoration: none !important;
}

.hg-v3-project-1 {
    min-height: 620px;
    grid-column: span 7;
    grid-row: span 2;
}

.hg-v3-project-2,
.hg-v3-project-3 {
    min-height: 301px;
    grid-column: span 5;
}

.hg-v3-project-4,
.hg-v3-project-5 {
    min-height: 380px;
    grid-column: span 6;
}

.hg-v3-project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(4, 17, 36, .92), transparent 66%);
}

.hg-v3-project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .75s var(--hg3-ease);
}

.hg-v3-project-card:hover img {
    transform: scale(1.045);
}

.hg-v3-project-card > div {
    position: absolute;
    z-index: 2;
    inset: auto 0 0;
    padding: clamp(23px, 2.7vw, 36px);
}

.hg-v3-project-card span {
    display: block;
    margin-bottom: 8px;
    color: #91afff;
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.hg-v3-project-card h3 {
    max-width: 600px;
    margin-bottom: 0;
    color: #fff;
    font-size: clamp(23px, 2.2vw, 34px);
    line-height: 1.12;
}

.hg-v3-project-card b {
    position: absolute;
    right: 32px;
    bottom: 35px;
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    opacity: 0;
    transition: opacity .28s ease;
}

.hg-v3-project-card b i {
    color: #91afff;
    font-style: normal;
}

.hg-v3-project-card:hover b {
    opacity: 1;
}

/* News */
.hg-v3-news {
    padding: clamp(90px, 8vw, 130px) 0;
    background: var(--hg3-paper);
}

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

.hg-v3-news-card {
    display: block;
    color: var(--hg3-ink) !important;
    text-decoration: none !important;
}

.hg-v3-news-picture {
    aspect-ratio: 1.42;
    overflow: hidden;
    background: #dfe5ee;
    border-radius: 4px;
}

.hg-v3-news-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s var(--hg3-ease);
}

.hg-v3-news-card:hover img {
    transform: scale(1.045);
}

.hg-v3-news-body {
    position: relative;
    padding: 24px 42px 0 0;
}

.hg-v3-news-body > span {
    color: var(--hg3-blue);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hg-v3-news-body h3 {
    margin: 11px 0 0;
    font-size: clamp(20px, 1.65vw, 27px);
    line-height: 1.2;
}

.hg-v3-news-body b {
    display: inline-flex;
    gap: 8px;
    margin-top: 21px;
    color: var(--hg3-muted);
    font-size: 11px;
    font-weight: 500;
}

.hg-v3-news-body b i {
    color: var(--hg3-blue);
    font-style: normal;
}

/* CTA */
.hg-v3-cta {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--hg3-blue);
}

.hg-v3-cta::before {
    content: "";
    position: absolute;
    width: 660px;
    height: 660px;
    right: -160px;
    top: -340px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    box-shadow: 0 0 0 90px rgba(255,255,255,.025), 0 0 0 180px rgba(255,255,255,.02);
}

.hg-v3-cta-inner {
    position: relative;
    z-index: 1;
    min-height: 500px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
    align-items: center;
    gap: 80px;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hg-v3-cta .hg-v3-kicker {
    color: rgba(255, 255, 255, .65);
}

.hg-v3-cta h2 {
    color: #fff;
}

.hg-v3-cta-side p {
    max-width: 440px;
    margin-bottom: 27px;
    color: rgba(255, 255, 255, .76);
    font-size: 17px;
    line-height: 1.75;
}

/* Footer */
.hg-v3-footer {
    color: #fff;
    background: #05152b;
}

.hg-v3-footer-top {
    display: grid;
    grid-template-columns: minmax(280px, 1.2fr) 1fr minmax(265px, .8fr);
    gap: clamp(50px, 7vw, 110px);
    padding: 85px 0 70px;
}

.hg-v3-footer-brand > a {
    display: inline-flex;
    flex-direction: column;
    color: #fff !important;
    text-decoration: none !important;
}

.hg-v3-footer-brand strong {
    font-family: "Roboto-SemiBold", Arial, sans-serif;
    font-size: 30px;
    line-height: 1;
    letter-spacing: .08em;
}

.hg-v3-footer-brand a span {
    margin-top: 7px;
    color: #8098c5;
    font-size: 8px;
    letter-spacing: .31em;
}

.hg-v3-footer-brand p {
    max-width: 320px;
    margin: 29px 0 0;
    color: rgba(255, 255, 255, .5);
    font-size: 13px;
    line-height: 1.75;
}

.hg-v3-footer-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
}

.hg-v3-footer-columns > div,
.hg-v3-footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.hg-v3-footer-columns span,
.hg-v3-footer-contact > span {
    margin-bottom: 14px;
    color: #8098c5;
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.hg-v3-footer-columns a {
    color: rgba(255, 255, 255, .72) !important;
    font-size: 13px;
    text-decoration: none !important;
}

.hg-v3-footer-columns a:hover,
.hg-v3-footer-contact a:hover {
    color: #fff !important;
}

.hg-v3-footer-contact a {
    color: #fff !important;
    font-family: "Roboto-Medium", Arial, sans-serif;
    font-size: clamp(16px, 1.3vw, 20px);
    text-decoration: none !important;
}

.hg-v3-footer-contact p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .45);
    font-size: 12px;
}

.hg-v3-footer-bottom {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, .38);
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 10px;
    letter-spacing: .04em;
}

/* Compact action dock */
.hg-v3-dock {
    display: none !important;
}

body.hg-v3-page-home .hg-v3-dock {
    display: none;
}

.hg-v3-dock button,
.hg-v3-dock > a {
    height: 48px;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
}

.hg-v3-dock button {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 17px;
    color: #fff;
    background: var(--hg3-blue);
    font-family: "Roboto-SemiBold", Arial, sans-serif !important;
    font-size: 11px !important;
}

.hg-v3-dock button:hover {
    background: var(--hg3-blue-deep);
}

.hg-v3-dock button b {
    font-weight: 400;
}

.hg-v3-dock > a {
    width: 48px;
    display: grid;
    place-items: center;
    color: #fff !important;
    background: #20aa64;
    font-family: "Roboto-SemiBold", Arial, sans-serif;
    text-decoration: none !important;
}

/* Subpage system */
body.hg-v3:not(.hg-v3-page-home) {
    padding-top: 108px;
    background: #fff;
}

body.hg-v3:not(.hg-v3-page-home) .sub_banner_pro {
    position: relative !important;
    min-height: clamp(340px, 34vw, 520px) !important;
    height: auto !important;
    display: block !important;
    overflow: hidden;
    color: #fff !important;
    background-color: var(--hg3-navy) !important;
}

body.hg-v3:not(.hg-v3-page-home) .sub_banner_pro::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 17, 36, .9), rgba(4, 17, 36, .26) 75%), linear-gradient(0deg, rgba(4,17,36,.52), transparent 65%);
}

body.hg-v3:not(.hg-v3-page-home) .sub_banner_ind {
    text-align: left !important;
}

body.hg-v3:not(.hg-v3-page-home) .sub_banner_ind .fz24,
body.hg-v3:not(.hg-v3-page-home) .sub_banner_ind .lh15 {
    max-width: 900px;
}

body.hg-v3:not(.hg-v3-page-home) .sub_banner_pro1_con .colorm {
    color: #9ab5ff !important;
}

body.hg-v3:not(.hg-v3-page-home) .sub_banner_pro > .wrapper {
    position: relative;
    z-index: 2;
    width: var(--hg3-shell) !important;
    max-width: none !important;
    margin-inline: auto !important;
    padding-top: clamp(170px, 21vw, 310px) !important;
    padding-bottom: clamp(48px, 6vw, 80px) !important;
}

body.hg-v3:not(.hg-v3-page-home) .sub_banner_pro > .location {
    position: absolute !important;
    z-index: 3 !important;
    inset: auto 0 0 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 0 26px !important;
}

body.hg-v3:not(.hg-v3-page-home) .sub_banner_pro > .location > * {
    width: var(--hg3-shell) !important;
    max-width: 1480px !important;
    margin-inline: auto !important;
}

body.hg-v3:not(.hg-v3-page-home) .sub_banner_pro > .location a,
body.hg-v3:not(.hg-v3-page-home) .sub_banner_pro > .location span,
body.hg-v3:not(.hg-v3-page-home) .sub_banner_pro > .location .icon {
    color: rgba(255, 255, 255, .72) !important;
    text-decoration: none !important;
}

body.hg-v3:not(.hg-v3-page-home) .sub_banner_pro > .sub_banner_pro1_con {
    position: absolute !important;
    z-index: 2 !important;
    inset: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
}

body.hg-v3:not(.hg-v3-page-home) .sub_banner_pro > .sub_banner_pro1_con3 {
    display: flex !important;
    align-items: center !important;
    padding-bottom: 32px !important;
}

body.hg-v3:not(.hg-v3-page-home) .sub_banner_pro > .sub_banner_scroll {
    position: absolute !important;
    z-index: 0 !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.hg-v3:not(.hg-v3-page-home) .hg-v3-sub-kicker {
    display: block;
    margin-bottom: 15px;
    color: #9ab5ff;
    font-family: "Roboto-SemiBold", Arial, sans-serif;
    font-size: 9px;
    letter-spacing: .2em;
    text-transform: uppercase;
}

body.hg-v3:not(.hg-v3-page-home) .sub_banner_pro h1 {
    max-width: 950px;
    margin: 0 !important;
    color: #fff !important;
    font-family: "Roboto-SemiBold", Arial, sans-serif !important;
    font-size: clamp(44px, 6vw, 88px) !important;
    line-height: .98 !important;
    letter-spacing: -.055em !important;
    text-transform: none !important;
}

body.hg-v3:not(.hg-v3-page-home) .wrapper {
    width: var(--hg3-shell) !important;
    max-width: 1480px !important;
    margin-inline: auto !important;
}

body.hg-v3:not(.hg-v3-page-home) .wow {
    visibility: visible !important;
    animation-name: none !important;
}

body.hg-v3:not(.hg-v3-page-home) .indus_list {
    display: grid !important;
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
    gap: 0 !important;
    margin-bottom: clamp(58px, 6vw, 92px) !important;
    padding: 7px !important;
    overflow: hidden;
    background: var(--hg3-paper);
    border: 1px solid var(--hg3-line);
    border-radius: 7px;
}

body.hg-v3:not(.hg-v3-page-home) .indus_list .item {
    min-height: 66px;
    padding: 10px 14px;
    color: #3e4a60 !important;
    background: transparent !important;
    border: 0 !important;
    border-right: 1px solid var(--hg3-line) !important;
    border-radius: 4px !important;
    box-shadow: none !important;
    font-family: "Roboto-Medium", Arial, sans-serif;
    font-size: 13px !important;
    line-height: 1.25;
    text-decoration: none !important;
    transition: color .25s ease, background-color .25s ease, transform .25s ease;
}

body.hg-v3:not(.hg-v3-page-home) .indus_list .item:last-child {
    border-right: 0 !important;
}

body.hg-v3:not(.hg-v3-page-home) .indus_list .item:hover,
body.hg-v3:not(.hg-v3-page-home) .indus_list .item.is-current {
    color: #fff !important;
    background: var(--hg3-navy) !important;
    transform: translateY(-1px);
}

body.hg-v3:not(.hg-v3-page-home) .ptb {
    padding-top: clamp(72px, 7vw, 116px) !important;
    padding-bottom: clamp(72px, 7vw, 116px) !important;
}

body.hg-v3:not(.hg-v3-page-home) .pt {
    padding-top: clamp(72px, 7vw, 116px) !important;
}

body.hg-v3:not(.hg-v3-page-home) .pb {
    padding-bottom: clamp(72px, 7vw, 116px) !important;
}

body.hg-v3:not(.hg-v3-page-home) .bgf5 {
    background: var(--hg3-paper) !important;
}

body.hg-v3:not(.hg-v3-page-home) .pro1_box1 > .wrapper > .lh15,
body.hg-v3:not(.hg-v3-page-home) .ind_title1_text {
    max-width: 1040px;
    font-size: 17px !important;
    line-height: 1.85 !important;
}

body.hg-v3:not(.hg-v3-page-home) .pro1_box3_list_item {
    margin-bottom: 22px;
    overflow: hidden;
    border: 1px solid var(--hg3-line);
    border-radius: 7px !important;
}

body.hg-v3:not(.hg-v3-page-home) .pro1_box3_list_item_con {
    padding: clamp(28px, 4vw, 62px) !important;
}

body.hg-v3:not(.hg-v3-page-home) .pro1_box2_scroll_item,
body.hg-v3:not(.hg-v3-page-home) .pro1_box1_clm1_item,
body.hg-v3:not(.hg-v3-page-home) .news_list1_item {
    overflow: hidden;
    background: #fff !important;
    border: 1px solid var(--hg3-line) !important;
    border-radius: 7px !important;
    box-shadow: 0 18px 46px rgba(7, 26, 53, .07);
}

body.hg-v3:not(.hg-v3-page-home) .contact_box1_con_r,
body.hg-v3:not(.hg-v3-page-home) .pro1_form_box {
    border-radius: 7px !important;
    box-shadow: var(--hg3-shadow);
}

body.hg-v3:not(.hg-v3-page-home) h1,
body.hg-v3:not(.hg-v3-page-home) h2,
body.hg-v3:not(.hg-v3-page-home) h3,
body.hg-v3:not(.hg-v3-page-home) h4,
body.hg-v3:not(.hg-v3-page-home) .fmb,
body.hg-v3:not(.hg-v3-page-home) .fmbr {
    font-family: "Roboto-SemiBold", "Helvetica Neue", Arial, sans-serif !important;
    letter-spacing: -.03em;
}

body.hg-v3:not(.hg-v3-page-home) h2.fz48,
body.hg-v3:not(.hg-v3-page-home) .ind_title1_tt1,
body.hg-v3:not(.hg-v3-page-home) .sub_tilte_l h2,
body.hg-v3:not(.hg-v3-page-home) .sub_tilte_l .fz48 {
    color: var(--hg3-ink) !important;
    font-size: clamp(36px, 4vw, 62px) !important;
    line-height: 1.02 !important;
    letter-spacing: -.045em !important;
    text-transform: none !important;
}

body.hg-v3:not(.hg-v3-page-home) .ind_title1_tt2 {
    color: var(--hg3-blue) !important;
    font-size: clamp(16px, 1.5vw, 22px) !important;
    letter-spacing: -.01em;
    text-transform: none !important;
}

body.hg-v3:not(.hg-v3-page-home) .ind_title1_text,
body.hg-v3:not(.hg-v3-page-home) .color6,
body.hg-v3:not(.hg-v3-page-home) [class*="_text"] {
    color: var(--hg3-muted) !important;
}

body.hg-v3:not(.hg-v3-page-home) [class*="_list_item"] {
    border-radius: 4px !important;
}

body.hg-v3:not(.hg-v3-page-home) [class*="_list_item"] img {
    transition: transform .65s var(--hg3-ease);
}

body.hg-v3:not(.hg-v3-page-home) [class*="_list_item"]:hover img {
    transform: scale(1.035);
}

body.hg-v3:not(.hg-v3-page-home) .public_btn1,
body.hg-v3:not(.hg-v3-page-home) [class*="_btn"] {
    border-radius: 5px !important;
}

body.hg-v3:not(.hg-v3-page-home) .public_btn1:not(.public_btn_out_line),
body.hg-v3:not(.hg-v3-page-home) input[type="submit"] {
    color: #fff !important;
    background: var(--hg3-blue) !important;
    border-color: var(--hg3-blue) !important;
}

body.hg-v3:not(.hg-v3-page-home) .public_btn_out_line {
    color: var(--hg3-blue) !important;
    border-color: rgba(22, 79, 224, .45) !important;
}

.hg-v3-table-scroll {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--hg3-line);
    border-radius: 4px;
}

.hg-v3-table-scroll table {
    min-width: 720px;
    border: 0 !important;
}

.hg-v3-table-scroll th {
    color: #fff !important;
    background: var(--hg3-navy) !important;
}

.hg-v3-table-scroll td,
.hg-v3-table-scroll th {
    padding: 14px 17px !important;
    border-color: var(--hg3-line) !important;
}

/* Inquiry modal is retained, but visually brought into V3. */
body.hg-v3 .open_window {
    z-index: 9000 !important;
}

body.hg-v3 .open_window_mask {
    background: rgba(4, 17, 36, .76) !important;
    backdrop-filter: blur(7px);
}

body.hg-v3 .open_window_con_rela {
    overflow: hidden;
    border-radius: 8px !important;
    box-shadow: 0 34px 90px rgba(4, 17, 36, .32);
}

body.hg-v3 .open_window_r {
    background: #fff !important;
}

body.hg-v3 .open_window input,
body.hg-v3 .open_window textarea,
body.hg-v3 .open_window select {
    border-radius: 4px !important;
    border-color: rgba(10, 23, 48, .17) !important;
}

body.hg-v3 .open_window input:focus,
body.hg-v3 .open_window textarea:focus {
    border-color: var(--hg3-blue) !important;
    box-shadow: 0 0 0 3px rgba(22, 79, 224, .1) !important;
}

body.hg-v3 .open_window input[type="submit"] {
    color: #fff !important;
    background: var(--hg3-blue) !important;
    border-color: var(--hg3-blue) !important;
}

/* Motion */
.hg-v3-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .72s var(--hg3-ease), transform .72s var(--hg3-ease);
}

.hg-v3-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html.hg-v3-active { scroll-behavior: auto; }
    .hg-v3-reveal { opacity: 1; transform: none; transition: none; }
    .hg-v3-product-card img,
    .hg-v3-project-card img,
    .hg-v3-news-picture img { transition: none; }
}

@media (max-width: 1180px) {
    :root { --hg3-shell: min(100% - 48px, 1480px); }
    .hg-v3-primary { display: none; }
    .hg-v3-menu-button { display: grid; }
    .hg-v3-hero-inner { grid-template-columns: minmax(0, 1fr) 305px; gap: 40px; }
    .hg-v3-product-content > b,
    .hg-v3-project-card b { display: none; }
    .hg-v3-capability { grid-template-columns: 50% 50%; }
    .hg-v3-capability-copy { padding-right: 40px; }
}

@media (max-width: 900px) {
    :root { --hg3-shell: min(100% - 38px, 1480px); }
    .hg-v3-topline { display: none; }
    .hg-v3-nav { height: 72px; }
    .hg-v3-brand { width: 174px; }
    .hg-v3-header .hg-v3-quote { display: none; }
    .hg-v3-drawer { inset-top: 72px; inset: 72px 0 0; }
    .hg-v3-home { padding-top: 72px; }
    body.hg-v3:not(.hg-v3-page-home) { padding-top: 72px; }
    .hg-v3-hero { min-height: 760px; }
    .hg-v3-hero-inner { grid-template-columns: 1fr; align-items: end; gap: 28px; padding-top: 110px; padding-bottom: 78px; }
    .hg-v3-hero-card { display: none; }
    .hg-v3-scroll-cue { display: none; }
    .hg-v3-section-intro,
    .hg-v3-statement,
    .hg-v3-cta-inner { grid-template-columns: 1fr; gap: 34px; }
    .hg-v3-statement .hg-v3-kicker { margin-bottom: -8px; }
    .hg-v3-principle-grid { grid-template-columns: 1fr; }
    .hg-v3-principle { min-height: auto; padding: 30px 0; }
    .hg-v3-principle + .hg-v3-principle { padding-left: 0; border-left: 0; border-top: 1px solid var(--hg3-line); }
    .hg-v3-principle h3 { margin-top: 25px; }
    .hg-v3-product-1,
    .hg-v3-product-2 { grid-column: span 6; min-height: 500px; }
    .hg-v3-product-3,
    .hg-v3-product-4,
    .hg-v3-product-5 { grid-column: span 6; }
    .hg-v3-product-6 { grid-column: span 6; min-height: 365px; }
    .hg-v3-capability { grid-template-columns: 1fr; }
    .hg-v3-capability-media { min-height: 500px; }
    .hg-v3-capability-media::after { background: linear-gradient(0deg, var(--hg3-navy), transparent 55%); }
    .hg-v3-capability-copy { padding: 30px 24px 85px; }
    .hg-v3-capability-copy-inner { width: var(--hg3-shell); margin: 0 auto; }
    .hg-v3-project-1,
    .hg-v3-project-2,
    .hg-v3-project-3,
    .hg-v3-project-4,
    .hg-v3-project-5 { min-height: 390px; grid-column: span 6; grid-row: auto; }
    .hg-v3-news-grid { grid-template-columns: 1fr 1fr; }
    .hg-v3-news-card:last-child { grid-column: 1 / -1; }
    .hg-v3-footer-top { grid-template-columns: 1fr 1fr; }
    .hg-v3-footer-brand { grid-column: 1 / -1; }
    body.hg-v3:not(.hg-v3-page-home) .sub_banner_pro { min-height: 380px !important; }
    body.hg-v3:not(.hg-v3-page-home) .indus_list { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    body.hg-v3:not(.hg-v3-page-home) .indus_list .item { border-right: 0 !important; border-bottom: 1px solid var(--hg3-line) !important; }
}

@media (max-width: 640px) {
    :root { --hg3-shell: calc(100% - 30px); }
    .hg-v3-nav { height: 68px; }
    .hg-v3-brand { width: 154px; }
    .hg-v3-language-trigger { min-width: 44px; padding: 0 6px; }
    .hg-v3-menu-button { width: 43px; }
    .hg-v3-drawer { inset: 68px 0 0; }
    .hg-v3-drawer-inner { padding: 28px 22px 96px; }
    .hg-v3-drawer-nav > a,
    .hg-v3-drawer-product-toggle { grid-template-columns: 34px 1fr auto; padding: 15px 0; }
    .hg-v3-drawer-product-group summary { padding-left: 34px; }
    .hg-v3-drawer-product-links { grid-template-columns: 1fr; padding-left: 34px; }
    .hg-v3-drawer-meta { flex-direction: column; }
    .hg-v3-home { padding-top: 68px; }
    body.hg-v3:not(.hg-v3-page-home) { padding-top: 68px; }
    .hg-v3-home h2 { font-size: clamp(38px, 12.5vw, 56px); }
    .hg-v3-hero { min-height: max(680px, calc(100svh - 68px)); background-position: 60% center; }
    .hg-v3-hero::before { background: linear-gradient(90deg, rgba(4,17,36,.94), rgba(4,17,36,.48)), linear-gradient(0deg, rgba(4,17,36,.72), transparent 60%); }
    .hg-v3-hero::after { background-size: 60px 60px; }
    .hg-v3-hero-inner { padding-top: 105px; padding-bottom: 54px; }
    .hg-v3-hero-label { margin-bottom: 20px; }
    .hg-v3-hero h1 { margin-bottom: 22px; font-size: clamp(48px, 15.5vw, 72px); line-height: .92; }
    .hg-v3-hero h1 em { font-size: .76em; }
    .hg-v3-hero-copy > p { margin-bottom: 27px; font-size: 15px; }
    .hg-v3-hero-actions { flex-direction: column; align-items: stretch; }
    .hg-v3-hero-actions .hg-v3-button { width: 100%; }
    .hg-v3-principles,
    .hg-v3-products,
    .hg-v3-projects,
    .hg-v3-news { padding: 74px 0; }
    .hg-v3-statement { padding-bottom: 48px; }
    .hg-v3-statement > p { font-size: 15px; }
    .hg-v3-section-intro { margin-bottom: 38px; }
    .hg-v3-product-grid,
    .hg-v3-project-grid { gap: 12px; }
    .hg-v3-product-1,
    .hg-v3-product-2,
    .hg-v3-product-3,
    .hg-v3-product-4,
    .hg-v3-product-5,
    .hg-v3-product-6 { grid-column: 1 / -1; min-height: 410px; }
    .hg-v3-product-content { padding: 24px; }
    .hg-v3-product-content h3 { font-size: 31px; }
    .hg-v3-capability-media { min-height: 360px; }
    .hg-v3-capability-copy { padding: 10px 0 72px; }
    .hg-v3-capability h2 { font-size: 42px; }
    .hg-v3-project-1,
    .hg-v3-project-2,
    .hg-v3-project-3,
    .hg-v3-project-4,
    .hg-v3-project-5 { grid-column: 1 / -1; min-height: 360px; }
    .hg-v3-project-card > div { padding: 24px; }
    .hg-v3-project-card h3 { font-size: 25px; }
    .hg-v3-news-grid { grid-template-columns: 1fr; gap: 42px; }
    .hg-v3-news-card:last-child { grid-column: auto; }
    .hg-v3-cta-inner { min-height: 500px; padding: 72px 0; }
    .hg-v3-cta-side p { font-size: 15px; }
    .hg-v3-footer-top { grid-template-columns: 1fr; gap: 45px; padding: 68px 0 50px; }
    .hg-v3-footer-brand { grid-column: auto; }
    .hg-v3-footer-columns { max-width: 360px; }
    .hg-v3-footer-bottom { min-height: 90px; align-items: flex-start; justify-content: center; flex-direction: column; }
    .hg-v3-footer-bottom span:last-child { display: none; }
    .hg-v3-dock { display: none; }
    body.hg-v3:not(.hg-v3-page-home) .sub_banner_pro { min-height: 320px !important; }
    body.hg-v3:not(.hg-v3-page-home) .sub_banner_pro > .wrapper { padding-bottom: 38px !important; }
    body.hg-v3:not(.hg-v3-page-home) .sub_banner_pro h1 { font-size: 43px !important; }
    body.hg-v3:not(.hg-v3-page-home) .indus_list { display: flex !important; overflow-x: auto; padding: 6px !important; scroll-snap-type: x proximity; }
    body.hg-v3:not(.hg-v3-page-home) .indus_list .item { min-width: 190px; border-bottom: 0 !important; scroll-snap-align: start; }
}
