﻿:root {
    --page-width: 1200px;
    --header-height: 96px;
    --hero-height: 680px;
    --hero-inner-height: 420px;
    --navy-950: #081423;
    --navy-900: #10243a;
    --navy-800: #163556;
    --navy-700: #20466e;
    --slate-050: #f7f9fb;
    --slate-100: #eef3f7;
    --slate-200: #dde6ee;
    --slate-300: #c7d4df;
    --slate-500: #5a7187;
    --slate-700: #31475d;
    --orange-500: #ec6f1a;
    --orange-600: #d85f10;
    --olive-700: #5f6f34;
    --white: #ffffff;
    --shadow-lg: 0 24px 64px rgba(8, 20, 35, 0.14);
    --shadow-md: 0 16px 40px rgba(8, 20, 35, 0.09);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #f7f9fb 0%, #edf3f8 100%);
    color: var(--navy-900);
    font-family: "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;
    word-break: keep-all;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: calc(var(--page-width) + 80px);
}

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

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

.site-shell {
    width: calc(var(--page-width) + 80px);
    margin: 0 auto;
    padding: 32px 0 52px;
}

.header {
    width: var(--page-width);
    height: var(--header-height);
    margin: 0 auto;
    padding: 0 32px 0 40px;
    display: grid;
    grid-template-columns: 180px 1fr 150px;
    align-items: center;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(16, 36, 58, 0.08);
    border-radius: 28px;
    box-shadow: var(--shadow-md);
}

.brand {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 1;
}

.brand a {
    display: inline-flex;
    align-items: center;
    height: 100%;
}

.brand__text {
    color: var(--navy-900);
}

.brand__logo {
    display: block;
    width: 116px;
    max-height: 52px;
    height: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 72px;
    height: 100%;
}

.nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 1.22rem;
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1;
}

.nav a.is-active {
    color: var(--orange-500);
}

.nav a.is-active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 20px;
    width: 54px;
    height: 3px;
    border-radius: 999px;
    background: var(--orange-500);
    transform: translateX(-50%);
}

.header__cta {
    display: flex;
    justify-content: flex-end;
}

.button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 134px;
    height: 52px;
    padding: 0 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f5821f 0%, #e16814 100%);
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 16px 30px rgba(236, 111, 26, 0.26);
    gap: 14px;
}

.button-primary::after {
    content: "→";
    font-size: 1.06rem;
    line-height: 1;
}

.page {
    width: var(--page-width);
    margin: 26px auto 0;
}

.hero {
    position: relative;
    height: var(--hero-height);
    padding: 38px 46px;
    overflow: hidden;
    border-radius: 36px;
    border: 1px solid rgba(16, 36, 58, 0.08);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.8), transparent 34%),
        linear-gradient(120deg, rgba(9, 27, 48, 0.96) 0%, rgba(18, 52, 86, 0.9) 46%, rgba(226, 236, 246, 0.2) 46%, rgba(226, 236, 246, 0.12) 58%, rgba(245, 248, 251, 0.94) 58%, rgba(255, 255, 255, 0.98) 100%);
    box-shadow: var(--shadow-lg);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 72px 72px,
        linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 72px 72px;
    opacity: 0.28;
    pointer-events: none;
}

.hero--photo {
    background: linear-gradient(135deg, rgba(8, 20, 35, 0.98), rgba(19, 50, 80, 0.94));
}

.hero--photo::before {
    display: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 470px 1fr;
    align-items: stretch;
    gap: 34px;
    height: var(--hero-inner-height);
}

.hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.hero--light .hero__copy {
    color: var(--navy-900);
}

.hero--photo.hero--light .hero__copy {
    color: var(--white);
}

.hero__eyebrow {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.hero--light .hero__eyebrow {
    color: var(--slate-500);
}

.hero--photo.hero--light .hero__eyebrow {
    color: rgba(255, 255, 255, 0.74);
}

.hero__title {
    margin: 0;
    font-size: 3.45rem;
    font-weight: 800;
    letter-spacing: -0.07em;
    line-height: 1.15;
}

.hero__title .accent {
    color: var(--orange-500);
}

.hero__text {
    max-width: 420px;
    margin: 18px 0 0;
    font-size: 1.08rem;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.84);
}

.hero--light .hero__text {
    color: var(--slate-700);
}

.hero--photo.hero--light .hero__text {
    color: rgba(255, 255, 255, 0.84);
}

.hero__actions {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}

.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 150px;
    height: 52px;
    padding: 0 22px;
    border: 1px solid rgba(16, 36, 58, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.76);
    color: var(--navy-900);
    font-size: 1rem;
    font-weight: 700;
    gap: 14px;
}

.button-secondary::after {
    content: "→";
    font-size: 1.02rem;
    line-height: 1;
}

.hero__visual {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(circle at 78% 26%, rgba(255, 208, 141, 0.85), transparent 20%),
        linear-gradient(180deg, rgba(207, 223, 238, 0.92) 0%, rgba(168, 188, 206, 0.8) 38%, rgba(46, 61, 80, 0.94) 100%);
}

.hero--photo .hero__visual {
    background: #d5dee7;
}

.hero--photo .hero__visual::before,
.hero--photo .hero__visual::after {
    display: none;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__visual::before {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 0;
    height: 64%;
    background:
        repeating-linear-gradient(90deg, rgba(17, 29, 43, 0.92) 0 18px, transparent 18px 74px),
        linear-gradient(180deg, rgba(27, 43, 61, 0.2) 0%, rgba(13, 23, 36, 0.96) 100%);
    clip-path: polygon(6% 0, 74% 0, 100% 24%, 100% 100%, 0 100%, 0 16%);
}

.hero__visual::after {
    content: "";
    position: absolute;
    right: 70px;
    bottom: 38px;
    width: 220px;
    height: 118px;
    border-radius: 999px 999px 44px 44px;
    background:
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.96) 0 46%, rgba(226, 233, 240, 0.92) 47% 62%, transparent 63%),
        linear-gradient(180deg, #f5f7fb 0%, #dfe7ef 100%);
    box-shadow: 0 20px 34px rgba(8, 20, 35, 0.22);
    transform: rotate(-9deg);
}

