:root {
    --ior-navy: #0b285f;
    --ior-navy-deep: #071c42;
    --ior-navy-soft: #173d78;
    --ior-green: #246b3b;
    --ior-green-deep: #124f31;
    --ior-green-soft: #3f8557;
    --ior-gold: #c99723;
    --ior-gold-deep: #a97710;
    --ior-light-gold: #e5c767;
    --ior-ivory: #fbf8f0;
    --ior-sand: #efe7d5;
    --ior-surface: #f3f6ef;
    --ior-ink: #12203a;
    --ior-muted: #65748a;
    --ior-line: #dce3d8;
    --ior-white: #ffffff;
    --ior-shadow: 0 24px 70px rgba(7, 28, 66, 0.12);
    --ior-radius: 4px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 104px;
}

body {
    background: var(--ior-white);
    color: var(--ior-ink);
    font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    line-height: 1.65;
    margin: 0;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea,
select {
    -webkit-font-smoothing: antialiased;
}

img,
svg {
    max-width: 100%;
}

a {
    color: inherit;
}

section,
footer {
    position: relative;
}

.site-header {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(11, 40, 95, 0.1);
    box-shadow: 0 12px 38px rgba(7, 28, 66, 0.08);
    backdrop-filter: blur(18px);
    transition: box-shadow 0.25s ease, background 0.25s ease;
    z-index: 1050;
}

.site-header::after {
    background: linear-gradient(90deg, transparent, rgba(201, 151, 35, 0.82), transparent);
    bottom: -1px;
    content: "";
    height: 1px;
    left: 8%;
    position: absolute;
    right: 8%;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.985);
    box-shadow: 0 16px 44px rgba(7, 28, 66, 0.14);
}

.navbar {
    min-height: 94px;
    padding-block: 0;
}

.navbar-toggler {
    align-items: center;
    background: var(--ior-navy);
    border: 0;
    border-radius: 3px;
    color: var(--ior-white);
    display: inline-flex;
    height: 44px;
    justify-content: center;
    padding: 0;
    width: 44px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.22rem rgba(201, 151, 35, 0.28);
}

.navbar-toggler svg {
    height: 22px;
    width: 22px;
}

.brand-lockup {
    align-items: center;
    display: inline-flex;
    gap: 12px;
    text-decoration: none;
}

.brand-logo {
    display: block;
    flex: 0 0 auto;
    height: 58px;
    object-fit: contain;
    width: 58px;
}

.brand-name {
    display: grid;
    font-size: 0.78rem;
    letter-spacing: 0.07em;
    line-height: 1.12;
    text-transform: uppercase;
}

.brand-name strong {
    color: var(--ior-white);
    font-size: 0.88rem;
}

.brand-name span {
    color: var(--ior-light-gold);
    font-weight: 800;
}

.navbar-nav {
    align-items: center;
    gap: 0.1rem;
}

.nav-link {
    color: var(--ior-ink);
    font-size: 0.79rem;
    font-weight: 750;
    padding: 0.8rem 0.52rem !important;
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    background: var(--ior-gold);
    bottom: 0.42rem;
    content: "";
    height: 2px;
    left: 0.52rem;
    position: absolute;
    right: 100%;
    transition: right 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--ior-green);
}

.nav-link:hover::after,
.nav-link:focus::after {
    right: 0.52rem;
}

.nav-actions {
    align-items: center;
    display: flex;
    gap: 10px;
    margin-left: 14px;
}

.language-switch,
.btn {
    align-items: center;
    display: inline-flex;
    gap: 8px;
    justify-content: center;
}

.language-switch {
    color: var(--ior-navy);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 0.65rem 0.35rem;
    text-decoration: none;
    white-space: nowrap;
}

.language-switch:hover {
    color: var(--ior-green);
}

.language-switch svg,
.btn svg {
    height: 17px;
    width: 17px;
}

