:root {
    --stm-indigo-900: #0a1560;
    --stm-blue-800: #0d2aa8;
    --stm-blue-500: #0057ff;
    --stm-blue-400: #2e8bff;
    --stm-violet-600: #6c2bd9;
    --stm-purple-500: #7b2ff7;
    --stm-purple-400: #9b5cfb;
    --stm-orchid-400: #b073f9;
    --surface-light: #f7f8fc;
    --surface-white: #ffffff;
    --text-primary: #0b0e2a;
    --text-secondary: #5b6178;
    --border-subtle: #e4e6f5;
    --font-heading: "Plus Jakarta Sans", system-ui, sans-serif;
    --font-body: "Inter", system-ui, sans-serif;
    --gradient-brand: linear-gradient(
        135deg,
        #0a1560 0%,
        #0057ff 35%,
        #7b2ff7 75%,
        #b073f9 100%
    );
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--surface-light);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 20px;
    z-index: 9999;
    padding: 12px 18px;
    border-radius: 10px;
    background: #fff;
    color: var(--stm-indigo-900);
}

.skip-link:focus {
    top: 20px;
}

/* Navbar */

.navbar-stema {
    padding: 18px 0;
    transition:
        padding 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.navbar-stema.is-scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 35px rgba(10, 21, 96, 0.08);
    backdrop-filter: blur(18px);
}

.navbar-stema .nav-link {
    position: relative;
    margin: 0 8px;
    padding: 10px 5px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 500;
}

.navbar-stema .nav-link::after {
    position: absolute;
    right: 5px;
    bottom: 4px;
    left: 5px;
    height: 2px;
    content: "";
    transform: scaleX(0);
    border-radius: 99px;
    background: linear-gradient(90deg, #2e8bff, #b073f9);
    transition: transform 0.25s ease;
}

.navbar-stema .nav-link:hover::after {
    transform: scaleX(1);
}

.navbar-stema.is-scrolled .brand-text,
.navbar-stema.is-scrolled .nav-link,
.navbar-stema.is-scrolled .navbar-toggler {
    color: var(--text-primary);
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-width: 245px;
}

.brand-logo-wrapper {
    position: relative;
    display: block;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 17px;
    background: #15176f;
    box-shadow:
        0 10px 28px rgba(2, 7, 45, 0.24),
        0 0 22px rgba(120, 135, 255, 0.15);
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.brand-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    transition:
        opacity 0.32s ease,
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Logo putih ketika halaman berada di paling atas */
.brand-logo--initial {
    width: 100%;
    height: 100%;
    opacity: 1;
    object-fit: cover;
    transform: translate(-50%, -50%) scale(1.03);
}

/* Logo warna disembunyikan sebelum scroll */
.brand-logo--scrolled {
    width: 48px;
    height: 48px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.72);
}

/* Navbar setelah di-scroll */
.navbar-stema.is-scrolled .brand-logo-wrapper {
    border-color: rgba(13, 42, 168, 0.12);
    background: rgba(255, 255, 255, 0.7);
    box-shadow:
        0 7px 22px rgba(10, 21, 96, 0.11),
        inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.navbar-stema.is-scrolled .brand-logo--initial {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.72);
}

.navbar-stema.is-scrolled .brand-logo--scrolled {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.brand-text {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    line-height: 1.1;
    transition: color 0.3s ease;
}

.brand-text strong {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.brand-text small {
    margin-top: 5px;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.035em;
    opacity: 0.78;
}

.navbar-stema.is-scrolled .brand-text {
    color: var(--text-primary);
}

.navbar-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(12px);
}

.navbar-contact:hover {
    background: #fff;
    color: var(--stm-purple-500);
}

.navbar-stema.is-scrolled .navbar-contact {
    background: var(--gradient-brand);
    color: #fff;
}

.navbar-toggler {
    border: 0;
    color: #fff;
    box-shadow: none !important;
}
@media (max-width: 575.98px) {
    .navbar-brand {
        min-width: auto;
        gap: 10px;
    }

    .brand-logo-wrapper {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
        border-radius: 15px;
    }

    .brand-logo--scrolled {
        width: 42px;
        height: 42px;
    }

    .brand-text strong {
        font-size: 17px;
    }

    .brand-text small {
        display: none;
    }
}
/* Hero */

.hero-section {
    position: relative;
    display: flex;
    min-height: 100svh;
    align-items: center;
    overflow: hidden;
    padding: 140px 0 90px;
    background:
        radial-gradient(circle at 20% 20%, rgba(46, 139, 255, 0.42), transparent 35%),
        radial-gradient(circle at 80% 40%, rgba(176, 115, 249, 0.4), transparent 35%),
        linear-gradient(135deg, #07104c 0%, #0d2aa8 42%, #6427c7 75%, #8e44e9 100%);
}

.hero-section::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 55px 55px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-container {
    position: relative;
    z-index: 3;
}

.aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.aurora-one {
    top: 5%;
    left: -8%;
    width: 430px;
    height: 430px;
    background: rgba(0, 128, 255, 0.44);
}

.aurora-two {
    right: -8%;
    bottom: -10%;
    width: 520px;
    height: 520px;
    background: rgba(176, 115, 249, 0.42);
}

.aurora-three {
    top: 35%;
    left: 48%;
    width: 280px;
    height: 280px;
    background: rgba(63, 94, 251, 0.28);
}

.hero-hexagon {
    position: absolute;
    z-index: 1;
    width: 100px;
    aspect-ratio: 1;
    opacity: 0.12;
    background: #fff;
    clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
}

.hexagon-one {
    top: 18%;
    right: 8%;
}

.hexagon-two {
    bottom: 10%;
    left: 6%;
    width: 68px;
}

.hexagon-three {
    top: 25%;
    left: 48%;
    width: 42px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(12px);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #78e6ff;
    box-shadow: 0 0 16px #78e6ff;
}

.hero-title {
    max-width: 790px;
    margin: 0;
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5.8vw, 5.2rem);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.02;
    text-wrap: balance;
}

.hero-title span {
    display: block;
    color: transparent;
    background: linear-gradient(90deg, #fff, #91d4ff 45%, #dfc4ff);
    background-clip: text;
    -webkit-background-clip: text;
}

.hero-description {
    max-width: 670px;
    margin: 27px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 17px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn-primary-stema,
.btn-outline-stema {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: 14px;
    font-weight: 600;
}

.btn-primary-stema {
    border: 1px solid #fff;
    background: #fff;
    color: var(--stm-indigo-900);
    box-shadow: 0 18px 36px rgba(5, 11, 63, 0.24);
}

.btn-primary-stema:hover {
    transform: translateY(-2px);
    background: #f2edff;
    color: var(--stm-purple-500);
}

.btn-outline-stema {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    backdrop-filter: blur(10px);
}

.btn-outline-stema:hover {
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    margin-top: 46px;
}

.hero-fact {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 12px;
}

.hero-fact strong {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 22px;
}

.fact-icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.13);
    color: #fff;
}

.hero-visual {
    position: relative;
    display: grid;
    min-height: 400px;
    place-items: center;
}

.visual-glow {
    position: absolute;
    width: 370px;
    height: 370px;
    border-radius: 50%;
    background: rgba(132, 92, 255, 0.34);
    filter: blur(55px);
}

/* Brand core dan orbit unit */

.brand-orbit {
    position: relative;
    width: min(440px, 90vw);
    aspect-ratio: 1;
}

.unit-orbit-track {
    position: absolute;
    z-index: 3;
    inset: 0;
    transform-origin: 50% 50%;
    will-change: transform;
}

.orbit-ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    pointer-events: none;
}

.orbit-ring-one {
    inset: 5%;
    border-style: dashed;
}

.orbit-ring-two {
    inset: 19%;
    opacity: 0.7;
}

.orbit-ring-one::before,
.orbit-ring-two::before {
    position: absolute;
    top: 50%;
    left: -5px;
    width: 10px;
    height: 10px;
    content: "";
    transform: translateY(-50%);
    border-radius: 50%;
    background: #87dcff;
    box-shadow: 0 0 18px rgba(135, 220, 255, 0.9);
}

.brand-core {
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    display: grid;
    width: 205px;
    height: 205px;
    place-items: center;
    overflow: hidden;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 48px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
        0 32px 75px rgba(4, 10, 55, 0.38),
        0 0 50px rgba(140, 92, 246, 0.2),
        inset 0 1px rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    will-change: transform;
}

.brand-core--assembly {
    padding: 14px;
}

.logo-assembly-stage {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
}

.logo-build-piece,
.logo-build-final {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-build-piece {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    clip-path: none !important;
    pointer-events: none;
    will-change:
        transform,
        opacity,
        filter;
}
.logo-piece-image,
.logo-build-final {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}

.logo-piece-image {
    z-index: 2;
}

.logo-piece-pixels {
    position: absolute;
    z-index: 3;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background:
        linear-gradient(
            135deg,
            rgba(0, 87, 255, 0.95),
            rgba(123, 47, 247, 0.9)
        );
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.45) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.45) 1px,
            transparent 1px
        ),
        linear-gradient(
            135deg,
            #0057ff,
            #7b2ff7
        );
    background-size:
        7px 7px,
        7px 7px,
        100% 100%;

    mask-image: var(--piece-mask);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;

    -webkit-mask-image: var(--piece-mask);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}

.logo-build-final {
    z-index: 5;
    opacity: 1;
    pointer-events: none;
    user-select: none;
}

.orbit-item {
    position: absolute;
    display: grid;
    min-width: 100px;
    min-height: 44px;
    place-items: center;
}