.hero__hardhat {
    position: absolute;
    right: 122px;
    bottom: 62px;
    width: 130px;
    height: 84px;
    border-radius: 90px 90px 28px 28px;
    background: linear-gradient(180deg, #fcfdff 0%, #d9e2eb 100%);
    box-shadow: 0 16px 26px rgba(8, 20, 35, 0.2);
}

.hero__hardhat::before,
.hero__hardhat::after {
    content: "";
    position: absolute;
    top: 10px;
    width: 10px;
    height: 64px;
    border-radius: 999px;
    background: rgba(137, 149, 162, 0.68);
}

.hero__hardhat::before {
    left: 36px;
}

.hero__hardhat::after {
    left: 66px;
}

.hero__gloves {
    position: absolute;
    right: 290px;
    bottom: 44px;
    width: 164px;
    height: 72px;
    border-radius: 46px;
    background: linear-gradient(135deg, #404b54 0%, #20282f 76%);
    box-shadow: 0 14px 26px rgba(8, 20, 35, 0.22);
    transform: rotate(12deg);
}

.hero__gloves::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 0;
    width: 20px;
    height: 100%;
    background: var(--orange-500);
    border-radius: 14px;
}

.hero__bars {
    position: absolute;
    right: 28px;
    bottom: 22px;
    width: 260px;
    height: 160px;
}

.hero__bars span {
    position: absolute;
    bottom: 0;
    width: 54px;
    border-radius: 18px 18px 0 0;
    background: linear-gradient(180deg, #5b6370 0%, #1c2631 100%);
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.hero__bars span:nth-child(1) {
    right: 184px;
    height: 112px;
}

.hero__bars span:nth-child(2) {
    right: 122px;
    height: 136px;
}

.hero__bars span:nth-child(3) {
    right: 60px;
    height: 150px;
}

.hero__bars span:nth-child(4) {
    right: 0;
    height: 126px;
}

.hero__sun-panel {
    position: absolute;
    right: 88px;
    bottom: 60px;
    width: 240px;
    height: 148px;
    transform: rotate(-18deg);
    border-radius: 10px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px) 0 0 / 34px 34px,
        linear-gradient(0deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px) 0 0 / 34px 34px,
        linear-gradient(180deg, #33537f 0%, #17304f 100%);
    box-shadow: 0 18px 28px rgba(8, 20, 35, 0.22);
}

.hero__diagram {
    position: absolute;
    inset: 34px auto 34px 34px;
    width: 220px;
    border-radius: 22px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 28px 28px,
        linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 28px 28px,
        linear-gradient(180deg, rgba(5, 18, 32, 0.76) 0%, rgba(8, 20, 35, 0.34) 100%);
}

.hero__diagram::after {
    content: "";
    position: absolute;
    left: 28px;
    top: 42px;
    width: 164px;
    height: 146px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    clip-path: polygon(0 100%, 0 26%, 28% 26%, 40% 0, 72% 0, 100% 30%, 100% 100%);
}

.hero__info-card {
    position: absolute;
    left: 42px;
    bottom: 42px;
    width: 250px;
    padding: 24px 24px 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 30px rgba(8, 20, 35, 0.16);
}

.hero__info-card strong {
    display: block;
    margin-bottom: 12px;
    color: var(--navy-900);
    font-size: 1.18rem;
    line-height: 1.4;
}

.hero__info-card p {
    margin: 0;
    color: var(--slate-700);
    font-size: 0.98rem;
    line-height: 1.7;
}

.hero__metrics {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.metric {
    min-height: 130px;
    padding: 16px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(16, 36, 58, 0.08);
    box-shadow: var(--shadow-md);
}

.metric strong {
    display: block;
    margin-bottom: 8px;
    color: var(--navy-900);
    font-size: 1rem;
}

.metric p {
    margin: 0;
    color: var(--slate-700);
    font-size: 0.96rem;
    line-height: 1.72;
}

.section {
    margin-top: 28px;
    padding: 34px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(16, 36, 58, 0.08);
    box-shadow: var(--shadow-md);
}

.section--dark {
    background: linear-gradient(135deg, rgba(8, 20, 35, 0.98), rgba(20, 48, 78, 0.96));
    color: var(--white);
}

.section__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 26px;
}

.section__header h2 {
    margin: 0;
    font-size: 2.08rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.3;
}

.section__header p {
    margin: 0;
    color: var(--slate-500);
    font-size: 1rem;
    line-height: 1.68;
}

.section--dark .section__header p {
    color: rgba(255, 255, 255, 0.72);
}

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

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

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

.card {
    padding: 24px;
    border-radius: 22px;
    border: 1px solid rgba(16, 36, 58, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.section--dark .card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.icon-badge {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(236, 111, 26, 0.12);
    color: var(--orange-500);
    font-size: 1.82rem;
    font-weight: 800;
}

.card h3 {
    margin: 18px 0 10px;
    font-size: 1.34rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.4;
}

.card p {
    margin: 0;
    color: var(--slate-700);
    font-size: 0.98rem;
    line-height: 1.76;
}

.section--dark .card p {
    color: rgba(255, 255, 255, 0.78);
}

.process {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.process--six {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.process__step {
    text-align: center;
    position: relative;
    padding: 12px 10px 0;
}

.process__step:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -7px;
    top: 62px;
    width: 14px;
    height: 2px;
    background: rgba(16, 36, 58, 0.16);
}

.process__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(236, 111, 26, 0.14);
    color: var(--orange-500);
    font-size: 0.95rem;
    font-weight: 800;
}

.process__icon {
    width: 86px;
    height: 86px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(16, 36, 58, 0.08);
    background: #ffffff;
    color: var(--navy-900);
    font-size: 2rem;
    font-weight: 800;
}

.process__step h3 {
    margin: 0 0 8px;
    font-size: 1.16rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.42;
}

.process__step p {
    margin: 0;
    color: var(--slate-700);
    font-size: 0.94rem;
    line-height: 1.72;
}

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

.showcase--five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.showcase__card {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(16, 36, 58, 0.08);
    background: #ffffff;
    box-shadow: 0 16px 32px rgba(8, 20, 35, 0.08);
}

.showcase__visual {
    height: 188px;
    background: linear-gradient(135deg, #cad6e2 0%, #8da2b6 100%);
    position: relative;
}

.showcase__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase__visual--bars::before {
    content: "";
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 26px;
    height: 84px;
    background:
        repeating-linear-gradient(90deg, #3e4c5a 0 18px, transparent 18px 48px),
        linear-gradient(180deg, #687684 0%, #313f4e 100%);
    border-radius: 24px;
}

.showcase__visual--safety::before {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    top: 24px;
    bottom: 24px;
    background:
        radial-gradient(circle at 48% 36%, #ffffff 0 24%, transparent 25%),
        linear-gradient(135deg, rgba(249, 254, 255, 0.92) 0%, rgba(210, 224, 238, 0.88) 100%);
    border-radius: 22px;
}

.showcase__visual--solar::before {
    content: "";
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 30px;
    height: 96px;
    transform: skewX(-18deg);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px) 0 0 / 28px 28px,
        linear-gradient(0deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px) 0 0 / 28px 28px,
        linear-gradient(180deg, #2f4e7b 0%, #152f4e 100%);
}

.showcase__visual--anchor::before,
.showcase__visual--etc::before {
    content: "";
    position: absolute;
    inset: 26px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 24% 70%, #d7dee6 0 16px, transparent 17px),
        radial-gradient(circle at 50% 46%, #d7dee6 0 14px, transparent 15px),
        radial-gradient(circle at 74% 60%, #d7dee6 0 18px, transparent 19px),
        linear-gradient(135deg, #758493 0%, #394858 100%);
}

.showcase__body {
    padding: 22px 22px 20px;
}

.showcase__body h3 {
    margin: 0 0 10px;
    font-size: 1.32rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.4;
}

.showcase__body p {
    margin: 0;
    color: var(--slate-700);
    font-size: 0.95rem;
    line-height: 1.72;
}

.split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
}

.panel {
    padding: 28px;
    border-radius: 26px;
    border: 1px solid rgba(16, 36, 58, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.panel h3 {
    margin: 0 0 14px;
    font-size: 1.72rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.4;
}

.panel p {
    margin: 0;
    color: var(--slate-700);
    font-size: 1rem;
    line-height: 1.82;
}

.info-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.info-list__item {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(16, 36, 58, 0.03);
    border: 1px solid rgba(16, 36, 58, 0.08);
}

.info-list__item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

.info-list__item p {
    font-size: 0.96rem;
}

.quote-card {
    min-height: 100%;
    padding: 30px;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(8, 20, 35, 0.96), rgba(19, 50, 80, 0.92));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.quote-card::after {
    content: "";
    position: absolute;
    right: -28px;
    bottom: -30px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 28px solid rgba(255, 255, 255, 0.06);
}

.quote-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 18px;
    font-size: 1.72rem;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.quote-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1rem;
    line-height: 1.9;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 8px;
}

.timeline__item {
    padding: 22px 20px 20px;
    border-top: 3px solid var(--orange-500);
    background: rgba(16, 36, 58, 0.03);
    border-radius: 0 0 20px 20px;
}

.timeline__year {
    display: block;
    margin-bottom: 12px;
    color: var(--navy-900);
    font-size: 1.18rem;
    font-weight: 800;
}

.org-chart {
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, #fbfdff 0%, #f3f7fb 100%);
    border: 1px solid rgba(16, 36, 58, 0.08);
}

.org-chart__top {
    display: flex;
    justify-content: center;
}

.org-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    min-height: 58px;
    padding: 0 18px;
    border-radius: 18px;
    background: var(--navy-900);
    color: var(--white);
    font-size: 1.04rem;
    font-weight: 700;
}

.org-chart__middle {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 20px;
}

.org-box--soft {
    background: #ffffff;
    color: var(--navy-900);
    border: 1px solid rgba(16, 36, 58, 0.12);
}

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

.org-group {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(16, 36, 58, 0.08);
}

.org-group__head {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin-bottom: 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, #6f7d45 0%, #4f5e2b 100%);
    color: var(--white);
    font-weight: 700;
}

.org-group__list {
    display: grid;
    gap: 10px;
}

.org-group__list span {
    display: block;
    padding: 12px 10px;
    border-radius: 12px;
    background: rgba(16, 36, 58, 0.04);
    text-align: center;
    font-size: 0.94rem;
    font-weight: 700;
}

.cta-band {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 22px;
    align-items: center;
    padding: 34px 36px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(236, 111, 26, 0.18), transparent 24%),
        linear-gradient(135deg, rgba(8, 20, 35, 0.98), rgba(16, 46, 76, 0.94));
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.cta-band h2 {
    margin: 0 0 14px;
    font-size: 2.12rem;
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 1.34;
}

.cta-band p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.82;
}

.cta-band__contact {
    display: grid;
    gap: 14px;
    justify-items: end;
}

.cta-band__contact strong {
    font-size: 1.72rem;
    letter-spacing: -0.04em;
}

.footer {
    width: var(--page-width);
    margin: 28px auto 0;
    padding: 34px 36px 24px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(8, 20, 35, 0.98), rgba(12, 35, 60, 0.98));
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1.2fr;
    gap: 24px;
}

.footer__brand {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 1;
}

.footer__intro p,
.footer__group p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.96rem;
    line-height: 1.72;
}

.footer__group h3 {
    margin: 0;
    font-size: 1.06rem;
    font-weight: 800;
}

.footer__links {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.footer__links span,
.footer__links a {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.95rem;
    line-height: 1.62;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    line-height: 1.6;
}

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

.support-item {
    padding: 24px 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-item h3 {
    margin: 16px 0 10px;
    font-size: 1.26rem;
    font-weight: 800;
}

.support-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.96rem;
    line-height: 1.72;
}

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

.contact-card {
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(16, 36, 58, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.contact-card h3 {
    margin: 0 0 18px;
    font-size: 1.62rem;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.contact-card p,
.contact-card li {
    color: var(--slate-700);
    font-size: 0.98rem;
    line-height: 1.8;
}

.contact-card strong {
    color: var(--orange-500);
    font-size: 1.72rem;
    letter-spacing: -0.04em;
}

.contact-card ul {
    margin: 0;
    padding-left: 20px;
}

.contact-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 30px 32px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(8, 20, 35, 0.98), rgba(18, 53, 88, 0.96));
    color: var(--white);
}

.contact-cta h2 {
    margin: 0 0 10px;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.contact-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.8;
}

/* Mockup fidelity layer: shared desktop canvas and page-specific hero treatments. */
html,
body {
    background: #edf1f4;
    font-family: "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;
}

body {
    min-width: var(--page-width);
}

.site-shell {
    width: var(--page-width);
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 0 0 1px rgba(16, 36, 58, 0.08), 0 24px 70px rgba(8, 20, 35, 0.12);
}

.header {
    width: var(--page-width);
    height: 90px;
    margin: 0;
    padding: 0 48px;
    grid-template-columns: 220px 1fr 150px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: var(--white);
}

.brand {
    font-size: 2.72rem;
    letter-spacing: -0.08em;
}

.nav {
    gap: 86px;
}

.nav a {
    font-size: 1.08rem;
}

.nav a.is-active::after {
    bottom: 16px;
    width: 52px;
    height: 3px;
}

.header__cta .button-primary {
    min-width: 138px;
}

.page {
    width: var(--page-width);
    margin: 0;
}

.hero {
    width: 100%;
    height: 400px;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: var(--navy-950);
}

.page-home .hero {
    height: 680px;
}

.hero::before {
    display: block;
    z-index: 2;
    opacity: 1;
    background: linear-gradient(90deg, rgba(5, 22, 39, 0.92) 0%, rgba(5, 22, 39, 0.68) 37%, rgba(5, 22, 39, 0.12) 68%, transparent 100%);
}

.page-home .hero::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 34%, rgba(255, 255, 255, 0.16) 65%, transparent 100%);
}

.page-business .hero::before {
    background: linear-gradient(110deg, rgba(3, 42, 72, 0.99) 0%, rgba(3, 42, 72, 0.98) 40%, rgba(3, 42, 72, 0.15) 40.2%, transparent 72%);
}

.page-contact .hero::before {
    background: linear-gradient(90deg, rgba(5, 18, 30, 0.88) 0%, rgba(5, 18, 30, 0.58) 48%, rgba(5, 18, 30, 0.08) 75%, transparent 100%);
}

.hero__inner {
    position: static;
    display: block;
    height: 100%;
}

.hero__copy {
    position: absolute;
    z-index: 3;
    left: 72px;
    top: 76px;
    width: 500px;
    display: block;
}

.page-home .hero__copy {
    top: 112px;
    color: var(--navy-900);
}

.hero--photo.hero--light .hero__copy {
    color: var(--navy-900);
}

.hero__eyebrow {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.04rem;
    letter-spacing: 0;
}

.page-home .hero__eyebrow,
.hero--photo.hero--light .hero__eyebrow {
    color: var(--slate-700);
}

.page-about .hero__eyebrow,
.page-business .hero__eyebrow,
.page-contact .hero__eyebrow {
    display: none;
}

.page-home .hero__title + .hero__eyebrow {
    margin: 24px 0 0;
}

.hero__title {
    font-size: 3.62rem;
    letter-spacing: -0.065em;
    line-height: 1.28;
}

.page-home .hero__title {
    font-size: 4rem;
    line-height: 1.24;
}

.hero__text {
    max-width: 470px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.12rem;
    line-height: 1.75;
}

.page-home .hero__text,
.hero--photo.hero--light .hero__text {
    color: var(--slate-700);
}

.page-home .hero__eyebrow + .hero__text {
    margin-top: 10px;
}

.hero__actions {
    display: none;
}

.hero__visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.hero__image {
    object-position: center center;
}

.page-home .hero__image {
    object-position: 64% center;
}

.hero__metrics {
    display: none;
}

.page-home .hero__metrics {
    position: absolute;
    z-index: 3;
    left: 72px;
    bottom: 54px;
    width: 570px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 0;
}

.page-home .metric {
    min-height: 76px;
    padding: 0 22px;
    border: 0;
    border-right: 1px solid rgba(16, 36, 58, 0.16);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.page-home .metric:first-child {
    padding-left: 0;
}

.page-home .metric:last-child {
    border-right: 0;
}

.page-home .metric strong {
    margin-bottom: 6px;
    font-size: 1rem;
}

.page-home .metric p {
    color: var(--slate-700);
    font-size: 0.8rem;
    line-height: 1.55;
}

.section {
    margin: 0;
    padding: 58px 72px;
    border: 0;
    border-radius: 0;
    background: var(--white);
    box-shadow: none;
}

.section + .section {
    border-top: 1px solid var(--slate-200);
}

.section--dark {
    background: linear-gradient(110deg, #032e50 0%, #06385f 100%);
}

.section__header {
    display: block;
    margin-bottom: 38px;
    text-align: center;
}

.section__header h2 {
    font-size: 2.32rem;
}

.section__header h2::after {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    margin: 14px auto 0;
    background: var(--orange-500);
}

.section__header p {
    max-width: 720px;
    margin: 14px auto 0;
}

.page-home .section--dark {
    padding-top: 46px;
    padding-bottom: 46px;
}

.page-home .section--dark .section__header {
    display: none;
}

.page-home .section--dark .grid-4 {
    gap: 0;
}

.page-home .section--dark .card {
    min-height: 180px;
    padding: 20px 34px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 0;
    background: transparent;
    text-align: center;
}

.page-home .section--dark .card:last-child {
    border-right: 0;
}

.page-home .section--dark .icon-badge {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.page-home .section--dark .card h3 {
    margin-top: 16px;
}

.process {
    gap: 28px;
}

.process__step {
    padding-top: 0;
}

.process__step:not(:last-child)::after {
    right: -22px;
    top: 84px;
    width: 44px;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--slate-300) 0 6px, transparent 6px 11px);
}

.process__index {
    position: absolute;
    z-index: 2;
    top: -8px;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: 0;
    color: var(--white);
    background: var(--orange-500);
    transform: translateX(25px);
}

.process__icon {
    width: 104px;
    height: 104px;
    margin-bottom: 20px;
    font-size: 1.72rem;
}

.process__step h3 {
    font-size: 1.06rem;
}

.process__step p {
    font-size: 0.84rem;
}

.showcase {
    gap: 16px;
}

.showcase__card {
    border-radius: 8px;
    box-shadow: none;
}

.showcase__visual {
    height: 174px;
}

.showcase__body {
    min-height: 170px;
    padding: 20px;
}

.showcase__body h3 {
    color: var(--navy-900);
}

.split {
    gap: 34px;
}

.panel {
    border-radius: 8px;
    box-shadow: none;
}

.quote-card {
    border-radius: 8px;
}

.timeline__item,
.org-chart,
.org-group,
.org-group__head,
.org-group__list span {
    border-radius: 4px;
}

.support-list {
    gap: 0;
}

.support-item {
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0;
    background: transparent;
}

.support-item:last-child {
    border-right: 0;
}

.contact-grid {
    gap: 18px;
}

.contact-card {
    min-height: 360px;
    border-radius: 8px;
}

.contact-cta {
    margin: 0 52px 38px;
    border-radius: 8px;
}

.cta-band {
    margin: 0;
    padding: 40px 72px;
    border-radius: 0;
    box-shadow: none;
    background: linear-gradient(110deg, #032e50 0%, #06385f 100%);
}

.page-about .cta-band,
.page-contact .cta-band {
    margin: 0 52px 48px;
    border-radius: 8px;
}

.footer {
    width: var(--page-width);
    margin: 0;
    padding: 42px 56px 28px;
    border-radius: 0;
    box-shadow: none;
    background: linear-gradient(110deg, #032e50 0%, #062f50 100%);
}

.footer__bottom {
    margin-top: 30px;
}

/* Screenshot review corrections: title wrapping, media-led summaries and CTA imagery. */
.page-home .hero__copy {
    width: 630px;
}

.page-home .hero__title {
    font-size: 3.5rem;
    line-height: 1.24;
    white-space: nowrap;
}

.page-home .hero__eyebrow {
    font-size: 1.08rem;
    font-weight: 700;
}

.page-home .hero__text {
    display: none;
}

.page-home .hero__metrics {
    bottom: 44px;
    width: 600px;
}

.page-home .metric {
    padding-right: 18px;
    padding-left: 18px;
}

.page-about .split,
.page-business .split {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.company-visual,
.business-visual {
    min-height: 280px;
    overflow: hidden;
    border: 1px solid rgba(16, 36, 58, 0.08);
    border-radius: 8px;
    background: var(--slate-100);
}

.company-visual img,
.business-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-visual img {
    object-position: 62% center;
}

.business-visual {
    grid-row: 1 / span 2;
}

.business-visual img {
    object-position: center;
}

.page-about .quote-card {
    grid-column: 1 / -1;
    min-height: 220px;
    padding-right: 48%;
    background:
        linear-gradient(90deg, rgba(4, 42, 71, 0.98) 0%, rgba(4, 42, 71, 0.9) 48%, rgba(4, 42, 71, 0.28) 72%, rgba(4, 42, 71, 0.12) 100%),
        url("../assets/hero-home.png") center / cover no-repeat;
}

.page-business .panel {
    min-height: 132px;
    padding: 24px 26px;
}

.page-business .panel h3 {
    font-size: 1.42rem;
}

.page-contact .cta-band {
    background:
        linear-gradient(90deg, rgba(3, 46, 80, 0.99) 0%, rgba(3, 46, 80, 0.96) 55%, rgba(3, 46, 80, 0.56) 100%),
        url("../assets/category-construction.png") right center / 48% auto no-repeat;
}

/* Final mockup tuning: strengthen hero typography, rebalance summary media blocks, and tighten CTA spacing. */
.page-home .hero__copy {
    top: 104px;
    left: 70px;
    width: 690px;
}

.page-home .hero__title {
    font-size: 3.78rem;
    line-height: 1.19;
    letter-spacing: -0.075em;
}

.page-home .hero__eyebrow {
    margin-top: 24px;
    color: var(--navy-800);
    font-size: 1.02rem;
}

.page-home .hero__metrics {
    bottom: 54px;
    left: 70px;
    width: 660px;
    gap: 0;
}

.page-home .metric {
    min-height: 96px;
    padding: 0 24px;
    border-right: 1px solid rgba(16, 36, 58, 0.2);
}

.page-home .metric strong {
    margin-bottom: 8px;
    color: var(--navy-900);
    font-size: 1.05rem;
    font-weight: 800;
}

.page-home .metric p {
    color: var(--slate-700);
    font-size: 0.82rem;
    line-height: 1.62;
}

.page-about .section:first-of-type {
    padding-top: 50px;
    padding-bottom: 42px;
}

.page-about .section:first-of-type .split {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 30px;
}

.page-about .company-visual {
    min-height: 250px;
}

.page-about .panel {
    padding: 28px 30px;
}

.page-about .panel h3,
.page-business .panel h3 {
    margin-bottom: 16px;
    font-size: 1.48rem;
}

.page-about .panel p,
.page-business .panel p {
    color: var(--slate-700);
    font-size: 0.98rem;
    line-height: 1.85;
}

.page-about .quote-card {
    min-height: 190px;
    padding: 30px 46% 30px 32px;
}

.page-about .quote-card h3 {
    margin-bottom: 14px;
    font-size: 1.42rem;
}

.page-about .quote-card p {
    font-size: 0.98rem;
    line-height: 1.85;
}

.page-business .section:first-of-type {
    padding-top: 50px;
    padding-bottom: 46px;
}

.page-business .section:first-of-type .split {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 30px;
}

.page-business .business-visual {
    min-height: 268px;
}

.page-business .panel {
    min-height: 126px;
    padding: 28px 30px;
}

.page-contact .contact-grid {
    margin-bottom: 32px;
}

.page-contact .contact-cta {
    margin-bottom: 28px;
}

.page-contact .cta-band {
    margin-bottom: 40px;
    padding: 34px 54px;
}

.page-contact .cta-band h2 {
    font-size: 1.95rem;
}

.page-contact .cta-band p {
    line-height: 1.72;
}

/* Organization chart connectors for the company page. */
.page-about .org-chart {
    position: relative;
    padding-top: 30px;
}

.page-about .org-chart__top,
.page-about .org-chart__middle,
.page-about .org-chart__groups,
.page-about .org-group {
    position: relative;
}

.page-about .org-chart__top {
    padding-bottom: 34px;
}

.page-about .org-chart__top::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 1px;
    height: 34px;
    background: rgba(16, 36, 58, 0.2);
    transform: translateX(-50%);
}

.page-about .org-chart__middle {
    margin-top: 0;
    padding-bottom: 38px;
}

.page-about .org-chart__middle::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(50% - 105px);
    right: calc(50% - 105px);
    height: 1px;
    background: rgba(16, 36, 58, 0.2);
}

.page-about .org-chart__middle::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 1px;
    height: 38px;
    background: rgba(16, 36, 58, 0.2);
    transform: translateX(-50%);
}

.page-about .org-chart__middle .org-box {
    margin-top: 22px;
}

.page-about .org-chart__middle .org-box::before {
    content: "";
    position: absolute;
    top: -22px;
    left: 50%;
    width: 1px;
    height: 22px;
    background: rgba(16, 36, 58, 0.2);
    transform: translateX(-50%);
}

.page-about .org-chart__groups {
    margin-top: 0;
    padding-top: 28px;
}

.page-about .org-chart__groups::before {
    content: "";
    position: absolute;
    top: 0;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: rgba(16, 36, 58, 0.2);
}

.page-about .org-group::before {
    content: "";
    position: absolute;
    top: -28px;
    left: 50%;
    width: 1px;
    height: 28px;
    background: rgba(16, 36, 58, 0.2);
    transform: translateX(-50%);
}

.page-about .org-box,
.page-about .org-group__head {
    position: relative;
    z-index: 1;
}

/* Process sections: align home, business and contact step layouts with the mockup. */
.page-home .process,
.page-business .process,
.page-contact .process {
    width: 100%;
    max-width: 980px;
    margin-right: auto;
    margin-left: auto;
    gap: 30px;
}

.page-home .process--six {
    max-width: 1040px;
    gap: 22px;
}

.page-home .process__step,
.page-business .process__step,
.page-contact .process__step {
    min-width: 0;
    padding: 0;
}

.page-home .process__step:not(:last-child)::after,
.page-business .process__step:not(:last-child)::after,
.page-contact .process__step:not(:last-child)::after {
    top: 46px;
    right: -30px;
    width: 60px;
    background: repeating-linear-gradient(90deg, #c6d2df 0 6px, transparent 6px 12px);
}

.page-home .process--six .process__step:not(:last-child)::after {
    right: -22px;
    width: 44px;
}

.page-home .process__icon,
.page-business .process__icon,
.page-contact .process__icon {
    width: 92px;
    height: 92px;
    margin-bottom: 22px;
    border-color: #dfe6ee;
    color: var(--navy-900);
    font-size: 1.72rem;
    line-height: 1;
}

.page-home .process__index,
.page-business .process__index,
.page-contact .process__index {
    top: -8px;
    left: 50%;
    width: 28px;
    height: 28px;
    font-size: 0.82rem;
    transform: translateX(24px);
}

.page-home .process__step h3,
.page-business .process__step h3,
.page-contact .process__step h3 {
    margin-bottom: 10px;
    color: var(--navy-900);
    font-size: 1.05rem;
    line-height: 1.35;
}

.page-home .process__step p,
.page-business .process__step p,
.page-contact .process__step p {
    max-width: 138px;
    margin-right: auto;
    margin-left: auto;
    color: var(--navy-800);
    font-size: 0.84rem;
    line-height: 1.72;
}

.page-home .process--six .process__step p {
    max-width: 126px;
}

.page-home .process + *,
.page-business .process + *,
.page-contact .process + * {
    margin-top: 0;
}

/* Process icon style: replace text abbreviations with line icons and arrow connectors. */
.page-home .process__step:not(:last-child)::after,
.page-business .process__step:not(:last-child)::after,
.page-contact .process__step:not(:last-child)::after {
    content: "→";
    top: 34px;
    right: -28px;
    width: 56px;
    height: auto;
    background: none;
    color: var(--navy-900);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.page-home .process--six .process__step:not(:last-child)::after {
    right: -22px;
    width: 44px;
}

.page-home .process__icon,
.page-business .process__icon,
.page-contact .process__icon {
    position: relative;
    font-size: 0;
}

.page-home .process__icon::before,
.page-business .process__icon::before,
.page-contact .process__icon::before {
    content: "";
    width: 44px;
    height: 44px;
    background: var(--navy-900);
    -webkit-mask: var(--process-icon) center / contain no-repeat;
    mask: var(--process-icon) center / contain no-repeat;
}

.process__step:nth-child(1) .process__icon {
    --process-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5h16v11H9l-5 4V5z'/%3E%3Cpath d='M8 10h.01M12 10h.01M16 10h.01'/%3E%3C/svg%3E");
}

.process__step:nth-child(2) .process__icon {
    --process-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='6' y='5' width='12' height='16' rx='2'/%3E%3Cpath d='M9 5a3 3 0 0 1 6 0v2H9V5zM9 12h6M9 16h4'/%3E%3C/svg%3E");
}

.process__step:nth-child(3) .process__icon {
    --process-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5h2l2.2 10.5h8.6L19 8H7.2'/%3E%3Ccircle cx='10' cy='19' r='1.3'/%3E%3Ccircle cx='17' cy='19' r='1.3'/%3E%3Cpath d='M10 11h5'/%3E%3C/svg%3E");
}

.process__step:nth-child(4) .process__icon {
    --process-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 7h11v10H3V7zM14 10h4l3 3v4h-7v-7z'/%3E%3Ccircle cx='7' cy='18' r='1.5'/%3E%3Ccircle cx='18' cy='18' r='1.5'/%3E%3C/svg%3E");
}

.process__step:nth-child(5) .process__icon {
    --process-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13v-2a7 7 0 0 1 14 0v2'/%3E%3Cpath d='M5 13h3v5H5v-5zM16 13h3v5h-3v-5zM16 20h-3a3 3 0 0 1-3-3'/%3E%3C/svg%3E");
}

.process__step:nth-child(6) .process__icon {
    --process-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 12l-2 2a3 3 0 0 0 4 4l2-2M16 12l2-2a3 3 0 0 0-4-4l-2 2M9 15l6-6'/%3E%3Cpath d='M7 9l-3 3M17 15l3-3'/%3E%3C/svg%3E");
}

/* Business page mockup alignment: service intro, support icons and image CTA. */
.page-business .section:first-of-type {
    padding: 42px 52px;
}

.business-intro {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 42px;
    align-items: center;
}

.business-intro .business-visual {
    min-height: 356px;
    border: 0;
    border-radius: 8px;
    box-shadow: none;
}

.business-intro .business-visual img {
    object-position: center;
}

.business-intro__content h2 {
    margin: 0 0 20px;
    color: var(--navy-900);
    font-size: 2.18rem;
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 1.25;
}

.business-intro__content > p {
    max-width: 520px;
    margin: 0 0 34px;
    color: var(--slate-700);
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.76;
}

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

.business-point {
    min-height: 126px;
    padding: 0 16px;
    border-left: 1px solid #e3e9f0;
    text-align: center;
}

.business-point:first-child {
    border-left: 0;
}

.business-point__icon {
    display: block;
    width: 42px;
    height: 42px;
    margin: 0 auto 14px;
    background: var(--navy-900);
    -webkit-mask: var(--point-icon) center / contain no-repeat;
    mask: var(--point-icon) center / contain no-repeat;
}

.business-point:nth-child(1) .business-point__icon {
    --point-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Cpath d='M12 8v4l3 2M17 7l2-2M7 17l-2 2M14 10l5-5'/%3E%3C/svg%3E");
}

.business-point:nth-child(2) .business-point__icon {
    --point-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v5c0 4.5-2.8 8-7 10-4.2-2-7-5.5-7-10V6l7-3z'/%3E%3Cpath d='M9 12l2 2 4-5'/%3E%3C/svg%3E");
}

.business-point:nth-child(3) .business-point__icon {
    --point-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 12l3 3a3 3 0 0 0 4 0l4-4'/%3E%3Cpath d='M2 12l5-5 4 4M22 12l-5-5-4 4M7 17l-3-3M17 17l3-3'/%3E%3C/svg%3E");
}

.business-point:nth-child(4) .business-point__icon {
    --point-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 7h11v10H3V7zM14 10h4l3 3v4h-7v-7z'/%3E%3Ccircle cx='7' cy='18' r='1.5'/%3E%3Ccircle cx='18' cy='18' r='1.5'/%3E%3C/svg%3E");
}

.business-point strong {
    display: block;
    margin-bottom: 8px;
    color: var(--navy-900);
    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1.35;
}

.business-point p {
    margin: 0;
    color: var(--slate-700);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.52;
}

.page-business .process {
    max-width: 1120px;
    gap: 20px;
}

.page-business .process__step:not(:last-child)::after {
    right: -18px;
    width: 36px;
    font-size: 1.5rem;
}

.page-business .process__icon {
    width: 88px;
    height: 88px;
    margin-bottom: 16px;
}

.page-business .process__icon::before {
    width: 38px;
    height: 38px;
}

.page-business .process__step h3 {
    font-size: 0.98rem;
}

.page-business .process__step p {
    max-width: 124px;
    font-size: 0.75rem;
    line-height: 1.56;
}

.page-business .showcase--five {
    gap: 12px;
}

.page-business .showcase__visual {
    height: 146px;
}

.page-business .showcase__body {
    min-height: 132px;
    padding: 16px 14px 14px;
}

.page-business .showcase__body h3 {
    margin-bottom: 8px;
    font-size: 0.98rem;
}

.page-business .showcase__body p {
    font-size: 0.7rem;
    line-height: 1.54;
}

.page-business .section--dark {
    padding: 56px 76px 58px;
    background: linear-gradient(110deg, #032e50 0%, #06385f 100%);
}

.page-business .section--dark .section__header {
    margin-bottom: 40px;
    text-align: left;
}

.page-business .section--dark .section__header h2 {
    color: var(--white);
    font-size: 2.12rem;
}

.page-business .section--dark .section__header h2::after {
    margin-left: 0;
}

.page-business .section--dark .section__header p {
    max-width: 720px;
    margin-right: 0;
    margin-left: 0;
    text-align: left;
}

.page-business .support-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.page-business .support-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 18px;
    align-content: start;
    min-height: 128px;
    padding: 0 22px 0 0;
    border-right: 1px solid rgba(255, 255, 255, 0.24);
    text-align: left;
}

.page-business .support-item .icon-badge {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 40px;
    height: 40px;
    margin: 4px 0 0;
    border-radius: 0;
    background: var(--orange-500);
    font-size: 0;
    -webkit-mask: var(--support-icon) center / contain no-repeat;
    mask: var(--support-icon) center / contain no-repeat;
}

.page-business .support-item:nth-child(1) .icon-badge {
    --support-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3Cpath d='M4 21a8 8 0 0 1 16 0'/%3E%3C/svg%3E");
}

.page-business .support-item:nth-child(2) .icon-badge {
    --support-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='12' cy='4' r='2'/%3E%3Ccircle cx='4' cy='18' r='2'/%3E%3Ccircle cx='20' cy='18' r='2'/%3E%3Cpath d='M12 6v2M7 15l-2 2M17 15l2 2'/%3E%3C/svg%3E");
}

.page-business .support-item:nth-child(3) .icon-badge {
    --support-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v5c0 4.5-2.8 8-7 10-4.2-2-7-5.5-7-10V6l7-3z'/%3E%3Cpath d='M9 12l2 2 4-5'/%3E%3C/svg%3E");
}

.page-business .support-item:nth-child(4) .icon-badge {
    --support-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 3h6v5h5v6h-5v7H9v-7H4V8h5V3z'/%3E%3C/svg%3E");
}

.page-business .support-item h3 {
    grid-column: 2;
    margin: 0 0 10px;
    color: var(--white);
    font-size: 1.08rem;
    line-height: 1.35;
}

.page-business .support-item p {
    grid-column: 2;
    max-width: 190px;
    font-size: 0.88rem;
    line-height: 1.72;
    word-break: keep-all;
}

.page-business .cta-band {
    grid-template-columns: 1.4fr 0.6fr;
    min-height: 168px;
    padding: 34px 40px 34px 36px;
    background:
        linear-gradient(90deg, rgba(3, 35, 60, 0.96) 0%, rgba(3, 35, 60, 0.9) 32%, rgba(3, 35, 60, 0.34) 58%, rgba(3, 35, 60, 0.06) 100%),
        url("../assets/business-cta-generated.png") center 52% / cover no-repeat;
}

.page-business .cta-band h2 {
    margin-bottom: 12px;
    font-size: 1.82rem;
    line-height: 1.24;
}

.page-business .cta-band p {
    max-width: 430px;
    font-size: 0.92rem;
    line-height: 1.72;
}

.page-business .cta-band__contact {
    gap: 14px;
    align-self: center;
    justify-items: center;
}

.page-business .cta-band__contact strong {
    font-size: 1.54rem;
}

.page-business .cta-band__contact .button-primary {
    min-width: 146px;
    min-height: 52px;
    border-radius: 4px;
}

.page-business .footer {
    padding: 34px 40px 22px;
}

.page-business .footer__grid {
    grid-template-columns: 1.18fr 0.86fr 1.1fr 0.78fr 1.15fr;
    gap: 34px;
}

.page-business .footer__intro p {
    margin-top: 16px;
    max-width: 190px;
    font-size: 0.92rem;
    line-height: 1.72;
}

.page-business .footer__group h3 {
    margin-bottom: 14px;
}

/* Final page-specific mockup alignment for home, about and contact pages. */
.line-icon {
    display: inline-block;
    width: 48px;
    height: 48px;
    background-color: currentColor;
    -webkit-mask: center / contain no-repeat;
    mask: center / contain no-repeat;
}

.line-icon--target {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 4v2M20 12h-2M12 20v-2M4 12h2M17.5 6.5l-1.4 1.4M6.5 17.5l1.4-1.4M17.5 17.5l-1.4-1.4M6.5 6.5l1.4 1.4'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 4v2M20 12h-2M12 20v-2M4 12h2M17.5 6.5l-1.4 1.4M6.5 17.5l1.4-1.4M17.5 17.5l-1.4-1.4M6.5 6.5l1.4 1.4'/%3E%3C/svg%3E");
}

.line-icon--shield,
.line-icon--shield-light {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v5c0 5-3.5 8.5-7 10-3.5-1.5-7-5-7-10V6l7-3z'/%3E%3Cpath d='M9.5 12.2l1.8 1.8 3.6-4.1'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v5c0 5-3.5 8.5-7 10-3.5-1.5-7-5-7-10V6l7-3z'/%3E%3Cpath d='M9.5 12.2l1.8 1.8 3.6-4.1'/%3E%3C/svg%3E");
}

.line-icon--handshake {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 11l2.5 2.5a2 2 0 0 0 2.8 0l3.7-3.7'/%3E%3Cpath d='M3 10l4-4 4 4-4 4-4-4zM13 10l4-4 4 4-4 4-4-4z'/%3E%3Cpath d='M7 14l2 2M10 15l1.7 1.7M13 14l1.3 1.3'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 11l2.5 2.5a2 2 0 0 0 2.8 0l3.7-3.7'/%3E%3Cpath d='M3 10l4-4 4 4-4 4-4-4zM13 10l4-4 4 4-4 4-4-4z'/%3E%3Cpath d='M7 14l2 2M10 15l1.7 1.7M13 14l1.3 1.3'/%3E%3C/svg%3E");
}

.line-icon--document-light {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3h8l4 4v14H6z'/%3E%3Cpath d='M14 3v5h5M9 12h6M9 16h6'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3h8l4 4v14H6z'/%3E%3Cpath d='M14 3v5h5M9 12h6M9 16h6'/%3E%3C/svg%3E");
}

.line-icon--truck-light {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 7h11v9H3zM14 10h4l3 3v3h-7z'/%3E%3Ccircle cx='7' cy='18' r='1.5'/%3E%3Ccircle cx='18' cy='18' r='1.5'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 7h11v9H3zM14 10h4l3 3v3h-7z'/%3E%3Ccircle cx='7' cy='18' r='1.5'/%3E%3Ccircle cx='18' cy='18' r='1.5'/%3E%3C/svg%3E");
}

.line-icon--worker-light {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='3.5'/%3E%3Cpath d='M5.5 20a6.5 6.5 0 0 1 13 0M8.5 5.5h7'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='3.5'/%3E%3Cpath d='M5.5 20a6.5 6.5 0 0 1 13 0M8.5 5.5h7'/%3E%3C/svg%3E");
}

.line-icon--building-light {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20V7l7-3v16M20 20V10l-7-3M8 8h2M8 12h2M8 16h2M14 8h2M14 12h2M14 16h2'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20V7l7-3v16M20 20V10l-7-3M8 8h2M8 12h2M8 16h2M14 8h2M14 12h2M14 16h2'/%3E%3C/svg%3E");
}

.line-icon--helmet-light {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 14a8 8 0 0 1 16 0v1H4zM7 15v3M17 15v3M12 6v3'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 14a8 8 0 0 1 16 0v1H4zM7 15v3M17 15v3M12 6v3'/%3E%3C/svg%3E");
}

.line-icon--solar-light {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 14h16l-2 6H6zM7 14l1.5-6h7L17 14M12 4v2M5 7l1.5 1M19 7l-1.5 1'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 14h16l-2 6H6zM7 14l1.5-6h7L17 14M12 4v2M5 7l1.5 1M19 7l-1.5 1'/%3E%3C/svg%3E");
}

.line-icon--company {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 20V5h10v15M15 20v-9h4v9M9 8h2M9 12h2M9 16h2'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 20V5h10v15M15 20v-9h4v9M9 8h2M9 12h2M9 16h2'/%3E%3C/svg%3E");
}

.line-icon--phone,
.line-icon--phone-light {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 4h4l1 5-2.5 2.5a16 16 0 0 0 4 4L15 13l5 1v4a2 2 0 0 1-2 2C9.7 20 4 14.3 4 7a2 2 0 0 1 2-2z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 4h4l1 5-2.5 2.5a16 16 0 0 0 4 4L15 13l5 1v4a2 2 0 0 1-2 2C9.7 20 4 14.3 4 7a2 2 0 0 1 2-2z'/%3E%3C/svg%3E");
}

.line-icon--calendar,
.line-icon--calendar-light {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='15' rx='2'/%3E%3Cpath d='M8 3v4M16 3v4M4 10h16'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='15' rx='2'/%3E%3Cpath d='M8 3v4M16 3v4M4 10h16'/%3E%3C/svg%3E");
}

.line-icon--location {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s6-5.3 6-11a6 6 0 1 0-12 0c0 5.7 6 11 6 11z'/%3E%3Ccircle cx='12' cy='10' r='2.3'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s6-5.3 6-11a6 6 0 1 0-12 0c0 5.7 6 11 6 11z'/%3E%3Ccircle cx='12' cy='10' r='2.3'/%3E%3C/svg%3E");
}

.line-icon--mail,
.line-icon--mail-light {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='6' width='18' height='12' rx='2'/%3E%3Cpath d='M4 8l8 6 8-6'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='6' width='18' height='12' rx='2'/%3E%3Cpath d='M4 8l8 6 8-6'/%3E%3C/svg%3E");
}

.line-icon--box {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l8 4.5v9L12 21 4 16.5v-9L12 3zM12 12l8-4.5M12 12L4 7.5M12 12v9'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l8 4.5v9L12 21 4 16.5v-9L12 3zM12 12l8-4.5M12 12L4 7.5M12 12v9'/%3E%3C/svg%3E");
}

.line-icon--network {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6' cy='12' r='2'/%3E%3Ccircle cx='18' cy='6' r='2'/%3E%3Ccircle cx='18' cy='18' r='2'/%3E%3Cpath d='M8 12h5M15.3 7.4l-4 3M15.3 16.6l-4-3'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6' cy='12' r='2'/%3E%3Ccircle cx='18' cy='6' r='2'/%3E%3Ccircle cx='18' cy='18' r='2'/%3E%3Cpath d='M8 12h5M15.3 7.4l-4 3M15.3 16.6l-4-3'/%3E%3C/svg%3E");
}

.line-icon--clock,
.line-icon--clock-light {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Cpath d='M12 8v5l3 2'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Cpath d='M12 8v5l3 2'/%3E%3C/svg%3E");
}

.line-icon--fax-light {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 7V4h10v5M6 10h12a2 2 0 0 1 2 2v5H4v-5a2 2 0 0 1 2-2zM8 14h4M8 17h8'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 7V4h10v5M6 10h12a2 2 0 0 1 2 2v5H4v-5a2 2 0 0 1 2-2zM8 14h4M8 17h8'/%3E%3C/svg%3E");
}

.line-icon--file-light {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3h8l4 4v14H6zM14 3v5h5M9 12h6M9 16h5'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3h8l4 4v14H6zM14 3v5h5M9 12h6M9 16h5'/%3E%3C/svg%3E");
}

.line-icon--headset-light {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12a8 8 0 0 1 16 0v5h-3v-4h-2v7h3M4 17h3v-4h2v7H6'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12a8 8 0 0 1 16 0v5h-3v-4h-2v7h3M4 17h3v-4h2v7H6'/%3E%3C/svg%3E");
}

.page-home .hero {
    min-height: 560px;
}

.page-home .hero__copy {
    top: 92px;
    left: 56px;
    width: 620px;
}

.page-home .hero__title {
    font-size: 4rem;
    line-height: 1.23;
}

.page-home .hero__text,
.page-home .hero__actions {
    display: none;
}

.home-hero-metrics {
    position: absolute;
    left: 58px;
    right: auto;
    bottom: 72px;
    display: flex;
    gap: 22px;
    width: 520px;
    background: none;
    padding: 0;
}

.metric--inline {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
}

.metric--inline .line-icon {
    width: 40px;
    height: 40px;
    color: var(--orange-500);
    flex: 0 0 auto;
}

.metric--inline strong {
    display: block;
    margin-bottom: 2px;
    color: var(--navy-900);
    font-size: 1.02rem;
}

.metric--inline p {
    margin: 0;
    color: rgba(16, 36, 58, 0.78);
    font-size: 0.78rem;
    line-height: 1.45;
}

.home-value-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 38px 44px 34px;
    background: linear-gradient(90deg, #052e53 0%, #062a4a 100%);
    color: var(--white);
}

.home-value-strip__item {
    padding: 6px 28px 8px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.home-value-strip__item:last-child {
    border-right: 0;
}

.home-value-strip__item .line-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    color: #f1f5f9;
}

.home-value-strip__item h3 {
    margin: 0 0 10px;
    font-size: 1.46rem;
    line-height: 1.3;
    letter-spacing: -0.05em;
}

.home-value-strip__item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.94rem;
    line-height: 1.72;
}

.section--process-home,
.section--home-products,
.section--about-overview,
.section--about-message,
.section--about-strengths,
.section--about-org,
.section--contact-process,
.section--contact-cards {
    padding-right: 54px;
    padding-left: 54px;
}

.section--process-home .section__header p,
.section--home-products .section__header p,
.section--about-strengths .section__header p,
.section--about-org .section__header p,
.section--contact-process .section__header p,
.section--contact-cards .section__header p {
    display: none;
}

.showcase--home {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.showcase__card--featured {
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(16, 36, 58, 0.08);
    box-shadow: none;
}

.showcase__card--featured .showcase__visual {
    height: 226px;
}

.showcase__card--featured .showcase__body {
    position: relative;
    padding: 26px 22px 26px 96px;
}

.showcase__badge {
    position: absolute;
    left: 22px;
    top: 24px;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #0a3760;
    color: #ffffff;
}

.showcase__badge--orange {
    background: var(--orange-500);
}

.showcase__badge .line-icon {
    width: 28px;
    height: 28px;
    color: inherit;
}

.showcase__card--featured h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.72rem;
    line-height: 1.2;
}

.showcase__card--featured p {
    font-size: 0.96rem;
    line-height: 1.72;
}

.cta-band--home {
    grid-template-columns: 1.2fr 0.8fr;
    min-height: 156px;
    background:
        linear-gradient(90deg, rgba(3, 35, 60, 0.96) 0%, rgba(3, 35, 60, 0.88) 48%, rgba(3, 35, 60, 0.18) 100%),
        url("../assets/hero-home.png") center center / cover no-repeat;
}

.cta-band--home .accent {
    color: var(--orange-500);
}

.cta-band__subtext {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.96rem;
}

.footer--home .footer__grid {
    grid-template-columns: 1.2fr 0.9fr 0.9fr 0.8fr 1.1fr;
}

.footer--home .footer__intro p {
    max-width: 220px;
}

.footer--home .footer__bottom {
    justify-content: center;
}

.page-about .hero {
    min-height: 362px;
}

.page-about .hero__copy {
    top: 66px;
    left: 56px;
    width: 420px;
}

.page-about .hero__eyebrow,
.page-about .hero__metrics {
    display: none;
}

.page-about .hero__title {
    font-size: 3.6rem;
    line-height: 1.1;
}

.page-about .hero__text {
    max-width: 360px;
    margin-top: 26px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.22rem;
    line-height: 1.62;
}

.company-subnav--mockup {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 62px;
    border-bottom: 1px solid rgba(16, 36, 58, 0.12);
}

.company-subnav--mockup span,
.company-subnav--mockup a {
    padding: 20px 18px;
    text-align: center;
    color: var(--navy-800);
    font-size: 1.28rem;
    font-weight: 700;
    border-right: 1px solid rgba(16, 36, 58, 0.12);
}

.company-subnav--mockup span:last-child,
.company-subnav--mockup a:last-child {
    border-right: 0;
}

.company-subnav--mockup .is-active {
    background: #0a2f54;
    color: #ffffff;
}

.section--about-overview,
.section--about-message,
.section--about-org {
    scroll-margin-top: 88px;
}

.section__header--left {
    align-items: flex-start;
    text-align: left;
}

.section__header--left h2::after {
    margin-left: 0;
}

.about-overview {
    display: grid;
    grid-template-columns: 0.52fr 0.48fr;
    gap: 38px;
    align-items: center;
    margin-bottom: 26px;
}

.about-overview__image {
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(16, 36, 58, 0.08);
}

.about-overview__image img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.about-overview__content h3 {
    margin: 0 0 18px;
    color: var(--navy-900);
    font-size: 2.2rem;
    line-height: 1.3;
    letter-spacing: -0.06em;
}

.about-overview__content p {
    margin: 0;
    color: var(--slate-700);
    font-size: 1rem;
    line-height: 1.88;
}

.about-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(16, 36, 58, 0.12);
    border-left: 1px solid rgba(16, 36, 58, 0.12);
}

.about-info-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    min-height: 108px;
    padding: 22px 26px;
    border-right: 1px solid rgba(16, 36, 58, 0.12);
    border-bottom: 1px solid rgba(16, 36, 58, 0.12);
}

.about-info-card .line-icon {
    width: 34px;
    height: 34px;
    color: #0c2f55;
    flex: 0 0 auto;
}

.about-info-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--navy-900);
    font-size: 1rem;
}

.about-info-card p {
    margin: 0;
    color: var(--slate-700);
    font-size: 0.96rem;
    line-height: 1.7;
}

.about-message {
    position: relative;
    overflow: hidden;
    min-height: 304px;
    padding: 50px 48px;
    border-radius: 14px;
    background:
        linear-gradient(90deg, rgba(4, 32, 57, 0.92) 0%, rgba(4, 32, 57, 0.88) 42%, rgba(4, 32, 57, 0.24) 100%),
        url("../assets/hero-contact.png") center center / cover no-repeat;
    color: #ffffff;
}

.about-message__copy {
    max-width: 410px;
}

.about-message__quote {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--orange-500);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.about-message h2 {
    margin: 0 0 18px;
    font-size: 2.1rem;
    letter-spacing: -0.05em;
}

.about-message p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.85;
}

.about-message strong {
    display: block;
    margin-top: 26px;
    color: #ffffff;
    font-size: 1.48rem;
    letter-spacing: -0.03em;
}

.about-strengths {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(16, 36, 58, 0.08);
}

.about-strength {
    padding: 26px 24px 8px;
    border-right: 1px solid rgba(16, 36, 58, 0.08);
}

.about-strength:last-child {
    border-right: 0;
}

.about-strength .line-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    color: #0c2f55;
}

.about-strength h3 {
    margin: 0 0 12px;
    font-size: 1.3rem;
    line-height: 1.35;
}

.about-strength p {
    margin: 0;
    color: var(--slate-700);
    font-size: 0.95rem;
    line-height: 1.76;
}

.section--about-org .org-chart {
    margin-top: 14px;
}

.cta-band--about {
    margin: 0 62px 30px;
    padding: 30px 36px;
    border-radius: 12px;
    background:
        linear-gradient(90deg, rgba(3, 35, 60, 0.94) 0%, rgba(3, 35, 60, 0.72) 48%, rgba(3, 35, 60, 0.1) 100%),
        url("../assets/category-construction.png") center center / cover no-repeat;
}

.cta-band--about h2 {
    margin-bottom: 10px;
    font-size: 2rem;
    line-height: 1.32;
}

.cta-band--about p {
    max-width: 420px;
}

.cta-band--about .cta-band__contact {
    justify-items: center;
}

.footer--about .footer__bottom--inline,
.footer--contact .footer__bottom--inline {
    display: grid;
    grid-template-columns: 2.1fr 0.8fr 1fr auto;
    gap: 24px;
    align-items: center;
    text-align: left;
}

.page-contact .hero {
    min-height: 340px;
}

.page-contact .hero__copy {
    top: 74px;
    left: 56px;
    width: 410px;
}

.page-contact .hero__eyebrow,
.page-contact .hero__metrics {
    display: none;
}

.page-contact .hero__title {
    font-size: 3.8rem;
    line-height: 1.08;
}

.page-contact .hero__text {
    max-width: 360px;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 1.18rem;
    line-height: 1.6;
}

.section--contact-process .section__header p {
    display: block;
}

.process--contact .process__step:nth-child(1) .process__icon {
    --process-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='6' y='4' width='12' height='16' rx='2'/%3E%3Cpath d='M9 4.5h6M9 9h6M9 13h6M9 17h4'/%3E%3C/svg%3E");
}

.process--contact .process__step:nth-child(2) .process__icon {
    --process-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3h8l4 4v14H6zM14 3v5h5M8 15l2 2 5-5'/%3E%3C/svg%3E");
}

.process--contact .process__step:nth-child(3) .process__icon {
    --process-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12a8 8 0 0 1 16 0v5h-3v-4h-2v7h3M4 17h3v-4h2v7H6'/%3E%3C/svg%3E");
}

.process--contact .process__step:nth-child(4) .process__icon {
    --process-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6h16v10H9l-5 4V6z'/%3E%3C/svg%3E");
}

.process--contact .process__step:nth-child(5) .process__icon {
    --process-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 11l2.5 2.5a2 2 0 0 0 2.8 0l3.7-3.7'/%3E%3Cpath d='M3 10l4-4 4 4-4 4-4-4zM13 10l4-4 4 4-4 4-4-4z'/%3E%3Cpath d='M7 14l2 2M10 15l1.7 1.7M13 14l1.3 1.3'/%3E%3C/svg%3E");
}

.contact-grid--mockup {
    gap: 20px;
}

.contact-card--split,
.contact-card--guide {
    min-height: 420px;
    padding: 34px 30px;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdfe 100%);
}

.contact-card--split h3,
.contact-card--guide h3 {
    margin-bottom: 28px;
    color: var(--navy-900);
    font-size: 2rem;
}

.contact-card__feature,
.contact-guide-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-card__feature--divider {
    margin-top: 26px;
    padding-top: 28px;
    border-top: 1px solid rgba(16, 36, 58, 0.1);
}

.contact-card__icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #0b3158;
    color: #ffffff;
    flex: 0 0 auto;
}

.contact-card__icon--olive {
    background: #566132;
}

.contact-card__icon .line-icon {
    width: 30px;
    height: 30px;
    color: inherit;
}

.contact-card--split strong,
.contact-card--guide strong {
    display: block;
    margin-bottom: 8px;
    color: var(--orange-500);
    font-size: 1.8rem;
}

.contact-card--guide strong {
    color: var(--navy-900);
    font-size: 1.12rem;
}

.contact-card__feature p,
.contact-guide-item p {
    margin: 0;
    color: var(--slate-700);
    font-size: 1rem;
    line-height: 1.78;
}

.contact-card__label {
    margin-bottom: 6px;
    color: var(--navy-900) !important;
    font-size: 1rem !important;
    font-weight: 700;
}

.contact-guide-item + .contact-guide-item {
    margin-top: 22px;
}

.contact-cta--mockup {
    grid-template-columns: 240px 1fr auto;
    gap: 28px;
    padding: 30px 34px;
    border-radius: 14px;
    background: linear-gradient(90deg, #052e53 0%, #0a3157 100%);
}

.contact-cta__visual {
    position: relative;
    min-height: 140px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.contact-cta__visual::before {
    content: "";
    position: absolute;
    left: 34px;
    top: 28px;
    width: 146px;
    height: 92px;
    border: 2px solid rgba(255, 255, 255, 0.26);
    border-radius: 8px;
    background:
        linear-gradient(transparent 72px, rgba(255, 255, 255, 0.16) 72px),
        linear-gradient(90deg, transparent 58px, rgba(255, 255, 255, 0.12) 58px 60px, transparent 60px 116px, rgba(255, 255, 255, 0.12) 116px 118px, transparent 118px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.14) 12px, transparent 12px);
}

.contact-cta__visual::after {
    content: "";
    position: absolute;
    left: 58px;
    bottom: 24px;
    width: 106px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
}

.contact-cta__copy h2 {
    margin: 0 0 10px;
    font-size: 2rem;
}

.contact-cta__copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.8;
}

.cta-band--contact {
    grid-template-columns: 80px 1fr;
    gap: 24px;
    align-items: center;
    min-height: 162px;
    margin: 0 52px 40px;
    padding: 30px 34px;
    border-radius: 12px;
    border: 1px solid rgba(16, 36, 58, 0.08);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.93) 52%, rgba(255, 255, 255, 0.24) 100%),
        url("../assets/category-construction.png") right center / 38% auto no-repeat,
        #ffffff;
    color: var(--navy-900);
}