.btn {
    border-radius: var(--ior-radius);
    font-weight: 800;
    letter-spacing: -0.01em;
    min-height: 44px;
    padding: 0.72rem 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus {
    transform: translateY(-2px);
}

.btn-lg {
    min-height: 50px;
    padding: 0.86rem 1.25rem;
}

.btn-ior {
    background: linear-gradient(135deg, var(--ior-light-gold), var(--ior-gold));
    border-color: var(--ior-gold);
    box-shadow: 0 12px 28px rgba(201, 151, 35, 0.2);
    color: #172033;
}

.btn-ior:hover,
.btn-ior:focus {
    background: linear-gradient(135deg, #f0d982, var(--ior-gold));
    border-color: var(--ior-light-gold);
    box-shadow: 0 16px 34px rgba(201, 151, 35, 0.3);
    color: #101827;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.62);
    color: var(--ior-white);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--ior-white);
    color: var(--ior-white);
}

.btn-link-light {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 800;
    text-decoration: none;
}

.btn-link-light:hover,
.btn-link-light:focus {
    color: var(--ior-light-gold);
}

.hero-section {
    background-position: center center;
    background-size: cover;
    color: var(--ior-white);
    isolation: isolate;
    min-height: 840px;
    overflow: hidden;
    padding: 162px 0 78px;
    position: relative;
}

.hero-section::before {
    background:
        linear-gradient(90deg, rgba(7, 28, 66, 0.98) 0%, rgba(9, 37, 82, 0.94) 39%, rgba(12, 52, 82, 0.86) 63%, rgba(18, 79, 49, 0.74) 100%),
        linear-gradient(180deg, rgba(7, 28, 66, 0.18), rgba(7, 28, 66, 0.45));
    content: "";
    inset: 0;
    position: absolute;
    z-index: -2;
}

.hero-section::after {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 46px 46px;
    content: "";
    inset: 0;
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.75) 55%, #000 100%);
    position: absolute;
    z-index: -1;
}

.hero-heritage-pattern {
    background-image:
        radial-gradient(circle at center, transparent 0 31px, rgba(229, 199, 103, 0.13) 32px 33px, transparent 34px),
        radial-gradient(circle at center, transparent 0 12px, rgba(229, 199, 103, 0.08) 13px 14px, transparent 15px);
    background-size: 84px 84px;
    height: 420px;
    opacity: 0.34;
    position: absolute;
    right: -80px;
    top: 110px;
    transform: rotate(45deg);
    width: 520px;
}

.hero-inner {
    position: relative;
    z-index: 2;
}

.hero-layout {
    align-items: center;
    display: grid;
    gap: 62px;
    grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.86fr);
}

.hero-content {
    max-width: 790px;
}

.hero-brand-signal {
    align-items: center;
    background: rgba(7, 28, 66, 0.38);
    border: 1px solid rgba(229, 199, 103, 0.18);
    display: inline-flex;
    gap: 13px;
    margin-bottom: 28px;
    padding: 7px 15px 7px 7px;
}

.hero-brand-signal img {
    border-radius: 3px;
    display: block;
    height: 58px;
    object-fit: contain;
    width: 58px;
}

.hero-brand-signal span {
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    line-height: 1.25;
    max-width: 180px;
    text-transform: uppercase;
}

.eyebrow {
    color: var(--ior-light-gold);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--ior-green);
}

.hero-section h1,
h2 {
    font-family: Georgia, "Times New Roman", serif;
}

