/*
 * KHLG & Associates, Inc.
 * Homepage Styles
 *
 * Safe production cleanup:
 * - exact duplicate top-level rules removed
 * - revision comments removed
 * - excess whitespace normalized
 * - cascade order preserved
 * - animations/effects/responsive rules preserved
 */

:root {
    --bg: #f7f8fa;
    --surface: #ffffff;
    --surface-2: #f0f3f6;
    --ink: #101827;
    --ink-soft: #5d6673;
    --line: rgba(16, 24, 39, 0.14);
    --line-strong: rgba(16, 24, 39, 0.26);
    --navy: #102a43;
    --blue: #2563eb;
    --max: 1440px;
    --pad: clamp(22px, 4vw, 64px);
    --radius: 24px;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: auto;
    background: var(--bg);
}
body {
    background: var(--bg);
    color: var(--ink);
    font-family: "Roboto", Arial, sans-serif;
    overflow-x: hidden;
}
body.menu-open {
    overflow: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    font: inherit;
    color: inherit;
}
::selection {
    background: var(--ink);
    color: #fff;
}
.page-progress {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    height: 3px;
    width: 100%;
    background: transparent;
    pointer-events: none;
}
.page-progress__bar {
    width: 100%;
    height: 100%;
    background: var(--ink);
    transform-origin: 0 50%;
    transform: scaleX(0);
}
.site-header {
    position: fixed;
    z-index: 900;
    top: 0;
    left: 0;
    width: 100%;
    height: 86px;
    display: flex;
    align-items: center;
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        height 0.35s ease;
    border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
    height: 72px;
    background: rgba(247, 248, 250, 0.86);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-color: var(--line);
}
.header-inner {
    width: min(var(--max), calc(100% - var(--pad) * 2));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    justify-self: start;
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: -0.04em;
    font-size: 20px;
    line-height: 1;
}
.brand-mark {
    width: 32px;
    aspect-ratio: 1;
    position: relative;
    border: 1px solid var(--ink);
    border-radius: 50%;
}
.brand-mark::before,
.brand-mark::after {
    content: "";
    position: absolute;
    background: var(--ink);
}
.brand-mark::before {
    width: 1px;
    height: 22px;
    top: 4px;
    left: 15px;
}
.brand-mark::after {
    width: 22px;
    height: 1px;
    top: 15px;
    left: 4px;
}
.desktop-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.desktop-nav a {
    position: relative;
    white-space: nowrap;
}
.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: 100% 50%;
    transition: transform 0.35s var(--ease);
}
.desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: 0 50%;
}
.header-meta {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.header-meta span + span::before {
    content: "•";
    margin-right: 14px;
    opacity: 0.45;
}
main {
    position: relative;
}
.container {
    width: min(var(--max), calc(100% - var(--pad) * 2));
    margin-inline: auto;
}
.hero {
    min-height: 100svh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    border-bottom: 1px solid var(--line);
}
.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.65;
    background-image:
        linear-gradient(to right, var(--line) 1px, transparent 1px),
        linear-gradient(to bottom, var(--line) 1px, transparent 1px);
    background-size: min(10vw, 150px) min(10vw, 150px);
    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.9),
        rgba(0, 0, 0, 0.05)
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.9),
        rgba(0, 0, 0, 0.05)
    );
}
.hero-orbit {
    position: absolute;
    right: -12vw;
    top: 6vh;
    width: min(64vw, 900px);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    will-change: transform;
}
.hero-orbit::before,
.hero-orbit::after {
    content: "";
    position: absolute;
    border-radius: inherit;
    border: 1px solid var(--line);
    inset: 11%;
}
.hero-orbit::after {
    inset: 25%;
}
.hero-cross {
    position: absolute;
    right: 12vw;
    top: 22vh;
    width: 18px;
    height: 18px;
    opacity: 0.7;
}
.hero-cross::before,
.hero-cross::after {
    content: "";
    position: absolute;
    background: var(--ink);
}
.hero-cross::before {
    width: 18px;
    height: 1px;
    top: 8px;
    left: 0;
}
.hero-cross::after {
    width: 1px;
    height: 18px;
    top: 0;
    left: 8px;
}
.hero-line-art {
    position: absolute;
    width: min(70vw, 1000px);
    height: auto;
    right: -5vw;
    bottom: 2vh;
    opacity: 0.52;
    will-change: transform;
}
.hero-line-art path,
.hero-line-art line,
.hero-line-art polyline,
.hero-line-art circle {
    fill: none;
    stroke: rgba(16, 24, 39, 0.35);
    stroke-width: 1;
    vector-effect: non-scaling-stroke;
}
.hero-content {
    position: relative;
    z-index: 4;
    width: 100%;
    padding: 160px 0 clamp(38px, 7vh, 78px);
}
.hero-kicker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: clamp(24px, 4vw, 54px);
    font-size: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
}
.hero-kicker__right {
    display: flex;
    gap: 24px;
    color: var(--ink-soft);
}
.hero-title {
    font-family: "Poppins", Arial, sans-serif;
    text-transform: uppercase;
    font-size: clamp(56px, 9.5vw, 154px);
    font-weight: 500;
    letter-spacing: -0.075em;
    line-height: 0.78;
    max-width: 1240px;
    margin-left: -0.06em;
}
.hero-title .line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.12em;
}
.hero-title .line > span {
    display: block;
    transform: translateY(115%);
}
.hero-lower {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
    align-items: end;
    margin-top: clamp(42px, 8vh, 94px);
}
.hero-description {
    max-width: 820px;
    font-size: clamp(17px, 1.5vw, 24px);
    line-height: 1.55;
    letter-spacing: -0.02em;
    font-weight: 400;
}
.hero-vision {
    justify-self: end;
    max-width: 420px;
    padding-left: 26px;
    border-left: 1px solid var(--line-strong);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-soft);
}
.section {
    position: relative;
    border-bottom: 1px solid var(--line);
}
.section-pad {
    padding: clamp(96px, 13vw, 190px) 0;
}
.section-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: clamp(44px, 7vw, 96px);
}
.section-label span:last-child {
    color: var(--ink-soft);
}
.intro-grid {
    display: grid;
    grid-template-columns: minmax(220px, 0.45fr) 1fr;
    gap: clamp(44px, 8vw, 140px);
    align-items: start;
}
.intro-sticky {
    position: sticky;
    top: 120px;
}
.intro-sticky h2 {
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(38px, 5vw, 72px);
    letter-spacing: -0.06em;
    line-height: 0.94;
    font-weight: 500;
    text-transform: uppercase;
}
.intro-copy {
    display: grid;
    gap: 38px;
    font-size: clamp(21px, 2.3vw, 38px);
    line-height: 1.35;
    letter-spacing: -0.04em;
    font-weight: 400;
}
.intro-copy p {
    max-width: 960px;
}
.reveal-line {
    background: linear-gradient(
        90deg,
        var(--ink) 0 50%,
        rgba(16, 24, 39, 0.18) 50% 100%
    );
    background-size: 200% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.principles {
    background: var(--surface);
    overflow: hidden;
}
.principles-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: end;
    margin-bottom: clamp(60px, 8vw, 110px);
}
.principles-head h2 {
    font-family: "Poppins", Arial, sans-serif;
    text-transform: uppercase;
    font-size: clamp(48px, 7.5vw, 116px);
    line-height: 0.84;
    letter-spacing: -0.07em;
    font-weight: 500;
    max-width: 900px;
}
.principles-head p {
    font-size: clamp(16px, 1.45vw, 22px);
    line-height: 1.65;
    max-width: 650px;
    justify-self: end;
    color: var(--ink-soft);
}
.principles-track-wrap {
    position: relative;
}
.principles-track {
    display: flex;
    width: max-content;
    gap: 18px;
    padding-right: var(--pad);
    will-change: transform;
}
.principle-card {
    position: relative;
    width: min(72vw, 560px);
    min-height: 520px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg);
    overflow: hidden;
    padding: clamp(28px, 3.5vw, 54px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.principle-card__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    font-size: 14px;
    letter-spacing: 0.12em;
    font-weight: 700;
}
.principle-card__ring {
    width: 148px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    position: absolute;
    top: 34px;
    right: 34px;
}
.principle-card__ring::before {
    content: "";
    position: absolute;
    inset: 20%;
    border: 1px solid var(--line);
    border-radius: inherit;
}
.principle-card h3 {
    position: relative;
    z-index: 2;
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(34px, 4vw, 60px);
    line-height: 0.96;
    letter-spacing: -0.06em;
    font-weight: 500;
    max-width: 430px;
}
.principle-card p {
    position: relative;
    z-index: 2;
    font-size: 18px;
    line-height: 1.75;
    color: var(--ink-soft);
    max-width: 430px;
}
.services {
    background: var(--bg);
}
.services-title {
    font-family: "Poppins", Arial, sans-serif;
    text-transform: uppercase;
    font-size: clamp(58px, 10vw, 150px);
    line-height: 0.8;
    letter-spacing: -0.075em;
    font-weight: 500;
    margin-bottom: clamp(70px, 10vw, 140px);
}
.service-list {
    border-top: 1px solid var(--line-strong);
}
.service-item {
    position: relative;
    display: grid;
    grid-template-columns:
        90px minmax(280px, 0.9fr) minmax(320px, 1.1fr)
        42px;
    gap: clamp(18px, 4vw, 56px);
    padding: clamp(30px, 4.5vw, 68px) 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
    overflow: hidden;
}
.service-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--surface);
    transform: scaleY(0);
    transform-origin: 50% 100%;
    transition: transform 0.45s var(--ease);
}
.service-item:hover::before {
    transform: scaleY(1);
}
.service-num,
.service-name,
.service-copy,
.service-icon {
    position: relative;
    z-index: 2;
}
.service-num {
    font-family: "Poppins", Arial, sans-serif;
    font-size: 15px;
    letter-spacing: 0.12em;
    color: var(--ink-soft);
}
.service-name {
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(27px, 3vw, 48px);
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 500;
}
.service-copy {
    font-size: 18px;
    line-height: 1.8;
    color: var(--ink-soft);
    max-width: 700px;
}
.service-copy ul {
    margin-top: 20px;
    padding-left: 18px;
    display: grid;
    gap: 6px;
}
.service-icon {
    width: 42px;
    aspect-ratio: 1;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition:
        transform 0.35s var(--ease),
        background 0.35s ease,
        color 0.35s ease;
}
.service-icon::before {
    content: "↗";
    font-size: 18px;
}
.service-item:hover .service-icon {
    transform: rotate(45deg);
    background: var(--ink);
    color: #fff;
}
.mission-vision {
    min-height: 100svh;
    background: var(--ink);
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(60px, 10vw, 170px);
    padding: clamp(110px, 13vw, 190px) 0;
    position: relative;
    z-index: 2;
}
.mission-block {
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    padding-top: 28px;
}
.mission-block__label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.58;
}
.mission-block p {
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(36px, 4.8vw, 72px);
    line-height: 1.03;
    letter-spacing: -0.055em;
    font-weight: 400;
}
.mission-orbit {
    position: absolute;
    width: 70vw;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    right: -30vw;
    top: 50%;
    transform: translateY(-50%);
}
.mission-orbit::before,
.mission-orbit::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: inherit;
}
.mission-orbit::before {
    inset: 14%;
}
.mission-orbit::after {
    inset: 30%;
}
.footer {
    background: var(--surface);
    padding: 50px 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 40px;
}
.footer-brand {
    font-family: "Poppins", Arial, sans-serif;
    text-transform: uppercase;
    font-size: clamp(42px, 8vw, 120px);
    font-weight: 500;
    letter-spacing: -0.07em;
    line-height: 0.8;
}
.footer-meta {
    display: grid;
    gap: 8px;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.photo-shell {
    position: relative;
    overflow: hidden;
    background: #e9edf1;
}
.photo-shell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.03);
    will-change: transform;
}
.photo-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border: 1px solid rgba(16, 24, 39, 0.08);
}
.hero-photo {
    position: absolute;
    z-index: 1;
    right: clamp(20px, 4.5vw, 70px);
    top: clamp(118px, 15vh, 165px);
    width: min(38vw, 560px);
    height: min(54vh, 620px);
    border-radius: 2px;
    opacity: 0.92;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(16, 24, 39, 0.11);
}
.hero-photo img {
    filter: saturate(0.78) contrast(0.97);
}
.hero-photo::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(247, 248, 250, 0.04),
        rgba(247, 248, 250, 0.26)
    );
    pointer-events: none;
}
.hero-photo-frame {
    position: absolute;
    z-index: 3;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    pointer-events: none;
}
.hero-photo-index {
    position: absolute;
    z-index: 4;
    top: 28px;
    left: 30px;
    color: #fff;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.22);
}
.visual-sequence {
    background: var(--surface);
    padding: clamp(28px, 4vw, 54px) 0 clamp(90px, 12vw, 170px);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}
.visual-sequence-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.4fr 0.72fr;
    gap: clamp(12px, 2vw, 26px);
    align-items: end;
}
.visual-shot {
    overflow: hidden;
    border-radius: 2px;
}
.visual-shot:nth-child(1) {
    height: clamp(270px, 36vw, 520px);
}
.visual-shot:nth-child(2) {
    height: clamp(360px, 49vw, 700px);
}
.visual-shot:nth-child(3) {
    height: clamp(230px, 31vw, 455px);
    margin-bottom: clamp(28px, 6vw, 84px);
}
.visual-shot img {
    filter: saturate(0.82) contrast(0.98);
}
.about-media {
    grid-column: 2;
    margin-top: clamp(72px, 9vw, 130px);
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: clamp(12px, 2vw, 24px);
    align-items: end;
}
.about-media .photo-shell:first-child {
    height: clamp(400px, 47vw, 720px);
}
.about-media .photo-shell:last-child {
    height: clamp(280px, 32vw, 500px);
    margin-bottom: clamp(26px, 4vw, 70px);
}
.principle-card__photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    transition:
        opacity 0.55s var(--ease),
        transform 0.7s var(--ease);
    transform: scale(1.06);
}
.principle-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) saturate(0.25) contrast(0.88);
}
.principle-card__veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(247, 248, 250, 0.78) 0%,
        rgba(247, 248, 250, 0.91) 52%,
        rgba(247, 248, 250, 0.98) 100%
    );
    opacity: 0;
    transition: opacity 0.55s var(--ease);
}
.principle-card:hover .principle-card__photo {
    opacity: 0.35;
    transform: scale(1);
}
.principle-card:hover .principle-card__veil {
    opacity: 1;
}
.services-photo-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: clamp(12px, 2vw, 26px);
    margin: 0 0 clamp(74px, 9vw, 132px);
    align-items: stretch;
}
.services-photo-main {
    height: clamp(360px, 47vw, 700px);
}
.services-photo-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: clamp(12px, 2vw, 26px);
}
.services-photo-side .photo-shell {
    min-height: 0;
}
.services-photo-grid img {
    filter: saturate(0.82) contrast(0.98);
}
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
    .hero-title .line > span {
        transform: none !important;
    }
}
.section-pad {
    padding: clamp(68px, 7vw, 108px) 0;
}
.section-label {
    margin-bottom: clamp(28px, 3.2vw, 48px);
}
.hero-lower {
    margin-top: clamp(28px, 4vw, 54px);
}
.intro-copy {
    gap: clamp(20px, 2.2vw, 30px);
}
.principles-head {
    margin-bottom: clamp(38px, 4.5vw, 68px);
}
.principle-card {
    min-height: 470px;
}
.mission-vision {
    min-height: auto;
}
.mission-grid {
    padding: clamp(78px, 8vw, 122px) 0;
}
.mission-block {
    min-height: 330px;
}
.visual-sequence {
    padding: clamp(28px, 3vw, 46px) 0 clamp(64px, 6vw, 92px);
}
.visual-sequence-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: clamp(10px, 1.2vw, 18px);
    height: clamp(390px, 43vw, 610px);
    align-items: stretch;
}
.visual-shot:nth-child(1) {
    grid-column: 1 / 8;
    grid-row: 1 / 3;
    height: 100%;
    margin: 0;
}
.visual-shot:nth-child(2) {
    grid-column: 8 / 13;
    grid-row: 1;
    height: 100%;
    margin: 0;
}
.visual-shot:nth-child(3) {
    grid-column: 8 / 13;
    grid-row: 2;
    height: 100%;
    margin: 0;
}
.visual-shot img {
    object-position: center;
}
.about-media {
    grid-column: 1 / -1;
    margin-top: clamp(38px, 4vw, 58px);
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(250px, 0.8fr);
    gap: clamp(10px, 1.2vw, 18px);
    align-items: stretch;
}
.about-media .photo-shell:first-child,
.about-media .photo-shell:last-child {
    height: clamp(330px, 35vw, 500px);
    margin: 0;
}
.about-media .photo-shell:first-child img {
    object-position: center 42%;
}
.about-media .photo-shell:last-child img {
    object-position: center;
}
.compact-services {
    padding: clamp(70px, 7vw, 108px) 0 clamp(78px, 8vw, 120px);
    background: var(--surface);
}
.services-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: clamp(34px, 4vw, 58px);
}
.compact-services .services-title {
    margin: 0;
    font-size: clamp(58px, 8.5vw, 128px);
}
.services-count {
    padding-bottom: 8px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--ink-soft);
}
.service-explorer {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
    gap: clamp(30px, 4.5vw, 72px);
    align-items: start;
    border-top: 1px solid var(--line-strong);
    padding-top: clamp(22px, 2.6vw, 36px);
}
.service-visual-wrap {
    position: relative;
    min-width: 0;
}
.service-visual {
    position: sticky;
    top: 96px;
    height: min(66vh, 620px);
    min-height: 470px;
    background: #dfe4e9;
    overflow: hidden;
}
.service-visual::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(16, 24, 39, 0.02) 35%,
        rgba(16, 24, 39, 0.72) 100%
    );
    pointer-events: none;
}
.service-visual__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.76) contrast(0.98);
    transform: scale(1.02);
}
.service-visual__caption {
    position: absolute;
    z-index: 3;
    left: clamp(22px, 2.5vw, 36px);
    right: clamp(22px, 2.5vw, 36px);
    bottom: clamp(22px, 2.5vw, 34px);
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 16px;
    align-items: end;
    color: #fff;
}
.service-visual__num {
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    letter-spacing: 0.14em;
    opacity: 0.72;
    padding-bottom: 5px;
}
.service-visual__title {
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(26px, 3vw, 48px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    font-weight: 500;
}
.service-index {
    border-top: 1px solid var(--line);
}
.service-entry {
    border-bottom: 1px solid var(--line);
}
.service-trigger {
    width: 100%;
    border: 0;
    background: transparent;
    padding: clamp(18px, 2vw, 26px) 0;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 30px;
    align-items: center;
    gap: 16px;
    text-align: left;
    cursor: pointer;
}
.service-trigger__num {
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--ink-soft);
}
.service-trigger__name {
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(21px, 2vw, 31px);
    line-height: 1.06;
    letter-spacing: -0.035em;
    font-weight: 500;
    transition:
        transform 0.35s var(--ease),
        color 0.35s ease;
}
.service-trigger__mark {
    position: relative;
    width: 28px;
    height: 28px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    justify-self: end;
    transition:
        background 0.3s ease,
        transform 0.35s var(--ease);
}
.service-trigger__mark::before,
.service-trigger__mark::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 1px;
    background: currentColor;
    transform: translate(-50%, -50%);
}
.service-trigger__mark::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 0.3s ease;
}
.service-entry.is-active .service-trigger__name {
    transform: translateX(6px);
}
.service-entry.is-active .service-trigger__mark {
    background: var(--ink);
    color: #fff;
    transform: rotate(90deg);
}
.service-entry.is-active .service-trigger__mark::after {
    transform: translate(-50%, -50%) rotate(0deg);
}
.service-panel {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition:
        grid-template-rows 0.55s var(--ease),
        opacity 0.35s ease;
}
.service-entry.is-active .service-panel {
    grid-template-rows: 1fr;
    opacity: 1;
}
.service-panel__inner {
    overflow: hidden;
    padding: 0 0 0 58px;
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.68;
    max-width: 760px;
}
.service-entry.is-active .service-panel__inner {
    padding-bottom: clamp(22px, 2.4vw, 34px);
}
.service-panel__inner p + p {
    margin-top: 12px;
}
.service-panel__inner ul {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px 16px;
}
.service-panel__inner li {
    position: relative;
    padding-left: 15px;
}
.service-panel__inner li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--ink);
    transform: translateY(-50%);
}
@media (hover: hover) and (pointer: fine) {
    .service-entry:not(.is-active)
        .service-trigger:hover
        .service-trigger__name {
        transform: translateX(6px);
    }
}
.modern-services {
    position: relative;
    overflow: hidden;
    padding: clamp(68px, 7vw, 104px) 0 clamp(74px, 7.5vw, 112px);
    background: linear-gradient(180deg, #ffffff 0%, #f5f7f9 100%);
}
.modern-services::before {
    content: "";
    position: absolute;
    right: -18vw;
    top: -18vw;
    width: 48vw;
    aspect-ratio: 1;
    border: 1px solid rgba(16, 24, 39, 0.07);
    border-radius: 50%;
    pointer-events: none;
}
.modern-services__label {
    margin-bottom: clamp(22px, 2.6vw, 36px);
}
.modern-services__heading {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: end;
    margin-bottom: clamp(34px, 4vw, 56px);
}
.modern-services__heading h2 {
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(64px, 9vw, 138px);
    line-height: 0.76;
    font-weight: 500;
    letter-spacing: -0.075em;
}
.modern-services__heading p {
    padding-bottom: 6px;
    max-width: 230px;
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: 0.04em;
    text-align: right;
    color: var(--ink-soft);
}
.service-showcase {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    min-height: 600px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 30px 80px rgba(16, 24, 39, 0.055);
    overflow: hidden;
}
.service-showcase__media {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: #dfe4e8;
}
.service-showcase__media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(8, 17, 30, 0.03) 20%,
        rgba(8, 17, 30, 0.12) 58%,
        rgba(8, 17, 30, 0.64) 100%
    );
    pointer-events: none;
}
.service-showcase__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.025);
    filter: saturate(0.72) contrast(1.01);
    will-change: transform, opacity;
}
.service-showcase__grid {
    position: absolute;
    z-index: 3;
    inset: 0;
    opacity: 0.28;
    background-image:
        linear-gradient(
            to right,
            rgba(255, 255, 255, 0.4) 1px,
            transparent 1px
        ),
        linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.4) 1px,
            transparent 1px
        );
    background-size: 25% 25%;
    mask-image: linear-gradient(
        to bottom,
        transparent 10%,
        black 60%,
        black 100%
    );
    pointer-events: none;
}
.service-showcase__media-meta {
    position: absolute;
    z-index: 4;
    left: clamp(20px, 2.2vw, 32px);
    right: clamp(20px, 2.2vw, 32px);
    bottom: clamp(20px, 2.2vw, 30px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.service-showcase__media-num {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 50%;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 15px;
}
.service-showcase__content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: clamp(30px, 4vw, 58px);
    background: linear-gradient(rgba(16, 24, 39, 0.035) 1px, transparent 1px);
    background-size: 100% 74px;
}
.service-showcase__topline {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-bottom: clamp(32px, 4vw, 62px);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.service-showcase__counter {
    font-family: "Poppins", Arial, sans-serif;
}
.service-showcase__title {
    max-width: 780px;
    margin-bottom: clamp(26px, 3vw, 42px);
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(36px, 4.5vw, 70px);
    line-height: 0.94;
    letter-spacing: -0.06em;
    font-weight: 500;
}
.service-showcase__body {
    max-width: 760px;
    max-height: 310px;
    overflow-y: auto;
    padding-right: 18px;
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.68;
    scrollbar-width: thin;
    scrollbar-color: rgba(16, 24, 39, 0.22) transparent;
}
.service-showcase__body::-webkit-scrollbar {
    width: 4px;
}
.service-showcase__body::-webkit-scrollbar-thumb {
    background: rgba(16, 24, 39, 0.22);
}
.service-showcase__body p + p {
    margin-top: 13px;
}
.service-showcase__body strong {
    color: var(--ink);
    font-weight: 600;
}
.service-showcase__body ul {
    margin: 16px 0 4px;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px 18px;
}
.service-showcase__body li {
    position: relative;
    padding-left: 15px;
}
.service-showcase__body li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--ink);
    transform: translateY(-50%);
}
.service-showcase__footer {
    margin-top: auto;
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.service-selector {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
    margin-top: 18px;
    background: #fff;
}
.service-tile {
    position: relative;
    min-height: 126px;
    padding: 20px 20px 22px;
    display: grid;
    grid-template-columns: 28px 1fr 26px;
    gap: 10px;
    align-items: start;
    border: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s var(--ease);
}
.service-tile::before {
    content: "";
    position: absolute;
    left: -1px;
    top: -1px;
    width: 0;
    height: 2px;
    background: var(--ink);
    transition: width 0.45s var(--ease);
}
.service-tile__num {
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    opacity: 0.54;
    padding-top: 3px;
}
.service-tile__title {
    max-width: 270px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(17px, 1.55vw, 23px);
    line-height: 1.05;
    letter-spacing: -0.035em;
    font-weight: 500;
}
.service-tile__arrow {
    justify-self: end;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 14px;
    transition:
        transform 0.35s var(--ease),
        border-color 0.35s ease;
}
.service-tile.is-active {
    background: var(--ink);
    color: #fff;
}
.service-tile.is-active::before {
    width: calc(100% + 1px);
    background: #fff;
}
.service-tile.is-active .service-tile__arrow {
    transform: rotate(45deg);
    border-color: rgba(255, 255, 255, 0.42);
}
.service-tile.is-active .service-tile__num {
    opacity: 0.65;
}
@media (hover: hover) and (pointer: fine) {
    .service-tile:not(.is-active):hover {
        background: #f1f4f6;
    }
    .service-tile:not(.is-active):hover::before {
        width: calc(100% + 1px);
    }
    .service-tile:not(.is-active):hover .service-tile__arrow {
        transform: translate(2px, -2px);
        border-color: var(--line-strong);
    }
}
.service-showcase__image,
.service-showcase__title,
.service-showcase__body,
.service-showcase__media-num,
.service-showcase__num,
.service-showcase__current {
    transition:
        opacity 0.22s ease,
        transform 0.32s var(--ease);
}
.service-showcase.is-switching .service-showcase__image {
    opacity: 0.35;
    transform: scale(1.055);
}
.service-showcase.is-switching .service-showcase__title,
.service-showcase.is-switching .service-showcase__body {
    opacity: 0;
    transform: translateY(10px);
}
@media (prefers-reduced-motion: reduce) {
    .service-showcase__image,
    .service-showcase__title,
    .service-showcase__body,
    .service-showcase__media-num,
    .service-showcase__num,
    .service-showcase__current {
        transition: none !important;
    }
}
body,
p,
li,
.hero-description,
.hero-vision,
.intro-copy,
.principles-head p,
.principle-card p,
.service-showcase__body,
.service-panel__inner {
    font-family: "Roboto", Arial, sans-serif;
}
.section-label,
.hero-kicker,
.header-meta,
.service-showcase__eyebrow,
.service-showcase__counter,
.service-showcase__media-meta,
.service-showcase__footer,
.service-tile__num,
.services-count {
    font-family: "Poppins", Arial, sans-serif;
}
.drone-feature {
    position: relative;
    padding: clamp(34px, 4vw, 54px) 0 clamp(78px, 8vw, 118px);
    background: #fff;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}
.drone-feature__topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: clamp(18px, 2vw, 28px);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.drone-feature__stage {
    position: relative;
    width: min(
        calc(var(--max) + clamp(80px, 8vw, 140px)),
        calc(100% - clamp(24px, 3vw, 48px))
    );
    margin: 0 auto;
    min-height: clamp(560px, 65vw, 880px);
}
.drone-feature__main {
    position: absolute;
    inset: 0 clamp(80px, 7vw, 120px) clamp(48px, 5vw, 78px) 0;
    overflow: hidden;
    background: #dfe4e9;
}
.drone-feature__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #dfe4e9;
    filter: saturate(0.78) contrast(1.01);
    transform: scale(1.03);
    will-change: transform;
}
.drone-feature__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(10, 18, 31, 0.02) 20%,
        rgba(10, 18, 31, 0.08) 48%,
        rgba(10, 18, 31, 0.68) 100%
    );
    pointer-events: none;
}
.drone-feature__technical {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}
.drone-feature__technical::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.28;
    background-image:
        linear-gradient(
            to right,
            rgba(255, 255, 255, 0.28) 1px,
            transparent 1px
        ),
        linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.28) 1px,
            transparent 1px
        );
    background-size: 20% 20%;
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 55%,
        black 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 55%,
        black 100%
    );
}
.drone-feature__cross {
    position: absolute;
    width: 18px;
    height: 18px;
}
.drone-feature__cross::before,
.drone-feature__cross::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.78);
}
.drone-feature__cross::before {
    width: 18px;
    height: 1px;
    left: 0;
    top: 8px;
}
.drone-feature__cross::after {
    width: 1px;
    height: 18px;
    top: 0;
    left: 8px;
}
.drone-feature__cross--1 {
    left: 12%;
    top: 18%;
}
.drone-feature__cross--2 {
    right: 18%;
    top: 28%;
}
.drone-feature__line {
    position: absolute;
    height: 1px;
    background: rgba(255, 255, 255, 0.46);
    transform-origin: left center;
}
.drone-feature__line--1 {
    width: 22%;
    left: 12%;
    top: 19%;
}
.drone-feature__line--2 {
    width: 18%;
    right: 17%;
    top: 29%;
}
.drone-feature__caption {
    position: absolute;
    z-index: 4;
    left: clamp(26px, 3.5vw, 54px);
    right: clamp(26px, 3.5vw, 54px);
    bottom: clamp(28px, 3.8vw, 56px);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    color: #fff;
}
.drone-feature__caption > div {
    display: grid;
    gap: 10px;
    max-width: 760px;
}
.drone-feature__eyebrow {
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.72;
}
.drone-feature__caption strong {
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(30px, 4.5vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    font-weight: 500;
}
.drone-feature__index {
    font-family: "Poppins", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    white-space: nowrap;
    opacity: 0.72;
}
.drone-feature__support {
    position: absolute;
    z-index: 5;
    overflow: hidden;
    background: #e5e8eb;
    box-shadow: 0 24px 64px rgba(16, 24, 39, 0.14);
}
.drone-feature__support img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.76) contrast(0.98);
}
.drone-feature__support--one {
    width: clamp(180px, 19vw, 300px);
    height: clamp(220px, 25vw, 380px);
    right: 0;
    top: clamp(44px, 7vw, 100px);
}
.drone-feature__support--two {
    width: clamp(150px, 15vw, 230px);
    height: clamp(160px, 18vw, 260px);
    right: clamp(80px, 9vw, 150px);
    bottom: 0;
    border: 8px solid #fff;
}
.drone-feature__video {
    pointer-events: none;
}
.drone-feature__main.has-video-error .drone-feature__video {
    opacity: 0;
}
.drone-feature__main.has-video-error {
    background: linear-gradient(135deg, #dce2e8 0%, #eef1f4 100%);
}
.hero-actions,
.project-cta__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.hero-actions {
    position: relative;
    z-index: 6;
    margin-top: clamp(24px, 3vw, 38px);
}
.khlg-cta {
    position: relative;
    isolation: isolate;
    min-height: 52px;
    padding: 0 18px 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    overflow: hidden;
    border: 1px solid transparent;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
        color 0.38s var(--ease),
        border-color 0.38s var(--ease),
        transform 0.38s var(--ease),
        background 0.38s var(--ease);
}
.khlg-cta > span {
    position: relative;
    z-index: 2;
}
.khlg-cta::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    transform: scaleX(0);
    transform-origin: 100% 50%;
    transition: transform 0.5s var(--ease);
}
.khlg-cta:hover::before {
    transform: scaleX(1);
    transform-origin: 0 50%;
}
.khlg-cta__icon {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 15px;
    transition:
        transform 0.45s var(--ease),
        background 0.35s ease,
        color 0.35s ease;
}
.khlg-cta:hover .khlg-cta__icon {
    transform: rotate(45deg);
}
.khlg-cta--dark {
    min-width: 218px;
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}
.khlg-cta--dark::before {
    background: #fff;
}
.khlg-cta--dark:hover {
    color: var(--ink);
}
.khlg-cta--text {
    min-width: 150px;
    padding-left: 14px;
    padding-right: 14px;
    color: var(--ink);
    border-color: transparent;
    background: transparent;
}
.khlg-cta--text::before,
.khlg-cta--ghost-light::before {
    display: none;
}
.khlg-cta__line {
    position: absolute !important;
    z-index: 3;
    left: 14px;
    right: 14px;
    bottom: 10px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0.22);
    transform-origin: 0 50%;
    transition: transform 0.45s var(--ease);
}
.khlg-cta:hover .khlg-cta__line {
    transform: scaleX(1);
}
.about-cta {
    margin-top: 2px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}