.contact-bottom-cta__icon {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    color: #0c2f55;
}

.contact-bottom-cta__icon .line-icon {
    width: 56px;
    height: 56px;
}

.cta-band--contact h2 {
    margin: 0 0 12px;
    color: var(--navy-900);
    font-size: 2.1rem;
    line-height: 1.26;
}

.cta-band--contact p {
    max-width: 520px;
    color: var(--slate-700);
}

.footer--contact .footer__grid,
.footer--about .footer__grid {
    grid-template-columns: 1.05fr 0.86fr 1.14fr 0.74fr 1.05fr;
}

.footer--contact .footer__intro p,
.footer--about .footer__intro p {
    max-width: 180px;
}

.page-business .footer__links {
    gap: 9px;
    margin-top: 0;
}

.page-business .footer__links span {
    font-size: 0.9rem;
    line-height: 1.6;
    word-break: keep-all;
}

.page-business .footer__bottom {
    margin-top: 22px;
    padding-top: 18px;
}

/* Latest screenshot corrections: resolve specificity conflicts and restore mockup proportions. */
.page-home .home-hero-metrics {
    left: 58px;
    bottom: 70px;
    width: 520px;
    display: flex;
    grid-template-columns: none;
    gap: 18px;
    padding: 0;
    background: none;
    border: 0;
}

