.sus-plan {
    background-image: url("images/bg-sus-top.png");
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #f2f7e1;
}

.esg-framework {
    --row-label-width: clamp(84px, 9vw, 130px);
    --objectives-top: 8%;
    --objectives-height: clamp(240px, 32vw, 360px);
    --objectives-gap: clamp(56px, 6vw, 140px);
    --goals-top: calc(var(--objectives-top) + var(--objectives-height) + var(--objectives-gap));
    position: relative;
    overflow: hidden;
}

.esg-framework .esg-pin {
    position: relative;
    height: 100vh;
    min-height: 720px;
    background-image: url("images/bg-sus-bottom.png");
    background-size: 100% auto;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.esg-framework .esg-canvas {
    position: absolute;
    inset: var(--header-offset, 0px) 0 0;
    padding: 0;
    box-sizing: border-box;
}

.esg-framework.is-esg-ready:not(.is-esg-inview) .esg-canvas {
    opacity: 0;
    pointer-events: none;
}

.esg-framework .master-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    --master-size: clamp(170px, 50vw, 30vw);
    width: var(--master-size);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: linear-gradient(135deg, #b5d306, var(--color-brand-gold), #00a99d, var(--color-brand-purple));
    background-size: 200% 200%;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-family-heading);
    font-weight: 700;
    font-size: clamp(0.9rem, calc(var(--master-size) / 12), 1.6rem);
    padding: 20px;
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.18);
    transform: translate(-50%, -50%);
    z-index: 3;
    animation: klccpEsgMasterPulse 6s ease-in-out infinite;
}

.esg-framework .master-circle span {
    font-size: 3em;
    line-height: 1.1;
}

@keyframes klccpEsgMasterPulse {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.esg-framework .pillar {
    --pillar-color: var(--color-brand-blue);
    position: absolute;
    left: 50%;
    top: 50%;
    width: clamp(120px, 14vw, 160px);
    text-align: center;
    transform: translate(-50%, -50%);
    z-index: 4;
}

.esg-framework .pillar-circle {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: var(--pillar-color);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-family-heading);
    font-weight: 600;
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.16);
}

.esg-framework .pillar-circle span {
    font-size: 1.5rem;
    line-height: 1;
}

.esg-framework .pillar-icon {
    width: clamp(22px, 4vw, var(--gap48));
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.esg-framework .pillar-subtitle {
    margin-top: 0;
    font-size: 1rem;
    line-height: 1.3;
    font-family: var(--font-family-heading);
    color: var(--color-text);
    font-weight: 600;
    text-align: center;
    pointer-events: none;
    width: 100%;
    max-width: 100%;
    white-space: normal;
    margin-inline: 0;
    align-self: stretch;
}

.esg-framework .pillar--planet {
    --pillar-color: var(--color-brand-army);
}

.esg-framework .pillar--people {
    --pillar-color: var(--color-brand-gold);
}

.esg-framework .pillar--peace {
    --pillar-color: #00a99d;
}

.esg-framework .pillar--prosperity {
    --pillar-color: var(--color-brand-purple);
}

.esg-framework .objectives-row,
.esg-framework .goals-area,
.esg-framework .sdg-strip {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: min(1200px, 92%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto 1fr;
    row-gap: clamp(18px, 2vw, 32px);
    column-gap: var(--gap18);
    align-items: stretch;
    z-index: 2;
}

.esg-framework .objectives-row {
    top: var(--objectives-top);
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: clamp(18px, 2vw, 30px);
    min-height: var(--objectives-height);
    z-index: 4;
}

.esg-framework .objectives-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--gap18);
    align-items: stretch;
}

.esg-framework .pillar-group {
    --pillar-group-bg-opacity: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap18);
    border-radius: 12px;
    padding: var(--gap18);
    overflow: visible;
    height: 100%;
}

.esg-framework .pillar-group::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--color-white);
    opacity: var(--pillar-group-bg-opacity, 0);
    pointer-events: none;
    z-index: 0;
}

.esg-framework .pillar-group>* {
    position: relative;
    z-index: 1;
}