.khlg-inline-cta {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.045em;
}
.khlg-inline-cta__arrow {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    font-size: 15px;
    transition:
        transform 0.4s var(--ease),
        background 0.35s ease,
        color 0.35s ease;
}
.khlg-inline-cta:hover .khlg-inline-cta__arrow {
    transform: rotate(45deg);
    background: var(--ink);
    color: #fff;
}
.service-showcase__action {
    margin-top: clamp(22px, 2.2vw, 32px);
}
.khlg-cta--service {
    min-width: 248px;
}
.project-cta {
    position: relative;
    overflow: hidden;
    background: #101827;
    color: #fff;
    padding: clamp(72px, 8vw, 122px) 0 clamp(66px, 7vw, 108px);
    isolation: isolate;
}
.project-cta__grid {
    position: absolute;
    z-index: -3;
    inset: 0;
    opacity: 0.13;
    background-image:
        linear-gradient(
            to right,
            rgba(255, 255, 255, 0.34) 1px,
            transparent 1px
        ),
        linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.34) 1px,
            transparent 1px
        );
    background-size: min(10vw, 150px) min(10vw, 150px);
    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.9),
        rgba(0, 0, 0, 0.18)
    );
}
.project-cta__orbit {
    position: absolute;
    z-index: -2;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    pointer-events: none;
}
.project-cta__orbit--one {
    width: min(60vw, 900px);
    aspect-ratio: 1;
    right: -22vw;
    top: -52%;
}
.project-cta__orbit--two {
    width: min(30vw, 460px);
    aspect-ratio: 1;
    right: 9vw;
    top: 15%;
}
.project-cta__inner {
    position: relative;
    z-index: 2;
}
.project-cta__meta {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    padding-bottom: 22px;
    margin-bottom: clamp(56px, 7vw, 96px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}
.project-cta__eyebrow {
    margin-bottom: 24px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
}
.project-cta__title {
    max-width: 1140px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(58px, 9vw, 142px);
    line-height: 0.82;
    letter-spacing: -0.075em;
    font-weight: 500;
    text-transform: uppercase;
}
.project-cta__line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.1em;
}
.project-cta__line > span {
    display: block;
    will-change: transform;
}
.project-cta__bottom {
    display: grid;
    grid-template-columns: minmax(260px, 0.68fr) minmax(450px, 1fr);
    gap: clamp(40px, 8vw, 130px);
    align-items: end;
    margin-top: clamp(46px, 6vw, 82px);
}
.project-cta__copy {
    max-width: 520px;
    font-family: "Roboto", Arial, sans-serif;
    font-size: clamp(16px, 1.3vw, 20px);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.66);
}
.project-cta__actions {
    justify-content: flex-end;
}
.khlg-cta--light {
    min-width: 212px;
    background: #fff;
    color: var(--ink);
    border-color: #fff;
}
.khlg-cta--light::before {
    background: transparent;
}
.khlg-cta--light:hover {
    background: transparent;
    color: #fff;
}
.khlg-cta--large {
    min-height: 60px;
    padding-left: 26px;
}
.khlg-cta--large .khlg-cta__icon {
    width: 36px;
    height: 36px;
}
.khlg-cta--ghost-light {
    min-width: 176px;
    color: #fff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.24);
}
.khlg-cta--ghost-light:hover {
    border-color: rgba(255, 255, 255, 0.62);
}
@media (hover: hover) and (pointer: fine) {
    .khlg-cta:hover {
        transform: translateY(-2px);
    }
}
:root {
    --max: 1680px;
    --pad: clamp(18px, 2.7vw, 46px);
}
.container,
.header-inner {
    width: min(var(--max), calc(100% - var(--pad) * 2));
}
.section-pad {
    padding: clamp(56px, 5.8vw, 92px) 0;
}
.section-label {
    margin-bottom: clamp(22px, 2.7vw, 38px);
}
.hero-content {
    padding-bottom: clamp(30px, 4.5vh, 54px);
}
.hero-kicker {
    margin-bottom: clamp(20px, 2.6vw, 36px);
}
.hero-lower {
    margin-top: clamp(24px, 3vw, 42px);
    gap: clamp(30px, 4vw, 64px);
}
.hero-title {
    max-width: 1450px;
}
.intro-grid {
    grid-template-columns: minmax(190px, 0.32fr) minmax(0, 1fr);
    gap: clamp(34px, 5vw, 84px);
}
.intro-copy {
    gap: clamp(18px, 1.8vw, 26px);
}
.about-media {
    margin-top: clamp(28px, 3vw, 44px);
    grid-template-columns: minmax(0, 1.75fr) minmax(260px, 0.72fr);
}
.principles-head {
    margin-bottom: clamp(30px, 3.4vw, 52px);
    gap: clamp(28px, 4vw, 64px);
}
.principle-card {
    width: min(68vw, 610px);
    min-height: 445px;
}
.modern-services {
    padding: clamp(56px, 5.5vw, 88px) 0 clamp(62px, 6vw, 96px);
}
.modern-services__heading {
    margin-bottom: clamp(26px, 3vw, 42px);
}
.service-showcase {
    min-height: 560px;
}
.service-showcase__media {
    min-height: 560px;
}
.service-showcase__content {
    padding: clamp(28px, 3.2vw, 48px);
}
.service-showcase__topline {
    margin-bottom: clamp(24px, 2.7vw, 42px);
}
.service-showcase__title {
    margin-bottom: clamp(20px, 2.4vw, 32px);
}
.service-selector {
    margin-top: 12px;
}
.service-tile {
    min-height: 112px;
    padding: 18px;
}
.mission-grid {
    padding: clamp(66px, 6.5vw, 102px) 0;
    gap: clamp(44px, 7vw, 110px);
}
.mission-block {
    min-height: 290px;
}
.project-cta {
    padding: clamp(62px, 6vw, 96px) 0 clamp(58px, 5.5vw, 88px);
}
.project-cta__meta {
    margin-bottom: clamp(42px, 5vw, 68px);
}
.project-cta__bottom {
    margin-top: clamp(34px, 4vw, 58px);
}
.footer {
    padding: 36px 0;
}
.drone-feature__stage {
    width: min(
        calc(var(--max) + clamp(40px, 5vw, 90px)),
        calc(100% - clamp(14px, 1.8vw, 28px))
    );
}
.drone-feature {
    padding-top: clamp(24px, 2.6vw, 40px);
    padding-bottom: clamp(58px, 5.5vw, 88px);
}
.parallax-media {
    will-change: transform;
    transform-origin: center center;
}
.about-media .photo-shell,
.service-showcase__media,
.hero-photo,
.drone-feature__main {
    overflow: hidden;
}
.about-media img,
.service-showcase__image,
.hero-photo img,
.drone-feature__video {
    will-change: transform;
}
.about-media .photo-shell:first-child {
    transform: translateZ(0);
}
.about-media .photo-shell:last-child {
    transform: translateZ(0);
}
.project-cta__grid {
    will-change: transform;
}
.service-showcase {
    align-items: stretch;
}
.service-showcase__media {
    position: relative;
    height: clamp(520px, 42vw, 680px);
    min-height: 0;
    overflow: hidden;
    background: #dfe4e8;
}
.service-showcase__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.service-showcase__grid,
.service-showcase__media::before,
.service-showcase__media::after {
    position: absolute;
    inset: 0;
}
.hero-photo,
.about-media .photo-shell,
.service-showcase__media,
.drone-feature__main,
.project-cta {
    isolation: isolate;
}
.hero-photo img,
.about-media .photo-shell img,
.service-showcase__image,
.drone-feature__video {
    backface-visibility: hidden;
    transform-origin: 50% 50%;
    will-change: transform;
}
.hero-photo img {
    height: 118%;
    top: -9%;
    position: absolute;
    inset-inline: 0;
}
.about-media .photo-shell img {
    height: 122%;
    position: absolute;
    top: -11%;
    left: 0;
}
.service-showcase__image {
    height: 122%;
    min-height: 122%;
    top: -11%;
}
.drone-feature__video {
    height: 116%;
    position: absolute;
    top: -8%;
    left: 0;
}
.service-showcase__media {
    will-change: transform;
}
.service-showcase__content {
    will-change: transform;
}
.project-cta__grid,
.project-cta__orbit,
.hero-orbit,
.hero-line-art {
    will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
    .hero-photo img,
    .about-media .photo-shell img,
    .service-showcase__image,
    .drone-feature__video,
    .service-showcase__media,
    .service-showcase__content,
    .project-cta__grid {
        transform: none !important;
    }
}
body {
    font-size: clamp(16px, 0.95vw, 18px);
}
.desktop-nav {
    font-size: clamp(15px, 0.78vw, 17px);
}
.hero-kicker,
.section-label,
.header-meta {
    font-size: clamp(14px, 0.7vw, 16px);
}
.hero-title {
    font-size: clamp(68px, 10.3vw, 174px);
    line-height: 0.79;
}
.hero-description {
    font-size: clamp(20px, 1.55vw, 27px);
    line-height: 1.5;
}
.hero-vision {
    font-size: clamp(17px, 0.95vw, 20px);
}
.intro-sticky h2 {
    font-size: clamp(46px, 5.6vw, 84px);
}
.intro-copy {
    font-size: clamp(24px, 2.5vw, 42px);
}
.principles-head h2 {
    font-size: clamp(58px, 8vw, 128px);
}
.principles-head p {
    font-size: clamp(18px, 1.5vw, 24px);
}
.principle-card h3 {
    font-size: clamp(38px, 4.2vw, 64px);
}
.principle-card p {
    font-size: clamp(16px, 1vw, 18px);
}
.modern-services__heading h2 {
    font-size: clamp(72px, 9.6vw, 150px);
}
.service-showcase__title {
    font-size: clamp(42px, 4.8vw, 76px);
}
.service-showcase__body {
    font-size: clamp(18px, 0.92vw, 20px);
    line-height: 1.72;
}
.service-tile__title {
    font-size: clamp(18px, 1.65vw, 25px);
}
.mission-block p {
    font-size: clamp(42px, 5.2vw, 78px);
}
.project-cta__title {
    font-size: clamp(66px, 9.4vw, 154px);
}
.project-cta__copy {
    font-size: clamp(17px, 1.35vw, 22px);
}
.footer-brand {
    font-size: clamp(52px, 8.5vw, 132px);
}
.modern-services__icon-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 6px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.modern-services__icon-label i {
    font-size: 18px;
    color: var(--ink);
}
.service-showcase__media-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: #fff;
    font-size: 20px;
}
.service-showcase__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.service-showcase__eyebrow-icon {
    font-size: 18px;
    color: var(--ink);
}
.service-tile {
    grid-template-columns: 46px minmax(0, 1fr) 28px;
    align-items: center;
}
.service-tile__icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    font-size: 18px;
    color: var(--ink);
    transition:
        transform 0.35s var(--ease),
        color 0.35s ease;
}
.service-tile.is-active .service-tile__icon {
    color: #fff;
    transform: scale(1.08);
}
.service-tile:hover .service-tile__icon {
    transform: translateY(-2px);
}
#difference .principle-card__ring {
    display: none !important;
}
#difference::before {
    display: none !important;
    content: none !important;
}
.principle-card__top {
    position: relative;
    z-index: 3;
    align-items: center;
}
.principle-card__number {
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(15px, 0.8vw, 17px);
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--ink-soft);
}
.principle-card__icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: var(--ink);
    font-size: clamp(23px, 1.6vw, 29px);
    transform-origin: center;
    transition:
        transform 0.45s var(--ease),
        color 0.35s ease;
}
.principle-card:hover .principle-card__icon {
    transform: translateY(-4px) rotate(-4deg);
}
.principle-card__icon i {
    line-height: 1;
}
#difference .principle-card {
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.34),
            rgba(255, 255, 255, 0)
        ),
        var(--bg);
}
#difference .principle-card::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    width: clamp(70px, 7vw, 112px);
    height: 2px;
    background: var(--ink);
    transform: scaleX(0.32);
    transform-origin: 100% 50%;
    opacity: 0.42;
    transition:
        transform 0.5s var(--ease),
        opacity 0.35s ease;
}
#difference .principle-card:hover::after {
    transform: scaleX(1);
    opacity: 0.82;
}
.section-label,
.hero-kicker,
.header-meta,
.drone-feature__topline,
.drone-feature__eyebrow,
.drone-feature__index,
.service-showcase__eyebrow,
.service-showcase__counter,
.service-showcase__media-meta,
.service-showcase__footer,
.services-count,
.service-tile__num,
.service-showcase__current,
.mission-block__label,
.project-cta__meta,
.project-cta__eyebrow,
.footer-meta,
.scene-indicator,
.modern-services__icon-label,
.principle-card__number,
.hero-photo-index {
    font-size: clamp(16px, 0.82vw, 18px);
    line-height: 1.35;
    letter-spacing: 0.1em;
}
.desktop-nav {
    font-size: clamp(16px, 0.82vw, 18px);
}
.brand {
    font-size: clamp(21px, 1.3vw, 25px);
}
.khlg-cta,
.khlg-inline-cta {
    font-size: clamp(15px, 0.78vw, 17px);
}
.modern-services__heading p {
    font-size: clamp(16px, 0.82vw, 18px);
    line-height: 1.5;
}
.service-showcase__topline {
    font-size: clamp(16px, 0.82vw, 18px);
}
.service-showcase__footer {
    gap: 20px;
}
.drone-feature__topline {
    margin-bottom: clamp(20px, 2vw, 28px);
}
.section-label {
    font-weight: 700;
}
.project-cta__meta,
.footer-meta,
.header-meta {
    font-weight: 600;
}
.parallax-independent {
    translate: none !important;
}
.hero {
    min-height: 100svh;
    background: #e9edf1;
    isolation: isolate;
}
.hero-video-wrap {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    background: #dfe4e8;
    pointer-events: none;
}
.hero-video {
    position: absolute;
    left: -3%;
    top: -7%;
    width: 106%;
    height: 114%;
    object-fit: cover;
    object-position: center center;
    display: block;
    filter: saturate(0.72) contrast(0.94) brightness(1.04);
    transform: scale(1.04);
    transform-origin: 50% 50%;
    will-change: transform;
    backface-visibility: hidden;
}
.hero-video-overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(247, 248, 250, 0.94) 0%,
            rgba(247, 248, 250, 0.86) 26%,
            rgba(247, 248, 250, 0.66) 52%,
            rgba(247, 248, 250, 0.42) 76%,
            rgba(247, 248, 250, 0.34) 100%
        ),
        linear-gradient(
            180deg,
            rgba(247, 248, 250, 0.28) 0%,
            rgba(247, 248, 250, 0.14) 46%,
            rgba(247, 248, 250, 0.82) 100%
        );
    pointer-events: none;
    will-change: transform;
}
.hero-video-vignette {
    position: absolute;
    z-index: 2;
    inset: 0;
    pointer-events: none;
    box-shadow:
        inset 0 0 140px rgba(16, 24, 39, 0.07),
        inset 0 -110px 130px rgba(247, 248, 250, 0.32);
}
.hero-video-wrap::after {
    content: "";
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    top: -20%;
    height: 13%;
    opacity: 0.18;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.52),
        rgba(255, 255, 255, 0)
    );
    mix-blend-mode: screen;
    animation: heroVideoScan 8s linear infinite;
    pointer-events: none;
}
@keyframes heroVideoScan {
    to {
        transform: translateY(930%);
    }
}
.hero-grid {
    z-index: 1;
    opacity: 0.42;
}
.hero-orbit,
.hero-cross,
.hero-line-art {
    z-index: 2;
}
.hero-orbit {
    border-color: rgba(16, 24, 39, 0.22);
}
.hero-orbit::before,
.hero-orbit::after {
    border-color: rgba(16, 24, 39, 0.13);
}
.hero-line-art {
    opacity: 0.48;
}
.hero-content {
    z-index: 5;
}
.hero-kicker,
.hero-title,
.hero-description {
    color: var(--ink);
}
.hero-vision {
    color: rgba(16, 24, 39, 0.68);
    border-left-color: rgba(16, 24, 39, 0.32);
}
.hero-actions {
    position: relative;
    z-index: 6;
}
.hero-photo {
    display: none !important;
}
@media (prefers-reduced-motion: reduce) {
    .hero-video-wrap::after {
        animation: none !important;
    }
    .hero-video {
        transform: scale(1.04) !important;
    }
}
.hero-video-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(247, 248, 250, 0.93) 0%,
            rgba(247, 248, 250, 0.82) 31%,
            rgba(247, 248, 250, 0.52) 58%,
            rgba(247, 248, 250, 0.2) 100%
        ),
        linear-gradient(
            180deg,
            rgba(247, 248, 250, 0.24) 0%,
            rgba(247, 248, 250, 0.08) 55%,
            rgba(247, 248, 250, 0.22) 100%
        ) !important;
}
.hero-video {
    opacity: 1 !important;
    filter: saturate(0.92) contrast(1.03) brightness(0.98) !important;
}
.hero-title {
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.32),
        0 10px 34px rgba(247, 248, 250, 0.3);
}
.hero-description,
.hero-vision,
.hero-kicker,
.hero-actions {
    position: relative;
    z-index: 7;
}
.hero-lower::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: -22px;
    right: -22px;
    top: -20px;
    bottom: -18px;
    background: linear-gradient(
        90deg,
        rgba(247, 248, 250, 0.68) 0%,
        rgba(247, 248, 250, 0.46) 58%,
        rgba(247, 248, 250, 0.14) 100%
    );
    filter: blur(12px);
    pointer-events: none;
}
.hero-lower {
    position: relative;
}
.hero-grid {
    opacity: 0.42 !important;
}
.hero-line-art {
    opacity: 0.42 !important;
}
.hero-orbit {
    border-color: rgba(16, 24, 39, 0.22) !important;
}
.hero {
    background: #0b1220 !important;
    color: #fff;
}
.hero-video {
    opacity: 1 !important;
    filter: saturate(1) contrast(1.04) brightness(0.94) !important;
}
.hero-video-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(8, 15, 27, 0.68) 0%,
            rgba(8, 15, 27, 0.52) 28%,
            rgba(8, 15, 27, 0.28) 52%,
            rgba(8, 15, 27, 0.08) 76%,
            rgba(8, 15, 27, 0.02) 100%
        ),
        linear-gradient(
            180deg,
            rgba(8, 15, 27, 0.1) 0%,
            rgba(8, 15, 27, 0.02) 48%,
            rgba(8, 15, 27, 0.22) 100%
        ) !important;
}
.hero-title,
.hero-kicker,
.hero-description,
.hero-vision,
.hero-actions {
    color: #fff !important;
}
.hero-title {
    text-shadow:
        0 2px 16px rgba(0, 0, 0, 0.22),
        0 10px 42px rgba(0, 0, 0, 0.2) !important;
}
.hero-description,
.hero-vision {
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}
.hero-vision {
    border-left-color: rgba(255, 255, 255, 0.46) !important;
}
.hero-kicker__right,
.hero-vision {
    color: rgba(255, 255, 255, 0.78) !important;
}
.hero-lower::before {
    background: linear-gradient(
        90deg,
        rgba(8, 15, 27, 0.34) 0%,
        rgba(8, 15, 27, 0.16) 58%,
        rgba(8, 15, 27, 0) 100%
    ) !important;
    filter: blur(16px) !important;
}
.hero-grid {
    opacity: 0.3 !important;
    background-image:
        linear-gradient(
            to right,
            rgba(255, 255, 255, 0.17) 1px,
            transparent 1px
        ),
        linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.17) 1px,
            transparent 1px
        ) !important;
}
.hero-orbit {
    border-color: rgba(255, 255, 255, 0.24) !important;
}
.hero-orbit::before,
.hero-orbit::after {
    border-color: rgba(255, 255, 255, 0.15) !important;
}
.hero-cross::before,
.hero-cross::after {
    background: rgba(255, 255, 255, 0.72) !important;
}
.hero-line-art {
    opacity: 0.34 !important;
}
.hero-line-art path,
.hero-line-art line,
.hero-line-art polyline,
.hero-line-art circle {
    stroke: rgba(255, 255, 255, 0.42) !important;
}
.hero .khlg-cta--dark {
    background: #fff !important;
    color: var(--ink) !important;
    border-color: #fff !important;
}
.hero .khlg-cta--dark::before {
    background: var(--ink) !important;
}
.hero .khlg-cta--dark:hover {
    color: #fff !important;
}
.hero .khlg-cta--text {
    color: #fff !important;
}
.site-header:not(.is-scrolled) {
    color: #fff;
}
.site-header:not(.is-scrolled) .brand-mark {
    border-color: rgba(255, 255, 255, 0.82);
}
.site-header:not(.is-scrolled) .brand-mark::before,
.site-header:not(.is-scrolled) .brand-mark::after,
.site-header:not(.is-scrolled) .desktop-nav a::after {
    background: #fff;
}
.site-header:not(.is-scrolled) .header-meta {
    color: rgba(255, 255, 255, 0.72);
}
.hero-video {
    inset: 0 !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 64% 56% !important;
    transform-origin: 64% 56% !important;
    backface-visibility: hidden;
    will-change: transform;
}
.drone-feature__video {
    position: absolute !important;
    inset: 0 !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    object-position: 52% 48% !important;
    transform-origin: 52% 48% !important;
    backface-visibility: hidden;
    will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        transform: scale(1.28) !important;
    }
    .drone-feature__video {
        transform: scale(1.12) !important;
    }
}
.hero-grid,
.hero-orbit,
.hero-cross,
.hero-line-art {
    display: none !important;
}
.progress-tech-overlay {
    position: absolute;
    z-index: 3;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.progress-tech-grid {
    position: absolute;
    inset: -8%;
    opacity: 0.18;
    background-image:
        linear-gradient(
            to right,
            rgba(255, 255, 255, 0.28) 1px,
            transparent 1px
        ),
        linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.28) 1px,
            transparent 1px
        );
    background-size: min(10vw, 150px) min(10vw, 150px);
    mask-image: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.12) 0%,
        rgba(0, 0, 0, 0.66) 42%,
        rgba(0, 0, 0, 0.9) 100%
    );
    -webkit-mask-image: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.12) 0%,
        rgba(0, 0, 0, 0.66) 42%,
        rgba(0, 0, 0, 0.9) 100%
    );
    animation: progressGridDrift 20s linear infinite;
    will-change: background-position, transform;
}
@keyframes progressGridDrift {
    from {
        background-position:
            0 0,
            0 0;
    }
    to {
        background-position:
            min(10vw, 150px) 0,
            0 min(10vw, 150px);
    }
}
.progress-tech-orbit {
    position: absolute;
    right: -13%;
    top: -18%;
    width: min(62vw, 860px);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    opacity: 0.72;
    will-change: transform;
}
.progress-tech-orbit::before,
.progress-tech-orbit::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: inherit;
}
.progress-tech-orbit::before {
    inset: 12%;
}
.progress-tech-orbit::after {
    inset: 27%;
}
.progress-tech-cross {
    position: absolute;
    left: 35%;
    top: 21%;
    width: 18px;
    height: 18px;
    opacity: 0.68;
    will-change: transform;
}
.progress-tech-cross::before,
.progress-tech-cross::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
}
.progress-tech-cross::before {
    width: 18px;
    height: 1px;
    left: 0;
    top: 8px;
}
.progress-tech-cross::after {
    width: 1px;
    height: 18px;
    left: 8px;
    top: 0;
}
.progress-tech-line-art {
    position: absolute;
    right: -10%;
    bottom: -5%;
    width: min(82vw, 1120px);
    height: auto;
    opacity: 0.31;
    will-change: transform;
}
.progress-tech-line-art path,
.progress-tech-line-art line,
.progress-tech-line-art polyline,
.progress-tech-line-art circle {
    fill: none;
    stroke: rgba(255, 255, 255, 0.56);
    stroke-width: 1;
    vector-effect: non-scaling-stroke;
}
.drone-feature__caption {
    z-index: 5 !important;
}
.drone-feature__overlay {
    z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
    .progress-tech-grid {
        animation: none !important;
    }
}
.hero-grid {
    display: block !important;
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.24 !important;
    pointer-events: none;
    background-image:
        linear-gradient(
            to right,
            rgba(255, 255, 255, 0.18) 1px,
            transparent 1px
        ),
        linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.18) 1px,
            transparent 1px
        ) !important;
    background-size: min(10vw, 150px) min(10vw, 150px);
    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.82),
        rgba(0, 0, 0, 0.12)
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.82),
        rgba(0, 0, 0, 0.12)
    );
}
.hero-orbit,
.hero-cross,
.hero-line-art {
    display: none !important;
}
.drone-feature {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}
.progress-tech-background {
    position: absolute;
    z-index: 0;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.progress-tech-background .progress-tech-overlay {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.progress-tech-background .progress-tech-grid {
    display: none !important;
}
.progress-tech-background .progress-tech-orbit {
    right: -12vw;
    top: 4%;
    width: min(58vw, 860px);
    border-color: rgba(16, 24, 39, 0.13);
    opacity: 0.72;
}
.progress-tech-background .progress-tech-orbit::before,
.progress-tech-background .progress-tech-orbit::after {
    border-color: rgba(16, 24, 39, 0.09);
}
.progress-tech-background .progress-tech-cross {
    left: auto;
    right: 18%;
    top: 22%;
    opacity: 0.42;
}
.progress-tech-background .progress-tech-cross::before,
.progress-tech-background .progress-tech-cross::after {
    background: rgba(16, 24, 39, 0.48);
}
.progress-tech-background .progress-tech-line-art {
    right: -8%;
    bottom: -12%;
    width: min(76vw, 1060px);
    opacity: 0.16;
}
.progress-tech-background .progress-tech-line-art path,
.progress-tech-background .progress-tech-line-art line,
.progress-tech-background .progress-tech-line-art polyline,
.progress-tech-background .progress-tech-line-art circle {
    stroke: rgba(16, 24, 39, 0.34);
}
.drone-feature > .container,
.drone-feature__stage {
    position: relative;
    z-index: 2;
}
.drone-feature__main .progress-tech-overlay,
.drone-feature__main .progress-tech-orbit,
.drone-feature__main .progress-tech-cross,
.drone-feature__main .progress-tech-line-art,
.drone-feature__main .progress-tech-grid {
    display: none !important;
}
.brand--logo {
    display: inline-flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 0 !important;
    width: auto;
    min-width: 0;
    line-height: 1;
}
.khlg-nav-logo {
    display: block;
    width: clamp(112px, 8.2vw, 138px);
    height: auto;
    max-height: 52px;
    object-fit: contain;
    object-position: left center;
    transition:
        width 0.35s var(--ease),
        transform 0.35s var(--ease),
        opacity 0.35s ease;
}
.brand--logo:hover .khlg-nav-logo {
    transform: translateY(-1px);
}
.brand--logo .brand-mark {
    display: none !important;
}
.site-header.is-scrolled .khlg-nav-logo {
    width: clamp(104px, 7.4vw, 124px);
    max-height: 44px;
}
.site-header:not(.is-scrolled) .khlg-nav-logo {
    filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.12));
}
.menu-open .site-header .khlg-nav-logo {
    filter: none;
}
.nav-inquiry-cta {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 52px;
    padding: 6px 7px 6px 20px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(16px, 0.82vw, 18px);
    font-weight: 600;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition:
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s var(--ease);
}
.nav-inquiry-cta__icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    font-size: 16px;
    transition:
        transform 0.4s var(--ease),
        background 0.35s ease,
        color 0.35s ease;
}
.nav-inquiry-cta:hover {
    transform: translateY(-2px);
    background: #fff;
    color: var(--ink);
    border-color: #fff;
}
.nav-inquiry-cta:hover .nav-inquiry-cta__icon {
    transform: rotate(45deg);
    background: var(--ink);
    color: #fff;
}
.site-header.is-scrolled .nav-inquiry-cta,
.menu-open .site-header .nav-inquiry-cta {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.site-header.is-scrolled .nav-inquiry-cta__icon,
.menu-open .site-header .nav-inquiry-cta__icon {
    background: #fff;
    color: var(--ink);
}
.header-meta {
    display: none !important;
}
.site-header {
    height: 108px !important;
}
.site-header.is-scrolled {
    height: 88px !important;
}
.header-inner {
    gap: clamp(24px, 2.4vw, 42px) !important;
}
.khlg-nav-logo {
    width: clamp(176px, 11.5vw, 218px) !important;
    max-height: 78px !important;
}
.site-header.is-scrolled .khlg-nav-logo {
    width: clamp(154px, 10vw, 188px) !important;
    max-height: 64px !important;
}
.desktop-nav {
    gap: clamp(28px, 2.3vw, 42px) !important;
    font-size: clamp(18px, 0.98vw, 21px) !important;
    font-weight: 600 !important;
    letter-spacing: 0.07em !important;
}
.desktop-nav a::after {
    bottom: -10px !important;
    height: 2px !important;
}
.nav-inquiry-cta {
    min-height: 58px !important;
    padding: 7px 8px 7px 24px !important;
    gap: 16px !important;
    font-size: clamp(17px, 0.9vw, 19px) !important;
    letter-spacing: 0.065em !important;
}
.nav-inquiry-cta__icon {
    width: 42px !important;
    height: 42px !important;
    font-size: 16px !important;
}
.nav-inquiry-cta:hover .nav-inquiry-cta__icon {
    transform: translateY(-1px) scale(1.05) !important;
}
.footer {
    position: relative;
    padding: 0 !important;
    background: var(--surface) !important;
    color: var(--ink);
    border-top: 1px solid var(--line);
    overflow: hidden;
}
.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.42;
    background-image:
        linear-gradient(to right, rgba(16, 24, 39, 0.045) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(16, 24, 39, 0.045) 1px, transparent 1px);
    background-size: min(11vw, 160px) min(11vw, 160px);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.56), transparent 88%);
    -webkit-mask-image: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.56),
        transparent 88%
    );
}
.khlg-footer {
    position: relative;
    z-index: 1;
}
.khlg-footer__top {
    display: grid;
    grid-template-columns:
        minmax(270px, 1.2fr)
        minmax(150px, 0.52fr)
        minmax(250px, 0.82fr)
        minmax(350px, 1.25fr);
    gap: clamp(32px, 4vw, 74px);
    padding: clamp(64px, 7vw, 108px) 0 clamp(48px, 5vw, 78px);
    align-items: start;
}
.khlg-footer__brand {
    font-size: inherit !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: normal !important;
    font-weight: inherit !important;
    min-width: 0;
}
.khlg-footer__logo-link {
    display: inline-block;
    margin-bottom: clamp(24px, 2.6vw, 36px);
}
.khlg-footer__logo {
    display: block;
    width: clamp(168px, 12vw, 220px);
    height: auto;
    object-fit: contain;
    object-position: left center;
}
.khlg-footer__description {
    max-width: 350px;
    font-size: clamp(16px, 1.05vw, 18px);
    line-height: 1.72;
    color: var(--ink-soft);
}
.khlg-footer__heading {
    position: relative;
    margin-bottom: 24px;
    padding-bottom: 14px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(16px, 0.84vw, 18px);
    font-weight: 700;
    letter-spacing: 0.105em;
    text-transform: uppercase;
}
.khlg-footer__heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 1px;
    background: var(--ink);
}
.khlg-footer__links {
    display: grid;
    gap: 13px;
}
.khlg-footer__links a,
.khlg-footer__legal a {
    width: fit-content;
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(18px, 0.96vw, 20px);
    font-weight: 500;
    line-height: 1.4;
    transition:
        transform 0.3s var(--ease),
        opacity 0.3s ease;
}
.khlg-footer__links a:hover,
.khlg-footer__legal a:hover {
    transform: translateX(4px);
    opacity: 0.58;
}
.khlg-footer__contact-list {
    display: grid;
    gap: 16px;
}
.khlg-footer__contact-list a,
.khlg-footer__contact-list > div {
    display: grid;
    gap: 4px;
    min-width: 0;
}
.khlg-footer__contact-list span {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.khlg-footer__contact-list strong {
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(18px, 0.98vw, 20px);
    font-weight: 500;
    line-height: 1.4;
    overflow-wrap: anywhere;
}
.khlg-footer__contact-list a strong {
    position: relative;
    width: fit-content;
}
.khlg-footer__contact-list a strong::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.35s var(--ease);
}
.khlg-footer__contact-list a:hover strong::after {
    transform: scaleX(1);
    transform-origin: left center;
}
.khlg-footer__location-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(22px, 2.4vw, 38px);
}
.khlg-footer__location {
    display: grid;
    gap: 13px;
    margin: 0;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-style: normal;
}
.khlg-footer__location strong {
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(18px, 1.3vw, 22px);
    font-weight: 600;
}
.khlg-footer__location span {
    font-size: clamp(17px, 0.92vw, 19px);
    line-height: 1.68;
    color: var(--ink-soft);
}
.khlg-footer__bottom {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: clamp(22px, 3vw, 48px);
    align-items: center;
    padding: clamp(24px, 2.6vw, 34px) 0;
    border-top: 1px solid var(--line);
    font-size: clamp(15px, 0.78vw, 17px);
    color: var(--ink-soft);
}
.khlg-footer__bottom > p {
    line-height: 1.5;
}
.khlg-footer__legal {
    display: flex;
    align-items: center;
    gap: 22px;
}
.khlg-footer__legal a {
    font-size: inherit;
    color: var(--ink);
}
.khlg-footer__top-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-self: end;
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 600;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.khlg-footer__top-link i {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    font-size: 15px;
    transition:
        transform 0.35s var(--ease),
        background 0.3s ease,
        color 0.3s ease;
}
.khlg-footer__top-link:hover i {
    transform: translateY(-4px);
    background: var(--ink);
    color: #fff;
}
.footer-meta {
    display: none !important;
}
.footer {
    background: linear-gradient(180deg, #102a43 0%, #0b1d30 100%) !important;
    color: #fff !important;
    border-top: 0 !important;
}
.footer::before {
    opacity: 0.5 !important;
    background-image:
        linear-gradient(
            to right,
            rgba(255, 255, 255, 0.055) 1px,
            transparent 1px
        ),
        linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.055) 1px,
            transparent 1px
        ) !important;
    background-size: min(11vw, 150px) min(11vw, 150px) !important;
    mask-image: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.28) 74%,
        transparent 100%
    ) !important;
    -webkit-mask-image: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.28) 74%,
        transparent 100%
    ) !important;
}
.khlg-footer {
    width: min(
        1520px,
        calc(100% - (var(--page-pad, var(--pad)) * 2))
    ) !important;
}
.khlg-footer__top {
    display: grid !important;
    grid-template-columns:
        minmax(250px, 1.15fr)
        minmax(150px, 0.62fr)
        minmax(245px, 0.95fr)
        minmax(380px, 1.45fr) !important;
    gap: 0 !important;
    padding: clamp(68px, 6.2vw, 104px) 0 clamp(54px, 5vw, 78px) !important;
    align-items: stretch !important;
}
.khlg-footer__brand,
.khlg-footer__group {
    min-width: 0;
    padding-right: clamp(28px, 3vw, 52px);
}
.khlg-footer__group {
    padding-left: clamp(28px, 3vw, 52px);
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.khlg-footer__locations {
    padding-right: 0;
}
.khlg-footer__logo-link {
    margin-bottom: clamp(28px, 2.6vw, 38px) !important;
}
.khlg-footer__logo {
    width: clamp(190px, 14vw, 250px) !important;
    max-height: 84px;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.15));
}
.khlg-footer__description {
    max-width: 360px !important;
    color: rgba(255, 255, 255, 0.74) !important;
    font-size: clamp(18px, 1vw, 20px) !important;
    line-height: 1.78 !important;
}
.khlg-footer__heading {
    margin-bottom: 26px !important;
    padding-bottom: 16px !important;
    color: #fff !important;
    font-size: clamp(16px, 0.86vw, 18px) !important;
}
.khlg-footer__heading::after {
    width: 38px !important;
    background: rgba(255, 255, 255, 0.82) !important;
}
.khlg-footer__links {
    gap: 15px !important;
}
.khlg-footer__links a {
    color: rgba(255, 255, 255, 0.86) !important;
    font-size: clamp(18px, 0.95vw, 20px) !important;
}
.khlg-footer__links a:hover {
    color: #fff !important;
    opacity: 1 !important;
}
.khlg-footer__contact-list {
    gap: 18px !important;
}
.khlg-footer__contact-list a,
.khlg-footer__contact-list > div {
    gap: 5px !important;
}
.khlg-footer__contact-list span {
    color: rgba(255, 255, 255, 0.52) !important;
    font-size: 14px !important;
}
.khlg-footer__contact-list strong {
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: clamp(17px, 0.94vw, 19px) !important;
    font-weight: 500 !important;
}
.khlg-footer__contact-list a strong::after {
    background: #fff !important;
}
.khlg-footer__location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: clamp(22px, 2.2vw, 38px) !important;
}
.khlg-footer__location {
    gap: 12px !important;
    padding-top: 18px !important;
    border-top-color: rgba(255, 255, 255, 0.16) !important;
}
.khlg-footer__location strong {
    color: #fff !important;
    font-size: clamp(17px, 1.18vw, 21px) !important;
}
.khlg-footer__location span {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: clamp(17px, 0.88vw, 19px) !important;
    line-height: 1.7 !important;
}
.khlg-footer__bottom {
    grid-template-columns: 1fr auto auto !important;
    gap: clamp(22px, 3vw, 46px) !important;
    min-height: 82px;
    padding: 24px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
    color: rgba(255, 255, 255, 0.58) !important;
}
.khlg-footer__bottom > p {
    margin: 0;
}
.khlg-footer__legal {
    gap: 24px !important;
}
.khlg-footer__legal a {
    color: rgba(255, 255, 255, 0.82) !important;
}
.khlg-footer__legal a:hover {
    color: #fff !important;
    opacity: 1 !important;
}
.khlg-footer__top-link {
    color: #fff !important;
}
.khlg-footer__top-link i {
    border-color: rgba(255, 255, 255, 0.26) !important;
    background: rgba(255, 255, 255, 0.06);
}
.khlg-footer__top-link:hover i {
    background: #fff !important;
    color: #102a43 !important;
}
.khlg-footer__group {
    border-left: 0 !important;
}
.khlg-footer__heading {
    padding-bottom: 0 !important;
    margin-bottom: 24px !important;
}
.khlg-footer__heading::after {
    display: none !important;
    content: none !important;
}
.khlg-footer__location {
    border-top: 0 !important;
    padding-top: 0 !important;
}
.khlg-footer__top {
    column-gap: clamp(42px, 4.5vw, 78px) !important;
    row-gap: clamp(36px, 4vw, 56px) !important;
}
.khlg-footer__brand,
.khlg-footer__group {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.khlg-footer__location-grid {
    gap: clamp(36px, 3vw, 56px) !important;
}
.khlg-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
}
.khlg-footer__top {
    grid-template-columns:
        minmax(290px, 0.9fr)
        minmax(280px, 0.78fr)
        minmax(500px, 1.45fr) !important;
    column-gap: clamp(56px, 6vw, 104px) !important;
    align-items: start !important;
}
.khlg-footer__brand {
    max-width: 400px;
}
.khlg-footer__contact {
    max-width: 340px;
}
.khlg-footer__locations {
    min-width: 0;
    margin-top: 0 !important;
}
.khlg-footer__location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: clamp(40px, 4vw, 68px) !important;
}
.service-showcase__grid {
    display: none !important;
    background: none !important;
    background-image: none !important;
}
.service-showcase__content {
    background: #fff !important;
    background-image: none !important;
    background-size: auto !important;
}
.project-cta__actions .khlg-cta {
    min-height: 60px !important;
    height: 60px !important;
    box-sizing: border-box;
    align-items: center;
}
.project-cta__actions .khlg-cta--ghost-light {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.project-cta__meta {
    justify-content: flex-start !important;
}
.footer {
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(37, 99, 235, 0.1),
            transparent 32%
        ),
        #0d1727 !important;
    color: #fff !important;
    border: 0 !important;
}
.footer::before {
    display: none !important;
    content: none !important;
}
.khlg-footer {
    position: relative;
    z-index: 1;
    width: min(
        1520px,
        calc(100% - (var(--page-pad, var(--pad)) * 2))
    ) !important;
}
.khlg-footer__intro {
    display: grid;
    grid-template-columns:
        minmax(280px, 0.95fr)
        minmax(300px, 0.95fr)
        minmax(520px, 1.5fr);
    gap: clamp(44px, 5vw, 92px);
    align-items: start;
    padding: clamp(72px, 7vw, 112px) 0 clamp(64px, 6vw, 96px);
}
.khlg-footer__brand {
    min-width: 0;
    max-width: 390px;
    font-size: inherit !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: normal !important;
    font-weight: inherit !important;
}
.khlg-footer__logo-link {
    display: inline-block;
    margin-bottom: clamp(28px, 2.6vw, 38px);
}
.khlg-footer__logo {
    display: block;
    width: clamp(200px, 14vw, 252px);
    height: auto;
    max-height: 88px;
    object-fit: contain;
    object-position: left center;
}
.khlg-footer__description {
    max-width: 350px;
    color: rgba(255, 255, 255, 0.68);
    font-size: clamp(18px, 1vw, 20px);
    line-height: 1.78;
}
.khlg-footer__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: clamp(26px, 2.6vw, 36px);
    color: rgba(255, 255, 255, 0.58);
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(15px, 0.76vw, 17px);
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}
.khlg-footer__eyebrow i {
    color: #fff;
    font-size: 17px;
}
.khlg-footer__contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(22px, 2.2vw, 30px) clamp(24px, 2.8vw, 40px);
}
.khlg-footer__contact-item {
    display: grid;
    gap: 7px;
    min-width: 0;
}
.khlg-footer__contact-item span {
    color: rgba(255, 255, 255, 0.46);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}
