:root {
    --krg-navy: #0d182b;
    --krg-navy-deep: #08101d;
    --krg-ink: #09101b;
    --krg-white: #ffffff;
    --krg-paper: #f6f4ef;
    --krg-sand: #63bbfa;
    --krg-sand-deep: #89d4ff;
    --krg-line: rgba(255, 255, 255, 0.26);
    --krg-border: rgba(13, 24, 43, 0.12);
    --krg-shadow: 0 24px 60px rgba(5, 14, 27, 0.18);
    --krg-shadow-soft: 0 14px 32px rgba(5, 14, 27, 0.1);
    --krg-radius: 34px;
    --krg-radius-large: 42px;
    --krg-transition: 220ms ease;
    --content-width: min(1400px, calc(100vw - 40px));
    --header-width: min(70vw, 1220px);
    --hero-shell-width: min(80vw, 1440px);
    --hero-duration: 7000ms;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    background: var(--krg-navy-deep);
    color: var(--krg-white);
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    pointer-events: none;
}

.site-header a,
.site-header button {
    pointer-events: auto;
}

.header-shell,
.nav-shell,
.mega-surface {
    pointer-events: auto;
}

.header-shell {
    width: var(--header-width);
    margin: 24px auto 0;
}

.nav-bar,
.mega-surface {
    backdrop-filter: blur(10px);
}

.nav-shell {
    position: relative;
    margin-top: 0;
}

.nav-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 76px;
    padding: 0 20px 0 22px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--krg-navy);
    box-shadow: var(--krg-shadow);
    transition: transform var(--krg-transition), min-height var(--krg-transition), box-shadow var(--krg-transition);
}

.site-header.is-scrolled .header-shell {
    margin-top: 18px;
}

.site-header.is-scrolled .nav-bar {
    min-height: 70px;
    box-shadow: 0 18px 45px rgba(5, 14, 27, 0.16);
}

.brand-mark {
    flex: 0 0 214px;
}

.brand-mark img {
    width: 206px;
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(12px, 1.2vw, 20px);
    flex: 1;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--krg-navy);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 0.78rem;
    font-weight: 700;
    transition: color var(--krg-transition);
}

.nav-item.is-open .nav-link,
.nav-link:hover,
.nav-link:focus-visible {
    color: #274b8a;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: auto;
}

.icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--krg-navy);
}

.search-button svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.menu-button {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.mobile-submenu {
    display: none;
}

.menu-button span {
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

.mega-surface {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    padding: 0;
    border-radius: var(--krg-radius);
    background: rgba(255, 255, 255, 0.98);
    color: var(--krg-navy);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--krg-shadow);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--krg-transition), transform var(--krg-transition), visibility var(--krg-transition);
}

.mega-surface.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-surface::before {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 2px solid rgba(183, 55, 36, 0.75);
    border-radius: var(--krg-radius);
    pointer-events: none;
}

.mega-panel {
    display: none;
    grid-template-columns: minmax(220px, 0.82fr) minmax(0, 2fr);
    gap: 32px;
    padding: 28px 38px 24px;
}

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

.mega-intro h2 {
    margin: 0 0 10px;
    font-size: clamp(1.28rem, 1.8vw, 1.75rem);
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.mega-intro p {
    margin: 0;
    color: rgba(13, 24, 43, 0.82);
    font-size: 0.88rem;
    line-height: 1.48;
}

.mega-eyebrow,
.section-kicker,
.hero-kicker,
.sector-label {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.64rem;
    font-weight: 700;
}

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

.mega-columns.three-up {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mega-columns a {
    display: block;
    padding: 11px 0;
    border-bottom: 1px solid rgba(13, 24, 43, 0.12);
    font-size: 0.82rem;
    font-weight: 500;
    transition: color var(--krg-transition), transform var(--krg-transition);
}

.mega-columns a:hover,
.mega-columns a:focus-visible {
    color: #274b8a;
    transform: translateX(6px);
}

.hero-section {
    position: relative;
    min-height: 100svh;
}

.hero-swiper {
    min-height: 100svh;
}

.hero-slide {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    transform: scale(1.03);
    transform-origin: center;
    will-change: transform;
    background-size: cover;
    background-position: center;
}

.hero-media-group {
    background-image: url("images/hero-flag-wide.webp");
    background-position: center center;
}

.hero-media-manufacturing {
    background-image: url("images/New%20Images/Greenfix%20Pipe%20Ketty%20Robson.webp");
    background-position: center right;
    background-repeat: no-repeat;
}

.hero-media-real-estate {
    background-image: url("images/Hero-Realestate-wide.webp");
    background-position: center center;
}

.hero-media-agro {
    background-image: url("images/Hero-foodcomplex-wide.webp");
    background-position: center center;
}

.hero-media-trading {
    background-image: url("images/Hero-officereception-wide.webp");
    background-position: center center;
}

.hero-media-mining {
    background-image: url("images/Hero-Mining-web.webp");
    background-position: center center;
}

.hero-media-agriculture {
    background-image: url("images/hero-agriculture-wide.webp");
    background-position: center center;
}

.vertical-hero {
    position: relative;
    min-height: 76svh;
    overflow: hidden;
    background: #11161c;
}

.vertical-hero-media,
.vertical-hero-overlay {
    position: absolute;
    inset: 0;
}

.vertical-hero-media {
    background-size: cover;
    background-position: center center;
    transform: scale(1.02);
}

.vertical-hero-manufacturing .vertical-hero-media {
    background-image: url("images/Hero-GreenFix-Plastic-wide.webp");
}

.vertical-hero-agriculture .vertical-hero-media {
    background-image: url("images/hero-agriculture-wide.webp");
}

.vertical-hero-agro .vertical-hero-media {
    background-image: url("images/Hero-foodcomplex-wide.webp");
}

.vertical-hero-trading .vertical-hero-media,
.vertical-hero-hospitality .vertical-hero-media {
    background-image: url("images/Hero-officereception-wide.webp");
}

.vertical-hero-real-estate .vertical-hero-media {
    background-image: url("images/Hero-Realestate-wide.webp");
}

.vertical-hero-mining .vertical-hero-media {
    background-image: url("images/Hero-Mining-web.webp");
}

.vertical-hero-construction .vertical-hero-media {
    background-image: url("images/Hero-construction-web.webp");
}

.vertical-hero-careers .vertical-hero-media {
    background-image: url("images/Hero-officereception-wide.webp");
}

.vertical-hero-news .vertical-hero-media {
    background-image: url("images/hero-flag-wide.webp");
}

.vertical-hero-overlay {
    background:
        linear-gradient(90deg, rgba(10, 15, 20, 0.9) 0%, rgba(10, 15, 20, 0.78) 26%, rgba(10, 15, 20, 0.34) 52%, rgba(10, 15, 20, 0.14) 100%),
        linear-gradient(180deg, rgba(10, 15, 20, 0.22) 0%, rgba(10, 15, 20, 0.38) 100%);
}

.vertical-hero-shell {
    position: relative;
    z-index: 1;
    min-height: 76svh;
    width: min(1440px, calc(100vw - 48px));
    margin: 0 auto;
    padding: 152px 0 72px;
    display: flex;
    align-items: flex-end;
}

.vertical-hero-title-block {
    padding: 28px 34px 30px;
    background: rgba(10, 15, 20, 0.72);
    backdrop-filter: blur(6px);
    width: fit-content;
    max-width: min(620px, 92vw);
}

.vertical-hero-kicker {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.74);
}

.vertical-hero-title-block h1 {
    margin: 0;
    color: var(--krg-white);
    font-size: clamp(3.6rem, 7vw, 6.4rem);
    line-height: 0.92;
    letter-spacing: -0.07em;
    font-weight: 700;
}

.vertical-intro {
    position: relative;
    padding: 56px 0 24px;
    overflow: hidden;
    background:
        linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
}

.vertical-intro::before,
.vertical-intro::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.vertical-intro::before {
    inset: 0;
    background:
        linear-gradient(90deg, rgba(99, 187, 250, 0.06) 0%, rgba(99, 187, 250, 0) 26%),
        linear-gradient(180deg, rgba(13, 24, 43, 0.02) 0%, rgba(13, 24, 43, 0) 34%);
}

.vertical-intro::after {
    width: min(18vw, 220px);
    height: min(18vw, 220px);
    left: 4%;
    bottom: -8%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(99, 187, 250, 0.3) 0%, rgba(99, 187, 250, 0) 72%);
    opacity: 0.52;
}

.vertical-intro-shell,
.company-showcase-shell {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100vw - 56px));
    margin: 0 auto;
}

.vertical-intro-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
    gap: clamp(26px, 4vw, 44px);
    align-items: start;
}

.vertical-intro-kicker {
    margin: 0 0 18px;
    color: rgba(13, 24, 43, 0.54);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.vertical-intro-title h2 {
    margin: 0;
    max-width: 8.6ch;
    color: var(--krg-navy);
    font-size: clamp(1.7rem, 3vw, 2.75rem);
    line-height: 1;
    letter-spacing: -0.045em;
    font-weight: 700;
}

.vertical-intro-copy {
    position: relative;
    max-width: 34rem;
    padding-top: 8px;
}

.vertical-intro-copy p {
    margin: 0;
    color: rgba(13, 24, 43, 0.82);
    font-size: 0.96rem;
    line-height: 1.62;
}

.vertical-intro-copy p + p {
    margin-top: 12px;
}

.vertical-intro-art {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.vertical-intro-arrow {
    position: absolute;
    display: block;
    background: linear-gradient(180deg, rgba(99, 187, 250, 0.22) 0%, rgba(99, 187, 250, 0.06) 100%);
    clip-path: polygon(50% 0%, 100% 38%, 72% 38%, 72% 100%, 28% 100%, 28% 38%, 0% 38%);
}

.vertical-intro-arrow-top {
    top: -4%;
    left: 48%;
    width: clamp(84px, 8vw, 138px);
    height: clamp(160px, 16vw, 260px);
    opacity: 0.38;
}

.vertical-intro-arrow-center {
    left: 28%;
    bottom: -6%;
    width: clamp(180px, 20vw, 320px);
    height: clamp(280px, 28vw, 430px);
    opacity: 0.28;
}

.vertical-intro-arrow-right {
    right: 10%;
    top: -2%;
    width: clamp(110px, 10vw, 170px);
    height: clamp(200px, 18vw, 300px);
    opacity: 0.26;
}

.company-showcase-section {
    position: relative;
    padding: 14px 0 30px;
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.company-showcase-section.is-reverse {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.company-showcase-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(99, 187, 250, 0.05) 0%, rgba(99, 187, 250, 0) 30%);
}

.company-showcase-section.is-contrast {
    background: linear-gradient(180deg, #10203a 0%, #0d182b 100%);
}

.company-showcase-section.is-contrast::before {
    background:
        linear-gradient(90deg, rgba(99, 187, 250, 0.18) 0%, rgba(99, 187, 250, 0) 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 45%);
}

.company-showcase-section.is-contrast::after {
    content: "";
    position: absolute;
    right: 6%;
    top: 10%;
    width: clamp(120px, 12vw, 190px);
    height: clamp(180px, 18vw, 300px);
    background: linear-gradient(180deg, rgba(99, 187, 250, 0.18) 0%, rgba(99, 187, 250, 0.04) 100%);
    clip-path: polygon(50% 0%, 100% 38%, 72% 38%, 72% 100%, 28% 100%, 28% 38%, 0% 38%);
    opacity: 0.55;
    pointer-events: none;
}

.company-showcase-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
    gap: clamp(24px, 3.4vw, 40px);
    align-items: center;
}

.company-showcase-section.is-reverse .company-showcase-media {
    order: 2;
}

.company-showcase-section.is-reverse .company-showcase-content {
    order: 1;
}

.company-showcase-media {
    position: relative;
    min-height: 360px;
}

.company-showcase-media::before {
    display: none;
}

.company-showcase-section.is-reverse .company-showcase-media::before {
    left: auto;
    right: 44px;
}

.company-showcase-section.is-contrast .company-showcase-media::before {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
}

.company-showcase-image {
    margin: 0;
    position: absolute;
    overflow: hidden;
    border-radius: 0;
    border: 1px solid rgba(13, 24, 43, 0.08);
    box-shadow: 0 14px 30px rgba(13, 24, 43, 0.08);
    background: #d8d7d1;
}

.company-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-showcase-image.is-primary {
    display: none;
}

.company-showcase-image.is-secondary {
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.company-showcase-section.is-reverse .company-showcase-image.is-primary {
    left: auto;
    right: 0;
}

.company-showcase-section.is-reverse .company-showcase-image.is-secondary {
    left: 0;
    right: 0;
}

.company-showcase-content {
    max-width: 520px;
    justify-self: stretch;
}

.company-showcase-card {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.company-showcase-index {
    margin: 0 0 10px;
    color: rgba(13, 24, 43, 0.46);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.company-showcase-card h2 {
    margin: 0;
    color: var(--krg-navy);
    font-size: clamp(1.45rem, 2.2vw, 2.2rem);
    line-height: 1;
    letter-spacing: -0.045em;
}

.company-showcase-card h2 a {
    color: inherit;
}

.company-showcase-strap {
    margin: 12px 0 0;
    color: rgba(13, 24, 43, 0.62);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.42;
}

.company-showcase-card p:not(.company-showcase-index):not(.company-showcase-strap) {
    margin: 12px 0 0;
    color: rgba(13, 24, 43, 0.82);
    font-size: 0.95rem;
    line-height: 1.6;
}

.company-showcase-section.is-contrast .company-showcase-index {
    color: rgba(255, 255, 255, 0.56);
}

.company-showcase-section.is-contrast .company-showcase-card h2,
.company-showcase-section.is-contrast .company-showcase-card h2 a,
.company-showcase-section.is-contrast .company-showcase-strap,
.company-showcase-section.is-contrast .company-showcase-card p:not(.company-showcase-index):not(.company-showcase-strap) {
    color: var(--krg-white);
}

.company-showcase-section.is-contrast .company-showcase-strap {
    color: rgba(255, 255, 255, 0.74);
}

.company-showcase-section.is-contrast .company-showcase-card p:not(.company-showcase-index):not(.company-showcase-strap) {
    color: rgba(255, 255, 255, 0.82);
}

.company-showcase-link-panel {
    display: grid;
    grid-template-columns: minmax(130px, 176px) minmax(0, 1fr) auto;
    align-items: stretch;
    margin-top: 20px;
    min-height: 84px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(13, 24, 43, 0.08);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 22px rgba(13, 24, 43, 0.05);
}

.company-showcase-link-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    background: rgba(99, 187, 250, 0.16);
    color: var(--krg-navy);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.company-showcase-link-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 14px 18px;
}

.company-showcase-link-title {
    color: var(--krg-navy);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.3;
}

.company-showcase-link-subtitle {
    color: rgba(13, 24, 43, 0.58);
    font-size: 0.82rem;
    line-height: 1.36;
}

.company-showcase-link-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 66px;
    padding: 0 16px;
    color: var(--krg-sand);
    font-size: 1rem;
    font-weight: 700;
    transition: transform var(--krg-transition), color var(--krg-transition);
}

.company-showcase-section.is-contrast .company-showcase-link-panel {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 44px rgba(7, 13, 24, 0.18);
}

.company-showcase-section.is-contrast .company-showcase-link-brand {
    background: rgba(99, 187, 250, 0.22);
    color: var(--krg-white);
}

.company-showcase-section.is-contrast .company-showcase-link-title {
    color: var(--krg-white);
}

.company-showcase-section.is-contrast .company-showcase-link-subtitle {
    color: rgba(255, 255, 255, 0.74);
}

.company-showcase-section.is-contrast .company-showcase-link-action {
    color: var(--krg-white);
}

.company-showcase-link-panel:hover .company-showcase-link-action,
.company-showcase-link-panel:focus-within .company-showcase-link-action {
    transform: translateX(4px);
    color: var(--krg-sand-deep);
}

.company-page {
    background: #f5f7fb;
    color: var(--krg-navy);
}

.company-hero {
    position: relative;
    min-height: clamp(620px, 86svh, 840px);
    overflow: hidden;
    background: var(--krg-navy);
}

.company-hero-media,
.company-hero-overlay {
    position: absolute;
    inset: 0;
}

.company-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-hero-overlay {
    background:
        linear-gradient(90deg, rgba(8, 16, 29, 0.84) 0%, rgba(8, 16, 29, 0.56) 34%, rgba(8, 16, 29, 0.18) 100%),
        linear-gradient(180deg, rgba(8, 16, 29, 0.12) 0%, rgba(8, 16, 29, 0.56) 100%);
}

.company-hero-shell {
    position: relative;
    z-index: 1;
    width: min(1240px, calc(100vw - 48px));
    min-height: clamp(620px, 86svh, 840px);
    margin: 0 auto;
    padding: 168px 0 88px;
    display: flex;
    align-items: end;
}

.company-hero-copy {
    width: min(720px, 100%);
    color: var(--krg-white);
}

.company-hero-kicker,
.company-hero-vertical {
    margin: 0 0 14px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.company-hero-kicker {
    color: rgba(255, 255, 255, 0.62);
}

.company-hero-vertical {
    color: var(--krg-sand);
}

.company-hero h1 {
    margin: 0;
    max-width: 10.5ch;
    font-size: clamp(3.3rem, 6.2vw, 6rem);
    line-height: 0.92;
    letter-spacing: -0.08em;
    font-weight: 700;
}

.company-hero-lead {
    max-width: 44ch;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1rem, 1.2vw, 1.16rem);
    line-height: 1.75;
}

.company-intro-section {
    position: relative;
    overflow: hidden;
    padding: 64px 0 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.company-intro-section::before {
    content: "";
    position: absolute;
    top: -4%;
    right: 8%;
    width: clamp(120px, 12vw, 190px);
    height: clamp(190px, 18vw, 300px);
    background: linear-gradient(180deg, rgba(99, 187, 250, 0.18) 0%, rgba(99, 187, 250, 0.04) 100%);
    clip-path: polygon(50% 0%, 100% 38%, 72% 38%, 72% 100%, 28% 100%, 28% 38%, 0% 38%);
    opacity: 0.5;
    pointer-events: none;
}

.company-intro-shell,
.company-text-shell,
.company-split-shell,
.company-media-band-shell {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100vw - 56px));
    margin: 0 auto;
}

.company-intro-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
    gap: clamp(28px, 4vw, 48px);
    align-items: start;
}

.company-section-kicker {
    margin: 0 0 14px;
    color: rgba(13, 24, 43, 0.5);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.company-intro-heading h2,
.company-text-heading h2,
.company-split-copy h2 {
    margin: 0;
    color: var(--krg-navy);
    font-size: clamp(1.4rem, 2vw, 2.15rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    font-weight: 700;
}

.company-intro-copy p,
.company-text-copy p,
.company-split-copy p,
.company-detail-list li,
.company-highlight-panel p,
.company-highlight-panel li {
    margin: 0;
    color: rgba(13, 24, 43, 0.82);
    font-size: 0.96rem;
    line-height: 1.62;
}

.company-intro-copy p + p,
.company-text-copy p + p,
.company-split-copy p + p {
    margin-top: 14px;
}

.company-intro-copy,
.company-text-copy,
.company-split-copy {
    display: grid;
    gap: 14px;
    align-content: start;
}

.company-media-band {
    padding: 0 0 28px;
    background: #ffffff;
}

.company-media-band.is-secondary {
    display: none;
}

.company-media-band-shell {
    overflow: hidden;
    border-radius: 18px;
    min-height: clamp(260px, 34vw, 380px);
    box-shadow: 0 12px 28px rgba(13, 24, 43, 0.08);
}

.company-media-band-shell img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}

.company-split-section {
    position: relative;
    padding: 10px 0 38px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

.company-split-section.is-contrast {
    width: min(1180px, calc(100vw - 56px));
    margin: 26px auto;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(180deg, #10203a 0%, #0d182b 100%);
}

.company-split-section.is-contrast::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(99, 187, 250, 0.16) 0%, rgba(99, 187, 250, 0) 26%);
}

.company-split-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(380px, 1.06fr);
    gap: clamp(28px, 4vw, 48px);
    align-items: center;
}

.company-split-section.is-reverse .company-split-media {
    order: 2;
}

.company-split-section.is-reverse .company-split-copy {
    order: 1;
}

.company-split-media {
    position: relative;
    min-height: 360px;
}

.company-split-media::before {
    display: none;
}

.company-split-section.is-reverse .company-split-media::before {
    left: auto;
    right: 42px;
}

.company-split-section.is-contrast .company-split-media::before {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
}

.company-split-image {
    position: absolute;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(13, 24, 43, 0.08);
    box-shadow: 0 12px 28px rgba(13, 24, 43, 0.08);
    border-radius: 18px;
}

.company-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-split-image.is-primary {
    display: none;
}

.company-split-image.is-secondary {
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.company-split-section.is-reverse .company-split-image.is-primary {
    left: auto;
    right: 0;
}

.company-split-section.is-reverse .company-split-image.is-secondary {
    left: 0;
    right: 0;
}

.company-detail-list {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.company-detail-list li {
    position: relative;
    padding-left: 18px;
}

.company-detail-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--krg-sand);
}

.company-split-section.is-contrast .company-section-kicker {
    color: rgba(255, 255, 255, 0.56);
}

.company-split-section.is-contrast .company-split-copy h2,
.company-split-section.is-contrast .company-split-copy p,
.company-split-section.is-contrast .company-detail-list li {
    color: var(--krg-white);
}

.company-split-section.is-contrast .company-split-copy p,
.company-split-section.is-contrast .company-detail-list li {
    color: rgba(255, 255, 255, 0.82);
}

.company-text-section {
    padding: 18px 0 56px;
    background: #f5f7fb;
}

.company-text-section.is-contrast {
    width: min(1180px, calc(100vw - 56px));
    margin: 26px auto 34px;
    border-radius: 24px;
    overflow: hidden;
    background: var(--krg-navy);
}

.company-text-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    gap: clamp(28px, 4vw, 48px);
    align-items: start;
}