.orbit-label {
    display: grid;
    min-width: 100px;
    min-height: 44px;
    place-items: center;
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 14px;
    background: rgba(10, 21, 96, 0.55);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 16px 36px rgba(4, 10, 55, 0.24);
    backdrop-filter: blur(16px);
    will-change: transform;
}

.orbit-travel {
    top: 1%;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-food {
    top: 50%;
    right: -3%;
    transform: translateY(-50%);
}

.orbit-ekspedisi {
    bottom: 1%;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-internet {
    top: 50%;
    left: -3%;
    transform: translateY(-50%);
}

@media (max-width: 575.98px) {
    .brand-orbit {
        width: 330px;
    }

    .brand-core {
        width: 158px;
        height: 158px;
        padding: 10px;
        border-radius: 38px;
    }

    .orbit-item,
    .orbit-label {
        min-width: 78px;
        min-height: 38px;
    }

    .orbit-label {
        padding: 6px 10px;
        font-size: 10px;
    }

    .logo-piece-pixels {
        background-size:
            5px 5px,
            5px 5px,
            100% 100%;
    }
}

.scroll-indicator {
    position: absolute;
    z-index: 4;
    bottom: 25px;
    left: 50%;
    display: flex;
    width: 26px;
    height: 42px;
    justify-content: center;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
}

.scroll-indicator span {
    width: 4px;
    height: 8px;
    margin-top: 8px;
    border-radius: 999px;
    background: #fff;
    animation: scroll-dot 1.8s infinite;
}
/* Animated SVG Hero */

.hero-svg-visual {
    position: relative;
    display: grid;
    min-height: 560px;
    place-items: center;
    isolation: isolate;
}

.hero-svg-visual .visual-glow {
    position: absolute;
    z-index: -2;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(111, 73, 255, 0.55) 0%,
            rgba(46, 139, 255, 0.25) 45%,
            transparent 72%
        );
    filter: blur(48px);
}

.hero-svg-shell {
    position: relative;
    display: grid;
    width: min(520px, 100%);
    aspect-ratio: 1;
    place-items: center;
    filter: drop-shadow(0 35px 45px rgba(3, 8, 50, 0.25));
    will-change: transform;
}

.hero-logo-object {
    position: relative;
    z-index: 3;
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
    user-select: none;
}

.hero-logo-object img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.svg-pixel-grid {
    position: absolute;
    z-index: 5;
    inset: 7%;
    visibility: hidden;
    border-radius: 30%;
    opacity: 0;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.34) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.34) 1px,
            transparent 1px
        );
    background-size: 18px 18px;
    mix-blend-mode: screen;
    mask-image: radial-gradient(
        circle,
        #000 15%,
        rgba(0, 0, 0, 0.85) 55%,
        transparent 80%
    );
    -webkit-mask-image: radial-gradient(
        circle,
        #000 15%,
        rgba(0, 0, 0, 0.85) 55%,
        transparent 80%
    );
}

.hero-svg-decoration {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    pointer-events: none;
}

.hero-svg-decoration--one {
    width: 470px;
    height: 470px;
}

.hero-svg-decoration--two {
    width: 370px;
    height: 370px;
    border-style: dashed;
    opacity: 0.6;
}

.hero-svg-decoration--one::before,
.hero-svg-decoration--two::before {
    position: absolute;
    top: 50%;
    left: -5px;
    width: 10px;
    height: 10px;
    content: "";
    transform: translateY(-50%);
    border-radius: 50%;
    background: #86d7ff;
    box-shadow: 0 0 18px rgba(134, 215, 255, 0.9);
}

@media (max-width: 991.98px) {
    .hero-svg-visual {
        min-height: 480px;
    }

    .hero-svg-shell {
        width: min(460px, 88vw);
    }

    .hero-svg-decoration--one {
        width: 410px;
        height: 410px;
    }

    .hero-svg-decoration--two {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 575.98px) {
    .hero-svg-visual {
        min-height: 370px;
    }

    .hero-svg-shell {
        width: min(340px, 92vw);
    }

    .hero-svg-decoration--one {
        width: 325px;
        height: 325px;
    }

    .hero-svg-decoration--two {
        width: 250px;
        height: 250px;
    }

    .svg-pixel-grid {
        background-size: 13px 13px;
    }
}
@keyframes scroll-dot {
    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    70% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/* Units */

.units-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at 10% 30%, rgba(46, 139, 255, 0.09), transparent 25%),
        radial-gradient(circle at 90% 70%, rgba(155, 92, 251, 0.1), transparent 28%),
        var(--surface-light);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--stm-purple-500);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin-bottom: 17px;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.section-heading p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
}

.unit-card {
    --unit-color: #0057ff;
    --unit-color-soft: rgba(0, 87, 255, 0.12);

    position: relative;
    min-height: 360px;
    overflow: hidden;
    padding: 34px;
    border: 1px solid rgba(0, 87, 255, 0.18);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.87);
    box-shadow:
        0 1px 2px rgba(11, 14, 42, 0.04),
        0 20px 48px -20px rgba(11, 14, 42, 0.18);
    backdrop-filter: blur(18px);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.unit-card::before {
    position: absolute;
    top: -120px;
    right: -100px;
    width: 290px;
    height: 290px;
    content: "";
    border-radius: 50%;
    background: var(--unit-color-soft);
    filter: blur(20px);
    transition: transform 0.4s ease;
}

.unit-card:hover {
    border-color: var(--unit-color);
    box-shadow:
        0 2px 4px rgba(11, 14, 42, 0.04),
        0 30px 65px -25px var(--unit-color-soft);
}

.unit-card:hover::before {
    transform: scale(1.18);
}

.unit-card--food {
    --unit-color: #2b4fd1;
    --unit-color-soft: rgba(43, 79, 209, 0.13);
}

.unit-card--ekspedisi {
    --unit-color: #7b2ff7;
    --unit-color-soft: rgba(123, 47, 247, 0.13);
}

.unit-card--internet {
    --unit-color: #b073f9;
    --unit-color-soft: rgba(176, 115, 249, 0.15);
}

.unit-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.unit-icon {
    display: grid;
    width: 66px;
    height: 66px;
    place-items: center;
    border-radius: 20px;
    background: var(--unit-color-soft);
    color: var(--unit-color);
}

.unit-icon svg {
    width: 34px;
    height: 34px;
}

.unit-category {
    padding: 8px 12px;
    border: 1px solid var(--unit-color-soft);
    border-radius: 999px;
    color: var(--unit-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.unit-card-body {
    position: relative;
    z-index: 2;
    margin-top: 48px;
}

.unit-card h3 {
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-size: 25px;
    font-weight: 800;
}

.unit-card p {
    max-width: 470px;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.75;
}

.unit-link {
    position: absolute;
    z-index: 2;
    bottom: 32px;
    left: 34px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--unit-color);
    font-size: 14px;
    font-weight: 700;
}

.unit-link svg {
    transition: transform 0.25s ease;
}

.unit-link:hover {
    color: var(--unit-color);
}

.unit-link:hover svg {
    transform: translateX(5px);
}

@media (max-width: 991.98px) {
    .navbar-stema .navbar-collapse {
        margin-top: 14px;
        padding: 18px;
        border: 1px solid var(--border-subtle);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 20px 45px rgba(10, 21, 96, 0.12);
    }

    .navbar-stema .navbar-collapse .nav-link {
        color: var(--text-primary);
    }

    .navbar-stema .navbar-contact {
        margin-top: 8px;
        background: var(--gradient-brand);
        color: #fff;
    }

    .hero-section {
        min-height: auto;
        padding-top: 150px;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-description {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-actions,
    .hero-facts {
        justify-content: center;
    }

    .hero-visual {
        min-height: 430px;
    }
}

@media (max-width: 575.98px) {
    .brand-text small {
        display: none;
    }

    .hero-section {
        padding-top: 125px;
    }

    .hero-title {
        font-size: 2.65rem;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-facts {
        gap: 14px;
    }

    .hero-fact {
        flex: 1 1 40%;
        justify-content: center;
    }

    .hero-visual {
        min-height: 340px;
    }

    .brand-orbit {
        width: 310px;
    }

    .brand-core {
        width: 120px;
        height: 120px;
        border-radius: 30px;
    }

    .brand-core--assembly .logo-piece-image,
.brand-core--assembly .logo-build-final {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
}

    .orbit-item {
        min-width: 78px;
        min-height: 38px;
        padding: 6px 10px;
        font-size: 10px;
    }

    .units-section {
        padding: 80px 0;
    }

    .unit-card {
        min-height: 350px;
        padding: 26px;
    }

    .unit-link {
        bottom: 26px;
        left: 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* Urutan layer penyusun logo */
.logo-build-piece[data-logo-piece="1"] {
    z-index: 1;
}

.logo-build-piece[data-logo-piece="2"] {
    z-index: 2;
}

.logo-build-piece[data-logo-piece="4"] {
    z-index: 3;
}

.logo-build-piece[data-logo-piece="3"] {
    z-index: 4;
}

.logo-build-final {
    z-index: 10;
}

/* =========================================================
   Footer STEMA
   ========================================================= */

.stema-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 90px 0 28px;
    color: rgba(255, 255, 255, 0.65);
    background:
        linear-gradient(
            145deg,
            #030817 0%,
            #050d26 55%,
            #0c0b31 100%
        );
}

.stema-footer::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1180px, calc(100% - 30px));
    height: 1px;
    content: "";
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(52, 144, 255, 0.6),
            rgba(139, 67, 255, 0.55),
            transparent
        );
    transform: translateX(-50%);
}

.stema-footer__decoration {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.stema-footer__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.14;
}

.stema-footer__glow--blue {
    top: -140px;
    left: -80px;
    width: 370px;
    height: 370px;
    background: #087fff;
}

.stema-footer__glow--purple {
    right: -100px;
    bottom: -170px;
    width: 410px;
    height: 410px;
    background: #853eff;
}

.stema-footer__line {
    position: absolute;
    top: 0;
    right: 18%;
    width: 1px;
    height: 100%;
    opacity: 0.18;
    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(255, 255, 255, 0.25),
            transparent
        );
}

.stema-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    text-decoration: none;
}