.page-home .home-hero-metrics .metric--inline {
    display: flex;
    align-items: center;
    min-height: auto;
    padding: 0 16px 0 0;
    border-right: 1px solid rgba(16, 36, 58, 0.16);
    background: none;
    text-align: left;
    box-shadow: none;
}

.page-home .home-hero-metrics .metric--inline:last-child {
    border-right: 0;
}

.page-home .home-hero-metrics .metric--inline .line-icon {
    width: 36px;
    height: 36px;
    margin: 0;
}

.page-home .home-hero-metrics .metric--inline strong {
    margin: 0 0 4px;
    font-size: 0.96rem;
    line-height: 1.25;
    white-space: nowrap;
}

.page-home .home-hero-metrics .metric--inline p {
    max-width: 110px;
    font-size: 0.72rem;
    line-height: 1.45;
    word-break: keep-all;
}

.page-home .home-value-strip {
    min-height: 224px;
    padding-top: 46px;
    padding-bottom: 42px;
}

.page-home .home-value-strip__item .line-icon {
    width: 58px;
    height: 58px;
}

.page-business .business-intro .business-visual {
    height: 330px;
    min-height: 330px;
}

.page-business .business-intro .business-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-business .section--dark {
    padding-top: 56px;
    padding-bottom: 56px;
}