.company-text-grid {
    display: grid;
    gap: 18px;
}

.company-highlight-panel {
    display: grid;
    gap: 12px;
    padding: 20px 22px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(13, 24, 43, 0.08);
    box-shadow: 0 10px 24px rgba(13, 24, 43, 0.05);
}

.company-highlight-panel h3 {
    margin: 0;
    color: var(--krg-navy);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.company-highlight-panel ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
}

.company-highlight-panel a,
.company-back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: transform var(--krg-transition), box-shadow var(--krg-transition), background var(--krg-transition);
}

.company-highlight-panel a {
    background: var(--krg-navy);
    color: var(--krg-white);
    box-shadow: none;
}

.company-back-link {
    border: 1px solid rgba(13, 24, 43, 0.16);
    color: var(--krg-navy);
    background: transparent;
}

.company-highlight-panel a:hover,
.company-highlight-panel a:focus-visible,
.company-back-link:hover,
.company-back-link:focus-visible {
    transform: translateY(-2px);
}

.company-text-section.is-contrast .company-section-kicker {
    color: rgba(255, 255, 255, 0.56);
}

.company-text-section.is-contrast .company-text-heading h2,
.company-text-section.is-contrast .company-text-copy p {
    color: var(--krg-white);
}

.company-text-section.is-contrast .company-text-copy p {
    color: rgba(255, 255, 255, 0.84);
}

.company-text-section.is-contrast .company-highlight-panel {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.company-text-section.is-contrast .company-highlight-panel h3,
.company-text-section.is-contrast .company-highlight-panel p,
.company-text-section.is-contrast .company-highlight-panel li {
    color: var(--krg-white);
}

.company-text-section.is-contrast .company-back-link {
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--krg-white);
}

.company-split-section.is-text-only .company-split-shell {
    grid-template-columns: minmax(0, 1fr);
}

.company-split-section.is-text-only .company-split-media {
    display: none;
}

.company-split-section.is-text-only .company-split-copy {
    max-width: 920px;
}

@keyframes heroZoom {
    0% {
        transform: scale(1.03) translate3d(0, 0, 0);
    }
    100% {
        transform: scale(1.14) translate3d(1.6%, -1.2%, 0);
    }
}

@keyframes heroFlagZoom {
    0% {
        transform: scale(1.04) translate3d(0, 0, 0);
    }
    50% {
        transform: scale(1.11) translate3d(-1.2%, 0.8%, 0);
    }
    100% {
        transform: scale(1.17) translate3d(1.4%, -0.9%, 0);
    }
}

@keyframes progressFill {
    0% {
        transform: translateY(-50%) scaleX(0);
    }
    100% {
        transform: translateY(-50%) scaleX(1);
    }
}

.swiper-slide-active .hero-media {
    animation: heroZoom calc(var(--hero-duration) + 1600ms) linear forwards;
}

.swiper-slide-active .hero-media-group {
    animation: heroFlagZoom calc(var(--hero-duration) + 2200ms) linear forwards;
}

.hero-slide-group .hero-overlay {
    background:
        linear-gradient(90deg, rgba(7, 13, 24, 0.52) 0%, rgba(7, 13, 24, 0.34) 34%, rgba(7, 13, 24, 0.08) 68%, rgba(7, 13, 24, 0.16) 100%),
        linear-gradient(180deg, rgba(7, 13, 24, 0.08) 0%, rgba(7, 13, 24, 0.22) 100%);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(7, 13, 24, 0.78) 0%, rgba(7, 13, 24, 0.58) 36%, rgba(7, 13, 24, 0.28) 66%, rgba(7, 13, 24, 0.38) 100%),
        linear-gradient(180deg, rgba(7, 13, 24, 0.18) 0%, rgba(7, 13, 24, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(500px, calc(100vw - 120px));
    padding: 166px 0 86px;
    margin-left: calc((100vw - var(--hero-shell-width)) / 2);
}

.hero-content h1,
.hero-content h2 {
    margin: 0;
    max-width: 10ch;
    font-size: clamp(2.2rem, 4vw, 3.65rem);
    line-height: 1.04;
    font-weight: 500;
    letter-spacing: -0.06em;
}

.hero-copy {
    margin: 18px 0 0;
    max-width: 31ch;
    font-size: clamp(0.9rem, 1vw, 1.02rem);
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.92);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    min-height: 54px;
    margin-top: 22px;
    padding: 0 22px;
    border-radius: 17px;
    background: linear-gradient(180deg, #69c0ff 0%, #4da7ea 100%);
    color: var(--krg-white);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 18px 30px rgba(15, 110, 181, 0.24);
    transition: transform var(--krg-transition), box-shadow var(--krg-transition);
}

.hero-cta:hover,
.hero-cta:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 34px rgba(15, 110, 181, 0.32);
}

.hero-cta.light {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.32);
    box-shadow: none;
}

.hero-progress {
    position: absolute;
    left: calc((100vw - var(--hero-shell-width)) / 2);
    bottom: 22px;
    z-index: 2;
    display: flex;
    gap: 14px;
}

.hero-progress-item {
    position: relative;
    width: clamp(52px, 4.4vw, 70px);
    height: 14px;
    padding: 0;
}

.hero-progress-item::before,
.hero-progress-item span {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    transform: translateY(-50%);
}

.hero-progress-item::before {
    background: rgba(255, 255, 255, 0.3);
}

.hero-progress-item span {
    background: rgba(255, 255, 255, 0.96);
    transform: translateY(-50%) scaleX(0);
    transform-origin: left center;
}

.hero-progress-item.is-complete span {
    transform: translateY(-50%) scaleX(1);
}

.hero-progress-item.is-active span {
    animation: progressFill var(--hero-duration) linear forwards;
}

.credibility-strip,
.overview-section,
.sector-grid,
.stakeholder-section,
.contact-banner {
    width: var(--content-width);
    margin: 0 auto;
}

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

.credibility-strip article,
.summary-card,
.sector-card,
.stakeholder-grid article,
.contact-banner {
    background: rgba(10, 20, 36, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--krg-shadow-soft);
}

.credibility-strip article {
    min-height: 140px;
    padding: 26px;
    border-radius: 30px;
}

.credibility-strip strong,
.summary-card span,
.sector-label {
    display: block;
    color: rgba(255, 255, 255, 0.68);
}

.credibility-strip span {
    display: block;
    margin-top: 10px;
    font-size: 1.1rem;
    line-height: 1.45;
    font-weight: 600;
}

.overview-section,
.sector-grid,
.stakeholder-section {
    padding: 120px 0 0;
}

.overview-section {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.9fr);
    gap: 44px;
}

.section-copy h2 {
    margin: 0;
    max-width: 12ch;
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    font-weight: 600;
}

.section-copy p:not(.section-kicker) {
    max-width: 62ch;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    font-size: 1.02rem;
}

.section-card-stack {
    display: grid;
    gap: 18px;
}

.summary-card,
.sector-card,
.stakeholder-grid article {
    border-radius: 28px;
    padding: 28px;
}

.summary-card strong,
.sector-card h3,
.stakeholder-grid h3 {
    display: block;
    margin-top: 12px;
    font-size: 1.4rem;
    line-height: 1.3;
    letter-spacing: -0.03em;
}

.summary-card strong {
    font-weight: 600;
}

.wide h2 {
    max-width: none;
}

.sector-cards,
.stakeholder-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 42px;
}

.sector-card p:not(.sector-label),
.stakeholder-grid p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.contact-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-top: 120px;
    margin-bottom: 80px;
    padding: 38px;
    border-radius: 34px;
}

.contact-banner h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    font-weight: 600;
}


.contact-page-shell {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(99, 187, 250, 0.18), transparent 28%),
        linear-gradient(180deg, #f3f8fe 0%, #f9fbfe 100%);
    color: var(--krg-navy);
}

.contact-page-main {
    padding-bottom: 88px;
}

.contact-hero-section {
    padding: 154px 0 28px;
}

.contact-hero-shell,
.contact-hub-shell {
    width: min(1180px, calc(100vw - 48px));
    margin: 0 auto;
}

.contact-hero-shell {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: center;
}

.contact-hero-copy h1 {
    margin: 10px 0 0;
    max-width: 13ch;
    font-size: clamp(2.2rem, 4.7vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    font-weight: 600;
}

.contact-hero-copy p:not(.contact-hero-kicker) {
    max-width: 54ch;
    margin: 16px 0 0;
    color: rgba(13, 24, 43, 0.78);
    line-height: 1.68;
    font-size: 0.98rem;
}

.contact-hero-media {
    margin: 0;
    border-radius: 28px;
    min-height: 330px;
    overflow: hidden;
    border: 1px solid rgba(13, 24, 43, 0.08);
    box-shadow: 0 28px 80px rgba(13, 24, 43, 0.12);
}

.contact-hero-media img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}

.contact-hero-kicker,
.contact-form-kicker,
.contact-office-kicker,
.admin-auth-kicker,
.admin-detail-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(13, 24, 43, 0.58);
}

.contact-hero-aside {
    padding: 28px 28px 32px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(13, 24, 43, 0.08);
    box-shadow: 0 28px 80px rgba(13, 24, 43, 0.08);
}

.contact-hero-aside span,
.admin-contact-grid article span,
.admin-stats-grid span,
.admin-message-block span {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(13, 24, 43, 0.48);
}

.contact-hero-aside strong {
    display: block;
    margin-top: 14px;
    font-size: 1.2rem;
    line-height: 1.4;
}

.contact-hero-aside p {
    margin: 12px 0 0;
    color: rgba(13, 24, 43, 0.76);
    line-height: 1.65;
}

