@font-face {
    font-family: "Noto Sans KR";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url("/fonts/noto-sans-kr/noto-sans-kr-korean-300-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Noto Sans KR";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/fonts/noto-sans-kr/noto-sans-kr-korean-400-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Noto Sans KR";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("/fonts/noto-sans-kr/noto-sans-kr-korean-500-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Noto Sans KR";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("/fonts/noto-sans-kr/noto-sans-kr-korean-600-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Noto Sans KR";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/fonts/noto-sans-kr/noto-sans-kr-korean-700-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Noto Sans KR";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url("/fonts/noto-sans-kr/noto-sans-kr-korean-800-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Noto Sans KR";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("/fonts/noto-sans-kr/noto-sans-kr-korean-900-normal.woff2") format("woff2");
}

:root {
    --font-ui: "Noto Sans KR", "AppleSDGothicNeoB00", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
    --bg: #f4f6f8;
    --panel: #ffffff;
    --line: #d5dce5;
    --line-strong: #b6c2d3;
    --text: #2f3a4a;
    --muted: #5a677a;
    --primary: #1E5EFF;
    --primary-dark: #174bd1;
    --accent: #7fb3ff;
    --secondary: #14213d;
    --base: #ffffff;
    --gap: 16px;
    --radius: 8px;
    --max: 1200px;
}

* {
    box-sizing: border-box;
}

html.is-restoring-language-scroll {
    scroll-behavior: auto !important;
}

html.is-restoring-language-scroll body {
    visibility: hidden;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-ui);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    cursor: default;
    -webkit-user-select: none;
    user-select: none;
    caret-color: transparent;
}

html {
    scroll-behavior: smooth;
}

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


a,
button,
label,
input[type="radio"],
input[type="checkbox"] {
    cursor: pointer;
}

input:not([type="radio"]):not([type="checkbox"]),
textarea {
    cursor: text;
    -webkit-user-select: text;
    user-select: text;
    caret-color: auto;
}

.site-main {
    max-width: var(--max);
    margin: 0 auto;
    padding: 32px 20px 48px;
    display: grid;
    gap: 28px;
}

.section,
.page-title {
    display: grid;
    gap: 14px;
}

.page-title {
    border-bottom: 1px solid var(--line);
    padding-bottom: 22px;
}

.page-title h1,
.section-header h2,
.home-hero h1,
.notice-band h2,
.two-column h2 {
    margin: 0;
    line-height: 1.2;
    color: var(--secondary);
    font-family: var(--font-ui);
    font-weight: 600;
}

.page-title p,
.section-header p,
.home-hero p,
.notice-band p,
.two-column p {
    margin: 0;
    color: var(--muted);
}

.section-eyebrow {
    margin: 0;
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: var(--radius);
    padding: 10px 16px;
    border: 1px solid transparent;
    font-weight: 500;
    cursor: pointer;
}

.button-primary {
    background: var(--primary);
    color: #ffffff;
}

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

.button-secondary {
    border-color: var(--line);
    background: var(--base);
    color: var(--text);
}

.home-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 26px;
    align-items: stretch;
}

.home-hero__content,
.home-hero__visual,
.feature-card,
.notice-band,
.two-column article {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    padding: 24px;
}

.home-hero__content {
    display: grid;
    align-content: center;
    gap: 16px;
    min-height: 320px;
}

.home-hero__content h1 {
    font-size: clamp(32px, 5vw, 54px);
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home-hero__visual {
    min-height: 320px;
    display: grid;
    place-items: center;
    color: var(--secondary);
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent) 0%, #e6f0ff 42%, var(--base) 100%);
}

.section-header {
    display: grid;
    gap: 8px;
}

.feature-grid,
.two-column,
.admin-dashboard {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.feature-card {
    display: grid;
    gap: 10px;
}

.feature-card h3 {
    margin: 0;
    color: var(--secondary);
}

.feature-card p {
    margin: 0;
    color: var(--muted);
}

.feature-card__icon {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border-radius: var(--radius);
    background: #e8f0ff;
    color: var(--primary);
    font-weight: 900;
}

.notice-band {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 26px;
    align-items: center;
    border-color: #bfd4ff;
    background: #edf3ff;
}

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

.page-home .site-main {
    max-width: 100%;
    padding: 0;
    gap: 0;
}

.home-panel {
    min-height: 1080px;
    padding: 110px 20px 48px;
    border-bottom: 1px solid var(--line);
    display: grid;
    align-items: center;
    scroll-margin-top: 0;
    background: var(--bg);
}

.page-home .home-panel:not(.panel-intro) {
    min-height: 1080px;
    padding: 0;
}

.home-panel__inner {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    min-height: 880px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--base);
    box-shadow: 0 10px 24px rgba(20, 33, 61, 0.06);
    display: grid;
    place-content: center;
    text-align: center;
    gap: 12px;
    padding: 24px;
}

.page-home .home-panel:not(.panel-intro) .home-panel__inner {
    max-width: 1920px;
    width: 100%;
    min-height: 1080px;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 120px 64px;
}

.home-panel__inner h1,
.home-panel__inner h2 {
    margin: 0;
    font-size: clamp(34px, 3.6vw, 58px);
    color: var(--secondary);
    line-height: 1.15;
    font-family: var(--font-ui);
    font-weight: 600;
}

.home-panel__inner p {
    margin: 0;
    color: var(--text);
    font-size: clamp(18px, 1.6vw, 24px);
    font-weight: 400;
}

.home-panel__label {
    margin: 0;
    color: var(--primary);
    font-size: 14px;
    letter-spacing: 0.2em;
    font-weight: 500;
}

.home-panel__group {
    margin: 0;
    display: flex;
    justify-self: center;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: #e8f0ff;
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.panel-intro {
    position: relative;
    overflow: hidden;
    background-image: none;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 1080px;
    height: 1080px;
    padding: 0;
    align-items: stretch;
}

.panel-intro::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.42) 0%,
        rgba(0, 0, 0, 0.28) 42%,
        rgba(0, 0, 0, 0.12) 72%,
        rgba(0, 0, 0, 0.06) 100%
    );
    z-index: 0;
}

.panel-intro::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, rgba(19, 44, 89, 0.18) 0%, rgba(19, 44, 89, 0.1) 34%, rgba(19, 44, 89, 0) 62%);
    z-index: 0;
}

.panel-intro > * {
    position: relative;
    z-index: 1;
}

.panel-intro .home-panel__inner {
    border: 0;
    border-top: 0;
    box-shadow: none;
    background: transparent;
    justify-items: start;
    text-align: left;
    max-width: none;
    width: 100%;
    min-height: 1080px;
    height: 1080px;
    border-radius: 0;
    align-content: start;
    margin: 0;
    padding: 0;
    gap: 8px;
    position: relative;
}

.panel-intro .hero-text-block {
    position: absolute;
    left: 64px;
    top: 224px;
    max-width: 620px;
}

.panel-intro .home-panel__inner h1,
.panel-intro .home-panel__inner h2,
.panel-intro .home-panel__inner p {
    color: #ffffff;
}

.panel-intro .hero-brand {
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 12px;
    line-height: 1;
    letter-spacing: 0.01em;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.38);
}

.panel-intro .hero-brand__main {
    font-size: clamp(64px, 4.7vw, 92px);
    font-weight: 600;
}

    .panel-intro .hero-actions {
        gap: 10px;
    }

    .panel-intro .hero-action {
        min-height: 40px;
        padding: 8px 18px;
        font-size: 14px;
    }

.panel-intro .hero-brand__sub {
    font-size: clamp(53px, 3.9vw, 78px);
    font-weight: 600;
    opacity: 0.95;
}

.panel-intro .hero-copy {
    margin: 0;
    max-width: 660px;
    font-size: clamp(15px, 1.06vw, 20px);
    line-height: 1.35;
    font-weight: 300;
    letter-spacing: 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.panel-intro .hero-copy--tagline {
    margin-top: 28px;
    font-size: clamp(15px, 1.06vw, 20px);
    font-weight: 300;
}

.panel-intro .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.panel-intro .hero-action {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 10px;
    padding: 8px 26px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    color: #ffffff;
    text-shadow: none;
}

.panel-intro .hero-action--primary {
    background: var(--primary);
}

.panel-intro .hero-action--primary:hover {
    background: var(--primary-dark);
}

.panel-intro .hero-action--secondary {
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.14);
}

.panel-intro .hero-action--secondary:hover {
    background: rgba(255, 255, 255, 0.24);
}

.panel-intro .hero-copy--lead {
    margin-top: 28px;
    font-size: clamp(15px, 1.06vw, 20px);
    font-weight: 300;
}

.panel-intro .home-panel__label {
    color: #d7e6ff;
}

.panel-company .home-panel__inner {
    border-top: 0;
}

.panel-company-overview {
    background: #eceef2;
}

.panel-company-overview .home-panel__inner {
    display: block;
    position: relative;
    background: #eceef2;
    padding: 0;
    text-align: left;
}

.company-overview {
    position: absolute;
    left: 118px;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% - 180px);
    max-width: none;
    color: #1d2a45;
    text-align: left;
}

.company-overview__globe {
    position: absolute;
    right: 96px;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(490px, 33vw, 650px);
    pointer-events: none;
}

.company-overview__globe img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 20px rgba(20, 33, 61, 0.18));
}

.panel-company-overview .company-overview__headline {
    margin: 0;
    display: grid;
    gap: 0;
    font-size: 97px;
    line-height: 1.03;
    letter-spacing: -0.02em;
    color: #1a2746;
    font-weight: 600;
}

.panel-company-overview .company-overview__headline .accent {
    color: var(--primary);
}

.company-overview__cta {
    margin-top: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 10px;
    background: var(--primary);
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 26px;
}

.company-overview__title {
    margin: 28px 0 0;
    font-size: 50px;
    line-height: 1.2;
    color: #1a2746;
    font-weight: 600;
}

.company-overview__initial {
    color: var(--primary);
}


.company-overview__text {
    margin: 0;
    max-width: min(760px, calc(100% - 650px));
    font-size: 16px;
    line-height: 1.62;
    color: #23314d;
    font-weight: 400;
}


.company-overview__title + .company-overview__text {
    margin-top: 46px;
}

.company-overview__nowrap {
    white-space: nowrap;
}


.company-overview__text + .company-overview__text {
    margin-top: 22px;
}

.panel-core-services {
    background: #f8fafc;
}

.panel-core-services .home-panel__inner {
    display: block;
    background: #f8fafc;
    padding: 0;
    text-align: left;
}

.core-services {
    width: min(100%, 1500px);
    margin: 0 auto;
    padding: 176px 42px 120px;
}

.core-services__title {
    margin: 0;
    color: #182131;
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
}

.core-services__cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
    margin-top: 108px;
}

.core-service-card {
    min-height: 360px;
    border: 1px solid #dfe5ed;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    display: grid;
    align-content: start;
    justify-items: center;
    text-align: center;
    padding: 54px 12px 42px;
}

.core-service-card__icon {
    width: 118px;
    height: 118px;
    display: grid;
    place-items: center;
    margin-bottom: 40px;
}

.core-service-card__icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.core-service-card__icon--material img,
.core-service-card__icon--handshake img {
    border-radius: 12px;
}

.core-service-card h3 {
    margin: 0;
    color: #1c2433;
    font-size: clamp(18px, 1.25vw, 24px);
    white-space: nowrap;
    line-height: 1.22;
    font-weight: 800;
}

.core-service-card p {
    margin: 22px 0 0;
    color: #4c5a6c;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
}


.panel-company-vision {
    position: relative;
    overflow: hidden;
    background: #eceef2;
}

.panel-company-vision::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 50%;
    background: none;
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.86) 24%, rgba(0, 0, 0, 0.62) 42%, rgba(0, 0, 0, 0.26) 56%, rgba(0, 0, 0, 0.06) 66%, rgba(0, 0, 0, 0) 74%);
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.86) 24%, rgba(0, 0, 0, 0.62) 42%, rgba(0, 0, 0, 0.26) 56%, rgba(0, 0, 0, 0.06) 66%, rgba(0, 0, 0, 0) 74%);
    z-index: 0;
}

.panel-company-vision::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(236, 238, 242, 0.12) 18%, rgba(236, 238, 242, 0.62) 38%, rgba(236, 238, 242, 0.94) 54%, #eceef2 64%);
    z-index: 1;
}

.panel-company-vision .home-panel__inner {
    position: relative;
    z-index: 2;
    display: block;
    background: transparent;
    text-align: left;
    padding: 0;
}

.company-vision {
    position: absolute;
    left: 812px;
    top: 582px;
    width: calc(100% - 820px);
    max-width: 980px;
    color: #2a3550;
}

.company-vision__plane {
    position: absolute;
    top: clamp(48px, 4.8vw, 92px);
    right: clamp(52px, 6.2vw, 120px);
    width: clamp(255px, 21vw, 400px);
    z-index: 4;
    pointer-events: none;
}

.company-vision__plane img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(-12px 16px 6px rgba(46, 55, 72, 0.34)) drop-shadow(-4px 6px 2px rgba(32, 38, 52, 0.18));
}

.company-vision__title {
    margin: 0;
    font-size: 60px;
    line-height: 1.14;
    font-weight: 600;
    color: #1a2746;
    letter-spacing: -0.01em;
}

.company-vision__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    color: #2e3a54;
}

.company-vision__title + .company-vision__text {
    margin-top: 50px;
}

.company-vision__text + .company-vision__text {
    margin-top: 24px;
}

.panel-company-ceo {
    position: relative;
    overflow: hidden;
    background: #eceef2;
}

.panel-company-ceo::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 50%;
    background: url('/img/home/logo(black).png') center center / 520px auto no-repeat;
    -webkit-mask-image: none;
    mask-image: none;
    z-index: 0;
}

.panel-company-ceo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(236, 238, 242, 0.04) 20%, rgba(236, 238, 242, 0.38) 38%, rgba(236, 238, 242, 0.9) 54%, #eceef2 64%);
    z-index: 1;
}

.panel-company-ceo .home-panel__inner {
    position: relative;
    z-index: 2;
    display: block;
    background: transparent;
    padding: 0;
    text-align: left;
    overflow: hidden;
}

.ceo-message {
    position: relative;
    min-height: 1080px;
    display: block;
    color: #17233f;
}

.ceo-message__visual {
    display: none;
}

.ceo-message__image {
    display: none;
}

.ceo-message__content {
    position: absolute;
    left: 812px;
    top: 50%;
    width: calc(100% - 860px);
    max-width: 780px;
    padding: 0;
    transform: translateY(-50%);
}

.ceo-message__title {
    margin: 0 0 168px;
    color: #1E5EFF !important;
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
    transform: translateY(-28px);
    text-shadow: 0 4px 10px rgba(20, 33, 61, 0.24);
}

.ceo-message__body {
    display: grid;
    gap: 22px;
    padding-top: 10px;
}

.ceo-message__lead {
    white-space: nowrap;
}

.ceo-message__body p {
    margin: 0;
    color: #1c2a45;
    font-family: var(--font-ui);
    font-size: 20px;
    line-height: 1.42;
    font-weight: 370;
}

.panel-company-ceo .ceo-message__signature {
    display: block;
    margin: 0 !important;
    padding-top: 0;
    color: #1E5EFF !important;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
    text-align: right;
    transform: translateY(60px);
}

.panel-business .home-panel__inner {
    border-top: 0;
}

.panel-business-services {
    background: #eceef2;
}

.panel-business-services .home-panel__inner {
    display: grid;
    place-items: center;
    background: #eceef2;
    text-align: center;
    padding: 0 42px;
}

.business-services {
    width: 100%;
    max-width: 1352px;
    display: grid;
    gap: 76px;
    align-items: center;
}

.business-services__header {
    display: grid;
    gap: 26px;
    justify-items: center;
}

.panel-business-services .business-services__title {
    margin: 0;
    color: var(--secondary);
    font-size: 58px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.panel-business-services .business-services__lead {
    margin: 0;
    color: var(--secondary);
    font-size: 21px;
    line-height: 1.45;
    font-weight: 370;
}

.business-services__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 46px;
    transform: translateY(34px);
}

.business-service-card {
    min-height: 454px;
    border-radius: 22px;
    position: relative;
    border: 1px solid rgba(214, 222, 232, 0.9);
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    box-shadow: 0 14px 20px rgba(20, 33, 61, 0.13), 0 4px 7px rgba(20, 33, 61, 0.14), inset 0 2px 0 rgba(255, 255, 255, 0.95), inset 0 -2px 0 rgba(214, 222, 232, 0.42);
    transform: translateY(-24px);
    display: grid;
    align-content: start;
    justify-items: start;
    text-align: left;
    padding: 36px 40px;
}

.business-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 42%);
    box-shadow: inset 10px 10px 18px rgba(255, 255, 255, 0.76), inset -8px -8px 16px rgba(214, 222, 232, 0.28);
    pointer-events: none;
    z-index: 0;
}

.business-service-card > * {
    position: relative;
    z-index: 1;
}

.business-service-card__icon {
    width: 74px;
    height: 74px;
    border-radius: 14px;
    background: #c9dcff;
    display: grid;
    place-items: center;
    margin-bottom: 32px;
}

.business-service-card__icon img {
    display: block;
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.business-service-card--distribution .business-service-card__icon img {
    width: 58px;
    height: 58px;
}

.business-service-card h3 {
    margin: 0 0 26px;
    color: var(--secondary);
    font-size: 36px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.business-service-card p {
    margin: 0;
    color: var(--secondary);
    font-size: 21px;
    line-height: 1.42;
    font-weight: 370;
}

.panel-business-safety {
    background: #eceef2;
}

.panel-business-safety .home-panel__inner {
    position: relative;
    display: block;
    background: #eceef2;
    text-align: left;
    padding: 0;
    overflow: hidden;
}

.business-safety {
    position: relative;
    width: 100%;
    min-height: 1080px;
    color: var(--secondary);
}

.business-safety__copy {
    position: absolute;
    left: 64px;
    top: 214px;
    max-width: 860px;
}

.panel-business-safety .business-safety__rate {
    margin: 0;
    color: var(--primary);
    font-size: 126px;
    line-height: 0.92;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.panel-business-safety .business-safety__label {
    margin: 32px 0 0;
    color: var(--secondary);
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
}

.panel-business-safety .business-safety__title {
    margin: 54px 0 0;
    color: var(--secondary);
    font-size: 54px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.015em;
}

.panel-business-safety .business-safety__text {
    margin: 72px 0 0;
    color: var(--secondary);
    font-size: 23px;
    line-height: 1.48;
    font-weight: 370;
}

.business-safety__badges {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.safety-badge {
    position: absolute;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: #ffffff;
    display: grid;
    place-items: center;
    box-shadow: 0 13px 18px rgba(30, 94, 255, 0.24), 0 5px 8px rgba(20, 33, 61, 0.26), inset 0 2px 0 rgba(255, 255, 255, 0.92), inset 0 -4px 7px rgba(20, 33, 61, 0.12);
    animation: safety-badge-float 5.8s ease-in-out infinite;
    will-change: transform;
}

@keyframes safety-badge-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-16px);
    }
}

.safety-badge img {
    display: block;
    max-width: 76px;
    max-height: 76px;
    object-fit: contain;
}

.safety-badge--ccc {
    right: 312px;
    top: 50%;
    animation-delay: 0s;
}

.safety-badge--rohs {
    right: 112px;
    top: 236px;
    width: 146px;
    height: 146px;
    animation-delay: -1.2s;
}

.safety-badge--rohs img {
    max-width: 94px;
    max-height: 94px;
}

.safety-badge--kc {
    right: 384px;
    top: 462px;
    width: 148px;
    height: 148px;
    animation-delay: -2.4s;
}

.safety-badge--kc img {
    max-width: 78px;
    max-height: 92px;
}

.safety-badge--ce {
    right: 118px;
    top: 586px;
    width: 112px;
    height: 112px;
    animation-delay: -3.1s;
}

.safety-badge--ce img {
    max-width: 70px;
    max-height: 56px;
}

.safety-badge--fcc {
    right: 246px;
    top: 720px;
    width: 178px;
    height: 178px;
    animation-delay: -4s;
}

.safety-badge--fcc img {
    max-width: 118px;
    max-height: 98px;
}

.panel-products .home-panel__inner {
    border-top: 0;
}

.panel-products-showcase {
    background: #eceef2;
}

.panel-products-showcase .home-panel__inner {
    display: grid;
    place-items: center;
    background: #eceef2;
    text-align: center;
    padding: 0 24px;
}

.products-showcase {
    width: 100%;
    max-width: none;
    display: grid;
    gap: 72px;
    justify-items: center;
}

.products-showcase__header {
    display: grid;
    gap: 26px;
    justify-items: center;
}

.panel-products-showcase .products-showcase__title {
    margin: 0;
    color: var(--secondary);
    font-size: 86px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.015em;
}

.panel-products-showcase .products-showcase__lead {
    margin: 0;
    color: var(--secondary);
    font-size: 22px;
    line-height: 1.42;
    font-weight: 500;
}

.products-showcase__frame {
    width: min(1680px, calc(100vw - 96px));
    border: 4px solid var(--accent);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 10px 18px rgba(20, 33, 61, 0.14), 0 3px 6px rgba(20, 33, 61, 0.12);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    padding: 14px 28px 20px;
}

.product-card {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    display: grid;
    align-items: end;
    background: #dbe3ef;
}

.product-card::after {
    content: "";
    position: absolute;
    inset: 44% 0 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.62) 100%);
    z-index: 1;
}

.product-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    justify-items: center;
    gap: 14px;
    padding: 0 14px 28px;
}

.panel-products-showcase .product-card h3 {
    margin: 0;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 500;
    text-align: center;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.42);
}

.product-card__button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    padding: 6px 16px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.product-card__button:hover {
    background: rgba(255, 255, 255, 0.24);
}

.panel-contact .home-panel__inner {
    border-top: 0;
}

.panel-contact-quote {
    background: #eceef2;
}

.panel-contact-quote .home-panel__inner {
    display: grid;
    place-items: center;
    background: #eceef2;
    text-align: center;
    padding: 0 24px;
}

.quote-contact {
    width: min(100%, 1040px);
    display: grid;
    justify-items: center;
    color: var(--secondary);
}

.quote-contact__header {
    display: grid;
    gap: 28px;
    justify-items: center;
    margin-bottom: 78px;
}

.panel-contact-quote .quote-contact__title {
    margin: 0;
    color: var(--secondary);
    font-size: 46px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.panel-contact-quote .quote-contact__lead {
    margin: 0;
    color: var(--secondary);
    font-size: 18px;
    line-height: 1.55;
    font-weight: 370;
}

.quote-form {
    width: min(100%, 650px);
    display: grid;
    gap: 26px;
    text-align: left;
}

.quote-form__section {
    margin: 0;
    padding: 0;
    border: 0;
}

.quote-form legend,
.quote-field > span {
    display: block;
    margin-bottom: 16px;
    color: var(--secondary);
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
}

.quote-type-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 58px;
    justify-items: center;
    padding-top: 2px;
}

.quote-type {
    display: grid;
    gap: 10px;
    justify-items: center;
    color: var(--secondary);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    cursor: pointer;
}

.quote-type input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.quote-type__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
}

.quote-type__icon img {
    display: block;
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(8%) sepia(49%) saturate(1708%) hue-rotate(199deg) brightness(91%) contrast(95%);
}

.quote-type input:checked + .quote-type__icon {
    border-radius: 12px;
    background: rgba(127, 179, 255, 0.24);
}

.quote-field input,
.quote-field textarea {
    cursor: text;
    -webkit-user-select: text;
    width: 100%;
    border: 0;
    border-radius: 14px;
    background: #e5e5e5;
    color: var(--secondary);
    font: inherit;
    font-size: 17px;
    font-weight: 600;
    padding: 12px 28px;
    outline: none;
    resize: none;
}

.quote-field input::placeholder,
.quote-field textarea::placeholder {
    color: #b0b0b0;
}

.quote-consent {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 2px 0 0 20px;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 700;
}

.quote-consent input {
    width: 14px;
    height: 14px;
    margin: 0;
}

.quote-form__actions {
    display: flex;
    justify-content: flex-end;
}

.quote-form__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 0;
    border-radius: 10px;
    background: var(--primary);
    color: #ffffff;
    font: inherit;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 26px;
    cursor: pointer;
}

.quote-form__submit:hover {
    background: var(--primary);
}

.quote-contact__info {
    display: grid;
    justify-items: center;
    gap: 26px;
    margin-top: 24px;
}

.quote-contact__email {
    min-width: 364px;
    border-radius: 14px;
    background: #ffffff;
    color: var(--secondary);
    box-shadow: 0 0 18px rgba(127, 179, 255, 0.72), 0 2px 0 rgba(20, 33, 61, 0.24);
    padding: 13px 26px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    text-align: center;
}

.quote-contact__address {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: var(--secondary);
    font-size: 19px;
    line-height: 1.3;
    font-weight: 800;
}

.quote-contact__address img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(8%) sepia(49%) saturate(1708%) hue-rotate(199deg) brightness(91%) contrast(95%);
}

@media (max-width: 860px) {
    .ceo-message__lead {
        white-space: normal;
    }

    .home-hero,
    .feature-grid,
    .two-column,
    .notice-band,
    .admin-dashboard {
        grid-template-columns: 1fr;
    }
    .home-hero__content h1 {
        font-size: 34px;
    }
    .home-panel {
        min-height: 820px;
        padding-top: 92px;
    }
    .page-home .home-panel:not(.panel-intro) {
        min-height: 820px;
    }
    .page-home .home-panel:not(.panel-intro) .home-panel__inner {
        min-height: 820px;
        padding: 92px 18px 48px;
    }
    .panel-intro {
        min-height: 820px;
        height: auto;
        padding-top: 88px;
        background-size: cover;
        background-position: center;
    }
    .panel-intro .home-panel__inner {
        min-height: 650px;
        height: auto;
        padding: 0;
    }
    .panel-intro .hero-text-block {
        position: static;
        max-width: 100%;
        padding: 64px 10px;
    }
    .panel-intro .hero-brand__main {
        font-size: clamp(44px, 8.2vw, 66px);
    }
    .panel-intro .hero-actions {
        gap: 10px;
    }

    .panel-intro .hero-action {
        min-height: 40px;
        padding: 8px 18px;
        font-size: 14px;
    }

    .panel-intro .hero-brand__sub {
        font-size: clamp(36px, 6.7vw, 54px);
    }
    .panel-company-overview .home-panel__inner {
        padding: 0;
    }
    .company-overview {
        position: static;
        transform: translateY(-24px);
        max-width: 100%;
        padding: 86px 18px 54px;
        width: 100%;
    }

    .company-overview__globe {
        position: static;
        transform: translateY(-24px);
        width: min(260px, 64vw);
        margin: 28px 0 0 auto;
    }

    .company-overview__text {
        max-width: 100%;
        margin-top: 0;
        font-size: clamp(14px, 3.4vw, 18px);
        line-height: 1.6;
    }

    .company-overview__headline {
        font-size: clamp(40px, 8.6vw, 62px);
    }

    .company-overview__nowrap {
        white-space: normal;
    }

    .company-overview__cta {
        margin-top: 42px;
        min-height: 36px;
        font-size: clamp(14px, 3.2vw, 18px);
    }

    .company-overview__title {
        margin-top: 20px;
        font-size: clamp(28px, 6.2vw, 46px);
    }

    .company-overview__title + .company-overview__text {
        margin-top: 24px;
    }

    .panel-core-services .home-panel__inner {
        padding: 0;
    }

    .core-services {
        padding: 88px 18px 64px;
    }

    .core-services__title {
        font-size: clamp(38px, 8vw, 54px);
    }

    .core-services__cards {
        grid-template-columns: 1fr;
        gap: 26px;
        margin-top: 42px;
    }

    .core-service-card {
        min-height: 248px;
        border-radius: 18px;
        padding: 30px 18px 28px;
    }

    .core-service-card__icon {
        width: 96px;
        height: 96px;
        margin-bottom: 24px;
    }

    .core-service-card h3 {
        font-size: clamp(16px, 4.8vw, 22px);
        white-space: nowrap;
    }

    .core-service-card p {
        margin-top: 14px;
        font-size: clamp(14px, 3.5vw, 16px);
    }


    .panel-company-vision::before,
    .panel-company-vision::after {
        display: none;
    }
    .panel-company-vision .home-panel__inner {
        padding: 0;
    }
    .panel-company-ceo::before,
    .panel-company-ceo::after {
        display: none;
    }
    .panel-company-ceo .home-panel__inner {
        padding: 0;
    }
    .ceo-message {
        min-height: 820px;
        display: block;
    }
    .ceo-message__visual {
        display: block;
        position: relative;
        height: 360px;
        min-height: 0;
        overflow: hidden;
        background: #eceef2;
    }
    .ceo-message__image {
        display: block;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        padding: 42px 18px;
    }
    .ceo-message__visual::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(236, 238, 242, 0) 0%, rgba(236, 238, 242, 0.08) 58%, #eceef2 100%);
    }
    .ceo-message__content {
        position: static;
        width: 100%;
        max-width: 100%;
        padding: 70px 18px 56px;
        transform: translateY(-24px);
    }
    .ceo-message__title {
        margin-bottom: 108px;
        font-size: clamp(38px, 9vw, 52px);
        transform: translateY(-14px);
    }
    .ceo-message__body {
        gap: 16px;
    }