.khlg-footer__contact-item strong {
    width: fit-content;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.92);
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(18px, 1vw, 20px);
    font-weight: 500;
    line-height: 1.35;
    overflow-wrap: anywhere;
}
.khlg-footer__contact-item[href] strong {
    position: relative;
}
.khlg-footer__contact-item[href] strong::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.58);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.35s var(--ease);
}
.khlg-footer__contact-item[href]:hover strong::after {
    transform: scaleX(1);
    transform-origin: left center;
}
.khlg-footer__contact-item--email {
    grid-column: 1 / -1;
}
.khlg-footer__locations-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(34px, 3.5vw, 58px);
}
.khlg-footer__location {
    display: grid;
    gap: 20px;
    margin: 0;
    font-style: normal;
}
.khlg-footer__location-title {
    display: flex;
    align-items: baseline;
    gap: 16px;
}
.khlg-footer__location-index {
    color: rgba(255, 255, 255, 0.34);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
}
.khlg-footer__location-title strong {
    color: #fff;
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(25px, 2vw, 34px);
    font-weight: 500;
    letter-spacing: -0.035em;
}
.khlg-footer__location p {
    color: rgba(255, 255, 255, 0.66);
    font-size: clamp(17px, 0.92vw, 19px);
    line-height: 1.72;
}
.khlg-footer__wordmark {
    margin-left: -0.055em;
    color: rgba(255, 255, 255, 0.045);
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(120px, 22vw, 360px);
    font-weight: 600;
    letter-spacing: -0.085em;
    line-height: 0.66;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
}
.khlg-footer__bottom {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: clamp(22px, 3vw, 46px);
    align-items: center;
    min-height: 86px;
    padding: 26px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: rgba(255, 255, 255, 0.5);
    font-size: clamp(15px, 0.76vw, 17px);
}
.khlg-footer__bottom > p {
    margin: 0;
    line-height: 1.5;
}
.khlg-footer__legal {
    display: flex;
    align-items: center;
    gap: 24px;
}
.khlg-footer__legal a {
    color: rgba(255, 255, 255, 0.72);
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
}
.khlg-footer__legal a:hover {
    color: #fff;
}
.khlg-footer__top-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-self: end;
    color: #fff;
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0.065em;
    text-transform: uppercase;
}
.khlg-footer__top-link i {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    font-size: 15px;
    transition:
        transform 0.35s var(--ease),
        background 0.3s ease,
        color 0.3s ease;
}
.khlg-footer__top-link:hover i {
    transform: translateY(-4px);
    background: #fff;
    color: #0d1727;
}
.khlg-footer__top,
.khlg-footer__group,
.khlg-footer__heading,
.khlg-footer__links,
.khlg-footer__contact-list,
.khlg-footer__location-grid,
.footer-meta {
    display: none !important;
}
.footer-modern {
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    background:
        radial-gradient(
            circle at 86% 12%,
            rgba(37, 99, 235, 0.12),
            transparent 28%
        ),
        #0b1422 !important;
    color: #fff !important;
    border: 0 !important;
}
.footer-modern::before {
    display: none !important;
    content: none !important;
}
.modern-footer {
    position: relative;
    z-index: 1;
    width: min(
        1520px,
        calc(100% - (var(--page-pad, var(--pad)) * 2))
    ) !important;
    padding-top: clamp(58px, 5vw, 82px);
}
.modern-footer__connect {
    --mx: 72%;
    --my: 50%;

    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    min-height: clamp(170px, 15vw, 220px);
    padding: clamp(28px, 3.5vw, 52px);
    background: #fff;
    color: var(--ink);
    border-radius: 2px;
}
.modern-footer__connect::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(to right, rgba(16, 24, 39, 0.055) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(16, 24, 39, 0.055) 1px, transparent 1px);
    background-size: clamp(70px, 8vw, 120px) clamp(70px, 8vw, 120px);
    opacity: 0.42;
    pointer-events: none;
}
.modern-footer__connect-glow {
    position: absolute;
    z-index: -1;
    left: var(--mx);
    top: var(--my);
    width: 420px;
    height: 420px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        rgba(37, 99, 235, 0.16) 0%,
        rgba(37, 99, 235, 0.07) 34%,
        transparent 70%
    );
    pointer-events: none;
    transition:
        left 0.12s linear,
        top 0.12s linear;
}
.modern-footer__connect-copy {
    display: grid;
    gap: clamp(12px, 1.4vw, 18px);
}
.modern-footer__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(15px, 0.78vw, 17px);
    font-weight: 700;
    letter-spacing: 0.105em;
    text-transform: uppercase;
}
.modern-footer__connect .modern-footer__eyebrow {
    color: var(--ink-soft);
}
.modern-footer__connect-copy strong {
    display: block;
    max-width: 980px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(48px, 6.2vw, 98px);
    font-weight: 500;
    letter-spacing: -0.065em;
    line-height: 0.9;
}
.modern-footer__connect-action {
    display: grid;
    place-items: center;
    width: clamp(70px, 7vw, 106px);
    height: clamp(70px, 7vw, 106px);
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    font-size: clamp(20px, 1.6vw, 28px);
    transition:
        transform 0.5s var(--ease),
        background 0.3s ease;
}
.modern-footer__connect:hover .modern-footer__connect-action {
    transform: rotate(45deg) scale(1.06);
    background: var(--navy);
}
.modern-footer__main {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(580px, 1.5fr);
    gap: clamp(54px, 7vw, 120px);
    padding: clamp(64px, 6vw, 96px) 0 clamp(54px, 5vw, 82px);
    align-items: start;
}
.modern-footer__brand {
    min-width: 0;
    max-width: 430px;
    font-size: inherit !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: normal !important;
    font-weight: inherit !important;
}
.modern-footer__logo-link {
    display: inline-block;
    margin-bottom: 30px;
}
.modern-footer__logo {
    display: block;
    width: clamp(190px, 13vw, 236px);
    height: auto;
    max-height: 84px;
    object-fit: contain;
    object-position: left center;
}
.modern-footer__brand > p {
    color: rgba(255, 255, 255, 0.64);
    font-size: clamp(18px, 1vw, 20px);
    line-height: 1.78;
    max-width: 390px;
}
.modern-footer__contact-links {
    display: grid;
    gap: 12px;
    margin-top: clamp(28px, 3vw, 42px);
}
.modern-footer__contact-links > a,
.modern-footer__contact-static {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 13px 0;
    color: #fff;
}
.modern-footer__contact-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    transition:
        transform 0.35s var(--ease),
        background 0.3s ease;
}
.modern-footer__contact-links > a:hover .modern-footer__contact-icon {
    transform: translateY(-3px);
    background: #fff;
    color: var(--ink);
}
.modern-footer__contact-links small {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.modern-footer__contact-links strong {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(17px, 0.94vw, 19px);
    font-weight: 500;
    overflow-wrap: anywhere;
}
.modern-footer__offices {
    min-width: 0;
}
.modern-footer__section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: clamp(28px, 3vw, 42px);
}
.modern-footer__offices .modern-footer__eyebrow {
    color: rgba(255, 255, 255, 0.46);
    margin-bottom: 12px;
}
.modern-footer__section-head h3 {
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.95;
}
.modern-footer__office-tabs {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 999px;
}
.modern-footer__office-tab {
    min-width: 90px;
    min-height: 42px;
    padding: 0 17px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.065em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s var(--ease);
}
.modern-footer__office-tab:hover {
    color: #fff;
}
.modern-footer__office-tab.is-active {
    background: #fff;
    color: var(--ink);
}
.modern-footer__office-stage {
    position: relative;
    min-height: 270px;
}
.modern-footer__office-panel {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: clamp(24px, 3vw, 48px);
    align-items: start;
    margin: 0;
    padding: clamp(30px, 3vw, 44px) 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-style: normal;
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.4s ease,
        transform 0.45s var(--ease);
}
.modern-footer__office-panel[hidden] {
    display: none;
}
.modern-footer__office-panel.is-active {
    opacity: 1;
    transform: translateY(0);
}
.modern-footer__office-index {
    color: rgba(255, 255, 255, 0.18);
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(72px, 7vw, 112px);
    font-weight: 500;
    letter-spacing: -0.07em;
    line-height: 0.75;
}
.modern-footer__office-copy {
    display: grid;
    gap: 18px;
    padding-top: 4px;
}
.modern-footer__office-copy > span {
    color: rgba(255, 255, 255, 0.42);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.modern-footer__office-copy > strong {
    color: #fff;
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(24px, 2vw, 32px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.18;
}
.modern-footer__office-copy > a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    color: rgba(255, 255, 255, 0.7);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    transition:
        color 0.3s ease,
        transform 0.3s var(--ease);
}
.modern-footer__office-copy > a:hover {
    color: #fff;
    transform: translateX(4px);
}
.modern-footer__bottom {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: clamp(22px, 3vw, 46px);
    align-items: center;
    min-height: 84px;
    padding: 24px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.42);
    font-size: clamp(15px, 0.75vw, 17px);
}
.modern-footer__bottom p {
    margin: 0;
}
.modern-footer__legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.modern-footer__legal a {
    color: rgba(255, 255, 255, 0.68);
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
}
.modern-footer__legal a:hover {
    color: #fff;
}
.modern-footer__backtop {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-self: end;
    color: #fff;
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.modern-footer__backtop i {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 14px;
    transition:
        transform 0.35s var(--ease),
        background 0.3s ease,
        color 0.3s ease;
}
.modern-footer__backtop:hover i {
    transform: translateY(-4px);
    background: #fff;
    color: var(--ink);
}
.khlg-footer__intro,
.khlg-footer__wordmark,
.khlg-footer__bottom,
.khlg-footer__top,
.khlg-footer__group,
.footer-meta {
    display: none !important;
}
@media (prefers-reduced-motion: reduce) {
    .modern-footer__connect-glow {
        display: none !important;
    }
    .modern-footer__office-panel {
        transition: none !important;
        transform: none !important;
    }
}
.drone-feature--modular {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(54px, 5vw, 82px) 0 clamp(76px, 7vw, 112px) !important;
    background: #f7f8fa;
}
.progress-modular {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(300px, 0.95fr)
        minmax(220px, 0.52fr)
        minmax(220px, 0.52fr);
    grid-template-rows:
        minmax(250px, auto)
        clamp(420px, 34vw, 560px);
    gap: clamp(10px, 1vw, 16px);
    width: min(1520px, calc(100% - clamp(34px, 5vw, 80px))) !important;
}
.progress-modular__intro {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    padding: clamp(10px, 1vw, 16px) clamp(26px, 3vw, 48px)
        clamp(26px, 3vw, 44px) 0;
}
.progress-modular__kicker {
    color: var(--ink-soft);
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(15px, 0.78vw, 17px);
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}
.progress-modular__intro h2 {
    max-width: 620px;
    color: var(--ink);
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(56px, 6vw, 96px);
    font-weight: 500;
    letter-spacing: -0.07em;
    line-height: 0.86;
}
.progress-modular__process-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    padding: clamp(24px, 2.4vw, 36px);
    background: #fff;
    border: 1px solid rgba(16, 24, 39, 0.1);
    border-radius: clamp(14px, 1.25vw, 20px);
    transition:
        transform 0.45s var(--ease),
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
}
.progress-modular__process-card::before {
    content: "";
    position: absolute;
    right: -28%;
    bottom: -45%;
    width: 72%;
    aspect-ratio: 1;
    border: 1px solid rgba(16, 24, 39, 0.07);
    border-radius: 50%;
    transition:
        transform 0.55s var(--ease),
        border-color 0.35s ease;
}
.progress-modular__process-icon {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--surface-2);
    color: var(--navy);
    font-size: 17px;
    transition:
        transform 0.4s var(--ease),
        background 0.35s ease,
        color 0.35s ease;
}
.progress-modular__process-card > div:last-child {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 8px;
}
.progress-modular__process-index {
    color: var(--ink-soft);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
}
.progress-modular__process-card h3 {
    max-width: 240px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(25px, 2vw, 34px);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.98;
}
@media (hover: hover) and (pointer: fine) {
    .progress-modular__process-card:hover {
        transform: translateY(-6px);
        background: var(--ink);
        color: #fff;
        border-color: var(--ink);
    }
    .progress-modular__process-card:hover::before {
        transform: scale(1.15) translate(-8%, -8%);
        border-color: rgba(255, 255, 255, 0.13);
    }
    .progress-modular__process-card:hover .progress-modular__process-icon {
        transform: rotate(-8deg) scale(1.06);
        background: #fff;
        color: var(--ink);
    }
    .progress-modular__process-card:hover .progress-modular__process-index {
        color: rgba(255, 255, 255, 0.48);
    }
}
.progress-modular__video-card {
    position: relative;
    grid-column: 1 / 3;
    grid-row: 2;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    border-radius: clamp(14px, 1.25vw, 20px);
    background: #dfe4e9;
}
.progress-modular__video-card .drone-feature__video {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    object-position: 52% 50% !important;
    transform-origin: 52% 50% !important;
}
.progress-modular__video-shade {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        transparent 58%,
        rgba(8, 15, 27, 0.11) 100%
    );
}
.progress-modular__image-card {
    position: relative;
    grid-column: 3;
    grid-row: 2;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    border-radius: clamp(14px, 1.25vw, 20px);
    background: #dfe4e9;
}
.progress-modular__image-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    filter: saturate(0.76) contrast(0.98);
    transition:
        transform 0.75s var(--ease),
        filter 0.55s ease;
}
.progress-modular__image-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 15, 27, 0.02) 35%,
        rgba(8, 15, 27, 0.6) 100%
    );
    pointer-events: none;
}
.progress-modular__image-card figcaption {
    position: absolute;
    z-index: 2;
    left: clamp(20px, 2vw, 30px);
    right: clamp(20px, 2vw, 30px);
    bottom: clamp(20px, 2vw, 30px);
    display: grid;
    gap: 7px;
    color: #fff;
}
.progress-modular__image-card figcaption span {
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    opacity: 0.62;
}
.progress-modular__image-card figcaption strong {
    max-width: 270px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(26px, 2.2vw, 36px);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.98;
}
@media (hover: hover) and (pointer: fine) {
    .progress-modular__image-card:hover img {
        transform: scale(1.07);
        filter: saturate(0.98) contrast(1);
    }
}
.drone-feature--modular .progress-tech-background {
    z-index: 0 !important;
}
.drone-feature--modular .progress-tech-orbit {
    right: -16vw !important;
    top: 6% !important;
    width: min(50vw, 720px) !important;
    opacity: 0.28 !important;
}
.drone-feature--modular .progress-tech-line-art {
    right: -12% !important;
    bottom: -16% !important;
    width: min(58vw, 840px) !important;
    opacity: 0.055 !important;
}
.drone-feature--modular .progress-tech-cross {
    right: 11% !important;
    left: auto !important;
    top: 15% !important;
    opacity: 0.2 !important;
}
.hero-kicker {
    font-size: clamp(18px, 1.08vw, 21px) !important;
    font-weight: 700 !important;
    letter-spacing: 0.105em !important;
    line-height: 1.25 !important;
}
.hero-kicker__right {
    gap: clamp(18px, 1.8vw, 30px) !important;
    font-weight: 700 !important;
}
.hero-vision {
    max-width: 520px !important;
    padding-left: clamp(24px, 2vw, 34px) !important;
    font-size: clamp(21px, 1.32vw, 26px) !important;
    font-weight: 500 !important;
    line-height: 1.55 !important;
    letter-spacing: -0.015em !important;
}
.brand img,
.site-logo,
.brand-logo,
.header-logo img {
    width: clamp(205px, 13vw, 255px) !important;
    max-width: none !important;
    max-height: 86px !important;
    height: auto !important;
    object-fit: contain !important;
}
.site-header.is-scrolled .brand img,
.site-header.is-scrolled .site-logo,
.site-header.is-scrolled .brand-logo,
.site-header.is-scrolled .header-logo img {
    width: clamp(180px, 11vw, 220px) !important;
    max-height: 72px !important;
}
.khlg-nav-logo,
.brand img,
.site-logo,
.brand-logo,
.header-logo img {
    width: clamp(215px, 13.5vw, 270px) !important;
    max-width: none !important;
    max-height: 92px !important;
    height: auto !important;
    object-fit: contain !important;
}
.site-header.is-scrolled .khlg-nav-logo,
.site-header.is-scrolled .brand img,
.site-header.is-scrolled .site-logo,
.site-header.is-scrolled .brand-logo,
.site-header.is-scrolled .header-logo img {
    width: clamp(190px, 11.5vw, 230px) !important;
    max-height: 76px !important;
}
.modern-footer__logo {
    width: clamp(245px, 17vw, 310px) !important;
    max-width: none !important;
    max-height: 110px !important;
    height: auto !important;
    object-fit: contain !important;
}
.modern-footer__logo-link {
    display: inline-flex !important;
    align-items: center;
    margin-bottom: 34px !important;
}
.khlg-nav-logo,
.brand img,
.site-logo,
.brand-logo,
.header-logo img {
    width: clamp(245px, 15.5vw, 315px) !important;
    max-width: none !important;
    max-height: 104px !important;
    height: auto !important;
}
.site-header.is-scrolled .khlg-nav-logo,
.site-header.is-scrolled .brand img,
.site-header.is-scrolled .site-logo,
.site-header.is-scrolled .brand-logo,
.site-header.is-scrolled .header-logo img {
    width: clamp(215px, 13vw, 265px) !important;
    max-height: 84px !important;
}
.modern-footer__logo {
    width: clamp(300px, 21vw, 390px) !important;
    max-width: none !important;
    max-height: 132px !important;
    height: auto !important;
}
:root {
    --khlg-blue: #1b5589;
    --khlg-cyan: #139fdb;
    --khlg-deep-blue: #044b85;
    --khlg-charcoal: #404750;

    --blue: var(--khlg-cyan);
    --navy: var(--khlg-blue);
}
::selection {
    background: var(--khlg-blue) !important;
    color: #fff !important;
}
.page-progress__bar {
    background: linear-gradient(
        90deg,
        var(--khlg-blue),
        var(--khlg-cyan)
    ) !important;
}
.desktop-nav a::after {
    background: var(--khlg-cyan) !important;
    height: 2px !important;
}
.nav-inquiry-cta {
    border-color: rgba(27, 85, 137, 0.55) !important;
}
.site-header.is-scrolled .nav-inquiry-cta,
.menu-open .site-header .nav-inquiry-cta {
    background: var(--khlg-blue) !important;
    border-color: var(--khlg-blue) !important;
    color: #fff !important;
}
.nav-inquiry-cta__icon {
    color: var(--khlg-cyan) !important;
}
.site-header.is-scrolled .nav-inquiry-cta__icon,
.menu-open .site-header .nav-inquiry-cta__icon {
    color: #fff !important;
}
.nav-inquiry-cta:hover {
    border-color: var(--khlg-cyan) !important;
}
.nav-inquiry-cta:hover .nav-inquiry-cta__icon {
    color: var(--khlg-cyan) !important;
}
.hero-kicker > span:first-child {
    color: var(--khlg-cyan) !important;
}
.hero-vision {
    border-left-color: var(--khlg-cyan) !important;
}
.hero-grid {
    background-image:
        linear-gradient(
            to right,
            rgba(19, 159, 219, 0.16) 1px,
            transparent 1px
        ),
        linear-gradient(to bottom, rgba(27, 85, 137, 0.14) 1px, transparent 1px) !important;
}
.section-label span:first-child,
.modern-services__label span:first-child,
.drone-feature__topline span:first-child,
.progress-modular__kicker {
    color: var(--khlg-blue) !important;
}
.progress-modular__process-icon {
    color: var(--khlg-blue) !important;
    background: rgba(19, 159, 219, 0.1) !important;
}
.progress-modular__process-index {
    color: var(--khlg-cyan) !important;
}
.progress-modular__process-card {
    border-color: rgba(27, 85, 137, 0.15) !important;
}
@media (hover: hover) and (pointer: fine) {
    .progress-modular__process-card:hover {
        background: var(--khlg-blue) !important;
        border-color: var(--khlg-blue) !important;
    }
    .progress-modular__process-card:hover .progress-modular__process-icon {
        background: #fff !important;
        color: var(--khlg-cyan) !important;
    }
}
.progress-modular__image-card figcaption span {
    color: #bcecff !important;
    opacity: 1 !important;
}
.progress-tech-orbit,
.progress-tech-orbit::before,
.progress-tech-orbit::after {
    border-color: rgba(27, 85, 137, 0.16) !important;
}
.progress-tech-line-art polyline,
.progress-tech-line-art line,
.progress-tech-line-art circle {
    stroke: rgba(19, 159, 219, 0.28) !important;
}
.progress-tech-cross::before,
.progress-tech-cross::after {
    background: var(--khlg-cyan) !important;
}
.principle-card__icon {
    color: var(--khlg-blue) !important;
    background: rgba(19, 159, 219, 0.09) !important;
    border-color: rgba(27, 85, 137, 0.14) !important;
}
.principle-card__icon i {
    color: inherit !important;
}
.principle-card::after {
    background: linear-gradient(
        90deg,
        var(--khlg-blue),
        var(--khlg-cyan)
    ) !important;
}
@media (hover: hover) and (pointer: fine) {
    .principle-card:hover .principle-card__icon {
        background: var(--khlg-blue) !important;
        color: #fff !important;
    }
}
.service-showcase__eyebrow-icon {
    color: var(--khlg-cyan) !important;
}
.service-tile__icon {
    color: var(--khlg-blue) !important;
    background: rgba(19, 159, 219, 0.08) !important;
    border-color: rgba(27, 85, 137, 0.15) !important;
}
.service-tile__arrow {
    color: var(--khlg-cyan) !important;
}
.service-tile.is-active {
    border-color: var(--khlg-blue) !important;
    box-shadow: inset 3px 0 0 var(--khlg-cyan) !important;
}
.service-tile.is-active .service-tile__icon {
    background: var(--khlg-blue) !important;
    color: #fff !important;
    border-color: var(--khlg-blue) !important;
}
.service-tile.is-active .service-tile__num {
    color: var(--khlg-cyan) !important;
}
@media (hover: hover) and (pointer: fine) {
    .service-tile:not(.is-active):hover .service-tile__icon {
        background: rgba(19, 159, 219, 0.16) !important;
        color: var(--khlg-deep-blue) !important;
    }
}
.khlg-cta--dark {
    background: var(--khlg-blue) !important;
    border-color: var(--khlg-blue) !important;
    color: #fff !important;
}
.khlg-cta--dark::before {
    background: var(--khlg-deep-blue) !important;
}
.khlg-cta--dark .khlg-cta__icon {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
}
.khlg-cta--light .khlg-cta__icon {
    color: var(--khlg-cyan) !important;
}
.hero .khlg-cta--dark {
    background: rgba(27, 85, 137, 0.92) !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
}
.hero .khlg-cta--dark:hover {
    background: var(--khlg-deep-blue) !important;
}
.project-cta .section-label span:first-child,
.project-cta__eyebrow {
    color: #75d1f2 !important;
}
.project-cta__actions .khlg-cta--ghost-light {
    border-color: rgba(19, 159, 219, 0.46) !important;
}
.modern-footer__connect {
    border-color: rgba(19, 159, 219, 0.16) !important;
}
.modern-footer__connect-glow {
    background: radial-gradient(
        circle,
        rgba(19, 159, 219, 0.23) 0%,
        rgba(27, 85, 137, 0.1) 38%,
        transparent 72%
    ) !important;
}
.modern-footer__connect:hover .modern-footer__connect-action {
    background: var(--khlg-cyan) !important;
}
.modern-footer__contact-icon {
    color: #fff !important;
    background: var(--khlg-blue) !important;
    border-color: rgba(19, 159, 219, 0.28) !important;
}
.modern-footer__contact-links > a:hover .modern-footer__contact-icon {
    background: var(--khlg-cyan) !important;
    color: #fff !important;
}
.modern-footer__office-tab.is-active {
    color: #79d5f4 !important;
    border-color: var(--khlg-cyan) !important;
}
.modern-footer__office-copy > a:hover {
    color: #79d5f4 !important;
}
.modern-footer__backtop i {
    color: var(--khlg-cyan) !important;
}
:root {
    --khlg-blue: #1b5589;
    --khlg-cyan: #139fdb;
    --khlg-deep-blue: #044b85;
    --khlg-charcoal: #404750;
    --khlg-navy: #102a43;
    --khlg-light-cyan: #8edcf5;

    --navy: var(--khlg-navy) !important;
    --blue: var(--khlg-blue) !important;
}
.brand-highlight {
    display: inline;
    color: var(--khlg-deep-blue);
    font-weight: 700;
    background: linear-gradient(
        180deg,
        transparent 58%,
        rgba(19, 159, 219, 0.17) 58%,
        rgba(19, 159, 219, 0.17) 92%,
        transparent 92%
    );
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding-inline: 0.03em;
}
.hero .brand-highlight,
.mission-vision .brand-highlight,
.project-cta .brand-highlight,
.footer-modern .brand-highlight {
    color: var(--khlg-light-cyan);
    background: linear-gradient(
        180deg,
        transparent 60%,
        rgba(19, 159, 219, 0.24) 60%,
        rgba(19, 159, 219, 0.24) 94%,
        transparent 94%
    );
}
.site-header:not(.is-scrolled) .brand-highlight {
    color: #9fe6fb;
    background: rgba(19, 159, 219, 0.16);
    border-radius: 0.16em;
    padding: 0.02em 0.13em;
}
h1 .brand-highlight,
h2 .brand-highlight,
h3 .brand-highlight,
.section-label .brand-highlight,
.modern-services__label .brand-highlight {
    font-weight: inherit;
}
.service-tile.is-active .service-tile__icon,
.principle-card:hover .principle-card__icon {
    background: var(--khlg-deep-blue) !important;
    border-color: var(--khlg-deep-blue) !important;
    color: #fff !important;
}
.service-tile.is-active {
    border-color: rgba(27, 85, 137, 0.5) !important;
    box-shadow: inset 4px 0 0 var(--khlg-cyan) !important;
}
.service-tile.is-active .service-tile__num,
.progress-modular__process-index {
    color: var(--khlg-deep-blue) !important;
    font-weight: 700 !important;
}
.section-label span:first-child,
.modern-services__label span:first-child,
.drone-feature__topline span:first-child,
.progress-modular__kicker {
    color: var(--khlg-deep-blue) !important;
}
.hero-kicker > span:first-child {
    color: #9fe6fb !important;
}
.hero-kicker__right {
    color: rgba(255, 255, 255, 0.92) !important;
}
.hero-vision {
    border-left-color: var(--khlg-light-cyan) !important;
    color: rgba(255, 255, 255, 0.92) !important;
}
.hero-grid {
    opacity: 0.22 !important;
    background-image:
        linear-gradient(
            to right,
            rgba(142, 220, 245, 0.22) 1px,
            transparent 1px
        ),
        linear-gradient(
            to bottom,
            rgba(142, 220, 245, 0.16) 1px,
            transparent 1px
        ) !important;
}
.khlg-cta--dark,
.nav-inquiry-cta {
    background: var(--khlg-navy) !important;
    border-color: var(--khlg-navy) !important;
    color: #fff !important;
}
.khlg-cta--dark::before,
.nav-inquiry-cta::before {
    background: var(--khlg-blue) !important;
}
.khlg-cta--dark .khlg-cta__icon,
.nav-inquiry-cta__icon {
    color: #fff !important;
}
.khlg-cta__line {
    background: var(--khlg-cyan) !important;
}
.khlg-cta--light {
    color: var(--khlg-navy) !important;
}
.khlg-cta--light .khlg-cta__icon {
    color: var(--khlg-blue) !important;
}
.site-header:not(.is-scrolled) .nav-inquiry-cta {
    background: rgba(16, 42, 67, 0.72) !important;
    border-color: rgba(255, 255, 255, 0.32) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.site-header:not(.is-scrolled) .nav-inquiry-cta:hover {
    background: var(--khlg-blue) !important;
    border-color: var(--khlg-light-cyan) !important;
}
.progress-tech-orbit,
.progress-tech-orbit::before,
.progress-tech-orbit::after {
    border-color: rgba(27, 85, 137, 0.11) !important;
}
.progress-tech-line-art polyline,
.progress-tech-line-art line,
.progress-tech-line-art circle {
    stroke: rgba(27, 85, 137, 0.16) !important;
}
.progress-tech-cross::before,
.progress-tech-cross::after {
    background: rgba(27, 85, 137, 0.36) !important;
}
.project-cta .section-label span:first-child,
.project-cta__eyebrow,
.mission-block__label {
    color: #9fe6fb !important;
    opacity: 1 !important;
}
.project-cta__actions .khlg-cta--ghost-light {
    border-color: rgba(142, 220, 245, 0.48) !important;
}
.modern-footer__eyebrow,
.modern-footer__office-tab.is-active,
.modern-footer__backtop i {
    color: var(--khlg-light-cyan) !important;
}
.modern-footer__contact-icon {
    background: rgba(27, 85, 137, 0.82) !important;
    border-color: rgba(142, 220, 245, 0.28) !important;
    color: #fff !important;
}
.modern-footer__contact-links > a:hover .modern-footer__contact-icon,
.modern-footer__connect:hover .modern-footer__connect-action {
    background: var(--khlg-cyan) !important;
    color: #06233a !important;
}
.modern-footer__connect-action {
    background: var(--khlg-blue) !important;
    color: #fff !important;
}
.modern-footer__office-copy > a:hover,
.modern-footer__legal a:hover,
.modern-footer__backtop:hover {
    color: var(--khlg-light-cyan) !important;
}
.intro-copy,
.principles-head p,
.principle-card p,
.service-showcase__body,
.project-cta__copy,
.modern-footer__description {
    color: var(--ink-soft);
}
.footer-modern .modern-footer__description,
.footer-modern .modern-footer__office-copy {
    color: rgba(255, 255, 255, 0.72) !important;
}
.hero .brand-highlight,
.mission-vision .brand-highlight,
.project-cta .brand-highlight,
.footer-modern .brand-highlight,
.site-header:not(.is-scrolled) .brand-highlight {
    color: var(--khlg-light-cyan) !important;
}
.brand-highlight {
    background: none !important;
    background-image: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    color: var(--khlg-blue) !important;
    font-weight: inherit !important;
}
.hero h1 .brand-highlight,
.hero h2 .brand-highlight,
.mission-vision h1 .brand-highlight,
.mission-vision h2 .brand-highlight,
.project-cta h1 .brand-highlight,
.project-cta h2 .brand-highlight,
.footer-modern h1 .brand-highlight,
.footer-modern h2 .brand-highlight {
    color: var(--khlg-light-cyan) !important;
}
.hero-kicker,
.hero-kicker__right {
    display: none !important;
}
.nav-inquiry-cta__icon,
.site-header.is-scrolled .nav-inquiry-cta__icon,
.menu-open .site-header .nav-inquiry-cta__icon {
    background: #ffffff !important;
    color: var(--khlg-navy) !important;
    border: 1px solid rgba(255, 255, 255, 0.75) !important;
}
.nav-inquiry-cta__icon i {
    display: block !important;
    color: inherit !important;
    font-size: 16px !important;
    line-height: 1 !important;
    opacity: 1 !important;
    visibility: visible !important;
}
@media (hover: hover) and (pointer: fine) {
    .nav-inquiry-cta:hover .nav-inquiry-cta__icon,
    .site-header.is-scrolled .nav-inquiry-cta:hover .nav-inquiry-cta__icon {
        background: var(--khlg-cyan) !important;
        color: #06233a !important;
        border-color: var(--khlg-cyan) !important;
        transform: rotate(8deg) scale(1.05) !important;
    }
}
.service-showcase__eyebrow-icon,
.modern-services__icon-label i {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 1.15em !important;
    height: 1.15em !important;
    line-height: 1 !important;
    text-align: center !important;
    vertical-align: middle !important;
    flex: 0 0 1.15em !important;
}
.service-tile {
    align-items: center !important;
}
.service-tile__icon {
    justify-self: center !important;
    align-self: center !important;
}
.principle-card__icon {
    align-self: flex-start !important;
}
.modern-footer__backtop i {
    display: inline-grid !important;
    place-items: center !important;
    width: 24px !important;
    height: 24px !important;
    line-height: 1 !important;
    text-align: center !important;
    vertical-align: middle !important;
}
.section-label--meta-only {
    justify-content: flex-end !important;
}
.section-label--meta-only > span {
    color: var(--ink-soft) !important;
}
.progress-modular__process-index,
.progress-modular__image-card figcaption > span {
    display: none !important;
}
.progress-modular__process-card {
    justify-content: center !important;
    align-items: flex-start !important;
    gap: clamp(26px, 2vw, 34px) !important;
    padding: clamp(26px, 2.2vw, 34px) clamp(28px, 2.4vw, 38px) !important;
}
.progress-modular__process-card > div:last-child {
    display: block !important;
    width: 100%;
    margin: 0 !important;
}
.progress-modular__process-card h3 {
    margin: 0 !important;
    max-width: 100% !important;
    line-height: 0.98 !important;
}
.progress-modular__process-icon {
    width: 48px !important;
    height: 48px !important;
    margin: 0 !important;
}
.progress-modular__process-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: clamp(18px, 1.5vw, 24px) !important;
    padding: clamp(26px, 2.2vw, 34px) clamp(28px, 2.4vw, 38px) !important;
}
.progress-modular__process-icon {
    flex: 0 0 48px !important;
    width: 48px !important;
    height: 48px !important;
    margin: 0 !important;
    align-self: center !important;
}
.progress-modular__process-card > div:last-child {
    display: flex !important;
    align-items: center !important;
    min-width: 0 !important;
    width: auto !important;
    margin: 0 !important;
}
.progress-modular__process-card h3 {
    margin: 0 !important;
    max-width: 100% !important;
    line-height: 1 !important;
}
.principle-card__num,
.principle-card__number,
.principle-card__index,
.principle-card__top > span:first-child {
    display: none !important;
}
.principle-card__top {
    justify-content: flex-end !important;
    align-items: center !important;
    min-height: 58px !important;
}
.principle-card__icon {
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
    min-height: 58px !important;
    border-radius: 50% !important;
    display: inline-grid !important;
    place-items: center !important;
    padding: 0 !important;
    background: rgba(27, 85, 137, 0.1) !important;
    border: 1px solid rgba(27, 85, 137, 0.16) !important;
    color: var(--khlg-deep-blue) !important;
}
.principle-card__icon i {
    font-size: 24px !important;
    line-height: 1 !important;
    width: 1em !important;
    height: 1em !important;
    display: block !important;
    text-align: center !important;
    color: inherit !important;
}
@media (hover: hover) and (pointer: fine) {
    .principle-card:hover .principle-card__icon {
        background: var(--khlg-deep-blue) !important;
        color: #fff !important;
        transform: translateY(-4px) scale(1.04) !important;
    }
}
.principle-card__number,
.principle-card__num,
.principle-card__index {
    display: none !important;
}
.principle-card__top > .principle-card__icon {
    display: inline-grid !important;
    place-items: center !important;
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: rgba(27, 85, 137, 0.1) !important;
    border: 1px solid rgba(27, 85, 137, 0.18) !important;
    color: var(--khlg-deep-blue) !important;
    visibility: visible !important;
    opacity: 1 !important;
}
.principle-card__top > .principle-card__icon i {
    display: block !important;
    width: 1em !important;
    height: 1em !important;
    font-size: 29px !important;
    line-height: 1 !important;
    text-align: center !important;
    color: inherit !important;
    visibility: visible !important;
    opacity: 1 !important;
}
.principle-card__top {
    justify-content: flex-end !important;
    align-items: center !important;
}
@media (hover: hover) and (pointer: fine) {
    .principle-card:hover .principle-card__top > .principle-card__icon {
        background: var(--khlg-deep-blue) !important;
        color: #fff !important;
        transform: translateY(-4px) scale(1.05) !important;
    }
}
.principle-card__top > span:first-child,
.principle-card__top > span.principle-card__icon:first-child {
    display: inline-grid !important;
    place-items: center !important;
    visibility: visible !important;
    opacity: 1 !important;
}
.principle-card__top > .principle-card__icon,
.principle-card__top > span.principle-card__icon:first-child {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    min-height: 72px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: rgba(27, 85, 137, 0.11) !important;
    border: 1px solid rgba(27, 85, 137, 0.2) !important;
    color: var(--khlg-deep-blue) !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}