.contact-hub-section {
    padding: 20px 0 80px;
}

.contact-hub-shell {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.contact-office-card,
.contact-form-panel,
.admin-submissions-panel,
.admin-detail-panel,
.admin-auth-panel,
.admin-stats-grid article {
    border-radius: 34px;
    box-shadow: 0 30px 90px rgba(13, 24, 43, 0.11);
}

.contact-office-card {
    position: relative;
    overflow: hidden;
    padding: 40px;
    background: linear-gradient(180deg, #13243f 0%, #0d182b 100%);
    color: rgba(255, 255, 255, 0.96);
}

.contact-pattern {
    position: absolute;
    inset: 0 auto 0 0;
    width: 108px;
    opacity: 0.18;
    background-image:
        linear-gradient(45deg, transparent 44%, rgba(255, 255, 255, 0.4) 44%, rgba(255, 255, 255, 0.4) 56%, transparent 56%),
        linear-gradient(-45deg, transparent 44%, rgba(255, 255, 255, 0.4) 44%, rgba(255, 255, 255, 0.4) 56%, transparent 56%);
    background-size: 36px 36px;
    pointer-events: none;
}

.contact-office-copy,
.contact-office-details,
.contact-map-panel {
    position: relative;
    z-index: 1;
}

.contact-office-copy {
    padding-left: 62px;
}

.contact-office-copy h2 {
    margin: 18px 0 0;
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    line-height: 1;
    letter-spacing: -0.06em;
}

.contact-divider {
    width: 58px;
    height: 3px;
    margin: 24px 0 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
}

.contact-office-copy h3 {
    margin: 0;
    max-width: 17ch;
    font-size: 1.85rem;
    line-height: 1.22;
    letter-spacing: -0.04em;
}

.contact-office-copy p {
    max-width: 26ch;
    margin: 18px 0 0;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.86);
}

.contact-office-details {
    display: grid;
    gap: 12px;
    margin-top: 36px;
    padding-left: 62px;
}

.contact-office-details a {
    color: #ffffff;
    font-weight: 600;
}

.contact-office-details p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-weight: 600;
}

.contact-map-wrap {
    margin-top: 34px;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    min-height: 255px;
}

.contact-map-wrap iframe {
    display: block;
    width: 100%;
    height: 255px;
    border: 0;
    filter: saturate(0.92) contrast(1.04);
}

.contact-form-panel {
    padding: 38px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(13, 24, 43, 0.08);
    backdrop-filter: blur(20px);
}

.contact-office-card,
.contact-form-panel {
    height: 100%;
}

.contact-form-intro h2 {
    margin: 0;
    max-width: 12ch;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.contact-form-intro p:not(.contact-form-kicker) {
    max-width: 52ch;
    margin: 16px 0 0;
    color: rgba(13, 24, 43, 0.72);
    line-height: 1.72;
}

.contact-flash {
    margin-top: 24px;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 0.95rem;
    line-height: 1.55;
}

.contact-flash-success {
    background: rgba(83, 157, 216, 0.1);
    color: #1b4f7a;
    border: 1px solid rgba(83, 157, 216, 0.2);
}

.contact-flash-error {
    background: rgba(177, 49, 49, 0.08);
    color: #8a2626;
    border: 1px solid rgba(177, 49, 49, 0.18);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 18px;
    margin-top: 28px;
}

.contact-form-grid label,
.admin-auth-form label,
.admin-update-form label {
    display: grid;
    gap: 10px;
}

.contact-form-grid span,
.admin-auth-form span,
.admin-update-form span {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(13, 24, 43, 0.66);
}

.contact-form-grid input,
.contact-form-grid textarea,
.admin-auth-form input,
.admin-update-form textarea,
.admin-update-form select {
    width: 100%;
    border: 1px solid rgba(13, 24, 43, 0.16);
    border-radius: 14px;
    background: #ffffff;
    color: var(--krg-navy);
    font: inherit;
    padding: 15px 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-grid input:focus,
.contact-form-grid textarea:focus,
.admin-auth-form input:focus,
.admin-update-form textarea:focus,
.admin-update-form select:focus {
    outline: none;
    border-color: rgba(83, 157, 216, 0.75);
    box-shadow: 0 0 0 4px rgba(83, 157, 216, 0.15);
}

.contact-form-grid textarea,
.admin-update-form textarea {
    resize: vertical;
    min-height: 180px;
}

.contact-form-full {
    grid-column: 1 / -1;
}

.contact-form-footer {
    display: flex;
    align-items: end;
    justify-content: flex-end;
    gap: 24px;
    padding-top: 8px;
}

.contact-submit-button,
.admin-auth-form button,
.admin-update-form button,
.admin-logout-link {
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #0d182b 0%, #23385d 100%);
    color: #fff;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit-button,
.admin-auth-form button,
.admin-update-form button {
    min-height: 54px;
    padding: 0 26px;
    box-shadow: 0 16px 36px rgba(13, 24, 43, 0.18);
}

.contact-submit-button:hover,
.admin-auth-form button:hover,
.admin-update-form button:hover,
.admin-logout-link:hover {
    transform: translateY(-1px);
}

.contact-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.contact-map-panel {
    grid-column: 1 / -1;
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid rgba(13, 24, 43, 0.08);
    box-shadow: 0 30px 90px rgba(13, 24, 43, 0.11);
    min-height: 320px;
    background: #ffffff;
}

.contact-map-panel iframe {
    display: block;
    width: 100%;
    height: 320px;
    border: 0;
    filter: saturate(0.92) contrast(1.04);
}

.admin-auth-page,
.admin-dashboard-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(83, 157, 216, 0.16), transparent 26%),
        linear-gradient(180deg, #eef2f7 0%, #f9fafc 100%);
    color: var(--krg-navy);
}

.admin-auth-shell,
.admin-dashboard-shell {
    width: min(1220px, calc(100vw - 40px));
    margin: 0 auto;
    padding: 48px 0 64px;
}

.admin-auth-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.admin-auth-panel {
    width: min(520px, 100%);
    padding: 38px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(13, 24, 43, 0.08);
}

.admin-login-panel {
    width: min(460px, 100%);
    text-align: center;
}

.admin-login-logo,
.admin-side-brand img {
    display: block;
    height: auto;
    object-fit: contain;
}

.admin-login-logo {
    width: min(250px, 72vw);
    margin: 0 auto;
}

.admin-side-brand img {
    width: min(240px, 100%);
}

.admin-auth-panel h1,
.admin-dashboard-header h1 {
    margin: 12px 0 0;
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.admin-auth-panel p:not(.admin-auth-kicker),
.admin-dashboard-header p:not(.admin-auth-kicker) {
    margin: 16px 0 0;
    color: rgba(13, 24, 43, 0.72);
    line-height: 1.7;
}

.admin-auth-form {
    display: grid;
    gap: 18px;
    margin-top: 26px;
}

.admin-login-panel .admin-auth-form {
    position: relative;
    z-index: 1;
    margin-top: 28px;
}

.admin-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 24px;
}

.admin-logout-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    text-decoration: none;
    box-shadow: 0 14px 32px rgba(13, 24, 43, 0.16);
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.admin-stats-grid article {
    padding: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(13, 24, 43, 0.08);
}

.admin-stats-grid strong {
    display: block;
    margin-top: 10px;
    font-size: 2.2rem;
    line-height: 1;
    letter-spacing: -0.05em;
}

.admin-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.4fr);
    gap: 20px;
    margin-top: 20px;
}

.admin-submissions-panel,
.admin-detail-panel {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(13, 24, 43, 0.08);
}

.admin-submissions-panel {
    padding: 20px;
}

.admin-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-filter-row a {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(13, 24, 43, 0.06);
    color: var(--krg-navy);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
}

.admin-filter-row a.is-active {
    background: rgba(13, 24, 43, 0.92);
    color: #fff;
}

.admin-submission-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    max-height: 620px;
    overflow: auto;
}

.admin-submission-item {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(13, 24, 43, 0.04);
    color: var(--krg-navy);
    text-decoration: none;
}

.admin-submission-item strong,
.admin-contact-grid article strong {
    display: block;
    font-size: 1rem;
    line-height: 1.4;
}

.admin-submission-item span {
    display: block;
    margin-top: 5px;
    font-size: 0.9rem;
    color: rgba(13, 24, 43, 0.62);
}

.admin-submission-item small {
    align-self: start;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(31, 106, 75, 0.12);
    color: #1d5c42;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.68rem;
    font-weight: 700;
}

.admin-submission-item.is-active {
    background: rgba(83, 157, 216, 0.13);
    border: 1px solid rgba(83, 157, 216, 0.25);
}

.admin-detail-panel {
    padding: 24px;
}

.admin-detail-meta {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: start;
}

.admin-detail-meta h2 {
    margin: 10px 0 0;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.admin-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.admin-status-pill.status-new {
    background: rgba(210, 127, 44, 0.14);
    color: #9a5919;
}

.admin-status-pill.status-reviewed {
    background: rgba(83, 157, 216, 0.14);
    color: #245a8a;
}

.admin-status-pill.status-archived {
    background: rgba(13, 24, 43, 0.1);
    color: rgba(13, 24, 43, 0.72);
}

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

.admin-contact-grid article,
.admin-message-block {
    padding: 18px;
    border-radius: 20px;
    background: rgba(13, 24, 43, 0.04);
}

.admin-contact-grid article strong {
    margin-top: 8px;
}

.admin-message-block {
    margin-top: 18px;
}

.admin-message-block p {
    margin: 12px 0 0;
    color: rgba(13, 24, 43, 0.76);
    line-height: 1.72;
}

.admin-update-form {
    display: grid;
    gap: 18px;
    margin-top: 22px;
}

.admin-empty-state {
    color: rgba(13, 24, 43, 0.62);
    line-height: 1.7;
}


.admin-auth-panel,
.admin-submissions-panel,
.admin-detail-panel,
.admin-stats-grid article {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow:
        0 24px 60px rgba(13, 24, 43, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(24px);
}

.admin-auth-topbar {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 18px;
}

.admin-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.admin-identity-chip,
.admin-sidebar-brand,
.admin-system-grid article,
.admin-detail-topline article,
.admin-setup-checklist article {
    background: rgba(255, 255, 255, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.36);
    box-shadow: 0 14px 32px rgba(13, 24, 43, 0.08);
    backdrop-filter: blur(16px);
}

.admin-identity-chip {
    display: grid;
    gap: 4px;
    min-width: 180px;
    padding: 14px 18px;
    border-radius: 22px;
}

.admin-identity-chip span,
.admin-sidebar-brand span {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(13, 24, 43, 0.48);
}

.admin-identity-chip strong,
.admin-sidebar-brand strong,
.admin-system-grid strong,
.admin-detail-topline strong {
    display: block;
    margin-top: 8px;
    font-size: 1rem;
}

.admin-setup-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(255, 255, 255, 0.48);
    box-shadow: 0 18px 44px rgba(13, 24, 43, 0.12);
    color: var(--krg-navy);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    backdrop-filter: blur(18px);
}

.admin-setup-link:hover {
    transform: translateY(-1px);
}

.admin-sidebar-brand {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
    padding: 18px;
    border-radius: 22px;
}

.admin-system-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.admin-system-grid article,
.admin-detail-topline article {
    padding: 16px;
    border-radius: 18px;
}

.admin-submission-list {
    position: relative;
    z-index: 1;
}

.admin-detail-topline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.admin-auth-grid {
    margin-top: 0;
}

.admin-setup-checklist {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
}

.admin-setup-checklist article {
    padding: 18px;
    border-radius: 20px;
}

.admin-setup-checklist strong {
    display: block;
    font-size: 1rem;
}

.admin-setup-checklist p {
    margin: 10px 0 0;
    color: rgba(13, 24, 43, 0.7);
    line-height: 1.66;
}

.admin-glass-orb {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.admin-glass-orb-a {
    width: 180px;
    height: 180px;
    top: -60px;
    right: -50px;
    background: radial-gradient(circle, rgba(83, 157, 216, 0.34) 0%, rgba(83, 157, 216, 0) 72%);
}

.admin-glass-orb-b {
    width: 140px;
    height: 140px;
    bottom: -48px;
    left: -28px;
    background: radial-gradient(circle, rgba(240, 197, 94, 0.2) 0%, rgba(240, 197, 94, 0) 74%);
}

.admin-auth-form button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

.admin-console-shell {
    width: min(1380px, calc(100vw - 40px));
    min-height: 100vh;
    margin: 0 auto;
    padding: 34px 0 48px;
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 20px;
}

.admin-side-menu,
.admin-console-main,
.admin-chart-panel {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow:
        0 24px 60px rgba(13, 24, 43, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(24px);
}

.admin-side-menu {
    border-radius: 30px;
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.admin-side-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    padding: 6px 2px 2px;
}

.admin-side-nav {
    display: grid;
    gap: 10px;
}

.admin-side-nav a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 18px;
    color: rgba(13, 24, 43, 0.68);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.admin-side-nav a.is-active {
    background: linear-gradient(135deg, #0d182b 0%, #23385d 100%);
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(13, 24, 43, 0.18);
}

.admin-side-logout {
    margin-top: auto;
}

.admin-console-main {
    border-radius: 34px;
    padding: 26px;
}

.admin-dashboard-header-compact {
    align-items: center;
}

.admin-dashboard-header-compact h1 {
    margin-top: 8px;
}

.admin-overview-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
}

.admin-chart-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.admin-chart-panel {
    border-radius: 30px;
    padding: 22px;
}

.admin-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.admin-panel-head h2 {
    margin: 0;
    font-size: 1.1rem;
    letter-spacing: -0.03em;
}

.admin-chart-panel canvas {
    width: 100% !important;
    height: 100% !important;
}

.admin-trend-panel {
    margin-top: 18px;
}

.admin-chart-canvas-wrap {
    position: relative;
    width: 100%;
    min-height: 250px;
}

.admin-chart-canvas-wrap-square {
    min-height: 340px;
    max-width: 340px;
    margin: 0 auto;
}

.admin-chart-canvas-wrap-wide {
    min-height: 320px;
}

.admin-message-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 22px;
}

.admin-messages-layout {
    margin-top: 18px;
}

.admin-placeholder-panel {
    margin-top: 18px;
}

.admin-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
}

.admin-toolbar-stack {
    align-items: start;
}

.admin-toolbar-actions,
.admin-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.admin-toolbar-link,
.admin-inline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid rgba(13, 24, 43, 0.12);
    background: rgba(255, 255, 255, 0.66);
    color: var(--krg-navy);
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(13, 24, 43, 0.08);
}