.ceo-message__lead {
    white-space: nowrap;
}

    .ceo-message__body p {
        font-size: clamp(15px, 3.6vw, 18px);
        line-height: 1.55;
        font-weight: 370;
    }
    .panel-company-ceo .ceo-message__signature {
        transform: translateY(48px);
        font-size: clamp(18px, 4.6vw, 24px);
    }
    .company-vision {
        position: static;
        width: 100%;
        max-width: 100%;
        padding: 92px 18px 54px;
    }
    .company-vision__plane {
        position: static;
        width: min(235px, 64vw);
        margin: 0 0 26px auto;
    }
    .company-vision__plane img {
        filter: drop-shadow(-8px 10px 5px rgba(46, 55, 72, 0.3));
    }
    .company-vision__title {
        font-size: clamp(36px, 8.2vw, 52px);
    }
    .company-vision__text {
        margin-top: 0;
        font-size: clamp(14px, 3.4vw, 18px);
        line-height: 1.6;
    }
    .company-vision__title + .company-vision__text {
        margin-top: 24px;
    }
    .panel-business-services .home-panel__inner {
        padding: 76px 18px;
    }
    .business-services {
        gap: 36px;
    }
    .panel-business-services .business-services__title {
        font-size: clamp(34px, 8vw, 48px);
    }
    .panel-business-services .business-services__lead {
        font-size: clamp(15px, 3.8vw, 18px);
    }
    .business-services__cards {
        grid-template-columns: 1fr;
        gap: 26px;
        transform: translateY(18px);
    }
    .business-service-card {
        min-height: auto;
        padding: 28px 24px;
        transform: translateY(-24px);
    }
    .business-service-card--distribution .business-service-card__icon img {
        width: 58px;
        height: 58px;
    }
    .business-service-card h3 {
        font-size: clamp(25px, 6vw, 32px);
    }
    .business-service-card p {
        font-size: clamp(15px, 3.8vw, 18px);
    }
    .panel-business-safety .home-panel__inner {
        padding: 0;
    }
    .business-safety {
        min-height: 820px;
        padding: 76px 18px 56px;
        display: grid;
        gap: 34px;
    }
    .business-safety__copy {
        position: relative;
        left: auto;
        top: auto;
        max-width: 100%;
    }
    .panel-business-safety .business-safety__rate {
        font-size: clamp(72px, 18vw, 108px);
    }
    .panel-business-safety .business-safety__label {
        margin-top: 22px;
        font-size: clamp(24px, 6vw, 34px);
    }
    .panel-business-safety .business-safety__title {
        margin-top: 38px;
        font-size: clamp(32px, 7.4vw, 48px);
    }
    .panel-business-safety .business-safety__text {
        margin-top: 42px;
        font-size: clamp(15px, 3.8vw, 18px);
    }
    .business-safety__badges {
        position: relative;
        inset: auto;
        min-height: 300px;
    }
    .safety-badge--ccc {
        left: 4%;
        top: 18px;
        right: auto;
    }
    .safety-badge--rohs {
        right: 5%;
        top: 14px;
    }
    .safety-badge--kc {
        left: 22%;
        top: 150px;
        right: auto;
    }
    .safety-badge--ce {
        right: 12%;
        top: 164px;
    }
    .safety-badge--fcc {
        left: 50%;
        top: 250px;
        right: auto;
        transform: translateX(-50%);
        animation-name: safety-badge-float-centered;
    }
    .panel-products-showcase .home-panel__inner {
        padding: 76px 18px;
    }
    .products-showcase {
        gap: 36px;
    }
    .panel-products-showcase .products-showcase__title {
        font-size: clamp(48px, 14vw, 72px);
    }
    .panel-products-showcase .products-showcase__lead {
        font-size: clamp(15px, 3.8vw, 18px);
    }
    .products-showcase__frame {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px;
        border-width: 3px;
    }
    .product-card {
        min-height: 360px;
    }
    .panel-products-showcase .product-card h3 {
        font-size: clamp(20px, 5.2vw, 24px);
        font-weight: 500;
    }
    .product-card__button {
        font-size: 13px;
    }
    .panel-contact-quote .home-panel__inner {
        padding: 76px 18px;
    }
    .quote-contact__header {
        margin-bottom: 44px;
    }
    .panel-contact-quote .quote-contact__title {
        font-size: clamp(32px, 7vw, 44px);
    }
    .panel-contact-quote .quote-contact__lead {
        font-size: clamp(14px, 3.6vw, 17px);
    }
    .quote-form legend,
    .quote-field > span {
        font-size: clamp(18px, 4.8vw, 22px);
    }
    .quote-type-list {
        gap: 26px;
    }
    .quote-contact__email {
        min-width: 0;
        width: min(100%, 360px);
        font-size: clamp(18px, 5vw, 23px);
    }
    .quote-contact__address {
        align-items: flex-start;
        font-size: clamp(14px, 3.7vw, 18px);
        text-align: left;
    }
    @keyframes safety-badge-float-centered {
        0%, 100% {
            transform: translate(-50%, 0);
        }
        50% {
            transform: translate(-50%, -14px);
        }
    }
    .home-panel__inner {
        min-height: 670px;
    }
}

:root {
    --canvas-max: 1920px;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

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

.page-home .site-main {
    width: 100%;
    max-width: var(--canvas-max);
    margin: 0 auto;
    overflow: hidden;
}

.page-home .home-panel {
    width: 100%;
    max-width: var(--canvas-max);
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
}

.page-home .home-panel:not(.panel-intro) .home-panel__inner {
    max-width: var(--canvas-max);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 861px) and (max-width: 1400px) {
    .page-home .home-panel:not(.panel-intro) .home-panel__inner {
        padding-right: clamp(28px, 4vw, 64px);
        padding-left: clamp(28px, 4vw, 64px);
    }

    .company-overview {
        left: clamp(54px, 6vw, 92px);
        width: calc(100% - 108px);
    }

    .company-overview__globe {
        right: clamp(24px, 4vw, 64px);
        width: clamp(360px, 32vw, 500px);
    }

    .panel-company-overview .company-overview__headline {
        font-size: clamp(64px, 7vw, 88px);
    }

    .company-overview__title {
        font-size: clamp(38px, 4vw, 50px);
    }

    .company-overview__text {
        max-width: min(660px, calc(100% - 520px));
    }
}

@media (min-width: 861px) and (max-width: 1180px) {
    .core-services {
        padding-right: 48px;
        padding-left: 48px;
    }

    .core-services__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .core-service-card h3 {
        font-size: clamp(20px, 2.4vw, 24px);
    }
}

@media (min-width: 861px) and (max-width: 1400px) {
    .panel-company-ceo::before {
        width: 46%;
        background-size: min(78%, 420px) auto;
    }

    .ceo-message__content {
        left: 52%;
        width: 44%;
        max-width: none;
    }

    .ceo-message__title {
        margin-bottom: clamp(88px, 8vw, 140px);
        font-size: clamp(46px, 4.2vw, 58px);
    }

.ceo-message__lead {
    white-space: nowrap;
}

    .ceo-message__body p {
        font-size: clamp(17px, 1.55vw, 20px);
    }

    .company-vision {
        left: 52%;
        top: 54%;
        width: 44%;
        max-width: none;
    }

    .company-vision__title {
        font-size: clamp(48px, 4.4vw, 60px);
    }

    .company-vision__text {
        font-size: clamp(13px, 1.2vw, 14px);
    }
}

.panel-company-ceo {
    background: #ffffff;
}

.panel-company-ceo::before,
.panel-company-ceo::after {
    display: none;
}

.panel-company-ceo .home-panel__inner {
    display: grid;
    place-items: center;
    background: #ffffff;
    padding: 0 52px;
    text-align: left;
    overflow: hidden;
}

.ceo-message {
    width: min(100%, 1760px);
    min-height: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(390px, 0.72fr);
    align-items: center;
    gap: clamp(72px, 8vw, 150px);
    color: #172030;
}

.ceo-message__content {
    position: static;
    width: 100%;
    max-width: 880px;
    padding: 0;
    transform: none;
}

.ceo-message__eyebrow {
    margin: 0 0 92px;
    color: #1E5EFF !important;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-shadow: 0 4px 10px rgba(20, 33, 61, 0.24);
    transform: translateY(-24px);
}

.ceo-message__title {
    margin: 0;
    display: grid;
    gap: 10px;
    color: #18202d !important;
    font-size: clamp(58px, 5vw, 82px);
    line-height: 1.16;
    font-weight: 900;
    letter-spacing: 0;
    transform: translateY(-24px);
    text-shadow: none;
}

.ceo-message__body {
    display: grid;
    gap: 28px;
    padding-top: 68px;
}

.ceo-message__lead {
    white-space: nowrap;
}

.ceo-message__body p {
    margin: 0;
    color: #243349;
    font-size: 23px;
    line-height: 1.62;
    font-weight: 400;
}

.ceo-message__signature-inline {
    margin: 18px 0 0;
    display: grid;
    gap: 8px;
}

.ceo-message__signature-inline strong,
.ceo-message__signature-inline span {
    display: block;
    margin: 0;
}

.ceo-message__signature-inline strong {
    color: #111827;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 900;
}

.ceo-message__signature-inline span {
    color: var(--primary);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;
}

.ceo-message__visual,
.ceo-message__image,
.panel-company-ceo .ceo-message__signature {
    display: none;
}

.ceo-value-card {
    width: min(100%, 490px);
    justify-self: center;
    transform: translateY(34px);
    border: 1px solid #dbe1ea;
    border-radius: 28px;
    background: #f9fbfd;
    padding: 36px 58px 46px;
    color: #172030;
}

.ceo-value-card__eyebrow {
    margin: 0 0 22px;
    color: var(--primary);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.ceo-value-card__list {
    margin: 0;
    display: grid;
    gap: 12px;
}

.ceo-value-card__item {
    display: grid;
    gap: 8px;
    padding: 18px 20px;
    border: 1px solid #d9e2ef;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.8);
}

.ceo-value-card__list dt,
.ceo-value-card__list dd {
    margin: 0;
    font-size: 17px;
    line-height: 1.3;
}

.ceo-value-card__list dt {
    color: #34425a;
    font-weight: 500;
}

.ceo-value-card__list dd {
    color: #111827;
    font-weight: 800;
    text-align: left;
}

.ceo-value-card__footer {
    margin-top: 44px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: end;
}

.ceo-value-card__footer strong {
    display: block;
    color: #14213d;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 900;
}

.ceo-value-card__footer span {
    display: block;
    margin-top: 8px;
    color: var(--primary);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;
}

.ceo-value-card__footer b {
    color: rgba(30, 94, 255, 0.13);
    font-size: 52px;
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: 0.02em;
}

@media (min-width: 861px) and (max-width: 1400px) {
    .panel-company-ceo .home-panel__inner {
        padding-right: 42px;
        padding-left: 42px;
    }

    .ceo-message {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
        gap: clamp(42px, 5vw, 86px);
    }

    .ceo-message__eyebrow {
        margin-bottom: clamp(44px, 5vw, 72px);
        transform: translateY(-24px);
    }

    .ceo-message__title {
        font-size: clamp(48px, 5vw, 68px);
    }

    .ceo-message__body {
        padding-top: clamp(42px, 5vw, 62px);
    }

.ceo-message__lead {
    white-space: nowrap;
}

    .ceo-message__body p {
        font-size: clamp(18px, 1.6vw, 21px);
    }

    .ceo-message__signature-inline strong {
        font-size: clamp(24px, 2.3vw, 28px);
    }

    .ceo-value-card {
        transform: translateY(26px);
        padding: 32px 38px 40px;
    }
}

@media (max-width: 860px) {
    .ceo-message__lead {
        white-space: normal;
    }

    .panel-company-ceo .home-panel__inner {
        padding: 0;
    }

    .ceo-message {
        min-height: 820px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 88px 18px 64px;
    }

    .ceo-message__content {
        max-width: 100%;
    }

    .ceo-message__eyebrow {
        margin-bottom: 38px;
        font-size: 18px;
        transform: translateY(-24px);
    }

    .ceo-message__title {
        font-size: clamp(38px, 9vw, 54px);
        line-height: 1.18;
    }

    .ceo-message__body {
        padding-top: 38px;
        gap: 26px;
    }

.ceo-message__lead {
    white-space: nowrap;
}

    .ceo-message__body p {
        font-size: clamp(15px, 3.7vw, 18px);
        line-height: 1.62;
    }

    .ceo-message__signature-inline {
        margin-top: 10px;
        gap: 6px;
    }

    .ceo-message__signature-inline strong {
        font-size: clamp(22px, 5.8vw, 30px);
    }

    .ceo-message__signature-inline span {
        font-size: clamp(14px, 3.8vw, 18px);
    }

    .ceo-value-card {
        width: 100%;
        transform: none;
        border-radius: 20px;
        padding: 26px 22px 30px;
    }

    .ceo-value-card__item {
        gap: 8px;
        padding: 16px 16px;
    }

    .ceo-value-card__list dd {
        text-align: left;
    }

    .ceo-value-card__footer b {
        font-size: clamp(34px, 10vw, 48px);
    }
}

/* CEO message final alignment */
.panel-company-ceo .home-panel__inner {
    padding-right: 46px;
    padding-left: 30px;
}

.ceo-message {
    width: 100%;
    max-width: 1860px;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 490px);
}

.ceo-message__content {
    justify-self: start;
    text-align: left;
}

.ceo-message__eyebrow {
    display: block;
    width: max-content;
    margin: 0 0 118px;
    text-align: left;
    transform: translateY(-42px);
}

.ceo-message__title {
    justify-items: start;
    text-align: left;
    transform: none;
}

.ceo-message__body {
    text-align: left;
}

@media (min-width: 861px) and (max-width: 1400px) {
    .panel-company-ceo .home-panel__inner {
        padding-right: 32px;
        padding-left: 32px;
    }

    .ceo-message__eyebrow {
        margin-bottom: 88px;
        transform: translateY(-28px);
    }

    .ceo-message__title {
        transform: none;
    }
}

@media (max-width: 860px) {
    .ceo-message__eyebrow {
        width: max-content;
        margin-bottom: 48px;
        text-align: left;
        transform: none;
    }

    .ceo-message__title {
        transform: none;
    }

    .ceo-message__lead {
        white-space: normal;
    }
}

/* Vision section redesign */
.panel-company-vision {
    background: #ffffff;
}

.panel-company-vision::before,
.panel-company-vision::after {
    display: none;
}

.panel-company-vision .home-panel__inner {
    display: grid;
    place-items: center;
    background: #ffffff;
    padding: 0 52px;
    text-align: left;
    overflow: hidden;
}

.vision-layout {
    width: min(100%, 1760px);
    min-height: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
    gap: clamp(58px, 6vw, 110px);
    align-items: center;
    color: #172030;
}

.vision-copy {
    max-width: 900px;
}

.vision-copy__eyebrow {
    display: flex;
    align-items: center;
    min-height: 26px;
    margin: 0;
    border-radius: 999px;
    background: #edf3ff;
    color: var(--primary);
    padding: 5px 14px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
}

.vision-copy__title {
    margin: 76px 0 0;
    display: grid;
    gap: 6px;
    color: #151d2b !important;
    font-size: clamp(42px, 4.2vw, 66px);
    line-height: 1.16;
    font-weight: 900;
    letter-spacing: 0;
}

.vision-copy__title em {
    color: var(--primary);
    font-style: normal;
}

.vision-copy__body {
    display: grid;
    gap: 24px;
    margin-top: 56px;
}

.vision-copy__body p {
    margin: 0;
    max-width: 790px;
    color: #243349;
    font-size: 22px;
    line-height: 1.65;
    font-weight: 400;
}

.vision-quote {
    max-width: 830px;
    margin-top: 38px;
    border-left: 4px solid var(--primary);
    border-radius: 0 18px 18px 0;
    background: #f0f4ff;
    padding: 28px 34px;
}

.vision-quote strong {
    display: block;
    color: #111827;
    font-size: 23px;
    line-height: 1.35;
    font-weight: 900;
}

.vision-quote p {
    margin: 14px 0 0;
    color: #243349;
    font-size: 17px;
    line-height: 1.55;
    font-weight: 400;
}

.vision-values {
    max-width: 830px;
    margin: 36px 0 0;
    padding: 26px 0 0;
    border-top: 1px solid #d9e0ea;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    list-style: none;
}

.vision-values li {
    border: 1px solid #dde4ee;
    border-radius: 999px;
    background: #fbfdff;
    color: #172030;
    padding: 8px 14px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
}

.vision-visual {
    align-self: center;
    width: min(100%, 520px);
    min-height: 780px;
    justify-self: center;
    border: 1px solid #d9e1eb;
    border-radius: 28px;
    background: #eef2f6;
    display: grid;
    grid-template-rows: 1fr auto;
    overflow: hidden;
}

.vision-visual__stage {
    position: relative;
    min-height: 660px;
}

.vision-visual__plane {
    position: absolute;
    width: clamp(230px, 20vw, 360px);
    height: auto;
    object-fit: contain;
    pointer-events: none;
    filter: drop-shadow(-10px 14px 7px rgba(46, 55, 72, 0.28));
}

.vision-visual__plane--top {
    top: 68px;
    right: 26px;
    transform: rotate(-9deg);
}

.vision-visual__plane--bottom {
    left: 32px;
    bottom: 72px;
    transform: rotate(168deg) scaleX(-1);
    opacity: 0.74;
}

.vision-visual p {
    margin: 0;
    border-top: 1px solid #e0e6ee;
    background: rgba(255, 255, 255, 0.64);
    color: #34425a;
    padding: 28px 20px;
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 0.04em;
}

@media (min-width: 861px) and (max-width: 1400px) {
    .panel-company-vision .home-panel__inner {
        padding-right: 36px;
        padding-left: 36px;
    }

    .vision-layout {
        grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
        gap: clamp(34px, 4vw, 64px);
    }

    .vision-copy__title {
    margin-top: 76px;
        font-size: clamp(38px, 4.4vw, 56px);
    }

    .vision-copy__body p {
        font-size: clamp(17px, 1.6vw, 20px);
    }

    .vision-visual {
        min-height: 680px;
    }

    .vision-visual__stage {
        min-height: 570px;
    }
}

@media (max-width: 860px) {
    .panel-company-vision .home-panel__inner {
        padding: 0;
    }

    .vision-layout {
        min-height: 820px;
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 86px 18px 64px;
    }

    .vision-copy__eyebrow {
        margin-bottom: 44px;
    }

    .vision-copy__title {
    margin-top: 76px;
        font-size: clamp(34px, 8.4vw, 50px);
    }

    .vision-copy__body {
        margin-top: 36px;
        gap: 18px;
    }

    .vision-copy__body p {
        font-size: clamp(15px, 3.7vw, 18px);
        line-height: 1.62;
    }

    .vision-quote {
        margin-top: 28px;
        padding: 24px 22px;
    }

    .vision-quote strong {
        font-size: clamp(16px, 4.15vw, 22px);
        white-space: nowrap;
    }

    .vision-visual {
        width: 100%;
        min-height: 480px;
    }

    .vision-visual__stage {
        min-height: 390px;
    }

    .vision-visual__plane {
        width: min(230px, 58vw);
    }
}

/* Vision plane-only visual */
.vision-visual {
    width: min(100%, 560px);
    min-height: 700px;
    border: 0;
    border-radius: 0;
    background: transparent;
    display: block;
    overflow: visible;
}

.vision-visual__stage {
    position: relative;
    min-height: 700px;
}

.vision-visual__plane {
    filter: drop-shadow(-12px 16px 8px rgba(46, 55, 72, 0.28));
}

.vision-visual__plane--top {
    top: 76px;
    right: 18px;
    width: clamp(260px, 22vw, 410px);
    transform: rotate(-8deg);
}

.vision-visual__plane--bottom {
    left: 8px;
    bottom: 88px;
    width: clamp(210px, 18vw, 330px);
    transform: rotate(10deg);
    opacity: 0.9;
}

.vision-visual p {
    display: none;
}

@media (min-width: 861px) and (max-width: 1400px) {
    .vision-visual {
        min-height: 620px;
    }

    .vision-visual__stage {
        min-height: 620px;
    }
}

@media (max-width: 860px) {
    .vision-visual {
        min-height: 340px;
    }

    .vision-visual__stage {
        min-height: 340px;
    }

    .vision-visual__plane--top {
        top: 24px;
        right: 8px;
    }

    .vision-visual__plane--bottom {
        left: 0;
        bottom: 20px;
    }
}

/* Vision plane floating motion */
.vision-visual__plane {
    will-change: transform;
}

.vision-visual__plane--top {
    top: 24px;
    right: -28px;
    width: clamp(285px, 23vw, 430px);
    transform: translate3d(0, 0, 0) rotate(-12deg);
    animation: vision-plane-float-top 7.5s ease-in-out infinite;
}

.vision-visual__plane--bottom {
    left: -18px;
    bottom: 18px;
    width: clamp(235px, 19vw, 350px);
    transform: translate3d(0, 0, 0) rotate(8deg);
    opacity: 0.86;
    animation: vision-plane-float-bottom 9s ease-in-out infinite;
}

@keyframes vision-plane-float-top {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(-12deg);
    }

    45% {
        transform: translate3d(-16px, -18px, 0) rotate(-9deg);
    }

    72% {
        transform: translate3d(10px, 8px, 0) rotate(-13deg);
    }
}

@keyframes vision-plane-float-bottom {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(8deg);
    }

    42% {
        transform: translate3d(14px, -14px, 0) rotate(11deg);
    }

    76% {
        transform: translate3d(-8px, 10px, 0) rotate(6deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .vision-visual__plane {
        animation: none;
    }
}

@media (max-width: 860px) {
    .vision-visual__plane--top {
        top: 0;
        right: -18px;
    }

    .vision-visual__plane--bottom {
        left: -12px;
        bottom: 0;
    }
}

@media (min-width: 861px) and (max-width: 1400px) {
    .vision-copy__eyebrow {
        margin-bottom: 58px;
    }
}

/* Vision title spacing fix */
.vision-copy__eyebrow {
    display: flex;
    width: max-content;
}

.vision-copy__title {
    margin-top: 76px;
}

@media (min-width: 861px) and (max-width: 1400px) {
    .vision-copy__title {
        margin-top: 24px;
    }
}

@media (max-width: 860px) {
    .vision-copy__title {
        margin-top: 44px;
    }
}

/* Vision eyebrow/title explicit gap */
.vision-copy__gap {
    display: block;
    height: 86px;
}

.vision-copy__title {
    margin-top: 0 !important;
}

@media (min-width: 861px) and (max-width: 1400px) {
    .vision-copy__gap {
        height: 64px;
    }
}

@media (max-width: 860px) {
    .vision-copy__gap {
        height: 46px;
    }
}

/* Vision challenge panel */
.vision-layout {
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.72fr);
}

.vision-challenges {
    width: min(100%, 520px);
    justify-self: center;
    display: grid;
    align-content: center;
    gap: 26px;
}

.vision-challenges__title,
.vision-challenges__values h3 {
    margin: 0;
    color: #243349;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
}

.vision-challenge-list {
    display: grid;
    gap: 20px;
}

.vision-challenge-card {
    min-height: 108px;
    border: 1px solid #dce3ec;
    border-radius: 18px;
    background: #fbfcfe;
    display: grid;
    grid-template-columns: 52px 1fr;
    align-items: center;
    gap: 22px;
    padding: 22px 28px;
}

.vision-challenge-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #edf3ff;
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
}

.vision-challenge-card h4 {
    margin: 0;
    color: #111827;
    font-size: 23px;
    line-height: 1.25;
    font-weight: 900;
}

.vision-challenges__values {
    margin-top: 12px;
    border-top: 1px solid #d9e0ea;
    padding-top: 28px;
}

.vision-challenges .vision-values {
    max-width: 100%;
    margin: 18px 0 0;
    padding: 0;
    border-top: 0;
}

.vision-visual,
.vision-visual__stage,
.vision-visual__plane {
    display: none;
}

@media (min-width: 861px) and (max-width: 1400px) {
    .vision-layout {
        grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
    }

    .vision-challenge-card {
        min-height: 96px;
        padding: 20px 22px;
    }

    .vision-challenge-card h4 {
        font-size: clamp(18px, 1.8vw, 22px);
    }
}

@media (max-width: 860px) {
    .vision-challenges {
        width: 100%;
    }

    .vision-challenge-card {
        min-height: 88px;
        grid-template-columns: 44px 1fr;
        gap: 16px;
        padding: 18px 18px;
    }

    .vision-challenge-card__icon {
        width: 42px;
        height: 42px;
        font-size: 24px;
    }

    .vision-challenge-card h4 {
        font-size: clamp(18px, 4.8vw, 22px);
    }
}


/* Vision values restored below the copy */
.vision-values-block {
    max-width: 830px;
    margin-top: 36px;
}

.vision-values-block h3 {
    margin: 0;
    color: #243349;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
}

.vision-values-block .vision-values {
    margin-top: 16px;
}

.vision-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
    gap: clamp(40px, 5vw, 80px);
}

.vision-challenges {
    justify-self: start;
    align-self: center;
    transform: translateX(clamp(-84px, -4vw, -28px));
}

.vision-challenge-card__icon {
    background: transparent;
    border-radius: 0;
}

.vision-challenge-card__icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (min-width: 861px) and (max-width: 1400px) {
    .vision-layout {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
        gap: clamp(30px, 4vw, 56px);
    }

    .vision-challenges {
        transform: translateX(-24px);
    }
}

@media (max-width: 860px) {
    .vision-values-block {
        margin-top: 32px;
    }

    .vision-layout {
        grid-template-columns: 1fr;
    }

    .vision-challenges {
        justify-self: stretch;
        transform: none;
    }
}
/* Vision request refinements */
.vision-copy__title span:last-child {
    white-space: nowrap;
}

.vision-layout {
    gap: clamp(56px, 6vw, 112px);
}

.vision-challenges {
    transform: none;
}

.vision-values-block {
    margin-top: 28px;
}

.vision-values-block .vision-values {
    margin-top: 0;
}

