:root {
    --company-navy: #073f56;
    --company-navy-dark: #052f42;
    --company-blue: #0a7298;
    --company-cyan: #55afd1;
    --company-sky: #d8ebf3;
    --company-white: #ffffff;
    --company-soft: #f4f7f8;
    --company-text: #17242d;
    --company-muted: #64717a;
    --company-yellow: #f5b51b;
    --company-header-height: 82px;
    --company-container: 1240px;
    --company-radius: 22px;
    --company-shadow: 0 24px 60px rgba(4, 43, 60, 0.16);
}

/* Reset */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--company-text);
    background: var(--company-white);
    font-family: "Poppins", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.company-container {
    width: min(calc(100% - 48px), var(--company-container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 10px 14px;
    color: var(--company-white);
    background: var(--company-navy);
    border-radius: 8px;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

/* Header */

.company-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    height: var(--company-header-height);
    color: var(--company-white);
    background: rgba(5, 54, 73, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    transition:
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        height 0.25s ease;
}

.company-header.scrolled {
    height: 70px;
    background: rgba(5, 54, 73, 0.96);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.company-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.company-brand-logo {
    height: 70px;
    object-fit: contain;
    float:left !important;
}

.company-navigation {
    display: flex;
    align-items: center;
    gap: 6px;
}

.navigation-link {
    position: relative;
    padding: 11px 14px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 500;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.navigation-link:hover,
.navigation-link.active {
    color: var(--company-white);
}

.navigation-link::after {
    content: "";
    position: absolute;
    right: 14px;
    bottom: 5px;
    left: 14px;
    height: 2px;
    background: var(--company-white);
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.navigation-link:hover::after,
.navigation-link.active::after {
    transform: scaleX(1);
}

.navigation-contact {
    margin-left: 10px;
    padding-inline: 18px;
    color: var(--company-navy);
    background: var(--company-white);
    border-radius: 999px;
}

.navigation-contact::after {
    display: none;
}

.navigation-contact:hover {
    color: var(--company-white);
    background: var(--company-blue);
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    cursor: pointer;
    background: transparent;
    border: 0;
}

.mobile-menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--company-white);
    border-radius: 999px;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.mobile-menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Cover */

.company-cover {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    isolation: isolate;
}

.cover-background-dark,
.cover-background-light {
    position: absolute;
    right: 0;
    left: 0;
    z-index: -3;
}

.cover-background-dark {
    top: 0;
    height: 64%;
    background:
        radial-gradient(circle at 76% 25%, rgba(74, 167, 203, 0.24), transparent 25%),
        linear-gradient(145deg, var(--company-navy-dark), var(--company-navy));
}

.cover-background-light {
    bottom: 0;
    height: 43%;
    background: var(--company-white);
}

.cover-background-light::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -90px;
    width: 280px;
    height: 220px;
    background: var(--company-blue);
    border-radius: 45% 0 0 45%;
    transform: rotate(-18deg);
    opacity: 0.9;
}

.cover-content {
    position: relative;
    min-height: 100svh;
    padding-top: calc(var(--company-header-height) + 52px);
    padding-bottom: 38px;
    display: grid;
    grid-template-columns: minmax(330px, 0.88fr) minmax(470px, 1.12fr);
    grid-template-rows: 1fr auto;
    column-gap: clamp(42px, 6vw, 90px);
    align-items: center;
}

.cover-copy {
    position: relative;
    z-index: 2;
    align-self: center;
    padding-bottom: 64px;
    color: var(--company-white);
}

.cover-kicker {
    margin-bottom: 15px;
    font-size: 14px;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.08em;
    opacity: 0.82;
}

.cover-title {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(58px, 7vw, 105px);
    line-height: 0.84;
    letter-spacing: -0.055em;
}

.cover-title span {
    display: block;
}

.cover-title-strong {
    font-weight: 800;
}

.cover-title-light {
    margin-top: 12px;
    font-weight: 400;
    letter-spacing: -0.035em;
}

.cover-description {
    max-width: 550px;
    margin: 34px 0 0;
    color: rgba(255, 255, 255, 0.83);
    font-size: 15px;
    line-height: 1.8;
}

.cover-description span {
    display: block;
    font-weight: 600;
}

.cover-year-block {
    position: absolute;
    left: 0;
    bottom: -130px;
    z-index: 3;
    color: var(--company-navy);
}

.cover-year-label {
    display: block;
    margin-bottom: 4px;
    color: var(--company-muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.cover-year {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(52px, 6vw, 78px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.cover-collage {
    position: relative;
    align-self: stretch;
    min-height: 620px;
}

.cover-image-card {
    position: absolute;
    margin: 0;
    overflow: hidden;
    background: var(--company-sky);
    border: 7px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--company-radius);
    box-shadow: var(--company-shadow);
}

.cover-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cover-image-digital {
    top: 27%;
    left: 0;
    z-index: 4;
    width: 39%;
    height: 28%;
}

.cover-image-building {
    top: 4%;
    right: 3%;
    z-index: 2;
    width: 48%;
    height: 58%;
}

.cover-image-team {
    bottom: 10%;
    left: 0;
    z-index: 3;
    width: 39%;
    height: 24%;
}

.cover-image-wide {
    right: 3%;
    bottom: 2%;
    z-index: 3;
    width: 58%;
    height: 30%;
}

.cover-building-badge {
    position: absolute;
    right: -12px;
    bottom: 4%;
    z-index: 6;
    width: 92px;
    height: 92px;
    padding: 20px;
    color: var(--company-white);
    background: var(--company-blue);
    border: 6px solid var(--company-white);
    border-radius: 50%;
    box-shadow: 0 15px 30px rgba(4, 43, 60, 0.2);
}

.cover-building-badge svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cover-bottom {
    grid-column: 1 / -1;
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: end;
    padding-top: 10px;
}

.cover-slogan {
    color: var(--company-navy);
}

.cover-slogan strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    letter-spacing: 0.06em;
}

.cover-slogan span {
    display: block;
    margin-top: 4px;
    color: var(--company-muted);
    font-size: 11px;
    font-weight: 600;
}

.contact-strip {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-strip-item {
    min-height: 42px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--company-white);
    background: var(--company-navy);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 500;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

a.contact-strip-item:hover {
    background: var(--company-blue);
    transform: translateY(-2px);
}

.contact-strip-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.contact-strip-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cover-dots {
    position: absolute;
    z-index: 1;
    width: 90px;
    height: 90px;
    pointer-events: none;
    background-image: radial-gradient(circle, currentColor 1.4px, transparent 1.5px);
    background-size: 8px 8px;
    opacity: 0.38;
}

.cover-dots-top {
    top: 17%;
    right: 8%;
    color: var(--company-white);
}

.cover-dots-bottom {
    bottom: 16%;
    left: 4%;
    color: var(--company-blue);
}

.cover-scroll-indicator {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--company-navy);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cover-scroll-indicator svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

/* Section heading reusable */

.section-heading {
    max-width: 760px;
}

.section-heading-center {
    margin-inline: auto;
    text-align: center;
}

.section-heading-right {
    margin-left: auto;
    text-align: right;
}

.section-eyebrow {
    margin-bottom: 10px;
    color: var(--company-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-title {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -0.035em;
}

.section-title strong {
    font-weight: 800;
}

.section-description {
    margin: 20px 0 0;
    color: var(--company-muted);
    font-size: 15px;
    line-height: 1.85;
}

.section-heading-dark {
    color: var(--company-white);
}

.section-heading-dark .section-eyebrow,
.section-heading-dark .section-description {
    color: rgba(255, 255, 255, 0.75);
}

/* Footer */

.company-footer {
    color: rgba(255, 255, 255, 0.78);
    background:
        radial-gradient(circle at 92% 20%, rgba(76, 166, 201, 0.18), transparent 25%),
        var(--company-navy-dark);
}

.footer-grid {
    padding-top: 70px;
    padding-bottom: 54px;
    display: grid;
    grid-template-columns: 1.3fr 0.65fr 0.9fr 1.25fr;
    gap: 48px;
}

.footer-logo {
    width: 180px;
    height: 58px;
    object-fit: contain;
    object-position: left center;
}

.footer-company p,
.footer-address p {
    margin: 20px 0 0;
    font-size: 13px;
    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-column h2 {
    margin: 0 0 8px;
    color: var(--company-white);
    font-size: 14px;
    font-weight: 600;
}

.footer-column a {
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--company-cyan);
}

.footer-bottom {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: rgba(255, 255, 255, 0.58);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
}

/* Responsive */

@media (max-width: 1100px) {
    .cover-content {
        grid-template-columns: minmax(300px, 0.9fr) minmax(410px, 1.1fr);
        column-gap: 35px;
    }

    .cover-collage {
        min-height: 560px;
    }

    .cover-title {
        font-size: clamp(54px, 7vw, 82px);
    }

    .cover-bottom {
        grid-template-columns: 1fr;
    }

    .contact-strip {
        flex-wrap: wrap;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    :root {
        --company-header-height: 72px;
    }

    .company-container {
        width: min(calc(100% - 32px), var(--company-container));
    }

    .mobile-menu-button {
        display: block;
    }

    .company-navigation {
        position: fixed;
        top: var(--company-header-height);
        right: 16px;
        left: 16px;
        padding: 18px;
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 4px;
        color: var(--company-white);
        background: rgba(5, 54, 73, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition:
            opacity 0.2s ease,
            visibility 0.2s ease,
            transform 0.2s ease;
    }

    .company-navigation.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navigation-contact {
        margin: 8px 0 0;
        text-align: center;
    }

    .company-cover {
        min-height: auto;
    }

    .cover-background-dark {
        height: 59%;
    }

    .cover-background-light {
        height: 46%;
    }

    .cover-content {
        min-height: auto;
        padding-top: calc(var(--company-header-height) + 50px);
        padding-bottom: 75px;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .cover-copy {
        padding-bottom: 25px;
    }

    .cover-title {
        font-size: clamp(58px, 13vw, 90px);
    }

    .cover-year-block {
        position: static;
        margin-top: 34px;
        color: var(--company-white);
    }

    .cover-year-label {
        color: rgba(255, 255, 255, 0.65);
    }

    .cover-collage {
        min-height: 570px;
        margin-top: 10px;
    }

    .cover-bottom {
        margin-top: 20px;
    }

    .cover-slogan {
        text-align: center;
    }

    .contact-strip {
        justify-content: center;
    }

    .cover-scroll-indicator {
        display: none;
    }
}

@media (max-width: 620px) {
    .company-brand-logo {
        width: 132px;
        height: 44px;
    }

    .cover-content {
        padding-top: calc(var(--company-header-height) + 34px);
    }

    .cover-title {
        font-size: clamp(49px, 16vw, 72px);
    }

    .cover-description {
        margin-top: 25px;
        font-size: 13px;
    }

    .cover-collage {
        min-height: 480px;
    }

    .cover-image-card {
        border-width: 4px;
        border-radius: 16px;
    }

    .cover-image-digital {
        top: 23%;
        width: 44%;
        height: 25%;
    }

    .cover-image-building {
        right: 0;
        width: 52%;
        height: 55%;
    }

    .cover-image-team {
        bottom: 14%;
        width: 43%;
        height: 21%;
    }

    .cover-image-wide {
        right: 0;
        bottom: 7%;
        width: 62%;
        height: 27%;
    }

    .cover-building-badge {
        right: -7px;
        bottom: 7%;
        width: 72px;
        height: 72px;
        padding: 15px;
    }

    .contact-strip {
        display: grid;
        grid-template-columns: 1fr;
    }

    .contact-strip-item {
        justify-content: center;
    }

    .footer-grid {
        padding-top: 55px;
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-bottom {
        padding-block: 20px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}


/* =========================================================
   MULTI-PAGE TRANSITION
   ========================================================= */

.company-page-shell {
    position: relative;
    min-height: 100svh;
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition:
        opacity 0.34s ease,
        transform 0.44s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.company-page-shell.page-enter {
    opacity: 0;
    transform: translate3d(58px, 0, 0);
}

.company-page-shell.page-leave {
    opacity: 0;
    transform: translate3d(-58px, 0, 0);
    pointer-events: none;
}

body.page-transitioning {
    overflow: hidden;
}

.company-header.header-solid {
    background: rgba(5, 54, 73, 0.96);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.company-header.header-solid .navigation-contact.active {
    color: var(--company-white);
    background: var(--company-blue);
}

/* Standalone page navigation */

.director-page-navigation {
    grid-column: 1 / -1;
    margin-top: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.director-page-link {
    min-width: 185px;
    padding: 13px 17px;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--company-navy);
    background: var(--company-white);
    border: 1px solid rgba(7, 63, 86, 0.14);
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(4, 43, 60, 0.08);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        color 0.2s ease,
        background-color 0.2s ease;
}

.director-page-link:hover {
    color: var(--company-white);
    background: var(--company-navy);
    box-shadow: 0 16px 36px rgba(4, 43, 60, 0.16);
    transform: translateY(-2px);
}

.director-page-link-next {
    justify-content: flex-end;
    text-align: right;
}

.director-page-link small,
.director-page-link strong {
    display: block;
}

.director-page-link small {
    margin-bottom: 2px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.62;
}

.director-page-link strong {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
}

.director-page-arrow {
    font-size: 21px;
    line-height: 1;
}

/* Placeholder pages while each PDF page is being built */

.company-placeholder {
    position: relative;
    min-height: 76svh;
    padding: calc(var(--company-header-height) + 90px) 0 100px;
    overflow: hidden;
    display: grid;
    place-items: center;
    color: var(--company-white);
    background:
        radial-gradient(circle at 82% 22%, rgba(85, 175, 209, 0.28), transparent 28%),
        linear-gradient(145deg, var(--company-navy-dark), var(--company-navy));
}

.company-placeholder-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    text-align: center;
}

.company-placeholder-kicker {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
}

.company-placeholder h1 {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(54px, 8vw, 96px);
    line-height: 1;
    letter-spacing: -0.055em;
}

.company-placeholder-inner > p:not(.company-placeholder-kicker) {
    max-width: 600px;
    margin: 26px auto 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.8;
}

.company-placeholder-actions {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.company-placeholder-button {
    padding: 12px 18px;
    color: var(--company-navy);
    background: var(--company-white);
    border: 1px solid var(--company-white);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.company-placeholder-button:hover {
    color: var(--company-white);
    background: var(--company-blue);
    transform: translateY(-2px);
}

.company-placeholder-button-outline {
    color: var(--company-white);
    background: transparent;
}

.company-placeholder-shape {
    position: absolute;
    right: -90px;
    bottom: -110px;
    width: 360px;
    height: 300px;
    background: var(--company-blue);
    border-radius: 55% 0 0 0;
    transform: rotate(-12deg);
}

.company-placeholder-dots {
    position: absolute;
    top: 22%;
    left: 8%;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.72) 1.4px, transparent 1.5px);
    background-size: 9px 9px;
    opacity: 0.35;
}

@media (max-width: 900px) {
    .director-page-navigation {
        margin-top: 34px;
    }
}

@media (max-width: 620px) {
    .director-page-navigation {
        align-items: stretch;
        flex-direction: column;
    }

    .director-page-link {
        width: 100%;
    }

    .company-placeholder {
        min-height: 68svh;
        padding-top: calc(var(--company-header-height) + 70px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .company-page-shell,
    .company-page-shell.page-enter,
    .company-page-shell.page-leave {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* =========================================================
   PAGE 02 - SAMBUTAN DIREKTUR
   ========================================================= */

section[id] {
    scroll-margin-top: calc(var(--company-header-height) - 2px);
}

.director-section {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    isolation: isolate;
    background: var(--company-white);
}

.director-background-dark,
.director-background-light {
    position: absolute;
    right: 0;
    left: 0;
    z-index: -4;
}

.director-background-dark {
    top: 0;
    height: 43%;
    background:
        radial-gradient(circle at 78% 16%, rgba(82, 175, 211, 0.18), transparent 24%),
        linear-gradient(145deg, var(--company-navy-dark), var(--company-navy));
}

.director-background-light {
    bottom: 0;
    height: 57%;
    background: var(--company-white);
}

.director-corner-shape {
    position: absolute;
    top: -118px;
    right: -72px;
    z-index: -1;
    width: 290px;
    height: 255px;
    background: var(--company-white);
    border-radius: 0 0 0 86%;
    transform: rotate(-15deg);
}

.director-side-shape {
    position: absolute;
    left: -85px;
    bottom: 14%;
    z-index: -1;
    width: 185px;
    height: 185px;
    background: var(--company-blue);
    border-radius: 30px;
    transform: rotate(45deg);
    box-shadow: 26px -26px 0 rgba(7, 63, 86, 0.95);
}

.director-dots {
    position: absolute;
    z-index: -1;
    width: 84px;
    height: 84px;
    pointer-events: none;
    background-image: radial-gradient(circle, currentColor 1.35px, transparent 1.45px);
    background-size: 8px 8px;
    opacity: 0.34;
}

.director-dots-top {
    top: 12%;
    right: 13%;
    color: var(--company-white);
}

.director-dots-bottom {
    right: 8%;
    bottom: 7%;
    color: var(--company-blue);
}

.director-layout {
    position: relative;
    min-height: 100svh;
    padding-top: clamp(88px, 8vw, 126px);
    padding-bottom: clamp(72px, 7vw, 110px);
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    grid-template-areas:
        "heading visual"
        "intro visual"
        "body visual";
    column-gap: clamp(52px, 7vw, 110px);
    align-content: center;
}

.director-heading {
    grid-area: heading;
    align-self: end;
    color: var(--company-white);
}

.director-kicker {
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.director-heading h1 {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(42px, 5.2vw, 72px);
    line-height: 1.02;
    font-weight: 400;
    letter-spacing: -0.045em;
}

.director-heading h1 strong {
    font-weight: 800;
}

.director-greeting {
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.8;
}

.director-introduction {
    grid-area: intro;
    padding-top: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.director-introduction p,
.director-body p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.82;
    text-align: justify;
}

.director-introduction p + p,
.director-body p + p {
    margin-top: 18px;
}

.director-introduction strong {
    color: var(--company-white);
}

.director-body {
    grid-area: body;
    padding-top: clamp(84px, 10vw, 138px);
    color: var(--company-text);
}

.director-name-card {
    width: min(100%, 255px);
    margin-top: 28px;
    padding: 15px 20px;
    color: var(--company-white);
    background: var(--company-navy);
    border-radius: 9px;
    box-shadow: 0 12px 28px rgba(4, 43, 60, 0.16);
}

.director-name-card strong,
.director-name-card span {
    display: block;
}

.director-name-card strong {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.director-name-card span {
    margin-top: 2px;
    font-size: 11px;
    opacity: 0.78;
}

.director-visual {
    grid-area: visual;
    position: relative;
    min-height: 670px;
    align-self: center;
}

.director-photo-card,
.director-handshake-card {
    position: absolute;
    margin: 0;
    overflow: hidden;
    background: var(--company-soft);
    border: 6px solid var(--company-white);
    box-shadow: var(--company-shadow);
}

.director-photo-card {
    top: 8%;
    right: 4%;
    width: 67%;
    height: 67%;
    border-radius: 24px;
}

.director-handshake-card {
    left: 2%;
    bottom: 10%;
    z-index: 3;
    width: 48%;
    height: 23%;
    border-radius: 18px;
}

.director-photo-card img,
.director-handshake-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.director-photo-card img {
    object-position: center 26%;
}

.director-quote-card {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 4;
    width: 62%;
    padding: 24px 24px 22px 34px;
    color: var(--company-white);
    background: var(--company-navy);
    border-radius: 18px 0 18px 18px;
    box-shadow: 0 18px 38px rgba(4, 43, 60, 0.18);
}

.director-quote-card p {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.55;
}

.director-quote-mark {
    position: absolute;
    top: -20px;
    left: 14px;
    color: var(--company-cyan);
    font-family: Georgia, serif;
    font-size: 64px;
    line-height: 1;
}

.director-emblem {
    position: absolute;
    right: 50%;
    bottom: 24px;
    width: 58px;
    height: 58px;
    padding: 12px;
    color: var(--company-white);
    background: var(--company-navy);
    border-radius: 14px;
    transform: translateX(50%);
    box-shadow: 0 12px 30px rgba(4, 43, 60, 0.14);
}

.director-emblem svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Reveal animation reusable for later sections */

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .director-layout {
        grid-template-columns: minmax(0, 1fr) minmax(330px, 0.85fr);
        column-gap: 48px;
    }

    .director-visual {
        min-height: 610px;
    }

    .director-body {
        padding-top: 96px;
    }
}

@media (max-width: 900px) {
    .director-section {
        min-height: auto;
    }

    .director-background-dark {
        height: 39%;
    }

    .director-background-light {
        height: 61%;
    }

    .director-layout {
        min-height: auto;
        padding-top: 94px;
        padding-bottom: 88px;
        grid-template-columns: 1fr;
        grid-template-areas:
            "heading"
            "intro"
            "visual"
            "body";
        row-gap: 0;
    }

    .director-heading {
        max-width: 720px;
    }

    .director-introduction {
        max-width: 720px;
    }

    .director-visual {
        width: min(100%, 620px);
        min-height: 590px;
        margin: 38px auto 0;
    }

    .director-body {
        max-width: 760px;
        padding-top: 54px;
    }

    .director-emblem {
        display: none;
    }

    .director-side-shape {
        left: -116px;
        bottom: 9%;
    }
}

@media (max-width: 620px) {
    .director-background-dark {
        height: 41%;
    }

    .director-layout {
        padding-top: 82px;
        padding-bottom: 70px;
    }

    .director-heading h1 {
        font-size: clamp(39px, 12vw, 54px);
    }

    .director-introduction p,
    .director-body p {
        font-size: 12.5px;
        line-height: 1.75;
        text-align: left;
    }

    .director-visual {
        min-height: 470px;
        margin-top: 30px;
    }

    .director-photo-card {
        top: 5%;
        right: 0;
        width: 72%;
        height: 65%;
        border-width: 4px;
        border-radius: 18px;
    }

    .director-handshake-card {
        left: 0;
        bottom: 14%;
        width: 52%;
        height: 22%;
        border-width: 4px;
        border-radius: 14px;
    }

    .director-quote-card {
        width: 72%;
        padding: 20px 18px 18px 28px;
        border-radius: 15px 0 15px 15px;
    }

    .director-quote-card p {
        font-size: 11.5px;
    }

    .director-name-card {
        width: 100%;
    }

    .director-corner-shape {
        top: -135px;
        right: -115px;
    }

    .director-dots-top {
        right: 3%;
    }

    .director-side-shape {
        display: none;
    }
}

/* =========================================================
   HOME ENTRANCE AND EXIT ANIMATION
   ========================================================= */

.company-home-page .home-animate {
    --home-x: 0px;
    --home-y: 0px;
    --home-scale: 1;
    --home-delay: 0ms;

    opacity: 0;
    filter: blur(4px);

    transform:
        translate3d(var(--home-x), var(--home-y), 0)
        scale(var(--home-scale));

    transition:
        opacity 0.7s ease var(--home-delay),
        filter 0.7s ease var(--home-delay),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--home-delay);

    will-change: opacity, filter, transform;
}

.company-home-page .home-from-left {
    --home-x: -72px;
    --home-y: 0px;
}

.company-home-page .home-from-right {
    --home-x: 72px;
    --home-y: 0px;
}

.company-home-page .home-from-bottom {
    --home-x: 0px;
    --home-y: 48px;
}

.company-home-page .home-fade {
    --home-x: 0px;
    --home-y: 0px;
}

.company-home-page .home-zoom {
    --home-x: 0px;
    --home-y: 18px;
    --home-scale: 0.62;
}

/* Aktif setelah seluruh gambar Home selesai dimuat */

.company-home-page.home-assets-loaded .home-animate {
    opacity: 1;
    filter: blur(0);

    transform:
        translate3d(0, 0, 0)
        scale(1);
}

/* Keluar saat berpindah halaman */

.company-home-page.home-leaving .cover-copy .home-animate,
.company-home-page.home-leaving .cover-slogan.home-animate {
    opacity: 0 !important;
    filter: blur(4px) !important;

    transform:
        translate3d(-85px, 0, 0)
        scale(0.98) !important;

    transition-delay: 0ms !important;
    transition-duration: 0.38s !important;
}

.company-home-page.home-leaving .cover-collage .home-animate,
.company-home-page.home-leaving .cover-contact-animation.home-animate,
.company-home-page.home-leaving .cover-scroll-indicator.home-animate {
    opacity: 0 !important;
    filter: blur(4px) !important;

    transform:
        translate3d(85px, 0, 0)
        scale(0.98) !important;

    transition-delay: 0ms !important;
    transition-duration: 0.38s !important;
}

.company-home-page.home-leaving .cover-dots.home-animate {
    opacity: 0 !important;
    transition-delay: 0ms !important;
    transition-duration: 0.25s !important;
}

.cover-contact-animation {
    justify-self: end;
}

/* Memberi sedikit gerakan pada ikon Next */

.company-home-page.home-assets-loaded .cover-scroll-indicator svg {
    animation: companyNextArrow 1.5s ease-in-out infinite;
}

@keyframes companyNextArrow {
    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

@media (max-width: 1100px) {
    .cover-contact-animation {
        justify-self: start;
    }
}

@media (max-width: 900px) {
    .cover-contact-animation {
        width: 100%;
        justify-self: stretch;
    }

    .cover-contact-animation .contact-strip {
        justify-content: center;
    }
}

@media (max-width: 620px) {
    .company-home-page .home-from-left {
        --home-x: -38px;
    }

    .company-home-page .home-from-right {
        --home-x: 38px;
    }

    .company-home-page .home-from-bottom {
        --home-y: 30px;
    }

    .cover-contact-animation .contact-strip {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .company-home-page .home-animate,
    .company-home-page.home-assets-loaded .home-animate,
    .company-home-page.home-leaving .home-animate {
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    .company-home-page .cover-scroll-indicator svg {
        animation: none !important;
    }
}

/* =========================================================
   HOME COVER - PDF PROPORTION REFINEMENT
   ========================================================= */

/*
 * Membuat area kolase lebih padat dan tidak terlalu melebar.
 * Ukuran mengikuti komposisi halaman sampul PDF.
 */

.company-home-page .cover-collage {
    width: min(100%, 610px);
    min-height: 535px;
    justify-self: end;
    align-self: center;
}

/* Seluruh kartu gambar harus menjaga proporsinya */

.company-home-page .cover-image-card {
    height: auto;
    min-height: 0;
    border-width: 6px;
    border-radius: 18px;
}

.company-home-page .cover-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gambar aktivitas digital: hampir persegi */

.company-home-page .cover-image-digital {
    top: 28%;
    left: 1%;
    width: 37%;
    height: auto;
    aspect-ratio: 1.12 / 1;
}

.company-home-page .cover-image-digital img {
    object-position: center;
}

/* Gedung utama: vertikal dan tidak melebar */

.company-home-page .cover-image-building {
    top: 1%;
    right: 1%;
    width: 42%;
    height: auto;
    aspect-ratio: 0.67 / 1;
}

.company-home-page .cover-image-building img {
    object-position: center center;
}

/* Gambar kerja tim: horizontal pendek */

.company-home-page .cover-image-team {
    bottom: 13%;
    left: 1%;
    width: 34%;
    height: auto;
    aspect-ratio: 2 / 1;
}

.company-home-page .cover-image-team img {
    object-position: center;
}

/* Gedung bagian bawah: lebar tetapi tidak tinggi */

.company-home-page .cover-image-wide {
    right: 1%;
    bottom: 7%;
    width: 62%;
    height: auto;
    aspect-ratio: 3.25 / 1;
}

.company-home-page .cover-image-wide img {
    object-position: center 58%;
}

/* Badge gedung mengikuti posisi PDF */

.company-home-page .cover-building-badge {
    right: -15px;
    bottom: 5%;
    width: 82px;
    height: 82px;
    padding: 18px;
    border-width: 5px;
}

/*
 * Informasi slogan, sosial media, dan kontak ditempatkan
 * tepat di bawah kolase gambar.
 */

.company-home-page .cover-bottom {
    grid-column: 2 / 3;
    width: min(100%, 610px);
    justify-self: end;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;

    padding-top: 0;
    margin-top: -12px;
    text-align: center;
}

.company-home-page .cover-slogan {
    width: 100%;
    color: var(--company-navy);
    text-align: center;
}

.company-home-page .cover-slogan strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.055em;
}

.company-home-page .cover-slogan span {
    display: block;
    margin-top: 3px;
    color: var(--company-muted);
    font-size: 9px;
    font-weight: 600;
    line-height: 1.45;
}

/* Social media */

.company-home-page .cover-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 24px;
}

.company-home-page .cover-social-label {
    margin-right: 3px;
    color: #9d7924;
    font-family: "Montserrat", sans-serif;
    font-size: 8px;
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.company-home-page .cover-social-icon {
    width: 19px;
    height: 19px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #9d7924;
    background: rgba(157, 121, 36, 0.08);
    border: 1px solid rgba(157, 121, 36, 0.55);
    border-radius: 3px;
}

.company-home-page .cover-social-icon svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Baris informasi kontak */

.company-home-page .cover-contact-animation {
    width: 100%;
    justify-self: auto;
}

.company-home-page .cover-contact-animation .contact-strip {
    width: 100%;
    justify-content: center;
    gap: 7px;
}

.company-home-page .cover-contact-animation .contact-strip-item {
    min-height: 35px;
    padding: 7px 13px;
    border-radius: 6px;
    font-size: 9px;
    white-space: nowrap;
}

.company-home-page .cover-contact-animation .contact-strip-icon {
    width: 16px;
    height: 16px;
}

/* Mengurangi bayangan agar mendekati PDF */

.company-home-page .cover-image-card {
    box-shadow: 0 18px 38px rgba(4, 43, 60, 0.14);
}

/* =========================================================
   HOME RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
    .company-home-page .cover-collage {
        width: min(100%, 560px);
        min-height: 500px;
    }

    .company-home-page .cover-bottom {
        width: min(100%, 560px);
    }

    .company-home-page .cover-contact-animation {
        justify-self: auto;
    }
}

@media (max-width: 900px) {
    .company-home-page .cover-collage {
        width: min(100%, 570px);
        min-height: 505px;
        justify-self: center;
        margin-inline: auto;
    }

    .company-home-page .cover-bottom {
        grid-column: 1 / -1;
        width: min(100%, 570px);
        justify-self: center;
        margin-top: -18px;
    }

    .company-home-page .cover-image-building {
        width: 41%;
    }

    .company-home-page .cover-image-digital {
        width: 38%;
    }

    .company-home-page .cover-image-wide {
        width: 63%;
    }
}

@media (max-width: 620px) {
    .company-home-page .cover-collage {
        width: 100%;
        min-height: 405px;
    }

    .company-home-page .cover-image-card {
        border-width: 4px;
        border-radius: 14px;
    }

    .company-home-page .cover-image-digital {
        top: 27%;
        left: 0;
        width: 39%;
        aspect-ratio: 1.08 / 1;
    }

    .company-home-page .cover-image-building {
        top: 1%;
        right: 0;
        width: 43%;
        aspect-ratio: 0.67 / 1;
    }

    .company-home-page .cover-image-team {
        bottom: 14%;
        left: 0;
        width: 35%;
        aspect-ratio: 1.9 / 1;
    }

    .company-home-page .cover-image-wide {
        right: 0;
        bottom: 8%;
        width: 64%;
        aspect-ratio: 2.9 / 1;
    }

    .company-home-page .cover-building-badge {
        right: -5px;
        bottom: 6%;
        width: 64px;
        height: 64px;
        padding: 13px;
        border-width: 4px;
    }

    .company-home-page .cover-bottom {
        width: 100%;
        margin-top: -8px;
        gap: 10px;
    }

    .company-home-page .cover-slogan strong {
        font-size: 11px;
    }

    .company-home-page .cover-slogan span {
        font-size: 8px;
    }

    .company-home-page .cover-socials {
        flex-wrap: wrap;
    }

    .company-home-page .cover-contact-animation .contact-strip {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .company-home-page .cover-contact-animation .contact-strip-item {
        justify-content: center;
        font-size: 10px;
    }
}