.admin-toolbar-link.is-primary,
.admin-inline-button.is-primary,
.admin-inline-button {
    background: linear-gradient(135deg, #0d182b 0%, #23385d 100%);
    color: #ffffff;
    border-color: transparent;
}

.admin-record-grid {
    display: grid;
    gap: 18px;
    margin-top: 18px;
}

.admin-record-card {
    padding: 24px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow:
        0 24px 60px rgba(13, 24, 43, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(24px);
}

.admin-record-card-detail {
    margin-top: 18px;
}

.admin-record-card-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: start;
}

.admin-record-card-head h2 {
    margin: 8px 0 0;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.admin-record-meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.admin-record-meta article,
.admin-copy-block,
.admin-form-section,
.admin-list-table-wrap {
    background: rgba(255, 255, 255, 0.54);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    box-shadow: 0 14px 32px rgba(13, 24, 43, 0.06);
    backdrop-filter: blur(14px);
}

.admin-record-meta article {
    padding: 16px 18px;
}

.admin-record-copy,
.admin-copy-block {
    color: rgba(13, 24, 43, 0.78);
    line-height: 1.72;
}

.admin-record-copy {
    margin: 18px 0 0;
}

.admin-detail-grid-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.admin-copy-block {
    padding: 20px;
}

.admin-form-shell {
    display: grid;
    gap: 18px;
    margin-top: 18px;
}

.admin-form-shell-compact {
    margin-top: 18px;
}

.admin-form-section {
    padding: 20px;
}

.admin-form-grid {
    display: grid;
    gap: 18px;
}

.admin-form-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-form-grid input,
.admin-form-grid select,
.admin-form-grid textarea,
.admin-filter-form select {
    width: 100%;
    border: 1px solid rgba(13, 24, 43, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--krg-navy);
    padding: 14px 16px;
}

.admin-form-grid input:focus,
.admin-form-grid select:focus,
.admin-form-grid textarea:focus,
.admin-filter-form select:focus {
    outline: none;
    border-color: rgba(83, 157, 216, 0.75);
    box-shadow: 0 0 0 4px rgba(83, 157, 216, 0.12);
}

.admin-filter-form {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 14px;
}

.admin-filter-form label {
    display: grid;
    gap: 8px;
    min-width: 220px;
}

.admin-list-table-wrap {
    margin-top: 8px;
    overflow: auto;
}

.admin-list-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 780px;
}

.admin-list-table th,
.admin-list-table td {
    padding: 16px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(13, 24, 43, 0.08);
    color: rgba(13, 24, 43, 0.82);
}

.admin-list-table th {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(13, 24, 43, 0.48);
}

.admin-list-table td a {
    font-weight: 700;
    color: #1f4f7f;
}

.admin-rich-editor {
    border: 1px solid rgba(13, 24, 43, 0.14);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
}

.admin-rich-editor .ql-toolbar.ql-snow {
    border: 0;
    border-bottom: 1px solid rgba(13, 24, 43, 0.08);
}

.admin-rich-editor .ql-container.ql-snow {
    border: 0;
    min-height: 220px;
    font: inherit;
}

.admin-checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 28px;
}

.admin-checkbox-row input {
    width: auto;
}

.admin-image-preview-panel {
    margin-top: 18px;
    padding: 18px;
}

.admin-image-preview-panel img {
    display: block;
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: 24px;
}

.admin-image-preview-panel-detail {
    background: rgba(255, 255, 255, 0.54);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    box-shadow: 0 14px 32px rgba(13, 24, 43, 0.06);
    backdrop-filter: blur(14px);
}

.admin-compact-stats {
    margin-top: 0;
}

.admin-trend-panel canvas {
    height: 320px !important;
}

.careers-page-shell {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(99, 187, 250, 0.14), transparent 28%),
        linear-gradient(180deg, #f4f8fd 0%, #fbfdff 100%);
    color: var(--krg-navy);
}

.news-page-shell,
.news-article-page-shell {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(99, 187, 250, 0.16), transparent 28%),
        radial-gradient(circle at bottom right, rgba(8, 16, 29, 0.08), transparent 30%),
        linear-gradient(180deg, #f3f7fb 0%, #fbfdff 100%);
    color: var(--krg-navy);
}

.news-page-main,
.news-article-main {
    min-height: 100vh;
    background: #f6f7f8;
}

.news-page-main {
    padding: 0 0 72px;
}

.news-article-main {
    padding: 152px 0 72px;
}

.news-page-intro-shell,
.news-article-hero-shell,
.news-section-shell,
.news-article-shell,
.news-related-shell {
    width: min(1120px, calc(100vw - 56px));
    margin: 0 auto;
}

.news-page-intro {
    margin-bottom: 26px;
}

.vertical-hero-news {
    min-height: 42svh;
}

.vertical-hero-news .vertical-hero-shell {
    min-height: 42svh;
    width: min(1120px, calc(100vw - 56px));
    padding: 132px 0 34px;
}

.vertical-hero-news .vertical-hero-title-block {
    padding: 18px 22px 20px;
    max-width: min(420px, 84vw);
}

.vertical-hero-news .vertical-hero-title-block h1 {
    font-size: clamp(2.4rem, 4.6vw, 4.1rem);
    line-height: 0.94;
}

.news-list-section {
    padding-top: 18px;
}

.news-page-intro-shell {
    padding: 0 0 10px;
}

.news-page-intro-shell h1 {
    margin: 8px 0 0;
    font-size: clamp(2.1rem, 3vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    color: var(--krg-navy);
}

.news-page-intro-copy {
    max-width: 680px;
    margin: 12px 0 0;
    color: rgba(13, 24, 43, 0.64);
    line-height: 1.65;
}

.news-article-hero {
    padding: 0 0 24px;
}

.news-article-panel,
.news-empty-panel,
.news-masonry-card,
.news-related-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(13, 24, 43, 0.09);
    box-shadow: none;
    backdrop-filter: none;
}

.news-article-panel {
    border-radius: 18px;
    padding: 32px;
}

.news-article-panel::before,
.news-masonry-card::before,
.news-related-card::before {
    display: none;
}

.news-article-hero-grid,
.news-article-layout,
.news-related-grid {
    display: grid;
    gap: 20px;
}

.news-article-hero-grid,
.news-article-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
}

.news-kicker,
.news-meta-kicker,
.news-card-kicker,
.news-article-kicker {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(13, 24, 43, 0.42);
}

.news-article-title h1 {
    margin: 12px 0 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--krg-navy);
}

.news-hero-aside p,
.news-masonry-card p,
.news-article-prose,
.news-related-card p,
.news-empty-panel p,
.news-article-sidebar p {
    color: rgba(13, 24, 43, 0.7);
    line-height: 1.62;
}

.news-hero-aside,
.news-article-sidebar {
    display: grid;
    gap: 12px;
    align-content: start;
    padding: 18px;
    border-radius: 14px;
    background: #eef2f5;
    border: 1px solid rgba(13, 24, 43, 0.06);
}

.news-article-facts {
    display: grid;
    gap: 12px;
}

.news-article-facts article {
    padding: 14px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(13, 24, 43, 0.08);
}

.news-article-facts span,
.news-card-meta span {
    display: block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(13, 24, 43, 0.46);
}

.news-article-facts strong {
    display: block;
    margin-top: 8px;
    font-size: 1rem;
    line-height: 1.1;
}

.news-section-shell {
    padding-bottom: 20px;
}

.news-filter-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px auto;
    gap: 14px;
    margin-bottom: 18px;
}

.news-filter-field {
    display: grid;
    gap: 8px;
}

.news-filter-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(13, 24, 43, 0.46);
}

.news-filter-field input,
.news-filter-field select {
    min-height: 48px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid #dde3e8;
    background: #f1f4f6;
    color: var(--krg-navy);
    font: inherit;
    box-shadow: none;
}

.news-filter-actions {
    display: flex;
    gap: 10px;
    align-items: end;
}

.news-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.news-tag-chip,
.news-tag-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-tag-chip {
    background: #edf1f4;
    color: rgba(13, 24, 43, 0.76);
}

.news-tag-chip.is-active,
.news-tag-badge {
    background: #23456d;
    color: #fff;
}

.news-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.news-section-heading h2,
.news-related-heading h2,
.news-lead-copy h2,
.news-masonry-card h3,
.news-related-card h3 {
    margin: 10px 0 0;
    letter-spacing: -0.04em;
}

.news-section-heading h2,
.news-related-heading h2,
.news-lead-copy h2 {
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    line-height: 1.02;
}

.news-empty-panel {
    border-radius: 16px;
    padding: 22px;
}

.news-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.news-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px 18px 0;
}

.news-card-topline,
.news-article-tag-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.news-card-media {
    display: block;
    margin: 0;
    overflow: hidden;
    background: #dfe6ec;
}

.news-card-media img,
.news-article-cover img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.news-card-media img {
    aspect-ratio: 16 / 10;
    transition: transform 220ms ease;
}

.news-masonry-card:hover .news-card-media img,
.news-related-card:hover .news-card-media img {
    transform: scale(1.03);
}

.news-card-meta article {
    min-width: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.news-card-meta strong {
    display: block;
    margin-top: 4px;
    color: var(--krg-navy);
    font-size: 0.94rem;
}

.news-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 12px;
    background: #1f3d63;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: none;
    border: 1px solid transparent;
}

.news-link-button.is-secondary {
    background: transparent;
    color: #1f3d63;
    box-shadow: none;
    border-color: #d7e0e8;
}

.news-lead-actions,
.news-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

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

.news-masonry-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0 0 18px;
    border-radius: 16px;
    break-inside: auto;
}

.news-masonry-card.is-emphasis {
    color: inherit;
}

.news-masonry-card h3,
.news-related-card h3 {
    margin: 0;
    font-size: 1.28rem;
    line-height: 1.14;
    letter-spacing: -0.03em;
    color: var(--krg-navy);
}

.news-masonry-card p {
    margin: 0;
    font-size: 0.96rem;
}

.news-empty-panel {
    text-align: center;
}

.news-article-shell {
    padding-bottom: 24px;
}

.news-article-layout {
    align-items: start;
}

.news-article-prose {
    padding: 28px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(13, 24, 43, 0.09);
    box-shadow: none;
    font-size: 1rem;
}

.news-article-prose p:first-child,
.news-article-prose h2:first-child,
.news-article-prose h3:first-child {
    margin-top: 0;
}

.news-article-cover {
    margin: 0 0 28px;
    overflow: hidden;
    border-radius: 26px;
}

.news-article-prose h2,
.news-article-prose h3 {
    letter-spacing: -0.03em;
    color: var(--krg-navy);
}

.news-article-prose a {
    color: #1f4f7f;
    text-decoration: underline;
}

.news-related-section {
    padding: 0 0 12px;
}

.news-related-heading {
    margin-bottom: 16px;
}

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

.news-related-card {
    padding: 0 0 18px;
    border-radius: 16px;
}

.news-related-card .news-card-body,
.news-related-card .news-card-topline,
.news-related-card .news-card-actions,
.news-related-card .news-card-meta {
    margin: 0;
}

.news-related-card .news-card-kicker,
.news-related-card .news-card-topline,
.news-related-card h3,
.news-related-card p,
.news-related-card .news-card-actions {
    margin-left: 18px;
    margin-right: 18px;
}

.news-related-card .news-card-kicker {
    margin-top: 14px;
}

@media (max-width: 980px) {
    .news-filter-bar {
        grid-template-columns: 1fr;
    }

    .news-filter-actions {
        align-items: stretch;
    }

    .news-article-hero-grid,
    .news-article-layout,
    .news-related-grid {
        grid-template-columns: 1fr;
    }

    .news-masonry {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-section-heading {
        flex-direction: column;
        align-items: start;
    }
}

@media (max-width: 720px) {
    .news-page-main,
    .news-article-main {
        min-height: 100vh;
        padding: 128px 0 56px;
    }

    .news-page-main {
        padding: 0 0 56px;
    }

    .news-page-intro-shell,
    .news-article-hero-shell,
    .news-section-shell,
    .news-article-shell,
    .news-related-shell {
        width: calc(100vw - 24px);
    }

    .vertical-hero-news .vertical-hero-shell,
    .careers-page-shell .vertical-hero-careers .vertical-hero-shell,
    .careers-page-shell .vertical-intro-shell,
    .careers-page-shell .company-text-shell,
    .careers-shell,
    .careers-shell-narrow {
        width: calc(100vw - 24px);
    }

    .vertical-hero-news,
    .careers-page-shell .vertical-hero-careers {
        min-height: 38svh;
    }

    .vertical-hero-news .vertical-hero-shell,
    .careers-page-shell .vertical-hero-careers .vertical-hero-shell {
        min-height: 38svh;
        padding: 118px 0 24px;
    }

    .careers-page-shell .vertical-intro,
    .careers-page-shell .company-text-section {
        padding-top: 24px;
    }

    .news-article-panel,
    .news-empty-panel,
    .news-masonry-card,
    .news-related-card,
    .news-article-prose {
        padding: 20px;
        border-radius: 14px;
    }

    .news-card-media {
        margin: -20px -20px 0;
    }

    .news-card-body {
        padding: 14px 0 0;
    }

    .careers-card-body {
        padding: 14px 0 0;
    }

    .careers-meta-grid {
        grid-template-columns: 1fr;
    }

    .news-masonry {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .news-related-grid {
        gap: 18px;
    }

    .news-link-button,
    .news-link-button.is-secondary {
        width: 100%;
    }
}

.careers-page-main,
.career-detail-main {
    padding-bottom: 72px;
    background: #f6f7f8;
}

.careers-shell {
    width: min(1120px, calc(100vw - 56px));
    margin: 0 auto;
}

.careers-page-shell .vertical-hero-careers {
    min-height: 44svh;
}

.careers-page-shell .vertical-hero-careers .vertical-hero-shell {
    min-height: 44svh;
    width: min(1120px, calc(100vw - 56px));
    padding: 124px 0 28px;
}

.careers-page-shell .vertical-hero-careers .vertical-hero-title-block {
    padding: 20px 22px;
    max-width: min(480px, 86vw);
}

.careers-page-shell .vertical-hero-careers .vertical-hero-title-block h1 {
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
}

.careers-page-shell .vertical-intro {
    padding: 40px 0 18px;
    background: #f6f7f8;
}

.careers-page-shell .vertical-intro::before,
.careers-page-shell .vertical-intro::after {
    display: none;
}

.careers-page-shell .vertical-intro-shell {
    width: min(1120px, calc(100vw - 56px));
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 20px;
    align-items: start;
}

.careers-page-shell .vertical-intro-kicker {
    margin-bottom: 10px;
    font-size: 0.72rem;
}

.careers-page-shell .vertical-intro-title h2 {
    max-width: 13ch;
    font-size: clamp(1.45rem, 2.6vw, 2.45rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.careers-page-shell .vertical-intro-copy {
    max-width: 30rem;
    padding-top: 12px;
}

.careers-page-shell .vertical-intro-copy p {
    font-size: 0.92rem;
    line-height: 1.56;
}

.careers-page-shell .company-text-section {
    padding: 8px 0 48px;
    background: #f6f7f8;
}

.careers-page-shell .company-text-shell {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 24px;
}

.careers-page-shell .company-text-grid {
    gap: 18px;
}

.careers-page-shell .company-text-heading h2 {
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.careers-page-shell .company-text-copy p,
.careers-page-shell .company-highlight-panel p,
.careers-page-shell .company-highlight-panel li {
    font-size: 0.9rem;
    line-height: 1.55;
}

.careers-page-shell .company-highlight-panel {
    gap: 12px;
    padding: 18px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(13, 24, 43, 0.05);
}

.careers-page-shell .company-highlight-panel a {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 12px;
    font-size: 0.72rem;
    box-shadow: none;
}

.careers-overview-section {
    padding: 32px 0 18px;
    background: #f6f7f8;
}

.careers-overview-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    gap: 28px;
    align-items: center;
}

.careers-overview-copy {
    display: grid;
    gap: 14px;
    max-width: 34rem;
}

.careers-overview-copy h2 {
    margin: 0;
    font-size: clamp(1.5rem, 2.6vw, 2.4rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
    color: var(--krg-navy);
}

.careers-overview-copy p,
.careers-overview-list li {
    margin: 0;
    color: rgba(13, 24, 43, 0.76);
    font-size: 0.94rem;
    line-height: 1.58;
}

.careers-overview-list {
    margin: 4px 0 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
}

.careers-overview-media {
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(13, 24, 43, 0.08);
    box-shadow: 0 12px 26px rgba(13, 24, 43, 0.06);
    min-height: 320px;
}

.careers-overview-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.careers-hero-section {
    padding: 164px 0 36px;
}

.careers-hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.7fr);
    gap: 24px;
    align-items: end;
}

.careers-hero-copy h1 {
    margin: 10px 0 0;
    max-width: 12ch;
    font-size: clamp(3rem, 6vw, 5.6rem);
    line-height: 0.95;
    letter-spacing: -0.07em;
}

.careers-hero-copy p:not(.contact-hero-kicker) {
    max-width: 62ch;
    margin: 18px 0 0;
    color: rgba(13, 24, 43, 0.76);
    line-height: 1.72;
}

.careers-highlight-card,
.careers-section-card,
.careers-card,
.careers-empty-panel,
.career-hero-panel,
.career-detail-panel,
.career-application-panel {
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(13, 24, 43, 0.08);
    box-shadow: 0 30px 90px rgba(13, 24, 43, 0.1);
    backdrop-filter: blur(18px);
}

.careers-highlight-card {
    padding: 28px;
}

.careers-highlight-card span,
.careers-meta-grid span {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(13, 24, 43, 0.5);
}

.careers-highlight-card strong {
    display: block;
    margin-top: 12px;
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: -0.06em;
}

.careers-highlight-card p {
    margin: 14px 0 0;
    color: rgba(13, 24, 43, 0.72);
    line-height: 1.7;
}

.careers-content-section,
.careers-list-section {
    padding-top: 18px;
}

.careers-content-grid,
.career-detail-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.careers-culture-stack {
    display: grid;
    gap: 18px;
}

.careers-section-card,
.career-detail-panel,
.career-application-panel,
.career-hero-panel {
    padding: 28px;
}

.careers-section-card-feature {
    min-height: 100%;
}

.careers-sectors-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(233, 242, 252, 0.92) 100%);
}

.careers-section-card h2,
.career-detail-panel h1,
.career-hero-panel h1 {
    margin: 10px 0 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.careers-section-card p:not(.contact-form-kicker) {
    margin: 16px 0 0;
    color: rgba(13, 24, 43, 0.74);
    line-height: 1.72;
}

.careers-bullet-list {
    margin: 16px 0 0;
    padding-left: 18px;
    color: rgba(13, 24, 43, 0.78);
    line-height: 1.8;
}

.careers-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.careers-chip-grid span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(13, 24, 43, 0.06);
    color: var(--krg-navy);
    font-size: 0.84rem;
    font-weight: 700;
}

.careers-section-heading {
    margin-bottom: 14px;
}

.careers-section-heading h2 {
    margin: 8px 0 0;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    letter-spacing: -0.04em;
}

.careers-card-grid {
    display: grid;
    gap: 20px;
}

.careers-card-grid-featured {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.careers-card-grid-related {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.careers-card {
    padding: 0 0 16px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(13, 24, 43, 0.09);
    box-shadow: 0 12px 26px rgba(13, 24, 43, 0.06);
    backdrop-filter: none;
}

.careers-card-featured {
    overflow: hidden;
}

.careers-card-media {
    margin: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.careers-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px 0;
}

.careers-card-heading {
    display: grid;
    gap: 6px;
}

.careers-card-media img,
.career-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.careers-card h3 {
    margin: 0;
    font-size: 1.18rem;
    line-height: 1.14;
    letter-spacing: -0.03em;
}

.careers-card p:not(.contact-form-kicker) {
    margin: 0;
    color: rgba(13, 24, 43, 0.74);
    font-size: 0.94rem;
    line-height: 1.58;
}

.careers-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 0;
}

.careers-meta-grid article {
    padding: 12px;
    border-radius: 12px;
    background: #f3f6f8;
    border: 1px solid rgba(13, 24, 43, 0.06);
}

.careers-meta-grid strong {
    display: block;
    margin-top: 6px;
    color: var(--krg-navy);
    font-size: 0.92rem;
    line-height: 1.25;
}

.careers-meta-grid-compact {
    grid-template-columns: 1fr;
}

.careers-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.careers-action-row-end {
    justify-content: flex-end;
}

.careers-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid rgba(13, 24, 43, 0.12);
    background: #ffffff;
    color: var(--krg-navy);
    font-weight: 700;
    text-decoration: none;
    box-shadow: none;
}

.careers-link-button.is-primary {
    border-color: transparent;
    background: #1f3d63;
    color: #ffffff;
}

.career-detail-shell {
    padding-top: 164px;
}

.career-hero-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.85fr);
    gap: 18px;
    margin-bottom: 18px;
}