.stema-footer__brand:hover {
    color: #ffffff;
}

.stema-footer__logo-wrapper {
    width: 64px;
    height: 64px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.stema-footer__logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stema-footer__brand-text {
    display: flex;
    flex-direction: column;
}

.stema-footer__brand-text strong {
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1.2;
    letter-spacing: 0.09em;
}

.stema-footer__brand-text small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.72rem;
}

.stema-footer__description {
    max-width: 420px;
    margin: 24px 0 22px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.92rem;
    line-height: 1.85;
}

.stema-footer__contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
}

.stema-footer__contact-link:hover {
    color: #ffffff;
}

.stema-footer__contact-icon {
    width: 41px;
    height: 41px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 13px;
    background: rgba(35, 197, 105, 0.18);
    transition:
        background 200ms ease,
        transform 200ms ease;
}

.stema-footer__contact-link:hover .stema-footer__contact-icon {
    background: #20b961;
    transform: translateY(-3px);
}

.stema-footer__contact-link > span:last-child {
    display: flex;
    flex-direction: column;
}

.stema-footer__contact-link small {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.67rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.stema-footer__contact-link strong {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.85rem;
}

.stema-footer__column h2 {
    margin: 0 0 23px;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.stema-footer__links {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.stema-footer__links a {
    display: inline-flex;
    align-items: center;
    gap: 0;
    color: rgba(255, 255, 255, 0.51);
    font-size: 0.87rem;
    text-decoration: none;
    transition:
        gap 200ms ease,
        color 200ms ease;
}

.stema-footer__links a > span {
    width: 0;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            #2997ff,
            #9a4cff
        );
    transition: width 200ms ease;
}

.stema-footer__links a:hover {
    gap: 9px;
    color: #ffffff;
}

.stema-footer__links a:hover > span {
    width: 12px;
}

.stema-footer__domain {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.045);
    transition:
        border-color 200ms ease,
        background 200ms ease,
        transform 200ms ease;
}

.stema-footer__domain:hover {
    color: #ffffff;
    border-color: rgba(92, 151, 255, 0.3);
    background: rgba(255, 255, 255, 0.075);
    transform: translateY(-4px);
}

.stema-footer__domain-icon {
    width: 41px;
    height: 41px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: #79bfff;
    border-radius: 13px;
    background: rgba(35, 121, 255, 0.13);
}

.stema-footer__domain > span:last-child {
    display: flex;
    flex-direction: column;
}

.stema-footer__domain strong {
    color: #ffffff;
    font-size: 0.92rem;
}

.stema-footer__domain small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.68rem;
}

.stema-footer__status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.72rem;
}

.stema-footer__status span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f5ae36;
    box-shadow: 0 0 0 5px rgba(245, 174, 54, 0.09);
}

.stema-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 67px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stema-footer__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.78rem;
}

.stema-footer__back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    transition:
        color 200ms ease,
        transform 200ms ease;
}

.stema-footer__back-to-top:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

/* =========================================================
   Responsive Footer
   ========================================================= */

@media (max-width: 991.98px) {
    .stema-footer {
        padding-top: 75px;
    }
}

@media (max-width: 575.98px) {
    .stema-footer {
        padding-top: 65px;
    }

    .stema-footer__logo-wrapper {
        width: 57px;
        height: 57px;
        border-radius: 17px;
    }

    .stema-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 48px;
    }
}
/* =========================================================
   Tentang STEMA
   ========================================================= */

.company-about-section {
    position: relative;
    scroll-margin-top: 90px;
    overflow: hidden;
    padding: 120px 0;
    background:
        radial-gradient(
            circle at 8% 18%,
            rgba(22, 119, 255, 0.09),
            transparent 29%
        ),
        radial-gradient(
            circle at 92% 82%,
            rgba(128, 48, 255, 0.08),
            transparent 28%
        ),
        #ffffff;
}

.company-about-decoration {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.company-about-decoration__circle {
    position: absolute;
    border: 1px solid rgba(39, 89, 210, 0.1);
    border-radius: 50%;
}

.company-about-decoration__circle--one {
    top: 80px;
    left: -110px;
    width: 260px;
    height: 260px;
}

.company-about-decoration__circle--two {
    right: -120px;
    bottom: 55px;
    width: 300px;
    height: 300px;
}

.company-about-visual {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid rgba(42, 82, 190, 0.12);
    border-radius: 42px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(231, 241, 255, 0.92)
        );
    box-shadow:
        0 35px 90px rgba(29, 61, 130, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.company-about-visual::before {
    position: absolute;
    inset: 26px;
    z-index: -1;
    content: "";
    border: 1px solid rgba(65, 94, 195, 0.09);
    border-radius: 33px;
}

.company-about-visual__grid {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.45;
    background-image:
        linear-gradient(
            rgba(60, 92, 180, 0.055) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(60, 92, 180, 0.055) 1px,
            transparent 1px
        );
    background-size: 35px 35px;
    mask-image:
        radial-gradient(
            circle at center,
            black,
            transparent 72%
        );
}

.company-about-glow {
    position: absolute;
    z-index: -1;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            rgba(0, 137, 255, 0.75),
            rgba(124, 45, 255, 0.7)
        );
    filter: blur(85px);
    opacity: 0.25;
}

.company-about-orbit {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.company-about-orbit--outer {
    width: 410px;
    height: 410px;
    border: 1px dashed rgba(56, 96, 205, 0.23);
    animation: companyAboutOrbit 28s linear infinite;
}

.company-about-orbit--inner {
    width: 300px;
    height: 300px;
    border: 1px solid rgba(114, 63, 220, 0.12);
    animation: companyAboutOrbitReverse 22s linear infinite;
}

.company-about-orbit--outer::before,
.company-about-orbit--inner::before {
    position: absolute;
    top: 50%;
    left: -5px;
    width: 10px;
    height: 10px;
    content: "";
    border-radius: 50%;
    background: #287cf5;
    box-shadow: 0 0 0 7px rgba(40, 124, 245, 0.11);
}

.company-about-orbit--inner::before {
    top: auto;
    right: 20px;
    bottom: 20px;
    left: auto;
    background: #843dff;
    box-shadow: 0 0 0 7px rgba(132, 61, 255, 0.1);
}

.company-about-logo-frame {
    position: relative;
    z-index: 3;
    width: 225px;
    height: 225px;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 48px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow:
        0 28px 65px rgba(27, 63, 155, 0.22),
        inset 0 1px 0 #ffffff;
    backdrop-filter: blur(18px);
    transform: rotate(-4deg);
}

.company-about-logo-frame__shine {
    position: absolute;
    top: -100%;
    left: -50%;
    width: 65%;
    height: 280%;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.75),
            transparent
        );
    transform: rotate(24deg);
    animation: companyAboutShine 6s ease-in-out infinite;
}