.page-contact .cta-band.cta-band--contact {
    grid-template-columns: 92px 1fr;
    min-height: 170px;
    margin: 0 52px 42px;
    padding: 34px 42px;
    border-radius: 12px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 55%, rgba(255, 255, 255, 0.32) 100%),
        url("../assets/category-construction.png") right center / 42% auto no-repeat,
        #ffffff;
    color: var(--navy-900);
}

.page-contact .cta-band.cta-band--contact h2 {
    color: var(--navy-900);
    font-size: 2.2rem;
    line-height: 1.3;
}

.page-contact .cta-band.cta-band--contact p {
    max-width: 560px;
    color: var(--slate-700);
    font-size: 1rem;
    line-height: 1.78;
}

.page-contact .cta-band.cta-band--contact .accent {
    color: var(--orange-500);
}

.page-contact .contact-bottom-cta__icon {
    color: #0c2f55;
}

.page-contact .section--contact-cards {
    padding-top: 48px;
}

/* Company organization chart: clarify staff teams and operating divisions as separate layers. */
.page-about .org-chart {
    overflow: hidden;
    padding: 42px 38px 34px;
}

.page-about .org-chart__top {
    padding-bottom: 56px;
}

.page-about .org-chart__top::after {
    bottom: 0;
    height: 56px;
}