.career-hero-copy-block {
    display: grid;
    align-content: start;
}

.career-hero-aside {
    display: grid;
    gap: 18px;
    align-content: start;
}

.career-hero-media {
    min-height: 300px;
    border-radius: 24px;
    overflow: hidden;
}

.career-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.career-panel-head h2 {
    margin: 0;
    font-size: 1.1rem;
    letter-spacing: -0.03em;
}

.career-copy-block {
    padding: 20px;
    border-radius: 24px;
    background: rgba(13, 24, 43, 0.04);
    color: rgba(13, 24, 43, 0.78);
    line-height: 1.72;
}

.career-copy-block > *:first-child {
    margin-top: 0;
}

.career-copy-block ul,
.career-copy-block ol {
    margin: 14px 0 0;
    padding-left: 20px;
}

.career-form-grid {
    display: grid;
    gap: 18px;
}

.career-form-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.career-form-grid label {
    display: grid;
    gap: 10px;
}

.career-form-grid span {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(13, 24, 43, 0.66);
}

.career-form-grid input,
.career-form-grid textarea,
.career-form-grid select {
    width: 100%;
    border: 1px solid rgba(13, 24, 43, 0.16);
    border-radius: 14px;
    background: #ffffff;
    color: var(--krg-navy);
    padding: 15px 16px;
}

.career-form-grid input:focus,
.career-form-grid textarea:focus,
.career-form-grid select:focus {
    outline: none;
    border-color: rgba(83, 157, 216, 0.74);
    box-shadow: 0 0 0 4px rgba(83, 157, 216, 0.12);
}

.careers-shell-narrow {
    width: min(1120px, calc(100vw - 56px));
    margin: 0 auto;
}

.career-meta-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
}

.career-application-panel p,
.career-detail-panel p,
.career-file-note {
    color: rgba(13, 24, 43, 0.74);
    line-height: 1.72;
}

.career-apply-form {
    display: grid;
    gap: 18px;
}

.career-cv-highlight {
    padding: 20px;
    border-radius: 22px;
    border: 1px solid rgba(83, 157, 216, 0.36);
    background: linear-gradient(145deg, rgba(99, 187, 250, 0.14) 0%, rgba(99, 187, 250, 0.04) 100%);
    box-shadow: 0 14px 28px rgba(10, 27, 52, 0.08);
}

.career-cv-kicker {
    margin: 0 0 10px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1f4f7f;
}

.career-cv-upload {
    display: grid;
    gap: 10px;
}

.career-cv-upload > span {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--krg-navy);
}

.career-cv-upload input[type="file"] {
    width: 100%;
    border: 1px dashed rgba(31, 79, 127, 0.5);
    border-radius: 14px;
    background: #ffffff;
    color: var(--krg-navy);
    padding: 14px;
}

.career-cv-upload input[type="file"]::file-selector-button {
    border: 0;
    border-radius: 10px;
    margin-right: 12px;
    padding: 10px 14px;
    background: #1f4f7f;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}

.career-cv-upload input[type="file"]:focus {
    outline: none;
    border-color: rgba(83, 157, 216, 0.9);
    box-shadow: 0 0 0 4px rgba(83, 157, 216, 0.16);
}

.career-file-note {
    display: block;
    margin-top: 8px;
    font-size: 0.84rem;
}

.careers-list-section-secondary {
    padding-top: 20px;
}

.careers-list-table-wrap {
    overflow: auto;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(13, 24, 43, 0.08);
    box-shadow: 0 10px 24px rgba(13, 24, 43, 0.06);
}

.careers-list-table {
    width: 100%;
    min-width: 920px;
    border-collapse: collapse;
}

.careers-list-table th,
.careers-list-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(13, 24, 43, 0.08);
    color: rgba(13, 24, 43, 0.82);
    vertical-align: top;
}

.careers-list-table th {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(13, 24, 43, 0.48);
}

.careers-list-table td strong {
    display: block;
    font-size: 0.94rem;
}

.careers-list-table td p {
    margin: 8px 0 0;
    color: rgba(13, 24, 43, 0.66);
    font-size: 0.9rem;
    line-height: 1.55;
}

.careers-list-table td a {
    font-weight: 700;
    color: #1f4f7f;
}

.careers-list-section-tight {
    padding-top: 18px;
}


.about-intro-section {
    min-height: 100svh;
    padding: clamp(40px, 6svh, 72px) 0;
    background: #ffffff;
    scroll-margin-top: 108px;
    display: flex;
    align-items: center;
}

.about-intro-shell {
    width: 100%;
    min-height: calc(100svh - 128px);
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 0;
}

.about-intro-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 clamp(18px, 2.2vw, 34px) 0 clamp(24px, 6vw, 96px);
    color: var(--krg-navy);
    max-width: none;
}

.about-intro-copy .section-kicker {
    margin-bottom: 16px;
    color: rgba(13, 24, 43, 0.72);
}

@media (max-width: 860px) {
    .contact-hero-shell,
    .contact-hub-shell,
    .admin-dashboard-grid,
    .careers-hero-shell,
    .careers-content-grid,
    .career-detail-layout,
    .career-hero-panel {
        grid-template-columns: 1fr;
    }

    .contact-office-copy,
    .contact-office-details {
        padding-left: 54px;
    }

    .contact-hero-media {
        min-height: 280px;
    }

    .contact-form-grid,
    .admin-contact-grid,
    .admin-stats-grid,
    .admin-system-grid,
    .admin-detail-topline,
    .careers-meta-grid,
    .career-meta-stack {
        grid-template-columns: 1fr 1fr;
    }

    .contact-form-footer,
    .admin-dashboard-header,
    .admin-detail-meta,
    .admin-auth-topbar,
    .careers-action-row {
        flex-direction: column;
        align-items: start;
    }

    .admin-header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .admin-console-shell,
    .admin-chart-grid,
    .admin-overview-stats,
    .admin-message-stats {
        grid-template-columns: 1fr;
    }

    .admin-toolbar,
    .admin-toolbar-stack,
    .admin-record-card-head,
    .admin-card-actions,
    .admin-toolbar-actions,
    .admin-filter-form,
    .admin-detail-grid-split {
        flex-direction: column;
        align-items: stretch;
        grid-template-columns: 1fr;
    }

    .admin-record-meta,
    .admin-form-grid-2 {
        grid-template-columns: 1fr 1fr;
    }

    .admin-chart-canvas-wrap-square,
    .admin-chart-canvas-wrap-wide {
        min-height: 280px;
    }
}

@media (max-width: 720px) {
    .contact-hero-section {
        padding-top: 138px;
    }

    .contact-hero-shell,
    .contact-hub-shell,
    .admin-auth-shell,
    .admin-dashboard-shell,
    .admin-console-shell,
    .careers-shell {
        width: calc(100vw - 24px);
    }

    .career-hero-panel,
    .careers-card-grid-featured {
        grid-template-columns: 1fr;
    }

    .admin-login-logo,
    .admin-side-brand img {
        width: min(180px, 100%);
    }

    .admin-record-meta,
    .admin-form-grid-2,
    .admin-detail-grid-split {
        grid-template-columns: 1fr;
    }

    .admin-toolbar-link,
    .admin-inline-button {
        width: 100%;
    }

    .contact-office-card,
    .contact-form-panel,
    .contact-map-panel,
    .admin-submissions-panel,
    .admin-detail-panel,
    .admin-auth-panel,
    .admin-stats-grid article {
        border-radius: 24px;
    }

    .contact-office-card,
    .contact-form-panel,
    .contact-map-panel,
    .admin-auth-panel,
    .admin-detail-panel,
    .admin-submissions-panel {
        padding: 24px;
    }

    .contact-map-panel {
        padding: 0;
        min-height: 260px;
    }

    .contact-office-copy,
    .contact-office-details {
        padding-left: 28px;
    }

    .contact-pattern {
        width: 58px;
        background-size: 26px 26px;
    }

    .contact-office-copy h3 {
        font-size: 1.45rem;
    }

    .contact-form-grid,
    .admin-contact-grid,
    .admin-stats-grid,
    .admin-system-grid,
    .admin-detail-topline,
    .careers-meta-grid,
    .career-meta-stack {
        grid-template-columns: 1fr;
    }

    .contact-submit-button,
    .admin-auth-form button,
    .admin-update-form button,
    .admin-logout-link {
        width: 100%;
    }

    .contact-map-panel iframe {
        height: 260px;
    }

    .admin-header-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-identity-chip {
        min-width: 0;
        width: 100%;
    }

    .admin-console-main {
        padding: 18px;
    }

    .career-form-grid-2,
    .careers-meta-grid,
    .career-meta-stack {
        grid-template-columns: 1fr;
    }

    .careers-overview-shell {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .careers-overview-media {
        min-height: 240px;
    }
}

@media (max-width: 720px) {
    .vertical-hero-careers .vertical-hero-media {
        background-image: url("images/hero-officereception-portrait.webp");
    }
}

.about-intro-copy h2 {
    margin: 0;
    max-width: 9.4ch;
    font-size: clamp(2.5rem, 3.7vw, 4.1rem);
    line-height: 0.9;
    letter-spacing: -0.06em;
    font-weight: 600;
    color: var(--krg-navy);
}

.about-intro-copy p {
    max-width: 43ch;
    margin: 16px 0 0;
    color: rgba(13, 24, 43, 0.8);
    font-size: 0.98rem;
    line-height: 1.58;
}

.about-intro-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 54px;
    margin-top: 24px;
    padding: 0 28px;
    border-radius: 999px;
    background: var(--krg-navy);
    color: var(--krg-white);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 18px 28px rgba(13, 24, 43, 0.16);
    transition: transform var(--krg-transition), box-shadow var(--krg-transition);
}

.about-intro-cta:hover,
.about-intro-cta:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 34px rgba(13, 24, 43, 0.22);
}

.about-intro-media {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: calc(100svh - 128px);
    display: block;
    overflow: hidden;
}

.about-intro-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    object-position: center;
}

.impact-section {
    padding: 0 0 28px;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 36%, #f3f5f8 36%, #f3f5f8 100%);
    scroll-margin-top: 108px;
}

.impact-shell {
    width: min(1220px, calc(100vw - 72px));
    margin: 0 auto;
}

.impact-panel {
    position: relative;
    padding: clamp(20px, 2.5vw, 28px) clamp(22px, 3vw, 36px);
    border-radius: 30px;
    background: linear-gradient(135deg, #10213b 0%, #173055 100%);
    color: var(--krg-white);
    box-shadow: 0 24px 46px rgba(8, 16, 29, 0.16);
}

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

.impact-stat {
    padding: 18px 26px 16px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.impact-stat:last-child {
    border-right: 0;
}

.impact-value {
    margin: 0;
    color: var(--krg-white);
    font-size: clamp(2.8rem, 4.2vw, 4.2rem);
    line-height: 0.9;
    letter-spacing: -0.06em;
    font-weight: 600;
}

.impact-stat h3 {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.business-verticals-section {
    min-height: 100svh;
    padding: 46px 0 34px;
    background: #f3f5f8;
    color: var(--krg-navy);
    scroll-margin-top: 0;
    display: flex;
    align-items: center;
}

.business-verticals-shell {
    width: min(1680px, calc(100vw - 72px));
    margin: 0 auto;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 26px;
    min-height: calc(100svh - 156px);
}

.business-verticals-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
}

.business-verticals-heading h2 {
    margin: 0;
    font-size: clamp(2.25rem, 3.2vw, 3.4rem);
    line-height: 0.92;
    letter-spacing: -0.05em;
    font-weight: 600;
}

.business-verticals-tabs {
    display: inline-flex;
    gap: 28px;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(13, 24, 43, 0.14);
}

.business-verticals-tabs span {
    position: relative;
    color: rgba(13, 24, 43, 0.34);
    font-size: 0.96rem;
    font-weight: 600;
    white-space: nowrap;
}

.business-verticals-tabs .is-active {
    color: var(--krg-navy);
}

.business-verticals-tabs .is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -11px;
    height: 3px;
    border-radius: 999px;
    background: var(--krg-navy);
}

.business-verticals-layout {
    display: grid;
    grid-template-columns: minmax(560px, 0.84fr) minmax(720px, 1.16fr);
    gap: 26px;
    min-height: clamp(560px, 72svh, 680px);
    height: clamp(560px, 72svh, 680px);
}

.business-verticals-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(116px, 1fr);
    gap: 16px;
}