.principle-card__top > .principle-card__icon i,
.principle-card__top > span.principle-card__icon:first-child i {
    display: grid !important;
    place-items: center !important;
    width: 34px !important;
    height: 34px !important;
    font-size: 32px !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: inherit !important;
    visibility: visible !important;
    opacity: 1 !important;
}
.principle-card__top {
    min-height: 72px !important;
    justify-content: flex-end !important;
    align-items: flex-start !important;
}
@media (hover: hover) and (pointer: fine) {
    .principle-card:hover .principle-card__top > .principle-card__icon {
        background: var(--khlg-deep-blue) !important;
        color: #fff !important;
        transform: translateY(-4px) scale(1.06) !important;
    }
}
.section-transition {
    position: relative;
    z-index: 4;
    height: clamp(42px, 5vw, 72px);
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 48%, #f1f6fa 100%);
    overflow: hidden;
}
.section-transition__inner {
    position: absolute;
    left: 50%;
    bottom: clamp(14px, 1.6vw, 22px);
    width: min(var(--max), calc(100% - var(--pad) * 2));
    height: 10px;
    transform: translateX(-50%);
}
.section-transition__line {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(27, 85, 137, 0.18) 10%,
        var(--khlg-blue) 48%,
        var(--khlg-cyan) 62%,
        rgba(19, 159, 219, 0.18) 90%,
        transparent 100%
    );
    transform: translateY(-50%) scaleX(0);
    transform-origin: left center;
    opacity: 0.9;
    will-change: transform;
}
.section-transition__dot {
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--khlg-cyan);
    box-shadow:
        0 0 0 6px rgba(19, 159, 219, 0.1),
        0 0 24px rgba(19, 159, 219, 0.22);
    transform: translate(-50%, -50%);
    opacity: 0;
    will-change: left, opacity;
}
.principles {
    position: relative;
    background: linear-gradient(
        180deg,
        #f1f6fa 0%,
        #f7f9fb 13%,
        #ffffff 38%,
        #ffffff 100%
    ) !important;
}
.principles::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: clamp(120px, 14vw, 220px);
    pointer-events: none;
    background:
        radial-gradient(
            circle at 18% 0%,
            rgba(27, 85, 137, 0.08),
            transparent 58%
        ),
        radial-gradient(
            circle at 84% 10%,
            rgba(19, 159, 219, 0.06),
            transparent 52%
        );
    opacity: 0.9;
}
.principles > .container,
.principles .principles-head,
.principles .principles-track-wrap {
    position: relative;
    z-index: 2;
}
.principles-head {
    will-change: transform, opacity;
}
@media (prefers-reduced-motion: reduce) {
    .section-transition__line {
        transform: translateY(-50%) scaleX(1) !important;
    }
    .section-transition__dot {
        display: none !important;
    }
}
.section-transition--principles,
.section-transition__inner,
.section-transition__line,
.section-transition__dot {
    display: none !important;
}
#about {
    position: relative;
    z-index: 1;
    overflow: clip;
    background: #ffffff !important;
}
#about .container,
#about .intro-copy,
#about .about-media {
    will-change: transform;
}
#difference {
    position: relative;
    z-index: 3;
    margin-top: clamp(-78px, -5vw, -52px);
    padding-top: clamp(138px, 11vw, 174px) !important;
    background: #f7f8fa !important;
    border-radius: clamp(24px, 2.2vw, 38px) clamp(24px, 2.2vw, 38px) 0 0;
    box-shadow:
        0 -22px 54px rgba(16, 24, 39, 0.055),
        0 -1px 0 rgba(16, 24, 39, 0.06);
    overflow: hidden;
}
#difference::before {
    display: none !important;
}
#difference::after {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0;
    top: 0;
    height: clamp(90px, 8vw, 130px);
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(247, 248, 250, 0.55) 52%,
        transparent 100%
    );
}
#difference > .container,
#difference .principles-head,
#difference .principles-track-wrap {
    position: relative;
    z-index: 2;
}
#difference .principles-head,
#difference .principles-track-wrap {
    will-change: transform, opacity;
}
@media (prefers-reduced-motion: reduce) {
    #about .intro-copy,
    #about .about-media,
    #difference .principles-head,
    #difference .principles-track-wrap {
        transform: none !important;
    }
}
#difference {
    background: #ffffff !important;
    transition: background-color 0.35s ease;
}
#difference.is-section-active {
    background: #eef4f8 !important;
}
#difference .principle-card {
    background: rgba(255, 255, 255, 0.94) !important;
    border-color: rgba(27, 85, 137, 0.12) !important;
    box-shadow: 0 16px 44px rgba(16, 24, 39, 0.035);
}
#difference::after {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.72) 0%,
        rgba(238, 244, 248, 0.42) 56%,
        transparent 100%
    ) !important;
}
@media (prefers-reduced-motion: reduce) {
    #difference {
        transition: none !important;
        background: #eef4f8 !important;
    }
}
#about {
    padding-top: clamp(76px, 7vw, 108px) !important;
}
#about .intro-grid {
    align-items: start !important;
    column-gap: clamp(48px, 6vw, 104px) !important;
}
#about .intro-sticky {
    top: 112px !important;
}
#about .intro-copy {
    gap: clamp(18px, 1.8vw, 26px) !important;
    padding-top: clamp(2px, 0.35vw, 6px) !important;
}
#about .intro-copy p {
    margin: 0 !important;
}
#about .about-cta {
    margin-top: clamp(8px, 1vw, 14px) !important;
}
#about .about-media {
    margin-top: clamp(34px, 3.5vw, 52px) !important;
}
#difference .principle-card {
    justify-content: flex-start !important;
    padding: clamp(26px, 2.4vw, 38px) clamp(28px, 3vw, 46px)
        clamp(30px, 3vw, 46px) !important;
}
#difference .principle-card__top {
    min-height: 0 !important;
    margin: 0 0 clamp(18px, 1.6vw, 24px) !important;
    justify-content: flex-end !important;
    align-items: center !important;
}
#difference .principle-card__icon i,
#difference .principle-card__top > span.principle-card__icon:first-child i {
    font-size: 29px !important;
    width: 31px !important;
    height: 31px !important;
}
#difference .principle-card h3 {
    margin: 0 !important;
    max-width: 100% !important;
}
#difference .principle-card h3 + p {
    margin-top: clamp(18px, 2vw, 28px) !important;
}
#difference .principle-card p {
    margin-top: auto !important;
    padding-top: clamp(20px, 2vw, 28px) !important;
}
#difference .principle-card {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-rows: auto 1fr !important;
    column-gap: clamp(18px, 1.8vw, 28px) !important;
    row-gap: clamp(22px, 2.2vw, 34px) !important;
    align-items: start !important;
    justify-content: initial !important;
    padding: clamp(28px, 2.6vw, 40px) clamp(28px, 3vw, 46px)
        clamp(32px, 3vw, 46px) !important;
}
#difference .principle-card__top {
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-self: start !important;
    justify-self: end !important;
    min-height: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-end !important;
}
#difference .principle-card h3 {
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: start !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    position: relative !important;
    z-index: 3 !important;
}
#difference .principle-card p {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    align-self: end !important;
    margin: 0 !important;
    padding-top: 0 !important;
    max-width: min(100%, 460px) !important;
    position: relative !important;
    z-index: 3 !important;
}
#difference .principle-card__icon,
#difference .principle-card__top > span.principle-card__icon:first-child {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    margin: 0 !important;
}
#difference .principle-card__icon i,
#difference .principle-card__top > span.principle-card__icon:first-child i {
    font-size: 29px !important;
}
#difference .principle-card__photo,
#difference .principle-card__veil {
    grid-column: 1 / -1 !important;
    grid-row: 1 / -1 !important;
}
#difference .principle-card__photo,
#difference .principle-card__veil {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}
#difference .principle-card:hover .principle-card__photo,
#difference .principle-card:hover .principle-card__veil {
    display: none !important;
    opacity: 0 !important;
    transform: none !important;
}
#difference .principle-card::after,
#difference .principle-card:hover::after {
    display: none !important;
    content: none !important;
}
#difference .principle-card,
#difference .principle-card:hover {
    background: #ffffff !important;
}
#difference .principle-card {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-rows: auto auto 1fr !important;
    column-gap: clamp(18px, 1.8vw, 28px) !important;
    row-gap: 0 !important;
    align-content: start !important;
    align-items: start !important;
    padding: clamp(28px, 2.6vw, 40px) clamp(28px, 3vw, 46px)
        clamp(30px, 3vw, 44px) !important;
}
#difference .principle-card__top {
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-self: start !important;
    justify-self: end !important;
    margin: 0 !important;
}
#difference .principle-card h3 {
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: start !important;
    margin: 0 !important;
    padding: 0 clamp(4px, 0.4vw, 8px) 0 0 !important;
    max-width: 100% !important;
}
#difference .principle-card p {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    align-self: start !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: clamp(24px, 2.5vw, 36px) 0 0 !important;
    padding: 0 !important;
    line-height: 1.68 !important;
}
#difference .principle-card p::after {
    content: "";
    display: block;
    height: clamp(8px, 0.8vw, 14px);
}
@media (hover: hover) and (pointer: fine) {
    #difference .principle-card:hover .principle-card__icon {
        transform: translateY(-3px) scale(1.04) !important;
    }
}
.hero-description {
    font-size: clamp(21px, 1.62vw, 29px) !important;
}
.hero-vision {
    font-size: clamp(22px, 1.38vw, 27px) !important;
}
#about .intro-copy {
    font-size: clamp(25px, 2.6vw, 43px) !important;
    line-height: 1.38 !important;
}
#difference .principles-head p {
    font-size: clamp(19px, 1.55vw, 25px) !important;
    line-height: 1.68 !important;
}
#difference .principle-card p {
    font-size: clamp(18px, 1.08vw, 20px) !important;
    line-height: 1.68 !important;
}
.modern-services__heading p {
    font-size: clamp(17px, 0.9vw, 19px) !important;
}
.service-showcase__body {
    font-size: clamp(19px, 1vw, 22px) !important;
    line-height: 1.72 !important;
}
.project-cta__copy {
    font-size: clamp(19px, 1.42vw, 24px) !important;
    line-height: 1.65 !important;
}
.modern-footer__brand > p {
    font-size: clamp(19px, 1.08vw, 22px) !important;
    line-height: 1.76 !important;
}
.modern-footer__office-copy strong,
.modern-footer__office-copy a {
    font-size: clamp(18px, 0.98vw, 20px) !important;
}
#services .modern-services__label {
    display: none !important;
}
#services .modern-services__heading {
    margin-top: 0 !important;
}
#services {
    padding-top: clamp(62px, 6vw, 92px) !important;
}
#services .modern-services__icon-label i {
    display: inline-grid !important;
    place-items: center !important;
    width: 44px !important;
    height: 44px !important;
    flex: 0 0 44px !important;
    border-radius: 50% !important;
    background: rgba(27, 85, 137, 0.1) !important;
    border: 1px solid rgba(27, 85, 137, 0.16) !important;
    color: var(--khlg-deep-blue) !important;
    font-size: 19px !important;
}
#services .service-showcase__eyebrow-icon {
    display: inline-grid !important;
    place-items: center !important;
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
    border-radius: 50% !important;
    background: rgba(27, 85, 137, 0.1) !important;
    border: 1px solid rgba(27, 85, 137, 0.16) !important;
    color: var(--khlg-deep-blue) !important;
    font-size: 18px !important;
}
#services .service-showcase__media-icon {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.16) !important;
    border: 1px solid rgba(255, 255, 255, 0.34) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff !important;
    font-size: 21px !important;
}
#services .service-tile__icon {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    border-radius: 50% !important;
    background: rgba(27, 85, 137, 0.09) !important;
    border: 1px solid rgba(27, 85, 137, 0.15) !important;
    color: var(--khlg-deep-blue) !important;
    font-size: 19px !important;
    transition:
        transform 0.35s var(--ease),
        background 0.35s ease,
        border-color 0.35s ease,
        color 0.35s ease !important;
}
#services .service-tile.is-active .service-tile__icon {
    background: var(--khlg-deep-blue) !important;
    border-color: var(--khlg-deep-blue) !important;
    color: #fff !important;
    transform: scale(1.05) !important;
}
@media (hover: hover) and (pointer: fine) {
    #services .service-tile:not(.is-active):hover .service-tile__icon {
        background: rgba(19, 159, 219, 0.12) !important;
        border-color: rgba(19, 159, 219, 0.32) !important;
        color: var(--khlg-blue) !important;
        transform: translateY(-2px) !important;
    }
    #services .modern-services__icon-label:hover i,
    #services .service-showcase__eyebrow:hover .service-showcase__eyebrow-icon {
        background: var(--khlg-deep-blue) !important;
        border-color: var(--khlg-deep-blue) !important;
        color: #fff !important;
    }
}
.mission-vision {
    position: relative !important;
    min-height: auto !important;
    display: block !important;
    overflow: hidden !important;
    background: linear-gradient(180deg, #101827 0%, #0d2238 100%) !important;
}
.mission-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding: clamp(82px, 8vw, 132px) 0 !important;
    position: relative !important;
    z-index: 2 !important;
}
.mission-block {
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr) !important;
    align-items: start !important;
    gap: clamp(38px, 6vw, 110px) !important;
    padding: clamp(44px, 5vw, 76px) 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.18) !important;
    position: relative !important;
}
.mission-block:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18) !important;
}
.mission-block__label {
    position: sticky;
    top: 116px;
    align-self: start;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-size: clamp(15px, 0.9vw, 18px) !important;
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: var(--khlg-light-cyan, #8edcf5) !important;
    opacity: 1 !important;
}
.mission-block__label::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 5px rgba(142, 220, 245, 0.1);
    flex: 0 0 auto;
}
.mission-block p {
    margin: 0 !important;
    max-width: 1100px !important;
    font-family: "Poppins", Arial, sans-serif !important;
    font-size: clamp(40px, 4.6vw, 72px) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.052em !important;
    font-weight: 400 !important;
    color: #fff !important;
}
.mission-block:nth-child(2) p {
    max-width: 1040px !important;
}
.mission-orbit {
    width: min(78vw, 1100px) !important;
    right: -34vw !important;
    top: 48% !important;
    opacity: 0.7 !important;
}
.mission-block__label {
    font-family: "Poppins", Arial, sans-serif !important;
    font-size: clamp(28px, 2.4vw, 42px) !important;
    line-height: 1 !important;
    letter-spacing: -0.035em !important;
    font-weight: 600 !important;
    text-transform: none !important;
    color: #ffffff !important;
    gap: 14px !important;
}
.mission-block__label::before {
    width: 11px !important;
    height: 11px !important;
    background: var(--khlg-light-cyan, #8edcf5) !important;
    box-shadow: 0 0 0 6px rgba(142, 220, 245, 0.1) !important;
}
.mission-block {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: clamp(24px, 2.4vw, 34px) !important;
    padding: clamp(52px, 5.2vw, 82px) 0 !important;
}
.mission-block__label {
    position: relative !important;
    top: auto !important;
    align-self: auto !important;
    margin: 0 !important;
}
.mission-block p {
    margin: 0 !important;
    max-width: 1180px !important;
}
.mission-block:nth-child(2) p {
    max-width: 1120px !important;
}
.mission-block {
    width: 100% !important;
}
.mission-block p,
.mission-block:nth-child(2) p {
    width: 100% !important;
    max-width: none !important;
}
.mission-block p {
    letter-spacing: -0.045em !important;
    text-wrap: balance;
}
#about .intro-copy {
    width: 100% !important;
    max-width: none !important;
}
#about .intro-copy p {
    width: 100% !important;
    max-width: none !important;
}
.footer-modern {
    --footer-mx: 86%;
    --footer-my: 12%;
    isolation: isolate !important;
    background: #0b1422 !important;
}
.footer-modern::before {
    display: block !important;
    content: "" !important;
    position: absolute !important;
    z-index: 0 !important;
    left: var(--footer-mx) !important;
    top: var(--footer-my) !important;
    width: clamp(520px, 44vw, 760px) !important;
    height: clamp(520px, 44vw, 760px) !important;
    border-radius: 50% !important;
    transform: translate(-50%, -50%) !important;
    background: radial-gradient(
        circle,
        rgba(37, 99, 235, 0.18) 0%,
        rgba(37, 99, 235, 0.08) 34%,
        rgba(37, 99, 235, 0.025) 52%,
        transparent 70%
    ) !important;
    pointer-events: none !important;
    transition:
        left 0.12s linear,
        top 0.12s linear !important;
    will-change: left, top;
}
.footer-modern .modern-footer {
    position: relative !important;
    z-index: 1 !important;
}
@media (prefers-reduced-motion: reduce) {
    .footer-modern::before {
        transition: none !important;
    }
}
.footer-modern::before {
    width: clamp(620px, 52vw, 900px) !important;
    height: clamp(620px, 52vw, 900px) !important;
    background: radial-gradient(
        circle,
        rgba(19, 159, 219, 0.3) 0%,
        rgba(27, 85, 137, 0.2) 28%,
        rgba(37, 99, 235, 0.1) 48%,
        rgba(37, 99, 235, 0.035) 62%,
        transparent 74%
    ) !important;
    filter: blur(6px);
}
.footer-connect,
.footer-connect-card,
.modern-footer__connect,
.project-cta,
.footer-cta,
.connect-panel {
    --mx: 50% !important;
    --my: 50% !important;
}
.footer-connect::before,
.footer-connect::after,
.footer-connect-card::before,
.footer-connect-card::after,
.modern-footer__connect::before,
.modern-footer__connect::after,
.footer-cta::before,
.footer-cta::after,
.connect-panel::before,
.connect-panel::after {
    background-image: none !important;
    opacity: 0 !important;
    display: none !important;
}
.footer-connect,
.footer-connect-card,
.modern-footer__connect,
.footer-cta,
.connect-panel {
    background: #ffffff !important;
}
.modern-footer__connect {
    --mx: 50% !important;
    --my: 50% !important;
    background: #ffffff !important;
}
.modern-footer__connect-glow {
    display: none !important;
    content: none !important;
    background: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}