@media (min-width: 861px) and (max-width: 1400px) {
    .vision-copy__title {
        font-size: clamp(35px, 4vw, 50px);
    }

    .vision-layout {
        gap: clamp(46px, 5vw, 78px);
    }

    .vision-challenges {
        transform: none;
    }
}

@media (max-width: 860px) {
    .vision-copy__title span:last-child {
        white-space: normal;
    }
}
/* Vision challenge title alignment */
.vision-layout {
    gap: clamp(88px, 8vw, 150px);
}

.vision-challenges {
    align-self: start;
    margin-top: 156px;
    transform: none;
}

@media (min-width: 861px) and (max-width: 1400px) {
    .vision-layout {
        gap: clamp(68px, 6vw, 104px);
    }

    .vision-challenges {
        margin-top: 124px;
        transform: none;
    }
}

@media (max-width: 860px) {
    .vision-challenges {
        align-self: auto;
        margin-top: 0;
    }
}
/* Vision challenge screenshot alignment */
.vision-challenges {
    align-self: center;
    margin-top: 32px;
    transform: none;
}

@media (min-width: 861px) and (max-width: 1400px) {
    .vision-challenges {
        align-self: center;
        margin-top: 28px;
        transform: none;
    }
}

@media (max-width: 860px) {
    .vision-challenges {
        align-self: auto;
        margin-top: 0;
    }
}
/* Business areas redesign */
.panel-business-services {
    background: #ffffff;
}

.panel-business-services .home-panel__inner {
    background: #ffffff;
    padding: 0 70px;
}

.business-services {
    max-width: 1220px;
    gap: 78px;
}

.business-services__header {
    gap: 14px;
}

.business-services__eyebrow {
    margin: 0;
    color: var(--primary);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 900;
}

.panel-business-services .business-services__title {
    color: #111827;
    font-size: clamp(44px, 4vw, 58px);
    line-height: 1.16;
    font-weight: 900;
    letter-spacing: 0;
}

.panel-business-services .business-services__lead,
.business-service-card__icon {
    display: none;
}

.business-services__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px;
    transform: none;
}

.business-service-card {
    min-height: 356px;
    border: 1px solid #dce3ec;
    border-radius: 22px;
    background: #fbfcfe;
    box-shadow: none;
    transform: none;
    padding: 48px 50px 40px;
    overflow: hidden;
}

.business-service-card::before {
    display: none;
}

.business-service-card__badge {
    display: inline-flex;
    width: max-content;
    min-height: 26px;
    align-items: center;
    border-radius: 999px;
    background: #e8efff;
    color: var(--primary);
    padding: 5px 13px;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 900;
}

.business-service-card h3 {
    margin: 38px 0 28px;
    color: #111827;
    font-size: clamp(25px, 2vw, 31px);
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: 0;
}

.business-service-card p {
    max-width: 500px;
    color: #334155;
    font-size: 17px;
    line-height: 1.68;
    font-weight: 400;
}

.business-service-card__footer {
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid #e6ebf2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    color: #334155;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
}

.business-service-card__footer b {
    color: var(--primary);
    font-size: 26px;
    line-height: 1;
    font-weight: 900;
}

.business-service-card--with-cube {
    position: relative;
}

.business-service-card__cube {
    position: absolute;
    top: 50px;
    right: 54px;
    width: 40px;
    height: 34px;
    background: linear-gradient(145deg, #1e5eff 0 48%, #79a7ff 48% 100%);
    clip-path: polygon(50% 0, 100% 28%, 100% 72%, 50% 100%, 0 72%, 0 28%);
}

.business-service-card__cube::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #172554 0 50%, transparent 50%);
    clip-path: polygon(0 28%, 50% 56%, 50% 100%, 0 72%);
}

@media (min-width: 861px) and (max-width: 1400px) {
    .panel-business-services .home-panel__inner {
        padding: 0 54px;
    }

    .business-services {
        gap: 62px;
    }

    .business-service-card {
        padding: 44px 42px 36px;
    }

    .business-service-card p {
        font-size: 16px;
    }
}

@media (max-width: 860px) {
    .panel-business-services .home-panel__inner {
        padding: 72px 18px;
    }

    .business-services {
        gap: 38px;
    }

    .business-services__cards {
        grid-template-columns: 1fr;
        gap: 22px;
        transform: none;
    }

    .business-service-card {
        min-height: auto;
        padding: 32px 24px 28px;
        transform: none;
    }

    .business-service-card h3 {
        margin-top: 28px;
    }

    .business-service-card p,
    .business-service-card__footer {
        font-size: 15px;
    }

    .business-service-card__cube {
        top: 34px;
        right: 26px;
    }
}
/* Business card arrow refinement */
.business-service-card__cube {
    display: none;
}

.business-service-card__footer {
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 24px;
}

.business-service-card__footer b {
    justify-self: end;
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    transition: transform 180ms ease, color 180ms ease;
}

.business-service-card:hover .business-service-card__footer b {
    transform: translateX(8px);
    color: #004cff;
}

@media (max-width: 860px) {
    .business-service-card__footer {
        grid-template-columns: minmax(0, 1fr) 30px;
    }

    .business-service-card__footer b {
        width: 30px;
        height: 30px;
    }
}
/* Business heading eyebrow removed */
.business-services__header {
    gap: 0;
}
/* Business arrow hit-area refinement */
.business-service-card__footer {
    width: 100%;
    justify-self: stretch;
    grid-template-columns: minmax(0, 1fr) 44px;
}

.business-service-card__footer b {
    display: none;
}

.business-service-card__arrow {
    justify-self: end;
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin: -5px -10px -5px 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--primary);
    font: inherit;
    font-size: 26px;
    line-height: 1;
    font-weight: 900;
    cursor: pointer;
    transition: transform 180ms ease, color 180ms ease, background-color 180ms ease;
}

.business-service-card__arrow:hover,
.business-service-card__arrow:focus-visible {
    transform: translateX(8px);
    color: #004cff;
    background: #eef4ff;
}

.business-service-card__arrow:active {
    transform: translateX(11px) scale(0.96);
}

.business-service-card:hover .business-service-card__footer b {
    transform: none;
}

@media (max-width: 860px) {
    .business-service-card__footer {
        grid-template-columns: minmax(0, 1fr) 40px;
    }

    .business-service-card__arrow {
        width: 40px;
        height: 40px;
        margin-right: -8px;
    }
}
/* Business arrow glyph centering */
.business-service-card__arrow span {
    display: block;
    width: 1em;
    height: 1em;
    line-height: 0.92;
    transform: translate(1px, -1px);
    text-align: center;
}

.business-service-card__arrow:hover span,
.business-service-card__arrow:focus-visible span,
.business-service-card__arrow:active span {
    transform: translate(1px, -1px);
}
/* Business arrow precise centering */
.business-service-card__arrow {
    position: relative;
}

.business-service-card__arrow span {
    display: none !important;
}

.business-service-card__arrow::before,
.business-service-card__arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    pointer-events: none;
}

.business-service-card__arrow::before {
    width: 15px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: translate(-50%, -50%);
}

.business-service-card__arrow::after {
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translate(calc(-50% + 5px), -50%) rotate(45deg);
}


/* Business detail page */
.page-business-detail {
    background: #ffffff;
}

.page-business-detail .site-main {
    max-width: 1140px;
    padding: 28px 20px 58px;
    gap: 0;
}

.business-detail {
    display: grid;
    gap: 54px;
    color: #111827;
}

.business-detail__back {
    width: max-content;
    color: var(--primary);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
}

.business-detail__back:hover {
    color: #004cff;
}

.business-detail__hero {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px 14px;
    align-items: center;
    margin-top: -24px;
}

.business-detail__badge {
    display: inline-flex;
    width: max-content;
    min-height: 30px;
    align-items: center;
    border-radius: 5px;
    background: var(--primary);
    color: #ffffff;
    padding: 7px 11px;
    font-size: 12px;
    line-height: 1.1;
    font-weight: 900;
}

.business-detail__hero h1 {
    margin: 0;
    color: #111827;
    font-size: clamp(34px, 4vw, 46px);
    line-height: 1.14;
    font-weight: 900;
    letter-spacing: 0;
}

.business-detail__hero p {
    grid-column: 1 / -1;
    max-width: 860px;
    margin: 0;
    color: #1f2937;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 500;
}

.business-detail__nowrap {
    white-space: nowrap;
}

.business-detail__panel,
.spec-table,
.partner-card {
    border: 1px solid #d9e1ec;
    border-radius: 16px;
    background: #fbfcfe;
}

.business-detail__panel {
    display: grid;
    gap: 26px;
    padding: 34px 48px 42px;
}

.business-detail__section {
    display: grid;
    gap: 22px;
}

.business-detail__panel h2,
.business-detail__section h2 {
    margin: 0;
    color: #111827;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 900;
}

.business-detail__panel h2 span,
.business-detail__section h2 span {
    color: var(--primary);
    margin-right: 8px;
}

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

.origin-card {
    border: 1px solid #e0e6ef;
    border-radius: 12px;
    background: #ffffff;
    padding: 24px 28px;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 20px;
    align-items: center;
}

.origin-card strong {
    color: #172554;
    font-size: 20px;
    line-height: 1;
    font-weight: 900;
    text-align: center;
}

.origin-card h3,
.origin-card p,
.partner-card h3,
.partner-card p,
.business-detail__cta p {
    margin: 0;
}

.origin-card h3 {
    color: #111827;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 900;
}

.origin-card p {
    margin-top: 7px;
    color: #64748b;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 600;
}

.spec-table {
    overflow: hidden;
    background: #ffffff;
}

.spec-table__row {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 76px;
    border-top: 1px solid #e4eaf2;
}

.spec-table__row:first-child {
    border-top: 0;
}

.spec-table__row > div {
    display: grid;
    align-content: center;
    padding: 18px 30px;
    color: #1f2937;
    font-size: 14px;
    line-height: 1.55;
}

.spec-table__head > div {
    background: #f8fafc;
    color: #111827;
    font-size: 13px;
    font-weight: 900;
    text-align: center;
}

.spec-table__row div:first-child {
    text-align: center;
}

.spec-table__row strong {
    color: #111827;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 900;
}

.spec-table__row span {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}

.partner-card {
    min-height: 142px;
    padding: 24px 28px;
    background: #ffffff;
}

.partner-card > span {
    display: inline-flex;
    border-radius: 4px;
    background: #eef4ff;
    color: var(--primary);
    padding: 4px 7px;
    font-size: 11px;
    line-height: 1.1;
    font-weight: 900;
}

.partner-card h3 {
    margin-top: 22px;
    color: #111827;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
}

.partner-card p {
    margin-top: 10px;
    color: #475569;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 500;
}

.business-detail__cta {
    border-top: 1px solid #e4eaf2;
    padding-top: 32px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}

.business-detail__cta p {
    color: #334155;
    font-size: 14px;
    font-weight: 800;
}

.business-detail__cta a {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--primary);
    color: #ffffff;
    padding: 14px 24px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 900;
}

.business-detail__cta a:hover {
    background: #004cff;
}