.vertical-card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: end;
    justify-content: flex-start;
    padding: 18px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: var(--krg-white);
    text-align: left;
    background-color: var(--krg-navy);
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    transition: transform var(--krg-transition), box-shadow var(--krg-transition), border-color var(--krg-transition);
}

.vertical-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 13, 24, 0.12) 0%, rgba(7, 13, 24, 0.78) 100%);
}

.vertical-card span {
    position: relative;
    z-index: 1;
    font-size: 0.96rem;
    font-weight: 600;
    line-height: 1.2;
}

.vertical-card:hover,
.vertical-card:focus-visible,
.vertical-card.is-active {
    transform: translateY(-2px);
    border-color: rgba(13, 24, 43, 0.52);
    box-shadow: 0 16px 30px rgba(13, 24, 43, 0.14);
}

.vertical-card.is-active::before {
    background: linear-gradient(180deg, rgba(13, 24, 43, 0.18) 0%, rgba(13, 24, 43, 0.72) 100%);
}

.vertical-card-manufacturing {
    background-image: url("images/New%20Images/Greenfix%20Interior.webp");
}

.vertical-card-agriculture {
    background-image: url("images/coffee%20agri.webp");
}

.vertical-card-agro {
    background-image: url("images/New%20Images/Flour%20Machinery%202.webp");
}

.vertical-card-trading {
    background-image: url("images/Hero-officereception-wide.webp");
}

.vertical-card-construction {
    background-image: url("images/Hero-construction-web.webp");
}

.vertical-card-real-estate {
    background-image: url("images/Hero-Realestate-wide.webp");
}

.vertical-card-mining {
    background-image: url("images/Hero-Mining-web.webp");
}

.vertical-card-hospitality {
    background-image: url("images/Hero-officereception-wide.webp");
}

.vertical-feature {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    min-height: clamp(560px, 72svh, 680px);
    background: var(--krg-navy);
}

.vertical-feature-media,
.vertical-feature-overlay {
    position: absolute;
    inset: 0;
}

.vertical-feature-media {
    background-image: url("images/New%20Images/Greenfix%20Interior.webp");
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.vertical-feature-overlay {
    background: linear-gradient(180deg, rgba(7, 13, 24, 0.08) 0%, rgba(7, 13, 24, 0.24) 42%, rgba(7, 13, 24, 0.72) 100%);
}

.vertical-feature-copy {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 34px 34px 34px;
    color: var(--krg-white);
}

.vertical-feature-kicker {
    margin: 0 0 10px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.74);
}

.vertical-feature h3 {
    margin: 0;
    max-width: 15ch;
    font-size: clamp(2rem, 2.8vw, 3.05rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
    font-weight: 600;
}

.vertical-feature-summary {
    max-width: 52ch;
    margin: 16px 0 0;
    font-size: 0.96rem;
    line-height: 1.62;
    color: rgba(255, 255, 255, 0.9);
}

.vertical-feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.vertical-feature-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.vertical-feature-cta {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 62px;
    margin-top: 24px;
    padding: 0 30px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--krg-white);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vertical-feature-cta:hover,
.vertical-feature-cta:focus-visible {
    background: rgba(255, 255, 255, 0.18);
}

.sustainability-section {
    padding: 0;
    background: #f3f5f8;
}

.sustainability-shell {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 720px;
    margin: 0;
    border-radius: 0;
    background: var(--krg-navy);
}

.sustainability-media,
.sustainability-overlay {
    position: absolute;
    inset: 0;
}

.sustainability-media {
    background-image: url("images/sustainability.webp");
    background-size: cover;
    background-position: center center;
    transform: scale(1.02);
}

.sustainability-overlay {
    background:
        linear-gradient(90deg, rgba(7, 13, 24, 0.72) 0%, rgba(7, 13, 24, 0.44) 32%, rgba(7, 13, 24, 0.16) 64%, rgba(7, 13, 24, 0.1) 100%),
        linear-gradient(180deg, rgba(7, 13, 24, 0.12) 0%, rgba(7, 13, 24, 0.18) 45%, rgba(7, 13, 24, 0.56) 100%);
}

.sustainability-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 720px;
    width: min(540px, calc(100vw - 96px));
    padding: 64px 0 64px max(36px, calc((100vw - 1220px) / 2 + 34px));
    color: var(--krg-white);
}

.sustainability-kicker {
    margin: 0 0 14px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.sustainability-copy h2 {
    margin: 0;
    max-width: 11ch;
    font-size: clamp(2.5rem, 3.8vw, 4.4rem);
    line-height: 0.92;
    letter-spacing: -0.06em;
    font-weight: 500;
}

.sustainability-copy p:not(.sustainability-kicker) {
    max-width: 45ch;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.62;
}

.sustainability-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 56px;
    margin-top: 28px;
    padding: 0 28px;
    border-radius: 999px;
    background: var(--krg-sand);
    color: var(--krg-navy);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 18px 32px rgba(5, 14, 27, 0.16);
    transition: transform var(--krg-transition), box-shadow var(--krg-transition), background var(--krg-transition);
}

.sustainability-cta:hover,
.sustainability-cta:focus-visible {
    transform: translateY(-2px);
    background: var(--krg-sand-deep);
    box-shadow: 0 22px 36px rgba(5, 14, 27, 0.22);
}

.cta-section {
    padding: 18px 0 22px;
    background: #f3f5f8;
}

.cta-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(440px, 0.96fr) minmax(430px, 1.04fr);
    align-items: stretch;
    width: min(1360px, calc(100vw - 72px));
    min-height: 214px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    background: var(--krg-navy);
    box-shadow: 0 14px 28px rgba(13, 24, 43, 0.1);
}

.cta-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0%, rgba(255, 255, 255, 0) 34%);
    pointer-events: none;
}

.cta-kicker {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.64);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.68rem;
    font-weight: 700;
}

.cta-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: stretch;
    width: min(460px, calc(100% - 84px));
    padding: 30px 34px 30px 54px;
    color: var(--krg-white);
}

.cta-copy h2 {
    margin: 0;
    max-width: 11.5ch;
    font-size: clamp(1.45rem, 1.9vw, 2rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
    font-weight: 500;
    text-wrap: balance;
}

.cta-text {
    max-width: 42ch;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.84rem;
    line-height: 1.65;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 46px;
    margin-top: 18px;
    padding: 0 20px;
    border-radius: 16px;
    background: var(--krg-sand);
    color: var(--krg-navy);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    transition: transform var(--krg-transition), box-shadow var(--krg-transition), background var(--krg-transition);
}

.cta-button:hover,
.cta-button:focus-visible {
    transform: translateY(-2px);
    background: var(--krg-sand-deep);
    box-shadow: 0 20px 32px rgba(5, 14, 27, 0.2);
}

.cta-media {
    min-height: 214px;
    margin: 10px 10px 10px 0;
    border-radius: 24px;
    background-image:
        linear-gradient(90deg, rgba(13, 24, 43, 0.58) 0%, rgba(13, 24, 43, 0.28) 12%, rgba(13, 24, 43, 0.08) 24%, rgba(13, 24, 43, 0.01) 38%, rgba(13, 24, 43, 0) 56%),
        linear-gradient(180deg, rgba(13, 24, 43, 0.16) 0%, rgba(13, 24, 43, 0) 34%, rgba(13, 24, 43, 0.18) 100%),
        url("images/Hero-GreenFix-Plastic-wide.webp");
    background-size: cover;
    background-position: 34% center;
}

.site-footer {
    background: var(--krg-paper);
    color: var(--krg-navy);
}

.footer-top {
    position: relative;
    overflow: hidden;
    background: var(--krg-navy);
    color: var(--krg-white);
}

.footer-top::before,
.footer-top::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 28vw;
    pointer-events: none;
}

.footer-top::before {
    left: 0;
    background: linear-gradient(90deg, rgba(99, 187, 250, 0.12) 0%, rgba(99, 187, 250, 0) 100%);
}

.footer-top::after {
    right: 0;
    opacity: 0.7;
    transform: scaleX(-1);
    background: linear-gradient(90deg, rgba(99, 187, 250, 0.08) 0%, rgba(99, 187, 250, 0) 100%);
}

.footer-top-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.2fr) minmax(220px, 0.7fr);
    align-items: start;
    gap: 34px;
    width: min(1360px, calc(100vw - 72px));
    margin: 0 auto;
    padding: 44px 0 42px;
}

.footer-brand-panel {
    display: grid;
    align-content: start;
    gap: 18px;
    max-width: 320px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    width: max-content;
}

.footer-brand-copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    line-height: 1.68;
}

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

.footer-column {
    display: grid;
    gap: 10px;
}

.footer-heading {
    margin: 0 0 6px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.94rem;
    line-height: 1.45;
}

.footer-column a.is-emphasis {
    color: var(--krg-sand);
}

.footer-address {
    justify-self: end;
    display: grid;
    gap: 6px;
}

.footer-address p,
.footer-address a {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.55;
}

.footer-bottom {
    border-top: 1px solid rgba(13, 24, 43, 0.08);
}

.footer-bottom-shell {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 10px;
    width: min(1360px, calc(100vw - 72px));
    margin: 0 auto;
    padding: 14px 0 16px;
}

.footer-brand img {
    display: block;
    width: 258px;
    max-width: 100%;
}

.footer-meta {
    display: grid;
    gap: 6px;
}

.footer-meta p {
    margin: 0;
    color: rgba(13, 24, 43, 0.78);
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-meta {
    justify-self: center;
    text-align: center;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.985);
    filter: blur(3px);
    transition:
        opacity 520ms ease,
        transform 820ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 720ms ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll,
    .reveal-on-scroll.is-visible {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}

@media (max-width: 1100px) {
    .header-shell {
        width: var(--header-width);
        margin-top: 14px;
    }

    .nav-bar {
        min-height: 72px;
        padding: 0 16px 0 20px;
        justify-content: space-between;
    }

    .main-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 10px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 12px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--krg-shadow);
    }

    .nav-shell.is-mobile-open .main-nav {
        display: flex;
    }

    .nav-item {
        border-bottom: 1px solid rgba(13, 24, 43, 0.08);
    }

    .nav-item:last-child {
        border-bottom: 0;
    }

    .nav-link {
        display: flex;
        width: 100%;
        justify-content: flex-start;
        align-items: center;
        padding: 15px 12px;
        font-size: 0.88rem;
    }

    .nav-item.has-mega .nav-link {
        justify-content: space-between;
    }

    .nav-item.has-mega .nav-link::after {
        content: "+";
        font-size: 1rem;
        font-weight: 400;
    }

    .nav-item.has-mega.is-open .nav-link::after {
        content: "-";
    }

    .menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .mobile-submenu {
        display: none;
        padding: 0 12px 10px;
    }

    .nav-item.is-open .mobile-submenu {
        display: grid;
        gap: 2px;
    }

    .mobile-submenu a {
        padding: 9px 0 9px 14px;
        color: rgba(13, 24, 43, 0.78);
        font-size: 0.8rem;
        line-height: 1.35;
    }

    .mega-surface {
        display: none;
    }

    .hero-content {
        width: min(420px, calc(100vw - 72px));
        margin-left: calc((100vw - var(--hero-shell-width)) / 2);
        padding: 132px 0 74px;
    }

    .hero-content h1,
    .hero-content h2 {
        max-width: 10ch;
        font-size: clamp(2rem, 7.8vw, 3.2rem);
        line-height: 1.01;
    }

    .hero-copy {
        max-width: 32ch;
        font-size: 0.88rem;
        line-height: 1.66;
    }

    .hero-progress {
        left: calc((100vw - var(--hero-shell-width)) / 2);
        right: 24px;
        bottom: 18px;
        gap: 10px;
    }

    .hero-progress-item {
        flex: 1;
        width: auto;
    }

    .about-intro-section {
        min-height: 100svh;
        padding: 34px 0;
        display: flex;
    }

    .about-intro-shell {
        width: 100%;
        min-height: calc(100svh - 96px);
        margin: 0;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .about-intro-copy {
        max-width: none;
    }

    .impact-shell {
        width: calc(100vw - 32px);
    }

    .about-intro-copy h2 {
        max-width: 9.8ch;
        font-size: clamp(2.15rem, 4.1vw, 3.15rem);
        line-height: 0.91;
    }

    .about-intro-copy p {
        max-width: 44ch;
        font-size: 0.9rem;
        line-height: 1.5;
        margin-top: 14px;
    }

    .about-intro-cta {
        min-height: 48px;
        margin-top: 20px;
        padding: 0 24px;
        font-size: 0.72rem;
    }

    .about-intro-media {
        width: 100%;
        min-height: calc(100svh - 96px);
        height: 100%;
    }

    .sustainability-copy {
        min-height: 620px;
        width: min(480px, calc(100vw - 72px));
        padding-left: max(24px, calc((100vw - 1220px) / 2 + 24px));
    }

    .cta-shell {
        width: calc(100vw - 32px);
        grid-template-columns: minmax(330px, 0.88fr) minmax(300px, 1.12fr);
        min-height: 220px;
    }

    .cta-copy {
        width: min(420px, calc(100% - 52px));
        padding: 22px 28px 22px 36px;
    }

    .cta-copy h2 {
        max-width: 12ch;
        font-size: clamp(1.22rem, 2.35vw, 1.62rem);
    }

    .cta-text {
        max-width: 34ch;
        font-size: 0.76rem;
    }

    .cta-media {
        min-height: 220px;
        margin: 10px 10px 10px 0;
        border-radius: 24px;
        background-position: 40% center;
    }

    .footer-top-shell,
    .footer-bottom-shell {
        width: calc(100vw - 32px);
    }

    .footer-top-shell {
        grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
        gap: 28px;
    }

    .footer-brand-panel {
        grid-column: 1 / -1;
        max-width: 440px;
    }

    .footer-bottom-shell {
        width: calc(100vw - 32px);
        gap: 10px;
    }

    .footer-meta {
        justify-self: center;
    }
}