.modern-footer__office-stage {
    min-height: 0 !important;
}
.modern-footer__office-panel {
    min-height: 170px;
}
.modern-footer__office-map {
    position: relative;
    width: 100%;
    height: clamp(270px, 27vw, 400px);
    margin-top: clamp(18px, 2vw, 28px);
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.035);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}
.modern-footer__office-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(0.9) contrast(0.98);
}
.modern-footer__office-map::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}
#about .intro-sticky h2 {
    font-size: clamp(48px, 7.5vw, 116px) !important;
    line-height: 0.84 !important;
    letter-spacing: -0.07em !important;
    font-weight: 500 !important;
}
.regional-coverage {
    position: relative;
    overflow: hidden;
    padding: clamp(78px, 8vw, 122px) 0;
    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(19, 159, 219, 0.08),
            transparent 30%
        ),
        linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
}
.regional-coverage::before {
    content: "";
    position: absolute;
    right: -16vw;
    top: -18vw;
    width: min(52vw, 820px);
    aspect-ratio: 1;
    border: 1px solid rgba(16, 42, 67, 0.07);
    border-radius: 50%;
    pointer-events: none;
}
.regional-coverage::after {
    content: "";
    position: absolute;
    right: 9vw;
    top: 12%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--khlg-cyan, #139fdb);
    box-shadow: 0 0 0 8px rgba(19, 159, 219, 0.08);
    pointer-events: none;
}
.regional-coverage__inner {
    position: relative;
    z-index: 2;
}
.regional-coverage__head {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: clamp(38px, 6vw, 96px);
    align-items: end;
    margin-bottom: clamp(44px, 5vw, 72px);
}
.regional-coverage__title-wrap {
    min-width: 0;
}
.regional-coverage__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: clamp(18px, 2vw, 26px);
    font-size: clamp(14px, 0.82vw, 16px);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--khlg-cyan, #139fdb);
}
.regional-coverage__eyebrow i {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(19, 159, 219, 0.1);
    border: 1px solid rgba(19, 159, 219, 0.18);
    font-size: 15px;
}
.regional-coverage__head h2 {
    margin: 0;
    max-width: 1050px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(54px, 7.5vw, 116px);
    line-height: 0.84;
    letter-spacing: -0.07em;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--ink);
}
.regional-coverage__intro {
    justify-self: end;
    max-width: 560px;
    margin: 0;
    padding-bottom: 4px;
    font-size: clamp(19px, 1.25vw, 22px);
    line-height: 1.68;
    color: var(--ink-soft);
}
.regional-coverage__grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
    gap: 0;
    min-height: 620px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 30px 80px rgba(16, 24, 39, 0.055);
    overflow: hidden;
}
.regional-coverage__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    padding: clamp(32px, 3.2vw, 48px);
    border-right: 1px solid var(--line);
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfc 100%);
}
.regional-coverage__info-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: clamp(38px, 4vw, 64px);
}
.regional-coverage__info-label,
.regional-coverage__index {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.regional-coverage__info-label {
    color: var(--khlg-blue, #1b5589);
}
.regional-coverage__location {
    margin-bottom: clamp(34px, 4vw, 56px);
}
.regional-coverage__location h3 {
    margin: 0 0 18px;
    max-width: 100%;
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(44px, 4.3vw, 66px);
    line-height: 0.94;
    letter-spacing: -0.055em;
    font-weight: 500;
    color: var(--ink);
}
.regional-coverage__location p {
    margin: 0;
    max-width: 520px;
    font-size: clamp(18px, 1.05vw, 20px);
    line-height: 1.72;
    color: var(--ink-soft);
}
.regional-coverage__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: auto;
    padding-top: clamp(24px, 3vw, 40px);
    border-top: 1px solid var(--line);
}
.regional-coverage__chip {
    appearance: none;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    padding: 10px 14px;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--ink-soft);
    cursor: pointer;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s var(--ease);
}
.regional-coverage__chip.is-active {
    background: var(--navy, #102a43);
    border-color: var(--navy, #102a43);
    color: #fff;
}
@media (hover: hover) and (pointer: fine) {
    .regional-coverage__chip:not(.is-active):hover {
        transform: translateY(-2px);
        border-color: rgba(19, 159, 219, 0.35);
        color: var(--khlg-blue, #1b5589);
    }
}
.regional-coverage__map-wrap {
    min-width: 0;
    background: #dce6ee;
}
.regional-coverage__map-frame {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 620px;
    overflow: hidden;
}
#khlgLeafletMap {
    width: 100%;
    height: 100%;
    min-height: 620px;
    z-index: 1;
    background: #eaf1f5;
}
.regional-coverage__map-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(16, 24, 39, 0.04);
}
.regional-coverage__map-meta {
    position: absolute;
    z-index: 500;
    left: 22px;
    right: 22px;
    bottom: 18px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    pointer-events: none;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.leaflet-control-zoom {
    border: 0 !important;
    box-shadow: 0 14px 34px rgba(16, 24, 39, 0.16) !important;
}
.leaflet-control-zoom a {
    width: 38px !important;
    height: 38px !important;
    line-height: 38px !important;
    border: 0 !important;
    color: var(--navy, #102a43) !important;
}
.leaflet-control-attribution {
    font-size: 10px !important;
    background: rgba(255, 255, 255, 0.84) !important;
    backdrop-filter: blur(8px);
}
.leaflet-popup-content-wrapper {
    border-radius: 16px !important;
    box-shadow: 0 18px 48px rgba(16, 24, 39, 0.18) !important;
}
.leaflet-popup-content {
    margin: 17px 18px !important;
    font-family: "Roboto", Arial, sans-serif !important;
}
.khlg-popup-title {
    display: block;
    margin-bottom: 6px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--navy, #102a43);
}
.khlg-popup-desc {
    display: block;
    max-width: 260px;
    font-size: 13px;
    line-height: 1.55;
    color: var(--ink-soft);
}
.khlg-map-marker {
    position: relative;
    width: 20px;
    height: 20px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--khlg-cyan, #139fdb);
    box-shadow: 0 8px 22px rgba(19, 159, 219, 0.42);
}
.khlg-map-marker::after {
    content: "";
    position: absolute;
    inset: -11px;
    border: 1px solid rgba(19, 159, 219, 0.58);
    border-radius: inherit;
    animation: khlgRegionPulse 1.8s ease-out infinite;
}
.khlg-map-marker.active {
    background: var(--navy, #102a43);
    box-shadow: 0 9px 24px rgba(16, 42, 67, 0.38);
}
@keyframes khlgRegionPulse {
    0% {
        transform: scale(0.5);
        opacity: 0.85;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}
#khlgLeafletMap.leaflet-container {
    position: relative !important;
    overflow: hidden !important;
    font-family: "Roboto", Arial, sans-serif !important;
    background: #dce8ee !important;
}
#khlgLeafletMap .leaflet-map-pane,
#khlgLeafletMap .leaflet-tile-pane,
#khlgLeafletMap .leaflet-overlay-pane,
#khlgLeafletMap .leaflet-shadow-pane,
#khlgLeafletMap .leaflet-marker-pane,
#khlgLeafletMap .leaflet-tooltip-pane,
#khlgLeafletMap .leaflet-popup-pane {
    position: absolute !important;
    left: 0;
    top: 0;
}
#khlgLeafletMap .leaflet-tile,
#khlgLeafletMap .leaflet-marker-icon,
#khlgLeafletMap .leaflet-marker-shadow {
    position: absolute !important;
    left: 0;
    top: 0;
    max-width: none !important;
    max-height: none !important;
}
#khlgLeafletMap .leaflet-tile {
    width: 256px !important;
    height: 256px !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: initial !important;
    transform-origin: 0 0 !important;
}
#khlgLeafletMap img.leaflet-tile {
    display: block !important;
}
#khlgLeafletMap .leaflet-pane {
    position: absolute !important;
    left: 0;
    top: 0;
}
#khlgLeafletMap .leaflet-control-container {
    position: relative;
    z-index: 800;
}
.regional-coverage::before {
    content: "" !important;
    position: absolute !important;
    z-index: 0 !important;
    width: clamp(420px, 42vw, 760px) !important;
    height: clamp(420px, 42vw, 760px) !important;
    right: -10vw !important;
    top: -14vw !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: radial-gradient(
        circle,
        rgba(19, 159, 219, 0.08) 0%,
        rgba(27, 85, 137, 0.035) 38%,
        transparent 70%
    ) !important;
    filter: blur(8px);
    opacity: 0.9 !important;
    pointer-events: none !important;
    animation: khlgCoverageGlowFloat 12s ease-in-out infinite alternate;
}
.regional-coverage::after {
    content: "" !important;
    position: absolute !important;
    z-index: 0 !important;
    inset: 0 !important;
    width: auto !important;
    height: auto !important;
    right: auto !important;
    top: auto !important;
    border-radius: 0 !important;
    background:
        linear-gradient(
            115deg,
            transparent 0 46%,
            rgba(19, 159, 219, 0.055) 46.2% 46.35%,
            transparent 46.55% 100%
        ),
        linear-gradient(
            25deg,
            transparent 0 68%,
            rgba(16, 42, 67, 0.035) 68.15% 68.3%,
            transparent 68.5% 100%
        ) !important;
    box-shadow: none !important;
    opacity: 0.7 !important;
    pointer-events: none !important;
    animation: khlgCoverageLinesDrift 18s ease-in-out infinite alternate;
}
.regional-coverage__inner::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: -8%;
    bottom: -12%;
    width: clamp(320px, 34vw, 580px);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(19, 159, 219, 0.055);
    box-shadow:
        inset 0 0 0 48px rgba(19, 159, 219, 0.012),
        0 0 0 86px rgba(16, 42, 67, 0.018);
    pointer-events: none;
    animation: khlgCoverageRingFloat 15s ease-in-out infinite alternate;
}
.regional-coverage__inner::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 5%;
    top: 8%;
    width: 110px;
    height: 110px;
    opacity: 0.16;
    pointer-events: none;
    background-image: radial-gradient(
        circle,
        rgba(19, 159, 219, 0.75) 1.4px,
        transparent 1.6px
    );
    background-size: 18px 18px;
    animation: khlgCoverageDotsDrift 10s ease-in-out infinite alternate;
}
@keyframes khlgCoverageGlowFloat {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }
    to {
        transform: translate3d(-42px, 34px, 0) scale(1.08);
    }
}
@keyframes khlgCoverageLinesDrift {
    from {
        transform: translate3d(-1.5%, -1%, 0);
    }
    to {
        transform: translate3d(1.5%, 1%, 0);
    }
}
@keyframes khlgCoverageRingFloat {
    from {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    to {
        transform: translate3d(34px, -24px, 0) rotate(8deg);
    }
}
@keyframes khlgCoverageDotsDrift {
    from {
        transform: translate3d(0, 0, 0);
        opacity: 0.12;
    }
    to {
        transform: translate3d(-18px, 22px, 0);
        opacity: 0.22;
    }
}
@media (prefers-reduced-motion: reduce) {
    .regional-coverage::before,
    .regional-coverage::after,
    .regional-coverage__inner::before,
    .regional-coverage__inner::after {
        animation: none !important;
    }
}
.regional-coverage {
    position: relative !important;
    overflow: hidden !important;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%) !important;
}
.regional-coverage__decor {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.regional-coverage__blueprint-grid {
    position: absolute;
    top: 3%;
    right: -3%;
    width: min(48vw, 720px);
    height: min(46vw, 680px);
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(27, 85, 137, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 85, 137, 0.055) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.78),
        rgba(0, 0, 0, 0.18) 62%,
        transparent 86%
    );
    -webkit-mask-image: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.78),
        rgba(0, 0, 0, 0.18) 62%,
        transparent 86%
    );
    animation: khlgBlueprintDrift 18s ease-in-out infinite alternate;
}
.regional-coverage__route-line {
    position: absolute;
    height: 1px;
    border-top: 1px dashed rgba(19, 159, 219, 0.16);
    transform-origin: left center;
}
.regional-coverage__route-line--one {
    width: 34vw;
    max-width: 520px;
    left: 2%;
    top: 24%;
    transform: rotate(-10deg);
    animation: khlgRouteFloatOne 12s ease-in-out infinite alternate;
}
.regional-coverage__route-line--two {
    width: 28vw;
    max-width: 430px;
    right: 3%;
    bottom: 15%;
    transform: rotate(8deg);
    opacity: 0.72;
    animation: khlgRouteFloatTwo 14s ease-in-out infinite alternate;
}
.regional-coverage__decor-icon {
    position: absolute;
    display: grid;
    place-items: center;
    color: var(--khlg-blue, #1b5589);
    opacity: 0.06;
    font-size: clamp(54px, 5vw, 92px);
    line-height: 1;
    transform-origin: center;
}
.regional-coverage__decor-icon--draft {
    left: 3%;
    bottom: 8%;
    animation: khlgDecorFloatA 13s ease-in-out infinite alternate;
}
.regional-coverage__decor-icon--route {
    right: 5%;
    top: 19%;
    font-size: clamp(46px, 4.4vw, 78px);
    opacity: 0.055;
    animation: khlgDecorFloatB 15s ease-in-out infinite alternate;
}
.regional-coverage__decor-icon--measure {
    right: 23%;
    bottom: 6%;
    font-size: clamp(40px, 3.8vw, 68px);
    opacity: 0.045;
    transform: rotate(-12deg);
    animation: khlgDecorFloatC 16s ease-in-out infinite alternate;
}
.regional-coverage__map-node {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(19, 159, 219, 0.34);
    box-shadow:
        0 0 0 6px rgba(19, 159, 219, 0.055),
        0 0 0 12px rgba(19, 159, 219, 0.018);
}
.regional-coverage__map-node--one {
    left: 13%;
    top: 20%;
    animation: khlgNodePulse 3.6s ease-in-out infinite;
}
.regional-coverage__map-node--two {
    right: 16%;
    top: 34%;
    animation: khlgNodePulse 4.2s ease-in-out 0.8s infinite;
}
.regional-coverage__map-node--three {
    left: 26%;
    bottom: 11%;
    animation: khlgNodePulse 4.8s ease-in-out 1.4s infinite;
}
@keyframes khlgBlueprintDrift {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-24px, 18px, 0);
    }
}
@keyframes khlgRouteFloatOne {
    from {
        transform: translate3d(0, 0, 0) rotate(-10deg);
    }
    to {
        transform: translate3d(20px, -8px, 0) rotate(-8deg);
    }
}
@keyframes khlgRouteFloatTwo {
    from {
        transform: translate3d(0, 0, 0) rotate(8deg);
    }
    to {
        transform: translate3d(-18px, 10px, 0) rotate(6deg);
    }
}
@keyframes khlgDecorFloatA {
    from {
        transform: translate3d(0, 0, 0) rotate(-4deg);
    }
    to {
        transform: translate3d(18px, -14px, 0) rotate(3deg);
    }
}
@keyframes khlgDecorFloatB {
    from {
        transform: translate3d(0, 0, 0) rotate(3deg);
    }
    to {
        transform: translate3d(-16px, 12px, 0) rotate(-3deg);
    }
}
@keyframes khlgDecorFloatC {
    from {
        transform: translate3d(0, 0, 0) rotate(-12deg);
    }
    to {
        transform: translate3d(12px, -10px, 0) rotate(-8deg);
    }
}
@keyframes khlgNodePulse {
    0%,
    100% {
        opacity: 0.45;
        transform: scale(0.9);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.08);
    }
}
@media (prefers-reduced-motion: reduce) {
    .regional-coverage__blueprint-grid,
    .regional-coverage__route-line,
    .regional-coverage__decor-icon,
    .regional-coverage__map-node {
        animation: none !important;
    }
}
.regional-coverage {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%) !important;
}
.regional-coverage__blueprint-grid {
    position: absolute !important;
    top: 5% !important;
    right: 0 !important;
    width: min(48vw, 760px) !important;
    height: 48% !important;
    opacity: 0.17 !important;
    background-image:
        linear-gradient(rgba(27, 85, 137, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 85, 137, 0.055) 1px, transparent 1px) !important;
    background-size: 44px 44px !important;
    mask-image: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 0, 0, 0.25) 20%,
        rgba(0, 0, 0, 0.82) 100%
    ) !important;
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 0, 0, 0.25) 20%,
        rgba(0, 0, 0, 0.82) 100%
    ) !important;
    animation: khlgIntentionalGrid 20s ease-in-out infinite alternate !important;
}
.regional-coverage__route-system {
    position: absolute;
    left: 2.5%;
    top: 27%;
    width: min(31vw, 470px);
    height: 110px;
    opacity: 0.34;
    transform: rotate(-7deg);
}
.regional-coverage__route-path {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(
        90deg,
        rgba(19, 159, 219, 0.38) 0 9px,
        transparent 9px 17px
    );
}
.regional-coverage__route-path::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 1px solid rgba(19, 159, 219, 0.48);
    border-right: 1px solid rgba(19, 159, 219, 0.48);
    transform: translateY(-50%) rotate(45deg);
}
.regional-coverage__route-node {
    position: absolute;
    top: calc(50% - 5px);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(19, 159, 219, 0.64);
    box-shadow: 0 0 0 5px rgba(19, 159, 219, 0.065);
}
.regional-coverage__route-node::after {
    content: "";
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(19, 159, 219, 0.14);
    border-radius: 50%;
    animation: khlgIntentionalPulse 3.8s ease-out infinite;
}
.regional-coverage__route-node--a {
    left: 3%;
}
.regional-coverage__route-node--b {
    left: 50%;
}
.regional-coverage__route-node--c {
    right: 2%;
}
.regional-coverage__drafting-mark {
    position: absolute;
    right: 4%;
    bottom: 3.5%;
    width: 205px;
    height: 90px;
    opacity: 0.22;
}
.regional-coverage__drafting-line {
    position: absolute;
    background: rgba(16, 42, 67, 0.22);
}
.regional-coverage__drafting-line--h {
    left: 0;
    top: 25px;
    width: 142px;
    height: 1px;
}
.regional-coverage__drafting-line--v {
    left: 25px;
    top: 0;
    width: 1px;
    height: 66px;
}
.regional-coverage__drafting-line--h::before,
.regional-coverage__drafting-line--h::after,
.regional-coverage__drafting-line--v::before,
.regional-coverage__drafting-line--v::after {
    content: "";
    position: absolute;
    background: rgba(16, 42, 67, 0.32);
}
.regional-coverage__drafting-line--h::before,
.regional-coverage__drafting-line--h::after {
    top: -4px;
    width: 1px;
    height: 9px;
}
.regional-coverage__drafting-line--h::before {
    left: 58px;
}
.regional-coverage__drafting-line--h::after {
    left: 108px;
}
.regional-coverage__drafting-line--v::before,
.regional-coverage__drafting-line--v::after {
    left: -4px;
    width: 9px;
    height: 1px;
}
.regional-coverage__drafting-line--v::before {
    top: 23px;
}
.regional-coverage__drafting-line--v::after {
    top: 48px;
}
.regional-coverage__drafting-index {
    position: absolute;
    left: 0;
    bottom: 0;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(16, 42, 67, 0.5);
    white-space: nowrap;
}
.regional-coverage__route-line,
.regional-coverage__decor-icon,
.regional-coverage__map-node {
    display: none !important;
}
@keyframes khlgIntentionalGrid {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-14px, 10px, 0);
    }
}
@keyframes khlgIntentionalPulse {
    0% {
        transform: scale(0.65);
        opacity: 0.5;
    }
    75%,
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
@media (prefers-reduced-motion: reduce) {
    .regional-coverage__blueprint-grid,
    .regional-coverage__route-node::after {
        animation: none !important;
    }
}
.regional-coverage {
    position: relative !important;
    overflow: hidden !important;
    background: linear-gradient(180deg, #ffffff 0%, #f6f9fb 100%) !important;
}
.regional-coverage::before,
.regional-coverage::after,
.regional-coverage__inner::before,
.regional-coverage__inner::after {
    display: none !important;
    content: none !important;
}
.regional-coverage__decor {
    position: absolute !important;
    z-index: 0 !important;
    inset: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}
.regional-coverage__inner {
    position: relative !important;
    z-index: 2 !important;
}
.regional-coverage__coverage-grid {
    position: absolute;
    left: 13%;
    right: 2%;
    top: 27%;
    bottom: 8%;
    opacity: 0.24;
    background-image:
        linear-gradient(rgba(27, 85, 137, 0.075) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 85, 137, 0.075) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.7) 14%,
        rgba(0, 0, 0, 0.78) 84%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.7) 14%,
        rgba(0, 0, 0, 0.78) 84%,
        transparent 100%
    );
}
.regional-coverage__network {
    position: absolute;
    z-index: 1;
    left: 2%;
    right: 0;
    top: 16%;
    width: 96%;
    height: 68%;
    overflow: visible;
    opacity: 0.48;
}
.regional-coverage__network-path {
    fill: none;
    stroke: rgba(19, 159, 219, 0.42);
    stroke-width: 1.7;
    stroke-dasharray: 10 10;
    vector-effect: non-scaling-stroke;
}
.regional-coverage__network-path--branch {
    stroke: rgba(27, 85, 137, 0.28);
    stroke-width: 1.2;
    stroke-dasharray: 5 11;
}
.regional-coverage__network-node circle:first-child {
    fill: #ffffff;
    stroke: rgba(19, 159, 219, 0.82);
    stroke-width: 2.2;
    vector-effect: non-scaling-stroke;
}
.regional-coverage__network-node--guam circle:first-child {
    fill: #102a43;
    stroke: #ffffff;
    stroke-width: 3;
}
.regional-coverage__network-node text {
    fill: rgba(16, 42, 67, 0.58);
    font-family: "Roboto", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
}
.regional-coverage__network-pulse {
    fill: none;
    stroke: rgba(19, 159, 219, 0.24);
    stroke-width: 1;
    transform-box: fill-box;
    transform-origin: center;
    animation: khlgCoverageNetworkPulse 3.6s ease-out infinite;
}
.regional-coverage__network-node--saipan .regional-coverage__network-pulse {
    animation-delay: 0.5s;
}
.regional-coverage__network-node--pohnpei .regional-coverage__network-pulse {
    animation-delay: 1s;
}
.regional-coverage__network-node--chuuk .regional-coverage__network-pulse {
    animation-delay: 1.5s;
}
.regional-coverage__network-node--yap .regional-coverage__network-pulse {
    animation-delay: 2s;
}
.regional-coverage__survey-frame {
    position: absolute;
    left: 9.25%;
    right: 9.25%;
    top: 33%;
    bottom: 5.5%;
    z-index: 1;
    opacity: 0.56;
}
.regional-coverage__survey-corner {
    position: absolute;
    width: 42px;
    height: 42px;
}
.regional-coverage__survey-corner::before,
.regional-coverage__survey-corner::after {
    content: "";
    position: absolute;
    background: rgba(16, 42, 67, 0.28);
}
.regional-coverage__survey-corner--tl {
    left: -24px;
    top: -24px;
}
.regional-coverage__survey-corner--tr {
    right: -24px;
    top: -24px;
    transform: rotate(90deg);
}
.regional-coverage__survey-corner--br {
    right: -24px;
    bottom: -24px;
    transform: rotate(180deg);
}
.regional-coverage__survey-corner--bl {
    left: -24px;
    bottom: -24px;
    transform: rotate(270deg);
}
.regional-coverage__survey-corner::before {
    left: 0;
    top: 0;
    width: 42px;
    height: 1px;
}
.regional-coverage__survey-corner::after {
    left: 0;
    top: 0;
    width: 1px;
    height: 42px;
}
.regional-coverage__survey-label {
    position: absolute;
    right: 0;
    bottom: -30px;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(16, 42, 67, 0.46);
}
.regional-coverage__blueprint-grid,
.regional-coverage__route-system,
.regional-coverage__drafting-mark,
.regional-coverage__route-line,
.regional-coverage__decor-icon,
.regional-coverage__map-node {
    display: none !important;
}
@keyframes khlgCoverageNetworkPulse {
    0% {
        opacity: 0.45;
        transform: scale(0.55);
    }
    80%,
    100% {
        opacity: 0;
        transform: scale(1.45);
    }
}
@media (prefers-reduced-motion: reduce) {
    .regional-coverage__network-pulse {
        animation: none !important;
    }
}
.regional-coverage__network-node text {
    display: none !important;
}
.project-cta__meta {
    display: none !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}