.hero-section h1 {
    font-size: clamp(3.4rem, 5.25vw, 5.7rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 0.98;
    margin: 0;
    max-width: 820px;
    text-wrap: balance;
}

.hero-copy {
    color: rgba(255, 255, 255, 0.87);
    font-size: 1.2rem;
    line-height: 1.65;
    margin: 28px 0 0;
    max-width: 690px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.status-ribbon {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 3px solid var(--ior-gold);
    display: grid;
    gap: 4px;
    margin-top: 42px;
    max-width: 650px;
    padding: 17px 20px;
}

.status-ribbon span {
    color: var(--ior-light-gold);
    font-size: 0.69rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.status-ribbon strong {
    color: var(--ior-white);
    font-size: 0.94rem;
    font-weight: 700;
}

.hero-origin-visual {
    min-height: 590px;
    position: relative;
}

.origin-orbit {
    border: 1px solid rgba(229, 199, 103, 0.3);
    border-radius: 50%;
    position: absolute;
}

.orbit-one {
    height: 560px;
    right: -85px;
    top: 0;
    width: 560px;
}

.orbit-two {
    border-color: rgba(255, 255, 255, 0.14);
    height: 420px;
    right: -15px;
    top: 70px;
    width: 420px;
}

.hero-logo-watermark {
    filter: saturate(0.85);
    opacity: 0.14;
    position: absolute;
    right: 5%;
    top: 20%;
    width: 72%;
}

.origin-card {
    background: rgba(6, 36, 57, 0.94);
    border: 1px solid rgba(229, 199, 103, 0.34);
    bottom: 18px;
    box-shadow: 0 26px 70px rgba(2, 16, 38, 0.35);
    max-width: 430px;
    padding: 28px;
    position: absolute;
    right: 0;
}

.origin-card::before {
    background: linear-gradient(90deg, var(--ior-gold), transparent);
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    right: 42%;
    top: 0;
}

.origin-card-kicker {
    align-items: center;
    color: var(--ior-light-gold);
    display: flex;
    font-size: 0.71rem;
    font-weight: 900;
    gap: 8px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.origin-card-kicker svg {
    height: 17px;
    width: 17px;
}

.origin-card h2 {
    color: var(--ior-white);
    font-family: inherit;
    font-size: 1.68rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin: 16px 0 12px;
}

.origin-card p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    margin: 0;
}

.region-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 22px;
}

.region-chips span {
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.19);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 7px 10px;
}

.origin-value-strip {
    background: var(--ior-ivory);
    border-bottom: 1px solid var(--ior-sand);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.8);
    padding: 30px 0;
}

.origin-value-grid {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.origin-value-item {
    align-items: flex-start;
    display: grid;
    gap: 15px;
    grid-template-columns: auto 1fr;
    padding: 7px 28px;
}

.origin-value-item + .origin-value-item {
    border-left: 1px solid rgba(18, 79, 49, 0.15);
}

.value-icon {
    align-items: center;
    background: var(--ior-navy);
    border-radius: 50%;
    color: var(--ior-light-gold);
    display: inline-flex;
    height: 45px;
    justify-content: center;
    width: 45px;
}

.value-icon svg {
    height: 21px;
    width: 21px;
}

.origin-value-item h2 {
    color: var(--ior-navy);
    font-family: inherit;
    font-size: 0.94rem;
    font-weight: 850;
    margin: 0 0 4px;
}

.origin-value-item p {
    color: var(--ior-muted);
    font-size: 0.82rem;
    line-height: 1.55;
    margin: 0;
}

.section-band {
    padding: 112px 0;
}

.section-white {
    background: var(--ior-white);
}

.section-muted {
    background: var(--ior-surface);
}

.section-deep {
    background: linear-gradient(135deg, var(--ior-navy-deep), var(--ior-navy));
    color: var(--ior-white);
    overflow: hidden;
}

.section-grid,
.origin-layout,
.insight-layout,
.cta-content,
.footer-grid {
    display: grid;
    gap: 64px;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.9fr);
}

h2 {
    color: var(--ior-navy);
    font-size: clamp(2.55rem, 4vw, 4.15rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.04;
    margin: 0 0 22px;
    text-wrap: balance;
}

.lead,
.section-heading > p:not(.eyebrow),
.origin-copy > p,
.insight-layout article > p:not(.eyebrow),
.cta-content p {
    color: var(--ior-muted);
    font-size: 1.06rem;
    line-height: 1.8;
    max-width: 800px;
}

.section-heading {
    margin-bottom: 48px;
    max-width: 980px;
}

.section-heading.light h2 {
    color: var(--ior-white);
}

.section-heading.light > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.74);
}

.about-section {
    overflow: hidden;
}

.about-section::before {
    border: 1px solid rgba(201, 151, 35, 0.16);
    border-radius: 50%;
    content: "";
    height: 420px;
    left: -280px;
    position: absolute;
    top: 80px;
    width: 420px;
}