.company-about-logo {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-about-chip {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    color: #172047;
    font-size: 0.8rem;
    font-weight: 800;
    white-space: nowrap;
    border: 1px solid rgba(43, 79, 180, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 15px 35px rgba(34, 62, 130, 0.13);
    backdrop-filter: blur(14px);
}

.company-about-chip__icon {
    width: 33px;
    height: 33px;
    display: grid;
    place-items: center;
    color: #315fe4;
    border-radius: 50%;
    background:
        linear-gradient(
            145deg,
            #edf4ff,
            #f3ebff
        );
}

/* =========================================================
   Label orbit S.T.E.M.A
   ========================================================= */

.company-about-chip--trust {
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
}

.company-about-chip--excellence {
    top: 37%;
    right: 5%;
}

.company-about-chip--mobility {
    bottom: 16%;
    right: 25%;
}

.company-about-chip--advancement {
    bottom: 16%;
    left: 25%;
}

.company-about-chip--service {
    top: 37%;
    left: 5%;
}

.company-about-chip__icon {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 900;
    line-height: 1;
}

.company-about-chip__text {
    white-space: nowrap;
}

.company-about-chip {
    min-height: 48px;
    padding: 10px 15px 10px 10px;
}

.company-about-chip__icon {
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
}

.company-about-content {
    max-width: 620px;
    padding-left: 20px;
}

.company-about-content h2 {
    margin: 0 0 25px;
    color: #111a3f;
    font-size: clamp(2.25rem, 4.4vw, 3.7rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.company-about-description {
    display: grid;
    gap: 12px;
}

.company-about-description p {
    margin: 0;
    color: #6c738c;
    font-size: 1rem;
    line-height: 1.85;
}

.company-about-values {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.company-about-value {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 17px 18px;
    border: 1px solid rgba(38, 75, 175, 0.09);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    transition:
        transform 250ms ease,
        border-color 250ms ease,
        box-shadow 250ms ease;
}

.company-about-value:hover {
    border-color: rgba(47, 98, 225, 0.23);
    box-shadow: 0 16px 35px rgba(36, 69, 145, 0.1);
    transform: translateX(7px);
}

.company-about-value__number {
    width: 45px;
    height: 45px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: #315ee5;
    font-size: 0.78rem;
    font-weight: 900;
    border-radius: 14px;
    background:
        linear-gradient(
            145deg,
            #eaf3ff,
            #f2ebff
        );
}

.company-about-value__content h3 {
    margin: 1px 0 5px;
    color: #172047;
    font-size: 1rem;
    font-weight: 800;
}

.company-about-value__content p {
    margin: 0;
    color: #737a91;
    font-size: 0.87rem;
    line-height: 1.65;
}

.company-about-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 31px;
    color: #2459de;
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
    transition:
        color 200ms ease,
        gap 200ms ease;
}

.company-about-link:hover {
    gap: 16px;
    color: #7134df;
}

@keyframes companyAboutOrbit {
    to {
        transform: rotate(360deg);
    }
}

@keyframes companyAboutOrbitReverse {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes companyAboutShine {
    0%,
    55% {
        left: -80%;
    }

    80%,
    100% {
        left: 150%;
    }
}

/* =========================================================
   Orbit label S.T.E.M.A
   ========================================================= */

.company-about-chip {
    min-height: 46px;
    padding: 8px 15px 8px 8px;
    gap: 9px;
    z-index: 7;
    white-space: nowrap;
}

.company-about-chip__icon {
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    display: grid;
    place-items: center;
    font-family: var(--font-heading);
    font-size: 0.76rem;
    font-weight: 900;
    line-height: 1;
}

.company-about-chip__text {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
}

/*
 * Reset posisi lama agar modifier sebelumnya
 * tidak saling bertabrakan.
 */
.company-about-chip--service,
.company-about-chip--trust,
.company-about-chip--excellence,
.company-about-chip--mobility,
.company-about-chip--advancement {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
}

/*
 * Desktop:
 *
 *       Service        Trust
 *
 *                         Excellence
 *
 *    Advancement      Mobility
 */
.company-about-chip--service {
    top: 12%;
    left: 6%;
}

.company-about-chip--trust {
    top: 13%;
    right: 5%;
}

.company-about-chip--excellence {
    top: 47%;
    right: 0;
}

.company-about-chip--mobility {
    right: 8%;
    bottom: 12%;
}

.company-about-chip--advancement {
    bottom: 12%;
    left: 5%;
}

/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 991.98px) {
    .company-about-chip {
        min-height: 44px;
        padding: 7px 13px 7px 7px;
    }

    .company-about-chip__icon {
        width: 29px;
        height: 29px;
        flex-basis: 29px;
        font-size: 0.72rem;
    }

    .company-about-chip__text {
        font-size: 0.74rem;
    }

    .company-about-chip--service {
        top: 9%;
        left: 7%;
    }

    .company-about-chip--trust {
        top: 10%;
        right: 7%;
    }

    .company-about-chip--excellence {
        top: 46%;
        right: 1%;
    }

    .company-about-chip--mobility {
        right: 10%;
        bottom: 9%;
    }

    .company-about-chip--advancement {
        bottom: 9%;
        left: 7%;
    }
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 575.98px) {
    .company-about-chip {
        min-height: 38px;
        padding: 6px 10px 6px 6px;
        gap: 6px;
        border-radius: 999px;
        box-shadow:
            0 10px 24px rgba(32, 63, 143, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.92);
    }

    .company-about-chip__icon {
        width: 26px;
        height: 26px;
        flex-basis: 26px;
        font-size: 0.67rem;
    }

    .company-about-chip__text {
        max-width: 78px;
        overflow: hidden;
        font-size: 0.65rem;
        text-overflow: ellipsis;
    }

    /*
     * Dua label di atas, satu di sisi kanan,
     * dan dua label di bagian bawah.
     */
    .company-about-chip--service {
        top: 5%;
        left: 4%;
    }

    .company-about-chip--trust {
        top: 5%;
        right: 4%;
    }

    .company-about-chip--excellence {
        top: 45%;
        right: -1%;
    }

    .company-about-chip--mobility {
        right: 5%;
        bottom: 5%;
    }

    .company-about-chip--advancement {
        bottom: 5%;
        left: 4%;
    }
}

/* =========================================================
   Small mobile
   ========================================================= */

@media (max-width: 420px) {
    /*
     * Pada layar kecil tampilkan huruf saja.
     * Tooltip title tetap dapat menjelaskan maknanya.
     */
    .company-about-chip {
        width: 40px;
        height: 40px;
        min-height: 40px;
        padding: 5px;
        justify-content: center;
    }

    .company-about-chip__icon {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
        font-size: 0.75rem;
    }

    .company-about-chip__text {
        display: none;
    }

    .company-about-chip--service {
        top: 6%;
        left: 10%;
    }

    .company-about-chip--trust {
        top: 6%;
        right: 10%;
    }

    .company-about-chip--excellence {
        top: 45%;
        right: 2%;
    }

    .company-about-chip--mobility {
        right: 12%;
        bottom: 7%;
    }

    .company-about-chip--advancement {
        bottom: 7%;
        left: 12%;
    }
}
/* =========================================================
   Fondasi STEMA
   ========================================================= */

.foundation-section {
    position: relative;
    scroll-margin-top: 90px;
    isolation: isolate;
    overflow: hidden;
    padding: 115px 0;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #050b20 0%,
            #08173e 52%,
            #121044 100%
        );
}

.foundation-section::before {
    position: absolute;
    inset: 0;
    z-index: -3;
    content: "";
    opacity: 0.18;
    background-image:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.24) 1px,
            transparent 1px
        );
    background-size: 27px 27px;
    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 18%,
            black 80%,
            transparent
        );
}

.foundation-background {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.foundation-aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.foundation-aurora--blue {
    top: -120px;
    left: 5%;
    width: 390px;
    height: 390px;
    background: #087fff;
}

.foundation-aurora--purple {
    right: 2%;
    bottom: -150px;
    width: 420px;
    height: 420px;
    background: #7e36ff;
}

.foundation-ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.foundation-ring--one {
    top: -150px;
    right: 10%;
    width: 420px;
    height: 420px;
}

.foundation-ring--two {
    bottom: -190px;
    left: 4%;
    width: 350px;
    height: 350px;
}

.foundation-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 480px);
    align-items: end;
    gap: 60px;
    margin-bottom: 55px;
}

.foundation-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #8cc8ff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.foundation-eyebrow::before {
    width: 28px;
    height: 2px;
    content: "";
    border-radius: 99px;
    background: linear-gradient(90deg, #2997ff, #a459ff);
}

.foundation-heading h2 {
    max-width: 650px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.25rem, 4.4vw, 3.75rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.foundation-heading > p {
    margin: 0 0 5px;
    color: rgba(255, 255, 255, 0.59);
    line-height: 1.85;
}

.foundation-card {
    position: relative;
    height: 100%;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    isolation: isolate;
    overflow: hidden;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 27px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 25px 60px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(18px);
    transition:
        transform 280ms ease,
        border-color 280ms ease,
        background 280ms ease,
        box-shadow 280ms ease;
}

.foundation-card::before {
    position: absolute;
    top: -75px;
    right: -75px;
    z-index: -1;
    width: 190px;
    height: 190px;
    content: "";
    border-radius: 50%;
    opacity: 0.22;
    filter: blur(10px);
    transition:
        opacity 280ms ease,
        transform 280ms ease;
}

.foundation-card::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    content: "";
    opacity: 0;
    transform: scaleX(0.35);
    transition:
        opacity 280ms ease,
        transform 280ms ease;
}

.foundation-card--units::before,
.foundation-card--units::after {
    background: #168cff;
}

.foundation-card--ecosystem::before,
.foundation-card--ecosystem::after {
    background: #665bff;
}

.foundation-card--market::before,
.foundation-card--market::after {
    background: #9b45ff;
}

.foundation-card--digital::before,
.foundation-card--digital::after {
    background: #16c8d5;
}

.foundation-card:hover {
    border-color: rgba(255, 255, 255, 0.21);
    background: rgba(255, 255, 255, 0.085);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.11),
        0 32px 70px rgba(0, 0, 0, 0.24);
    transform: translateY(-9px);
}

.foundation-card:hover::before {
    opacity: 0.36;
    transform: scale(1.18);
}

.foundation-card:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.foundation-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.foundation-card__index {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.foundation-card__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: #9fd4ff;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.075);
}

.foundation-card__content {
    position: relative;
    z-index: 2;
}

.foundation-card__value {
    display: block;
    margin-bottom: 16px;
    color: #ffffff;
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    font-weight: 850;
    line-height: 0.9;
    letter-spacing: -0.06em;
}

.foundation-card__value--text {
    font-size: clamp(1.65rem, 2.6vw, 2.5rem);
    letter-spacing: -0.04em;
}

.foundation-card__content h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
}

.foundation-card__content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.49);
    font-size: 0.83rem;
    line-height: 1.65;
}

/* =========================================================
   Responsive Fondasi
   ========================================================= */

@media (max-width: 991.98px) {
    .foundation-section {
        padding: 95px 0;
    }

    .foundation-heading {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 42px;
    }

    .foundation-heading > p {
        max-width: 650px;
    }

    .foundation-card {
        min-height: 280px;
    }
}

@media (max-width: 575.98px) {
    .foundation-section {
        padding: 75px 0;
    }

    .foundation-card {
        min-height: 240px;
        padding: 18px;
        border-radius: 21px;
    }

    .foundation-card__icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .foundation-card__icon svg {
        width: 22px;
        height: 22px;
    }

    .foundation-card__value {
        margin-bottom: 12px;
        font-size: 2.4rem;
    }

    .foundation-card__value--text {
        font-size: 1.35rem;
    }

    .foundation-card__content h3 {
        font-size: 0.86rem;
    }

    .foundation-card__content p {
        font-size: 0.72rem;
        line-height: 1.55;
    }
}