.page-about .org-chart__middle {
    display: grid;
    grid-template-columns: repeat(2, 160px);
    justify-content: center;
    gap: 28px;
    margin-top: 0;
    padding-bottom: 58px;
}

.page-about .org-chart__middle::before {
    top: -28px;
    left: calc(50% - 94px);
    right: calc(50% - 94px);
    background: rgba(16, 36, 58, 0.18);
}

.page-about .org-chart__label {
    position: relative;
    z-index: 2;
    width: fit-content;
    margin: -20px auto 18px;
    padding: 6px 14px;
    border: 1px solid rgba(16, 36, 58, 0.12);
    border-radius: 999px;
    background: #f8fbfd;
    color: rgba(16, 36, 58, 0.72);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
}

.page-about .org-chart__label--division {
    margin-top: -28px;
    margin-bottom: 18px;
}

.page-about .org-chart__middle::after {
    bottom: 0;
    height: 58px;
}

.page-about .org-chart__middle .org-box {
    min-width: 160px;
    min-height: 52px;
    margin-top: 0;
    border-radius: 4px;
}

.page-about .org-chart__middle .org-box::before {
    top: -28px;
    height: 28px;
}

.page-about .org-chart__groups {
    gap: 22px;
    padding-top: 36px;
}

.page-about .org-chart__groups::before {
    left: calc(12.5% + 30px);
    right: calc(12.5% + 30px);
    background: rgba(16, 36, 58, 0.18);
}