.about-grid {
    align-items: center;
}

.about-copy {
    position: relative;
}

.heritage-mark {
    align-items: center;
    border: 1px solid rgba(201, 151, 35, 0.26);
    border-radius: 50%;
    color: rgba(11, 40, 95, 0.07);
    display: flex;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 5.6rem;
    font-weight: 700;
    height: 160px;
    justify-content: center;
    left: -64px;
    position: absolute;
    top: -65px;
    width: 160px;
    z-index: 0;
}

.about-copy > *:not(.heritage-mark) {
    position: relative;
    z-index: 1;
}

.origin-signature {
    align-items: center;
    display: grid;
    gap: 2px 13px;
    grid-template-columns: 55px auto 1fr;
    margin-top: 34px;
    max-width: 560px;
}

.origin-signature > span {
    background: linear-gradient(90deg, var(--ior-gold), var(--ior-light-gold));
    height: 2px;
}

.origin-signature strong {
    color: var(--ior-green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;
}

.origin-signature small {
    color: var(--ior-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.commitment-list {
    display: grid;
    gap: 10px;
}

.commitment-item {
    align-items: center;
    background: var(--ior-white);
    border: 1px solid var(--ior-line);
    border-left: 3px solid transparent;
    box-shadow: 0 8px 24px rgba(7, 28, 66, 0.035);
    display: grid;
    gap: 12px;
    grid-template-columns: auto auto 1fr;
    min-height: 63px;
    padding: 13px 17px;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.commitment-item:hover {
    border-left-color: var(--ior-gold);
    box-shadow: 0 16px 34px rgba(7, 28, 66, 0.08);
    transform: translateX(4px);
}

.commitment-number {
    color: rgba(11, 40, 95, 0.35);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.78rem;
    font-weight: 700;
}

.commitment-item svg {
    color: var(--ior-green);
    height: 20px;
    width: 20px;
}

.commitment-item > span:last-child {
    color: var(--ior-ink);
    font-size: 0.92rem;
    font-weight: 750;
}

.commodity-section {
    isolation: isolate;
    overflow: hidden;
}

.commodity-pattern {
    background-image:
        radial-gradient(circle at center, transparent 0 20px, rgba(36, 107, 59, 0.06) 21px 22px, transparent 23px),
        radial-gradient(circle at center, rgba(201, 151, 35, 0.05) 0 4px, transparent 5px);
    background-size: 62px 62px;
    height: 360px;
    opacity: 0.75;
    position: absolute;
    right: -70px;
    top: -80px;
    transform: rotate(45deg);
    width: 420px;
    z-index: -1;
}

.commodity-grid,
.service-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.commodity-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--ior-line);
    box-shadow: 0 10px 28px rgba(7, 28, 66, 0.045);
    display: flex;
    flex-direction: column;
    min-height: 230px;
    overflow: hidden;
    padding: 24px;
    position: relative;
    transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.commodity-card::before {
    background: linear-gradient(90deg, var(--ior-green), var(--ior-gold));
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    right: 100%;
    top: 0;
    transition: right 0.25s ease;
}

.commodity-card:hover {
    border-color: rgba(36, 107, 59, 0.34);
    box-shadow: var(--ior-shadow);
    transform: translateY(-7px);
}

.commodity-card:hover::before {
    right: 0;
}

.commodity-card-top {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.commodity-icon {
    align-items: center;
    background: var(--ior-ivory);
    border: 1px solid var(--ior-sand);
    border-radius: 50%;
    color: var(--ior-gold-deep);
    display: inline-flex;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.commodity-icon svg {
    height: 23px;
    width: 23px;
}

.commodity-index {
    color: rgba(11, 40, 95, 0.18);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.7rem;
    font-weight: 700;
}

.commodity-card h3 {
    color: var(--ior-navy);
    font-size: 1.08rem;
    font-weight: 850;
    line-height: 1.35;
    margin: 27px 0 8px;
}

.commodity-card p {
    color: var(--ior-muted);
    font-size: 0.84rem;
    margin: 0;
}

.commodity-line {
    background: linear-gradient(90deg, var(--ior-gold), transparent);
    height: 1px;
    margin-top: auto;
    width: 64px;
}

.origin-layout {
    align-items: center;
    grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
}

.origin-layer-list {
    border-top: 1px solid var(--ior-line);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
    padding-top: 24px;
}

.origin-layer-title {
    color: var(--ior-green);
    flex-basis: 100%;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.origin-layer-list div {
    align-items: center;
    background: var(--ior-ivory);
    border: 1px solid var(--ior-sand);
    color: var(--ior-navy);
    display: inline-flex;
    font-size: 0.79rem;
    font-weight: 800;
    gap: 8px;
    padding: 9px 12px;
}

.origin-layer-list svg {
    color: var(--ior-gold-deep);
    height: 16px;
    width: 16px;
}

.origin-map-card {
    background:
        radial-gradient(circle at 18% 24%, rgba(229, 199, 103, 0.13), transparent 28%),
        linear-gradient(135deg, var(--ior-navy) 0%, #164a60 53%, var(--ior-green-deep) 100%);
    box-shadow: 0 32px 70px rgba(7, 28, 66, 0.2);
    color: var(--ior-white);
    min-height: 520px;
    overflow: hidden;
    padding: 30px;
    position: relative;
}

.origin-map-card::before {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 32px 32px;
    content: "";
    inset: 0;
    position: absolute;
}

.map-card-header,
.map-card-footer,
.indonesia-map {
    position: relative;
    z-index: 1;
}

.map-card-header {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
}

.map-card-header div {
    display: grid;
    gap: 5px;
}

.map-card-header span {
    color: var(--ior-light-gold);
    font-size: 0.71rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.map-card-header strong {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.86rem;
    font-weight: 700;
}

.map-card-header > svg {
    color: var(--ior-light-gold);
    height: 31px;
    opacity: 0.8;
    width: 31px;
}

.indonesia-map {
    height: 330px;
    margin: 15px 0 8px;
    width: 100%;
}

.map-island,
.map-islet {
    fill: rgba(255, 255, 255, 0.15);
    stroke: rgba(229, 199, 103, 0.72);
    stroke-width: 2;
}

.map-route {
    fill: none;
    stroke: rgba(229, 199, 103, 0.88);
    stroke-dasharray: 8 9;
    stroke-linecap: round;
    stroke-width: 2.5;
}

.map-node {
    fill: var(--ior-light-gold);
    stroke: var(--ior-white);
    stroke-width: 3;
}

.map-card-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.map-card-footer span {
    background: rgba(7, 28, 66, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 9px;
}

.services-pattern,
.cta-pattern,
.footer-pattern {
    background-image:
        radial-gradient(circle at center, transparent 0 24px, rgba(229, 199, 103, 0.1) 25px 26px, transparent 27px),
        radial-gradient(circle at center, transparent 0 9px, rgba(255, 255, 255, 0.055) 10px 11px, transparent 12px);
    background-size: 70px 70px;
    height: 390px;
    opacity: 0.68;
    position: absolute;
    right: -90px;
    top: -90px;
    transform: rotate(45deg);
    width: 450px;
}

.service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-item {
    align-items: center;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.13);
    display: grid;
    gap: 12px;
    grid-template-columns: auto 1fr auto;
    min-height: 96px;
    padding: 18px;
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(229, 199, 103, 0.5);
    transform: translateY(-4px);
}

.service-icon {
    align-items: center;
    border: 1px solid rgba(229, 199, 103, 0.34);
    border-radius: 50%;
    color: var(--ior-light-gold);
    display: inline-flex;
    height: 43px;
    justify-content: center;
    width: 43px;
}

.service-icon svg {
    height: 20px;
    width: 20px;
}

.service-item > span:nth-child(2) {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.88rem;
    font-weight: 750;
    line-height: 1.4;
}

.service-arrow {
    color: rgba(229, 199, 103, 0.7);
    height: 17px;
    width: 17px;
}

.process-section {
    background:
        linear-gradient(180deg, rgba(251, 248, 240, 0.74), rgba(255, 255, 255, 0.96));
}

.workflow-list {
    counter-reset: workflow;
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
}

.workflow-list li {
    background: var(--ior-white);
    border: 1px solid var(--ior-line);
    min-height: 150px;
    overflow: hidden;
    padding: 22px 18px 18px;
    position: relative;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.workflow-list li::before {
    color: var(--ior-gold-deep);
    content: counter(workflow, decimal-leading-zero);
    counter-increment: workflow;
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.workflow-list li::after {
    background: linear-gradient(90deg, var(--ior-green), var(--ior-gold));
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    right: 100%;
    transition: right 0.22s ease;
}

.workflow-list li:hover {
    border-color: rgba(36, 107, 59, 0.32);
    box-shadow: 0 20px 42px rgba(7, 28, 66, 0.09);
    transform: translateY(-5px);
}

.workflow-list li:hover::after {
    right: 0;
}

.workflow-list li span {
    color: var(--ior-ink);
    font-size: 0.82rem;
    font-weight: 820;
    line-height: 1.45;
}

.insight-layout {
    align-items: stretch;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.insight-card {
    background: var(--ior-white);
    border: 1px solid var(--ior-line);
    box-shadow: 0 16px 44px rgba(7, 28, 66, 0.055);
    min-height: 430px;
    overflow: hidden;
    padding: 34px;
    position: relative;
}

.insight-card::after {
    border: 1px solid rgba(201, 151, 35, 0.13);
    border-radius: 50%;
    content: "";
    height: 270px;
    position: absolute;
    right: -150px;
    top: -130px;
    width: 270px;
}

.insight-icon {
    align-items: center;
    background: var(--ior-navy);
    border-radius: 50%;
    color: var(--ior-light-gold);
    display: inline-flex;
    height: 54px;
    justify-content: center;
    margin-bottom: 30px;
    width: 54px;
}

.insight-icon svg {
    height: 25px;
    width: 25px;
}

.insight-card h2 {
    font-size: clamp(2.15rem, 3vw, 3.2rem);
}

.insight-card > p:not(.eyebrow) {
    font-size: 0.95rem;
    line-height: 1.75;
}

.verification-badge {
    align-items: center;
    background: var(--ior-ivory);
    border: 1px solid var(--ior-sand);
    color: var(--ior-green);
    display: inline-flex;
    font-size: 0.72rem;
    font-weight: 850;
    gap: 7px;
    margin-top: 18px;
    padding: 8px 10px;
    text-transform: uppercase;
}

.verification-badge svg {
    height: 15px;
    width: 15px;
}

.cta-section {
    background: linear-gradient(115deg, var(--ior-green-deep), #1b7043 34%, var(--ior-navy) 100%);
    color: var(--ior-white);
    overflow: hidden;
    padding: 96px 0;
}

.cta-pattern {
    left: -100px;
    right: auto;
    top: -120px;
}

.cta-content {
    align-items: center;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
}

.cta-content h2 {
    color: var(--ior-white);
    max-width: 770px;
}

.cta-content p,
.conversion-note {
    color: rgba(255, 255, 255, 0.78);
}

.cta-content .btn {
    justify-self: end;
    min-width: 245px;
}

.conversion-note {
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    font-size: 0.78rem;
    line-height: 1.65;
    margin: 38px 0 0;
    padding-top: 22px;
}

.site-footer {
    background: var(--ior-navy-deep);
    color: rgba(255, 255, 255, 0.7);
    overflow: hidden;
    padding: 64px 0;
}

.footer-pattern {
    opacity: 0.28;
    right: -150px;
    top: -150px;
}

.footer-grid {
    grid-template-columns: 1.25fr 0.85fr 0.7fr;
}

.footer-brand {
    margin-bottom: 18px;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    max-width: 360px;
}

.footer-origin {
    align-items: center;
    color: var(--ior-light-gold);
    display: flex;
    font-size: 0.72rem;
    font-weight: 850;
    gap: 8px;
    letter-spacing: 0.1em;
    margin-top: 22px;
    text-transform: uppercase;
}

.footer-origin svg {
    height: 17px;
    width: 17px;
}

.site-footer h2 {
    color: var(--ior-light-gold);
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.site-footer a,
.site-footer span {
    display: block;
    font-size: 0.84rem;
    margin-bottom: 10px;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--ior-light-gold);
}

.admin-shell {
    background: var(--ior-surface);
}

.admin-page {
    align-items: center;
    display: flex;
    min-height: 100vh;
    padding: 32px;
}

.admin-panel {
    background: var(--ior-white);
    border: 1px solid var(--ior-line);
    box-shadow: var(--ior-shadow);
    margin: 0 auto;
    max-width: 980px;
    padding: 34px;
    width: 100%;
}

.admin-panel h1 {
    color: var(--ior-navy);
}

.admin-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 26px 0;
}

.admin-grid div {
    border: 1px solid var(--ior-line);
    display: grid;
    gap: 6px;
    min-height: 100px;
    padding: 18px;
}

.admin-grid span {
    color: var(--ior-muted);
}

@media (max-width: 1399.98px) {
    .navbar-collapse {
        background: var(--ior-white);
        border-top: 1px solid var(--ior-line);
        box-shadow: 0 26px 50px rgba(7, 28, 66, 0.14);
        left: 0;
        padding: 18px 24px 24px;
        position: absolute;
        right: 0;
        top: 100%;
    }

    .navbar-nav {
        align-items: stretch;
    }

    .nav-link {
        border-bottom: 1px solid rgba(220, 227, 216, 0.72);
        font-size: 0.87rem;
        padding: 0.72rem 0 !important;
    }

    .nav-link::after {
        display: none;
    }

    .nav-actions {
        align-items: stretch;
        flex-direction: column;
        margin: 18px 0 0;
    }

    .language-switch {
        justify-content: flex-start;
        padding-inline: 0;
    }

    .nav-actions .btn {
        align-self: flex-start;
    }
}

@media (max-width: 1199.98px) {
    .hero-section {
        min-height: 760px;
    }

    .hero-layout {
        gap: 32px;
        grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.75fr);
    }

    .hero-origin-visual {
        min-height: 510px;
    }

    .orbit-one {
        height: 470px;
        width: 470px;
    }

    .orbit-two {
        height: 350px;
        width: 350px;
    }

    .section-grid,
    .origin-layout,
    .cta-content {
        gap: 42px;
    }

    .commodity-grid,
    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .workflow-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    html {
        scroll-padding-top: 84px;
    }

    .hero-section {
        min-height: auto;
        padding: 140px 0 70px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 780px;
    }

    .hero-origin-visual {
        min-height: 430px;
        margin-top: 8px;
    }

    .hero-logo-watermark {
        right: 13%;
        width: 52%;
    }

    .origin-card {
        left: 0;
        max-width: 520px;
        right: auto;
    }

    .orbit-one {
        left: 18%;
        right: auto;
    }

    .orbit-two {
        left: 26%;
        right: auto;
    }

    .origin-value-grid {
        grid-template-columns: 1fr;
    }

    .origin-value-item {
        padding: 17px 0;
    }

    .origin-value-item + .origin-value-item {
        border-left: 0;
        border-top: 1px solid rgba(18, 79, 49, 0.15);
    }

    .section-grid,
    .origin-layout,
    .insight-layout,
    .cta-content,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-band {
        padding: 88px 0;
    }

    .origin-layout {
        gap: 50px;
    }

    .origin-map-card {
        min-height: 500px;
    }

    .cta-content .btn {
        justify-self: start;
    }

    .footer-grid {
        gap: 38px;
    }
}

@media (max-width: 767.98px) {
    .navbar {
        min-height: 76px;
    }

    .hero-section {
        background-position: 62% center;
        padding: 112px 0 54px;
    }

    .hero-section::before {
        background: linear-gradient(180deg, rgba(7, 28, 66, 0.96) 0%, rgba(9, 37, 82, 0.92) 55%, rgba(18, 79, 49, 0.82) 100%);
    }

    .hero-section::after {
        mask-image: none;
        opacity: 0.55;
    }

    .hero-heritage-pattern {
        height: 300px;
        right: -180px;
        top: 150px;
        width: 360px;
    }

    .hero-brand-signal {
        margin-bottom: 22px;
    }

    .hero-brand-signal img {
        height: 46px;
        width: 46px;
    }

    .hero-brand-signal span {
        font-size: 0.66rem;
    }

    .eyebrow {
        font-size: 0.65rem;
        letter-spacing: 0.14em;
    }

    .hero-section h1 {
        font-size: clamp(2.55rem, 12vw, 4rem);
        line-height: 1.01;
        overflow-wrap: normal;
    }

    .hero-copy {
        font-size: 1rem;
        line-height: 1.65;
        margin-top: 20px;
    }

    .hero-actions {
        gap: 9px;
        margin-top: 26px;
        width: 100%;
    }

    .hero-actions .btn:not(.btn-link-light) {
        width: 100%;
    }

    .hero-actions .btn-link-light {
        justify-content: flex-start;
        padding-inline: 0;
    }

    .status-ribbon {
        margin-top: 28px;
        padding: 13px 15px;
    }

    .status-ribbon strong {
        font-size: 0.82rem;
        overflow-wrap: anywhere;
    }

    .hero-origin-visual {
        min-height: 390px;
    }

    .origin-card {
        bottom: 0;
        max-width: none;
        padding: 22px;
        width: 100%;
    }

    .origin-card h2 {
        font-size: 1.4rem;
    }

    .origin-card p {
        font-size: 0.84rem;
    }

    .orbit-one {
        height: 350px;
        left: 12%;
        top: 0;
        width: 350px;
    }

    .orbit-two {
        height: 260px;
        left: 23%;
        top: 45px;
        width: 260px;
    }

    .hero-logo-watermark {
        right: 16%;
        top: 12%;
        width: 62%;
    }

    .origin-value-strip {
        padding: 20px 0;
    }

    .origin-value-item {
        gap: 12px;
        padding: 14px 0;
    }

    .value-icon {
        height: 40px;
        width: 40px;
    }

    .section-band {
        padding: 72px 0;
    }

    h2 {
        font-size: clamp(2.2rem, 10vw, 3.2rem);
    }

    .lead,
    .section-heading > p:not(.eyebrow),
    .origin-copy > p,
    .insight-layout article > p:not(.eyebrow),
    .cta-content p {
        font-size: 0.96rem;
    }

    .heritage-mark {
        font-size: 4rem;
        height: 120px;
        left: -28px;
        top: -45px;
        width: 120px;
    }

    .origin-signature {
        grid-template-columns: 42px auto;
    }

    .origin-signature small {
        grid-column: 1 / -1;
        margin-top: 5px;
    }

    .commitment-item {
        grid-template-columns: auto auto 1fr;
        min-height: 58px;
        padding: 12px 13px;
    }

    .commodity-grid,
    .service-grid,
    .workflow-list,
    .admin-grid {
        grid-template-columns: 1fr;
    }

    .commodity-card {
        min-height: 205px;
    }

    .origin-map-card {
        min-height: 420px;
        padding: 20px;
    }

    .indonesia-map {
        height: 270px;
        margin-top: 8px;
    }

    .service-item {
        min-height: 82px;
    }

    .workflow-list li {
        min-height: 118px;
    }

    .workflow-list li::before {
        margin-bottom: 15px;
    }

    .insight-card {
        min-height: 0;
        padding: 25px;
    }

    .insight-icon {
        margin-bottom: 23px;
    }

    .cta-section {
        padding: 72px 0;
    }

    .cta-content .btn {
        min-width: 0;
        width: 100%;
    }

    .site-footer {
        padding: 52px 0;
    }
}

@media (max-width: 420px) {
    .region-chips span,
    .map-card-footer span {
        font-size: 0.64rem;
    }

    .origin-card {
        padding: 19px;
    }

    .origin-map-card {
        min-height: 390px;
    }

    .indonesia-map {
        height: 235px;
    }

    .admin-page {
        padding: 15px;
    }

    .admin-panel {
        padding: 22px;
    }
}