.esg-framework .pillar-group .pillar {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: clamp(120px, 14vw, 160px);
}

.esg-framework .pillar-group .goals-column {
    width: 100%;
    text-align: left;
    background: transparent;
    border-radius: 0;
    padding: 0;
    min-height: 0;
    flex: 1 1 auto;
    align-self: stretch;
}

.esg-framework .row-label {
    grid-column: 1 / -1;
    display: inline-flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    font-family: var(--font-family-heading);
    font-weight: 700;
    font-size: clamp(1.1rem, 4vw, 3rem);
    color: var(--color-brand-blue);
    position: relative;
}

.esg-framework .row-label .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2em;
    padding: 0.18em 0.55em;
    border-radius: 999px;
    background: var(--color-brand-emerald);
    color: var(--color-white);
    line-height: 1.6;
    font-size: 0.6em;
}

.esg-framework .row-label--metrics {
    gap: clamp(24px, 6vw, 72px);
    flex-wrap: wrap;
    font-size: clamp(1.15rem, 1.8vw, 1.65rem);
}

.esg-framework .esg-metric {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    white-space: nowrap;
}

.esg-framework .row-label--metrics .num {
    width: clamp(34px, 4.2vw, 48px);
    height: clamp(34px, 4.2vw, 48px);
    min-width: 0;
    padding: 0;
    font-size: clamp(1rem, 1.55vw, 1.35rem);
    line-height: 1;
}

.esg-framework .goals-area {
    top: var(--goals-top);
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
}

.esg-framework .goals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap18);
}

.esg-framework .goals-column {
    background: var(--color-white);
    border-radius: 12px;
    padding: var(--gap18);
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 170px;
}

.esg-framework .goals-column-title {
    font-weight: 600;
    color: var(--color-brand-blue);
    font-size: 1.25rem;
    line-height: 1.2;
    text-align: center;
    font-family: var(--font-family-heading);
}