.page-about .org-group::before {
    top: -36px;
    height: 36px;
    background: rgba(16, 36, 58, 0.18);
}

.page-about .org-group {
    padding: 20px 18px;
    border-radius: 4px;
}

.page-about .org-group__head {
    min-height: 54px;
    border-radius: 4px;
}

.page-about .org-group__list span {
    border-radius: 4px;
}

/* Organization chart redraw: explicit connector blocks keep every hierarchy line continuous. */
.page-about .org-chart {
    overflow: visible;
    padding: 42px 38px 34px;
}

.page-about .org-chart__top {
    padding-bottom: 0;
}

.page-about .org-chart__top::after,
.page-about .org-chart__middle::before,
.page-about .org-chart__middle::after,
.page-about .org-chart__middle .org-box::before,
.page-about .org-chart__groups::before,
.page-about .org-group::before {
    display: none;
    content: none;
}

.page-about .org-chart__connector {
    position: relative;
    margin-right: auto;
    margin-left: auto;
}

.page-about .org-chart__connector::before,
.page-about .org-chart__connector::after {
    content: "";
    position: absolute;
    background: rgba(16, 36, 58, 0.2);
}

.page-about .org-chart__connector::before {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
}

.page-about .org-chart__connector::after {
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
}

.page-about .org-chart__connector--support {
    width: 216px;
    height: 54px;
}