.project-cta__content {
    margin-top: 0 !important;
}
.project-cta__eyebrow {
    margin-top: 0 !important;
}
.khlg-nav-logo-switch {
    position: relative;
    display: block;
    width: clamp(250px, 16vw, 315px);
    height: clamp(72px, 6vw, 96px);
    flex: 0 0 auto;
}
.khlg-nav-logo-switch .khlg-nav-logo {
    position: absolute !important;
    left: 0;
    top: 50%;
    width: 100% !important;
    height: auto !important;
    max-width: none !important;
    max-height: 100% !important;
    object-fit: contain;
    object-position: left center;
    transform: translateY(-50%) !important;
    transition:
        opacity 0.28s ease,
        filter 0.28s ease,
        transform 0.35s var(--ease) !important;
}
.khlg-nav-logo--hero {
    opacity: 1;
    filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.15));
}
.khlg-nav-logo--scrolled {
    opacity: 0;
    filter: none !important;
}
.site-header.is-scrolled .khlg-nav-logo--hero,
.menu-open .site-header .khlg-nav-logo--hero {
    opacity: 0 !important;
}
.site-header.is-scrolled .khlg-nav-logo--scrolled,
.menu-open .site-header .khlg-nav-logo--scrolled {
    opacity: 1 !important;
}
.site-header.is-scrolled .khlg-nav-logo-switch {
    width: clamp(215px, 13vw, 265px);
    height: clamp(64px, 5.2vw, 84px);
}
.brand--logo:hover .khlg-nav-logo-switch .khlg-nav-logo {
    transform: translateY(calc(-50% - 1px)) !important;
}
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.footer-modern::before {
    width: clamp(720px, 58vw, 1040px) !important;
    height: clamp(720px, 58vw, 1040px) !important;
    opacity: 1 !important;
    filter: blur(2px) !important;
    background: radial-gradient(
        circle,
        rgba(19, 159, 219, 0.46) 0%,
        rgba(19, 159, 219, 0.32) 18%,
        rgba(27, 85, 137, 0.23) 34%,
        rgba(37, 99, 235, 0.14) 50%,
        rgba(37, 99, 235, 0.06) 63%,
        transparent 76%
    ) !important;
}
.footer-modern .modern-footer {
    position: relative !important;
    z-index: 2 !important;
}
.modern-footer__connect {
    background: #ffffff !important;
    isolation: isolate;
}
.modern-footer__connect::before,
.modern-footer__connect::after,
.modern-footer__connect-glow {
    display: none !important;
    opacity: 0 !important;
    background: none !important;
    content: none !important;
}
.footer-modern::before {
    transition: none !important;
    will-change: left, top !important;
}
.menu-toggle {
    display: none !important;
}
#khlgMobilePanel {
    display: none !important;
}
@media (prefers-reduced-motion: reduce) {
    #khlgMobilePanel,
    .menu-toggle__glyph::before,
    .menu-toggle__glyph::after {
        transition-duration: 0.01ms !important;
    }
}
:root {
    --khlg-content-max: 1680px;
    --khlg-page-gutter: clamp(24px, 2.8vw, 46px);
    --khlg-section-y: clamp(72px, 7vw, 108px);
    --khlg-section-head-gap: clamp(34px, 4vw, 58px);
    --khlg-content-gap: clamp(22px, 2.6vw, 40px);
}
#about > .container,
#difference > .container,
#services > .container,
#coverage > .container,
.mission-vision > .container,
#project-inquiry > .container,
#footer > .container {
    width: min(
        var(--khlg-content-max),
        calc(100% - (var(--khlg-page-gutter) * 2))
    ) !important;
    max-width: none !important;
    margin-inline: auto !important;
}
#about.section-pad,
#difference.section-pad,
#services.modern-services,
#coverage.regional-coverage,
.mission-vision,
#project-inquiry.project-cta,
#footer.footer-modern {
    padding-top: var(--khlg-section-y) !important;
    padding-bottom: var(--khlg-section-y) !important;
}
.mission-vision .mission-grid {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
#footer .modern-footer {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
#difference .principles-head,
#services .modern-services__heading,
#coverage .regional-coverage__head {
    margin-bottom: var(--khlg-section-head-gap) !important;
}
#about .intro-grid {
    column-gap: clamp(42px, 6vw, 96px) !important;
    row-gap: var(--khlg-content-gap) !important;
}
#about .intro-copy {
    gap: clamp(20px, 2vw, 30px) !important;
}
#about .about-media {
    margin-top: var(--khlg-section-head-gap) !important;
    gap: clamp(12px, 1.3vw, 20px) !important;
}
#difference .principles-head {
    gap: clamp(34px, 5vw, 82px) !important;
}
#difference .principles-track {
    gap: clamp(14px, 1.4vw, 20px) !important;
}
#services .service-showcase {
    margin: 0 !important;
}
#services .service-showcase__content {
    padding: clamp(28px, 3.4vw, 52px) !important;
}
#coverage .regional-coverage__head {
    gap: clamp(34px, 5vw, 82px) !important;
}
#coverage .regional-coverage__grid {
    gap: 0 !important;
}
.mission-vision {
    min-height: auto !important;
    align-items: stretch !important;
}
.mission-vision .mission-grid {
    gap: clamp(40px, 6vw, 96px) !important;
}
.mission-vision .mission-block {
    min-height: 0 !important;
    padding-top: clamp(22px, 2vw, 30px) !important;
    gap: clamp(30px, 4vw, 58px) !important;
}
#project-inquiry .project-cta__bottom {
    margin-top: var(--khlg-section-head-gap) !important;
}
#footer .modern-footer__connect {
    margin-bottom: clamp(42px, 5vw, 72px) !important;
}
#footer .modern-footer__main {
    gap: clamp(42px, 5vw, 78px) !important;
}
#footer .modern-footer__bottom {
    margin-top: clamp(42px, 5vw, 72px) !important;
    padding-bottom: 0 !important;
}
#about {
    overflow: visible !important;
}
#about > .container {
    position: relative !important;
}
#about .intro-grid {
    position: relative !important;
    z-index: 2 !important;
}
#about .intro-sticky {
    position: sticky !important;
    top: 112px !important;
    align-self: start !important;
    z-index: 3 !important;
}
#about .intro-copy {
    position: relative !important;
    z-index: 2 !important;
}
#about .about-media {
    position: relative !important;
    z-index: 4 !important;
    grid-column: auto !important;
    width: 100% !important;
    margin-top: clamp(42px, 4vw, 62px) !important;
}
.cursor-dot,
.cursor-ring {
    display: none !important;
}
img,
video,
iframe,
svg,
canvas {
    max-width: 100%;
}
iframe {
    border: 0;
}
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}
p,
li,
a,
button,
strong {
    overflow-wrap: break-word;
}
@media (min-width: 1181px) {
    .service-showcase {
        height: clamp(640px, 43vw, 720px);
        min-height: 0;
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        grid-template-rows: minmax(0, 1fr);
        align-items: stretch;
    }
    .service-showcase__media {
        align-self: stretch;
        width: 100%;
        height: 100% !important;
        min-height: 0 !important;
        overflow: hidden;
    }
    .service-showcase__image {
        position: absolute;
        inset-inline: 0;
        width: 100%;
        height: 118% !important;
        min-height: 118% !important;
        top: -9% !important;
        bottom: auto !important;
        object-fit: cover;
    }
    .mission-block p {
        font-size: clamp(44px, 4.25vw, 70px) !important;
        line-height: 1.08 !important;
    }
    .drone-feature--modular {
        padding: 48px 0 78px !important;
    }
    .progress-modular {
        grid-template-columns:
            minmax(320px, 1fr)
            minmax(220px, 0.48fr)
            minmax(220px, 0.48fr) !important;
        grid-template-rows:
            210px
            clamp(390px, 31vw, 520px) !important;
        column-gap: 12px !important;
        row-gap: 0 !important;
        align-items: stretch !important;
    }
    .progress-modular__intro {
        min-height: 0 !important;
        padding: 0 28px 4px 0 !important;
        justify-content: space-between !important;
    }
    .progress-modular__kicker {
        margin: 0 !important;
    }
    .progress-modular__intro h2 {
        margin: 0 !important;
        max-width: 610px !important;
        font-size: clamp(54px, 5vw, 82px) !important;
        line-height: 0.88 !important;
    }
    .progress-modular__process-card {
        padding: 24px 26px !important;
    }
    .progress-modular__process-icon {
        width: 42px !important;
        height: 42px !important;
    }
    .progress-modular__process-card h3 {
        font-size: clamp(24px, 1.7vw, 30px) !important;
        line-height: 1 !important;
    }
    .progress-modular__video-card,
    .progress-modular__image-card {
        margin-top: 18px !important;
        height: calc(100% - 18px) !important;
        align-self: end !important;
    }
}
@media (max-width: 1180px) {
    :root {
        --khlg-page-gutter: 28px;
        --khlg-section-y: 64px;
        --khlg-section-head-gap: 38px;
        --khlg-content-gap: 24px;
    }
    .container,
    .header-inner,
    #about > .container,
    #difference > .container,
    #services > .container,
    #coverage > .container,
    .mission-vision > .container,
    #project-inquiry > .container,
    #footer > .container,
    #footer > .modern-footer,
    #footer > .container.modern-footer {
        width: calc(100% - (var(--khlg-page-gutter) * 2)) !important;
        max-width: var(--khlg-content-max, 1680px) !important;
        margin-inline: auto !important;
    }
    #about.section-pad,
    #difference.section-pad,
    #services.modern-services,
    #coverage.regional-coverage,
    .mission-vision,
    #project-inquiry.project-cta,
    #footer.footer-modern {
        padding-top: var(--khlg-section-y) !important;
        padding-bottom: var(--khlg-section-y) !important;
    }
    body.menu-open {
        overflow: hidden !important;
    }
    .site-header,
    .site-header.is-scrolled,
    .menu-open .site-header {
        height: 72px !important;
        background: rgba(248, 250, 252, 0.97) !important;
        color: #102a43 !important;
        border-bottom: 1px solid rgba(16, 42, 67, 0.1) !important;
        backdrop-filter: blur(18px) !important;
        -webkit-backdrop-filter: blur(18px) !important;
    }
    .header-inner {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto !important;
        align-items: center !important;
        gap: 18px !important;
    }
    .desktop-nav,
    .nav-inquiry-cta,
    .header-meta {
        display: none !important;
    }
    .brand--logo {
        min-width: 0 !important;
        justify-self: start !important;
    }
    .khlg-nav-logo-switch,
    .site-header.is-scrolled .khlg-nav-logo-switch {
        width: clamp(150px, 18vw, 200px) !important;
        height: 50px !important;
    }
    .khlg-nav-logo-switch .khlg-nav-logo {
        max-height: 48px !important;
    }
    .site-header .khlg-nav-logo--hero {
        opacity: 0 !important;
    }
    .site-header .khlg-nav-logo--scrolled {
        opacity: 1 !important;
    }
    .menu-toggle {
        display: inline-flex !important;
        position: relative !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 10px !important;
        width: auto !important;
        min-width: 94px !important;
        height: 42px !important;
        margin: 0 !important;
        padding: 4px 4px 4px 14px !important;
        border: 1px solid rgba(16, 42, 67, 0.18) !important;
        border-radius: 999px !important;
        background: #fff !important;
        color: #102a43 !important;
        cursor: pointer !important;
        justify-self: end !important;
    }
    .menu-toggle__label {
        display: block !important;
        font-family: "Poppins", Arial, sans-serif !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        line-height: 1 !important;
        letter-spacing: 0.1em !important;
        text-transform: uppercase !important;
        color: inherit !important;
    }
    .menu-toggle__glyph {
        position: relative !important;
        display: block !important;
        width: 32px !important;
        height: 32px !important;
        flex: 0 0 32px !important;
        border-radius: 50% !important;
        background: #102a43 !important;
    }
    .menu-toggle__glyph::before,
    .menu-toggle__glyph::after {
        content: "" !important;
        position: absolute !important;
        left: 8px !important;
        width: 16px !important;
        height: 2px !important;
        border-radius: 999px !important;
        background: #fff !important;
        transform-origin: center !important;
        transition:
            top 0.24s ease,
            transform 0.24s ease,
            background 0.24s ease !important;
    }
    .menu-toggle__glyph::before {
        top: 11px !important;
    }
    .menu-toggle__glyph::after {
        top: 18px !important;
    }
    .menu-open .menu-toggle {
        background: #102a43 !important;
        color: #fff !important;
        border-color: #102a43 !important;
    }
    .menu-open .menu-toggle__glyph {
        background: #fff !important;
    }
    .menu-open .menu-toggle__glyph::before,
    .menu-open .menu-toggle__glyph::after {
        top: 15px !important;
        background: #102a43 !important;
    }
    .menu-open .menu-toggle__glyph::before {
        transform: rotate(45deg) !important;
    }
    .menu-open .menu-toggle__glyph::after {
        transform: rotate(-45deg) !important;
    }
    #khlgMobilePanel {
        display: block !important;
        position: fixed !important;
        z-index: 880 !important;
        top: 72px !important;
        right: 0 !important;
        bottom: 0 !important;
        left: auto !important;
        width: min(460px, 48vw) !important;
        height: calc(100dvh - 72px) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        padding: 0 !important;
        background: rgba(249, 251, 253, 0.995) !important;
        box-shadow: -22px 0 60px rgba(16, 42, 67, 0.12) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateX(100%) !important;
        pointer-events: none !important;
        transition:
            transform 0.38s cubic-bezier(0.22, 0.61, 0.36, 1),
            opacity 0.24s ease,
            visibility 0s linear 0.38s !important;
    }
    .menu-open #khlgMobilePanel {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(0) !important;
        pointer-events: auto !important;
        transition:
            transform 0.38s cubic-bezier(0.22, 0.61, 0.36, 1),
            opacity 0.24s ease,
            visibility 0s !important;
    }
    .khlg-responsive-menu__inner {
        position: relative !important;
        z-index: 1 !important;
        width: 100% !important;
        min-height: 100% !important;
        margin: 0 !important;
        padding: 30px 28px !important;
        display: flex !important;
        flex-direction: column !important;
    }
    .khlg-responsive-menu__intro {
        display: none !important;
    }
    #khlgMobileNav {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        border-top: 1px solid rgba(16, 42, 67, 0.13) !important;
    }
    #khlgMobileNav > a.khlg-responsive-menu__link {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 24px !important;
        align-items: center !important;
        gap: 10px !important;
        width: 100% !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 11px 0 !important;
        border: 0 !important;
        border-bottom: 1px solid rgba(16, 42, 67, 0.11) !important;
        border-radius: 0 !important;
        background: transparent !important;
        color: #102a43 !important;
        font-family: "Poppins", Arial, sans-serif !important;
    }
    #khlgMobileNav .khlg-menu-label {
        min-width: 0 !important;
        font-size: 18px !important;
        font-weight: 500 !important;
        line-height: 1.2 !important;
        letter-spacing: -0.015em !important;
    }
    #khlgMobileNav .khlg-responsive-menu__arrow {
        display: grid !important;
        place-items: center !important;
        justify-self: end !important;
        width: 24px !important;
        height: 24px !important;
        border: 0 !important;
        background: transparent !important;
        color: rgba(16, 42, 67, 0.5) !important;
        font-size: 11px !important;
    }
    .khlg-responsive-menu__footer {
        margin-top: auto !important;
        padding-top: 28px !important;
    }
    .khlg-responsive-menu__footer-label {
        display: none !important;
    }
    .khlg-responsive-menu__cta {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 32px !important;
        align-items: center !important;
        gap: 10px !important;
        width: 100% !important;
        min-height: 50px !important;
        margin: 0 !important;
        padding: 9px 10px 9px 15px !important;
        border-radius: 10px !important;
        background: #102a43 !important;
        color: #fff !important;
        font-family: "Poppins", Arial, sans-serif !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        line-height: 1.15 !important;
    }
    .khlg-responsive-menu__cta-arrow {
        display: grid !important;
        place-items: center !important;
        justify-self: end !important;
        width: 32px !important;
        height: 32px !important;
        border-radius: 50% !important;
        background: #fff !important;
        color: #102a43 !important;
        font-size: 10px !important;
    }
    .hero {
        min-height: max(760px, 100svh) !important;
    }
    .hero-content {
        padding: 122px 0 56px !important;
    }
    .hero-kicker {
        gap: 20px !important;
        margin-bottom: 28px !important;
    }
    .hero-title {
        max-width: 100% !important;
        font-size: clamp(54px, 8.4vw, 88px) !important;
        line-height: 0.84 !important;
    }
    .hero-lower {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        margin-top: 34px !important;
    }
    .hero-description {
        max-width: 760px !important;
        font-size: clamp(18px, 1.8vw, 21px) !important;
    }
    .hero-vision {
        justify-self: start !important;
        max-width: 620px !important;
        font-size: 17px !important;
    }
    .hero-video {
        object-position: 67% 56% !important;
        transform-origin: 67% 56% !important;
    }
    .hero-orbit {
        width: min(72vw, 760px) !important;
        right: -28vw !important;
    }
    .drone-feature--modular {
        padding: 46px 0 62px !important;
    }
    .progress-modular {
        width: calc(100% - (var(--khlg-page-gutter) * 2)) !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-template-rows:
            auto
            minmax(150px, auto)
            minmax(360px, 50vw)
            minmax(220px, 30vw) !important;
        gap: 12px !important;
    }
    .progress-modular__intro {
        grid-column: 1 / -1 !important;
        grid-row: 1 !important;
        min-height: 0 !important;
        padding: 0 0 18px !important;
    }
    .progress-modular__intro h2 {
        margin-top: 12px !important;
        font-size: clamp(44px, 6.4vw, 66px) !important;
        line-height: 0.9 !important;
    }
    .progress-modular__process-card {
        min-height: 150px !important;
        padding: 20px 22px !important;
    }
    .progress-modular__process-card--one {
        grid-column: 1 !important;
        grid-row: 2 !important;
    }
    .progress-modular__process-card--two {
        grid-column: 2 !important;
        grid-row: 2 !important;
    }
    .progress-modular__video-card {
        grid-column: 1 / -1 !important;
        grid-row: 3 !important;
        margin-top: 0 !important;
        height: 100% !important;
    }
    .progress-modular__image-card {
        grid-column: 1 / -1 !important;
        grid-row: 4 !important;
        margin-top: 0 !important;
        height: 100% !important;
    }
    .progress-modular__image-card img {
        object-position: center 38% !important;
    }
    #about .intro-grid {
        grid-template-columns: minmax(170px, 0.34fr) minmax(0, 1fr) !important;
        column-gap: 36px !important;
        row-gap: var(--khlg-content-gap) !important;
    }
    #about .intro-sticky {
        top: 96px !important;
    }
    #about .intro-sticky h2 {
        font-size: clamp(46px, 6.2vw, 72px) !important;
    }
    #about .intro-copy {
        font-size: clamp(21px, 2.2vw, 27px) !important;
        line-height: 1.42 !important;
    }
    #about .about-media {
        margin-top: 36px !important;
        grid-template-columns: minmax(0, 1.6fr) minmax(220px, 0.8fr) !important;
        gap: 12px !important;
    }
    #about .about-media .photo-shell:first-child,
    #about .about-media .photo-shell:last-child {
        height: clamp(300px, 40vw, 460px) !important;
    }
    #difference .principles-head {
        gap: 32px !important;
        margin-bottom: var(--khlg-section-head-gap) !important;
    }
    #difference .principles-head h2 {
        font-size: clamp(48px, 7vw, 84px) !important;
    }
    #difference .principles-track-wrap {
        height: auto !important;
        min-height: 0 !important;
        overflow: visible !important;
    }
    #difference .principles-track {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 16px !important;
        padding-right: 0 !important;
        transform: none !important;
    }
    #difference .principle-card {
        width: auto !important;
        min-height: 0 !important;
    }
    #services .modern-services__heading {
        margin-bottom: var(--khlg-section-head-gap) !important;
    }
    #services .modern-services__heading h2 {
        font-size: clamp(52px, 7vw, 88px) !important;
    }
    #services .service-showcase {
        min-height: 0 !important;
    }
    #services .service-showcase__content {
        padding: 32px !important;
    }
    #services .service-showcase__title {
        font-size: clamp(32px, 4.5vw, 48px) !important;
    }
    #services .service-selector {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
    #services .service-tile {
        min-height: 104px !important;
        padding: 16px !important;
    }
    #services .service-tile__title {
        font-size: clamp(16px, 1.8vw, 20px) !important;
    }
    #coverage .regional-coverage__head {
        gap: 32px !important;
        margin-bottom: var(--khlg-section-head-gap) !important;
    }
    #coverage .regional-coverage__head h2 {
        font-size: clamp(52px, 7vw, 88px) !important;
    }
    #coverage .regional-coverage__grid {
        grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr) !important;
    }
    #coverage .regional-coverage__info {
        padding: 28px !important;
    }
    #coverage .regional-coverage__map-frame,
    #coverage #khlgLeafletMap {
        min-height: 500px !important;
    }
    .mission-vision .mission-grid {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        gap: 0 !important;
    }
    .mission-vision .mission-block {
        min-height: 0 !important;
        gap: 26px !important;
        padding: 46px 0 !important;
    }
    .mission-block__label {
        font-size: clamp(22px, 2.8vw, 30px) !important;
    }
    .mission-block p {
        font-size: clamp(34px, 4.6vw, 50px) !important;
        line-height: 1.1 !important;
    }
    #project-inquiry .project-cta__title {
        font-size: clamp(48px, 7.6vw, 82px) !important;
    }
    #project-inquiry .project-cta__bottom {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        margin-top: 36px !important;
    }
    #project-inquiry .project-cta__copy {
        max-width: 700px !important;
    }
    #project-inquiry .project-cta__actions {
        justify-content: flex-start !important;
    }
    #footer .modern-footer {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    #footer .modern-footer__connect {
        margin-bottom: 42px !important;
    }
    #footer .modern-footer__main {
        grid-template-columns: 1fr !important;
        gap: 42px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    #footer .modern-footer__brand {
        max-width: 720px !important;
    }
    #footer .modern-footer__brand > p {
        max-width: 640px !important;
    }
    #footer .modern-footer__contact-links {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        max-width: 760px !important;
        gap: 12px 30px !important;
    }
    #footer .modern-footer__bottom {
        margin-top: 42px !important;
    }
}
@media (max-width: 900px) {
    :root {
        --khlg-page-gutter: 24px;
        --khlg-section-y: 56px;
        --khlg-section-head-gap: 32px;
        --khlg-content-gap: 22px;
    }
    #about .intro-grid {
        grid-template-columns: 1fr !important;
    }
    #about .intro-sticky {
        position: static !important;
        top: auto !important;
    }
    #difference .principles-head {
        grid-template-columns: 1fr !important;
    }
    #difference .principles-head p {
        justify-self: start !important;
        max-width: 760px !important;
    }
    #services .modern-services__heading {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    #services .modern-services__heading p {
        max-width: 620px !important;
        padding-bottom: 0 !important;
        text-align: left !important;
    }
    #services .service-showcase {
        grid-template-columns: 1fr !important;
        height: auto !important;
    }
    #services .service-showcase__media {
        height: clamp(360px, 56vw, 500px) !important;
        min-height: 0 !important;
    }
    #services .service-showcase__image {
        position: relative !important;
        top: auto !important;
        height: 100% !important;
        min-height: 100% !important;
    }
    #services .service-showcase__body {
        max-height: none !important;
        overflow: visible !important;
        padding-right: 0 !important;
    }
    #services .service-selector {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    #coverage .regional-coverage__head {
        grid-template-columns: 1fr !important;
    }
    #coverage .regional-coverage__intro {
        max-width: 720px !important;
    }
    #coverage .regional-coverage__grid {
        grid-template-columns: 1fr !important;
    }
    #coverage .regional-coverage__map-frame,
    #coverage #khlgLeafletMap {
        min-height: 460px !important;
    }
    .modern-footer__section-head {
        align-items: flex-start !important;
        flex-direction: column !important;
        gap: 18px !important;
    }
    .modern-footer__office-tabs {
        width: 100% !important;
    }
    .modern-footer__office-tab {
        flex: 1 1 0 !important;
        min-width: 0 !important;
    }
}
@media (max-width: 760px) {
    :root {
        --khlg-page-gutter: 20px;
        --khlg-section-y: 48px;
        --khlg-section-head-gap: 28px;
        --khlg-content-gap: 20px;
    }
    .site-header,
    .site-header.is-scrolled,
    .menu-open .site-header {
        height: 66px !important;
    }
    .header-inner {
        width: calc(100% - 32px) !important;
    }
    .khlg-nav-logo-switch,
    .site-header.is-scrolled .khlg-nav-logo-switch {
        width: 128px !important;
        height: 44px !important;
    }
    .khlg-nav-logo-switch .khlg-nav-logo {
        max-height: 42px !important;
    }
    .menu-toggle {
        width: 40px !important;
        min-width: 40px !important;
        height: 40px !important;
        padding: 4px !important;
        justify-content: center !important;
        border-radius: 50% !important;
    }
    .menu-toggle__label {
        display: none !important;
    }
    .menu-toggle__glyph {
        width: 30px !important;
        height: 30px !important;
        flex-basis: 30px !important;
    }
    .menu-toggle__glyph::before,
    .menu-toggle__glyph::after {
        left: 7px !important;
        width: 16px !important;
    }
    .menu-toggle__glyph::before {
        top: 10px !important;
    }
    .menu-toggle__glyph::after {
        top: 17px !important;
    }
    .menu-open .menu-toggle__glyph::before,
    .menu-open .menu-toggle__glyph::after {
        top: 14px !important;
    }
    #khlgMobilePanel {
        top: 66px !important;
        right: 0 !important;
        bottom: auto !important;
        left: 0 !important;
        width: 100% !important;
        height: auto !important;
        max-height: calc(100dvh - 66px) !important;
        transform: translateY(-12px) !important;
        box-shadow: 0 20px 48px rgba(16, 42, 67, 0.11) !important;
    }
    .menu-open #khlgMobilePanel {
        transform: translateY(0) !important;
    }
    .khlg-responsive-menu__inner {
        width: calc(100% - 32px) !important;
        min-height: 0 !important;
        margin-inline: auto !important;
        padding: 10px 0 14px !important;
        display: block !important;
    }
    #khlgMobileNav > a.khlg-responsive-menu__link {
        grid-template-columns: minmax(0, 1fr) 22px !important;
        gap: 8px !important;
        padding: 7px 0 !important;
    }
    #khlgMobileNav .khlg-menu-label {
        font-size: 16px !important;
        line-height: 1.22 !important;
        letter-spacing: -0.01em !important;
    }
    #khlgMobileNav .khlg-responsive-menu__arrow {
        width: 22px !important;
        height: 22px !important;
        font-size: 10px !important;
    }
    .khlg-responsive-menu__footer {
        margin-top: 11px !important;
        padding-top: 0 !important;
    }
    .khlg-responsive-menu__cta {
        min-height: 46px !important;
        padding: 8px 9px 8px 14px !important;
        border-radius: 9px !important;
        font-size: 14px !important;
    }
    .khlg-responsive-menu__cta-arrow {
        width: 30px !important;
        height: 30px !important;
    }
    .hero {
        min-height: max(700px, 100svh) !important;
    }
    .hero-content {
        padding: 104px 0 40px !important;
    }
    .hero-kicker {
        align-items: flex-start !important;
        gap: 12px !important;
        margin-bottom: 22px !important;
        font-size: 11px !important;
    }
    .hero-kicker__right {
        display: grid !important;
        gap: 4px !important;
        text-align: right !important;
    }
    .hero-title {
        font-size: clamp(38px, 11vw, 56px) !important;
        line-height: 0.88 !important;
        letter-spacing: -0.06em !important;
    }
    .hero-lower {
        gap: 18px !important;
        margin-top: 26px !important;
    }
    .hero-description {
        font-size: 16px !important;
        line-height: 1.55 !important;
    }
    .hero-vision {
        max-width: 100% !important;
        padding-left: 16px !important;
        font-size: 15px !important;
        line-height: 1.55 !important;
    }
    .hero-video {
        object-position: 70% 58% !important;
        transform-origin: 70% 58% !important;
    }
    .hero-orbit,
    .hero-cross,
    .hero-line-art {
        opacity: 0.18 !important;
    }
    .drone-feature--modular {
        padding: 36px 0 48px !important;
    }
    .progress-modular {
        width: calc(100% - 32px) !important;
        grid-template-columns: 1fr !important;
        grid-template-rows:
            auto
            auto
            auto
            300px
            190px !important;
        gap: 10px !important;
    }
    .progress-modular__intro {
        grid-column: 1 !important;
        grid-row: 1 !important;
        padding: 0 2px 14px !important;
    }
    .progress-modular__intro h2 {
        margin: 10px 0 0 !important;
        font-size: clamp(34px, 9.5vw, 44px) !important;
        line-height: 0.92 !important;
    }
    .progress-modular__process-card--one,
    .progress-modular__process-card--two,
    .progress-modular__video-card,
    .progress-modular__image-card {
        grid-column: 1 !important;
    }
    .progress-modular__process-card--one {
        grid-row: 2 !important;
    }
    .progress-modular__process-card--two {
        grid-row: 3 !important;
    }
    .progress-modular__video-card {
        grid-row: 4 !important;
    }
    .progress-modular__image-card {
        grid-row: 5 !important;
    }
    .progress-modular__process-card {
        min-height: 112px !important;
        padding: 16px !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 16px !important;
    }
    .progress-modular__process-card h3 {
        font-size: 20px !important;
        line-height: 1.04 !important;
    }
    .progress-modular__process-icon {
        width: 36px !important;
        height: 36px !important;
        flex: 0 0 36px !important;
    }
    .progress-modular__image-card figcaption {
        left: 16px !important;
        right: 16px !important;
        bottom: 16px !important;
    }
    .progress-modular__image-card figcaption strong {
        font-size: 22px !important;
    }
    .drone-feature__video {
        object-position: 58% 50% !important;
        transform-origin: 58% 50% !important;
    }
    #about .intro-sticky h2,
    #difference .principles-head h2,
    #services .modern-services__heading h2,
    #coverage .regional-coverage__head h2,
    #project-inquiry .project-cta__title {
        font-size: clamp(34px, 9.4vw, 46px) !important;
        line-height: 0.94 !important;
    }
    #about .intro-copy {
        font-size: clamp(18px, 4.7vw, 22px) !important;
        line-height: 1.46 !important;
    }
    #about .about-media {
        grid-template-columns: 1fr !important;
        margin-top: 28px !important;
        gap: 10px !important;
    }
    #about .about-media .photo-shell:first-child {
        height: 300px !important;
    }
    #about .about-media .photo-shell:last-child {
        width: 100% !important;
        height: 220px !important;
        margin: 0 !important;
        border: 0 !important;
    }
    #difference .principles-head {
        gap: 20px !important;
    }
    #difference .principles-head p,
    #services .modern-services__heading p,
    #coverage .regional-coverage__intro,
    #project-inquiry .project-cta__copy,
    #footer .modern-footer__brand > p {
        font-size: 16px !important;
        line-height: 1.58 !important;
    }
    #difference .principles-track {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
    #difference .principle-card {
        padding: 24px !important;
    }
    #difference .principle-card h3 {
        font-size: clamp(22px, 6vw, 28px) !important;
        line-height: 1.06 !important;
    }
    #difference .principle-card p {
        font-size: 16px !important;
        line-height: 1.58 !important;
    }
    #services .modern-services__heading {
        gap: 14px !important;
    }
    #services .service-showcase {
        border-left: 1px solid var(--line) !important;
        border-right: 1px solid var(--line) !important;
    }
    #services .service-showcase__media {
        height: 72vw !important;
        min-height: 300px !important;
        max-height: 420px !important;
    }
    #services .service-showcase__content {
        min-height: 0 !important;
        padding: 22px !important;
    }
    #services .service-showcase__topline {
        margin-bottom: 24px !important;
    }
    #services .service-showcase__title {
        font-size: clamp(24px, 6.8vw, 30px) !important;
        line-height: 1.04 !important;
    }
    #services .service-showcase__body {
        max-height: none !important;
        overflow: visible !important;
        padding-right: 0 !important;
        font-size: 16px !important;
        line-height: 1.58 !important;
    }
    #services .service-showcase__body ul {
        grid-template-columns: 1fr !important;
    }
    #services .service-selector {
        grid-template-columns: 1fr !important;
        margin-top: 12px !important;
    }
    #services .service-tile {
        min-height: 72px !important;
        grid-template-columns: 28px minmax(0, 1fr) 26px !important;
        align-items: center !important;
        padding: 14px 16px !important;
    }
    #services .service-tile__title {
        font-size: 17px !important;
    }
    #coverage .regional-coverage__head {
        gap: 18px !important;
    }
    #coverage .regional-coverage__info {
        padding: 22px !important;
    }
    #coverage .regional-coverage__location h3 {
        font-size: clamp(24px, 6.6vw, 30px) !important;
    }
    #coverage .regional-coverage__location p {
        font-size: 16px !important;
        line-height: 1.55 !important;
    }
    #coverage .regional-coverage__chips {
        gap: 8px !important;
    }
    #coverage .regional-coverage__chip {
        font-size: 12px !important;
    }
    #coverage .regional-coverage__map-frame,
    #coverage #khlgLeafletMap {
        min-height: 380px !important;
        height: 380px !important;
    }
    .mission-vision .mission-block {
        gap: 22px !important;
        padding: 36px 0 !important;
    }
    .mission-block__label {
        font-size: clamp(18px, 4.8vw, 22px) !important;
    }
    .mission-block p {
        font-size: clamp(26px, 7vw, 32px) !important;
        line-height: 1.13 !important;
        letter-spacing: -0.04em !important;
    }
    .mission-orbit {
        width: 130vw !important;
        right: -76vw !important;
        opacity: 0.36 !important;
    }
    #project-inquiry.project-cta {
        padding-top: 44px !important;
        padding-bottom: 40px !important;
    }
    #project-inquiry .project-cta__eyebrow {
        margin-bottom: 16px !important;
        font-size: 12px !important;
    }
    #project-inquiry .project-cta__bottom {
        display: block !important;
        margin-top: 24px !important;
    }
    #project-inquiry .project-cta__copy {
        margin: 0 0 22px !important;
    }
    #project-inquiry .project-cta__actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        width: 100% !important;
    }
    #project-inquiry .project-cta__actions .khlg-cta {
        width: 100% !important;
        min-height: 52px !important;
        height: 52px !important;
        padding: 0 14px 0 18px !important;
        font-size: 14px !important;
    }
    #footer.footer-modern {
        padding-top: 32px !important;
        padding-bottom: 40px !important;
    }
    #footer .modern-footer__connect {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 44px !important;
        align-items: center !important;
        gap: 14px !important;
        min-height: 0 !important;
        margin: 0 0 28px !important;
        padding: 18px !important;
    }
    #footer .modern-footer__connect-copy strong {
        max-width: 280px !important;
        font-size: clamp(27px, 7.5vw, 34px) !important;
        line-height: 1.02 !important;
    }
    #footer .modern-footer__connect-action {
        width: 42px !important;
        height: 42px !important;
        justify-self: end !important;
        align-self: center !important;
        font-size: 14px !important;
    }
    #footer .modern-footer__logo-link,
    #footer .modern-footer__logo {
        display: none !important;
    }
    #footer .modern-footer__main {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    #footer .modern-footer__brand {
        max-width: none !important;
    }
    #footer .modern-footer__contact-links {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        margin-top: 20px !important;
    }
    #footer .modern-footer__contact-links > a,
    #footer .modern-footer__contact-static {
        min-height: 0 !important;
        padding: 10px 0 !important;
    }
    #footer .modern-footer__section-head {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        margin-bottom: 20px !important;
    }
    #footer .modern-footer__section-head h3 {
        font-size: 24px !important;
        line-height: 1.1 !important;
    }
    #footer .modern-footer__office-tabs {
        width: 100% !important;
    }
    #footer .modern-footer__office-tab {
        flex: 1 1 0 !important;
        min-width: 0 !important;
        min-height: 42px !important;
        padding-inline: 10px !important;
        font-size: 12px !important;
    }
    #footer .modern-footer__office-stage {
        min-height: 0 !important;
    }
    #footer .modern-footer__office-panel {
        grid-template-columns: 44px minmax(0, 1fr) !important;
        gap: 14px !important;
        padding-top: 20px !important;
    }
    #footer .modern-footer__office-index {
        font-size: 40px !important;
    }
    #footer .modern-footer__office-copy {
        gap: 10px !important;
    }
    #footer .modern-footer__office-copy > strong {
        font-size: 17px !important;
        line-height: 1.45 !important;
    }
    #footer .modern-footer__office-copy > a {
        font-size: 14px !important;
    }
    #footer .modern-footer__office-map,
    #footer .modern-footer__office-map iframe {
        height: 240px !important;
        min-height: 240px !important;
    }
    #footer .modern-footer__bottom {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-top: 30px !important;
        min-height: 0 !important;
        padding: 20px 0 0 !important;
        font-size: 12px !important;
    }
    #footer .modern-footer__legal {
        gap: 8px 14px !important;
    }
    #footer .modern-footer__backtop {
        justify-self: start !important;
    }
    .footer-modern::before {
        left: 74% !important;
        top: 16% !important;
    }
}
@media (max-width: 480px) {
    :root {
        --khlg-page-gutter: 16px;
        --khlg-section-y: 42px;
        --khlg-section-head-gap: 24px;
        --khlg-content-gap: 18px;
    }
    .header-inner,
    .khlg-responsive-menu__inner {
        width: calc(100% - 24px) !important;
    }
    .khlg-nav-logo-switch,
    .site-header.is-scrolled .khlg-nav-logo-switch {
        width: 122px !important;
    }
    #khlgMobileNav .khlg-menu-label {
        font-size: 15px !important;
    }
    #khlgMobileNav > a.khlg-responsive-menu__link {
        padding: 6px 0 !important;
    }
    .khlg-responsive-menu__cta {
        min-height: 44px !important;
        font-size: 13px !important;
    }
    .hero {
        min-height: max(640px, 100svh) !important;
    }
    .hero-content {
        padding-top: 94px !important;
        padding-bottom: 34px !important;
    }
    .hero-title {
        font-size: clamp(34px, 10vw, 46px) !important;
    }
    .hero-description {
        font-size: 15px !important;
    }
    .hero-vision {
        font-size: 14px !important;
    }
    .hero-video {
        object-position: 72% 58% !important;
        transform-origin: 72% 58% !important;
    }
    .progress-modular {
        width: calc(100% - 24px) !important;
        grid-template-rows:
            auto
            auto
            auto
            270px
            175px !important;
    }
    .progress-modular__intro h2 {
        font-size: 34px !important;
    }
    .progress-modular__process-card h3 {
        font-size: 18px !important;
    }
    #about .intro-sticky h2,
    #difference .principles-head h2,
    #services .modern-services__heading h2,
    #coverage .regional-coverage__head h2,
    #project-inquiry .project-cta__title {
        font-size: clamp(30px, 8.8vw, 40px) !important;
    }
    #about .intro-copy {
        font-size: 18px !important;
    }
    #about .about-media .photo-shell:first-child {
        height: 260px !important;
    }
    #about .about-media .photo-shell:last-child {
        height: 190px !important;
    }
    #difference .principle-card {
        padding: 20px !important;
    }
    #services .service-showcase__media {
        min-height: 260px !important;
        height: 68vw !important;
    }
    #services .service-showcase__content {
        padding: 18px !important;
    }
    #services .service-showcase__title {
        font-size: 24px !important;
    }
    #services .service-tile {
        min-height: 64px !important;
        padding: 12px 14px !important;
    }
    #services .service-tile__title {
        font-size: 16px !important;
    }
    #coverage .regional-coverage__info {
        padding: 18px !important;
    }
    #coverage .regional-coverage__map-frame,
    #coverage #khlgLeafletMap {
        min-height: 330px !important;
        height: 330px !important;
    }
    .mission-vision .mission-block {
        padding: 32px 0 !important;
    }
    .mission-block p {
        font-size: clamp(24px, 6.5vw, 29px) !important;
    }
    #project-inquiry.project-cta {
        padding-top: 38px !important;
        padding-bottom: 32px !important;
    }
    #project-inquiry .project-cta__copy {
        font-size: 15px !important;
    }
    #footer.footer-modern {
        padding-top: 24px !important;
        padding-bottom: 32px !important;
    }
    #footer .modern-footer__connect {
        grid-template-columns: minmax(0, 1fr) 40px !important;
        padding: 16px !important;
        margin-bottom: 24px !important;
    }
    #footer .modern-footer__connect-copy strong {
        font-size: clamp(25px, 7vw, 30px) !important;
    }
    #footer .modern-footer__connect-action {
        width: 38px !important;
        height: 38px !important;
    }
    #footer .modern-footer__office-panel {
        grid-template-columns: 1fr !important;
    }
    #footer .modern-footer__office-index {
        display: none !important;
    }
    #footer .modern-footer__office-map,
    #footer .modern-footer__office-map iframe {
        height: 220px !important;
        min-height: 220px !important;
    }
}
@media (hover: none), (pointer: coarse) {
    .principle-card,
    .service-tile,
    .progress-modular__process-card,
    .modern-footer__connect-action,
    .nav-inquiry-cta,
    .khlg-cta {
        transform: none;
    }
}
.hero {
    contain: paint;
}
.hero-video-wrap {
    contain: layout paint;
    isolation: isolate;
    transform: translateZ(0);
}
.hero-video {
    filter: none !important;
    opacity: 1 !important;
    backface-visibility: hidden !important;
}
.hero-video-overlay {
    will-change: auto !important;
}
.hero-video-vignette {
    box-shadow: none !important;
    background:
        linear-gradient(
            180deg,
            rgba(8, 15, 27, 0.03) 0%,
            rgba(8, 15, 27, 0) 52%,
            rgba(8, 15, 27, 0.16) 100%
        ),
        radial-gradient(
            ellipse at center,
            transparent 56%,
            rgba(8, 15, 27, 0.08) 100%
        ) !important;
}
.hero-video-wrap::after {
    display: none !important;
    animation: none !important;
    mix-blend-mode: normal !important;
}
.hero-lower::before {
    left: -34px !important;
    right: -34px !important;
    top: -28px !important;
    bottom: -26px !important;
    filter: none !important;
    background: linear-gradient(
        90deg,
        rgba(8, 15, 27, 0.38) 0%,
        rgba(8, 15, 27, 0.22) 42%,
        rgba(8, 15, 27, 0.08) 72%,
        rgba(8, 15, 27, 0) 100%
    ) !important;
}
.hero-grid,
.hero-orbit,
.hero-cross,
.hero-line-art {
    will-change: auto !important;
}
.hero-video {
    will-change: transform !important;
}
@media (max-width: 1180px) {
    .site-header,
    .site-header.is-scrolled,
    .menu-open .site-header {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    .hero-video-vignette {
        background: linear-gradient(
            180deg,
            rgba(8, 15, 27, 0.02) 0%,
            rgba(8, 15, 27, 0) 56%,
            rgba(8, 15, 27, 0.14) 100%
        ) !important;
    }
    .hero-title {
        text-shadow: 0 2px 14px rgba(0, 0, 0, 0.24) !important;
    }
    .hero-description,
    .hero-vision {
        text-shadow: 0 1px 10px rgba(0, 0, 0, 0.24) !important;
    }
}
@media (max-width: 760px) {
    .hero-video-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(8, 15, 27, 0.64) 0%,
                rgba(8, 15, 27, 0.42) 52%,
                rgba(8, 15, 27, 0.16) 100%
            ),
            linear-gradient(
                180deg,
                rgba(8, 15, 27, 0.08) 0%,
                rgba(8, 15, 27, 0.02) 50%,
                rgba(8, 15, 27, 0.2) 100%
            ) !important;
    }
    .hero-lower::before {
        display: none !important;
    }
    .hero-video-vignette {
        display: none !important;
    }
    .hero-title,
    .hero-description,
    .hero-vision {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.26) !important;
    }
}
@media (hover: none), (pointer: coarse) {
    .hero-video-overlay,
    .hero-video-vignette,
    .hero-content {
        will-change: auto !important;
    }
}
@media (prefers-reduced-motion: reduce) {
    .hero-video-wrap::after {
        display: none !important;
    }
}
.hero-lower::before {
    display: none !important;
    content: none !important;
    background: none !important;
    filter: none !important;
}
.hero-description,
.hero-vision {
    position: relative;
    z-index: 1;
}
#services .service-showcase__title {
    text-wrap: balance;
}
#services .service-showcase__body h4 {
    margin: 20px 0 8px;
    color: var(--ink);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
#services .service-showcase__body h4 + ul {
    margin-top: 8px;
}
#services .service-showcase__body ul + h4 {
    margin-top: 22px;
}
#services .service-tile__title {
    max-width: none;
    text-wrap: balance;
}
@media (min-width: 1181px) {
    #services .service-showcase__title {
        font-size: clamp(36px, 4vw, 64px);
    }
}
@media (max-width: 1180px) {
    #services .service-showcase__body h4 {
        font-size: 13px;
    }
}
@media (max-width: 760px) {
    #services .service-showcase__body h4 {
        margin-top: 18px;
        font-size: 12px;
    }
    #services .service-showcase__body ul + h4 {
        margin-top: 20px;
    }
}
#services .service-selector {
    align-items: stretch;
}
#services .service-tile {
    width: 100%;
    height: 100%;
    min-width: 0;
    align-items: center;
}
#services .service-tile__icon {
    align-self: center;
}
#services .service-tile__title {
    align-self: center;
    min-width: 0;
}
#services .service-tile__arrow {
    align-self: center;
}
@media (min-width: 1281px) {
    #services .service-selector {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        grid-auto-rows: minmax(118px, 1fr);
    }
    #services .service-tile {
        min-height: 118px !important;
        padding: 20px 18px !important;
        grid-template-columns: 46px minmax(0, 1fr) 28px !important;
        gap: 12px !important;
    }
    #services .service-tile__title {
        max-width: none !important;
        font-size: clamp(17px, 1.25vw, 21px) !important;
        line-height: 1.08 !important;
    }
}
@media (max-width: 1280px) and (min-width: 761px) {
    #services .service-selector {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-auto-rows: minmax(104px, 1fr);
    }
    #services .service-tile {
        min-height: 104px !important;
        padding: 18px !important;
    }
}
@media (max-width: 760px) {
    #services .service-selector {
        grid-template-columns: 1fr !important;
        grid-auto-rows: auto;
    }
    #services .service-tile {
        min-height: 72px !important;
        height: auto !important;
    }
}
#services .service-selector {
    align-items: stretch !important;
}
#services .service-tile {
    align-self: stretch !important;
    height: 100% !important;
    min-height: 0 !important;
}
@media (min-width: 1281px) {
    #services .service-selector {
        grid-auto-rows: 118px !important;
    }
    #services .service-tile {
        height: 118px !important;
        min-height: 118px !important;
        max-height: 118px !important;
    }
}
@media (max-width: 1280px) and (min-width: 761px) {
    #services .service-selector {
        grid-auto-rows: 104px !important;
    }
    #services .service-tile {
        height: 104px !important;
        min-height: 104px !important;
        max-height: 104px !important;
    }
}
@media (max-width: 760px) {
    #services .service-selector {
        grid-auto-rows: 74px !important;
    }
    #services .service-tile {
        height: 74px !important;
        min-height: 74px !important;
        max-height: 74px !important;
    }
}
#services .service-selector {
    display: grid !important;
    align-items: stretch !important;
    justify-items: stretch !important;
}
#services .service-tile {
    margin: 0 !important;
    align-self: stretch !important;
    justify-self: stretch !important;

    transform: none !important;
    translate: none !important;
    opacity: 1 !important;
}
@media (min-width: 1281px) {
    #services .service-selector {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        grid-template-rows: repeat(2, 118px) !important;
        grid-auto-rows: 118px !important;
    }
    #services .service-tile {
        width: 100% !important;
        height: 118px !important;
        min-height: 118px !important;
        max-height: 118px !important;
        padding: 20px 18px !important;
        grid-template-columns: 46px minmax(0, 1fr) 28px !important;
        gap: 12px !important;
    }
}
@media (max-width: 1280px) and (min-width: 761px) {
    #services .service-selector {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-template-rows: none !important;
        grid-auto-rows: 104px !important;
    }
    #services .service-tile {
        width: 100% !important;
        height: 104px !important;
        min-height: 104px !important;
        max-height: 104px !important;
    }
}
@media (max-width: 760px) {
    #services .service-selector {
        grid-template-columns: 1fr !important;
        grid-template-rows: none !important;
        grid-auto-rows: 74px !important;
    }
    #services .service-tile {
        width: 100% !important;
        height: 74px !important;
        min-height: 74px !important;
        max-height: 74px !important;
    }
}
@media (max-width: 480px) {
    #services .service-selector {
        grid-auto-rows: 70px !important;
    }
    #services .service-tile {
        height: 70px !important;
        min-height: 70px !important;
        max-height: 70px !important;
    }
}
#approach > .container,
#why-khlg > .container,
#commitment > .container {
    width: min(
        var(--khlg-content-max, 1680px),
        calc(100% - (var(--khlg-page-gutter, clamp(24px, 2.8vw, 46px)) * 2))
    );
    max-width: none;
    margin-inline: auto;
}
#approach.section-pad,
#why-khlg.section-pad {
    padding-top: var(--khlg-section-y, clamp(72px, 7vw, 108px));
    padding-bottom: var(--khlg-section-y, clamp(72px, 7vw, 108px));
}
.khlg-story-head {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: clamp(36px, 6vw, 96px);
    align-items: end;
    margin-bottom: clamp(40px, 5vw, 72px);
}
.khlg-story-head h2 {
    margin-top: 18px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(54px, 7.2vw, 112px);
    font-weight: 500;
    line-height: 0.84;
    letter-spacing: -0.07em;
    text-transform: uppercase;
}
.khlg-story-head > p {
    max-width: 640px;
    justify-self: end;
    color: var(--ink-soft);
    font-size: clamp(18px, 1.35vw, 22px);
    line-height: 1.62;
}
.khlg-story-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #044b85;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.khlg-story-eyebrow__icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border: 1px solid rgba(19, 159, 219, 0.24);
    border-radius: 50%;
    background: rgba(142, 220, 245, 0.16);
    color: #044b85;
    font-size: 13px;
}
.khlg-approach {
    background:
        linear-gradient(rgba(16, 42, 67, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 42, 67, 0.035) 1px, transparent 1px),
        #f7f8fa;
    background-size:
        100% 72px,
        72px 100%,
        auto;
    overflow: hidden;
}
.khlg-approach__steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.82);
}
.khlg-approach__step {
    min-width: 0;
    min-height: 390px;
    padding: clamp(26px, 2.4vw, 38px);
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.76);
    transition:
        background 0.3s ease,
        transform 0.35s var(--ease);
}
.khlg-approach__step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: auto;
}
.khlg-approach__number {
    color: rgba(16, 42, 67, 0.48);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
}
.khlg-approach__icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border: 1px solid rgba(27, 85, 137, 0.18);
    border-radius: 50%;
    background: rgba(142, 220, 245, 0.16);
    color: #044b85;
    font-size: 16px;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.35s var(--ease);
}
.khlg-approach__step h3 {
    margin-top: clamp(52px, 5vw, 84px);
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(25px, 2vw, 32px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.04em;
}
.khlg-approach__step p {
    margin-top: 20px;
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.65;
}
@media (hover: hover) and (pointer: fine) {
    .khlg-approach__step:hover {
        background: #fff;
        transform: translateY(-4px);
    }
    .khlg-approach__step:hover .khlg-approach__icon {
        background: #044b85;
        color: #fff;
        transform: rotate(8deg);
    }
}
.khlg-why {
    background: #fff;
    overflow: hidden;
}
.khlg-why__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.khlg-why__card {
    min-width: 0;
    min-height: 330px;
    padding: clamp(28px, 2.7vw, 42px);
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
    transition:
        background 0.3s ease,
        color 0.3s ease;
}
.khlg-why__card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.khlg-why__index {
    color: rgba(16, 42, 67, 0.42);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
}
.khlg-why__icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border: 1px solid rgba(27, 85, 137, 0.17);
    border-radius: 50%;
    background: rgba(142, 220, 245, 0.16);
    color: #044b85;
    font-size: 16px;
    transition:
        background 0.3s ease,
        color 0.3s ease;
}
.khlg-why__card h3 {
    margin-top: auto;
    padding-top: clamp(52px, 5vw, 76px);
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(27px, 2.35vw, 38px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.05em;
}
.khlg-why__card p {
    margin-top: 20px;
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.65;
}
@media (hover: hover) and (pointer: fine) {
    .khlg-why__card:hover {
        background: #f7f9fb;
    }
    .khlg-why__card:hover .khlg-why__icon {
        background: #102a43;
        color: #fff;
    }
}
.khlg-commitment {
    position: relative;
    overflow: hidden;
    padding: clamp(82px, 8vw, 130px) 0;
    background: #0e1c2d;
    color: #fff;
}
.khlg-commitment__grid {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image:
        linear-gradient(
            to right,
            rgba(142, 220, 245, 0.18) 1px,
            transparent 1px
        ),
        linear-gradient(
            to bottom,
            rgba(142, 220, 245, 0.14) 1px,
            transparent 1px
        );
    background-size: 86px 86px;
    mask-image: linear-gradient(to right, transparent 0%, #000 34%, #000 100%);
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 34%,
        #000 100%
    );
    pointer-events: none;
}
.khlg-commitment__orbit {
    position: absolute;
    right: -18vw;
    top: 50%;
    width: min(56vw, 920px);
    aspect-ratio: 1;
    border: 1px solid rgba(142, 220, 245, 0.12);
    border-radius: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.khlg-commitment__orbit::before,
.khlg-commitment__orbit::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(142, 220, 245, 0.08);
    border-radius: inherit;
}
.khlg-commitment__orbit::before {
    inset: 14%;
}
.khlg-commitment__orbit::after {
    inset: 31%;
}
.khlg-commitment__inner {
    position: relative;
    z-index: 2;
}
.khlg-commitment__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.khlg-story-eyebrow--light {
    color: #8edcf5;
}
.khlg-story-eyebrow--light .khlg-story-eyebrow__icon {
    border-color: rgba(142, 220, 245, 0.24);
    background: rgba(142, 220, 245, 0.08);
    color: #8edcf5;
}
.khlg-commitment__index {
    color: rgba(255, 255, 255, 0.42);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.khlg-commitment__statement {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
    column-gap: clamp(50px, 8vw, 130px);
    row-gap: 36px;
    padding-top: clamp(48px, 6vw, 82px);
}
.khlg-commitment__lead {
    grid-column: 1;
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(44px, 5.8vw, 86px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.055em;
}
.khlg-commitment__examples {
    grid-column: 2;
    align-self: end;
    color: rgba(255, 255, 255, 0.62);
    font-size: clamp(18px, 1.35vw, 22px);
    line-height: 1.68;
}
.khlg-commitment__purpose {
    grid-column: 1 / -1;
    max-width: 1200px;
    padding-top: clamp(36px, 4vw, 56px);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(34px, 4vw, 62px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.05em;
}
.brand-highlight--light {
    color: #8edcf5 !important;
}
.khlg-commitment__closing {
    grid-column: 1 / -1;
    max-width: 1060px;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(19px, 1.45vw, 24px);
    line-height: 1.62;
}
@media (max-width: 1180px) {
    #approach > .container,
    #why-khlg > .container,
    #commitment > .container {
        width: calc(100% - (var(--khlg-page-gutter) * 2));
    }
    .khlg-story-head {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .khlg-story-head > p {
        justify-self: start;
        max-width: 760px;
    }
    .khlg-story-head h2 {
        font-size: clamp(48px, 7vw, 82px);
    }
    .khlg-approach__steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .khlg-approach__step {
        min-height: 320px;
    }
    .khlg-why__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .khlg-commitment__statement {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .khlg-commitment__lead,
    .khlg-commitment__examples,
    .khlg-commitment__purpose,
    .khlg-commitment__closing {
        grid-column: 1;
    }
    .khlg-commitment__examples {
        max-width: 760px;
    }
}
@media (max-width: 900px) {
    .khlg-approach__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .khlg-why__card {
        min-height: 300px;
    }
}
@media (max-width: 760px) {
    .khlg-story-head {
        margin-bottom: 28px;
    }
    .khlg-story-head h2 {
        margin-top: 14px;
        font-size: clamp(34px, 9.4vw, 46px);
        line-height: 0.94;
    }
    .khlg-story-head > p {
        font-size: 16px;
        line-height: 1.58;
    }
    .khlg-story-eyebrow {
        font-size: 11px;
    }
    .khlg-story-eyebrow__icon {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }
    .khlg-approach__steps,
    .khlg-why__grid {
        grid-template-columns: 1fr;
    }
    .khlg-approach__step {
        min-height: 0;
        padding: 22px;
    }
    .khlg-approach__step-top {
        margin-bottom: 30px;
    }
    .khlg-approach__step h3 {
        margin-top: 0;
        font-size: 25px;
    }
    .khlg-approach__step p {
        margin-top: 14px;
        font-size: 16px;
        line-height: 1.58;
    }
    .khlg-why__card {
        min-height: 0;
        padding: 24px;
    }
    .khlg-why__card h3 {
        margin-top: 36px;
        padding-top: 0;
        font-size: 27px;
    }
    .khlg-why__card p {
        margin-top: 14px;
        font-size: 16px;
        line-height: 1.58;
    }
    .khlg-commitment {
        padding: 52px 0;
    }
    .khlg-commitment__head {
        padding-bottom: 22px;
    }
    .khlg-commitment__statement {
        padding-top: 34px;
        gap: 26px;
    }
    .khlg-commitment__lead {
        font-size: clamp(34px, 9vw, 46px);
        line-height: 1;
    }
    .khlg-commitment__examples,
    .khlg-commitment__closing {
        font-size: 16px;
        line-height: 1.58;
    }
    .khlg-commitment__purpose {
        padding-top: 28px;
        font-size: clamp(28px, 7.5vw, 36px);
    }
    .khlg-commitment__orbit {
        width: 140vw;
        right: -88vw;
        opacity: 0.5;
    }
    .khlg-commitment__grid {
        background-size: 58px 58px;
    }
}
@media (max-width: 480px) {
    .khlg-approach__step,
    .khlg-why__card {
        padding: 20px;
    }
    .khlg-approach__icon,
    .khlg-why__icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }
    .khlg-commitment__index {
        display: none;
    }
}
#approach .khlg-story-eyebrow,
#why-khlg .khlg-story-eyebrow,
#commitment .khlg-story-eyebrow,
#approach .khlg-approach__number,
#why-khlg .khlg-why__index,
#commitment .khlg-commitment__index {
    display: none !important;
}
.khlg-story-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(20px, 3vw, 44px);
    width: 100%;
}
.khlg-story-title-row h2 {
    margin-top: 0 !important;
    min-width: 0;
}
.khlg-story-title-icon {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    border: 1px solid rgba(27, 85, 137, 0.2);
    border-radius: 50%;
    background: rgba(142, 220, 245, 0.18);
    color: #044b85;
    font-size: 28px;
    line-height: 1;
}
.khlg-story-title-row--light h2 {
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(48px, 6.8vw, 104px);
    font-weight: 500;
    line-height: 0.86;
    letter-spacing: -0.07em;
    text-transform: uppercase;
    color: #fff;
}
.khlg-story-title-icon--light {
    border-color: rgba(142, 220, 245, 0.28);
    background: rgba(142, 220, 245, 0.09);
    color: #8edcf5;
}
.khlg-approach__step {
    min-height: 300px !important;
    padding: clamp(22px, 2vw, 30px) !important;
}
.khlg-approach__step-top {
    justify-content: flex-end !important;
    margin-bottom: 0 !important;
}
.khlg-approach__icon {
    width: 62px !important;
    height: 62px !important;
    flex: 0 0 62px !important;
    font-size: 23px !important;
}
.khlg-approach__step h3 {
    margin-top: clamp(34px, 3vw, 48px) !important;
    font-size: clamp(24px, 1.8vw, 29px) !important;
}
.khlg-approach__step p {
    margin-top: 14px !important;
    font-size: 15px !important;
    line-height: 1.58 !important;
}
.khlg-why__card {
    min-height: 250px !important;
    padding: clamp(22px, 2.1vw, 32px) !important;
}
.khlg-why__card-head {
    justify-content: flex-end !important;
}
.khlg-why__icon {
    width: 64px !important;
    height: 64px !important;
    flex: 0 0 64px !important;
    font-size: 23px !important;
}
.khlg-why__card h3 {
    margin-top: auto !important;
    padding-top: clamp(28px, 3vw, 42px) !important;
    font-size: clamp(25px, 2vw, 32px) !important;
}
.khlg-why__card p {
    margin-top: 14px !important;
    font-size: 15px !important;
    line-height: 1.58 !important;
}
.khlg-commitment__head {
    display: block !important;
    padding-bottom: 30px !important;
}
#commitment .khlg-story-title-row {
    width: 100%;
}
#commitment .khlg-story-title-icon {
    width: 76px;
    height: 76px;
    flex-basis: 76px;
    font-size: 29px;
}
.nav-inquiry-cta__icon,
.progress-modular__process-icon,
.principle-card__icon,
.service-showcase__media-icon,
.service-tile__icon,
.modern-footer__contact-icon,
.modern-footer__connect-action,
.khlg-cta__icon,
.khlg-approach__icon,
.khlg-why__icon,
.khlg-story-title-icon {
    display: grid !important;
    place-items: center !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}