@media (max-width: 860px) {
    .company-hero-shell,
    .company-intro-shell,
    .company-split-shell,
    .company-text-shell,
    .company-media-band-shell {
        width: calc(100vw - 32px);
    }

    .company-hero {
        min-height: auto;
    }

    .company-hero-shell {
        min-height: auto;
        padding: 144px 0 68px;
    }

    .company-hero h1 {
        max-width: 11ch;
        font-size: clamp(2.8rem, 10vw, 4.8rem);
    }

    .company-intro-section {
        padding: 72px 0 36px;
    }

    .company-intro-shell,
    .company-split-shell,
    .company-text-shell {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .company-media-band,
    .company-media-band.is-secondary,
    .company-split-section,
    .company-text-section {
        padding-bottom: 40px;
    }

    .company-media-band-shell {
        min-height: 300px;
    }

    .company-split-media {
        min-height: 448px;
    }

    .company-split-section.is-reverse .company-split-media,
    .company-split-section.is-reverse .company-split-copy {
        order: initial;
    }

    .company-split-image.is-primary {
        width: min(44%, 240px);
        height: 350px;
    }

    .company-split-image.is-secondary {
        width: min(56%, 330px);
        height: 270px;
        top: 78px;
    }

    .company-highlight-panel {
        padding: 24px 24px;
    }

    .vertical-intro {
        padding: 76px 0 38px;
    }

    .vertical-intro-shell,
    .company-showcase-shell {
        width: calc(100vw - 32px);
    }

    .vertical-intro-shell,
    .company-showcase-shell {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vertical-intro-copy {
        padding-top: 0;
    }

    .vertical-intro-art {
        opacity: 0.68;
    }

    .vertical-intro-arrow-top {
        right: 8%;
        left: auto;
    }

    .vertical-intro-arrow-center {
        left: 50%;
        transform: translateX(-50%);
    }

    .vertical-intro-arrow-right {
        display: none;
    }

    .vertical-intro-title h2,
    .vertical-intro-copy {
        max-width: none;
    }

    .company-showcase-section {
        padding: 28px 0 46px;
    }

    .company-showcase-content {
        max-width: none;
    }

    .company-showcase-card {
        padding: 0;
    }

    .company-showcase-media {
        min-height: 480px;
    }

    .company-showcase-image.is-primary {
        width: min(45%, 250px);
        height: 380px;
    }

    .company-showcase-image.is-secondary {
        width: min(57%, 336px);
        height: 294px;
        top: 86px;
    }

    .company-showcase-link-panel {
        grid-template-columns: 150px minmax(0, 1fr) 82px;
    }

    .about-intro-section {
        min-height: auto;
        padding: 82px 0;
        display: block;
    }

    .about-intro-shell {
        width: calc(100vw - 32px);
        margin: 0 auto;
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 28px;
    }

    .about-intro-copy {
        order: 1;
        max-width: 42rem;
    }

    .about-intro-copy h2,
    .about-intro-copy p {
        max-width: none;
    }

    .about-intro-media {
        order: 2;
        height: auto;
        min-height: 460px;
    }

    .impact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sustainability-copy {
        min-height: 560px;
        width: min(430px, calc(100vw - 64px));
        padding: 46px 0 46px 34px;
    }

    .sustainability-copy h2,
    .sustainability-copy p:not(.sustainability-kicker) {
        max-width: none;
    }

    .footer-top-shell {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 42px 0 48px;
    }

    .footer-brand-panel {
        grid-column: auto;
        max-width: 100%;
    }

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

    .footer-address {
        justify-self: start;
    }

    .footer-bottom-shell {
        grid-template-columns: 1fr;
        gap: 16px 18px;
        padding: 12px 0 18px;
    }

    .footer-meta {
        justify-self: start;
        text-align: left;
    }

    .footer-brand img {
        width: 240px;
    }
}

@media (max-height: 820px) and (min-width: 861px) {
    .about-intro-section {
        padding: 26px 0;
    }

    .about-intro-shell {
        min-height: calc(100svh - 68px);
        gap: 14px;
    }

    .about-intro-copy .section-kicker {
        margin-bottom: 12px;
    }

    .about-intro-copy h2 {
        max-width: 10.4ch;
        font-size: clamp(1.95rem, 3.8vw, 2.9rem);
    }

    .about-intro-copy p {
        max-width: 46ch;
        margin-top: 12px;
        font-size: 0.86rem;
        line-height: 1.45;
    }

    .about-intro-cta {
        min-height: 48px;
        margin-top: 18px;
    }

    .about-intro-media {
        height: calc(100svh - 68px);
    }
}

@media (max-width: 767px) {
    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(6, 12, 22, 0.28) 0%, rgba(6, 12, 22, 0.42) 28%, rgba(6, 12, 22, 0.68) 62%, rgba(6, 12, 22, 0.84) 100%),
            linear-gradient(90deg, rgba(6, 12, 22, 0.72) 0%, rgba(6, 12, 22, 0.44) 42%, rgba(6, 12, 22, 0.18) 100%);
    }

    .hero-slide-group .hero-overlay {
        background:
            linear-gradient(180deg, rgba(6, 12, 22, 0.22) 0%, rgba(6, 12, 22, 0.36) 30%, rgba(6, 12, 22, 0.62) 62%, rgba(6, 12, 22, 0.8) 100%),
            linear-gradient(90deg, rgba(6, 12, 22, 0.68) 0%, rgba(6, 12, 22, 0.34) 40%, rgba(6, 12, 22, 0.12) 100%);
    }

    .hero-slide {
        display: flex;
        align-items: flex-end;
    }

    .hero-media-group {
        background-image: url("images/hero-flag-portrait.webp");
        background-position: center center;
    }

    .hero-media-manufacturing {
        background-image: url("images/Hero-Greenfix-Plastic-portrait.webp");
        background-position: center center;
    }

    .hero-media-agro {
        background-image: url("images/Hero-foodcomplex-portrait.webp");
        background-position: center center;
    }

    .hero-media-trading {
        background-image: url("images/hero-officereception-portrait.webp");
        background-position: center center;
    }

    .hero-media-real-estate {
        background-image: url("images/Hero-realestate-portrait.webp");
        background-position: center center;
    }

    .hero-media-mining {
        background-image: url("images/hero-mining-portrait.webp");
        background-position: center center;
    }

    .hero-media-agriculture {
        background-image: url("images/hero-agriculture-portrait.webp");
        background-position: center center;
    }

    .vertical-hero,
    .vertical-hero-shell {
        min-height: 68svh;
    }

    .vertical-hero-manufacturing .vertical-hero-media {
        background-image: url("images/Hero-Greenfix-Plastic-portrait.webp");
    }

    .vertical-hero-agriculture .vertical-hero-media {
        background-image: url("images/hero-agriculture-portrait.webp");
    }

    .vertical-hero-agro .vertical-hero-media {
        background-image: url("images/Hero-foodcomplex-portrait.webp");
    }

    .vertical-hero-trading .vertical-hero-media,
    .vertical-hero-hospitality .vertical-hero-media {
        background-image: url("images/hero-officereception-portrait.webp");
    }

    .vertical-hero-real-estate .vertical-hero-media {
        background-image: url("images/Hero-realestate-portrait.webp");
    }

    .vertical-hero-mining .vertical-hero-media {
        background-image: url("images/hero-mining-portrait.webp");
    }

    .vertical-hero-construction .vertical-hero-media {
        background-image: url("images/Hero-construction-portrait.webp");
    }

    .vertical-hero-overlay {
        background:
            linear-gradient(180deg, rgba(10, 15, 20, 0.28) 0%, rgba(10, 15, 20, 0.46) 40%, rgba(10, 15, 20, 0.8) 100%),
            linear-gradient(90deg, rgba(10, 15, 20, 0.72) 0%, rgba(10, 15, 20, 0.34) 48%, rgba(10, 15, 20, 0.16) 100%);
    }

    .vertical-hero-shell {
        width: calc(100vw - 24px);
        padding: 118px 0 34px;
    }

    .vertical-hero-title-block {
        padding: 18px 20px 20px;
        max-width: min(92vw, 420px);
    }

    .vertical-hero-title-block h1 {
        font-size: clamp(2.8rem, 13vw, 4.2rem);
    }

    .company-hero-shell,
    .company-intro-shell,
    .company-split-shell,
    .company-text-shell,
    .company-media-band-shell {
        width: calc(100vw - 24px);
    }

    .company-hero-shell {
        padding: 136px 0 54px;
    }

    .company-hero-kicker,
    .company-hero-vertical,
    .company-section-kicker {
        font-size: 0.72rem;
    }

    .company-hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .company-hero-lead,
    .company-intro-copy p,
    .company-text-copy p,
    .company-split-copy p,
    .company-detail-list li,
    .company-highlight-panel p,
    .company-highlight-panel li {
        font-size: 0.94rem;
        line-height: 1.68;
    }

    .company-intro-heading h2,
    .company-text-heading h2,
    .company-split-copy h2 {
        font-size: clamp(1.55rem, 7vw, 2.25rem);
    }

    .company-media-band-shell {
        min-height: 240px;
        border-radius: 22px;
    }

    .company-split-media {
        min-height: 330px;
    }

    .company-split-media::before {
        width: 120px;
        height: 92px;
        left: 14px;
        bottom: 0;
        background-size: 20px 20px;
    }

    .company-split-section.is-reverse .company-split-media::before {
        right: 14px;
    }

    .company-split-image.is-primary {
        width: 42%;
        height: 242px;
    }

    .company-split-image.is-secondary {
        width: 56%;
        height: 188px;
        top: 54px;
    }

    .company-highlight-panel {
        padding: 20px 18px;
        border-radius: 18px;
    }

    .company-highlight-panel a,
    .company-back-link {
        min-height: 48px;
        width: 100%;
    }

    .vertical-intro {
        padding: 62px 0 28px;
    }

    .vertical-intro-shell,
    .company-showcase-shell {
        width: calc(100vw - 24px);
    }

    .vertical-intro-kicker {
        margin-bottom: 14px;
        font-size: 0.76rem;
    }

    .vertical-intro-title h2 {
        max-width: 9ch;
        font-size: clamp(1.9rem, 8vw, 2.8rem);
    }

    .vertical-intro-copy p {
        font-size: 0.95rem;
        line-height: 1.64;
    }

    .vertical-intro-art {
        display: none;
    }

    .company-showcase-section {
        padding: 18px 0 36px;
    }

    .company-showcase-card {
        padding: 0;
    }

    .company-showcase-card h2 {
        font-size: clamp(1.5rem, 7vw, 2.15rem);
    }

    .company-showcase-strap,
    .company-showcase-card p:not(.company-showcase-index):not(.company-showcase-strap) {
        font-size: 0.92rem;
        line-height: 1.64;
    }

    .company-showcase-media {
        min-height: 336px;
    }

    .company-showcase-media::before {
        width: 120px;
        height: 92px;
        left: 14px;
        bottom: 0;
        background-size: 20px 20px;
    }

    .company-showcase-section.is-reverse .company-showcase-media::before {
        right: 14px;
    }

    .company-showcase-image {
        border-radius: 0;
    }

    .company-showcase-image.is-primary {
        width: 42%;
        height: 248px;
    }

    .company-showcase-image.is-secondary {
        width: 56%;
        height: 192px;
        top: 56px;
    }

    .company-showcase-link-panel {
        grid-template-columns: 1fr;
    }

    .company-showcase-link-brand,
    .company-showcase-link-copy,
    .company-showcase-link-action {
        min-height: 62px;
    }

    .company-showcase-link-action {
        justify-content: flex-start;
        padding: 0 22px 18px;
    }

    .hero-content {
        width: calc(100vw - 56px);
        padding-top: 0;
        padding-bottom: 118px;
    }

    .about-intro-section {
        min-height: auto;
        padding: 72px 0 76px;
    }

    .impact-section {
        padding: 0 0 76px;
    }

    .impact-shell {
        width: calc(100vw - 24px);
    }

    .cta-section {
        display: none;
    }

    .business-verticals-section {
        min-height: auto;
        padding: 72px 0 56px;
        display: block;
    }

    .business-verticals-shell {
        width: calc(100vw - 24px);
        min-height: auto;
        gap: 18px;
    }

    .business-verticals-header {
        align-items: end;
    }

    .business-verticals-tabs {
        display: none;
    }

    .business-verticals-layout {
        display: flex;
        flex-direction: column;
        gap: 14px;
        height: auto;
    }

    .vertical-feature {
        order: 1;
        min-height: 320px;
        border-radius: 24px;
    }

    .vertical-feature-copy {
        padding: 18px 18px 20px;
    }

    .vertical-feature h3 {
        max-width: 11ch;
        font-size: clamp(1.75rem, 8vw, 2.45rem);
    }

    .vertical-feature-summary {
        max-width: 34ch;
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .vertical-feature-tags {
        display: none;
    }

    .vertical-feature-cta {
        min-height: 42px;
        margin-top: 14px;
        padding: 0 18px;
        font-size: 0.68rem;
    }

    .business-verticals-grid {
        order: 2;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: minmax(118px, 1fr);
        gap: 8px;
    }

    .vertical-card {
        min-height: 118px;
        padding: 12px;
        border-radius: 18px;
    }

    .vertical-card span {
        font-size: 0.84rem;
    }

    .sustainability-shell {
        min-height: 640px;
    }

    .sustainability-overlay {
        background:
            linear-gradient(180deg, rgba(7, 13, 24, 0.22) 0%, rgba(7, 13, 24, 0.28) 26%, rgba(7, 13, 24, 0.62) 66%, rgba(7, 13, 24, 0.84) 100%),
            linear-gradient(90deg, rgba(7, 13, 24, 0.56) 0%, rgba(7, 13, 24, 0.22) 48%, rgba(7, 13, 24, 0.1) 100%);
    }

    .sustainability-copy {
        width: calc(100% - 40px);
        padding: 32px 0 30px 20px;
    }

    .sustainability-copy h2 {
        max-width: 8.8ch;
        font-size: clamp(2.15rem, 9vw, 3.2rem);
    }

    .sustainability-copy p:not(.sustainability-kicker) {
        font-size: 0.94rem;
        line-height: 1.62;
    }

    .sustainability-cta {
        width: 100%;
        max-width: 220px;
        min-height: 52px;
        margin-top: 22px;
        padding: 0 22px;
        font-size: 0.74rem;
    }

    .impact-panel {
        padding: 14px 10px;
        border-radius: 24px;
    }

    .footer-top-shell,
    .footer-bottom-shell {
        width: calc(100vw - 24px);
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 16px 18px;
    }

    .footer-column {
        gap: 8px;
    }

    .footer-top-shell {
        gap: 18px;
        padding: 34px 0 38px;
    }

    .footer-bottom-shell {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 10px;
        padding: 10px 0 18px;
    }

    .footer-brand img {
        width: 200px;
    }

    .footer-meta {
        justify-self: start;
        text-align: left;
    }

    .footer-brand img {
        width: 220px;
    }

    .footer-contact,
    .footer-meta {
        gap: 4px;
    }

    .footer-contact a,
    .footer-meta p,
    .footer-column a,
    .footer-address p {
        font-size: 0.9rem;
        line-height: 1.35;
    }

    .footer-meta {
        text-align: left;
    }

    .impact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .impact-stat {
        padding: 18px 12px 16px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .impact-stat:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.14);
    }

    .impact-stat:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .impact-value {
        font-size: clamp(2.25rem, 12vw, 3.4rem);
    }

    .impact-stat h3 {
        font-size: 0.88rem;
    }

    .about-intro-shell {
        width: calc(100vw - 24px);
        gap: 22px;
    }

    .about-intro-copy {
        max-width: none;
    }

    .about-intro-copy h2 {
        max-width: 9ch;
        font-size: clamp(2.2rem, 9vw, 3.15rem);
    }

    .about-intro-copy p {
        font-size: 0.95rem;
        line-height: 1.66;
    }

    .about-intro-cta {
        width: 100%;
        align-self: stretch;
    }

    .about-intro-media {
        min-height: 400px;
    }

}

@media (max-width: 640px) {

    .brand-mark {
        flex-basis: 156px;
    }

    .brand-mark img {
        width: 166px;
    }

    .hero-content {
        margin-left: calc((100vw - var(--hero-shell-width)) / 2);
        padding-bottom: 110px;
    }

    .hero-copy {
        font-size: 0.88rem;
        line-height: 1.56;
    }

    .hero-cta {
        min-width: 0;
        min-height: 52px;
        width: 100%;
        max-width: 248px;
        border-radius: 18px;
        font-size: 0.74rem;
    }

    .hero-progress {
        left: calc((100vw - var(--hero-shell-width)) / 2);
        right: 28px;
    }

    .about-intro-media {
        min-height: 340px;
    }
}

/* Company pages (except GreenFix): preserve existing colors and only fix spacing/layout */
.company-page:not(.greenfix-page) .company-hero {
    min-height: clamp(500px, 72svh, 720px);
}

.company-page:not(.greenfix-page) .company-hero-shell {
    min-height: clamp(500px, 72svh, 720px);
    width: min(1160px, calc(100vw - 88px));
    padding: 136px 0 56px;
}