@media (max-width: 860px) {
    .page-business-detail .site-main {
        padding: 24px 18px 44px;
    }

    .business-detail {
        gap: 34px;
    }

    .business-detail__hero {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .business-detail__panel {
        padding: 26px 20px;
    }

    .origin-grid,
    .partner-grid,
    .business-detail__cta {
        grid-template-columns: 1fr;
    }

    .spec-table__row {
        grid-template-columns: 1fr;
    }

    .spec-table__head {
        display: none;
    }

    .spec-table__row div:first-child {
        text-align: left;
        padding-bottom: 4px;
    }

    .spec-table__row > div + div {
        padding-top: 4px;
    }
}
/* Business detail standalone view */
.page-business-detail .site-header,
.page-business-detail .site-footer {
    display: none;
}

/* Business detail single-card variants */
.origin-grid--single {
    grid-template-columns: minmax(0, 1fr);
    max-width: 700px;
}

.partner-grid--single {
    grid-template-columns: minmax(0, 260px);
}

.partner-grid--single .partner-card {
    min-height: 190px;
}

@media (max-width: 860px) {
    .origin-grid--single,
    .partner-grid--single {
        max-width: none;
        grid-template-columns: 1fr;
    }
}


/* Products summary list redesign */
.panel-products-showcase {
    background: #ffffff;
}

.panel-products-showcase .home-panel__inner {
    background: #ffffff;
    padding: 0 70px;
}

.products-showcase {
    max-width: 1180px;
    gap: 70px;
}

.products-showcase__header {
    gap: 12px;
}

.products-showcase__eyebrow {
    margin: 0;
    color: var(--primary);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 900;
}

.panel-products-showcase .products-showcase__title {
    color: #111827;
    font-size: clamp(42px, 4vw, 58px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: 0;
}

.panel-products-showcase .products-showcase__lead {
    color: #475569;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 500;
}

.products-showcase__frame {
    width: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
    padding: 0;
}

.product-card.product-card--summary {
    min-height: 515px;
    overflow: visible;
    display: grid;
    align-content: start;
    align-items: start;
    justify-items: start;
    border: 1px solid #dce3ec;
    border-radius: 22px;
    background: #ffffff;
    padding: 36px 38px 30px;
    text-align: left;
}

.product-card.product-card--summary::after {
    display: none;
}

.product-card.product-card--summary > img {
    display: none;
}

.product-card__icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: #eef4ff;
    display: grid;
    place-items: center;
    margin-bottom: 26px;
}

.product-card__icon img {
    position: static;
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.product-card__icon--lock {
    position: relative;
    color: #94a3b8;
}

.product-card__icon--lock::before {
    content: "";
    width: 22px;
    height: 18px;
    border: 3px solid currentColor;
    border-radius: 5px;
    transform: translateY(4px);
}

.product-card__icon--lock::after {
    content: "";
    position: absolute;
    top: 17px;
    left: 50%;
    width: 18px;
    height: 16px;
    border: 3px solid currentColor;
    border-bottom: 0;
    border-radius: 12px 12px 0 0;
    transform: translateX(-50%);
}

.product-card__badge {
    display: inline-flex;
    border-radius: 6px;
    background: #eaf1ff;
    color: var(--primary);
    padding: 5px 10px;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.panel-products-showcase .product-card h3 {
    margin: 18px 0 26px;
    color: #111827;
    font-size: clamp(24px, 2vw, 31px);
    line-height: 1.25;
    font-weight: 900;
    text-align: left;
    text-shadow: none;
}

.product-card--summary ul {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
    list-style: none;
    color: #334155;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}

.product-card--summary li::before {
    content: "- ";
}

.product-card--summary strong {
    color: #111827;
    font-weight: 900;
}

.product-card--summary p {
    margin: 0;
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 600;
}

.product-card__footer {
    width: 100%;
    margin-top: auto;
    padding-top: 28px;
    border-top: 1px solid #e5eaf2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    color: #475569;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
}

.product-card__footer b {
    color: var(--primary);
    font-size: 14px;
    line-height: 1.25;
    font-weight: 900;
}

.product-card--locked {
    border-style: dashed !important;
    background: #fcfdff !important;
    color: #94a3b8;
}

.product-card--locked .product-card__badge,
.product-card--locked h3,
.product-card--locked .product-card__footer,
.product-card--locked .product-card__footer b {
    color: #a8b4c5 !important;
}

.product-card--locked .product-card__badge {
    background: #edf1f6;
}

@media (min-width: 861px) and (max-width: 1400px) {
    .panel-products-showcase .home-panel__inner {
        padding: 0 52px;
    }

    .products-showcase__frame {
        gap: 28px;
    }

    .product-card.product-card--summary {
        padding: 34px 30px 28px;
    }

    .product-card--summary ul,
    .product-card--summary p {
        font-size: 15px;
    }
}

@media (max-width: 860px) {
    .panel-products-showcase .home-panel__inner {
        padding: 72px 18px;
    }

    .products-showcase {
        gap: 38px;
    }

    .products-showcase__frame {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card.product-card--summary {
        min-height: auto;
        padding: 30px 24px 26px;
    }

    .product-card__footer {
        grid-template-columns: 1fr;
    }
}
/* Products icon and copy refinements */
.product-card__icon img {
    display: block !important;
    max-width: 38px;
    max-height: 38px;
}

.product-card--summary:first-child .product-card__icon img {
    width: 38px;
    height: 38px;
}

.product-card__item--stacked span {
    display: block;
    margin-top: 3px;
    padding-left: 0;
}

.product-card--summary ul {
    gap: 11px;
}

.product-card__icon--lock {
    position: relative;
}

.product-card__icon--lock::before {
    position: absolute;
    left: 50%;
    top: 28px;
    width: 23px;
    height: 18px;
    border: 3px solid currentColor;
    border-radius: 5px;
    transform: translate(-50%, -50%);
}

.product-card__icon--lock::after {
    top: 16px;
    left: 50%;
    width: 17px;
    height: 15px;
    border-width: 3px;
    transform: translateX(-50%);
}

/* Products width and image refresh */
.products-showcase {
    max-width: 1280px;
}

.products-showcase__frame {
    gap: 24px;
}

.product-card.product-card--summary {
    padding-right: 34px;
    padding-left: 34px;
}

.product-card--summary ul {
    font-size: 15px;
    line-height: 1.5;
}

.product-card__icon--muted img {
    opacity: 0.74;
}

@media (min-width: 861px) and (max-width: 1400px) {
    .products-showcase {
        max-width: 1240px;
    }

    .products-showcase__frame {
        gap: 22px;
    }
}

/* Business safety badge spacing adjustment */
.safety-badge--ccc {
    right: 430px;
    top: 372px;
}

.safety-badge--rohs {
    right: 138px;
    top: 190px;
}

.safety-badge--kc {
    right: 332px;
    top: 560px;
}

.safety-badge--ce {
    right: 86px;
    top: 520px;
}

.safety-badge--fcc {
    right: 214px;
    top: 748px;
}

@media (min-width: 861px) and (max-width: 1400px) {
    .safety-badge--ccc {
        right: 320px;
        top: 388px;
    }

    .safety-badge--rohs {
        right: 82px;
        top: 210px;
    }

    .safety-badge--kc {
        right: 278px;
        top: 574px;
    }

    .safety-badge--ce {
        right: 64px;
        top: 532px;
    }

    .safety-badge--fcc {
        right: 156px;
        top: 748px;
    }
}

@media (max-width: 860px) {
    .business-safety__badges {
        min-height: 380px;
    }

    .safety-badge--ccc {
        left: 2%;
        top: 12px;
        right: auto;
    }

    .safety-badge--rohs {
        right: 2%;
        top: 24px;
    }

    .safety-badge--kc {
        left: 10%;
        top: 184px;
        right: auto;
    }

    .safety-badge--ce {
        right: 7%;
        top: 206px;
    }

    .safety-badge--fcc {
        left: 50%;
        top: 300px;
        right: auto;
    }
}


/* Safety section trust cards and CSS badges */
.panel-business-safety {
    background: #ffffff;
}

.panel-business-safety .home-panel__inner {
    background: #ffffff;
    display: grid;
    place-items: center;
    padding: 88px 52px;
    overflow: visible;
}

.business-safety {
    width: min(100%, 1240px);
    min-height: auto;
    display: grid;
    gap: 34px;
}

.business-safety__copy {
    position: static;
    max-width: 900px;
}

.panel-business-safety .business-safety__rate {
    font-size: clamp(86px, 8vw, 126px);
}

.panel-business-safety .business-safety__text {
    margin-top: 44px;
}

.business-safety__badges {
    position: static;
    inset: auto;
    min-height: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    pointer-events: none;
}

.safety-badge,
.safety-badge--rohs,
.safety-badge--kc,
.safety-badge--ce,
.safety-badge--fcc {
    position: static;
    width: auto;
    height: auto;
    min-width: 70px;
    min-height: 34px;
    border-radius: 999px;
    border: 1px solid #dbe5f3;
    background: #f8fbff;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    color: var(--primary);
    animation: safety-badge-soft-float 4.8s ease-in-out infinite;
}

.safety-badge img {
    display: none;
}

.safety-badge::before {
    content: attr(data-label);
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.safety-badge--rohs {
    animation-delay: -0.7s;
}

.safety-badge--kc {
    animation-delay: -1.4s;
}

.safety-badge--ce {
    animation-delay: -2.1s;
}

.safety-badge--fcc {
    animation-delay: -2.8s;
}

@keyframes safety-badge-soft-float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.business-safety__trust {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
}

.safety-trust-card {
    min-height: 300px;
    border: 1px solid #dce3ec;
    border-radius: 26px;
    background: #ffffff;
    display: grid;
    justify-items: center;
    align-content: center;
    text-align: center;
    padding: 42px 32px 34px;
}

.safety-trust-card img {
    display: block;
    width: 106px;
    height: 106px;
    object-fit: contain;
    margin-bottom: 32px;
}

.safety-trust-card h3 {
    margin: 0;
    color: #111827;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 900;
}

.safety-trust-card p {
    margin: 18px 0 0;
    color: #526173;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
}

@media (max-width: 860px) {
    .panel-business-safety .home-panel__inner {
        padding: 72px 18px;
    }

    .business-safety {
        gap: 28px;
    }

    .business-safety__badges {
        gap: 10px;
    }

    .business-safety__trust {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .safety-trust-card {
        min-height: 250px;
        padding: 34px 24px 30px;
    }

    .safety-trust-card h3 {
        font-size: 24px;
    }

    .safety-trust-card p {
        font-size: 16px;
    }
}

/* Static certification mark approximations */
.business-safety__badges {
    gap: 16px;
    margin-top: -6px;
}

.safety-badge,
.safety-badge--rohs,
.safety-badge--kc,
.safety-badge--ce,
.safety-badge--fcc {
    position: relative;
    min-width: 76px;
    min-height: 50px;
    border-radius: 14px;
    border: 1px solid #d7e1ee;
    background: #ffffff;
    color: #1f2937;
    padding: 8px 12px;
    animation: none !important;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.safety-badge::before {
    position: relative;
    z-index: 1;
    color: currentColor;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0;
}

.safety-badge--ccc {
    min-width: 86px;
    border-radius: 999px;
    color: #1f4fd7;
}

.safety-badge--ccc::before {
    content: "C C C";
    letter-spacing: 0.08em;
}

.safety-badge--ccc::after {
    content: "";
    position: absolute;
    inset: 9px;
    border: 2px solid #1f4fd7;
    border-radius: 999px;
    opacity: 0.18;
}

.safety-badge--rohs {
    min-width: 92px;
    color: #15803d;
    border-color: #bfe6cb;
    background: #f3fff6;
}

.safety-badge--rohs::before {
    content: "RoHS";
    font-size: 16px;
}

.safety-badge--rohs::after {
    content: "✓";
    position: absolute;
    right: 11px;
    top: 7px;
    color: #22c55e;
    font-size: 15px;
    font-weight: 900;
}

.safety-badge--kc {
    width: 62px;
    min-width: 62px;
    height: 62px;
    border-radius: 50%;
    color: #111827;
}

.safety-badge--kc::before {
    content: "KC";
    font-size: 17px;
}

.safety-badge--kc::after {
    content: "";
    position: absolute;
    inset: 8px;
    border: 2px solid #111827;
    border-left-color: transparent;
    border-radius: 50%;
    transform: rotate(-28deg);
    opacity: 0.52;
}

.safety-badge--ce {
    min-width: 82px;
    color: #111827;
    border-color: #cfd8e5;
}

.safety-badge--ce::before {
    content: "CE";
    font-size: 23px;
    letter-spacing: 0.16em;
    font-weight: 800;
}

.safety-badge--fcc {
    min-width: 84px;
    color: #1e40af;
}

.safety-badge--fcc::before {
    content: "FCC";
    font-size: 18px;
    letter-spacing: 0.04em;
}

.safety-badge--fcc::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 9px;
    height: 3px;
    border-radius: 999px;
    background: #1e40af;
    opacity: 0.2;
}
/* Safety section fixed 1920x1080 layout */
.page-home .panel-business-safety,
.panel-business-safety {
    min-height: 1080px;
    height: 1080px;
}

.page-home .panel-business-safety .home-panel__inner,
.panel-business-safety .home-panel__inner {
    max-width: 1920px;
    min-height: 1080px;
    height: 1080px;
    padding: 58px 64px;
    overflow: hidden;
}

.business-safety {
    width: min(100%, 1260px);
    height: 100%;
    min-height: 0;
    align-content: center;
    gap: 22px;
}

.business-safety__copy {
    max-width: 940px;
}

.panel-business-safety .business-safety__rate {
    font-size: clamp(82px, 7vw, 116px);
}

.panel-business-safety .business-safety__label {
    margin-top: 22px;
    font-size: 34px;
}

.panel-business-safety .business-safety__title {
    margin-top: 38px;
    font-size: 46px;
}

.panel-business-safety .business-safety__text {
    margin-top: 34px;
    font-size: 20px;
    line-height: 1.45;
}

.business-safety__badges {
    width: max-content;
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
}

.safety-badge,
.safety-badge--ccc,
.safety-badge--rohs,
.safety-badge--kc,
.safety-badge--ce,
.safety-badge--fcc {
    animation: none !important;
    transform: none !important;
}

.business-safety__trust {
    margin-top: 18px;
    gap: 28px;
}

.safety-trust-card {
    min-height: 258px;
    padding: 30px 28px 28px;
}

.safety-trust-card img {
    width: 88px;
    height: 88px;
    margin-bottom: 24px;
}

.safety-trust-card h3 {
    font-size: 25px;
}

.safety-trust-card p {
    margin-top: 14px;
    font-size: 16px;
}

@media (max-width: 860px) {
    .page-home .panel-business-safety,
    .panel-business-safety,
    .page-home .panel-business-safety .home-panel__inner,
    .panel-business-safety .home-panel__inner {
        height: auto;
        min-height: 820px;
    }

    .panel-business-safety .home-panel__inner {
        padding: 72px 18px;
    }

    .business-safety {
        height: auto;
        gap: 24px;
    }

    .business-safety__badges {
        width: 100%;
        flex-wrap: wrap;
    }
}

/* Safety badges as inline value chips */
.business-safety__badges {
    width: 100%;
    max-width: 940px;
    margin: 4px 0 0;
    padding: 22px 0 0;
    border-top: 1px solid #d9e0ea;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px 12px;
}

.safety-badge,
.safety-badge--ccc,
.safety-badge--rohs,
.safety-badge--kc,
.safety-badge--ce,
.safety-badge--fcc {
    position: static;
    width: auto;
    height: auto;
    min-width: 0;
    min-height: 0;
    border: 1px solid #dde4ee;
    border-radius: 999px;
    background: #fbfdff;
    box-shadow: none;
    color: #172030;
    padding: 8px 14px;
    overflow: visible;
    animation: none !important;
    transform: none !important;
}

.safety-badge::before,
.safety-badge--ccc::before,
.safety-badge--rohs::before,
.safety-badge--kc::before,
.safety-badge--ce::before,
.safety-badge--fcc::before {
    content: attr(data-label);
    position: static;
    color: #172030;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0;
}

.safety-badge::after,
.safety-badge--ccc::after,
.safety-badge--rohs::after,
.safety-badge--kc::after,
.safety-badge--ce::after,
.safety-badge--fcc::after {
    display: none;
}

.business-safety__trust {
    margin-top: 42px;
}

/* Safety badges use image marks */
.safety-badge::before,
.safety-badge--ccc::before,
.safety-badge--rohs::before,
.safety-badge--kc::before,
.safety-badge--ce::before,
.safety-badge--fcc::before {
    display: none;
}

.safety-badge,
.safety-badge--ccc,
.safety-badge--rohs,
.safety-badge--kc,
.safety-badge--ce,
.safety-badge--fcc {
    min-width: 76px;
    min-height: 48px;
    border-radius: 12px;
    padding: 8px 12px;
}

.safety-badge img {
    display: block !important;
    position: static;
    width: auto;
    height: auto;
    max-width: 64px;
    max-height: 32px;
    object-fit: contain;
}

.safety-badge--rohs img {
    max-width: 70px;
    max-height: 34px;
}

.safety-badge--kc img {
    max-width: 38px;
    max-height: 38px;
}

.safety-badge--fcc img {
    max-width: 72px;
    max-height: 34px;
}

/* Safety badge visual size balance */
.safety-badge--ce img {
    max-width: 54px;
    max-height: 28px;
}

.safety-badge--fcc img {
    max-width: 58px;
    max-height: 28px;
}

/* Desktop fixed 1920x1080 canvas */
@media (min-width: 861px) {
    html,
    body {
        min-width: 1920px;
    }

    .page-home .site-main {
        width: 1920px;
        min-width: 1920px;
        max-width: 1920px;
        margin-right: auto;
        margin-left: auto;
        overflow: visible;
    }

    .page-home .home-panel {
        width: 1920px;
        min-width: 1920px;
        max-width: 1920px;
        height: 1080px;
        min-height: 1080px;
        max-height: 1080px;
        margin-right: auto;
        margin-left: auto;
        overflow: hidden;
    }

    .page-home .home-panel .home-panel__inner {
        width: 1920px;
        min-width: 1920px;
        max-width: 1920px;
        height: 1080px;
        min-height: 1080px;
        max-height: 1080px;
        margin-right: auto;
        margin-left: auto;
        overflow: hidden;
    }
}


/* Contact consulting redesign */
.panel-contact-quote {
    background: #ffffff;
}

.panel-contact-quote .home-panel__inner {
    background: #ffffff;
    padding: 0 70px;
}

.quote-contact {
    width: min(100%, 1060px);
    color: #111827;
}

.quote-contact__header {
    gap: 14px;
    margin-bottom: 64px;
}

.quote-contact__eyebrow {
    margin: 0;
    color: var(--primary);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 900;
}

.panel-contact-quote .quote-contact__title {
    color: #111827;
    font-size: clamp(40px, 3.8vw, 54px);
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: 0;
}

.panel-contact-quote .quote-contact__lead {
    color: #334155;
    font-size: 21px;
    line-height: 1.45;
    font-weight: 700;
}

.quote-contact__note {
    margin: 6px 0 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    background: #f2f6ff;
    color: var(--primary);
    padding: 9px 22px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 900;
}

.quote-contact__layout {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 48px;
    align-items: start;
}

.quote-form {
    display: grid;
    width: 100%;
    border: 1px solid #dce3ec;
    border-radius: 24px;
    background: #fbfcfe;
    padding: 42px 40px 38px;
    gap: 24px;
}

.quote-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
}

.quote-field {
    display: grid;
}

.quote-field--wide {
    grid-column: 1 / -1;
}

.quote-field > span {
    margin-bottom: 10px;
    color: #111827;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 900;
}

.quote-field input,
.quote-field textarea,
.quote-field select {
    width: 100%;
    min-height: 48px;
    border: 1px solid #d8e0ea;
    border-radius: 12px;
    background: #ffffff;
    color: #111827;
    font: inherit;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 500;
    padding: 12px 16px;
    outline: none;
    resize: vertical;
}

.quote-field textarea {
    min-height: 112px;
}

.quote-field input::placeholder,
.quote-field textarea::placeholder {
    color: #9aa6b8;
}

.quote-field select {
    appearance: auto;
    cursor: pointer;
}

.quote-form__actions {
    justify-content: stretch;
}

.quote-form__submit {
    width: 100%;
    min-height: 58px;
    border-radius: 12px;
    background: var(--primary);
    font-size: 17px;
    font-weight: 900;
    box-shadow: 0 14px 24px rgba(30, 94, 255, 0.18);
}

.quote-contact__side {
    display: grid;
    gap: 34px;
}

.quote-info-card {
    border: 1px solid #dce3ec;
    border-radius: 22px;
    background: #ffffff;
    padding: 34px 34px 32px;
    text-align: left;
}

.quote-info-card h3 {
    margin: 0 0 26px;
    color: #111827;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 900;
}

.quote-info-card p {
    margin: 0;
    color: #334155;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 500;
}

.quote-info-card p + p {
    margin-top: 18px;
}

.quote-info-card p span {
    display: inline-block;
    width: 22px;
    color: var(--primary);
    font-weight: 900;
}

@media (min-width: 861px) and (max-width: 1400px) {
    .panel-contact-quote .home-panel__inner {
        padding: 0 54px;
    }

    .quote-contact {
        width: min(100%, 1020px);
    }

    .quote-contact__layout {
        grid-template-columns: minmax(0, 1fr) 310px;
        gap: 38px;
    }

    .quote-form {
        padding: 38px 34px 34px;
    }
}

@media (max-width: 860px) {
    .panel-contact-quote .home-panel__inner {
        padding: 72px 18px;
    }

    .quote-contact__layout,
    .quote-form__grid {
        grid-template-columns: 1fr;
    }

    .quote-form {
        padding: 28px 22px 24px;
    }

    .quote-contact__side {
        gap: 18px;
    }
}
@media (min-width: 861px) {
    .page-home .panel-contact-quote .home-panel__inner {
        padding: 0 70px;
    }

    .page-home .quote-contact {
        width: 1060px;
    }

    .page-home .quote-contact__layout {
        grid-template-columns: minmax(0, 1fr) 330px;
        gap: 48px;
    }

    .page-home .quote-form {
        padding: 42px 40px 38px;
    }
}
/* Contact header exact mockup match */
.panel-contact-quote .quote-contact__header {
    display: grid;
    justify-items: center;
    gap: 20px;
    margin-bottom: 58px;
}

.panel-contact-quote .quote-contact__eyebrow {
    margin: 0;
    color: #1f5cff;
    font-size: 16px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: 0;
}

.panel-contact-quote .quote-contact__title {
    margin: 0;
    color: #0f172a;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: 0;
}

.panel-contact-quote .quote-contact__lead {
    margin: 0;
    color: #334155;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: 0;
}

.panel-contact-quote .quote-contact__note {
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    border-radius: 999px;
    background: #f3f6ff;
    color: #1f5cff;
    padding: 0 22px;
    font-size: 15px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
}

.panel-contact-quote .quote-contact__note span {
    font-size: 15px;
    line-height: 1;
}
.panel-contact-quote .quote-info-card p span {
    width: 24px;
    text-align: center;
    font-size: 15px;
    line-height: 1;
}
/* Contact screenshot-style SVG icons */
.panel-contact-quote .contact-icon {
    width: 17px;
    height: 17px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 17px;
}

.panel-contact-quote .contact-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.panel-contact-quote .contact-icon--megaphone {
    width: 16px;
    height: 16px;
    color: #111827;
}

.panel-contact-quote .contact-icon--megaphone .contact-icon__stroke {
    fill: none;
    stroke: #111827;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.panel-contact-quote .contact-icon--megaphone .contact-icon__fill {
    fill: #ff4d4f;
    stroke: #111827;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.panel-contact-quote .quote-info-card p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.panel-contact-quote .quote-info-card .contact-icon {
    margin-top: 5px;
    color: #1f5cff;
}

.panel-contact-quote .quote-info-card .contact-icon svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.panel-contact-quote .quote-info-card .contact-icon--pin circle {
    fill: currentColor;
    stroke: currentColor;
}

.panel-contact-quote .quote-info-card .contact-icon--user circle {
    fill: currentColor;
    stroke: currentColor;
}
/* Contact info filled icons like reference */
.panel-contact-quote .quote-info-card .contact-icon svg {
    fill: currentColor;
    stroke: none;
}

.panel-contact-quote .quote-info-card .contact-icon__cut {
    fill: #ffffff;
    stroke: none;
}

.panel-contact-quote .quote-info-card .contact-icon__cut--stroke {
    fill: none;
    stroke: #ffffff;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.panel-contact-quote .quote-info-card .contact-icon--user {
    width: 16px;
    height: 16px;
    margin-top: 6px;
}
.panel-contact-quote .quote-info-card__text {
    display: inline-block;
    min-width: 0;
}

.panel-contact-quote .quote-info-card .contact-icon--pin {
    width: 15px;
    height: 15px;
    margin-top: 6px;
}

.panel-contact-quote .quote-info-card p {
    align-items: flex-start;
}
/* Fix contact address text and pin cutout */
.panel-contact-quote .quote-info-card p .quote-info-card__text {
    width: auto;
    flex: 1 1 auto;
    display: block;
    color: inherit;
    text-align: left;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}

.panel-contact-quote .quote-info-card .contact-icon--pin .contact-icon__cut {
    fill: #ffffff;
    stroke: none;
}

.panel-contact-quote .quote-info-card .contact-icon {
    flex: 0 0 17px;
}

.panel-contact-quote .quote-info-card .contact-icon--pin {
    flex-basis: 15px;
}
/* Contact info row alignment */
.panel-contact-quote .quote-info-card .quote-info-row {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    column-gap: 12px;
    align-items: center;
}

.panel-contact-quote .quote-info-card .quote-info-row--address {
    align-items: start;
}

.panel-contact-quote .quote-info-card .quote-info-row .contact-icon {
    width: 16px;
    height: 16px;
    flex: none;
    justify-self: center;
    align-self: center;
    margin: 0;
}

.panel-contact-quote .quote-info-card .quote-info-row--address .contact-icon {
    width: 15px;
    height: 15px;
    align-self: start;
    margin-top: 5px;
}

.panel-contact-quote .quote-info-card .quote-info-row .quote-info-card__text {
    width: auto;
    display: block;
    color: inherit;
    text-align: left;
    font-size: inherit;
    line-height: 1.58;
    font-weight: inherit;
}

.panel-contact-quote .quote-info-card .quote-info-row:not(.quote-info-row--address) .quote-info-card__text {
    line-height: 1.25;
}
/* Final contact office row centering */
.panel-contact-quote .quote-info-card--office .quote-info-row {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    column-gap: 11px;
    align-items: center;
}

.panel-contact-quote .quote-info-card--office .quote-info-row + .quote-info-row {
    margin-top: 17px;
}

.panel-contact-quote .quote-info-card--office .quote-info-row .contact-icon {
    width: 16px;
    height: 16px;
    justify-self: center;
    align-self: center;
    margin: 0;
}

.panel-contact-quote .quote-info-card--office .quote-info-row--address .contact-icon {
    width: 15px;
    height: 15px;
    align-self: center;
    margin: 0;
}

.panel-contact-quote .quote-info-card--office .quote-info-card__text {
    align-self: center;
    line-height: 1.45;
}
/* Contact office icon optical alignment */
.panel-contact-quote .quote-info-card--office .quote-info-row--address {
    align-items: start;
}

.panel-contact-quote .quote-info-card--office .quote-info-row--address .contact-icon {
    align-self: start;
    margin-top: 4px;
}

.panel-contact-quote .quote-info-card--office .quote-info-row:not(.quote-info-row--address) .contact-icon {
    align-self: center;
    transform: translateY(-2px);
}

.panel-contact-quote .quote-info-card--office .quote-info-row:not(.quote-info-row--address) .quote-info-card__text {
    line-height: 1.25;
}
/* Mobile readability pass */
@media (max-width: 860px) {
    html,
    body {
        min-width: 0 !important;
        width: 100%;
        overflow-x: hidden;
    }

    .page-home .site-main,
    .page-home .home-panel,
    .page-home .home-panel .home-panel__inner,
    .page-home .home-panel:not(.panel-intro),
    .page-home .home-panel:not(.panel-intro) .home-panel__inner {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        overflow: visible;
    }

    .page-home .home-panel:not(.panel-intro) .home-panel__inner {
        padding: 72px 20px;
    }

    .panel-intro {
        min-height: 100svh !important;
        height: auto !important;
        padding: 92px 20px 56px;
        align-items: center;
        background-position: 58% center;
    }

    .panel-intro .home-panel__inner {
        min-height: calc(100svh - 148px) !important;
        place-content: center;
    }

    .panel-intro .hero-text-block {
        padding: 0;
        text-align: left;
    }

    .panel-intro .hero-brand__main {
        font-size: 54px;
        line-height: 1;
    }

    .panel-intro .hero-brand__sub {
        font-size: 42px;
        line-height: 1;
    }

    .panel-intro .hero-copy,
    .panel-intro .hero-copy--tagline,
    .panel-intro .hero-copy--lead {
        font-size: 15px;
        line-height: 1.55;
    }

    .panel-intro .hero-actions {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .panel-company-overview .home-panel__inner,
    .panel-core-services .home-panel__inner,
    .panel-company-ceo .home-panel__inner,
    .panel-company-vision .home-panel__inner,
    .panel-business-services .home-panel__inner,
    .panel-business-safety .home-panel__inner,
    .panel-products-showcase .home-panel__inner,
    .panel-contact-quote .home-panel__inner {
        padding: 72px 20px !important;
    }

    .company-overview,
    .core-services,
    .ceo-message,
    .vision-layout,
    .business-services,
    .business-safety,
    .products-showcase,
    .quote-contact {
        width: 100%;
        max-width: 100%;
        padding: 0 !important;
        transform: none !important;
        text-align: left;
    }

    .company-overview {
        display: grid;
        gap: 22px;
    }

    .company-overview__globe {
        width: min(180px, 48vw);
        margin: 0 0 6px;
        transform: none;
    }

    .company-overview__headline,
    .core-services__title,
    .ceo-message__title,
    .vision-copy__title,
    .panel-business-services .business-services__title,
    .panel-business-safety .business-safety__title,
    .panel-products-showcase .products-showcase__title,
    .panel-contact-quote .quote-contact__title {
        font-size: 34px !important;
        line-height: 1.18 !important;
        text-align: left;
    }

    .company-overview__title {
        font-size: 24px !important;
        line-height: 1.25;
    }

    .company-overview__text,
    .core-service-card p,
    .ceo-message__body p,
    .vision-copy__body p,
    .vision-quote p,
    .business-service-card p,
    .panel-business-safety .business-safety__text,
    .panel-products-showcase .products-showcase__lead,
    .product-card--summary ul,
    .product-card--summary p,
    .panel-contact-quote .quote-contact__lead,
    .quote-info-card p {
        font-size: 15px !important;
        line-height: 1.65 !important;
        word-break: keep-all;
    }

    .company-overview__text br,
    .ceo-message__body p br,
    .vision-copy__body p br,
    .business-safety__text br {
        display: none;
    }

    .ceo-message__body p br {
        display: block;
    }

    .core-services__cards,
    .business-services__cards,
    .products-showcase__frame,
    .quote-contact__layout,
    .quote-form__grid {
        grid-template-columns: 1fr !important;
    }

    .core-services__cards,
    .business-services__cards,
    .products-showcase__frame {
        gap: 16px !important;
        margin-top: 28px;
    }

    .core-service-card,
    .business-service-card,
    .product-card.product-card--summary,
    .quote-form,
    .quote-info-card {
        border-radius: 18px;
        padding: 24px 20px !important;
        min-height: auto !important;
    }

    .core-service-card__icon {
        width: 72px;
        height: 72px;
        margin-bottom: 18px;
    }

    .core-service-card h3,
    .business-service-card h3,
    .panel-products-showcase .product-card h3,
    .quote-info-card h3 {
        font-size: 21px !important;
        line-height: 1.3;
        white-space: normal;
    }

    .ceo-message {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 26px;
    }

    .ceo-message__eyebrow,
    .vision-copy__eyebrow,
    .products-showcase__eyebrow,
    .quote-contact__eyebrow {
        margin: 0 0 16px !important;
        font-size: 13px !important;
        line-height: 1.2;
        transform: none !important;
    }

    .ceo-message__body,
    .vision-copy__body {
        padding-top: 0;
        margin-top: 22px;
        gap: 14px;
    }

    .ceo-message__lead {
        white-space: normal !important;
    }

    .ceo-value-card {
        width: 100%;
        padding: 22px 20px !important;
    }

    .vision-layout {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .vision-copy__title {
        margin-top: 0 !important;
    }

    .vision-values {
        width: 100%;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 4px;
    }

    .vision-values li {
        flex: 0 1 auto;
        padding: 7px 8px;
        font-size: 12px;
        white-space: nowrap;
    }

    .vision-challenges {
        width: 100%;
        transform: none !important;
    }

    .vision-challenge-card {
        min-height: 74px;
        padding: 16px;
        grid-template-columns: 36px 1fr;
        gap: 14px;
    }

    .vision-challenge-card h4 {
        font-size: 17px !important;
    }

    .panel-business-safety .business-safety__rate {
        font-size: 58px !important;
        line-height: 1;
    }

    .panel-business-safety .business-safety__label {
        margin-top: 8px;
        font-size: 18px !important;
    }

    .business-safety__badges {
        position: static !important;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 8px;
        min-height: 0 !important;
        padding-top: 16px;
    }

    .safety-badge {
        position: static !important;
        width: 100% !important;
        height: 46px !important;
        transform: none !important;
        animation: none !important;
    }

    .safety-badge img {
        max-width: 100%;
        max-height: 38px;
        object-fit: contain;
    }

    .business-safety__trust {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .safety-trust-card {
        padding: 24px 18px !important;
    }

    .safety-trust-card img {
        width: 88px;
        height: 88px;
    }

    .products-showcase__header,
    .quote-contact__header {
        justify-items: start !important;
        text-align: left;
        gap: 12px !important;
        margin-bottom: 28px !important;
    }

    .products-showcase__frame {
        padding: 0 !important;
        border: 0;
    }

    .product-card__icon {
        width: 56px;
        height: 56px;
        margin-bottom: 18px;
    }

    .product-card__footer {
        grid-template-columns: 1fr !important;
        gap: 8px;
    }

    .quote-contact__note {
        max-width: 100%;
        min-height: 34px;
        padding: 8px 14px !important;
        font-size: 13px !important;
        white-space: normal;
        text-align: left;
    }

    .quote-contact__layout {
        gap: 18px !important;
    }

    .quote-field--wide {
        grid-column: auto;
    }

    .quote-field > span {
        font-size: 14px !important;
        margin-bottom: 8px;
    }

    .quote-field input,
    .quote-field textarea,
    .quote-field select {
        min-height: 46px;
        font-size: 14px;
        padding: 11px 14px;
    }

    .quote-info-card--office .quote-info-row {
        grid-template-columns: 18px minmax(0, 1fr) !important;
        column-gap: 10px !important;
    }

    .quote-form__submit {
        min-height: 52px;
        font-size: 15px;
    }
}

@media (max-width: 420px) {
    .page-home .home-panel:not(.panel-intro) .home-panel__inner,
    .panel-company-overview .home-panel__inner,
    .panel-core-services .home-panel__inner,
    .panel-company-ceo .home-panel__inner,
    .panel-company-vision .home-panel__inner,
    .panel-business-services .home-panel__inner,
    .panel-business-safety .home-panel__inner,
    .panel-products-showcase .home-panel__inner,
    .panel-contact-quote .home-panel__inner {
        padding-right: 16px !important;
        padding-left: 16px !important;
    }

    .company-overview__headline,
    .core-services__title,
    .ceo-message__title,
    .vision-copy__title,
    .panel-business-services .business-services__title,
    .panel-business-safety .business-safety__title,
    .panel-products-showcase .products-showcase__title,
    .panel-contact-quote .quote-contact__title {
        font-size: 30px !important;
    }

    .business-safety__badges {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
/* Business detail header/footer restored */
.page-business-detail .site-header,
.page-business-detail .site-footer {
    display: block;
}

.page-business-detail .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.96);
}

.page-business-detail .site-main {
    padding-top: 172px;
}

@media (max-width: 860px) {
    .page-business-detail .site-main {
        padding-top: 104px;
    }
}
/* English layout overflow fixes */
.lang-en {
    overflow-wrap: anywhere;
}

.lang-en .hero-copy,
.lang-en .company-overview__text,
.lang-en .ceo-message__body p,
.lang-en .vision-copy__body p,
.lang-en .business-service-card p,
.lang-en .business-safety__text,
.lang-en .product-card--summary li,
.lang-en .product-card--summary p,
.lang-en .quote-contact__lead,
.lang-en .quote-info-card p,
.lang-en .business-detail p {
    word-break: normal;
    overflow-wrap: break-word;
}

.lang-en .core-service-card h3,
.lang-en .ceo-message__lead,
.lang-en .vision-copy__title span:last-child,
.lang-en .company-overview__nowrap {
    white-space: normal !important;
}

.lang-en .core-service-card h3 {
    font-size: clamp(17px, 1.08vw, 21px);
    line-height: 1.28;
}

.lang-en .panel-company-overview .company-overview__headline {
    font-size: clamp(58px, 4.8vw, 88px);
    line-height: 1.08;
}

.lang-en .ceo-message__title {
    font-size: clamp(48px, 4.2vw, 70px);
    line-height: 1.12;
}

.lang-en .vision-copy__title {
    font-size: clamp(36px, 3.55vw, 56px);
    line-height: 1.15;
}

.lang-en .vision-copy__title em {
    display: inline;
}

.lang-en .vision-values {
    flex-wrap: wrap;
    justify-content: flex-start;
}

.lang-en .vision-values li {
    white-space: normal;
}

.lang-en .vision-challenge-card h4 {
    font-size: 20px;
    line-height: 1.25;
}

.lang-en .panel-business-services .business-services__title,
.lang-en .panel-products-showcase .products-showcase__title,
.lang-en .panel-contact-quote .quote-contact__title {
    font-size: clamp(36px, 3.2vw, 50px);
    line-height: 1.15;
}

.lang-en .business-service-card h3 {
    font-size: clamp(23px, 1.8vw, 29px);
    line-height: 1.25;
}

.lang-en .business-service-card__footer {
    align-items: center;
}

.lang-en .business-service-card__footer span {
    min-width: 0;
    overflow-wrap: break-word;
}

.lang-en .safety-trust-card h3 {
    font-size: 22px;
    line-height: 1.25;
}

.lang-en .panel-products-showcase .product-card h3 {
    font-size: clamp(21px, 1.7vw, 27px);
    line-height: 1.22;
}

.lang-en .product-card--summary ul {
    gap: 11px;
}

.lang-en .product-card--summary li {
    line-height: 1.45;
}

.lang-en .product-card--summary strong {
    display: inline;
}

.lang-en .product-card__footer {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
}

.lang-en .quote-contact__note {
    white-space: normal;
}

.lang-en .quote-field textarea::placeholder {
    white-space: normal;
}

.lang-en .business-detail__hero h1 {
    font-size: clamp(30px, 3.4vw, 42px);
}

.lang-en .spec-table__row {
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
}

.lang-en .partner-card h3 {
    font-size: 16px;
}

@media (min-width: 861px) and (max-width: 1400px) {
    .lang-en .panel-company-overview .company-overview__headline {
        font-size: clamp(48px, 4.6vw, 68px);
    }

    .lang-en .ceo-message__title {
        font-size: clamp(42px, 4vw, 58px);
    }

    .lang-en .vision-copy__title {
        font-size: clamp(32px, 3.6vw, 46px);
    }

    .lang-en .business-service-card h3,
    .lang-en .panel-products-showcase .product-card h3 {
        font-size: 23px;
    }
}

@media (max-width: 860px) {
    .lang-en .panel-intro .hero-brand__main {
        font-size: 48px;
    }

    .lang-en .panel-intro .hero-brand__sub {
        font-size: 36px;
    }

    .lang-en .company-overview__headline,
    .lang-en .core-services__title,
    .lang-en .ceo-message__title,
    .lang-en .vision-copy__title,
    .lang-en .panel-business-services .business-services__title,
    .lang-en .panel-business-safety .business-safety__title,
    .lang-en .panel-products-showcase .products-showcase__title,
    .lang-en .panel-contact-quote .quote-contact__title {
        font-size: 29px !important;
        line-height: 1.18 !important;
    }

    .lang-en .core-service-card h3,
    .lang-en .business-service-card h3,
    .lang-en .panel-products-showcase .product-card h3,
    .lang-en .quote-info-card h3 {
        font-size: 19px !important;
    }

    .lang-en .business-safety__badges {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lang-en .spec-table__row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .lang-en .company-overview__headline,
    .lang-en .core-services__title,
    .lang-en .ceo-message__title,
    .lang-en .vision-copy__title,
    .lang-en .panel-business-services .business-services__title,
    .lang-en .panel-business-safety .business-safety__title,
    .lang-en .panel-products-showcase .products-showcase__title,
    .lang-en .panel-contact-quote .quote-contact__title {
        font-size: 27px !important;
    }
}
/* Mobile fixed header spacing */
@media (max-width: 860px) {
    .home-panel,
    .page-home .home-panel:not(.panel-intro),
    .page-home .home-panel:not(.panel-intro) .home-panel__inner {
        scroll-margin-top: 86px;
    }

    .panel-intro {
        padding-top: 106px !important;
    }

    .panel-intro .home-panel__inner {
        min-height: calc(100svh - 162px) !important;
    }
}

@media (max-width: 420px) {
    .home-panel,
    .page-home .home-panel:not(.panel-intro),
    .page-home .home-panel:not(.panel-intro) .home-panel__inner {
        scroll-margin-top: 78px;
    }

    .panel-intro {
        padding-top: 96px !important;
    }

    .panel-intro .home-panel__inner {
        min-height: calc(100svh - 150px) !important;
    }
}

/* Company overview centered layout on mobile only */
@media (max-width: 860px) {
    .panel-company-overview .company-overview {
        display: grid;
        justify-items: center;
        width: 100%;
        max-width: 100%;
        text-align: center;
        transform: none !important;
    }

    .panel-company-overview .company-overview__headline,
    .panel-company-overview .company-overview__title,
    .panel-company-overview .company-overview__text {
        text-align: center !important;
    }

    .panel-company-overview .company-overview__globe {
        position: static;
        width: min(170px, 44vw);
        margin: 0 auto 8px;
        opacity: 0.9;
        transform: none !important;
        grid-row: 1;
    }
}

/* Requested mobile line-break refinements */
.vision-copy__line-break {
    display: inline;
    white-space: normal;
}

.vision-copy__ko-keep {
    white-space: nowrap;
}

.vision-copy__ko-line {
    max-width: none !important;
}

.vision-copy__ko-line-first {
    white-space: nowrap;
}

@media (max-width: 860px) {
    .vision-copy__ko-line-first {
        white-space: normal;
    }
}

.text-nowrap {
    white-space: normal;
}

@media (max-width: 860px) {
    .text-nowrap {
        white-space: nowrap;
    }

    .vision-copy__line-break {
        display: block;
        white-space: nowrap;
    }

    .business-service-card:first-child .business-service-card__footer > span,
    .panel-contact-quote .quote-contact__note {
        white-space: nowrap;
        font-size: clamp(12px, 3.2vw, 15px);
    }

    .panel-contact-quote .quote-contact__note {
        max-width: 100%;
        padding-right: 14px;
        padding-left: 14px;
    }
}

/* Product summary footer alignment */
.panel-products-showcase .product-card.product-card--summary {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.panel-products-showcase .product-card__footer {
    margin-top: auto;
}

@media (max-width: 860px) {
    .panel-products-showcase .product-card.product-card--summary {
        display: grid;
    }
}

/* Mobile hero tagline wrapping */
@media (max-width: 860px) {
    .panel-intro .hero-copy--tagline {
        max-width: 100%;
        word-break: keep-all;
        overflow-wrap: normal;
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Mobile company overview text readability */
@media (max-width: 860px) {
    .lang-ko .panel-company-overview .company-overview__text {
        word-break: keep-all;
        max-width: min(340px, 100%) !important;
        text-align: center !important;
        overflow-wrap: break-word;
        line-height: 1.72 !important;
    }

    .lang-ko .panel-company-overview .company-overview__nowrap {
        white-space: normal !important;
    }
}

/* Desktop fixed canvas scaled to viewport */
@media (min-width: 861px) {
    html,
    body {
        min-width: 0 !important;
        width: 100%;
        overflow-x: hidden;
    }

    body.page-home {
        --home-desktop-scale: 1;
    }

    .page-home .site-main {
        width: 1920px !important;
        min-width: 1920px !important;
        max-width: 1920px !important;
        margin: 0 !important;
        overflow: visible !important;
        zoom: var(--home-desktop-scale);
    }

    .page-home .home-panel {
        width: 1920px !important;
        min-width: 1920px !important;
        max-width: 1920px !important;
        height: 1080px !important;
        min-height: 1080px !important;
        max-height: 1080px !important;
        margin: 0 !important;
        overflow: hidden !important;
    }

    .page-home .home-panel .home-panel__inner {
        width: 1920px !important;
        min-width: 1920px !important;
        max-width: 1920px !important;
        height: 1080px !important;
        min-height: 1080px !important;
        max-height: 1080px !important;
        margin: 0 auto !important;
        overflow: hidden !important;
    }
}

/* Home video hero */
.page-home .panel-intro {
    background-image: none;
    background-color: #000000;
}

.page-home .panel-intro__video-stage {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #000000;
    pointer-events: none;
}

.page-home .panel-intro__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0;
    backface-visibility: hidden;
    transform: none;
    filter: contrast(1.06) saturate(1.02) brightness(1.01);
    transition: opacity 2.8s cubic-bezier(0.45, 0, 0.2, 1);
    will-change: opacity;
}

.page-home .panel-intro__video[data-video-index="1"] {
    filter: contrast(1.06) saturate(1.02) brightness(1.01);
}

.page-home .panel-intro__video.is-active {
    opacity: 1;
}

.page-home .panel-intro::before,
.page-home .panel-intro::after {
    z-index: 1;
}

.page-home .panel-intro > :not(.panel-intro__video-stage) {
    position: relative;
    z-index: 2;
}

@media (max-width: 860px) {
    .page-home .panel-intro__video {
        object-fit: cover;
        object-position: center center;
    }
}

/* Company overview first line fit */
.lang-ko .panel-company-overview .company-overview__text:first-of-type {
    max-width: min(960px, calc(100% - 650px));
}

@media (min-width: 861px) and (max-width: 1400px) {
    .lang-ko .panel-company-overview .company-overview__text:first-of-type {
        max-width: min(860px, calc(100% - 500px));
    }
}

/* Home snap viewport alignment refinements */
@media (min-width: 861px) {
    .page-home .panel-company-overview .company-overview {
        top: 45%;
    }

    .page-home .panel-company-overview .company-overview__globe {
        top: 51%;
        width: clamp(440px, 30vw, 610px);
    }

    .page-home .panel-core-services .home-panel__inner {
        display: grid;
        align-items: center;
    }

    .page-home .core-services {
        padding-top: 0;
        padding-bottom: 0;
        transform: translateY(-34px);
    }

    .page-home .core-services__cards {
        margin-top: 76px;
    }

    .page-home .core-service-card {
        min-height: 320px;
        padding-top: 42px;
        padding-bottom: 34px;
    }

    .page-home .core-service-card__icon {
        width: 104px;
        height: 104px;
        margin-bottom: 30px;
    }
}

@media (min-width: 861px) and (max-width: 1400px) {
    .page-home .panel-company-overview .company-overview {
        top: 44%;
    }

    .page-home .panel-company-overview .company-overview__globe {
        top: 50%;
        width: clamp(330px, 30vw, 470px);
    }

    .page-home .core-services {
        transform: translateY(-26px);
    }

    .page-home .core-services__cards {
        margin-top: 56px;
    }
}

/* Home snap content fit refinements */
@media (min-width: 861px) {
    .page-home .panel-business-services .home-panel__inner,
    .page-home .panel-business-safety .home-panel__inner,
    .page-home .panel-products-showcase .home-panel__inner,
    .page-home .panel-contact-quote .home-panel__inner {
        display: grid;
        align-items: center;
    }

    .page-home .business-services,
    .page-home .products-showcase,
    .page-home .quote-contact {
        transform: translateY(-18px);
    }

    .page-home .business-services {
        gap: 54px;
    }

    .page-home .business-service-card {
        min-height: 318px;
        padding: 38px 42px 32px;
    }

    .page-home .business-service-card h3 {
        margin: 30px 0 20px;
    }

    .page-home .business-service-card p {
        font-size: 16px;
        line-height: 1.56;
    }

    .page-home .business-service-card__footer {
        margin-top: 24px;
        padding-top: 20px;
    }

    .page-home .business-safety {
        align-content: center;
    }

    .page-home .panel-business-safety .business-safety__rate {
        font-size: 104px;
    }

    .page-home .panel-business-safety .business-safety__label {
        margin-top: 18px;
        font-size: 30px;
    }

    .page-home .panel-business-safety .business-safety__title {
        margin-top: 30px;
        font-size: 42px;
    }

    .page-home .panel-business-safety .business-safety__text {
        margin-top: 28px;
        font-size: 19px;
        line-height: 1.42;
    }

    .page-home .business-safety__badges {
        padding-top: 18px;
    }

    .page-home .business-safety__trust {
        margin-top: 14px;
        gap: 22px;
    }

    .page-home .safety-trust-card {
        min-height: 230px;
        padding: 26px 24px 24px;
    }

    .page-home .safety-trust-card img {
        width: 78px;
        height: 78px;
        margin-bottom: 18px;
    }

    .page-home .safety-trust-card h3 {
        font-size: 23px;
    }

    .page-home .safety-trust-card p {
        margin-top: 10px;
        font-size: 15px;
        line-height: 1.5;
    }

    .page-home .products-showcase {
        gap: 48px;
    }

    .page-home .products-showcase__frame {
        gap: 26px;
    }

    .page-home .product-card.product-card--summary {
        min-height: 440px;
        padding: 30px 32px 26px;
    }

    .page-home .product-card__icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .page-home .panel-products-showcase .product-card h3 {
        margin: 14px 0 20px;
        font-size: clamp(22px, 1.8vw, 28px);
    }

    .page-home .product-card--summary ul,
    .page-home .product-card--summary p {
        font-size: 15px;
        line-height: 1.5;
    }

    .page-home .product-card--summary ul {
        gap: 10px;
    }

    .page-home .product-card__footer {
        padding-top: 20px;
    }

    .page-home .panel-contact-quote .home-panel__inner {
        padding: 0 58px;
    }

    .page-home .quote-contact {
        width: min(100%, 1000px);
        transform: translateY(-22px);
    }

    .page-home .panel-contact-quote .quote-contact__header {
        gap: 10px;
        margin-bottom: 28px;
    }

    .page-home .panel-contact-quote .quote-contact__title {
        font-size: clamp(34px, 3.1vw, 44px);
        line-height: 1.12;
    }

    .page-home .panel-contact-quote .quote-contact__lead {
        font-size: 17px;
        line-height: 1.32;
    }

    .page-home .panel-contact-quote .quote-contact__note {
        min-height: 32px;
        padding: 0 18px;
        font-size: 13px;
    }

    .page-home .quote-contact__layout {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 30px;
    }

    .page-home .quote-form {
        padding: 28px 30px 26px;
        gap: 16px;
    }

    .page-home .quote-form__grid {
        gap: 16px 16px;
    }

    .page-home .quote-field > span {
        margin-bottom: 7px;
        font-size: 13px;
    }

    .page-home .quote-field input,
    .page-home .quote-field textarea,
    .page-home .quote-field select {
        min-height: 42px;
        padding: 9px 12px;
        font-size: 14px;
    }

    .page-home .quote-field textarea {
        min-height: 82px;
    }

    .page-home .quote-form__submit {
        min-height: 48px;
        font-size: 15px;
    }

    .page-home .quote-contact__side {
        gap: 18px;
    }

    .page-home .quote-info-card {
        padding: 24px 24px 22px;
    }

    .page-home .quote-info-card h3 {
        margin-bottom: 18px;
        font-size: 21px;
    }

    .page-home .quote-info-card p {
        font-size: 14px;
        line-height: 1.48;
    }
}

@media (min-width: 861px) and (max-width: 1400px) {
    .page-home .business-services {
        gap: 42px;
        transform: translateY(-14px);
    }

    .page-home .business-service-card {
        min-height: 300px;
        padding: 32px 34px 28px;
    }

    .page-home .business-service-card h3 {
        margin: 24px 0 18px;
    }

    .page-home .panel-business-safety .business-safety__rate {
        font-size: 90px;
    }

    .page-home .panel-business-safety .business-safety__title {
        font-size: 38px;
    }

    .page-home .safety-trust-card {
        min-height: 210px;
    }

    .page-home .products-showcase {
        gap: 38px;
        transform: translateY(-14px);
    }

    .page-home .products-showcase__frame {
        gap: 20px;
    }

    .page-home .product-card.product-card--summary {
        min-height: 405px;
        padding: 26px 26px 22px;
    }

    .page-home .quote-contact {
        width: min(100%, 960px);
        transform: translateY(-16px);
    }

    .page-home .panel-contact-quote .quote-contact__header {
        margin-bottom: 22px;
    }

    .page-home .quote-contact__layout {
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 24px;
    }

    .page-home .quote-form {
        padding: 24px 26px 22px;
    }

    .page-home .quote-field textarea {
        min-height: 76px;
    }

    .page-home .quote-info-card {
        padding: 22px 22px 20px;
    }
}

/* Home page scroll snap */
html.page-home {
    scroll-snap-type: y mandatory;
    scroll-padding-top: 0;
    scroll-behavior: smooth;
}

html.page-home .home-panel {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

@media (max-width: 860px) {
    html.page-home {
        scroll-padding-top: 0;
    }
}

@media (max-width: 420px) {
    html.page-home {
        scroll-padding-top: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html.page-home {
        scroll-behavior: auto;
    }
}

/* Unified section subtitle badges */
.ceo-message__eyebrow,
.vision-copy__eyebrow,
.products-showcase__eyebrow,
.quote-contact__eyebrow {
    display: inline-flex !important;
    width: max-content;
    min-height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #edf3ff;
    color: var(--primary) !important;
    padding: 6px 15px;
    font-size: 15px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    text-shadow: none !important;
}

.products-showcase__header,
.panel-contact-quote .quote-contact__header {
    justify-items: center;
}

@media (max-width: 860px) {
    .ceo-message__eyebrow,
    .vision-copy__eyebrow,
    .products-showcase__eyebrow,
    .quote-contact__eyebrow {
        min-height: 26px;
        padding: 5px 13px;
        font-size: 13px !important;
    }
}

/* Subtitle labels without badge backgrounds */
.ceo-message__eyebrow,
.vision-copy__eyebrow,
.products-showcase__eyebrow,
.quote-contact__eyebrow {
    display: block !important;
    width: auto;
    min-height: 0;
    border-radius: 0;
    background: transparent !important;
    padding: 0 !important;
    color: var(--primary) !important;
    font-size: 16px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    text-shadow: none !important;
    transform: none !important;
}

.ceo-message__eyebrow {
    margin: 0 0 28px !important;
}

.vision-copy__title {
    margin-top: 28px !important;
}

.products-showcase__header,
.panel-contact-quote .quote-contact__header {
    gap: 28px !important;
}

.products-showcase__eyebrow,
.quote-contact__eyebrow {
    margin: 0 !important;
}

@media (max-width: 860px) {
    .ceo-message__eyebrow,
    .vision-copy__eyebrow,
    .products-showcase__eyebrow,
    .quote-contact__eyebrow {
        font-size: 13px !important;
    }

    .ceo-message__eyebrow {
        margin-bottom: 20px !important;
    }

    .vision-copy__title {
        margin-top: 20px !important;
    }

    .products-showcase__header,
    .panel-contact-quote .quote-contact__header {
        gap: 20px !important;
    }
}

/* Unified body copy weight except company overview */
.panel-intro .hero-copy,
.core-service-card p,
.ceo-message__body p,
.vision-copy__body p,
.vision-quote p,
.business-service-card p,
.panel-business-safety .business-safety__text,
.safety-trust-card p,
.panel-products-showcase .products-showcase__lead,
.product-card--summary ul,
.product-card--summary li,
.product-card--summary p,
.product-card__footer,
.panel-contact-quote .quote-contact__lead,
.quote-info-card p,
.business-detail__hero p,
.origin-card p,
.spec-table__row > div,
.partner-card p,
.business-detail__cta p {
    font-weight: 500 !important;
}

/* CEO/Vision body weight and subtitle-body spacing consistency */
.ceo-message__body p,
.vision-copy__body p {
    font-weight: 500 !important;
}

.ceo-message__body,
.vision-copy__body {
    margin-top: 28px !important;
    padding-top: 0 !important;
}

.vision-copy__gap {
    height: 0 !important;
}

@media (max-width: 860px) {
    .ceo-message__body,
    .vision-copy__body {
        margin-top: 20px !important;
    }
}

/* Company page-2 weight restore and Vision spacing tune */
.panel-company-overview .company-overview__headline,
.company-overview__title {
    font-weight: 600;
}

.panel-company-overview .company-overview__text {
    font-weight: 600 !important;
}

.vision-layout {
    gap: clamp(104px, 9vw, 168px);
}

.vision-challenges {
    margin-top: 48px;
}

@media (min-width: 861px) and (max-width: 1400px) {
    .vision-layout {
        gap: clamp(78px, 7vw, 118px);
    }

    .vision-challenges {
        margin-top: 40px;
    }
}

@media (max-width: 860px) {
    .vision-layout {
        gap: 36px !important;
    }

    .vision-challenges {
        margin-top: 14px;
    }
}


/* Final home snap viewport fit */
@media (min-width: 861px) {
    .page-home .home-panel:not(.panel-intro) .home-panel__inner {
        display: grid !important;
        align-items: center !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .page-home .ceo-message,
    .page-home .vision-layout {
        transform: translateY(-8px);
    }

    .page-home .business-services,
    .page-home .products-showcase {
        transform: translateY(-18px) !important;
    }

    .page-home .products-showcase__header {
        gap: 16px !important;
        margin-bottom: 0 !important;
    }

    .page-home .products-showcase {
        gap: 46px !important;
    }

    .page-home .product-card.product-card--summary {
        min-height: 430px !important;
    }

    .page-home .panel-contact-quote .home-panel__inner {
        padding-right: 58px !important;
        padding-left: 58px !important;
    }

    .page-home .quote-contact {
        width: min(100%, 1000px) !important;
        transform: translateY(-24px) !important;
    }

    .page-home .panel-contact-quote .quote-contact__header {
        gap: 10px !important;
        margin-bottom: 26px !important;
    }

    .page-home .panel-contact-quote .quote-contact__title {
        font-size: clamp(34px, 3.1vw, 44px) !important;
        line-height: 1.12 !important;
    }

    .page-home .panel-contact-quote .quote-contact__lead {
        font-size: 17px !important;
        line-height: 1.32 !important;
    }

    .page-home .panel-contact-quote .quote-contact__note {
        min-height: 32px !important;
        padding: 0 18px !important;
        font-size: 13px !important;
    }

    .page-home .quote-contact__layout {
        grid-template-columns: minmax(0, 1fr) 300px !important;
        gap: 30px !important;
    }

    .page-home .quote-form {
        padding: 28px 30px 26px !important;
        gap: 16px !important;
    }

    .page-home .quote-form__grid {
        gap: 16px !important;
    }

    .page-home .quote-field input,
    .page-home .quote-field textarea,
    .page-home .quote-field select {
        min-height: 42px !important;
        padding: 9px 12px !important;
        font-size: 14px !important;
    }

    .page-home .quote-field textarea {
        min-height: 82px !important;
    }

    .page-home .quote-form__submit {
        min-height: 48px !important;
        font-size: 15px !important;
    }

    .page-home .quote-contact__side {
        gap: 18px !important;
    }

    .page-home .quote-info-card {
        padding: 24px 24px 22px !important;
    }
}

@media (min-width: 861px) and (max-width: 1400px) {
    .page-home .ceo-message,
    .page-home .vision-layout {
        transform: translateY(-4px);
    }

    .page-home .business-services,
    .page-home .products-showcase {
        transform: translateY(-12px) !important;
    }

    .page-home .product-card.product-card--summary {
        min-height: 398px !important;
    }

    .page-home .quote-contact {
        width: min(100%, 940px) !important;
        transform: translateY(-14px) !important;
    }

    .page-home .panel-contact-quote .quote-contact__header {
        margin-bottom: 20px !important;
    }

    .page-home .quote-contact__layout {
        grid-template-columns: minmax(0, 1fr) 276px !important;
        gap: 22px !important;
    }

    .page-home .quote-form {
        padding: 22px 24px 20px !important;
    }

    .page-home .quote-field textarea {
        min-height: 72px !important;
    }
}


/* Final home snap position tuning */
@media (min-width: 861px) {
    .page-home .ceo-message {
        transform: translateY(-24px) !important;
    }

    .page-home .vision-layout {
        transform: translateY(-8px) !important;
    }

    .page-home .business-safety {
        transform: translateY(-24px) !important;
    }

    .page-home .quote-contact {
        width: min(100%, 1040px) !important;
        transform: translateY(-18px) !important;
    }

    .page-home .panel-contact-quote .quote-contact__header {
        gap: 12px !important;
        margin-bottom: 30px !important;
    }

    .page-home .panel-contact-quote .quote-contact__title {
        font-size: clamp(36px, 3.3vw, 46px) !important;
        line-height: 1.13 !important;
    }

    .page-home .panel-contact-quote .quote-contact__lead {
        font-size: 18px !important;
        line-height: 1.35 !important;
    }

    .page-home .panel-contact-quote .quote-contact__note {
        min-height: 34px !important;
        padding: 0 20px !important;
        font-size: 14px !important;
    }

    .page-home .quote-contact__layout {
        grid-template-columns: minmax(0, 1fr) 320px !important;
        gap: 34px !important;
    }

    .page-home .quote-form {
        padding: 32px 34px 30px !important;
        gap: 18px !important;
    }

    .page-home .quote-form__grid {
        gap: 18px !important;
    }

    .page-home .quote-field input,
    .page-home .quote-field textarea,
    .page-home .quote-field select {
        min-height: 44px !important;
        padding: 10px 14px !important;
        font-size: 15px !important;
    }

    .page-home .quote-field textarea {
        min-height: 90px !important;
    }

    .page-home .quote-form__submit {
        min-height: 52px !important;
        font-size: 16px !important;
    }

    .page-home .quote-contact__side {
        gap: 20px !important;
    }

    .page-home .quote-info-card {
        padding: 27px 28px 25px !important;
    }
}

@media (min-width: 861px) and (max-width: 1400px) {
    .page-home .ceo-message {
        transform: translateY(-18px) !important;
    }

    .page-home .business-safety {
        transform: translateY(-18px) !important;
    }

    .page-home .quote-contact {
        width: min(100%, 980px) !important;
        transform: translateY(-10px) !important;
    }

    .page-home .panel-contact-quote .quote-contact__header {
        margin-bottom: 24px !important;
    }

    .page-home .quote-contact__layout {
        grid-template-columns: minmax(0, 1fr) 292px !important;
        gap: 26px !important;
    }

    .page-home .quote-form {
        padding: 26px 28px 24px !important;
    }

    .page-home .quote-field textarea {
        min-height: 78px !important;
    }
}

/* Indonesian layout overflow fixes */
.lang-id {
    overflow-wrap: anywhere;
}

.lang-id .hero-copy,
.lang-id .company-overview__text,
.lang-id .ceo-message__body p,
.lang-id .vision-copy__body p,
.lang-id .business-service-card p,
.lang-id .business-safety__text,
.lang-id .product-card--summary li,
.lang-id .product-card--summary p,
.lang-id .quote-contact__lead,
.lang-id .quote-contact__note,
.lang-id .quote-info-card p,
.lang-id .business-detail p {
    word-break: normal;
    overflow-wrap: break-word;
}

.lang-id .core-service-card h3,
.lang-id .ceo-message__lead,
.lang-id .company-overview__nowrap,
.lang-id .quote-contact__note {
    white-space: normal !important;
}

.lang-id .panel-company-overview .company-overview__headline {
    font-size: clamp(54px, 4.55vw, 82px) !important;
    line-height: 1.08 !important;
}

.lang-id .ceo-message__title {
    font-size: clamp(44px, 3.9vw, 66px) !important;
    line-height: 1.12 !important;
}

.lang-id .vision-copy__title {
    font-size: clamp(30px, 2.65vw, 44px) !important;
    line-height: 1.16 !important;
}

.lang-id .vision-copy__title span:last-child {
    white-space: normal !important;
}

.lang-id .vision-copy__line-break {
    display: inline !important;
}

.lang-id .panel-business-services .business-services__title,
.lang-id .panel-products-showcase .products-showcase__title,
.lang-id .panel-contact-quote .quote-contact__title {
    font-size: clamp(32px, 2.9vw, 42px) !important;
    line-height: 1.14 !important;
}

.lang-id .business-service-card h3 {
    font-size: clamp(21px, 1.55vw, 26px) !important;
    line-height: 1.22 !important;
}

.lang-id .business-service-card p {
    font-size: 15px !important;
    line-height: 1.48 !important;
}

.lang-id .business-service-card__footer span {
    min-width: 0;
    font-size: 13px !important;
    line-height: 1.35 !important;
    overflow-wrap: break-word;
}

.lang-id .panel-business-safety .business-safety__title {
    font-size: 38px !important;
    line-height: 1.18 !important;
}

.lang-id .panel-business-safety .business-safety__text {
    font-size: 17px !important;
    line-height: 1.38 !important;
}

.lang-id .safety-trust-card h3 {
    font-size: 21px !important;
    line-height: 1.22 !important;
}

.lang-id .safety-trust-card p {
    font-size: 14px !important;
}

.lang-id .panel-products-showcase .product-card h3 {
    font-size: clamp(20px, 1.45vw, 24px) !important;
    line-height: 1.2 !important;
}

.lang-id .product-card--summary ul,
.lang-id .product-card--summary li,
.lang-id .product-card--summary p {
    font-size: 14px !important;
    line-height: 1.42 !important;
}

.lang-id .product-card--summary ul {
    gap: 8px !important;
}

.lang-id .product-card__footer {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 7px !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
}

.lang-id .panel-contact-quote .quote-contact__lead {
    font-size: 16px !important;
    line-height: 1.3 !important;
}

.lang-id .panel-contact-quote .quote-contact__note {
    min-height: 0 !important;
    padding: 7px 18px !important;
    font-size: 12.5px !important;
    line-height: 1.35 !important;
}

.lang-id .quote-field > span {
    font-size: 12.5px !important;
    line-height: 1.25 !important;
}

.lang-id .quote-field input,
.lang-id .quote-field textarea,
.lang-id .quote-field select {
    font-size: 13.5px !important;
}

.lang-id .quote-form__submit {
    font-size: 14px !important;
}

.lang-id .quote-info-card h3 {
    font-size: 19px !important;
}

.lang-id .quote-info-card p {
    font-size: 13px !important;
    line-height: 1.42 !important;
}

.lang-id .business-detail__hero h1 {
    font-size: clamp(30px, 3.2vw, 40px) !important;
}

@media (min-width: 861px) and (max-width: 1400px) {
    .lang-id .ceo-message__title {
        font-size: clamp(40px, 3.7vw, 54px) !important;
    }

    .lang-id .vision-copy__title {
        font-size: clamp(28px, 2.8vw, 36px) !important;
    }

    .lang-id .panel-company-overview .company-overview__headline {
        font-size: clamp(44px, 4.1vw, 62px) !important;
    }

    .lang-id .business-service-card h3,
    .lang-id .panel-products-showcase .product-card h3 {
        font-size: 21px !important;
    }

    .lang-id .business-service-card p {
        font-size: 14px !important;
    }

    .lang-id .product-card--summary ul,
    .lang-id .product-card--summary li,
    .lang-id .product-card--summary p {
        font-size: 13px !important;
    }
}

@media (min-width: 861px) {
    .lang-id .core-service-card h3 {
        font-size: clamp(13px, 0.95vw, 15px) !important;
        line-height: 1.15 !important;
        letter-spacing: 0 !important;
        white-space: nowrap !important;
    }

    .lang-id .business-service-card h3,
    .lang-id .safety-trust-card h3,
    .lang-id .panel-products-showcase .product-card h3,
    .lang-id .quote-info-card h3 {
        font-size: clamp(15px, 1.08vw, 18px) !important;
        line-height: 1.16 !important;
        letter-spacing: 0 !important;
        white-space: nowrap !important;
    }
}
@media (min-width: 861px) {
    .lang-id .core-service-card,
    .lang-id .business-service-card,
    .lang-id .product-card.product-card--summary,
    .lang-id .safety-trust-card,
    .lang-id .quote-info-card {
        min-width: 0 !important;
        overflow: hidden !important;
    }

    .lang-id .core-service-card h3,
    .lang-id .business-service-card h3,
    .lang-id .safety-trust-card h3,
    .lang-id .panel-products-showcase .product-card h3,
    .lang-id .quote-info-card h3 {
        max-width: 100% !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .lang-id .business-service-card p,
    .lang-id .business-service-card__footer span,
    .lang-id .business-safety__text,
    .lang-id .products-showcase__lead,
    .lang-id .product-card--summary li,
    .lang-id .product-card--summary p,
    .lang-id .product-card__footer,
    .lang-id .safety-trust-card p {
        max-width: 100% !important;
        overflow-wrap: anywhere !important;
        word-break: normal !important;
    }

    .lang-id .business-service-card__badge,
    .lang-id .product-card__badge,
    .lang-id .products-showcase__eyebrow,
    .lang-id .ceo-message__eyebrow,
    .lang-id .vision-copy__eyebrow,
    .lang-id .ceo-value-card__eyebrow {
        white-space: normal !important;
    }
}


@media (max-width: 860px) {
    .lang-id .panel-intro .hero-brand__main {
        font-size: 46px !important;
    }

    .lang-id .panel-intro .hero-brand__sub {
        font-size: 34px !important;
    }

    .lang-id .company-overview__headline,
    .lang-id .core-services__title,
    .lang-id .ceo-message__title,
    .lang-id .vision-copy__title,
    .lang-id .panel-business-services .business-services__title,
    .lang-id .panel-business-safety .business-safety__title,
    .lang-id .panel-products-showcase .products-showcase__title,
    .lang-id .panel-contact-quote .quote-contact__title {
        font-size: 26px !important;
        line-height: 1.18 !important;
    }

    .lang-id .core-service-card h3,
    .lang-id .business-service-card h3,
    .lang-id .panel-products-showcase .product-card h3,
    .lang-id .quote-info-card h3 {
        font-size: 18px !important;
    }

    .lang-id .hero-copy,
    .lang-id .company-overview__text,
    .lang-id .ceo-message__body p,
    .lang-id .vision-copy__body p,
    .lang-id .business-service-card p,
    .lang-id .business-safety__text,
    .lang-id .product-card--summary li,
    .lang-id .product-card--summary p,
    .lang-id .quote-contact__lead,
    .lang-id .quote-info-card p {
        font-size: 13.5px !important;
        line-height: 1.45 !important;
    }

    .lang-id .quote-field input,
    .lang-id .quote-field textarea,
    .lang-id .quote-field select {
        font-size: 13px !important;
    }
}

@media (max-width: 860px) {
    .lang-id .vision-copy__title {
        font-size: 24px !important;
        line-height: 1.18 !important;
    }
}

/* Mobile translated-language layout fit */
@media (max-width: 860px) {
    .lang-en,
    .lang-zh,
    .lang-id {
        overflow-x: hidden !important;
    }

    .lang-en .site-main,
    .lang-zh .site-main,
    .lang-id .site-main,
    .lang-en .home-panel,
    .lang-zh .home-panel,
    .lang-id .home-panel,
    .lang-en .home-panel__inner,
    .lang-zh .home-panel__inner,
    .lang-id .home-panel__inner,
    .lang-en .hero-text-block,
    .lang-zh .hero-text-block,
    .lang-id .hero-text-block,
    .lang-en .company-overview,
    .lang-zh .company-overview,
    .lang-id .company-overview,
    .lang-en .core-services,
    .lang-zh .core-services,
    .lang-id .core-services,
    .lang-en .ceo-message,
    .lang-zh .ceo-message,
    .lang-id .ceo-message,
    .lang-en .vision-layout,
    .lang-zh .vision-layout,
    .lang-id .vision-layout,
    .lang-en .business-services,
    .lang-zh .business-services,
    .lang-id .business-services,
    .lang-en .business-safety,
    .lang-zh .business-safety,
    .lang-id .business-safety,
    .lang-en .products-showcase,
    .lang-zh .products-showcase,
    .lang-id .products-showcase,
    .lang-en .quote-contact,
    .lang-zh .quote-contact,
    .lang-id .quote-contact {
        min-width: 0 !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .lang-en .home-panel:not(.panel-intro) .home-panel__inner,
    .lang-zh .home-panel:not(.panel-intro) .home-panel__inner,
    .lang-id .home-panel:not(.panel-intro) .home-panel__inner {
        padding-right: 16px !important;
        padding-left: 16px !important;
    }

    .lang-en .company-overview__headline,
    .lang-zh .company-overview__headline,
    .lang-id .company-overview__headline,
    .lang-en .core-services__title,
    .lang-zh .core-services__title,
    .lang-id .core-services__title,
    .lang-en .ceo-message__title,
    .lang-zh .ceo-message__title,
    .lang-id .ceo-message__title,
    .lang-en .vision-copy__title,
    .lang-zh .vision-copy__title,
    .lang-id .vision-copy__title,
    .lang-en .panel-business-services .business-services__title,
    .lang-zh .panel-business-services .business-services__title,
    .lang-id .panel-business-services .business-services__title,
    .lang-en .panel-business-safety .business-safety__title,
    .lang-zh .panel-business-safety .business-safety__title,
    .lang-id .panel-business-safety .business-safety__title,
    .lang-en .panel-products-showcase .products-showcase__title,
    .lang-zh .panel-products-showcase .products-showcase__title,
    .lang-id .panel-products-showcase .products-showcase__title,
    .lang-en .panel-contact-quote .quote-contact__title,
    .lang-zh .panel-contact-quote .quote-contact__title,
    .lang-id .panel-contact-quote .quote-contact__title {
        max-width: 100% !important;
        font-size: clamp(23px, 6.6vw, 27px) !important;
        line-height: 1.18 !important;
        letter-spacing: 0 !important;
        overflow-wrap: break-word !important;
        word-break: normal !important;
    }

    .lang-en .hero-copy,
    .lang-zh .hero-copy,
    .lang-id .hero-copy,
    .lang-en .company-overview__text,
    .lang-zh .company-overview__text,
    .lang-id .company-overview__text,
    .lang-en .ceo-message__body p,
    .lang-zh .ceo-message__body p,
    .lang-id .ceo-message__body p,
    .lang-en .vision-copy__body p,
    .lang-zh .vision-copy__body p,
    .lang-id .vision-copy__body p,
    .lang-en .vision-quote p,
    .lang-zh .vision-quote p,
    .lang-id .vision-quote p,
    .lang-en .business-service-card p,
    .lang-zh .business-service-card p,
    .lang-id .business-service-card p,
    .lang-en .business-safety__text,
    .lang-zh .business-safety__text,
    .lang-id .business-safety__text,
    .lang-en .products-showcase__lead,
    .lang-zh .products-showcase__lead,
    .lang-id .products-showcase__lead,
    .lang-en .product-card--summary li,
    .lang-zh .product-card--summary li,
    .lang-id .product-card--summary li,
    .lang-en .product-card--summary p,
    .lang-zh .product-card--summary p,
    .lang-id .product-card--summary p,
    .lang-en .quote-contact__lead,
    .lang-zh .quote-contact__lead,
    .lang-id .quote-contact__lead,
    .lang-en .quote-info-card p,
    .lang-zh .quote-info-card p,
    .lang-id .quote-info-card p {
        max-width: 100% !important;
        font-size: 13.5px !important;
        line-height: 1.48 !important;
        overflow-wrap: break-word !important;
        word-break: normal !important;
    }

    .lang-en .company-overview__nowrap,
    .lang-zh .company-overview__nowrap,
    .lang-id .company-overview__nowrap,
    .lang-en .ceo-message__lead,
    .lang-zh .ceo-message__lead,
    .lang-id .ceo-message__lead,
    .lang-en .vision-copy__title span:last-child,
    .lang-zh .vision-copy__title span:last-child,
    .lang-id .vision-copy__title span:last-child,
    .lang-en .vision-copy__line-break,
    .lang-zh .vision-copy__line-break,
    .lang-id .vision-copy__line-break,
    .lang-en .business-service-card__footer > span,
    .lang-zh .business-service-card__footer > span,
    .lang-id .business-service-card__footer > span,
    .lang-en .quote-contact__note,
    .lang-zh .quote-contact__note,
    .lang-id .quote-contact__note,
    .lang-en .text-nowrap,
    .lang-zh .text-nowrap,
    .lang-id .text-nowrap {
        white-space: normal !important;
    }

    .lang-en .vision-copy__line-break,
    .lang-zh .vision-copy__line-break,
    .lang-id .vision-copy__line-break {
        display: inline !important;
    }

    .lang-en .core-service-card h3,
    .lang-zh .core-service-card h3,
    .lang-id .core-service-card h3,
    .lang-en .business-service-card h3,
    .lang-zh .business-service-card h3,
    .lang-id .business-service-card h3,
    .lang-en .panel-products-showcase .product-card h3,
    .lang-zh .panel-products-showcase .product-card h3,
    .lang-id .panel-products-showcase .product-card h3,
    .lang-en .quote-info-card h3,
    .lang-zh .quote-info-card h3,
    .lang-id .quote-info-card h3 {
        font-size: 18px !important;
        line-height: 1.25 !important;
        overflow-wrap: break-word !important;
    }

    .lang-en .core-service-card,
    .lang-zh .core-service-card,
    .lang-id .core-service-card,
    .lang-en .business-service-card,
    .lang-zh .business-service-card,
    .lang-id .business-service-card,
    .lang-en .product-card.product-card--summary,
    .lang-zh .product-card.product-card--summary,
    .lang-id .product-card.product-card--summary,
    .lang-en .quote-form,
    .lang-zh .quote-form,
    .lang-id .quote-form,
    .lang-en .quote-info-card,
    .lang-zh .quote-info-card,
    .lang-id .quote-info-card {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        padding: 20px 16px !important;
    }

    .lang-en .business-services__cards,
    .lang-zh .business-services__cards,
    .lang-id .business-services__cards,
    .lang-en .products-showcase__frame,
    .lang-zh .products-showcase__frame,
    .lang-id .products-showcase__frame,
    .lang-en .quote-contact__layout,
    .lang-zh .quote-contact__layout,
    .lang-id .quote-contact__layout,
    .lang-en .quote-form__grid,
    .lang-zh .quote-form__grid,
    .lang-id .quote-form__grid {
        grid-template-columns: minmax(0, 1fr) !important;
        width: 100% !important;
        min-width: 0 !important;
        gap: 14px !important;
    }

    .page-home .vision-copy__title {
        width: 100% !important;
        max-width: 100% !important;
        font-size: clamp(24px, 6vw, 30px) !important;
        line-height: 1.22 !important;
        letter-spacing: 0 !important;
        word-break: keep-all !important;
        overflow-wrap: normal !important;
    }

    .page-home .vision-copy__title span,
    .page-home .vision-copy__title em,
    .page-home .vision-copy__line-break {
        word-break: keep-all !important;
        overflow-wrap: normal !important;
    }

    .page-home .vision-layout {
        padding-right: 16px !important;
        padding-left: 16px !important;
    }

    .lang-en .vision-values,
    .lang-zh .vision-values,
    .lang-id .vision-values {
        flex-wrap: wrap !important;
        gap: 6px !important;
    }

    .lang-en .vision-values li,
    .lang-zh .vision-values li,
    .lang-id .vision-values li {
        max-width: 100% !important;
        white-space: normal !important;
        font-size: 11.5px !important;
        line-height: 1.25 !important;
    }

    .lang-en .vision-challenge-card,
    .lang-zh .vision-challenge-card,
    .lang-id .vision-challenge-card {
        grid-template-columns: 34px minmax(0, 1fr) !important;
    }

    .lang-en .vision-challenge-card h4,
    .lang-zh .vision-challenge-card h4,
    .lang-id .vision-challenge-card h4 {
        font-size: 16px !important;
        line-height: 1.22 !important;
        overflow-wrap: break-word !important;
    }

    .lang-en .product-card__footer,
    .lang-zh .product-card__footer,
    .lang-id .product-card__footer,
    .lang-en .business-service-card__footer,
    .lang-zh .business-service-card__footer,
    .lang-id .business-service-card__footer {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 8px !important;
    }

    .lang-en .quote-contact__note,
    .lang-zh .quote-contact__note,
    .lang-id .quote-contact__note {
        min-height: 0 !important;
        padding: 8px 12px !important;
        font-size: 12px !important;
        line-height: 1.35 !important;
    }

    .lang-en .quote-field > span,
    .lang-zh .quote-field > span,
    .lang-id .quote-field > span {
        font-size: 12.5px !important;
        line-height: 1.25 !important;
    }

    .lang-en .quote-field input,
    .lang-zh .quote-field input,
    .lang-id .quote-field input,
    .lang-en .quote-field textarea,
    .lang-zh .quote-field textarea,
    .lang-id .quote-field textarea,
    .lang-en .quote-field select,
    .lang-zh .quote-field select,
    .lang-id .quote-field select {
        width: 100% !important;
        min-width: 0 !important;
        font-size: 13px !important;
    }
}
/* Final mobile typography normalization */
@media (max-width: 860px) {
    .page-home .hero-copy,
    .page-home .hero-copy--tagline,
    .page-home .hero-copy--lead,
    .page-home .company-overview__title,
    .page-home .ceo-message__lead,
    .page-home .panel-business-services .business-services__lead,
    .page-home .panel-products-showcase .products-showcase__lead,
    .page-home .panel-contact-quote .quote-contact__lead,
    .page-home .business-safety__label {
        max-width: 100% !important;
        font-size: 15px !important;
        line-height: 1.48 !important;
        font-weight: 600 !important;
        letter-spacing: 0 !important;
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
    }

    .page-home .ceo-message__eyebrow,
    .page-home .vision-copy__eyebrow,
    .page-home .products-showcase__eyebrow,
    .page-home .quote-contact__eyebrow,
    .page-home .business-services__eyebrow,
    .page-home .ceo-value-card__eyebrow,
    .page-home .business-service-card__badge,
    .page-home .product-card__badge {
        max-width: 100% !important;
        font-size: 12px !important;
        line-height: 1.28 !important;
        font-weight: 800 !important;
        letter-spacing: 0 !important;
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
    }

    .page-home .company-overview__text,
    .page-home .ceo-message__body p,
    .page-home .vision-copy__body p,
    .page-home .vision-quote p,
    .page-home .core-service-card p,
    .page-home .business-service-card p,
    .page-home .panel-business-safety .business-safety__text,
    .page-home .safety-trust-card p,
    .page-home .product-card--summary li,
    .page-home .product-card--summary p,
    .page-home .product-card__footer,
    .page-home .quote-contact__note,
    .page-home .quote-info-card p {
        max-width: 100% !important;
        font-size: 14px !important;
        line-height: 1.55 !important;
        font-weight: 500 !important;
        letter-spacing: 0 !important;
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
    }

    .page-home .vision-copy__title {
        font-size: clamp(24px, 6vw, 30px) !important;
        line-height: 1.22 !important;
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
    }
}


/* Final mobile section title hierarchy */
@media (max-width: 860px) {
    .page-home .panel-company-overview .company-overview__headline {
        max-width: 100% !important;
        font-size: clamp(31px, 8vw, 38px) !important;
        line-height: 1.14 !important;
        font-weight: 900 !important;
        letter-spacing: 0 !important;
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
    }

    .page-home .core-services__title,
    .page-home .ceo-message__title,
    .page-home .vision-copy__title,
    .page-home .panel-business-services .business-services__title,
    .page-home .panel-business-safety .business-safety__title,
    .page-home .panel-products-showcase .products-showcase__title,
    .page-home .panel-contact-quote .quote-contact__title {
        max-width: 100% !important;
        font-size: clamp(26px, 6.8vw, 32px) !important;
        line-height: 1.18 !important;
        font-weight: 800 !important;
        letter-spacing: 0 !important;
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
    }

    .page-home .ceo-message__title span,
    .page-home .vision-copy__title span,
    .page-home .vision-copy__title em,
    .page-home .vision-copy__line-break,
    .page-home .panel-business-safety .business-safety__title span {
        display: inline !important;
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
    }
}

/* Final section title hierarchy */
.page-home .panel-company-overview .company-overview__headline {
    max-width: 100% !important;
    font-size: clamp(62px, 5.1vw, 97px) !important;
    line-height: 1.06 !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
}

.page-home .core-services__title,
.page-home .ceo-message__title,
.page-home .vision-copy__title,
.page-home .panel-business-services .business-services__title,
.page-home .panel-business-safety .business-safety__title,
.page-home .panel-products-showcase .products-showcase__title,
.page-home .panel-contact-quote .quote-contact__title {
    max-width: 100% !important;
    font-size: clamp(46px, 3.2vw, 58px) !important;
    line-height: 1.14 !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
}

.page-home .ceo-message__title span,
.page-home .vision-copy__title span,
.page-home .vision-copy__title em,
.page-home .vision-copy__line-break,
.page-home .panel-business-safety .business-safety__title span {
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
}

@media (max-width: 860px) {
    .page-home .panel-company-overview .company-overview__headline {
        font-size: clamp(31px, 8vw, 38px) !important;
        line-height: 1.14 !important;
    }

    .page-home .core-services__title,
    .page-home .ceo-message__title,
    .page-home .vision-copy__title,
    .page-home .panel-business-services .business-services__title,
    .page-home .panel-business-safety .business-safety__title,
    .page-home .panel-products-showcase .products-showcase__title,
    .page-home .panel-contact-quote .quote-contact__title {
        font-size: clamp(26px, 6.8vw, 32px) !important;
        line-height: 1.18 !important;
    }

    .page-home .ceo-message__title span,
    .page-home .vision-copy__title span,
    .page-home .vision-copy__title em,
    .page-home .vision-copy__line-break,
    .page-home .panel-business-safety .business-safety__title span {
        display: inline !important;
    }
}

/* Final desktop section title hierarchy */
@media (min-width: 861px) {
    .page-home .panel-company-overview .company-overview__headline {
        font-size: 97px !important;
        line-height: 1.06 !important;
        font-weight: 900 !important;
        letter-spacing: 0 !important;
    }

    .page-home .core-services__title,
    .page-home .ceo-message__title,
    .page-home .vision-copy__title,
    .page-home .panel-business-services .business-services__title,
    .page-home .panel-business-safety .business-safety__title,
    .page-home .panel-products-showcase .products-showcase__title,
    .page-home .panel-contact-quote .quote-contact__title {
        font-size: 58px !important;
        line-height: 1.14 !important;
        font-weight: 800 !important;
        letter-spacing: 0 !important;
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
    }
}

/* Final mobile company overview and quote title refinements */
@media (max-width: 860px) {
    .page-home .panel-company-overview .company-overview__title {
        max-width: 100% !important;
        font-size: clamp(30px, 8vw, 42px) !important;
        line-height: 1.12 !important;
        font-weight: 700 !important;
        letter-spacing: 0 !important;
        white-space: nowrap !important;
        word-break: keep-all !important;
    }

    .page-home .panel-company-overview .company-overview__text br.company-overview__mobile-break {
        display: block !important;
    }

    .page-home .panel-contact-quote .quote-contact__title {
        font-size: clamp(21px, 5.6vw, 28px) !important;
        line-height: 1.18 !important;
        white-space: nowrap !important;
        word-break: keep-all !important;
        overflow-wrap: normal !important;
    }
}

/* Final mobile safety title two-line lock */
@media (max-width: 860px) {
    .page-home .panel-business-safety .business-safety__title {
        white-space: nowrap !important;
        font-size: clamp(26px, 6.8vw, 32px) !important;
        line-height: 1.18 !important;
    }

    .page-home .panel-business-safety .business-safety__title br {
        display: block !important;
    }
}

/* Final home three-video crossfade and clarity */
.page-home .panel-intro__video {
    z-index: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    opacity: 0;
    image-rendering: auto;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    filter: contrast(1.06) saturate(1.02) brightness(1.01);
    transition: opacity 3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    will-change: opacity;
}

.page-home .panel-intro__video[data-video-index="1"] {
    filter: contrast(1.06) saturate(1.02) brightness(1.01);
}

.page-home .panel-intro__video[data-video-index="2"] {
    filter: contrast(1.06) saturate(1.02) brightness(1.01);
}

.page-home .panel-intro__video.is-active {
    z-index: 1 !important;
    opacity: 1 !important;
}

/* Final home transition without previous-frame overlap */
.page-home .panel-intro__video.is-exiting {
    z-index: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: none !important;
}

/* Final home transition without black gap */
.page-home .panel-intro__video.is-entering {
    z-index: 2 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.page-home .panel-intro__video.is-exiting {
    visibility: visible !important;
}

/* Final home side alignment and footer snap behavior */
@media (min-width: 861px) {
    .page-home {
        --home-header-gutter: clamp(72px, 6.25vw, 120px);
    }

    .page-home .panel-intro .home-panel__inner,
    .page-home .home-panel:not(.panel-intro) .home-panel__inner {
        padding-left: var(--home-header-gutter) !important;
        padding-right: var(--home-header-gutter) !important;
    }
}

html.page-home .site-footer {
    scroll-snap-align: none;
}

/* Final main hero alignment to company overview */
@media (min-width: 861px) {
    .page-home .panel-intro .home-panel__inner,
    .page-home .home-panel:not(.panel-intro) .home-panel__inner {
        padding-left: 118px !important;
        padding-right: 118px !important;
    }

    .page-home .panel-intro .hero-text-block {
        left: 118px !important;
        text-align: left !important;
    }
}

/* Final wider home content gutters */
@media (min-width: 861px) {
    .page-home {
        --home-header-gutter: 150px;
    }

    .page-home .panel-intro .home-panel__inner,
    .page-home .home-panel:not(.panel-intro) .home-panel__inner {
        padding-left: 150px !important;
        padding-right: 150px !important;
    }

    .page-home .panel-intro .hero-text-block,
    .page-home .panel-company-overview .company-overview {
        left: 150px !important;
    }
}

/* Final hero overlay, dark copy, and button order spacing */
.page-home .panel-intro::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: rgba(255, 255, 255, 0.15) !important;
    z-index: 1 !important;
}

.page-home .panel-intro::after {
    display: none !important;
    content: none !important;
    background: none !important;
}

.page-home .panel-intro .hero-brand,
.page-home .panel-intro .hero-copy,
.page-home .panel-intro .hero-copy--tagline,
.page-home .panel-intro .hero-copy--lead {
    color: #2f343a !important;
    text-shadow: none !important;
}

.page-home .panel-intro .hero-brand__main,
.page-home .panel-intro .hero-brand__sub {
    color: #2c3138 !important;
    text-shadow: none !important;
}

.page-home .panel-intro .hero-actions {
    margin-top: 30px !important;
}

.page-home .panel-intro .hero-copy--lead {
    margin-top: 16px !important;
}

.page-home .panel-intro .hero-action--secondary {
    border-color: rgba(47, 52, 58, 0.34) !important;
    background: rgba(255, 255, 255, 0.52) !important;
    color: #2f343a !important;
}

.page-home .panel-intro .hero-action--secondary:hover {
    background: rgba(255, 255, 255, 0.68) !important;
}

/* Final darker hero overlay */
.page-home .panel-intro::before {
    background: rgba(255, 255, 255, 0.08) !important;
}

/* Final hero white typography with shadow separation */
.page-home .panel-intro .hero-brand,
.page-home .panel-intro .hero-copy,
.page-home .panel-intro .hero-copy--tagline,
.page-home .panel-intro .hero-copy--lead,
.page-home .panel-intro .hero-brand__main,
.page-home .panel-intro .hero-brand__sub {
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.44), 0 1px 2px rgba(0, 0, 0, 0.36) !important;
}

.page-home .panel-intro .hero-action--secondary {
    border-color: rgba(255, 255, 255, 0.72) !important;
    background: rgba(255, 255, 255, 0.14) !important;
    color: #ffffff !important;
}

.page-home .panel-intro .hero-action--secondary:hover {
    background: rgba(255, 255, 255, 0.24) !important;
}

/* Final hero palette text color */
.page-home .panel-intro .hero-brand,
.page-home .panel-intro .hero-copy,
.page-home .panel-intro .hero-copy--tagline,
.page-home .panel-intro .hero-copy--lead,
.page-home .panel-intro .hero-brand__main,
.page-home .panel-intro .hero-brand__sub {
    color: #2F3A4A !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.36), 0 2px 8px rgba(255, 255, 255, 0.22) !important;
}

.page-home .panel-intro .hero-action--secondary {
    border-color: rgba(47, 58, 74, 0.34) !important;
    background: rgba(255, 255, 255, 0.52) !important;
    color: #2F3A4A !important;
}

.page-home .panel-intro .hero-action--secondary:hover {
    background: rgba(255, 255, 255, 0.68) !important;
}

/* Final hero title emphasis shadow */
.page-home .panel-intro .hero-brand,
.page-home .panel-intro .hero-brand__main,
.page-home .panel-intro .hero-brand__sub {
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.32), 0 7px 18px rgba(20, 33, 61, 0.28) !important;
}

/* Final hero one-line lead and white secondary button */
.page-home .panel-intro .hero-copy--single-line {
    max-width: none !important;
    white-space: nowrap !important;
}

.page-home .panel-intro .hero-action--secondary {
    border: 0 !important;
    background: #ffffff !important;
    color: #2F3A4A !important;
}

.page-home .panel-intro .hero-action--secondary:hover {
    background: #F4F6F8 !important;
}

@media (max-width: 860px) {
    .page-home .panel-intro .hero-copy--single-line {
        white-space: normal !important;
    }
}


/* Final achromatic text palette */
:root {
    --text: #2F343A;
    --muted: #606872;
    --secondary: #20252B;
}

body {
    color: #2F343A;
}

.page-home :is(h1, h2, h3, h4, h5, h6, p, li, label, address, small, strong, b, span):not(.accent):not(.company-overview__initial):not(.product-card__badge):not(.hero-action):not(.quote-form__submit):not(.site-lang__code) {
    color: #2F343A !important;
}

.page-home :is(p, li, address, small, label):not(.quote-contact__eyebrow):not(.ceo-message__eyebrow):not(.vision-copy__eyebrow):not(.business-services__eyebrow):not(.products-showcase__eyebrow) {
    color: #525960 !important;
}

.page-home :is(h1, h2, h3, h4, h5, h6, strong, b):not(.accent):not(.company-overview__initial):not(.product-card__badge) {
    color: #20252B !important;
}

.page-home .panel-intro .hero-brand,
.page-home .panel-intro .hero-copy,
.page-home .panel-intro .hero-copy--tagline,
.page-home .panel-intro .hero-copy--lead,
.page-home .panel-intro .hero-brand__main,
.page-home .panel-intro .hero-brand__sub {
    color: #2F343A !important;
}

.page-home .company-overview__headline .accent,
.page-home .company-overview__initial,
.page-home .business-services__eyebrow,
.page-home .products-showcase__eyebrow,
.page-home .quote-contact__eyebrow,
.page-home .ceo-message__eyebrow,
.page-home .vision-copy__eyebrow,
.page-home .product-card__badge,
.page-home .quote-info-card h3,
.page-home .contact-icon {
    color: var(--primary) !important;
}

.page-home .hero-action,
.page-home .quote-form__submit {
    color: #ffffff !important;
}

.page-home .hero-action--secondary {
    color: #2F343A !important;
}


/* Final company overview label and softer typography */
.page-home .panel-company-overview .company-overview__title {
    display: inline-flex !important;
    align-items: center !important;
    width: auto !important;
    margin: 0 0 18px !important;
    padding: 7px 14px !important;
    border: 1px solid rgba(47, 52, 58, 0.16) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.64) !important;
    color: #606872 !important;
    font-size: clamp(13px, 0.9vw, 16px) !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
    white-space: nowrap !important;
    box-shadow: none !important;
}

.page-home .panel-company-overview .company-overview__initial {
    color: var(--primary) !important;
    font-weight: 800 !important;
}

.page-home .panel-company-overview .company-overview__headline {
    max-width: 720px !important;
    font-size: clamp(48px, 3.65vw, 70px) !important;
    line-height: 1.1 !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
}

.page-home .panel-company-overview .company-overview__text {
    max-width: min(760px, calc(100% - 650px)) !important;
    color: #525960 !important;
    font-weight: 300 !important;
}

.page-home .panel-company-overview .company-overview__headline + .company-overview__text {
    margin-top: 38px !important;
}

@media (max-width: 860px) {
    .page-home .panel-company-overview .company-overview__title {
        margin-bottom: 14px !important;
        padding: 6px 12px !important;
        font-size: 12px !important;
    }

    .page-home .panel-company-overview .company-overview__headline {
        max-width: 100% !important;
        font-size: clamp(27px, 7.1vw, 34px) !important;
        line-height: 1.16 !important;
        font-weight: 800 !important;
    }

    .page-home .panel-company-overview .company-overview__text {
        font-weight: 300 !important;
    }
}


/* Final earth2 globe and drifting cloud icons */
.page-home .panel-company-overview .company-overview__globe {
    overflow: visible !important;
    isolation: isolate !important;
}

.page-home .panel-company-overview .company-overview__earth {
    position: relative !important;
    z-index: 1 !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    filter: drop-shadow(0 18px 20px rgba(47, 52, 58, 0.16)) !important;
}

.page-home .panel-company-overview .company-overview__cloud {
    position: absolute !important;
    z-index: 2 !important;
    display: block !important;
    height: auto !important;
    object-fit: contain !important;
    pointer-events: none !important;
    opacity: 0.86 !important;
    filter: drop-shadow(0 12px 18px rgba(47, 52, 58, 0.12)) !important;
    will-change: transform, opacity !important;
}

.page-home .panel-company-overview .company-overview__cloud--one {
    top: 14% !important;
    left: -8% !important;
    width: clamp(130px, 13vw, 250px) !important;
    animation: company-cloud-drift-one 13s ease-in-out infinite !important;
}

.page-home .panel-company-overview .company-overview__cloud--two {
    right: -9% !important;
    bottom: 18% !important;
    width: clamp(120px, 12vw, 230px) !important;
    opacity: 0.78 !important;
    animation: company-cloud-drift-two 16s ease-in-out infinite !important;
}

@keyframes company-cloud-drift-one {
    0%, 100% {
        transform: translate3d(-10%, 0, 0) scale(0.98);
        opacity: 0.72;
    }

    50% {
        transform: translate3d(18%, -8%, 0) scale(1.03);
        opacity: 0.92;
    }
}

@keyframes company-cloud-drift-two {
    0%, 100% {
        transform: translate3d(10%, 2%, 0) scale(1.02);
        opacity: 0.68;
    }

    50% {
        transform: translate3d(-20%, -7%, 0) scale(0.98);
        opacity: 0.88;
    }
}

@media (max-width: 860px) {
    .page-home .panel-company-overview .company-overview__cloud--one {
        top: 9% !important;
        left: -12% !important;
        width: clamp(82px, 28vw, 130px) !important;
    }

    .page-home .panel-company-overview .company-overview__cloud--two {
        right: -12% !important;
        bottom: 12% !important;
        width: clamp(76px, 26vw, 120px) !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-home .panel-company-overview .company-overview__cloud {
        animation: none !important;
    }
}


/* Final larger opaque earth clouds */
.page-home .panel-company-overview .company-overview__cloud {
    opacity: 1 !important;
    filter: drop-shadow(0 14px 18px rgba(47, 52, 58, 0.16)) !important;
}

.page-home .panel-company-overview .company-overview__cloud--one {
    z-index: 0 !important;
    top: 3% !important;
    left: -12% !important;
    width: clamp(170px, 15vw, 300px) !important;
    animation: company-cloud-drift-one-large 14s ease-in-out infinite !important;
}

.page-home .panel-company-overview .company-overview__cloud--two {
    z-index: 3 !important;
    right: -11% !important;
    bottom: 2% !important;
    width: clamp(230px, 20vw, 390px) !important;
    opacity: 1 !important;
    animation: company-cloud-drift-two-large 17s ease-in-out infinite !important;
}

.page-home .panel-company-overview .company-overview__cloud--three {
    z-index: 3 !important;
    left: 41% !important;
    bottom: 30% !important;
    width: clamp(125px, 10vw, 210px) !important;
    opacity: 1 !important;
    animation: company-cloud-drift-three-large 15s ease-in-out infinite !important;
}

@keyframes company-cloud-drift-one-large {
    0%, 100% {
        transform: translate3d(-4%, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(7%, -3%, 0) scale(1.02);
    }
}

@keyframes company-cloud-drift-two-large {
    0%, 100% {
        transform: translate3d(3%, 1%, 0) scale(1);
    }

    50% {
        transform: translate3d(-7%, -3%, 0) scale(1.03);
    }
}

@keyframes company-cloud-drift-three-large {
    0%, 100% {
        transform: translate3d(-3%, 1%, 0) scale(1);
    }

    50% {
        transform: translate3d(8%, -4%, 0) scale(1.02);
    }
}

@media (max-width: 860px) {
    .page-home .panel-company-overview .company-overview__cloud--one {
        top: 0 !important;
        left: -18% !important;
        width: clamp(104px, 34vw, 160px) !important;
    }

    .page-home .panel-company-overview .company-overview__cloud--two {
        right: -17% !important;
        bottom: 0 !important;
        width: clamp(140px, 45vw, 220px) !important;
    }

    .page-home .panel-company-overview .company-overview__cloud--three {
        left: 42% !important;
        bottom: 31% !important;
        width: clamp(76px, 25vw, 122px) !important;
    }
}


/* Final two-cloud placement: larger and fully opaque */
.page-home .panel-company-overview .company-overview__cloud {
    opacity: 1 !important;
    filter: drop-shadow(0 16px 18px rgba(47, 52, 58, 0.18)) !important;
}

.page-home .panel-company-overview .company-overview__cloud--one {
    z-index: 0 !important;
    top: 2% !important;
    left: -17% !important;
    width: clamp(230px, 18vw, 360px) !important;
    opacity: 1 !important;
    animation: company-cloud-drift-back-final 15s ease-in-out infinite !important;
}

.page-home .panel-company-overview .company-overview__cloud--two {
    z-index: 3 !important;
    right: -17% !important;
    bottom: -2% !important;
    width: clamp(270px, 23vw, 450px) !important;
    opacity: 1 !important;
    animation: company-cloud-drift-front-final 18s ease-in-out infinite !important;
}

.page-home .panel-company-overview .company-overview__cloud--three {
    display: none !important;
}

@keyframes company-cloud-drift-back-final {
    0%, 100% {
        transform: translate3d(-2%, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(7%, -2%, 0) scale(1.025);
    }
}

@keyframes company-cloud-drift-front-final {
    0%, 100% {
        transform: translate3d(2%, 1%, 0) scale(1);
    }

    50% {
        transform: translate3d(-7%, -3%, 0) scale(1.03);
    }
}

@media (max-width: 860px) {
    .page-home .panel-company-overview .company-overview__cloud--one {
        top: -2% !important;
        left: -24% !important;
        width: clamp(132px, 43vw, 210px) !important;
    }

    .page-home .panel-company-overview .company-overview__cloud--two {
        right: -25% !important;
        bottom: -4% !important;
        width: clamp(168px, 56vw, 270px) !important;
    }
}


/* Final exact cloud canvas overlay matching provided assets */
.page-home .panel-company-overview .company-overview__globe {
    overflow: visible !important;
    isolation: auto !important;
}

.page-home .panel-company-overview .company-overview__earth {
    position: relative !important;
    z-index: 1 !important;
}

.page-home .panel-company-overview .company-overview__cloud {
    position: absolute !important;
    inset: -3% auto auto -3% !important;
    width: 106% !important;
    max-width: none !important;
    height: auto !important;
    opacity: 1 !important;
    object-fit: contain !important;
    filter: none !important;
    pointer-events: none !important;
    will-change: transform !important;
}

.page-home .panel-company-overview .company-overview__cloud--one {
    z-index: 2 !important;
    top: -3% !important;
    right: auto !important;
    bottom: auto !important;
    left: -3% !important;
    width: 106% !important;
    animation: company-cloud-layer-one-final 18s ease-in-out infinite !important;
}

.page-home .panel-company-overview .company-overview__cloud--two {
    z-index: 3 !important;
    top: -3% !important;
    right: auto !important;
    bottom: auto !important;
    left: -3% !important;
    width: 106% !important;
    animation: company-cloud-layer-two-final 20s ease-in-out infinite !important;
}

.page-home .panel-company-overview .company-overview__cloud--three {
    display: none !important;
}

@keyframes company-cloud-layer-one-final {
    0%, 100% {
        transform: translate3d(-0.5%, 0, 0);
    }

    50% {
        transform: translate3d(1.2%, -0.6%, 0);
    }
}

@keyframes company-cloud-layer-two-final {
    0%, 100% {
        transform: translate3d(0.4%, 0.2%, 0);
    }

    50% {
        transform: translate3d(-1.1%, -0.5%, 0);
    }
}

@media (max-width: 860px) {
    .page-home .panel-company-overview .company-overview__cloud,
    .page-home .panel-company-overview .company-overview__cloud--one,
    .page-home .panel-company-overview .company-overview__cloud--two {
        top: -3% !important;
        right: auto !important;
        bottom: auto !important;
        left: -3% !important;
        width: 106% !important;
    }
}


/* Final cropped two-cloud placement matching reference */
.page-home .panel-company-overview .company-overview__globe {
    overflow: visible !important;
    isolation: isolate !important;
}

.page-home .panel-company-overview .company-overview__earth {
    position: relative !important;
    z-index: 2 !important;
}

.page-home .panel-company-overview .company-overview__cloud {
    position: absolute !important;
    display: block !important;
    max-width: none !important;
    height: auto !important;
    opacity: 1 !important;
    object-fit: contain !important;
    filter: none !important;
    pointer-events: none !important;
    will-change: transform !important;
}

.page-home .panel-company-overview .company-overview__cloud--one {
    z-index: 1 !important;
    top: 13% !important;
    left: -14% !important;
    right: auto !important;
    bottom: auto !important;
    width: clamp(210px, 18vw, 360px) !important;
    animation: company-cloud-reference-back 18s ease-in-out infinite !important;
}

.page-home .panel-company-overview .company-overview__cloud--two {
    z-index: 3 !important;
    top: auto !important;
    left: auto !important;
    right: -10% !important;
    bottom: 3% !important;
    width: clamp(270px, 22vw, 440px) !important;
    animation: company-cloud-reference-front 20s ease-in-out infinite !important;
}

.page-home .panel-company-overview .company-overview__cloud--three {
    display: none !important;
}

@keyframes company-cloud-reference-back {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(8px, -4px, 0);
    }
}

@keyframes company-cloud-reference-front {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(-10px, -5px, 0);
    }
}

@media (max-width: 860px) {
    .page-home .panel-company-overview .company-overview__cloud--one {
        top: 12% !important;
        left: -17% !important;
        width: clamp(126px, 39vw, 210px) !important;
    }

    .page-home .panel-company-overview .company-overview__cloud--two {
        right: -13% !important;
        bottom: 2% !important;
        width: clamp(164px, 50vw, 270px) !important;
    }
}


/* Final reference-positioned original cloud layers */
.page-home .panel-company-overview .company-overview__globe {
    overflow: visible !important;
    isolation: isolate !important;
}

.page-home .panel-company-overview .company-overview__earth {
    position: relative !important;
    z-index: 2 !important;
}

.page-home .panel-company-overview .company-overview__cloud {
    position: absolute !important;
    display: block !important;
    max-width: none !important;
    height: auto !important;
    opacity: 1 !important;
    object-fit: contain !important;
    filter: none !important;
    pointer-events: none !important;
    will-change: transform !important;
}

.page-home .panel-company-overview .company-overview__cloud--one {
    z-index: 1 !important;
    top: -66% !important;
    left: -89% !important;
    right: auto !important;
    bottom: auto !important;
    width: 128% !important;
    animation: company-cloud-float-left-reference 12s ease-in-out infinite !important;
}

.page-home .panel-company-overview .company-overview__cloud--two {
    z-index: 3 !important;
    top: -27% !important;
    left: -25% !important;
    right: auto !important;
    bottom: auto !important;
    width: 150% !important;
    animation: company-cloud-float-front-reference 14s ease-in-out infinite !important;
}

.page-home .panel-company-overview .company-overview__cloud--three {
    display: none !important;
}

@keyframes company-cloud-float-left-reference {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(12px, -8px, 0) scale(1.015);
    }
}

@keyframes company-cloud-float-front-reference {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(-14px, -9px, 0) scale(1.012);
    }
}

@media (max-width: 860px) {
    .page-home .panel-company-overview .company-overview__cloud--one {
        top: -68% !important;
        left: -92% !important;
        width: 132% !important;
    }

    .page-home .panel-company-overview .company-overview__cloud--two {
        top: -28% !important;
        left: -27% !important;
        width: 154% !important;
    }
}


/* Final cloud depth adjustment */
.page-home .panel-company-overview .company-overview__cloud--one {
    z-index: 1 !important;
    top: -58% !important;
    left: -80% !important;
    width: 128% !important;
    animation: company-cloud-float-left-reference 12s ease-in-out infinite !important;
}

.page-home .panel-company-overview .company-overview__cloud--two {
    z-index: 3 !important;
    top: -23% !important;
    left: -20% !important;
    width: 136% !important;
    animation: company-cloud-float-front-reference 14s ease-in-out infinite !important;
}

@media (max-width: 860px) {
    .page-home .panel-company-overview .company-overview__cloud--one {
        top: -60% !important;
        left: -83% !important;
        width: 132% !important;
    }

    .page-home .panel-company-overview .company-overview__cloud--two {
        top: -24% !important;
        left: -21% !important;
        width: 140% !important;
    }
}


/* Final cloud drift and size refinement */
.page-home .panel-company-overview .company-overview__cloud--one {
    top: -58% !important;
    left: -72% !important;
    width: 128% !important;
    animation: company-cloud-drift-float-back 10.5s ease-in-out infinite !important;
}

.page-home .panel-company-overview .company-overview__cloud--two {
    top: -19% !important;
    left: -12% !important;
    width: 122% !important;
    animation: company-cloud-drift-float-front 12.5s ease-in-out infinite !important;
}

@keyframes company-cloud-drift-float-back {
    0% {
        transform: translate3d(-10px, 4px, 0) scale(1);
    }

    35% {
        transform: translate3d(18px, -10px, 0) scale(1.018);
    }

    70% {
        transform: translate3d(8px, 8px, 0) scale(1.006);
    }

    100% {
        transform: translate3d(-10px, 4px, 0) scale(1);
    }
}

@keyframes company-cloud-drift-float-front {
    0% {
        transform: translate3d(8px, 5px, 0) scale(1);
    }

    40% {
        transform: translate3d(-20px, -12px, 0) scale(1.015);
    }

    75% {
        transform: translate3d(-8px, 7px, 0) scale(1.006);
    }

    100% {
        transform: translate3d(8px, 5px, 0) scale(1);
    }
}

@media (max-width: 860px) {
    .page-home .panel-company-overview .company-overview__cloud--one {
        top: -60% !important;
        left: -75% !important;
        width: 132% !important;
    }

    .page-home .panel-company-overview .company-overview__cloud--two {
        top: -20% !important;
        left: -14% !important;
        width: 126% !important;
    }
}


/* Final softer cloud floating motion */
.page-home .panel-company-overview .company-overview__cloud--one {
    animation: company-cloud-drift-float-back-soft 13s ease-in-out infinite !important;
}

.page-home .panel-company-overview .company-overview__cloud--two {
    animation: company-cloud-drift-float-front-soft 15s ease-in-out infinite !important;
}

@keyframes company-cloud-drift-float-back-soft {
    0% {
        transform: translate3d(-4px, 2px, 0) scale(1);
    }

    45% {
        transform: translate3d(8px, -5px, 0) scale(1.006);
    }

    75% {
        transform: translate3d(4px, 4px, 0) scale(1.002);
    }

    100% {
        transform: translate3d(-4px, 2px, 0) scale(1);
    }
}

@keyframes company-cloud-drift-float-front-soft {
    0% {
        transform: translate3d(4px, 2px, 0) scale(1);
    }

    45% {
        transform: translate3d(-8px, -5px, 0) scale(1.006);
    }

    75% {
        transform: translate3d(-3px, 3px, 0) scale(1.002);
    }

    100% {
        transform: translate3d(4px, 2px, 0) scale(1);
    }
}


/* Final front cloud smaller size */
.page-home .panel-company-overview .company-overview__cloud--two {
    width: 108% !important;
}

@media (max-width: 860px) {
    .page-home .panel-company-overview .company-overview__cloud--two {
        width: 112% !important;
    }
}


/* Final cloud size and front placement adjustment */
.page-home .panel-company-overview .company-overview__cloud--one {
    width: 122% !important;
}

.page-home .panel-company-overview .company-overview__cloud--two {
    top: -13% !important;
    left: -4% !important;
    width: 108% !important;
}

@media (max-width: 860px) {
    .page-home .panel-company-overview .company-overview__cloud--one {
        width: 126% !important;
    }

    .page-home .panel-company-overview .company-overview__cloud--two {
        top: -14% !important;
        left: -6% !important;
        width: 112% !important;
    }
}


/* Final tiny cloud position nudge */
.page-home .panel-company-overview .company-overview__cloud--one {
    top: -56% !important;
    left: -69% !important;
}

.page-home .panel-company-overview .company-overview__cloud--two {
    top: -11% !important;
}

@media (max-width: 860px) {
    .page-home .panel-company-overview .company-overview__cloud--one {
        top: -58% !important;
        left: -72% !important;
    }

    .page-home .panel-company-overview .company-overview__cloud--two {
        top: -12% !important;
    }
}


/* Final front cloud tiny size and lower nudge */
.page-home .panel-company-overview .company-overview__cloud--two {
    top: -8% !important;
    width: 104% !important;
}

@media (max-width: 860px) {
    .page-home .panel-company-overview .company-overview__cloud--two {
        top: -9% !important;
        width: 108% !important;
    }
}


/* Final front cloud lower position */
.page-home .panel-company-overview .company-overview__cloud--two {
    top: -4% !important;
}

@media (max-width: 860px) {
    .page-home .panel-company-overview .company-overview__cloud--two {
        top: -5% !important;
    }
}




/* Final selected description typography only */
.page-home .panel-company-overview .company-overview__text,
.page-home .ceo-message__lead,
.page-home .ceo-message__body p,
.page-home .vision-copy__body p,
.page-home .vision-quote p,
.page-home .panel-business-safety .business-safety__text,
.page-home .panel-products-showcase .products-showcase__lead,
.page-home .panel-contact-quote .quote-contact__lead {
    font-size: 18px !important;
    line-height: 1.62 !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
}

@media (max-width: 860px) {
    .page-home .panel-company-overview .company-overview__text,
    .page-home .ceo-message__lead,
    .page-home .ceo-message__body p,
    .page-home .vision-copy__body p,
    .page-home .vision-quote p,
    .page-home .panel-business-safety .business-safety__text,
    .page-home .panel-products-showcase .products-showcase__lead,
    .page-home .panel-contact-quote .quote-contact__lead {
        font-size: 16px !important;
        line-height: 1.58 !important;
        font-weight: 500 !important;
    }
}


/* Final selected description size increase */
.page-home .panel-company-overview .company-overview__text,
.page-home .ceo-message__lead,
.page-home .ceo-message__body p,
.page-home .vision-copy__body p,
.page-home .vision-quote p,
.page-home .panel-business-safety .business-safety__text,
.page-home .panel-products-showcase .products-showcase__lead,
.page-home .panel-contact-quote .quote-contact__lead {
    font-size: 20px !important;
}

@media (max-width: 860px) {
    .page-home .panel-company-overview .company-overview__text,
    .page-home .ceo-message__lead,
    .page-home .ceo-message__body p,
    .page-home .vision-copy__body p,
    .page-home .vision-quote p,
    .page-home .panel-business-safety .business-safety__text,
    .page-home .panel-products-showcase .products-showcase__lead,
    .page-home .panel-contact-quote .quote-contact__lead {
        font-size: 17px !important;
    }
}


/* Final label spacing and point-color section labels */
.page-home .panel-company-overview .company-overview__title {
    word-spacing: 0.28em !important;
    letter-spacing: 0.035em !important;
}

.page-home .ceo-message__eyebrow,
.page-home .vision-copy__eyebrow,
.page-home .products-showcase__eyebrow,
.page-home .quote-contact__eyebrow,
.page-home .panel-contact-quote .quote-contact__eyebrow {
    color: var(--primary) !important;
}


/* Final card description typography set */
.page-home .core-service-card p,
.page-home .business-service-card p,
.page-home .business-service-card__footer > span,
.page-home .safety-trust-card p,
.page-home .product-card--summary ul,
.page-home .product-card--summary li,
.page-home .product-card__item--stacked span,
.page-home .product-card--summary p,
.page-home .product-card__footer,
.page-home .product-card__footer span,
.page-home .quote-info-card p,
.page-home .quote-info-card__text {
    font-size: 16px !important;
    line-height: 1.56 !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
}

.page-home .product-card--summary strong,
.page-home .product-card__footer b,
.page-home .business-service-card__footer b,
.page-home .quote-info-card strong,
.page-home .quote-info-card b {
    font-weight: 900 !important;
}

@media (max-width: 860px) {
    .page-home .core-service-card p,
    .page-home .business-service-card p,
    .page-home .business-service-card__footer > span,
    .page-home .safety-trust-card p,
    .page-home .product-card--summary ul,
    .page-home .product-card--summary li,
    .page-home .product-card__item--stacked span,
    .page-home .product-card--summary p,
    .page-home .product-card__footer,
    .page-home .product-card__footer span,
    .page-home .quote-info-card p,
    .page-home .quote-info-card__text {
        font-size: 15px !important;
        line-height: 1.52 !important;
        font-weight: 500 !important;
    }
}


/* Final core services title and unified glass cards */
.page-home .core-services,
.page-home .core-services__title {
    text-align: center !important;
}

.page-home .core-services__cards {
    justify-items: stretch !important;
}

.page-home .core-service-card,
.page-home .ceo-value-card,
.page-home .vision-quote,
.page-home .vision-challenge-card,
.page-home .business-service-card,
.page-home .safety-trust-card,
.page-home .product-card.product-card--summary,
.page-home .quote-info-card {
    border: 1px solid rgba(255, 255, 255, 0.44) !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(232, 242, 255, 0.28)) !important;
    box-shadow: 0 8px 20px rgba(30, 94, 255, 0.1), 0 2px 8px rgba(47, 52, 58, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.64) !important;
    backdrop-filter: blur(12px) saturate(130%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(130%) !important;
}

.page-home .business-service-card::before,
.page-home .product-card.product-card--summary::after {
    display: none !important;
}

.page-home .business-service-card__footer,
.page-home .product-card__footer {
    border-top-color: rgba(255, 255, 255, 0.46) !important;
}

.page-home .core-service-card:hover,
.page-home .business-service-card:hover,
.page-home .product-card.product-card--summary:hover {
    box-shadow: 0 10px 24px rgba(30, 94, 255, 0.14), 0 4px 12px rgba(47, 52, 58, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.68) !important;
}


/* Final visible spacing for Freedom label words */
.page-home .panel-company-overview .company-overview__title {
    display: inline-flex !important;
    gap: 0.72em !important;
    word-spacing: normal !important;
    letter-spacing: 0.02em !important;
}

.page-home .panel-company-overview .company-overview__word {
    display: inline-flex !important;
    align-items: baseline !important;
    white-space: nowrap !important;
}

@media (max-width: 860px) {
    .page-home .panel-company-overview .company-overview__title {
        gap: 0.48em !important;
    }
}


/* Final section subtitles in point color */
.page-home .core-services__title,
.page-home .ceo-message__title,
.page-home .ceo-message__title span,
.page-home .vision-copy__title,
.page-home .vision-copy__title span,
.page-home .vision-copy__title em,
.page-home .vision-copy__line-break,
.page-home .panel-business-services .business-services__title,
.page-home .panel-business-safety .business-safety__title,
.page-home .panel-business-safety .business-safety__title span,
.page-home .panel-products-showcase .products-showcase__title,
.page-home .panel-contact-quote .quote-contact__title {
    color: var(--primary) !important;
}


/* Final exact point color for eyebrow titles only */
.page-home .core-services__title,
.page-home .ceo-message__title,
.page-home .ceo-message__title span,
.page-home .vision-copy__title,
.page-home .vision-copy__title span,
.page-home .vision-copy__line-break,
.page-home .panel-business-services .business-services__title,
.page-home .panel-business-safety .business-safety__title,
.page-home .panel-business-safety .business-safety__title span,
.page-home .panel-products-showcase .products-showcase__title,
.page-home .panel-contact-quote .quote-contact__title {
    color: #20252B !important;
    -webkit-text-fill-color: #20252B !important;
}

.page-home .vision-copy__title em {
    color: var(--primary) !important;
    -webkit-text-fill-color: var(--primary) !important;
}

.page-home .ceo-message__eyebrow,
.page-home .vision-copy__eyebrow,
.page-home .products-showcase__eyebrow,
.page-home .quote-contact__eyebrow,
.page-home .panel-contact-quote .quote-contact__eyebrow {
    color: #1E5EFF !important;
    -webkit-text-fill-color: #1E5EFF !important;
}


/* Final strong visible glassmorphism boxes */
.page-home .core-service-card,
.page-home .ceo-value-card,
.page-home .vision-quote,
.page-home .vision-challenge-card,
.page-home .business-service-card,
.page-home .safety-trust-card,
.page-home .product-card.product-card--summary,
.page-home .quote-info-card {
    border: 1px solid rgba(255, 255, 255, 0.44) !important;
    outline: 0 !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.62) 0%, rgba(232, 240, 255, 0.28) 52%, rgba(255, 255, 255, 0.22) 100%) !important;
    box-shadow: 0 8px 20px rgba(30, 94, 255, 0.1), 0 2px 8px rgba(47, 52, 58, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.64) !important;
    backdrop-filter: blur(12px) saturate(130%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(130%) !important;
}

.page-home .product-card--locked {
    border-style: dashed !important;
    border-color: #cfd8e5 !important;
    background: #f8fbff !important;
    color: #8d9caf !important;
    box-shadow: none !important;
    position: relative;
    cursor: not-allowed;
    filter: grayscale(0.32) saturate(0.5);
    opacity: 0.86;
}

.page-home .product-card--locked::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.28);
    pointer-events: none;
}

.page-home .product-card--locked .product-card__icon,
.page-home .product-card--locked .product-card__badge,
.page-home .product-card--locked h3,
.page-home .product-card--locked p,
.page-home .product-card--locked ul,
.page-home .product-card--locked li,
.page-home .product-card--locked .product-card__footer,
.page-home .product-card--locked .product-card__footer b {
    color: #9aa9bc !important;
}

.page-home .product-card--locked .product-card__badge {
    background: #edf2f8 !important;
    border: 1px dashed #cfd8e5 !important;
}

.page-home .core-service-card:hover,
.page-home .business-service-card:hover,
.page-home .product-card.product-card--summary:not(.product-card--locked):hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 24px rgba(30, 94, 255, 0.14), 0 4px 12px rgba(47, 52, 58, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.68) !important;
}

.page-home .ceo-value-card {
    transition: none !important;
}

.page-home .ceo-value-card__eyebrow {
    margin: 0 0 34px !important;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(30, 94, 255, 0.2);
    color: #1f4fcc !important;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.page-home .ceo-value-card__list {
    gap: 16px;
}

.page-home .ceo-value-card__item {
    padding: 20px 22px;
    border: 1px solid rgba(200, 214, 234, 0.95);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 249, 255, 0.88) 100%);
    box-shadow: 0 6px 14px rgba(30, 94, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.page-home .ceo-value-card__item dt {
    color: #4a5b73;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.page-home .ceo-value-card__item dd {
    color: #101a2d;
    font-size: 18px;
    line-height: 1.32;
    font-weight: 900;
}

@media (max-width: 860px) {
    .page-home .ceo-value-card__eyebrow {
        margin-bottom: 24px !important;
        padding-bottom: 10px;
    }

    .page-home .ceo-value-card__list {
        gap: 12px;
    }

    .page-home .ceo-value-card__item {
        padding: 16px 16px;
        border-radius: 14px;
    }

    .page-home .ceo-value-card__item dd {
        font-size: 16px;
    }
}

@media (min-width: 861px) {
    :root {
        --home-content-gutter: clamp(108px, 10vw, 200px);
    }

    .page-home .home-panel:not(.panel-intro) .home-panel__inner {
        padding-left: var(--home-content-gutter) !important;
        padding-right: var(--home-content-gutter) !important;
    }

    .page-business-detail .site-main,
    .page-project .site-main,
    .page-join .site-main,
    .page-admin .site-main {
        padding-left: var(--home-content-gutter) !important;
        padding-right: var(--home-content-gutter) !important;
    }

    .page-business-detail .site-main {
        padding-top: 172px !important;
        padding-bottom: 58px !important;
    }

    .page-project .site-main,
    .page-join .site-main,
    .page-admin .site-main {
        padding-top: 32px !important;
        padding-bottom: 48px !important;
    }
}


/* Final vision section structure and business/footer refinements */
.page-home .panel-company-vision .home-panel__inner {
    display: grid !important;
    place-items: center !important;
    padding-left: var(--home-content-gutter, clamp(108px, 10vw, 200px)) !important;
    padding-right: var(--home-content-gutter, clamp(108px, 10vw, 200px)) !important;
}

.page-home .vision-layout {
    width: 100% !important;
    max-width: 1760px !important;
    min-height: 1080px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 490px) !important;
    align-items: center !important;
    gap: clamp(72px, 8vw, 150px) !important;
}

.page-home .vision-copy {
    width: 100% !important;
    max-width: 880px !important;
    justify-self: start !important;
    text-align: left !important;
}

.page-home .vision-copy__eyebrow {
    display: block !important;
    width: max-content !important;
    margin: 0 0 118px !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #1E5EFF !important;
    -webkit-text-fill-color: #1E5EFF !important;
    font-size: 22px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em !important;
    text-shadow: 0 4px 10px rgba(20, 33, 61, 0.24) !important;
    transform: translateY(-42px) !important;
}

.page-home .vision-copy__gap {
    display: none !important;
}

.page-home .vision-copy__title {
    margin: 0 !important;
    display: grid !important;
    gap: 10px !important;
    color: #20252B !important;
    -webkit-text-fill-color: #20252B !important;
    font-size: clamp(58px, 5vw, 82px) !important;
    line-height: 1.16 !important;
    font-weight: 900 !important;
}

.page-home .vision-copy__body {
    margin-top: 0 !important;
    padding-top: 68px !important;
    gap: 28px !important;
}

.page-home .vision-quote {
    margin-top: 38px !important;
    border-left: 0 !important;
    border-radius: 28px !important;
    padding: 30px 34px !important;
}

.page-home .vision-values-block {
    margin-top: 28px !important;
}

.page-home .vision-values {
    border-top: 0 !important;
    padding-top: 0 !important;
}

.page-home .vision-challenges {
    width: min(100%, 490px) !important;
    justify-self: center !important;
    align-self: center !important;
    margin-top: 34px !important;
    transform: none !important;
    gap: 22px !important;
}

.page-home .vision-challenges__title {
    color: #1E5EFF !important;
    -webkit-text-fill-color: #1E5EFF !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    letter-spacing: 0.05em !important;
}

.page-home .vision-challenge-list {
    gap: 12px !important;
}

.page-home .vision-challenge-card {
    min-height: 88px !important;
    grid-template-columns: 52px 1fr !important;
    gap: 18px !important;
    border-radius: 18px !important;
    padding: 18px 20px !important;
}

.page-home .business-service-card__badge {
    display: none !important;
}

.page-home .business-service-card__icon {
    display: inline-grid !important;
    place-items: center !important;
    width: 96px !important;
    height: 96px !important;
    margin: 0 0 26px !important;
    border-radius: 24px !important;
    background: rgba(255, 255, 255, 0.44) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 14px 30px rgba(30, 94, 255, 0.12) !important;
    backdrop-filter: blur(14px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(14px) saturate(150%) !important;
}

.page-home .business-service-card__icon img {
    display: block !important;
    width: 78px !important;
    height: 78px !important;
    object-fit: contain !important;
}

.page-home .business-service-card h3 {
    margin-top: 0 !important;
}

.site-footer,
.site-footer *,
html.page-home .site-footer,
html.page-home .site-footer * {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.site-footer a,
.site-footer strong,
.site-footer address,
.site-footer p,
.site-footer span {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

@media (min-width: 861px) and (max-width: 1400px) {
    .page-home .vision-layout {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr) !important;
        gap: clamp(42px, 5vw, 86px) !important;
    }

    .page-home .vision-copy__eyebrow {
        margin-bottom: 88px !important;
        transform: translateY(-28px) !important;
    }

    .page-home .vision-copy__title {
        font-size: clamp(48px, 5vw, 68px) !important;
    }

    .page-home .vision-copy__body {
        padding-top: clamp(42px, 5vw, 62px) !important;
    }
}

@media (max-width: 860px) {
    .page-home .panel-company-vision .home-panel__inner {
        padding: 0 !important;
    }

    .page-home .vision-layout {
        min-height: 820px !important;
        grid-template-columns: 1fr !important;
        gap: 34px !important;
        padding: 88px 18px 64px !important;
    }

    .page-home .vision-copy__eyebrow {
        margin-bottom: 48px !important;
        font-size: 18px !important;
        transform: none !important;
    }

    .page-home .vision-copy__title {
        font-size: clamp(38px, 9vw, 54px) !important;
        line-height: 1.18 !important;
    }

    .page-home .vision-copy__body {
        padding-top: 38px !important;
        gap: 26px !important;
    }

    .page-home .vision-challenges {
        width: 100% !important;
        margin-top: 0 !important;
        justify-self: stretch !important;
    }

    .page-home .business-service-card__icon {
        width: 82px !important;
        height: 82px !important;
        border-radius: 20px !important;
        margin-bottom: 22px !important;
    }

    .page-home .business-service-card__icon img {
        width: 68px !important;
        height: 68px !important;
    }
}


/* Final correction: keep vision content structure, restore original title scale */
.page-home .panel-company-vision .home-panel__inner {
    display: grid !important;
    place-items: center !important;
    padding-left: var(--home-content-gutter, clamp(108px, 10vw, 200px)) !important;
    padding-right: var(--home-content-gutter, clamp(108px, 10vw, 200px)) !important;
}

.page-home .vision-layout {
    width: 100% !important;
    max-width: 1760px !important;
    min-height: 1080px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 490px) !important;
    align-items: center !important;
    gap: clamp(72px, 8vw, 150px) !important;
}

.page-home .vision-copy {
    width: 100% !important;
    max-width: 880px !important;
    justify-self: start !important;
    text-align: left !important;
}

.page-home .vision-copy__eyebrow {
    display: block !important;
    width: max-content !important;
    margin: 0 0 92px !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #1E5EFF !important;
    -webkit-text-fill-color: #1E5EFF !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    letter-spacing: 0.06em !important;
    text-shadow: 0 4px 10px rgba(20, 33, 61, 0.18) !important;
    transform: none !important;
}

.page-home .vision-copy__gap {
    display: none !important;
}

.page-home .vision-copy__title,
.page-home .vision-copy__title span,
.page-home .vision-copy__title em,
.page-home .vision-copy__line-break {
    font-size: 58px !important;
    line-height: 1.14 !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
}

.page-home .vision-copy__title {
    margin: 0 !important;
    display: grid !important;
    gap: 8px !important;
    color: #20252B !important;
    -webkit-text-fill-color: #20252B !important;
}

.page-home .vision-copy__title span,
.page-home .vision-copy__line-break {
    color: #20252B !important;
    -webkit-text-fill-color: #20252B !important;
}

.page-home .vision-copy__title em {
    color: #1E5EFF !important;
    -webkit-text-fill-color: #1E5EFF !important;
    font-style: normal !important;
}

.page-home .vision-copy__body {
    margin-top: 0 !important;
    padding-top: 56px !important;
    gap: 24px !important;
}

.page-home .vision-copy__body p,
.page-home .vision-quote p {
    font-size: 20px !important;
    line-height: 1.62 !important;
    font-weight: 500 !important;
}

.page-home .vision-quote {
    margin-top: 34px !important;
    border-left: 0 !important;
    border-radius: 28px !important;
    padding: 28px 34px !important;
}

.page-home .vision-quote strong {
    font-size: 23px !important;
    line-height: 1.35 !important;
    font-weight: 900 !important;
}

.page-home .vision-values-block {
    margin-top: 28px !important;
}

.page-home .vision-challenges {
    width: min(100%, 490px) !important;
    justify-self: center !important;
    align-self: center !important;
    margin-top: 0 !important;
    transform: none !important;
}

@media (min-width: 861px) and (max-width: 1400px) {
    .page-home .vision-layout {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr) !important;
        gap: clamp(42px, 5vw, 86px) !important;
    }

    .page-home .vision-copy__eyebrow {
        margin-bottom: 72px !important;
        font-size: 17px !important;
    }

    .page-home .vision-copy__title,
    .page-home .vision-copy__title span,
    .page-home .vision-copy__title em,
    .page-home .vision-copy__line-break {
        font-size: clamp(46px, 4.2vw, 58px) !important;
    }

    .page-home .vision-copy__body {
        padding-top: 48px !important;
    }
}

@media (max-width: 860px) {
    .page-home .panel-company-vision .home-panel__inner {
        padding: 0 !important;
    }

    .page-home .vision-layout {
        min-height: 820px !important;
        grid-template-columns: 1fr !important;
        gap: 34px !important;
        padding: 88px 18px 64px !important;
    }

    .page-home .vision-copy__eyebrow {
        margin-bottom: 42px !important;
        font-size: 16px !important;
        letter-spacing: 0.04em !important;
    }

    .page-home .vision-copy__title,
    .page-home .vision-copy__title span,
    .page-home .vision-copy__title em,
    .page-home .vision-copy__line-break {
        display: inline !important;
        font-size: clamp(26px, 6.8vw, 32px) !important;
        line-height: 1.18 !important;
        font-weight: 800 !important;
    }

    .page-home .vision-copy__title {
        display: block !important;
    }

    .page-home .vision-copy__body {
        padding-top: 34px !important;
        gap: 22px !important;
    }

    .page-home .vision-copy__body p,
    .page-home .vision-quote p {
        font-size: 17px !important;
        line-height: 1.58 !important;
    }

    .page-home .vision-quote strong {
        font-size: clamp(17px, 4.2vw, 22px) !important;
        white-space: normal !important;
    }

    .page-home .vision-challenges {
        width: 100% !important;
        justify-self: stretch !important;
    }
}


/* Final correction: vision text-only content and original business icons */
.page-home .vision-layout {
    grid-template-columns: minmax(0, 880px) !important;
    justify-content: start !important;
    align-items: center !important;
}

.page-home .vision-copy {
    max-width: 880px !important;
}

.page-home .vision-challenges--text {
    width: 100% !important;
    max-width: 830px !important;
    margin-top: 26px !important;
    justify-self: start !important;
    align-self: auto !important;
    display: block !important;
    transform: none !important;
}

.page-home .vision-challenges--text p {
    margin: 0 !important;
    color: #2F343A !important;
    -webkit-text-fill-color: #2F343A !important;
    font-size: 20px !important;
    line-height: 1.62 !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
}

.page-home .vision-challenges--text strong {
    color: #2F343A !important;
    -webkit-text-fill-color: #2F343A !important;
    font-weight: 800 !important;
    margin-right: 12px !important;
}

.page-home .vision-challenges--text .vision-challenge-list,
.page-home .vision-challenges--text .vision-challenges__title,
.page-home .vision-challenges--text .vision-challenge-card {
    display: none !important;
}

.page-home .business-service-card__icon {
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.page-home .business-service-card__icon img {
    width: 96px !important;
    height: 96px !important;
    object-fit: contain !important;
}

@media (min-width: 861px) and (max-width: 1400px) {
    .page-home .vision-layout {
        grid-template-columns: minmax(0, 880px) !important;
    }
}

@media (max-width: 860px) {
    .page-home .vision-layout {
        grid-template-columns: 1fr !important;
    }

    .page-home .vision-challenges--text p {
        font-size: 17px !important;
        line-height: 1.58 !important;
    }

    .page-home .vision-challenges--text strong {
        display: inline !important;
        margin-right: 8px !important;
    }

    .page-home .business-service-card__icon,
    .page-home .business-service-card__icon img {
        width: 82px !important;
        height: 82px !important;
    }
}


/* Final correction: align challenge text with first vision description */
.page-home .vision-layout {
    grid-template-columns: minmax(0, 1180px) !important;
    justify-content: start !important;
}

.page-home .vision-copy {
    max-width: 1180px !important;
}

.page-home .vision-copy__body-row {
    display: grid !important;
    grid-template-columns: minmax(0, 690px) minmax(300px, 1fr) !important;
    align-items: start !important;
    gap: clamp(34px, 4vw, 64px) !important;
}

.page-home .vision-copy__body-row > p {
    margin: 0 !important;
    max-width: 690px !important;
}

.page-home .vision-copy__body > p {
    max-width: 790px !important;
}

.page-home .vision-challenges--text {
    width: 100% !important;
    max-width: 390px !important;
    margin: 0 !important;
    padding: 0 !important;
    justify-self: start !important;
    align-self: start !important;
    display: block !important;
    transform: none !important;
}

.page-home .vision-challenges--text p {
    margin: 0 !important;
    color: #2F343A !important;
    -webkit-text-fill-color: #2F343A !important;
    font-size: 20px !important;
    line-height: 1.62 !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
}

.page-home .vision-challenges--text strong {
    color: #2F343A !important;
    -webkit-text-fill-color: #2F343A !important;
    font-weight: 800 !important;
    margin-right: 12px !important;
}

@media (min-width: 861px) and (max-width: 1400px) {
    .page-home .vision-layout {
        grid-template-columns: minmax(0, 1040px) !important;
    }

    .page-home .vision-copy {
        max-width: 1040px !important;
    }

    .page-home .vision-copy__body-row {
        grid-template-columns: minmax(0, 620px) minmax(280px, 1fr) !important;
        gap: clamp(28px, 3vw, 46px) !important;
    }
}

@media (max-width: 860px) {
    .page-home .vision-layout {
        grid-template-columns: 1fr !important;
    }

    .page-home .vision-copy__body-row {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .page-home .vision-challenges--text {
        max-width: 100% !important;
    }

    .page-home .vision-challenges--text p {
        font-size: 17px !important;
        line-height: 1.58 !important;
    }
}


/* Final correction: plain vision quote and restored challenge cards */
.page-home .vision-layout {
    width: 100% !important;
    max-width: 1760px !important;
    min-height: 1080px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 480px) !important;
    justify-content: stretch !important;
    align-items: center !important;
    gap: clamp(56px, 6vw, 112px) !important;
}

.page-home .vision-copy {
    max-width: 880px !important;
    justify-self: start !important;
}

.page-home .vision-copy__body-row {
    display: contents !important;
}

.page-home .vision-quote {
    max-width: 790px !important;
    margin-top: 34px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.page-home .vision-quote strong,
.page-home .vision-quote p {
    display: block !important;
    margin: 0 !important;
    color: #2F343A !important;
    -webkit-text-fill-color: #2F343A !important;
    font-size: 20px !important;
    line-height: 1.62 !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
}

.page-home .vision-quote p {
    margin-top: 10px !important;
}

.page-home .vision-challenges:not(.vision-challenges--text) {
    width: min(100%, 490px) !important;
    justify-self: center !important;
    align-self: center !important;
    margin-top: 0 !important;
    display: grid !important;
    align-content: center !important;
    gap: 26px !important;
    transform: none !important;
}

.page-home .vision-challenges:not(.vision-challenges--text) .vision-challenges__title {
    display: block !important;
    margin: 0 !important;
    color: #243349 !important;
    -webkit-text-fill-color: #243349 !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
}

.page-home .vision-challenges:not(.vision-challenges--text) .vision-challenge-list {
    display: grid !important;
    gap: 20px !important;
}

.page-home .vision-challenges:not(.vision-challenges--text) .vision-challenge-card {
    min-height: 108px !important;
    display: grid !important;
    grid-template-columns: 52px 1fr !important;
    align-items: center !important;
    gap: 22px !important;
    border-radius: 18px !important;
    padding: 22px 28px !important;
}

.page-home .vision-challenges:not(.vision-challenges--text) .vision-challenge-card__icon {
    display: grid !important;
    width: 48px !important;
    height: 48px !important;
}

.page-home .vision-challenges:not(.vision-challenges--text) .vision-challenge-card h4 {
    margin: 0 !important;
    color: #111827 !important;
    -webkit-text-fill-color: #111827 !important;
    font-size: 23px !important;
    line-height: 1.25 !important;
    font-weight: 900 !important;
}

@media (min-width: 861px) and (max-width: 1400px) {
    .page-home .vision-layout {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 430px) !important;
        gap: clamp(42px, 5vw, 78px) !important;
    }

    .page-home .vision-challenges:not(.vision-challenges--text) .vision-challenge-card h4 {
        font-size: clamp(18px, 1.8vw, 22px) !important;
    }
}

@media (max-width: 860px) {
    .page-home .vision-layout {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
    }

    .page-home .vision-quote strong,
    .page-home .vision-quote p {
        font-size: 17px !important;
        line-height: 1.58 !important;
        font-weight: 500 !important;
        white-space: normal !important;
    }

    .page-home .vision-challenges:not(.vision-challenges--text) {
        width: 100% !important;
        justify-self: stretch !important;
    }

    .page-home .vision-challenges:not(.vision-challenges--text) .vision-challenge-card {
        min-height: 88px !important;
        grid-template-columns: 44px 1fr !important;
        gap: 16px !important;
        padding: 18px 18px !important;
    }

    .page-home .vision-challenges:not(.vision-challenges--text) .vision-challenge-card__icon {
        width: 42px !important;
        height: 42px !important;
    }

    .page-home .vision-challenges:not(.vision-challenges--text) .vision-challenge-card h4 {
        font-size: clamp(18px, 4.8vw, 22px) !important;
    }
}


/* Final requested refinements: vision label/cards, business icons/buttons, safety layout */
.page-home .vision-copy__eyebrow {
    text-transform: none !important;
}

.page-home .vision-challenges:not(.vision-challenges--text) {
    width: min(100%, 360px) !important;
    justify-self: start !important;
    align-self: start !important;
    margin-top: 286px !important;
    gap: 14px !important;
}

.page-home .vision-challenges:not(.vision-challenges--text) .vision-challenges__title {
    font-size: 14px !important;
    line-height: 1.62 !important;
    font-weight: 700 !important;
    color: #2F343A !important;
    -webkit-text-fill-color: #2F343A !important;
}

.page-home .vision-challenges:not(.vision-challenges--text) .vision-challenge-list {
    gap: 12px !important;
}

.page-home .vision-challenges:not(.vision-challenges--text) .vision-challenge-card {
    min-height: 72px !important;
    grid-template-columns: 34px 1fr !important;
    gap: 14px !important;
    border-radius: 14px !important;
    padding: 14px 16px !important;
}

.page-home .vision-challenges:not(.vision-challenges--text) .vision-challenge-card__icon {
    width: 34px !important;
    height: 34px !important;
}

.page-home .vision-challenges:not(.vision-challenges--text) .vision-challenge-card h4 {
    font-size: 17px !important;
    line-height: 1.28 !important;
    font-weight: 700 !important;
}

.page-home .business-service-card__icon,
.page-home .business-service-card__icon img {
    width: 32px !important;
    height: 32px !important;
    margin-bottom: 18px !important;
}

.page-home .business-service-card__icon {
    display: inline-grid !important;
    place-items: center !important;
}

.page-home .business-service-card__arrow.business-service-card__detail {
    position: static !important;
    width: auto !important;
    height: auto !important;
    min-height: 36px !important;
    margin: 0 !important;
    padding: 9px 15px !important;
    border-radius: 999px !important;
    background: #1E5EFF !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transform: none !important;
}

.page-home .business-service-card__arrow.business-service-card__detail::before,
.page-home .business-service-card__arrow.business-service-card__detail::after {
    display: none !important;
}

.page-home .business-service-card__arrow.business-service-card__detail:hover,
.page-home .business-service-card__arrow.business-service-card__detail:focus-visible {
    background: #14213D !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    transform: none !important;
}

.page-home .business-service-card__footer {
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
}

.page-home .panel-business-safety .business-safety__rate {
    color: #1E5EFF !important;
    -webkit-text-fill-color: #1E5EFF !important;
}

.page-home .business-safety {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px) !important;
    grid-template-areas:
        "copy trust"
        "badges trust" !important;
    align-items: center !important;
    gap: clamp(32px, 5vw, 72px) !important;
}

.page-home .business-safety__copy {
    grid-area: copy !important;
}

.page-home .business-safety__badges {
    grid-area: badges !important;
}

.page-home .business-safety__trust {
    grid-area: trust !important;
    align-self: center !important;
    justify-self: end !important;
    width: min(100%, 420px) !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
}

.page-home .safety-trust-card {
    min-height: 116px !important;
}

@media (min-width: 861px) and (max-width: 1400px) {
    .page-home .vision-challenges:not(.vision-challenges--text) {
        margin-top: 252px !important;
        width: min(100%, 340px) !important;
    }
}

@media (max-width: 860px) {
    .page-home .vision-challenges:not(.vision-challenges--text) {
        width: 100% !important;
        margin-top: 0 !important;
        justify-self: stretch !important;
    }

    .page-home .vision-challenges:not(.vision-challenges--text) .vision-challenge-card {
        min-height: 64px !important;
        grid-template-columns: 32px 1fr !important;
        padding: 13px 14px !important;
    }

    .page-home .vision-challenges:not(.vision-challenges--text) .vision-challenge-card h4 {
        font-size: 16px !important;
    }

    .page-home .business-service-card__icon,
    .page-home .business-service-card__icon img {
        width: 30px !important;
        height: 30px !important;
    }

    .page-home .business-safety {
        grid-template-columns: 1fr !important;
        grid-template-areas:
            "copy"
            "badges"
            "trust" !important;
    }

    .page-home .business-safety__trust {
        width: 100% !important;
        justify-self: stretch !important;
    }
}


/* Final small business icon margin and localized button stability */
.page-home .business-service-card__icon {
    width: 32px !important;
    height: 32px !important;
    margin: 0 0 18px !important;
}

.page-home .business-service-card__icon img {
    width: 32px !important;
    height: 32px !important;
    margin: 0 !important;
}

@media (max-width: 860px) {
    .page-home .business-service-card__icon {
        width: 30px !important;
        height: 30px !important;
        margin-bottom: 16px !important;
    }

    .page-home .business-service-card__icon img {
        width: 30px !important;
        height: 30px !important;
    }
}


/* Final correction: visually align vision challenges with first body line and reduce subtitles */
.page-home .vision-layout {
    grid-template-columns: minmax(0, 1180px) !important;
    justify-content: start !important;
    align-items: center !important;
}

.page-home .vision-copy {
    max-width: 1180px !important;
}

.page-home .vision-copy__body-row {
    display: grid !important;
    grid-template-columns: minmax(0, 690px) minmax(260px, 340px) !important;
    align-items: start !important;
    gap: clamp(30px, 4vw, 56px) !important;
}

.page-home .vision-copy__body-row > p {
    margin: 0 !important;
    max-width: 690px !important;
}

.page-home .vision-copy__body-row .vision-challenges:not(.vision-challenges--text) {
    width: 100% !important;
    justify-self: start !important;
    align-self: start !important;
    margin-top: 0 !important;
    gap: 10px !important;
}

.page-home .vision-copy__body-row .vision-challenges__title {
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.62 !important;
    font-weight: 600 !important;
    color: #2F343A !important;
    -webkit-text-fill-color: #2F343A !important;
}

.page-home .vision-copy__body-row .vision-challenge-list {
    gap: 10px !important;
}

.page-home .vision-copy__body-row .vision-challenge-card {
    min-height: 62px !important;
    grid-template-columns: 30px 1fr !important;
    gap: 12px !important;
    border-radius: 12px !important;
    padding: 12px 14px !important;
}

.page-home .vision-copy__body-row .vision-challenge-card__icon {
    width: 30px !important;
    height: 30px !important;
}

.page-home .vision-copy__body-row .vision-challenge-card h4 {
    font-size: 15px !important;
    line-height: 1.28 !important;
    font-weight: 600 !important;
}

@media (min-width: 861px) {
    .page-home .core-services__title,
    .page-home .ceo-message__title,
    .page-home .vision-copy__title,
    .page-home .vision-copy__title span,
    .page-home .vision-copy__title em,
    .page-home .vision-copy__line-break,
    .page-home .panel-business-services .business-services__title,
    .page-home .panel-business-safety .business-safety__title,
    .page-home .panel-business-safety .business-safety__title span,
    .page-home .panel-products-showcase .products-showcase__title,
    .page-home .panel-contact-quote .quote-contact__title {
        font-size: 52px !important;
        line-height: 1.14 !important;
    }
}

@media (min-width: 861px) and (max-width: 1400px) {
    .page-home .vision-layout {
        grid-template-columns: minmax(0, 1040px) !important;
    }

    .page-home .vision-copy {
        max-width: 1040px !important;
    }

    .page-home .vision-copy__body-row {
        grid-template-columns: minmax(0, 620px) minmax(250px, 320px) !important;
        gap: clamp(26px, 3vw, 42px) !important;
    }

    .page-home .core-services__title,
    .page-home .ceo-message__title,
    .page-home .vision-copy__title,
    .page-home .vision-copy__title span,
    .page-home .vision-copy__title em,
    .page-home .vision-copy__line-break,
    .page-home .panel-business-services .business-services__title,
    .page-home .panel-business-safety .business-safety__title,
    .page-home .panel-business-safety .business-safety__title span,
    .page-home .panel-products-showcase .products-showcase__title,
    .page-home .panel-contact-quote .quote-contact__title {
        font-size: clamp(42px, 4vw, 52px) !important;
    }
}

@media (max-width: 860px) {
    .page-home .vision-layout {
        grid-template-columns: 1fr !important;
    }

    .page-home .vision-copy__body-row {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .page-home .vision-copy__body-row .vision-challenges:not(.vision-challenges--text) {
        width: 100% !important;
        justify-self: stretch !important;
    }

    .page-home .vision-copy__body-row .vision-challenge-card {
        min-height: 58px !important;
        grid-template-columns: 28px 1fr !important;
        padding: 11px 13px !important;
    }

    .page-home .vision-copy__body-row .vision-challenge-card__icon {
        width: 28px !important;
        height: 28px !important;
    }

    .page-home .vision-copy__body-row .vision-challenge-card h4 {
        font-size: 15px !important;
        font-weight: 600 !important;
    }

    .page-home .core-services__title,
    .page-home .ceo-message__title,
    .page-home .vision-copy__title,
    .page-home .vision-copy__title span,
    .page-home .vision-copy__title em,
    .page-home .vision-copy__line-break,
    .page-home .panel-business-services .business-services__title,
    .page-home .panel-business-safety .business-safety__title,
    .page-home .panel-business-safety .business-safety__title span,
    .page-home .panel-products-showcase .products-showcase__title,
    .page-home .panel-contact-quote .quote-contact__title {
        font-size: clamp(24px, 6.4vw, 30px) !important;
        line-height: 1.18 !important;
    }
}


/* Final correction: keep challenges separate, align visually only */
.page-home .vision-layout {
    width: 100% !important;
    max-width: 1760px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px) !important;
    justify-content: stretch !important;
    align-items: center !important;
    gap: clamp(56px, 6vw, 112px) !important;
}

.page-home .vision-copy {
    max-width: 880px !important;
}

.page-home .vision-copy__body-row {
    display: contents !important;
}

.page-home .vision-challenges:not(.vision-challenges--text) {
    width: min(100%, 340px) !important;
    justify-self: start !important;
    align-self: start !important;
    margin-top: 346px !important;
    gap: 10px !important;
}

.page-home .vision-challenges:not(.vision-challenges--text) .vision-challenges__title {
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.62 !important;
    font-weight: 600 !important;
    color: #2F343A !important;
    -webkit-text-fill-color: #2F343A !important;
}

.page-home .vision-challenges:not(.vision-challenges--text) .vision-challenge-list {
    gap: 10px !important;
}

.page-home .vision-challenges:not(.vision-challenges--text) .vision-challenge-card {
    min-height: 62px !important;
    grid-template-columns: 30px 1fr !important;
    gap: 12px !important;
    border-radius: 12px !important;
    padding: 12px 14px !important;
}

.page-home .vision-challenges:not(.vision-challenges--text) .vision-challenge-card__icon {
    width: 30px !important;
    height: 30px !important;
}

.page-home .vision-challenges:not(.vision-challenges--text) .vision-challenge-card h4 {
    font-size: 15px !important;
    line-height: 1.28 !important;
    font-weight: 600 !important;
}

@media (min-width: 861px) and (max-width: 1400px) {
    .page-home .vision-layout {
        grid-template-columns: minmax(0, 1fr) minmax(250px, 320px) !important;
        gap: clamp(42px, 5vw, 78px) !important;
    }

    .page-home .vision-challenges:not(.vision-challenges--text) {
        margin-top: 318px !important;
    }
}

@media (max-width: 860px) {
    .page-home .vision-layout {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
    }

    .page-home .vision-challenges:not(.vision-challenges--text) {
        width: 100% !important;
        justify-self: stretch !important;
        margin-top: 0 !important;
    }
}