/* =========================================================
   CTA Kontak
   ========================================================= */

.landing-contact-section {
    position: relative;
    scroll-margin-top: 90px;
    isolation: isolate;
    overflow: hidden;
    padding: 110px 0;
    background:
        radial-gradient(
            circle at 8% 40%,
            rgba(18, 127, 255, 0.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 65%,
            rgba(127, 47, 255, 0.07),
            transparent 27%
        ),
        #f8faff;
}

.landing-contact-background {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.landing-contact-shape {
    position: absolute;
    border: 1px solid rgba(43, 86, 195, 0.11);
    transform: rotate(35deg);
}

.landing-contact-shape--one {
    top: 50px;
    left: -60px;
    width: 150px;
    height: 150px;
    border-radius: 36px;
}

.landing-contact-shape--two {
    right: -75px;
    bottom: 35px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
}

.landing-contact-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(38px, 6vw, 75px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 42px;
    background:
        linear-gradient(
            125deg,
            #061334 0%,
            #0d2d78 52%,
            #4825a5 100%
        );
    box-shadow:
        0 40px 90px rgba(27, 50, 120, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.landing-contact-card::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    content: "";
    opacity: 0.16;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        );
    background-size: 38px 38px;
    mask-image:
        linear-gradient(
            90deg,
            black,
            transparent 78%
        );
}

.landing-contact-card__decoration {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.landing-contact-card__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(75px);
    opacity: 0.34;
}

.landing-contact-card__glow--blue {
    top: -120px;
    left: 20%;
    width: 330px;
    height: 330px;
    background: #008dff;
}

.landing-contact-card__glow--purple {
    right: 2%;
    bottom: -140px;
    width: 320px;
    height: 320px;
    background: #a33fff;
}

.landing-contact-card__ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.landing-contact-card__ring--one {
    top: -140px;
    right: -70px;
    width: 410px;
    height: 410px;
}

.landing-contact-card__ring--two {
    right: 25px;
    bottom: -185px;
    width: 330px;
    height: 330px;
}

.landing-contact-content {
    max-width: 680px;
}

.landing-contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 19px;
    color: #a7d7ff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.landing-contact-eyebrow__dot {
    width: 9px;
    height: 9px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    background: #38a2ff;
    box-shadow: 0 0 0 6px rgba(56, 162, 255, 0.13);
}

.landing-contact-content h2 {
    max-width: 680px;
    margin: 0 0 21px;
    color: #ffffff;
    font-size: clamp(2.25rem, 4.6vw, 4rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.05em;
}

.landing-contact-content > p {
    max-width: 610px;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 1rem;
    line-height: 1.8;
}

.landing-contact-units {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 29px;
}

.landing-contact-units span {
    padding: 8px 13px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.73rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(8px);
}

.landing-contact-panel {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 25px 55px rgba(0, 0, 0, 0.19);
    backdrop-filter: blur(20px);
}

.landing-contact-panel::before {
    position: absolute;
    top: -70px;
    right: -70px;
    width: 170px;
    height: 170px;
    content: "";
    border-radius: 50%;
    background: rgba(57, 215, 124, 0.16);
    filter: blur(10px);
}

.landing-contact-panel__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.landing-contact-panel__icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 18px;
    background:
        linear-gradient(
            145deg,
            #20c96b,
            #149c50
        );
    box-shadow: 0 13px 30px rgba(12, 133, 65, 0.3);
}

.landing-contact-panel__status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.75rem;
    font-weight: 700;
}

.landing-contact-panel__status span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #42db85;
    box-shadow: 0 0 0 5px rgba(66, 219, 133, 0.12);
}

.landing-contact-panel__body {
    position: relative;
    margin: 27px 0 24px;
}

.landing-contact-panel__label {
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.landing-contact-panel__body strong {
    display: block;
    color: #ffffff;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.landing-contact-panel__body p {
    margin: 11px 0 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.82rem;
    line-height: 1.6;
}

.landing-contact-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
    padding: 15px 18px;
    color: #0a2456;
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.17);
    transition:
        color 220ms ease,
        transform 220ms ease,
        box-shadow 220ms ease;
}

.landing-contact-button:hover {
    color: #5423b1;
    transform: translateY(-4px);
    box-shadow: 0 21px 42px rgba(0, 0, 0, 0.22);
}

/* =========================================================
   Responsive CTA Kontak
   ========================================================= */

@media (max-width: 991.98px) {
    .landing-contact-section {
        padding: 90px 0;
    }

    .landing-contact-card {
        border-radius: 34px;
    }

    .landing-contact-panel {
        max-width: 470px;
    }
}

@media (max-width: 575.98px) {
    .landing-contact-section {
        padding: 70px 0;
    }

    .landing-contact-card {
        padding: 35px 23px;
        border-radius: 27px;
    }

    .landing-contact-content h2 {
        font-size: 2.25rem;
    }

    .landing-contact-panel {
        padding: 21px;
        border-radius: 22px;
    }

    .landing-contact-panel__icon {
        width: 51px;
        height: 51px;
        border-radius: 16px;
    }

    .landing-contact-units {
        gap: 7px;
    }

    .landing-contact-units span {
        padding: 7px 10px;
        font-size: 0.67rem;
    }
}

/* =========================================================
   Floating WhatsApp
   ========================================================= */

.stema-floating-whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 1040;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    padding: 7px 13px 7px 7px;
    color: #172047;
    text-decoration: none;
    border: 1px solid rgba(24, 128, 70, 0.13);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow:
        0 18px 45px rgba(13, 64, 38, 0.2),
        0 5px 15px rgba(18, 43, 80, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(16px);
    transform: translateY(24px) scale(0.92);
    transition:
        opacity 280ms ease,
        visibility 280ms ease,
        transform 280ms ease,
        box-shadow 220ms ease;
}

.stema-floating-whatsapp.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.stema-floating-whatsapp:hover {
    color: #172047;
    box-shadow:
        0 23px 52px rgba(13, 64, 38, 0.26),
        0 7px 20px rgba(18, 43, 80, 0.1);
    transform: translateY(-5px) scale(1);
}

.stema-floating-whatsapp__pulse {
    position: absolute;
    top: 50%;
    left: 34px;
    width: 48px;
    height: 48px;
    z-index: -1;
    border: 1px solid rgba(29, 190, 100, 0.55);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    animation: stemaWhatsappPulse 2.5s ease-out infinite;
}