.nav-inquiry-cta__icon > i,
.progress-modular__process-icon > i,
.principle-card__icon > i,
.service-showcase__media-icon > i,
.service-tile__icon > i,
.modern-footer__contact-icon > i,
.modern-footer__connect-action > i,
.khlg-cta__icon > i,
.khlg-approach__icon > i,
.khlg-why__icon > i,
.khlg-story-title-icon > i,
.modern-services__icon-label > i,
.service-showcase__eyebrow-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    line-height: 1 !important;
    text-align: center !important;
    vertical-align: middle !important;
}
.nav-inquiry-cta__icon > i::before,
.progress-modular__process-icon > i::before,
.principle-card__icon > i::before,
.service-showcase__media-icon > i::before,
.service-tile__icon > i::before,
.modern-footer__contact-icon > i::before,
.modern-footer__connect-action > i::before,
.khlg-cta__icon > i::before,
.khlg-approach__icon > i::before,
.khlg-why__icon > i::before,
.khlg-story-title-icon > i::before,
.modern-services__icon-label > i::before,
.service-showcase__eyebrow-icon::before {
    display: block !important;
    line-height: 1 !important;
}
@media (max-width: 1180px) {
    .khlg-story-title-icon {
        width: 64px;
        height: 64px;
        flex-basis: 64px;
        font-size: 24px;
    }
    .khlg-approach__step {
        min-height: 260px !important;
    }
    .khlg-why__card {
        min-height: 230px !important;
    }
}
@media (max-width: 760px) {
    .khlg-story-title-row {
        align-items: center;
        gap: 16px;
    }
    .khlg-story-title-icon,
    #commitment .khlg-story-title-icon {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
        font-size: 20px;
    }
    .khlg-story-title-row--light h2 {
        font-size: clamp(34px, 9.4vw, 46px);
        line-height: 0.94;
    }
    .khlg-approach__step {
        min-height: 0 !important;
        padding: 20px !important;
    }
    .khlg-approach__step-top {
        margin-bottom: 22px !important;
    }
    .khlg-approach__icon {
        width: 56px !important;
        height: 56px !important;
        flex-basis: 56px !important;
        font-size: 21px !important;
    }
    .khlg-approach__step h3 {
        margin-top: 0 !important;
    }
    .khlg-why__card {
        min-height: 0 !important;
        padding: 20px !important;
    }
    .khlg-why__icon {
        width: 58px !important;
        height: 58px !important;
        flex-basis: 58px !important;
        font-size: 21px !important;
    }
    .khlg-why__card h3 {
        padding-top: 26px !important;
    }
    .khlg-commitment__head {
        padding-bottom: 22px !important;
    }
}
@media (max-width: 480px) {
    .khlg-story-title-icon,
    #commitment .khlg-story-title-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        font-size: 18px;
    }
    .khlg-approach__icon,
    .khlg-why__icon {
        width: 52px !important;
        height: 52px !important;
        flex-basis: 52px !important;
        font-size: 19px !important;
    }
}
.khlg-approach__step {
    min-height: 0 !important;
    padding: clamp(22px, 2vw, 28px) !important;
    justify-content: flex-start !important;
}
.khlg-approach__step-top {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    width: 100% !important;
    margin: 0 !important;
}
.khlg-approach__icon {
    width: 58px !important;
    height: 58px !important;
    flex: 0 0 58px !important;
    font-size: 22px !important;
}
.khlg-approach__step-top h3 {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-family: "Poppins", Arial, sans-serif !important;
    font-size: clamp(22px, 1.65vw, 27px) !important;
    font-weight: 500 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.035em !important;
    text-wrap: balance;
}
.khlg-approach__step > p {
    width: 100% !important;
    margin: 20px 0 0 !important;
    padding: 0 !important;
    color: var(--ink-soft) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}
.khlg-why__card {
    min-height: 0 !important;
    padding: clamp(22px, 2vw, 30px) !important;
    justify-content: flex-start !important;
}
.khlg-why__card-head {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 18px !important;
    width: 100% !important;
    margin: 0 !important;
}
.khlg-why__icon {
    width: 60px !important;
    height: 60px !important;
    flex: 0 0 60px !important;
    font-size: 22px !important;
}
.khlg-why__card-head h3 {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-family: "Poppins", Arial, sans-serif !important;
    font-size: clamp(23px, 1.9vw, 31px) !important;
    font-weight: 500 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.04em !important;
    text-wrap: balance;
}
.khlg-why__card > p {
    width: 100% !important;
    margin: 22px 0 0 !important;
    padding: 0 !important;
    color: var(--ink-soft) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}
@media (min-width: 1181px) {
    .khlg-approach__step,
    .khlg-why__card {
        min-height: 230px !important;
    }
}
@media (max-width: 1180px) {
    .khlg-approach__step,
    .khlg-why__card {
        min-height: 0 !important;
    }
    .khlg-approach__icon {
        width: 54px !important;
        height: 54px !important;
        flex-basis: 54px !important;
        font-size: 20px !important;
    }
    .khlg-why__icon {
        width: 56px !important;
        height: 56px !important;
        flex-basis: 56px !important;
        font-size: 21px !important;
    }
}
@media (max-width: 760px) {
    .khlg-approach__step,
    .khlg-why__card {
        padding: 20px !important;
    }
    .khlg-approach__step-top,
    .khlg-why__card-head {
        gap: 14px !important;
    }
    .khlg-approach__icon,
    .khlg-why__icon {
        width: 50px !important;
        height: 50px !important;
        flex-basis: 50px !important;
        font-size: 19px !important;
    }
    .khlg-approach__step-top h3,
    .khlg-why__card-head h3 {
        font-size: 22px !important;
        line-height: 1.08 !important;
    }
    .khlg-approach__step > p,
    .khlg-why__card > p {
        margin-top: 16px !important;
        font-size: 16px !important;
        line-height: 1.58 !important;
    }
}
@media (max-width: 480px) {
    .khlg-approach__icon,
    .khlg-why__icon {
        width: 46px !important;
        height: 46px !important;
        flex-basis: 46px !important;
        font-size: 18px !important;
    }
    .khlg-approach__step-top h3,
    .khlg-why__card-head h3 {
        font-size: 20px !important;
    }
}
#approach .khlg-story-title-icon,
#why-khlg .khlg-story-title-icon,
#commitment .khlg-story-title-icon {
    display: none !important;
}
#approach .khlg-story-title-row,
#why-khlg .khlg-story-title-row,
#commitment .khlg-story-title-row {
    display: block !important;
    width: 100% !important;
}
#approach .khlg-story-title-row h2,
#why-khlg .khlg-story-title-row h2,
#commitment .khlg-story-title-row h2 {
    width: 100% !important;
    margin: 0 !important;
}
#coverage .regional-coverage__eyebrow {
    display: none !important;
}
#services .modern-services__icon-label {
    gap: 0 !important;
}
#services .modern-services__icon-label > i {
    display: none !important;
}
@keyframes khlg-section-fade-up {
    from {
        opacity: 0;
        transform: translate3d(0, 34px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
@keyframes khlg-section-fade-left {
    from {
        opacity: 0;
        transform: translate3d(-34px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
@keyframes khlg-section-fade-right {
    from {
        opacity: 0;
        transform: translate3d(34px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
@keyframes khlg-section-scale-reveal {
    from {
        opacity: 0;
        transform: scale(0.975);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes khlg-section-clip-reveal {
    from {
        opacity: 0;
        clip-path: inset(0 0 18% 0);
    }
    to {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}
@supports (animation-timeline: view()) {
    .drone-feature--modular .progress-modular__intro,
    .drone-feature--modular .progress-modular__process-card,
    .drone-feature--modular .progress-modular__video-card,
    .drone-feature--modular .progress-modular__image-card,
    #about .intro-sticky,
    #about .intro-copy,
    #about .about-media,
    #difference .principles-head,
    #difference .principles-track-wrap,
    #services .modern-services__heading,
    #services .service-showcase,
    #services .service-selector,
    #coverage .regional-coverage__head,
    #coverage .regional-coverage__grid,
    .mission-vision .mission-block,
    #approach .khlg-story-head,
    #approach .khlg-approach__steps,
    #why-khlg .khlg-story-head,
    #why-khlg .khlg-why__grid,
    #commitment .khlg-commitment__head,
    #commitment .khlg-commitment__statement,
    #project-inquiry .project-cta__content,
    #footer .modern-footer__connect,
    #footer .modern-footer__main,
    #footer .modern-footer__bottom {
        animation-duration: 1ms;
        animation-fill-mode: both;
        animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
        animation-timeline: view();
    }

    .drone-feature--modular .progress-modular__intro {
        animation-name: khlg-section-fade-left;
        animation-range: entry 4% cover 24%;
    }

    .drone-feature--modular .progress-modular__process-card--one {
        animation-name: khlg-section-fade-up;
        animation-range: entry 7% cover 27%;
    }

    .drone-feature--modular .progress-modular__process-card--two {
        animation-name: khlg-section-fade-up;
        animation-range: entry 11% cover 31%;
    }

    .drone-feature--modular .progress-modular__video-card {
        animation-name: khlg-section-clip-reveal;
        animation-range: entry 8% cover 31%;
    }

    .drone-feature--modular .progress-modular__image-card {
        animation-name: khlg-section-scale-reveal;
        animation-range: entry 13% cover 34%;
    }

    #about .intro-sticky {
        animation-name: khlg-section-fade-left;
        animation-range: entry 7% cover 28%;
    }

    #about .intro-copy {
        animation-name: khlg-section-fade-right;
        animation-range: entry 9% cover 31%;
    }

    #about .about-media {
        animation-name: khlg-section-clip-reveal;
        animation-range: entry 7% cover 30%;
    }

    #difference .principles-head {
        animation-name: khlg-section-fade-up;
        animation-range: entry 6% cover 27%;
    }

    #difference .principles-track-wrap {
        animation-name: khlg-section-scale-reveal;
        animation-range: entry 9% cover 32%;
    }

    #services .modern-services__heading {
        animation-name: khlg-section-fade-up;
        animation-range: entry 5% cover 24%;
    }

    #services .service-showcase {
        animation-name: khlg-section-clip-reveal;
        animation-range: entry 7% cover 30%;
    }

    #services .service-selector {
        animation-name: khlg-section-fade-up;
        animation-range: entry 10% cover 32%;
    }

    #coverage .regional-coverage__head {
        animation-name: khlg-section-fade-up;
        animation-range: entry 5% cover 25%;
    }

    #coverage .regional-coverage__grid {
        animation-name: khlg-section-clip-reveal;
        animation-range: entry 8% cover 31%;
    }

    .mission-vision .mission-block:first-child {
        animation-name: khlg-section-fade-left;
        animation-range: entry 7% cover 29%;
    }

    .mission-vision .mission-block:last-child {
        animation-name: khlg-section-fade-right;
        animation-range: entry 11% cover 33%;
    }

    #approach .khlg-story-head {
        animation-name: khlg-section-fade-up;
        animation-range: entry 5% cover 24%;
    }

    #approach .khlg-approach__steps {
        animation-name: khlg-section-scale-reveal;
        animation-range: entry 8% cover 30%;
    }

    #why-khlg .khlg-story-head {
        animation-name: khlg-section-fade-up;
        animation-range: entry 5% cover 24%;
    }

    #why-khlg .khlg-why__grid {
        animation-name: khlg-section-clip-reveal;
        animation-range: entry 8% cover 30%;
    }

    #commitment .khlg-commitment__head {
        animation-name: khlg-section-fade-left;
        animation-range: entry 5% cover 24%;
    }

    #commitment .khlg-commitment__statement {
        animation-name: khlg-section-fade-up;
        animation-range: entry 8% cover 31%;
    }

    #project-inquiry .project-cta__content {
        animation-name: khlg-section-fade-up;
        animation-range: entry 7% cover 30%;
    }

    #footer .modern-footer__connect {
        animation-name: khlg-section-scale-reveal;
        animation-range: entry 4% cover 22%;
    }

    #footer .modern-footer__main {
        animation-name: khlg-section-fade-up;
        animation-range: entry 7% cover 29%;
    }

    #footer .modern-footer__bottom {
        animation-name: khlg-section-fade-up;
        animation-range: entry 10% cover 32%;
    }
}
@supports (animation-timeline: view()) {
    #approach .khlg-approach__step,
    #why-khlg .khlg-why__card {
        animation-name: khlg-card-entry;
        animation-duration: 1ms;
        animation-fill-mode: both;
        animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
        animation-timeline: view();
        animation-range: entry 4% cover 22%;
    }

    #approach .khlg-approach__step:nth-child(even),
    #why-khlg .khlg-why__card:nth-child(even) {
        animation-range: entry 8% cover 26%;
    }
}
@keyframes khlg-card-entry {
    from {
        opacity: 0;
        transform: translate3d(0, 18px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
@keyframes khlg-hero-copy-entry {
    from {
        opacity: 0;
        transform: translate3d(0, 16px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
.hero .hero-lower {
    animation: khlg-hero-copy-entry 0.8s 0.35s cubic-bezier(0.22, 0.61, 0.36, 1)
        both;
}
@media (prefers-reduced-motion: reduce) {
    .hero .hero-lower,
    .drone-feature--modular .progress-modular__intro,
    .drone-feature--modular .progress-modular__process-card,
    .drone-feature--modular .progress-modular__video-card,
    .drone-feature--modular .progress-modular__image-card,
    #about .intro-sticky,
    #about .intro-copy,
    #about .about-media,
    #difference .principles-head,
    #difference .principles-track-wrap,
    #services .modern-services__heading,
    #services .service-showcase,
    #services .service-selector,
    #coverage .regional-coverage__head,
    #coverage .regional-coverage__grid,
    .mission-vision .mission-block,
    #approach .khlg-story-head,
    #approach .khlg-approach__steps,
    #approach .khlg-approach__step,
    #why-khlg .khlg-story-head,
    #why-khlg .khlg-why__grid,
    #why-khlg .khlg-why__card,
    #commitment .khlg-commitment__head,
    #commitment .khlg-commitment__statement,
    #project-inquiry .project-cta__content,
    #footer .modern-footer__connect,
    #footer .modern-footer__main,
    #footer .modern-footer__bottom {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        clip-path: none !important;
    }
}
/* ==========================================================================
   SERVICES — MOBILE COMPACT ICONS + BETTER BREATHING ROOM
   ========================================================================== */

@media (max-width: 760px) {
    #services .service-selector {
        grid-template-columns: 1fr !important;
        grid-template-rows: none !important;
        grid-auto-rows: auto !important;
    }

    #services .service-tile {
        width: 100% !important;
        height: auto !important;
        min-height: 68px !important;
        max-height: none !important;

        padding: 11px 12px !important;

        grid-template-columns: 36px minmax(0, 1fr) 24px !important;

        gap: 10px !important;
        align-items: center !important;
    }

    #services .service-tile__icon {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        min-height: 36px !important;
        flex-basis: 36px !important;

        font-size: 15px !important;
    }

    #services .service-tile__title {
        max-width: none !important;
        min-width: 0 !important;

        font-size: 17px !important;
        line-height: 1.18 !important;
        letter-spacing: -0.025em !important;

        text-wrap: pretty !important;
    }

    #services .service-tile__arrow {
        width: 24px !important;
        height: 24px !important;
        min-width: 24px !important;
        min-height: 24px !important;

        font-size: 12px !important;
    }

    #services .service-tile.is-active .service-tile__icon {
        transform: none !important;
    }
}

@media (max-width: 480px) {
    #services .service-tile {
        min-height: 64px !important;
        padding: 10px !important;

        grid-template-columns: 32px minmax(0, 1fr) 22px !important;

        gap: 9px !important;
    }

    #services .service-tile__icon {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        min-height: 32px !important;
        flex-basis: 32px !important;

        font-size: 14px !important;
    }

    #services .service-tile__title {
        font-size: 16px !important;
        line-height: 1.2 !important;
    }

    #services .service-tile__arrow {
        width: 22px !important;
        height: 22px !important;
        min-width: 22px !important;
        min-height: 22px !important;

        font-size: 11px !important;
    }
}
/* ==========================================================================
   HERO — MOBILE REFINEMENT
   --------------------------------------------------------------------------
   Keeps desktop/tablet unchanged.
   Improves mobile title scale, spacing, copy density, CTA sizing,
   and video framing without changing the hero design.
   ========================================================================== */

@media (max-width: 760px) {
    .hero {
        min-height: 100svh !important;
        height: auto !important;
    }

    .hero-content {
        width: 100% !important;
        padding: 92px 0 90px !important;
    }

    .hero-content > .container {
        width: calc(100% - 32px) !important;
    }

    .hero-title {
        max-width: 100% !important;
        margin-left: 0 !important;
        font-size: clamp(36px, 9.8vw, 48px) !important;
        line-height: 0.94 !important;
        letter-spacing: -0.052em !important;
    }

    .hero-title .line {
        padding-bottom: 0.08em !important;
    }

    .hero-lower {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-top: 20px !important;
    }

    .hero-description {
        max-width: 100% !important;
        font-size: 15px !important;
        line-height: 1.5 !important;
        letter-spacing: -0.012em !important;
    }

    .hero-vision {
        justify-self: stretch !important;
        max-width: 100% !important;
        padding-left: 12px !important;
        border-left-width: 1px !important;
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    .hero-actions {
        width: 100% !important;
        margin-top: 18px !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .hero .khlg-cta {
        min-height: 46px !important;
        font-size: 12px !important;
        letter-spacing: 0.075em !important;
    }

    .hero .khlg-cta--dark {
        width: 100% !important;
        min-width: 0 !important;
        padding: 0 10px 0 14px !important;
        gap: 12px !important;
    }

    .hero .khlg-cta--text {
        min-width: 0 !important;
        padding-inline: 10px !important;
        white-space: nowrap !important;
    }

    .hero .khlg-cta__icon {
        width: 26px !important;
        height: 26px !important;
        flex-basis: 26px !important;
        font-size: 13px !important;
    }

    .hero .khlg-cta__line {
        left: 10px !important;
        right: 10px !important;
        bottom: 8px !important;
    }

    /*
     * Give the text a cleaner dark landing zone while keeping
     * the upper half of the mobile video brighter.
     */
    .hero-video-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(8, 15, 27, 0.06) 0%,
                rgba(8, 15, 27, 0.02) 36%,
                rgba(8, 15, 27, 0.14) 58%,
                rgba(8, 15, 27, 0.56) 82%,
                rgba(8, 15, 27, 0.76) 100%
            ),
            linear-gradient(
                90deg,
                rgba(8, 15, 27, 0.34) 0%,
                rgba(8, 15, 27, 0.16) 48%,
                rgba(8, 15, 27, 0.04) 100%
            ) !important;
    }

    .hero-video {
        object-position: 65% 48% !important;
        transform-origin: 65% 48% !important;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 86px 0 72px !important;
    }

    .hero-content > .container {
        width: calc(100% - 28px) !important;
    }

    .hero-title {
        font-size: clamp(34px, 10.2vw, 42px) !important;
        line-height: 0.96 !important;
    }

    .hero-lower {
        margin-top: 16px !important;
        gap: 10px !important;
    }

    .hero-description {
        font-size: 14px !important;
        line-height: 1.48 !important;
    }

    .hero-vision {
        padding-left: 10px !important;
        font-size: 13px !important;
        line-height: 1.46 !important;
    }

    .hero-actions {
        margin-top: 15px !important;
        gap: 6px !important;
    }

    .hero .khlg-cta {
        min-height: 43px !important;
        font-size: 11px !important;
    }

    .hero .khlg-cta--dark {
        padding: 0 8px 0 12px !important;
    }

    .hero .khlg-cta--text {
        padding-inline: 8px !important;
    }

    .hero .khlg-cta__icon {
        width: 24px !important;
        height: 24px !important;
        flex-basis: 24px !important;
        font-size: 12px !important;
    }

    .hero-video {
        object-position: 66% 48% !important;
        transform-origin: 66% 48% !important;
    }
}

/* Very narrow phones: keep CTA text from becoming cramped. */
@media (max-width: 380px) {
    .hero-actions {
        grid-template-columns: 1fr !important;
        justify-items: stretch !important;
    }

    .hero .khlg-cta--text {
        justify-content: flex-start !important;
        width: max-content !important;
        padding-left: 0 !important;
    }

    .hero .khlg-cta__line {
        left: 0 !important;
    }
}
/* ==========================================================================
   PROJECT CTA — START A PROJECT HOVER CONTRAST FIX
   --------------------------------------------------------------------------
   A later global .khlg-cta--light rule forces navy text with !important.
   Keep the normal white-button state, but ensure the transparent hover
   state has white text/icon against the dark Project CTA background.
   ========================================================================== */

#project-inquiry .project-cta__actions .khlg-cta--light:hover {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.88) !important;
    color: #ffffff !important;
}

#project-inquiry .project-cta__actions .khlg-cta--light:hover > span {
    color: #ffffff !important;
}

#project-inquiry .project-cta__actions .khlg-cta--light:hover .khlg-cta__icon {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.78) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

/* Keyboard users get the same readable state. */
#project-inquiry .project-cta__actions .khlg-cta--light:focus-visible {
    background: transparent !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
    outline: 2px solid rgba(142, 220, 245, 0.9);
    outline-offset: 3px;
}

#project-inquiry .project-cta__actions .khlg-cta--light:focus-visible > span,
#project-inquiry
    .project-cta__actions
    .khlg-cta--light:focus-visible
    .khlg-cta__icon {
    color: #ffffff !important;
}
/* ==========================================================================
   TURNING PLANS INTO PROGRESS — SECTION SPACING NORMALIZATION
   --------------------------------------------------------------------------
   Uses the same page gutters and vertical section rhythm as the rest of
   the homepage without changing the internal card/media layout.
   ========================================================================== */

.drone-feature--modular {
    padding-top: var(--khlg-section-y) !important;
    padding-bottom: var(--khlg-section-y) !important;
}

.drone-feature--modular .progress-modular {
    width: min(
        var(--khlg-content-max),
        calc(100% - (var(--khlg-page-gutter) * 2))
    ) !important;
    max-width: none !important;
    margin-inline: auto !important;
}

/* Keep the same normalized gutters at every responsive breakpoint. */
@media (max-width: 1180px) {
    .drone-feature--modular {
        padding-top: var(--khlg-section-y) !important;
        padding-bottom: var(--khlg-section-y) !important;
    }

    .drone-feature--modular .progress-modular {
        width: calc(100% - (var(--khlg-page-gutter) * 2)) !important;
        margin-inline: auto !important;
    }
}

@media (max-width: 760px) {
    .drone-feature--modular {
        padding-top: var(--khlg-section-y) !important;
        padding-bottom: var(--khlg-section-y) !important;
    }

    .drone-feature--modular .progress-modular {
        width: calc(100% - (var(--khlg-page-gutter) * 2)) !important;
    }
}
/* ==========================================================================
   OUR APPROACH + WHY KHLG — DESCRIPTION TYPOGRAPHY
   --------------------------------------------------------------------------
   Match the body-copy scale used across the rest of the homepage.
   ========================================================================== */

#approach .khlg-approach__step > p,
#why-khlg .khlg-why__card > p {
    font-size: 17px !important;
    line-height: 1.65 !important;
    letter-spacing: -0.01em !important;
}

/* Keep tablet/mobile readable without making the cards feel oversized. */
@media (max-width: 900px) {
    #approach .khlg-approach__step > p,
    #why-khlg .khlg-why__card > p {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
}

@media (max-width: 480px) {
    #approach .khlg-approach__step > p,
    #why-khlg .khlg-why__card > p {
        font-size: 15px !important;
        line-height: 1.58 !important;
    }
}
/* ==========================================================================
   OUR APPROACH + WHY KHLG — UNIFORM BODY COPY
   --------------------------------------------------------------------------
   Match the same description sizing used in Regional Coverage:
   desktop: clamp(18px, 1.05vw, 20px) / 1.72
   mobile: 16px / 1.55
   ========================================================================== */

#approach .khlg-approach__step > p,
#why-khlg .khlg-why__card > p {
    font-size: clamp(18px, 1.05vw, 20px) !important;
    line-height: 1.72 !important;
    letter-spacing: 0 !important;
    color: var(--ink-soft) !important;
}

@media (max-width: 760px) {
    #approach .khlg-approach__step > p,
    #why-khlg .khlg-why__card > p {
        font-size: 16px !important;
        line-height: 1.55 !important;
    }
}
/* ==========================================================================
   ACROSS THE REGION — REMOVE PARALLAX / SCROLL TRANSLATION
   --------------------------------------------------------------------------
   Keep the section visually fixed while scrolling.
   Interactive Leaflet map controls and the subtle network pulse remain active.
   ========================================================================== */

#coverage.regional-coverage,
#coverage .regional-coverage__decor,
#coverage .regional-coverage__inner,
#coverage .regional-coverage__head,
#coverage .regional-coverage__grid,
#coverage .regional-coverage__info,
#coverage .regional-coverage__map-wrap,
#coverage .regional-coverage__map-frame {
    transform: none !important;
    translate: none !important;
    will-change: auto !important;
}

/* Prevent any background-style parallax behavior. */
#coverage.regional-coverage,
#coverage .regional-coverage__decor {
    background-attachment: scroll !important;
}

/*
 * Do not target Leaflet panes/tiles here.
 * Leaflet relies on transforms internally for panning and zooming.
 */
/* ==========================================================================
   WHERE EXPERTISE MEETS EXECUTION
   TABLET + MOBILE: STATIC SCROLL LAYOUT
   --------------------------------------------------------------------------
   Desktop (>1180px) keeps the horizontal/pinned GSAP experience.
   Tablet/mobile (<=1180px) use a normal document-flow grid with no parallax,
   pinning, horizontal translation, or scroll-driven transforms.
   ========================================================================== */

@media (max-width: 1180px) {
    /* Section itself must remain in normal document flow. */
    #difference {
        position: relative !important;
        inset: auto !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        transform: none !important;
        translate: none !important;
        will-change: auto !important;
        overflow: visible !important;
    }

    /*
     * GSAP creates a .pin-spacer when the desktop horizontal sequence is
     * initialized. Neutralize it on tablet/mobile in case the JS ran before
     * the responsive breakpoint was evaluated.
     */
    .pin-spacer:has(> #difference),
    .pin-spacer:has(#difference) {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: visible !important;
    }

    #difference > .container {
        position: relative !important;
        height: auto !important;
        min-height: 0 !important;
        transform: none !important;
        translate: none !important;
        overflow: visible !important;
    }

    /* Remove desktop parallax/reveal transforms for this section only. */
    #difference .principles-head,
    #difference .principles-track-wrap,
    #difference .principles-track,
    #difference .principle-card,
    #difference .principle-card__ring {
        transform: none !important;
        translate: none !important;
        will-change: auto !important;
    }

    #difference .principles-head,
    #difference .principles-track-wrap {
        opacity: 1 !important;
        animation: none !important;
    }

    #difference .principles-track-wrap {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        overflow: visible !important;
    }

    /* Tablet: normal 2-column grid. */
    #difference .principles-track {
        position: relative !important;
        inset: auto !important;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        gap: 16px !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: visible !important;
    }

    #difference .principle-card {
        position: relative !important;
        width: 100% !important;
        max-width: none !important;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
    }

    /*
     * Keep the section background fixed/static on smaller devices instead
     * of using the desktop scroll-driven background transition.
     */
    #difference,
    #difference.is-section-active {
        background: #eef4f8 !important;
        transition: none !important;
    }
}

@media (max-width: 760px) {
    /* Mobile: simple one-column document flow. */
    #difference .principles-track {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    #difference .principle-card {
        width: 100% !important;
    }
}
/* ==========================================================================
   REVISION 01 — HERO INITIAL ACTION BUTTON TEXT COLOR
   --------------------------------------------------------------------------
   Change only the "Explore Our Services" label to the KHLG logo cyan.
   Button background, border, arrow icon, and hover treatment stay unchanged.
   ========================================================================== */

.hero .hero-actions .khlg-cta--dark:not(:hover) > span:first-child {
    color: #62c6f2 !important;
}
/* ==========================================================================
   REVISION 02 — CONSTRUCTION STAGES
   PRE / DURING / POST — ONE SYSTEM ACROSS DESKTOP + MOBILE
   ========================================================================== */