.page-about .org-chart__middle {
    display: grid;
    grid-template-columns: repeat(2, 170px);
    justify-content: center;
    gap: 26px;
    margin-top: 22px;
    padding-bottom: 0;
}

.page-about .org-chart__middle .org-box {
    position: relative;
    min-width: 170px;
    min-height: 52px;
    margin-top: 0;
}

.page-about .org-chart__middle .org-box::after {
    content: "";
    position: absolute;
    top: -22px;
    left: 50%;
    width: 1px;
    height: 22px;
    background: rgba(16, 36, 58, 0.2);
    transform: translateX(-50%);
}

.page-about .org-chart__connector--division {
    width: 75%;
    height: 72px;
    margin-top: 0;
}

.page-about .org-chart__connector--division::after {
    bottom: 0;
}

.page-about .org-chart__groups {
    gap: 22px;
    margin-top: 28px;
    padding-top: 0;
}

.page-about .org-group {
    position: relative;
    padding: 20px 18px;
}

.page-about .org-group::after {
    content: "";
    position: absolute;
    top: -28px;
    left: 50%;
    width: 1px;
    height: 28px;
    background: rgba(16, 36, 58, 0.2);
    transform: translateX(-50%);
}

/* Organization chart: match the provided reference image hierarchy. */
.page-about .org-chart {
    position: relative;
    overflow: visible;
    padding: 34px 42px 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.page-about .org-chart::before {
    content: "";
    position: absolute;
    top: 92px;
    left: 50%;
    width: 1px;
    height: 238px;
    background: #cfd6de;
    transform: translateX(-50%);
}

.page-about .org-chart__connector {
    display: none;
}

.page-about .org-chart__top,
.page-about .org-chart__middle,
.page-about .org-chart__groups {
    position: relative;
    z-index: 1;
}

.page-about .org-chart__top {
    display: flex;
    justify-content: center;
    padding: 0;
}

.page-about .org-chart__top::after,
.page-about .org-chart__middle::after,
.page-about .org-chart__groups::before,
.page-about .org-group::before,
.page-about .org-group::after {
    display: none;
    content: none;
}

.page-about .org-chart__top .org-box {
    min-width: 184px;
    min-height: 52px;
    border-radius: 4px;
    background: linear-gradient(180deg, #062f50 0%, #071c34 100%);
    font-size: 1.08rem;
}

.page-about .org-chart__middle {
    display: grid;
    grid-template-columns: repeat(2, 162px);
    justify-content: center;
    gap: 250px;
    margin-top: 30px;
    padding: 0;
}

.page-about .org-chart__middle::before {
    display: block;
    content: "";
    position: absolute;
    top: 26px;
    left: calc(50% - 207px);
    right: calc(50% - 207px);
    height: 1px;
    background: #cfd6de;
}

.page-about .org-chart__middle .org-box {
    min-width: 162px;
    min-height: 50px;
    margin: 0;
    border-radius: 4px;
    background: #ffffff;
    border: 1px solid #d9dee5;
    color: var(--navy-900);
    box-shadow: 0 1px 3px rgba(16, 36, 58, 0.04);
}

.page-about .org-chart__middle .org-box::before,
.page-about .org-chart__middle .org-box::after {
    display: none;
    content: none;
}

.page-about .org-chart__groups {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 36px;
    margin-top: 64px;
    padding: 0;
}

.page-about .org-chart__groups::after {
    content: "";
    position: absolute;
    top: -30px;
    left: 8.5%;
    right: 8.5%;
    height: 1px;
    background: #cfd6de;
}

.page-about .org-group {
    position: relative;
    padding: 0;
    border: 0;
    background: transparent;
}

.page-about .org-group::before {
    display: block;
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    width: 1px;
    height: 30px;
    background: #cfd6de;
    transform: translateX(-50%);
}

.page-about .org-chart--image {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.page-about .org-chart--image::before {
    display: none;
    content: none;
}

.page-about .org-chart--image img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #dfe5ec;
    border-radius: 6px;
    background: #ffffff;
}

.page-about .org-group__head {
    position: relative;
    z-index: 1;
    min-height: 52px;
    margin: 0 0 32px;
    border-radius: 4px;
    background: linear-gradient(180deg, #71824c 0%, #566432 100%);
    color: #ffffff;
    font-size: 1.08rem;
    box-shadow: 0 2px 4px rgba(16, 36, 58, 0.08);
}

.page-about .org-group__head::after {
    content: "";
    position: absolute;
    top: 52px;
    left: 50%;
    width: 1px;
    height: 22px;
    background: #cfd6de;
    transform: translateX(-50%);
}

.page-about .org-group__list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.page-about .org-group__list::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 25%;
    right: 25%;
    height: 1px;
    background: #cfd6de;
}

.page-about .org-group__list span {
    position: relative;
    min-height: 44px;
    padding: 12px 8px;
    border: 1px solid #dde2e8;
    border-radius: 4px;
    background: #ffffff;
    color: var(--navy-900);
    font-size: 0.96rem;
    box-shadow: 0 1px 2px rgba(16, 36, 58, 0.03);
}

.page-about .org-group__list span::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    width: 1px;
    height: 10px;
    background: #cfd6de;
    transform: translateX(-50%);
}