.stema-floating-whatsapp__icon {
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 50%;
    background:
        linear-gradient(
            145deg,
            #28d677,
            #159d50
        );
    box-shadow:
        0 10px 25px rgba(20, 161, 79, 0.29),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.stema-floating-whatsapp__text {
    min-width: 92px;
    display: flex;
    flex-direction: column;
    padding-right: 2px;
}

.stema-floating-whatsapp__text small {
    color: #8a8fa2;
    font-size: 0.61rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.stema-floating-whatsapp__text strong {
    margin-top: 3px;
    color: #172047;
    font-size: 0.85rem;
    font-weight: 800;
    line-height: 1.2;
}

.stema-floating-whatsapp__arrow {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    color: #188d4d;
    border-radius: 50%;
    background: rgba(29, 183, 91, 0.09);
    transition:
        color 200ms ease,
        background 200ms ease,
        transform 200ms ease;
}

.stema-floating-whatsapp:hover
.stema-floating-whatsapp__arrow {
    color: #ffffff;
    background: #1bad5b;
    transform: translateX(3px);
}

@keyframes stemaWhatsappPulse {
    0% {
        opacity: 0.7;
        transform:
            translate(-50%, -50%)
            scale(0.75);
    }

    70%,
    100% {
        opacity: 0;
        transform:
            translate(-50%, -50%)
            scale(1.65);
    }
}

/* =========================================================
   Responsive Floating WhatsApp
   ========================================================= */

@media (max-width: 575.98px) {
    .stema-floating-whatsapp {
        right: 17px;
        bottom: 17px;
        width: 58px;
        height: 58px;
        min-height: 58px;
        justify-content: center;
        padding: 4px;
    }

    .stema-floating-whatsapp__icon {
        width: 50px;
        height: 50px;
    }

    .stema-floating-whatsapp__text,
    .stema-floating-whatsapp__arrow {
        display: none;
    }

    .stema-floating-whatsapp__pulse {
        left: 50%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .stema-floating-whatsapp,
    .stema-floating-whatsapp__arrow {
        transition: none;
    }

    .stema-floating-whatsapp__pulse {
        animation: none;
    }
}

/* =========================================================
   Final Responsive Polish
   ========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
}

body {
    min-width: 320px;
    overflow-x: hidden;
}

img,
svg {
    max-width: 100%;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

/* Memperbaiki titik scroll yang sebelumnya 370px */
.scroll-indicator {
    align-items: flex-start;
    overflow: hidden;
    padding-top: 7px;
}

.scroll-indicator span {
    width: 4px;
    height: 9px;
    flex: 0 0 auto;
    border: 0;
    border-radius: 999px;
    background: #ffffff;
    opacity: 1;
    animation: scroll-dot 1.8s ease-in-out infinite;
}

/* Mencegah teks panjang merusak layout */
.hero-title,
.section-heading h2,
.company-about-content h2,
.foundation-heading h2,
.landing-contact-content h2 {
    overflow-wrap: break-word;
}

.unit-card p,
.company-about-description p,
.company-about-value__content p,
.foundation-card__content p,
.landing-contact-content p,
.stema-footer__description {
    overflow-wrap: anywhere;
}

/* =========================================================
   Laptop kecil dan tablet landscape
   ========================================================= */

@media (max-width: 1199.98px) {
    .hero-title {
        font-size: clamp(3rem, 5.5vw, 4.5rem);
    }

    .brand-orbit {
        width: min(400px, 86vw);
    }

    .company-about-visual {
        min-height: 510px;
    }

    .company-about-content {
        padding-left: 0;
    }

    .landing-contact-card {
        padding: 55px;
    }
}

/* =========================================================
   Tablet dan navbar mobile
   ========================================================= */

@media (max-width: 991.98px) {
    html {
        scroll-padding-top: 82px;
    }

    .navbar-stema {
        padding: 13px 0;
    }

    .navbar-stema.is-scrolled {
        padding: 8px 0;
    }

    .navbar-stema .navbar-collapse {
        max-height: calc(100svh - 100px);
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .navbar-stema .navbar-nav {
        align-items: stretch !important;
    }

    .navbar-stema .nav-link {
        width: 100%;
        margin: 0;
        padding: 11px 7px;
    }

    .navbar-stema .navbar-contact {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .hero-section {
        min-height: auto;
        padding: 145px 0 75px;
    }

    .hero-copy {
        max-width: 780px;
        margin: 0 auto;
    }

    .hero-visual {
        min-height: 460px;
    }

    .brand-orbit {
        width: min(410px, calc(100vw - 60px));
    }

    .units-section,
    .company-about-section,
    .foundation-section,
    .landing-contact-section {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .unit-card {
        min-height: 350px;
    }

    .company-about-visual {
        min-height: 500px;
    }

    .foundation-heading {
        grid-template-columns: 1fr;
    }

    .landing-contact-panel {
        margin: 0 auto;
    }
}

/* =========================================================
   Tablet portrait dan mobile besar
   ========================================================= */

@media (max-width: 767.98px) {
    .container {
        --bs-gutter-x: 40px;
    }

    .hero-section {
        padding-top: 130px;
        padding-bottom: 70px;
    }

    .hero-title {
        font-size: clamp(2.55rem, 10vw, 3.45rem);
        line-height: 1.06;
    }

    .hero-description {
        font-size: 0.96rem;
        line-height: 1.75;
    }

    .hero-facts {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        width: 100%;
        margin-top: 35px;
    }

    .hero-fact {
        min-height: 65px;
        justify-content: flex-start;
        padding: 11px 13px;
        text-align: left;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.06);
    }

    .hero-fact:last-child {
        grid-column: 1 / -1;
    }

    .hero-visual {
        min-height: 420px;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading p {
        font-size: 0.94rem;
    }

    .unit-card {
        min-height: 335px;
        padding-bottom: 82px;
    }

    .unit-card-body {
        margin-top: 36px;
    }

    .company-about-content h2,
    .foundation-heading h2,
    .landing-contact-content h2 {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .foundation-heading {
        margin-bottom: 38px;
    }

    .landing-contact-card {
        padding: 43px 32px;
    }

    .stema-footer {
        padding-top: 70px;
    }
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 575.98px) {
    html {
        scroll-padding-top: 75px;
    }

    .container {
        --bs-gutter-x: 32px;
    }

    .navbar-brand {
        max-width: calc(100% - 65px);
    }

    .brand-logo-wrapper {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        border-radius: 14px;
    }

    .brand-logo--scrolled {
        width: 40px;
        height: 40px;
    }

    .brand-text strong {
        font-size: 16px;
    }

    .navbar-toggler {
        width: 45px;
        height: 45px;
        display: grid;
        place-items: center;
        padding: 0;
    }

    .hero-section {
        padding-top: 115px;
        padding-bottom: 62px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 11vw, 2.8rem);
        letter-spacing: -0.045em;
    }

    .hero-badge {
        margin-bottom: 19px;
        font-size: 0.7rem;
    }

    .hero-description {
        margin-top: 21px;
        font-size: 0.9rem;
    }

    .hero-actions {
        gap: 10px;
        margin-top: 27px;
    }

    .hero-actions .btn {
        min-height: 50px;
    }

    .hero-facts {
        margin-top: 30px;
    }

    .hero-fact {
        min-height: 60px;
        font-size: 0.67rem;
    }

    .hero-fact strong {
        font-size: 1.25rem;
    }

    .hero-visual {
        min-height: 380px;
    }

    .brand-orbit {
        width: min(320px, calc(100vw - 34px));
    }

    /* Menimpa ukuran 120px yang terlalu kecil */
    .brand-core {
        width: 148px;
        height: 148px;
        padding: 11px;
        border-radius: 36px;
    }

    /* Menimpa aturan .brand-core img 86px */
    .brand-core--assembly img {
        width: 100%;
        height: 100%;
    }

    .orbit-item,
    .orbit-label {
        min-width: 74px;
        min-height: 36px;
    }

    .orbit-label {
        padding: 5px 8px;
        font-size: 0.57rem;
        border-radius: 11px;
    }

    .scroll-indicator {
        display: none;
    }

    .units-section,
    .company-about-section,
    .foundation-section,
    .landing-contact-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .unit-card {
        min-height: 325px;
        padding: 23px 23px 78px;
        border-radius: 22px;
    }

    .unit-icon {
        width: 55px;
        height: 55px;
        border-radius: 17px;
    }

    .unit-icon svg {
        width: 29px;
        height: 29px;
    }

    .unit-category {
        padding: 7px 9px;
        font-size: 0.58rem;
    }

    .unit-card h3 {
        font-size: 1.3rem;
    }

    .unit-card p {
        font-size: 0.87rem;
        line-height: 1.7;
    }

    .unit-link {
        right: 23px;
        bottom: 23px;
        left: 23px;
        justify-content: space-between;
    }

    .company-about-visual {
        min-height: 400px;
    }

    .company-about-content h2,
    .foundation-heading h2,
    .landing-contact-content h2 {
        font-size: 2.15rem;
    }

    .company-about-description p {
        font-size: 0.91rem;
    }

    .company-about-value {
        padding: 15px;
    }

    .company-about-value__number {
        width: 41px;
        height: 41px;
    }

    .foundation-card {
        min-height: 235px;
    }

    .foundation-card__value--text {
        font-size: 1.25rem;
    }

    .landing-contact-card {
        padding: 34px 22px;
    }

    .landing-contact-panel__body strong {
        font-size: 1.1rem;
        overflow-wrap: anywhere;
    }

    .stema-footer__column h2 {
        margin-bottom: 18px;
    }

    .stema-footer__bottom {
        gap: 15px;
    }

    .stema-floating-whatsapp {
        right: max(16px, env(safe-area-inset-right));
        bottom: max(16px, env(safe-area-inset-bottom));
    }
}

/* =========================================================
   Mobile sangat kecil
   ========================================================= */

@media (max-width: 389.98px) {
    .container {
        --bs-gutter-x: 26px;
    }

    .brand-logo-wrapper {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .brand-text strong {
        font-size: 14px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-facts {
        grid-template-columns: 1fr;
    }

    .hero-fact:last-child {
        grid-column: auto;
    }

    .brand-orbit {
        width: min(286px, calc(100vw - 28px));
    }

    .brand-core {
        width: 130px;
        height: 130px;
        border-radius: 31px;
    }

    .orbit-item,
    .orbit-label {
        min-width: 66px;
        min-height: 32px;
    }

    .orbit-label {
        padding: 4px 6px;
        font-size: 0.52rem;
    }

    .company-about-chip {
        font-size: 0.58rem;
    }

    .company-about-chip__icon {
        width: 24px;
        height: 24px;
    }

    /* Card Fondasi menjadi satu kolom */
    .foundation-section .row > .col-6 {
        width: 100%;
    }

    .foundation-card {
        min-height: 220px;
    }

    .landing-contact-content h2 {
        font-size: 1.95rem;
    }

    .landing-contact-units span {
        font-size: 0.61rem;
    }
}

/* Mencegah efek hover tertahan pada layar sentuh */
@media (hover: none) {
    .unit-card:hover,
    .company-about-value:hover,
    .foundation-card:hover,
    .landing-contact-button:hover,
    .stema-footer__domain:hover,
    .stema-floating-whatsapp:hover {
        transform: none;
    }
}
/* =========================================================
   Language switcher
   ========================================================= */

.navbar-language-item {
    display: flex;
    align-items: center;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 8px 24px rgba(5, 14, 69, 0.12);
    backdrop-filter: blur(16px) saturate(145%);
    -webkit-backdrop-filter: blur(16px) saturate(145%);
    transition:
        border-color 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease;
}

.language-switcher__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 39px;
    min-height: 28px;
    padding: 4px 9px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.72);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition:
        color 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.language-switcher__item:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.language-switcher__item.is-active {
    color: #1724a8;
    background: #ffffff;
    box-shadow: 0 5px 14px rgba(4, 13, 64, 0.16);
}

.language-switcher__divider {
    width: 1px;
    height: 15px;
    margin: 0 2px;
    background: rgba(255, 255, 255, 0.22);
}

/*
 * Navbar setelah halaman di-scroll.
 * Sesuaikan selector is-scrolled dengan class navbar proyek.
 */
.navbar-stema.is-scrolled .language-switcher,
.navbar-stema.navbar-scrolled .language-switcher,
.navbar-stema.scrolled .language-switcher {
    border-color: rgba(36, 64, 210, 0.15);
    background: rgba(242, 246, 255, 0.84);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 8px 22px rgba(17, 38, 134, 0.1);
}

.navbar-stema.is-scrolled .language-switcher__item,
.navbar-stema.navbar-scrolled .language-switcher__item,
.navbar-stema.scrolled .language-switcher__item {
    color: #65709d;
}

.navbar-stema.is-scrolled .language-switcher__item:hover,
.navbar-stema.navbar-scrolled .language-switcher__item:hover,
.navbar-stema.scrolled .language-switcher__item:hover {
    color: #1724a8;
}

.navbar-stema.is-scrolled .language-switcher__item.is-active,
.navbar-stema.navbar-scrolled .language-switcher__item.is-active,
.navbar-stema.scrolled .language-switcher__item.is-active {
    color: #ffffff;
    background: linear-gradient(
        135deg,
        #1728c9 0%,
        #087ff5 52%,
        #7a27f2 100%
    );
}

.navbar-stema.is-scrolled .language-switcher__divider,
.navbar-stema.navbar-scrolled .language-switcher__divider,
.navbar-stema.scrolled .language-switcher__divider {
    background: rgba(36, 64, 210, 0.16);
}

@media (max-width: 991.98px) {
    .navbar-language-item {
        width: 100%;
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .language-switcher {
        width: 100%;
        background: rgba(241, 245, 255, 0.9);
        border-color: rgba(36, 64, 210, 0.14);
    }

    .language-switcher__item {
        flex: 1;
        color: #65709d;
    }

    .language-switcher__item.is-active {
        color: #ffffff;
        background: linear-gradient(
            135deg,
            #1728c9 0%,
            #087ff5 52%,
            #7a27f2 100%
        );
    }

    .language-switcher__divider {
        background: rgba(36, 64, 210, 0.16);
    }
}

/* =========================================================
   Makna S.T.E.M.A pada section filosofi
   ========================================================= */

.company-about-value__number {
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.company-about-values {
    max-height: 465px;
    padding-right: 8px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color:
        rgba(49, 94, 229, 0.28)
        transparent;
}

.company-about-values::-webkit-scrollbar {
    width: 5px;
}

.company-about-values::-webkit-scrollbar-track {
    background: transparent;
}

.company-about-values::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: linear-gradient(
        180deg,
        rgba(46, 108, 244, 0.38),
        rgba(124, 52, 223, 0.38)
    );
}

@media (max-width: 991.98px) {
    .company-about-values {
        max-height: none;
        padding-right: 0;
        overflow: visible;
    }
}

/* =========================================================
   FINAL ORBIT SYSTEM v3
   Hero business units + animated S.T.E.M.A labels
   ========================================================= */

/* =========================================================
   A. Hero business-unit orbit
   ========================================================= */

.hero-visual {
    position: relative;
    display: grid;
    min-height: 480px;
    place-items: center;
}

.brand-orbit {
    position: relative;
    width: min(440px, 90vw);
    aspect-ratio: 1;
    margin-inline: auto;
}

.unit-orbit-track {
    position: absolute;
    z-index: 3;
    inset: 0;
    transform-origin: 50% 50%;
    will-change: transform;
}

.orbit-item {
    position: absolute;
    display: grid;
    width: max-content;
    min-width: 100px;
    min-height: 44px;
    padding: 0;
    place-items: center;
}

.orbit-label {
    display: grid;
    width: max-content;
    min-width: 100px;
    min-height: 44px;
    padding: 8px 15px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 14px;
    color: #ffffff;
    background: rgba(10, 21, 96, 0.58);
    box-shadow: 0 16px 36px rgba(4, 10, 55, 0.24);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.orbit-travel,
.orbit-food,
.orbit-ekspedisi,
.orbit-internet {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
}

.orbit-travel {
    top: 1%;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-food {
    top: 50%;
    right: -3%;
    transform: translateY(-50%);
}

.orbit-ekspedisi {
    bottom: 1%;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-internet {
    top: 50%;
    left: -3%;
    transform: translateY(-50%);
}

/* Hero business-unit orbit: tablet */

@media (min-width: 576px) and (max-width: 991.98px) {
    .hero-visual {
        min-height: 39px;
        margin-top: 42px;
        margin-bottom: -18px;
    }

    .brand-orbit {
        width: 350px;
        transform: translateY(-18px);
    }

    .brand-core {
        width: 168px;
        height: 168px;
        padding: 12px;
        border-radius: 39px;
    }

    .orbit-item,
    .orbit-label {
        min-width: 86px;
        min-height: 39px;
    }

    .orbit-label {
        padding: 7px 11px;
        border-radius: 12px;
        font-size: 10px;
    }

    .orbit-travel {
        top: 1%;
        left: 50%;
        transform: translateX(-50%);
    }

    .orbit-food {
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }

    .orbit-ekspedisi {
        bottom: 1%;
        left: 50%;
        transform: translateX(-50%);
    }

    .orbit-internet {
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }
}

/* Hero business-unit orbit: mobile */

@media (max-width: 575.98px) {
    .hero-visual {
        min-height: 315px;
        margin-top: 0px;
        margin-bottom: -18px;
    }

    .brand-orbit {
        width: min(290px, calc(100vw - 42px));
        transform: translateY(12px);
    }

    .brand-core {
        width: 118px;
        height: 118px;
        padding: 9px;
        border-radius: 28px;
    }

    .orbit-item,
    .orbit-label {
        min-width: 68px;
        min-height: 32px;
    }

    .orbit-label {
        padding: 5px 8px;
        border-radius: 10px;
        font-size: 8.5px;
    }

    .orbit-travel {
        top: 1%;
        left: 50%;
        transform: translateX(-50%);
    }

    .orbit-food {
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }

    .orbit-ekspedisi {
        bottom: 1%;
        left: 50%;
        transform: translateX(-50%);
    }

    .orbit-internet {
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

    .orbit-ring-one {
        inset: 5%;
    }

    .orbit-ring-two {
        inset: 20%;
    }
}

@media (max-width: 375px) {
    .hero-visual {
        min-height: 292px;
        margin-top: -45px;
    }

    .brand-orbit {
        width: 255px;
        transform: translateY(10px);
    }

    .brand-core {
        width: 106px;
        height: 106px;
        border-radius: 25px;
    }

    .orbit-item,
    .orbit-label {
        min-width: 62px;
        min-height: 30px;
    }

    .orbit-label {
        padding: 5px 7px;
        font-size: 8px;
    }
}

/* =========================================================
   B. Animated S.T.E.M.A philosophy orbit
   ========================================================= */

.company-about-visual {
    position: relative;
    display: grid;
    place-items: center;
}

.company-about-chip--integrated,
.company-about-chip--trusted,
.company-about-chip--growth {
    display: none !important;
}

.company-about-chip {
    position: absolute;
    z-index: 8;
    display: inline-flex;
    width: max-content;
    min-width: 0;
    min-height: 42px;
    align-items: center;
    gap: 7px;
    padding: 6px 12px 6px 6px;
    border: 1px solid rgba(43, 79, 180, 0.14);
    border-radius: 999px;
    color: #172047;
    background: rgba(255, 255, 255, 0.92);
    box-shadow:
        0 13px 30px rgba(34, 62, 130, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    font-family: var(--font-heading);
    font-weight: 800;
    white-space: nowrap;
    transform: translate(-50%, -50%) !important;
    will-change: top, left;
}

.company-about-chip__icon {
    display: grid;
    width: 29px;
    height: 29px;
    flex: 0 0 29px;
    place-items: center;
    border-radius: 50%;
    color: #315fe4;
    background:
        linear-gradient(
            145deg,
            #edf4ff,
            #f3ebff
        );
    font-size: 0.7rem;
    font-weight: 900;
    line-height: 1;
}

.company-about-chip__text {
    display: block !important;
    max-width: none;
    overflow: visible;
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1;
    text-overflow: clip;
    white-space: nowrap;
}

/*
 * Semua label mengikuti lintasan yang sama dengan fase berbeda.
 * Negative delay membuat kelima label langsung tersebar merata.
 */
.company-about-chip--trust {
    animation-delay: 0s;
}

.company-about-chip--excellence {
    animation-delay: -6.4s;
}

.company-about-chip--mobility {
    animation-delay: -12.8s;
}

.company-about-chip--advancement {
    animation-delay: -19.2s;
}

.company-about-chip--service {
    animation-delay: -25.6s;
}

/*
 * Lintasan oval halus yang selalu menjaga label tetap tegak.
 */
@keyframes stemaLabelOrbit {
    0%,
    100% {
        top: 8%;
        left: 50%;
    }

    10% {
        top: 15%;
        left: 72%;
    }

    20% {
        top: 34%;
        left: 86%;
    }

    30% {
        top: 60%;
        left: 84%;
    }

    40% {
        top: 80%;
        left: 68%;
    }

    50% {
        top: 88%;
        left: 50%;
    }

    60% {
        top: 80%;
        left: 32%;
    }

    70% {
        top: 60%;
        left: 16%;
    }

    80% {
        top: 34%;
        left: 14%;
    }

    90% {
        top: 15%;
        left: 28%;
    }
}

/* Animated S.T.E.M.A orbit: tablet */

@media (min-width: 576px) and (max-width: 991.98px) {
    .company-about-visual {
        min-height: 455px;
    }

    .company-about-logo-frame {
        width: 188px;
        height: 188px;
        padding: 26px;
        border-radius: 41px;
    }

    .company-about-orbit--outer {
        width: 350px;
        height: 350px;
    }

    .company-about-orbit--inner {
        width: 265px;
        height: 265px;
    }

    .company-about-chip {
        min-height: 40px;
        padding: 5px 10px 5px 5px;
    }

    .company-about-chip__icon {
        width: 27px;
        height: 27px;
        flex-basis: 27px;
        font-size: 0.66rem;
    }

    .company-about-chip__text {
        font-size: 0.66rem;
    }
}

/* Animated S.T.E.M.A orbit: mobile, full labels remain visible */

@media (max-width: 575.98px) {
    .company-about-visual {
        min-height: 350px;
        margin-bottom: 8px;
    }

    .company-about-logo-frame {
        width: 128px;
        height: 128px;
        padding: 19px;
        border-radius: 29px;
    }

    .company-about-orbit--outer {
        width: 260px;
        height: 260px;
    }

    .company-about-orbit--inner {
        width: 188px;
        height: 188px;
    }

    .company-about-chip {
        min-height: 34px;
        gap: 4px;
        padding: 4px 7px 4px 4px;
    }

    .company-about-chip__icon {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
        font-size: 0.61rem;
    }

    .company-about-chip__text {
        display: block !important;
        max-width: none;
        font-size: 0.57rem;
        letter-spacing: -0.015em;
    }

  
}

@media (max-width: 375px) {
    .company-about-visual {
        min-height: 330px;
    }

    .company-about-logo-frame {
        width: 116px;
        height: 116px;
        padding: 17px;
        border-radius: 27px;
    }

    .company-about-orbit--outer {
        width: 238px;
        height: 238px;
    }

    .company-about-orbit--inner {
        width: 174px;
        height: 174px;
    }

    .company-about-chip {
        min-height: 32px;
        gap: 3px;
        padding: 3px 6px 3px 3px;
    }

    .company-about-chip__icon {
        width: 23px;
        height: 23px;
        flex-basis: 23px;
        font-size: 0.58rem;
    }

    .company-about-chip__text {
        display: block !important;
        font-size: 0.53rem;
    }
}

/* Pause animation when the user interacts with a label. */

@media (hover: hover) and (pointer: fine) {
    .company-about-visual:hover .company-about-chip,
    .company-about-chip:focus-visible {
        animation-play-state: paused;
    }
}

/* Accessibility: respect reduced-motion preference. */

@media (prefers-reduced-motion: reduce) {
    .unit-orbit-track,
    .company-about-orbit,
    .company-about-logo-frame__shine,
    .company-about-chip {
        animation: none !important;
    }

    .brand-orbit {
        transform: none;
    }

    .company-about-chip--trust {
        top: 10%;
        left: 50%;
    }

    .company-about-chip--excellence {
        top: 35%;
        left: 84%;
    }

    .company-about-chip--mobility {
        top: 78%;
        left: 70%;
    }

    .company-about-chip--advancement {
        top: 78%;
        left: 30%;
    }

    .company-about-chip--service {
        top: 35%;
        left: 16%;
    }
}

.company-about-chip,
.company-about-chip--service,
.company-about-chip--trust,
.company-about-chip--excellence,
.company-about-chip--mobility,
.company-about-chip--advancement {
    animation: none !important;
    will-change: auto !important;
}

/* =========================================================
   FINAL STATIC LAYOUT OVERRIDE
   S.T.E.M.A philosophy labels + responsive hero orbit
   Keep this block at the very end of app.css.
   ========================================================= */

/* Reset every leftover orbit/parallax transform on the labels. */
.company-about-chip,
.company-about-chip--service,
.company-about-chip--trust,
.company-about-chip--excellence,
.company-about-chip--mobility,
.company-about-chip--advancement {
    position: absolute !important;
    display: flex !important;
    width: 142px !important;
    min-width: 142px !important;
    max-width: 142px !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    align-items: center !important;
    justify-content: flex-start !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    animation: none !important;
    transform: none !important;
    will-change: auto !important;
}

.company-about-chip__icon {
    width: 29px !important;
    height: 29px !important;
    flex: 0 0 29px !important;
}

.company-about-chip__text {
    display: block !important;
    min-width: 0 !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
}

/* Desktop: balanced five-point static arrangement. */
.company-about-chip--service {
    top: 13% !important;
    right: auto !important;
    bottom: auto !important;
    left: 7% !important;
}

.company-about-chip--trust {
    top: 13% !important;
    right: 7% !important;
    bottom: auto !important;
    left: auto !important;
}

.company-about-chip--excellence {
    top: 47% !important;
    right: 2.5% !important;
    bottom: auto !important;
    left: auto !important;
}

.company-about-chip--mobility {
    top: auto !important;
    right: 8% !important;
    bottom: 11% !important;
    left: auto !important;
}

.company-about-chip--advancement {
    top: auto !important;
    right: auto !important;
    bottom: 11% !important;
    left: 7% !important;
}

/* Tablet: keep every unit label below the statistics area. */
@media (min-width: 576px) and (max-width: 991.98px) {
    .hero-section {
        padding-bottom: 96px !important;
    }

    .hero-container > .row > .col-lg-5 {
        margin-top: 72px !important;
    }

    .hero-visual {
        min-height: 450px !important;
        margin-top: 0 !important;
        margin-bottom: 16px !important;
        overflow: visible;
        transform: none !important;
    }

    .brand-orbit {
        width: min(420px, calc(100vw - 80px)) !important;
        transform: translateY(20px) !important;
    }

    .company-about-visual {
        min-height: 440px !important;
        overflow: hidden !important;
    }

    .company-about-chip,
    .company-about-chip--service,
    .company-about-chip--trust,
    .company-about-chip--excellence,
    .company-about-chip--mobility,
    .company-about-chip--advancement {
        width: 132px !important;
        min-width: 132px !important;
        max-width: 132px !important;
        height: 40px !important;
        min-height: 40px !important;
        max-height: 40px !important;
        transform: none !important;
    }

    .company-about-chip__icon {
        width: 27px !important;
        height: 27px !important;
        flex-basis: 27px !important;
    }

    .company-about-chip--service {
        top: 12% !important;
        right: auto !important;
        bottom: auto !important;
        left: 6% !important;
    }

    .company-about-chip--trust {
        top: 12% !important;
        right: 6% !important;
        bottom: auto !important;
        left: auto !important;
    }

    .company-about-chip--excellence {
        top: 46% !important;
        right: 3% !important;
        bottom: auto !important;
        left: auto !important;
    }

    .company-about-chip--mobility {
        top: auto !important;
        right: 7% !important;
        bottom: 9% !important;
        left: auto !important;
    }

    .company-about-chip--advancement {
        top: auto !important;
        right: auto !important;
        bottom: 9% !important;
        left: 6% !important;
    }
}

/* Mobile: full words stay visible; no label is allowed outside the card. */
@media (max-width: 575.98px) {
    .hero-section {
        padding-bottom: 84px !important;
    }

    .hero-container > .row > .col-lg-5 {
        margin-top: 72px !important;
    }

    .hero-visual {
        min-height: 330px !important;
        margin-top: 0 !important;
        margin-bottom: 16px !important;
        overflow: visible;
        transform: none !important;
    }

    .brand-orbit {
        width: min(312px, calc(100vw - 44px)) !important;
        transform: translateY(18px) !important;
    }

    .company-about-visual {
        min-height: 350px !important;
        margin-bottom: 8px !important;
        overflow: hidden !important;
    }

    .company-about-chip,
    .company-about-chip--service,
    .company-about-chip--trust,
    .company-about-chip--excellence,
    .company-about-chip--mobility,
    .company-about-chip--advancement {
        width: 112px !important;
        min-width: 112px !important;
        max-width: 112px !important;
        height: 34px !important;
        min-height: 34px !important;
        max-height: 34px !important;
        gap: 4px !important;
        padding: 4px 6px 4px 4px !important;
        transform: none !important;
    }

    .company-about-chip__icon {
        width: 24px !important;
        height: 24px !important;
        flex: 0 0 24px !important;
        font-size: 0.61rem !important;
    }

    .company-about-chip__text {
        display: block !important;
        font-size: 0.55rem !important;
        letter-spacing: -0.025em !important;
    }

    .company-about-chip--service {
        top: 23% !important;
        right: auto !important;
        bottom: auto !important;
        left: 3% !important;
    }

    .company-about-chip--trust {
        top: 8% !important;
        right: 30% !important;
        bottom: auto !important;
        left: auto !important;
    }

    .company-about-chip--excellence {
        top: 25% !important;
        right: -1% !important;
        bottom: auto !important;
        left: auto !important;
    }

    .company-about-chip--mobility {
        top: auto !important;
        right: 4% !important;
        bottom: 6% !important;
        left: auto !important;
    }

    .company-about-chip--advancement {
        top: auto !important;
        right: auto !important;
        bottom: 6% !important;
        left: 3% !important;
    }
}

@media (max-width: 375px) {
    .hero-container > .row > .col-lg-5 {
        margin-top: 68px !important;
    }

    .hero-visual {
        min-height: 292px !important;
        margin-top: 0 !important;
    }

    .brand-orbit {
        width: min(248px, calc(100vw - 38px)) !important;
        transform: translateY(14px) !important;
    }

    .company-about-visual {
        min-height: 330px !important;
    }

    .company-about-chip,
    .company-about-chip--service,
    .company-about-chip--trust,
    .company-about-chip--excellence,
    .company-about-chip--mobility,
    .company-about-chip--advancement {
        width: 104px !important;
        min-width: 104px !important;
        max-width: 104px !important;
        height: 32px !important;
        min-height: 32px !important;
        max-height: 32px !important;
    }

    .company-about-chip__icon {
        width: 23px !important;
        height: 23px !important;
        flex-basis: 23px !important;
    }

    .company-about-chip__text {
        font-size: 0.5rem !important;
    }
}
/* Menunda layout dan paint section di bawah fold sampai mendekati viewport. */
@supports (content-visibility: auto) {
    .units-section,
    .company-about-section,
    .foundation-section,
    .landing-contact-section {
        content-visibility: auto;
        contain-intrinsic-size: auto 900px;
    }
}