.drone-feature--modular .construction-stages {
    position: relative;
    z-index: 2;
}

.construction-stages__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(460px, 0.72fr);
    align-items: end;
    gap: clamp(36px, 6vw, 96px);
    margin-bottom: clamp(22px, 2.4vw, 34px);
}

.construction-stages__intro {
    min-width: 0;
}

.construction-stages__kicker {
    display: block;
    margin-bottom: 16px;
    color: var(--khlg-deep-blue, #044b85);
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(14px, 0.78vw, 16px);
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.construction-stages__intro h2 {
    max-width: 720px;
    color: var(--ink);
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(54px, 5vw, 82px);
    font-weight: 500;
    letter-spacing: -0.07em;
    line-height: 0.88;
}

.construction-stages__tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
}

.construction-stage-tab {
    position: relative;
    min-height: 62px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid rgba(16, 42, 67, 0.08);
    border-radius: 10px;
    background: #eaf3f8;
    color: var(--khlg-deep-blue, #044b85);
    font-family: "Poppins", Arial, sans-serif;
    text-align: left;
    cursor: pointer;
    transition:
        background 0.28s ease,
        color 0.28s ease,
        border-color 0.28s ease,
        transform 0.28s var(--ease),
        box-shadow 0.28s ease;
}

.construction-stage-tab__code {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.construction-stage-tab__name {
    display: none;
}

.construction-stage-tab.is-active {
    background: var(--khlg-navy, #102a43);
    border-color: var(--khlg-navy, #102a43);
    color: #62c6f2;
    box-shadow: 0 12px 30px rgba(16, 42, 67, 0.12);
}

.construction-stage-tab:focus-visible {
    outline: 2px solid #62c6f2;
    outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
    .construction-stage-tab:not(.is-active):hover {
        background: #dcecf5;
        border-color: rgba(27, 85, 137, 0.18);
        transform: translateY(-2px);
    }
}

.construction-stages__media {
    position: relative;
    height: clamp(470px, 42vw, 650px);
    overflow: hidden;
    border-radius: clamp(14px, 1.25vw, 20px);
    background: var(--khlg-navy, #102a43);
    box-shadow: 0 30px 72px rgba(16, 42, 67, 0.1);
}

.construction-stage-panel {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.012);
    transition:
        opacity 0.36s ease,
        visibility 0.36s ease,
        transform 0.7s var(--ease);
}

.construction-stage-panel.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
}

.construction-stage-panel__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.8) contrast(1.01);
    transform: scale(1.025);
    transition: transform 0.8s var(--ease);
}

.construction-stage-panel.is-active .construction-stage-panel__image {
    transform: scale(1);
}

.construction-stage-panel__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(6, 20, 34, 0.02) 30%,
            rgba(6, 20, 34, 0.22) 62%,
            rgba(6, 20, 34, 0.86) 100%
        ),
        linear-gradient(
            90deg,
            rgba(6, 20, 34, 0.42) 0%,
            rgba(6, 20, 34, 0.08) 58%,
            transparent 100%
        );
    pointer-events: none;
}

.construction-stage-panel__caption {
    position: absolute;
    z-index: 2;
    left: clamp(24px, 3.2vw, 52px);
    right: clamp(24px, 3.2vw, 52px);
    bottom: clamp(24px, 3.2vw, 46px);
    max-width: 760px;
    color: #fff;
}

.construction-stage-panel__eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #8edcf5;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.construction-stage-panel__caption h3 {
    margin: 0;
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(38px, 4.5vw, 68px);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.construction-stage-panel__caption p {
    max-width: 650px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.88);
    font-family: "Roboto", Arial, sans-serif;
    font-size: clamp(17px, 1.2vw, 20px);
    line-height: 1.55;
}

/* Tablet — same component, tap/click interaction, no hover dependency. */
@media (max-width: 1180px) {
    .drone-feature--modular {
        padding-top: var(--khlg-section-y, 64px) !important;
        padding-bottom: var(--khlg-section-y, 64px) !important;
    }

    .drone-feature--modular .construction-stages {
        width: calc(100% - (var(--khlg-page-gutter, 28px) * 2)) !important;
        max-width: var(--khlg-content-max, 1680px) !important;
        margin-inline: auto !important;
    }

    .construction-stages__header {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 20px;
    }

    .construction-stages__intro h2 {
        max-width: 760px;
        font-size: clamp(44px, 6.4vw, 66px);
        line-height: 0.9;
    }

    .construction-stages__media {
        height: clamp(410px, 54vw, 570px);
    }
}

/* Mobile — stage controls become clear tap-based cards. */
@media (max-width: 760px) {
    .construction-stages__header {
        gap: 22px;
    }

    .construction-stages__kicker {
        margin-bottom: 10px;
        font-size: 12px;
    }

    .construction-stages__intro h2 {
        font-size: clamp(38px, 10vw, 52px);
        line-height: 0.92;
    }

    .construction-stages__tabs {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .construction-stage-tab {
        min-height: 58px;
        padding: 10px 14px;
        display: grid;
        grid-template-columns: 62px minmax(0, 1fr);
        align-items: center;
        gap: 10px;
        border-radius: 8px;
    }

    .construction-stage-tab__code {
        font-size: 12px;
    }

    .construction-stage-tab__name {
        display: block;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: -0.02em;
    }

    .construction-stages__media {
        height: clamp(340px, 92vw, 460px);
        border-radius: 12px;
    }

    .construction-stage-panel__caption {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .construction-stage-panel__eyebrow {
        margin-bottom: 8px;
        font-size: 11px;
    }

    .construction-stage-panel__caption h3 {
        font-size: clamp(30px, 8.5vw, 42px);
    }

    .construction-stage-panel__caption p {
        margin-top: 9px;
        font-size: 15px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .construction-stages__media {
        height: 360px;
    }

    .construction-stage-tab {
        min-height: 56px;
        grid-template-columns: 56px minmax(0, 1fr);
    }

    .construction-stage-tab__name {
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .construction-stage-tab,
    .construction-stage-panel,
    .construction-stage-panel__image {
        transition: none !important;
    }
}
/* ==========================================================================
   T01 — SECTION TRANSITION: WHITE GRID -> DEEP NAVY
   Ultra-soft extended blend + dissolving engineering grid
   ========================================================================== */

/*
 * Shared grid geometry with Our Commitment.
 * Desktop/tablet: 86px
 * Mobile: 58px
 */
.khlg-grid-to-navy-transition,
#commitment.khlg-commitment {
    --khlg-transition-grid-size: 86px;
}

/* --------------------------------------------------------------------------
   EXTENDED BACKGROUND BLEND

   516px = exactly 6 × 86px grid rows.

   The previous version changed too much in the lower third.
   This version spreads the tonal shift over six full grid rows and
   uses closely spaced blue-gray values to avoid a visible "band."
   -------------------------------------------------------------------------- */

.khlg-grid-to-navy-transition {
    position: relative;
    z-index: 1;
    height: 516px;
    overflow: hidden;
    margin: -1px 0 -1px;
    isolation: isolate;
    pointer-events: none;

    background: linear-gradient(
        to bottom,

        #ffffff 0%,
        #fdfefe 7%,
        #fafbfc 14%,
        #f6f8f9 21%,
        #f0f3f5 28%,
        #e8edf0 35%,
        #dde4e8 42%,
        #cfd8de 49%,
        #bec9d1 56%,
        #aab7c1 63%,
        #94a3af 69%,
        #7d8e9c 75%,
        #687b8b 80%,
        #54697a 85%,
        #41586b 89%,
        #30485c 93%,
        #23394d 96%,
        #192d40 98%,
        #0e1c2d 100%
    );
}

/* --------------------------------------------------------------------------
   SHARED GRID GEOMETRY
   -------------------------------------------------------------------------- */

.khlg-grid-to-navy-transition__grid,
#commitment .khlg-commitment__grid {
    background-size: var(--khlg-transition-grid-size)
        var(--khlg-transition-grid-size) !important;

    background-position: 0 calc(var(--khlg-transition-grid-size) / 2) !important;
}

.khlg-grid-to-navy-transition__grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   LIGHT GRID

   Keep the grid extremely subtle on white.
   It now fades over most of the transition instead of staying clearly
   visible through the center.
   -------------------------------------------------------------------------- */

.khlg-grid-to-navy-transition__grid--light {
    z-index: 1;
    opacity: 0.3;

    background-image:
        linear-gradient(to right, rgba(16, 42, 67, 0.11) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(16, 42, 67, 0.085) 1px, transparent 1px);

    -webkit-mask-image: linear-gradient(
        to bottom,

        transparent 0%,
        rgba(0, 0, 0, 0.1) 4%,
        rgba(0, 0, 0, 0.32) 8%,
        rgba(0, 0, 0, 0.58) 13%,
        rgba(0, 0, 0, 0.78) 19%,
        rgba(0, 0, 0, 0.86) 27%,
        rgba(0, 0, 0, 0.78) 36%,
        rgba(0, 0, 0, 0.66) 46%,
        rgba(0, 0, 0, 0.52) 56%,
        rgba(0, 0, 0, 0.37) 66%,
        rgba(0, 0, 0, 0.23) 76%,
        rgba(0, 0, 0, 0.12) 85%,
        rgba(0, 0, 0, 0.04) 93%,
        transparent 100%
    );

    mask-image: linear-gradient(
        to bottom,

        transparent 0%,
        rgba(0, 0, 0, 0.1) 4%,
        rgba(0, 0, 0, 0.32) 8%,
        rgba(0, 0, 0, 0.58) 13%,
        rgba(0, 0, 0, 0.78) 19%,
        rgba(0, 0, 0, 0.86) 27%,
        rgba(0, 0, 0, 0.78) 36%,
        rgba(0, 0, 0, 0.66) 46%,
        rgba(0, 0, 0, 0.52) 56%,
        rgba(0, 0, 0, 0.37) 66%,
        rgba(0, 0, 0, 0.23) 76%,
        rgba(0, 0, 0, 0.12) 85%,
        rgba(0, 0, 0, 0.04) 93%,
        transparent 100%
    );
}

/* --------------------------------------------------------------------------
   CYAN GRID

   The cyan grid does not become noticeable until the background is
   already dark enough to support it. This prevents a visible "grid
   swap" in the center.
   -------------------------------------------------------------------------- */

.khlg-grid-to-navy-transition__grid--dark {
    z-index: 2;
    opacity: 0.16;

    background-image:
        linear-gradient(
            to right,
            rgba(142, 220, 245, 0.18) 1px,
            transparent 1px
        ),
        linear-gradient(
            to bottom,
            rgba(142, 220, 245, 0.14) 1px,
            transparent 1px
        );

    -webkit-mask-image: linear-gradient(
        to bottom,

        transparent 0%,
        transparent 30%,
        rgba(0, 0, 0, 0.01) 38%,
        rgba(0, 0, 0, 0.03) 46%,
        rgba(0, 0, 0, 0.07) 54%,
        rgba(0, 0, 0, 0.14) 62%,
        rgba(0, 0, 0, 0.25) 70%,
        rgba(0, 0, 0, 0.4) 78%,
        rgba(0, 0, 0, 0.58) 85%,
        rgba(0, 0, 0, 0.76) 91%,
        rgba(0, 0, 0, 0.91) 96%,
        #000 100%
    );

    mask-image: linear-gradient(
        to bottom,

        transparent 0%,
        transparent 30%,
        rgba(0, 0, 0, 0.01) 38%,
        rgba(0, 0, 0, 0.03) 46%,
        rgba(0, 0, 0, 0.07) 54%,
        rgba(0, 0, 0, 0.14) 62%,
        rgba(0, 0, 0, 0.25) 70%,
        rgba(0, 0, 0, 0.4) 78%,
        rgba(0, 0, 0, 0.58) 85%,
        rgba(0, 0, 0, 0.76) 91%,
        rgba(0, 0, 0, 0.91) 96%,
        #000 100%
    );
}

/* --------------------------------------------------------------------------
   OUR COMMITMENT

   Final grid state exactly continues the transition.
   -------------------------------------------------------------------------- */

#commitment.khlg-commitment {
    border-top: 0 !important;
    background: #0e1c2d;
}

#commitment .khlg-commitment__grid {
    opacity: 0.16;

    background-image:
        linear-gradient(
            to right,
            rgba(142, 220, 245, 0.18) 1px,
            transparent 1px
        ),
        linear-gradient(
            to bottom,
            rgba(142, 220, 245, 0.14) 1px,
            transparent 1px
        );

    -webkit-mask-image: none !important;
    mask-image: none !important;
}

/* --------------------------------------------------------------------------
   TABLET

   344px = exactly 4 × 86px rows.
   -------------------------------------------------------------------------- */

@media (max-width: 1180px) {
    .khlg-grid-to-navy-transition {
        height: 344px;
    }
}

/* --------------------------------------------------------------------------
   MOBILE

   232px = exactly 4 × 58px rows.
   -------------------------------------------------------------------------- */

@media (max-width: 760px) {
    .khlg-grid-to-navy-transition,
    #commitment.khlg-commitment {
        --khlg-transition-grid-size: 58px;
    }

    .khlg-grid-to-navy-transition {
        height: 232px;

        background: linear-gradient(
            to bottom,

            #ffffff 0%,
            #fbfcfd 10%,
            #f4f6f8 20%,
            #e9edf0 30%,
            #d8dfe4 40%,
            #c1cbd2 50%,
            #a4b0ba 60%,
            #82919e 70%,
            #617485 79%,
            #455b6e 87%,
            #2c4357 93%,
            #1b3043 97%,
            #0e1c2d 100%
        );
    }

    .khlg-grid-to-navy-transition__grid--light {
        opacity: 0.25;
    }

    .khlg-grid-to-navy-transition__grid--dark {
        opacity: 0.14;
    }
}

@media (max-width: 480px) {
    .khlg-grid-to-navy-transition {
        height: 232px;
    }
}
/* ==========================================================================
   C01 — CONTACT FUNNEL: SIMPLIFY DUPLICATED CTA WEIGHT
   Keep the primary "Planning your next project?" CTA above the footer.
   Remove the separate oversized white footer CTA.
   ========================================================================== */

#footer .modern-footer__main {
    padding-top: 0 !important;
}

/* Defensive fallback if an older cached footer partial is rendered. */
#footer .modern-footer__connect {
    display: none !important;
}

/* ==========================================================================
   KHLG GLOBAL DESIGN SYSTEM — INTERIOR PAGES
   ==========================================================================
   SINGLE SOURCE OF TRUTH FOR ALL NEW PAGES.

   New page-specific stylesheets should NOT redefine:
   - font families
   - font sizes
   - standard text colors
   - section padding
   - content width / page gutters
   - standard card padding/borders
   - standard labels / statements / headings

   Page-specific CSS should be limited to:
   - composition (grid / flex arrangements)
   - media dimensions and cropping
   - unique decorative treatments
   - layout-only responsive changes
   ========================================================================== */

:root {
    /* --------------------------------------------------------------
       GLOBAL TYPE SCALE
       Derived from the established homepage scale.
       -------------------------------------------------------------- */
    --khlg-type-page-title: clamp(68px, 10.3vw, 174px);
    --khlg-type-section-title: clamp(54px, 7.2vw, 112px);
    --khlg-type-statement: clamp(40px, 4.6vw, 72px);
    --khlg-type-card-title: clamp(27px, 3vw, 48px);
    --khlg-type-body-lg: clamp(16px, 1.45vw, 22px);
    --khlg-type-body: 18px;
    --khlg-type-label: clamp(14px, 0.82vw, 16px);
    --khlg-type-micro: 13px;

    /* --------------------------------------------------------------
       GLOBAL LEADING / TRACKING
       -------------------------------------------------------------- */
    --khlg-leading-page-title: 0.79;
    --khlg-leading-section-title: 0.84;
    --khlg-leading-statement: 1.06;
    --khlg-leading-card-title: 1;
    --khlg-leading-body-lg: 1.65;
    --khlg-leading-body: 1.75;

    --khlg-tracking-display: -0.075em;
    --khlg-tracking-section: -0.07em;
    --khlg-tracking-statement: -0.045em;
    --khlg-tracking-card: -0.05em;
    --khlg-tracking-label: 0.14em;

    /* --------------------------------------------------------------
       GLOBAL SPACING SCALE
       Use these variables instead of creating page-specific spacing.
       -------------------------------------------------------------- */
    --khlg-space-xs: clamp(8px, 0.8vw, 12px);
    --khlg-space-sm: clamp(14px, 1.4vw, 20px);
    --khlg-space-md: var(--khlg-content-gap, clamp(22px, 2.6vw, 40px));
    --khlg-space-lg: var(--khlg-section-head-gap, clamp(34px, 4vw, 58px));
    --khlg-space-xl: clamp(42px, 5vw, 78px);
    --khlg-space-2xl: clamp(54px, 7vw, 120px);

    --khlg-card-padding: var(--khlg-space-md);
    --khlg-page-hero-header-offset: 86px;
}

/* ==========================================================================
   GLOBAL CONTAINER
   ========================================================================== */

.khlg-container {
    width: min(
        var(--khlg-content-max, 1680px),
        calc(100% - (var(--khlg-page-gutter, clamp(24px, 2.8vw, 46px)) * 2))
    ) !important;
    max-width: none !important;
    margin-inline: auto !important;
}

/* ==========================================================================
   GLOBAL SECTIONS / SURFACES
   ========================================================================== */

.khlg-section {
    position: relative;
    padding-top: var(--khlg-section-y, clamp(72px, 7vw, 108px));
    padding-bottom: var(--khlg-section-y, clamp(72px, 7vw, 108px));
    border-bottom: 1px solid var(--line);
}

.khlg-section--surface {
    background: var(--surface);
}

.khlg-section--soft {
    background: var(--bg);
}

.khlg-section--navy {
    background: var(--khlg-navy, var(--navy));
    color: #fff;
}

/* ==========================================================================
   GLOBAL INTERIOR-PAGE HERO
   ========================================================================== */

.khlg-page-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 100svh;
    padding-top: calc(
        var(--khlg-section-y, clamp(72px, 7vw, 108px)) +
            var(--khlg-page-hero-header-offset)
    );
    padding-bottom: var(--khlg-section-y, clamp(72px, 7vw, 108px));
    background: var(--khlg-navy, var(--navy));
    color: #fff;
}

/* ==========================================================================
   GLOBAL TYPOGRAPHY
   ========================================================================== */

.khlg-page-title,
.khlg-section-title,
.khlg-statement,
.khlg-card-title,
.khlg-eyebrow {
    font-family: "Poppins", Arial, sans-serif;
}

.khlg-body-lg,
.khlg-body,
.khlg-micro {
    font-family: "Roboto", Arial, sans-serif;
}

.khlg-page-title {
    margin: 0;
    font-size: var(--khlg-type-page-title);
    font-weight: 500;
    line-height: var(--khlg-leading-page-title);
    letter-spacing: var(--khlg-tracking-display);
    text-transform: uppercase;
    color: var(--ink);
}

.khlg-section-title {
    margin: 0;
    font-size: var(--khlg-type-section-title);
    font-weight: 500;
    line-height: var(--khlg-leading-section-title);
    letter-spacing: var(--khlg-tracking-section);
    text-transform: uppercase;
    color: var(--ink);
}

.khlg-statement {
    margin: 0;
    font-size: var(--khlg-type-statement);
    font-weight: 400;
    line-height: var(--khlg-leading-statement);
    letter-spacing: var(--khlg-tracking-statement);
    color: var(--ink);
    text-wrap: balance;
}

.khlg-card-title {
    margin: 0;
    font-size: var(--khlg-type-card-title);
    font-weight: 500;
    line-height: var(--khlg-leading-card-title);
    letter-spacing: var(--khlg-tracking-card);
    color: var(--ink);
}

.khlg-body-lg {
    margin: 0;
    font-size: var(--khlg-type-body-lg);
    font-weight: 400;
    line-height: var(--khlg-leading-body-lg);
    color: var(--ink-soft);
}

.khlg-body {
    margin: 0;
    font-size: var(--khlg-type-body);
    font-weight: 400;
    line-height: var(--khlg-leading-body);
    color: var(--ink-soft);
}

.khlg-eyebrow {
    margin: 0;
    font-size: var(--khlg-type-label);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: var(--khlg-tracking-label);
    text-transform: uppercase;
    color: var(--ink-soft);
}

.khlg-micro {
    margin: 0;
    font-size: var(--khlg-type-micro);
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: 0.03em;
    color: var(--ink-soft);
}

/* ==========================================================================
   GLOBAL TEXT / BRAND COLOR MODIFIERS
   ========================================================================== */

.khlg-page-title--light,
.khlg-section-title--light,
.khlg-statement--light,
.khlg-card-title--light,
.khlg-text-light {
    color: #fff;
}

.khlg-eyebrow--brand,
.khlg-text-brand {
    color: var(--khlg-cyan, var(--blue));
}

.khlg-eyebrow--light {
    color: var(--khlg-light-cyan, #8edcf5);
}

.khlg-text-muted {
    color: var(--ink-soft);
}

.khlg-text-muted-light {
    color: rgba(255, 255, 255, 0.72);
}

/* ==========================================================================
   GLOBAL REUSABLE UI
   ========================================================================== */

.khlg-rule-head {
    margin-bottom: var(--khlg-space-lg);
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.khlg-rule-head--light {
    border-top-color: rgba(255, 255, 255, 0.16);
}

.khlg-accent-rule {
    display: block;
    width: 100%;
    max-width: 80px;
    height: 3px;
    background: var(--khlg-cyan, var(--blue));
}

.khlg-card {
    padding: var(--khlg-card-padding);
    border: 1px solid var(--line);
    background: var(--surface);
}

.khlg-icon-accent {
    color: var(--khlg-blue, var(--blue));
}

.khlg-icon-md {
    font-size: 22px;
}

/* ==========================================================================
   SHARED FOOTER — QUICK LINKS
   This lives globally because the footer is shared across every page.
   ========================================================================== */

.modern-footer__quick-links {
    display: grid;
    gap: var(--khlg-space-sm);
    margin-top: var(--khlg-space-lg);
    padding-top: var(--khlg-space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.modern-footer__quick-links-label {
    font-family: "Poppins", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

.modern-footer__quick-links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
}

.modern-footer__quick-links-list a {
    position: relative;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.76);
    transition: color 0.3s ease;
}

.modern-footer__quick-links-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: var(--khlg-cyan, var(--blue));
    transform: scaleX(0);
    transform-origin: 100% 50%;
    transition: transform 0.3s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
    .modern-footer__quick-links-list a:hover {
        color: #fff;
    }

    .modern-footer__quick-links-list a:hover::after {
        transform: scaleX(1);
        transform-origin: 0 50%;
    }
}

/* ==========================================================================
   GLOBAL RESPONSIVE TYPE SYSTEM
   ========================================================================== */

@media (max-width: 1180px) {
    :root {
        --khlg-type-page-title: clamp(54px, 8.4vw, 88px);
        --khlg-type-section-title: clamp(48px, 7vw, 82px);
    }
}

@media (max-width: 900px) {
    :root {
        --khlg-type-statement: clamp(34px, 4.6vw, 50px);
    }
}

@media (max-width: 760px) {
    :root {
        --khlg-type-page-title: clamp(38px, 11vw, 56px);
        --khlg-type-section-title: clamp(34px, 9.4vw, 46px);
        --khlg-type-statement: clamp(26px, 7vw, 32px);
        --khlg-type-body: 16px;
        --khlg-type-body-lg: 16px;
        --khlg-type-label: 11px;
        --khlg-type-micro: 12px;

        --khlg-leading-page-title: 0.88;
        --khlg-leading-section-title: 0.94;
        --khlg-leading-statement: 1.13;
        --khlg-leading-body-lg: 1.58;
        --khlg-leading-body: 1.58;

        --khlg-page-hero-header-offset: 66px;
    }

    .khlg-page-hero {
        min-height: auto;
    }

    .modern-footer__quick-links-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --khlg-type-page-title: clamp(34px, 10.2vw, 42px);
        --khlg-type-statement: clamp(24px, 6.5vw, 29px);
    }

    .modern-footer__quick-links-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* ==========================================================================
   HOMEPAGE ↔ GLOBAL DESIGN SYSTEM BRIDGE
   ==========================================================================
   The homepage keeps its original structural classes for JS, animations,
   and layout stability, but standard typography/colors/spacing now read
   from the same global variables used by all interior pages.
   ========================================================================== */

/* --- Shared containers -------------------------------------------------- */

.hero-content > .container,
#about > .container,
#difference > .container,
#services > .container,
#coverage > .container,
#approach > .container,
#why-khlg > .container,
#commitment > .container,
#project-inquiry > .container,
.construction-stages {
    width: min(
        var(--khlg-content-max, 1680px),
        calc(100% - (var(--khlg-page-gutter, clamp(24px, 2.8vw, 46px)) * 2))
    ) !important;
    max-width: none !important;
    margin-inline: auto !important;
}

/* --- Homepage display typography -------------------------------------- */

.hero-title,
.modern-services__heading h2,
.services-title {
    font-family: "Poppins", Arial, sans-serif;
    font-size: var(--khlg-type-page-title) !important;
    font-weight: 500;
    line-height: var(--khlg-leading-page-title) !important;
    letter-spacing: var(--khlg-tracking-display) !important;
}

.intro-sticky h2,
.principles-head h2,
.construction-stages__intro h2,
.khlg-story-head h2 {
    font-family: "Poppins", Arial, sans-serif;
    font-size: var(--khlg-type-section-title) !important;
    font-weight: 500;
    line-height: var(--khlg-leading-section-title) !important;
    letter-spacing: var(--khlg-tracking-section) !important;
}

.mission-block p,
.khlg-commitment__lead,
.khlg-commitment__statement {
    font-family: "Poppins", Arial, sans-serif;
    font-size: var(--khlg-type-statement) !important;
    line-height: var(--khlg-leading-statement) !important;
    letter-spacing: var(--khlg-tracking-statement) !important;
}

.principle-card h3,
.service-name,
.service-showcase__title,
.service-visual__title,
.who-value h2 {
    font-family: "Poppins", Arial, sans-serif;
    font-size: var(--khlg-type-card-title) !important;
    line-height: var(--khlg-leading-card-title) !important;
    letter-spacing: var(--khlg-tracking-card) !important;
}

/* --- Homepage body copy ------------------------------------------------ */

.hero-description,
.principles-head p,
.modern-services__heading p,
.regional-coverage__intro,
.project-cta__copy,
.khlg-story-head > p {
    font-family: "Roboto", Arial, sans-serif;
    font-size: var(--khlg-type-body-lg) !important;
    line-height: var(--khlg-leading-body-lg) !important;
}

.principle-card p,
.service-copy,
.service-showcase__body,
.service-panel__inner,
.khlg-approach__step p,
.khlg-why__card p {
    font-family: "Roboto", Arial, sans-serif;
    font-size: var(--khlg-type-body) !important;
    line-height: var(--khlg-leading-body) !important;
    color: var(--ink-soft);
}

/* The About section intentionally uses a larger editorial paragraph scale. */
#about .intro-copy {
    font-family: "Roboto", Arial, sans-serif;
    color: var(--ink);
}

/* --- Labels / eyebrows ------------------------------------------------- */

.hero-kicker,
.section-label,
.construction-stages__kicker,
.service-showcase__topline,
.service-showcase__eyebrow,
.regional-coverage__eyebrow,
.khlg-story-eyebrow {
    font-family: "Poppins", Arial, sans-serif;
    font-size: var(--khlg-type-label) !important;
    letter-spacing: var(--khlg-tracking-label) !important;
}

/* --- Shared colors ----------------------------------------------------- */

.intro-sticky h2,
.principles-head h2,
.modern-services__heading h2,
.service-showcase__title,
.principle-card h3,
.service-name {
    color: var(--ink);
}

.principles-head p,
.service-copy,
.service-showcase__body,
.service-panel__inner,
.modern-services__heading p {
    color: var(--ink-soft);
}

/* --- Shared section rhythm -------------------------------------------- */

#about.section-pad,
#difference.section-pad,
#services.modern-services,
#coverage.regional-coverage,
#approach.section-pad,
#why-khlg.section-pad,
#project-inquiry.project-cta {
    padding-top: var(--khlg-section-y, clamp(72px, 7vw, 108px)) !important;
    padding-bottom: var(--khlg-section-y, clamp(72px, 7vw, 108px)) !important;
}

.principles-head,
.modern-services__heading,
.construction-stages__header,
.khlg-story-head {
    margin-bottom: var(
        --khlg-section-head-gap,
        clamp(34px, 4vw, 58px)
    ) !important;
}

/* --- Shared cards ------------------------------------------------------ */

.principle-card {
    padding: var(--khlg-card-padding) !important;
}

@media (max-width: 1180px) {
    .hero-content > .container,
    #about > .container,
    #difference > .container,
    #services > .container,
    #coverage > .container,
    #approach > .container,
    #why-khlg > .container,
    #commitment > .container,
    #project-inquiry > .container,
    .construction-stages {
        width: calc(100% - (var(--khlg-page-gutter) * 2)) !important;
    }
}

/* ==========================================================================
   SERVICE SELECTOR — COMPACT GLOBAL VARIANT FIX
   --------------------------------------------------------------------------
   Service selector tiles are navigation/UI controls, not content cards.
   Keep their established compact typography while still using global fonts
   and brand colors.
   ========================================================================== */

.service-tile__title {
    font-family: "Poppins", Arial, sans-serif !important;
    font-size: clamp(17px, 1.55vw, 23px) !important;
    font-weight: 500 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.035em !important;
    color: var(--ink) !important;
}

.service-tile.is-active .service-tile__title {
    color: #fff !important;
}

.service-tile__icon {
    color: var(--khlg-blue, var(--blue));
}

.service-tile.is-active .service-tile__icon {
    color: #fff;
}

.service-tile__arrow {
    color: var(--khlg-cyan, var(--blue));
}

.service-tile.is-active .service-tile__arrow {
    color: #fff;
}

@media (max-width: 760px) {
    .service-tile__title {
        font-size: clamp(16px, 4.6vw, 20px) !important;
        line-height: 1.08 !important;
    }
}

/* ==========================================================================
   GLOBAL INTERIOR-PAGE HERO DESCRIPTION
   --------------------------------------------------------------------------
   Reusable lead-copy scale for page heroes.
   Larger than standard section body copy, but below display headings.
   ========================================================================== */

.khlg-hero-description {
    margin: 0;
    font-family: "Roboto", Arial, sans-serif;
    font-size: clamp(20px, 1.62vw, 29px);
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: -0.02em;
    color: var(--ink-soft);
}

.khlg-page-hero .khlg-hero-description {
    max-width: 760px;
}

@media (max-width: 1180px) {
    .khlg-hero-description {
        font-size: clamp(18px, 1.8vw, 22px);
    }
}

@media (max-width: 760px) {
    .khlg-hero-description {
        font-size: 17px;
        line-height: 1.55;
    }
}

@media (max-width: 480px) {
    .khlg-hero-description {
        font-size: 16px;
    }
}

/* ==========================================================================
   GLOBAL HERO SUPPORT COPY
   --------------------------------------------------------------------------
   For supporting narrative and principle labels inside interior-page heroes.
   Larger than normal section body/micro text, but below hero intro copy.
   ========================================================================== */

.khlg-hero-support {
    margin: 0;
    font-family: "Roboto", Arial, sans-serif;
    font-size: clamp(19px, 1.28vw, 23px);
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: -0.01em;
    color: var(--ink-soft);
}

.khlg-hero-meta {
    margin: 0;
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(14px, 0.92vw, 16px);
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0.01em;
    color: var(--ink-soft);
}

@media (max-width: 1180px) {
    .khlg-hero-support {
        font-size: clamp(18px, 1.6vw, 21px);
    }

    .khlg-hero-meta {
        font-size: 14px;
    }
}

@media (max-width: 760px) {
    .khlg-hero-support {
        font-size: 17px;
        line-height: 1.62;
    }

    .khlg-hero-meta {
        font-size: 13px;
    }
}

/* ==========================================================================
   KHLG — GLOBAL ROUTE TRANSITION
   Motion-style stagger wipe:
   narrow full-height strips wipe downward, staggered left-to-right.
   ========================================================================== */

.khlg-route-transition {
    --khlg-curtain-count: 1;

    position: fixed;
    z-index: 2147483000;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(var(--khlg-curtain-count), minmax(0, 1fr));
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
}

.khlg-route-transition__panel {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--khlg-navy, var(--navy, #102a43));
    transform: translate3d(0, -105%, 0);
    will-change: transform;
}

/* Very subtle separation so the strips read individually while moving. */
.khlg-route-transition__panel + .khlg-route-transition__panel {
    border-left: 1px solid rgba(142, 220, 245, 0.055);
}

/* --------------------------------------------------------------
   COVER CURRENT PAGE
   Starts above viewport, wipes DOWN into place.
   -------------------------------------------------------------- */

.khlg-route-transition.is-covering {
    visibility: visible;
    pointer-events: auto;
}

.khlg-route-transition.is-covering .khlg-route-transition__panel {
    transform: translate3d(0, 0, 0);
    transition: transform 410ms cubic-bezier(0.76, 0, 0.24, 1);
    transition-delay: var(--khlg-curtain-delay, 0ms);
}

/* --------------------------------------------------------------
   REVEAL NEW PAGE
   Continue moving DOWN past the viewport ("normal" direction mode).
   -------------------------------------------------------------- */

.khlg-route-transition.is-reveal-start {
    visibility: visible;
}

.khlg-route-transition.is-reveal-start .khlg-route-transition__panel {
    transform: translate3d(0, 0, 0);
    transition: none;
}

.khlg-route-transition.is-reveal-start.is-revealing
    .khlg-route-transition__panel {
    transform: translate3d(0, 105%, 0);
    transition: transform 410ms cubic-bezier(0.76, 0, 0.24, 1);
    transition-delay: var(--khlg-curtain-delay, 0ms);
}

/* --------------------------------------------------------------
   REDUCED MOTION
   -------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    .khlg-route-transition {
        display: none !important;
    }

    body {
        transition: opacity 120ms linear;
    }

    html.khlg-route-fade-out body {
        opacity: 0;
    }
}

/* ==========================================================================
   KHLG ROUTE ARRIVAL GUARD
   Prevents destination-page content from flashing before the curtain reveal.
   ========================================================================== */

html.khlg-route-arriving,
html.khlg-route-arriving body {
    background: var(--khlg-navy, var(--navy, #102a43));
}

html.khlg-route-arriving body > :not(.khlg-route-transition) {
    visibility: hidden;
}

html.khlg-route-arriving .khlg-route-transition {
    visibility: visible;
    pointer-events: auto;
}

html.khlg-route-arriving .khlg-route-transition__panel {
    transform: translate3d(0, 0, 0);
    transition: none;
}