.esg-framework .goal {
    font-size: 0.9rem;
    font-family: var(--font-family-heading);
    line-height: 1.25;
    color: var(--color-text);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.esg-framework .goal .num {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 2em;
    height: 2em;
    padding: 0;
    border-radius: 50%;
    background: var(--color-brand-blue);
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.8rem;
    line-height: 1;
    transform: translateY(-0.3em);
}

.esg-framework .esg-learn-more-wrap {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: clamp(6px, 1.6vw, 18px);
}

.esg-framework .esg-learn-more {
    min-width: 116px;
    box-shadow: 0 10px 24px rgba(25, 130, 25, 0.18);
}

.esg-framework .esg-learn-more:focus-visible {
    outline: 2px solid rgba(var(--color-brand-blue-rgb), 0.35);
    outline-offset: 3px;
}

.esg-framework .align-with {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(1100px, 86%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.esg-framework .align-label {
    font-family: var(--font-family-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1rem;
    color: var(--color-brand-army);
}

.esg-framework .align-main {
    font-family: var(--font-family-heading);
    font-weight: 700;
    font-size: clamp(1rem, 3vw, 2rem);
    color: var(--color-brand-blue);
}

.esg-framework .align-badge {
    width: min(60vmin, 420px);
    aspect-ratio: 1 / 1;
    background: url("images/petronas-sus-approach.png") center / contain no-repeat;
    display: grid;
    place-items: center;
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.esg-framework .align-badge span {
    display: none;
}

.esg-framework .sdg-strip {
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    align-items: center;
}

.esg-framework .sdg-tiles {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 8px;
}

.esg-framework .sdg-icons img {
    max-width: 50%;
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.esg-framework .sdg-tile {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.7rem;
    color: #1b1d20;
}

.esg-framework .sdg-tile img {
    display: block;
    width: 100%;
    height: auto;
}

.esg-framework .esg-sdg-learn-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: clamp(12px, 2vw, 28px);
    margin-bottom: clamp(44px, 7vh, 76px);
}

.esg-framework.is-esg-static .esg-pin {
    height: auto;
    min-height: 0;
    padding-block: clamp(40px, 7vw, 88px);
}

.esg-framework.is-esg-static .esg-canvas {
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(28px, 5vw, 56px);
    width: min(1200px, 92%);
    margin: 0 auto;
}

.esg-framework.is-esg-static .master-circle,
.esg-framework.is-esg-static .objectives-row,
.esg-framework.is-esg-static .align-with,
.esg-framework.is-esg-static .sdg-strip {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
}

.esg-framework.is-esg-static .master-circle {
    width: clamp(180px, 34vw, 320px);
    margin: 0 auto;
}

.esg-framework.is-esg-static .objectives-row {
    min-height: 0;
}

.esg-framework.is-esg-static .align-badge {
    width: min(320px, 76vw);
}

@media (max-width: 1024px) {
    .esg-framework .goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .esg-framework .sdg-tiles {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media screen and (orientation: portrait),
screen and (max-width: 900px) {
    .esg-framework .master-circle {
        --master-size: clamp(170px, 50vw, 60vw);
    }
}

@media (max-width: 900px) {
    .esg-framework .esg-pin {
        min-height: 820px;
    }

    .esg-framework .objectives-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .esg-framework .row-label--metrics {
        gap: 16px 28px;
    }

    .esg-framework .align-with {
        grid-template-columns: var(--row-label-width) 1fr;
    }

    .esg-framework .align-badge {
        grid-column: 2;
        justify-self: start;
        margin-top: 6px;
    }
}

@media (max-width: 640px) {
    .esg-framework {
        --objectives-top: clamp(40px, 5.8vh, 58px);
        --objectives-height: auto;
    }

    .esg-framework .esg-pin {
        height: calc(100svh - clamp(30px, 5vh, 46px));
        min-height: 0;
        background-position: center calc(100% + clamp(14px, 3vh, 28px));
    }

    .esg-framework .objectives-row {
        top: var(--objectives-top);
        width: 96%;
        row-gap: clamp(8px, 1.4vh, 12px);
        min-height: 0;
    }

    .esg-framework .row-label--metrics {
        gap: 8px 14px;
        font-size: clamp(0.82rem, 3.25vw, 0.98rem);
        line-height: 1.1;
    }

    .esg-framework .esg-metric {
        gap: 6px;
    }

    .esg-framework .row-label--metrics .num {
        width: clamp(28px, 8vw, 34px);
        height: clamp(28px, 8vw, 34px);
        font-size: clamp(0.78rem, 3vw, 0.95rem);
    }

    .esg-framework .objectives-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .esg-framework .pillar-group {
        gap: 10px;
        padding: 10px 9px;
        border-radius: 10px;
    }

    .esg-framework .pillar,
    .esg-framework .pillar-group .pillar {
        width: clamp(74px, 23vw, 92px);
    }

    .esg-framework .pillar-circle {
        width: 100%;
        gap: 5px;
        box-shadow: 0 10px 18px rgba(0, 0, 0, 0.14);
    }

    .esg-framework .pillar-icon {
        width: clamp(17px, 5vw, 23px);
    }

    .esg-framework .pillar-circle span {
        font-size: clamp(0.86rem, 3.8vw, 1.05rem);
    }

    .esg-framework .pillar-subtitle {
        font-size: clamp(0.78rem, 3.35vw, 0.9rem);
        line-height: 1.14;
    }

    .esg-framework .goals-column {
        gap: 6px;
    }

    .esg-framework .goal {
        gap: 5px;
        font-size: clamp(0.66rem, 2.95vw, 0.78rem);
        line-height: 1.14;
    }

    .esg-framework .goal .num {
        width: 1.55em;
        height: 1.55em;
        font-size: 0.68rem;
        transform: translateY(0);
    }

    .esg-framework .esg-learn-more-wrap {
        margin-top: 2px;
    }

    .esg-framework .esg-learn-more {
        min-width: 104px;
        padding: 8px 18px;
        font-size: 0.78rem;
        line-height: 1.1;
    }

    .esg-framework .goals-area,
    .esg-framework .sdg-strip,
    .esg-framework .align-with {
        width: 94%;
    }
}