.company-page:not(.greenfix-page) .company-intro-section,
.company-page:not(.greenfix-page) .company-split-section,
.company-page:not(.greenfix-page) .company-text-section,
.company-page:not(.greenfix-page) .company-media-band,
.company-page:not(.greenfix-page) .company-media-band.is-secondary {
    min-height: auto;
    display: block;
    align-items: initial;
    padding: 0;
}

.company-page:not(.greenfix-page) .company-intro-section {
    padding: 56px 0 34px;
}

.company-page:not(.greenfix-page) .company-media-band,
.company-page:not(.greenfix-page) .company-media-band.is-secondary {
    padding: 0 0 34px;
}

.company-page:not(.greenfix-page) .company-media-band.is-secondary {
    display: none;
    padding: 0;
}

.company-page:not(.greenfix-page) .company-split-section,
.company-page:not(.greenfix-page) .company-text-section {
    padding: 34px 0;
}

.company-page:not(.greenfix-page) .company-intro-shell,
.company-page:not(.greenfix-page) .company-split-shell,
.company-page:not(.greenfix-page) .company-text-shell,
.company-page:not(.greenfix-page) .company-media-band-shell {
    width: min(1160px, calc(100vw - 88px));
}

.company-page:not(.greenfix-page) .company-media-band-shell {
    min-height: clamp(300px, 42vw, 460px);
}

.company-page:not(.greenfix-page) .company-split-section.is-contrast,
.company-page:not(.greenfix-page) .company-text-section.is-contrast {
    width: 100%;
    margin: 0;
    border-radius: 0;
}

.company-page:not(.greenfix-page) .company-split-section.is-contrast {
    padding: 0;
}

.company-page:not(.greenfix-page) .company-split-section.is-contrast .company-split-shell {
    padding: 48px 0;
}

.company-page:not(.greenfix-page) .company-text-section.is-contrast {
    padding: 0;
}

.company-page:not(.greenfix-page) .company-text-section.is-contrast .company-text-shell {
    width: min(1120px, calc(100vw - 88px));
    padding: 48px 0;
    grid-template-columns: 1fr;
    gap: 22px;
}

.company-page:not(.greenfix-page) .company-text-section.is-contrast .company-text-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 22px;
    align-items: start;
}

.company-page:not(.greenfix-page) .company-text-section.is-contrast .company-highlight-panel {
    margin-top: 0;
}

@media (max-width: 980px) {
    .company-page:not(.greenfix-page) .company-intro-section,
    .company-page:not(.greenfix-page) .company-split-section,
    .company-page:not(.greenfix-page) .company-text-section,
    .company-page:not(.greenfix-page) .company-media-band,
    .company-page:not(.greenfix-page) .company-media-band.is-secondary {
        min-height: auto;
        display: block;
        padding: 42px 0;
    }

    .company-page:not(.greenfix-page) .company-hero-shell,
    .company-page:not(.greenfix-page) .company-intro-shell,
    .company-page:not(.greenfix-page) .company-split-shell,
    .company-page:not(.greenfix-page) .company-text-shell,
    .company-page:not(.greenfix-page) .company-media-band-shell {
        width: min(1120px, calc(100vw - 48px));
    }

    .company-page:not(.greenfix-page) .company-text-section.is-contrast .company-text-shell {
        width: min(1120px, calc(100vw - 48px));
    }

    .company-page:not(.greenfix-page) .company-text-section.is-contrast .company-text-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .company-page:not(.greenfix-page) .company-hero-shell {
        width: calc(100vw - 28px);
        min-height: auto;
        padding: 124px 0 44px;
    }

    .company-page:not(.greenfix-page) .company-intro-section,
    .company-page:not(.greenfix-page) .company-split-section,
    .company-page:not(.greenfix-page) .company-text-section,
    .company-page:not(.greenfix-page) .company-media-band,
    .company-page:not(.greenfix-page) .company-media-band.is-secondary {
        padding: 28px 0;
    }

    .company-page:not(.greenfix-page) .company-text-section.is-contrast {
        padding: 16px 0 38px;
    }

    .company-page:not(.greenfix-page) .company-text-section.is-contrast .company-text-shell {
        width: calc(100vw - 28px);
        padding: 16px 0;
    }
}

/* Impact page */
body.impact-page {
    background:
        radial-gradient(circle at 92% 8%, rgba(99, 187, 250, 0.18) 0%, rgba(99, 187, 250, 0) 32%),
        radial-gradient(circle at 8% 34%, rgba(99, 187, 250, 0.08) 0%, rgba(99, 187, 250, 0) 34%),
        linear-gradient(180deg, #f2f5f9 0%, #f6f4ef 40%, #eef3f9 100%);
    color: var(--krg-navy);
}

.impact-page .site-header .nav-link.is-current {
    color: var(--krg-navy);
    font-weight: 700;
}

.impact-page .site-header .nav-link.is-current::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 4px;
    background: var(--krg-sand);
    border-radius: 999px;
}

.impact-hero-page {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 100svh;
    margin: 0;
    border-radius: 0;
    background: #0a1525;
    color: var(--krg-white);
}

.impact-hero-media,
.impact-hero-overlay {
    position: absolute;
    inset: 0;
}

.impact-hero-media {
    background-image: url("images/hero-agriculture-wide.webp");
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}

.impact-hero-overlay {
    background:
        radial-gradient(circle at 82% 26%, rgba(99, 187, 250, 0.34) 0%, rgba(99, 187, 250, 0) 44%),
        linear-gradient(96deg, rgba(6, 13, 24, 0.96) 0%, rgba(6, 13, 24, 0.84) 38%, rgba(6, 13, 24, 0.48) 74%, rgba(6, 13, 24, 0.26) 100%);
}

.impact-hero-shell {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 64px));
    min-height: inherit;
    margin: 0 auto;
    padding: 146px 0 72px;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.72fr);
    gap: 24px;
    align-items: end;
}

.impact-hero-kicker {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 700;
}

.impact-hero-copy h1 {
    margin: 0;
    max-width: 12ch;
    font-size: clamp(2.7rem, 5vw, 4.95rem);
    line-height: 0.94;
    letter-spacing: -0.055em;
}

.impact-hero-copy p {
    margin: 16px 0 0;
    max-width: 48ch;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.66;
}

.impact-hero-actions {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.impact-hero-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 16px;
    background: var(--krg-sand);
    color: var(--krg-navy);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.impact-hero-actions a.is-light {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--krg-white);
}

.impact-hero-panel {
    margin: 0;
    padding: 24px 24px 22px;
    border-radius: 24px;
    background: rgba(9, 20, 36, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.17);
    box-shadow: 0 18px 32px rgba(4, 10, 20, 0.24);
}

.impact-hero-panel h2 {
    margin: 0;
    font-size: 1.04rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.impact-hero-panel ul {
    margin: 14px 0 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
}

.impact-hero-panel li {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
    line-height: 1.56;
}

.impact-subnav {
    width: min(1180px, calc(100vw - 40px));
    margin: 18px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.impact-subnav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(13, 24, 43, 0.14);
    background: rgba(255, 255, 255, 0.74);
    color: rgba(13, 24, 43, 0.72);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.impact-intro-section,
.impact-metrics-section,
.impact-pillars-section,
.impact-farmers-section,
.impact-community-section,
.impact-flow-section,
.impact-closing-band {
    padding: 30px 20px 0;
}

.impact-intro-shell,
.impact-metrics-shell,
.impact-pillars-shell,
.impact-farmers-shell,
.impact-community-shell,
.impact-flow-shell,
.impact-closing-shell {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.impact-intro-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 16px;
    align-items: stretch;
}

.impact-intro-copy {
    padding: clamp(26px, 3vw, 38px);
    border-radius: 30px;
    border: 1px solid rgba(13, 24, 43, 0.1);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 36px rgba(6, 14, 27, 0.08);
}

.impact-intro-copy h2,
.impact-metrics-head h2,
.impact-pillars-head h2,
.impact-community-head h2,
.impact-flow-head h2,
.impact-farmers-copy h2 {
    margin: 0;
    color: var(--krg-navy);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 0.94;
    letter-spacing: -0.048em;
    max-width: 16ch;
}

.impact-intro-copy p,
.impact-farmers-copy p,
.impact-community-card p,
.impact-flow-grid p,
.impact-metric-card p,
.impact-pillar-card p {
    margin: 14px 0 0;
    color: rgba(13, 24, 43, 0.74);
    font-size: 0.95rem;
    line-height: 1.7;
}

.impact-intro-media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.impact-intro-media {
    margin: 0;
    min-height: 200px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(13, 24, 43, 0.12);
    box-shadow: 0 14px 28px rgba(6, 14, 27, 0.09);
}

.impact-intro-media.is-large {
    grid-column: span 2;
    min-height: 320px;
}

.impact-intro-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.impact-metrics-head,
.impact-pillars-head,
.impact-community-head,
.impact-flow-head {
    max-width: 620px;
    margin-bottom: 16px;
}

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

.impact-metric-card {
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(150deg, #0f223e 0%, #17345c 100%);
    color: var(--krg-white);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 34px rgba(8, 16, 29, 0.18);
}

.impact-metric-value {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 0.94;
    letter-spacing: -0.04em;
    font-weight: 700;
}

.impact-metric-card h3 {
    margin: 10px 0 0;
    font-size: 1rem;
    line-height: 1.3;
}

.impact-metric-card p {
    color: rgba(255, 255, 255, 0.8);
}

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

.impact-pillar-card {
    padding: 20px;
    border-radius: 24px;
    border: 1px solid rgba(13, 24, 43, 0.12);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 28px rgba(6, 14, 27, 0.08);
}

.impact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(99, 187, 250, 0.16);
    border: 1px solid rgba(99, 187, 250, 0.3);
}

.impact-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--krg-navy);
}

.impact-pillar-card h3 {
    margin: 14px 0 0;
    color: var(--krg-navy);
    font-size: 1.04rem;
}

.impact-farmers-shell {
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
    gap: 14px;
}

.impact-farmers-media {
    margin: 0;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(13, 24, 43, 0.12);
    box-shadow: 0 18px 32px rgba(6, 14, 27, 0.1);
}

.impact-farmers-media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.impact-farmers-copy {
    padding: clamp(24px, 3vw, 36px);
    border-radius: 28px;
    border: 1px solid rgba(13, 24, 43, 0.1);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 30px rgba(6, 14, 27, 0.08);
}

.impact-commitments {
    margin-top: 18px;
    display: grid;
    gap: 12px;
}

.impact-commitments div {
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(13, 24, 43, 0.1);
    background: rgba(246, 250, 255, 0.82);
}

.impact-commitments h3 {
    margin: 0;
    color: var(--krg-navy);
    font-size: 0.94rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.impact-commitments p {
    margin: 8px 0 0;
}

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

.impact-community-card {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(13, 24, 43, 0.12);
    background: var(--krg-white);
    box-shadow: 0 14px 28px rgba(6, 14, 27, 0.08);
}

.impact-community-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.impact-community-card div {
    padding: 18px;
}

.impact-community-card h3 {
    margin: 0;
    color: var(--krg-navy);
    font-size: 1.02rem;
}

.impact-community-card.is-text {
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(145deg, #10233f 0%, #17345c 100%);
    border-color: rgba(255, 255, 255, 0.16);
    color: var(--krg-white);
}

.impact-community-card.is-text h3 {
    color: var(--krg-white);
    font-size: 1.2rem;
    line-height: 1.3;
}

.impact-community-card.is-text p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.94rem;
    line-height: 1.68;
}

.impact-community-card.is-text a {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    width: fit-content;
    padding: 0 20px;
    border-radius: 14px;
    background: var(--krg-sand);
    color: var(--krg-navy);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.impact-flow-grid article {
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(13, 24, 43, 0.12);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 24px rgba(6, 14, 27, 0.07);
}

.impact-flow-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(99, 187, 250, 0.2);
    border: 1px solid rgba(99, 187, 250, 0.34);
    color: var(--krg-navy);
    font-size: 0.72rem;
    font-weight: 700;
}

.impact-flow-grid h3 {
    margin: 12px 0 0;
    color: var(--krg-navy);
    font-size: 0.98rem;
    line-height: 1.32;
}

.impact-closing-band {
    padding-bottom: 42px;
}

.impact-closing-shell {
    padding: clamp(26px, 4vw, 42px);
    border-radius: 30px;
    background: linear-gradient(128deg, #0d1d35 0%, #17365f 100%);
    color: var(--krg-white);
    box-shadow: 0 22px 42px rgba(6, 14, 27, 0.2);
}

.impact-closing-shell h2 {
    margin: 0;
    max-width: 18ch;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
}

.impact-closing-shell p {
    margin: 14px 0 0;
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.98rem;
    line-height: 1.72;
}

.impact-closing-actions {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.impact-closing-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 15px;
    background: var(--krg-sand);
    color: var(--krg-navy);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.impact-closing-actions a.is-light {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--krg-white);
}

@media (max-width: 1100px) {
    .impact-hero-shell {
        width: calc(100% - 44px);
        grid-template-columns: 1fr;
        align-items: end;
        gap: 14px;
    }

    .impact-intro-shell,
    .impact-farmers-shell {
        grid-template-columns: 1fr;
    }

    .impact-metrics-grid,
    .impact-pillars-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .impact-flow-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .impact-community-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .impact-community-card.is-text {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .impact-hero-page {
        width: 100%;
        min-height: 100svh;
        border-radius: 0;
    }

    .impact-hero-shell {
        width: calc(100% - 24px);
        padding: 122px 0 28px;
    }

    .impact-hero-copy h1 {
        font-size: clamp(2.15rem, 9vw, 3.25rem);
    }

    .impact-hero-copy p {
        font-size: 0.92rem;
        line-height: 1.62;
    }

    .impact-hero-panel {
        padding: 18px;
        border-radius: 20px;
    }

    .impact-subnav,
    .impact-intro-shell,
    .impact-metrics-shell,
    .impact-pillars-shell,
    .impact-farmers-shell,
    .impact-community-shell,
    .impact-flow-shell,
    .impact-closing-shell {
        width: calc(100vw - 24px);
    }

    .impact-intro-section,
    .impact-metrics-section,
    .impact-pillars-section,
    .impact-farmers-section,
    .impact-community-section,
    .impact-flow-section,
    .impact-closing-band {
        padding: 22px 12px 0;
    }

    .impact-intro-copy,
    .impact-farmers-copy,
    .impact-metric-card,
    .impact-pillar-card,
    .impact-flow-grid article,
    .impact-community-card div,
    .impact-community-card.is-text {
        padding: 18px;
    }

    .impact-intro-copy h2,
    .impact-metrics-head h2,
    .impact-pillars-head h2,
    .impact-community-head h2,
    .impact-flow-head h2,
    .impact-farmers-copy h2 {
        max-width: none;
        font-size: clamp(1.75rem, 8vw, 2.45rem);
    }

    .impact-intro-media.is-large {
        min-height: 230px;
    }

    .impact-intro-media {
        min-height: 170px;
        border-radius: 20px;
    }

    .impact-intro-media-grid,
    .impact-metrics-grid,
    .impact-pillars-grid,
    .impact-community-grid,
    .impact-flow-grid {
        grid-template-columns: 1fr;
    }

    .impact-community-card.is-text {
        grid-column: auto;
    }

    .impact-community-card img {
        height: 190px;
    }

    .impact-farmers-media {
        border-radius: 22px;
    }

    .impact-farmers-media img {
        min-height: 260px;
    }

    .impact-closing-shell {
        border-radius: 24px;
    }

    .impact-closing-shell h2 {
        font-size: clamp(1.8rem, 8vw, 2.55rem);
    }

    .impact-closing-shell p {
        font-size: 0.92rem;
        line-height: 1.66;
    }
}