/* =========================================================
   ROOT
========================================================= */

:root {

    --green: #087443;
    --green-dark: #055a34;
    --green-deep: #023d27;

    --green-soft: #bcf7c0;

    --gold: #d7a72b;
    --gold-light: #f4d878;

    --white: #ffffff;
    --off-white: #f7faf8;

    --text: #17251e;
    --text-soft: #66736c;

    --border: rgba(8,116,67,.10);

    --shadow-card:
        0 8px 18px rgba(0,45,30,.08),
        0 20px 40px rgba(0,45,30,.10),
        0 35px 65px rgba(0,45,30,.06);

    --shadow-card-hover:
        0 12px 25px rgba(0,45,30,.10),
        0 25px 55px rgba(0,45,30,.15),
        0 45px 80px rgba(0,45,30,.10);

    --shadow-soft:
        0 12px 35px rgba(0,55,35,.08);

    --ease:
        cubic-bezier(.22,1,.36,1);
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);
    background: var(--white);

    line-height: 1.7;

    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
}


/* =========================================================
   PAGE LOADER
========================================================= */

.page-loader {

    position: fixed;
    inset: 0;

    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            rgba(8,116,67,.96) 0%,
            rgba(2,61,39,1) 65%
        );

    transition:
        opacity .6s ease,
        visibility .6s ease;
}

.page-loader.hide {

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    text-align: center;
    color: var(--white);
}

.loader-logo {

    width: 95px;
    height: 95px;

    display: block;

    margin: 0 auto 22px;

    object-fit: contain;

    opacity: 1;
    visibility: visible;

    filter: none;

    animation:
        loaderLogoIn .8s ease both;
}

.loader-line {

    width: 140px;
    height: 3px;

    margin: 0 auto 13px;

    overflow: hidden;

    border-radius: 10px;

    background: rgba(255,255,255,.18);
}

.loader-line::after {

    content: "";

    display: block;

    width: 60%;
    height: 100%;

    border-radius: inherit;

    background: var(--gold);

    animation:
        loading 1s infinite ease-in-out;
}

.loader-inner span {

    font-size: 11px;

    letter-spacing: .12em;

    color:
        rgba(255,255,255,.75);
}

@keyframes loaderLogoIn {

    from {
        opacity: 0;
        transform: scale(.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes loading {

    0% {
        transform: translateX(-150%);
    }

    100% {
        transform: translateX(250%);
    }
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {

    position: sticky;
    top: 0;

    z-index: 5000;

    background: #bcf7c0;

    border-bottom:
        1px solid rgba(8,116,67,.15);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 8px 25px rgba(0,45,30,.12),
        0 18px 45px rgba(0,45,30,.08);
}

.nav-container {

    width:
        min(
            1240px,
            calc(100% - 40px)
        );

    min-height: 78px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.brand {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}

.brand-logo {

    width: 46px;
    height: 46px;
}

.brand-logo img {

    width: 100%;
    height: 100%;

    object-fit: contain;
}

.brand-text {

    display: flex;

    flex-direction: column;

    line-height: 1.25;
}

.brand-text strong {

    font-size: 14px;

    font-weight: 800;

    color: var(--green-deep);
}

.brand-text span {

    margin-top: 3px;

    font-size: 10px;

    color: var(--text-soft);
}

.nav-menu {

    display: flex;

    align-items: center;

    gap: 8px;
}

.nav-link {

    position: relative;

    padding: 10px 14px;

    font-size: 13px;

    font-weight: 600;

    color: #59655f;

    border-radius: 10px;

    transition:
        color .3s ease,
        background .3s ease;
}

.nav-link:hover {

    color: var(--green);

    background:
        rgba(8,116,67,.06);
}

.nav-link.active {

    color: var(--green);
}

.nav-link.active::after {

    content: "";

    position: absolute;

    left: 14px;
    right: 14px;

    bottom: 3px;

    height: 2px;

    border-radius: 2px;

    background: var(--gold);
}


/* =========================================================
   FLOATING SIWALAN
========================================================= */

.floating-siwalan {

    position: fixed;

    top: 92px;

    right: 18px;
    left: auto;

    width: 72px;
    height: 72px;

    display: flex;

    align-items: center;
    justify-content: center;

    z-index: 4500;

    border-radius: 18px;

    background:
        rgba(255,255,255,.94);

    border:
        1px solid rgba(8,116,67,.12);

    box-shadow:
        0 12px 30px rgba(0,55,35,.16),
        0 20px 45px rgba(0,55,35,.08);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    overflow: hidden;

    transition:
        transform .45s var(--ease),
        box-shadow .45s var(--ease),
        border-color .45s ease;
}

.floating-siwalan img {

    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 7px;

    transition:
        transform .5s var(--ease);
}

.floating-siwalan:hover {

    transform:
        translateY(-5px) scale(1.04);

    border-color:
        rgba(8,116,67,.35);

    box-shadow:
        0 18px 40px rgba(0,55,35,.22),
        0 28px 60px rgba(0,55,35,.12);
}

.floating-siwalan:hover img {

    transform: scale(1.08);
}

.floating-siwalan:active {

    transform: scale(.96);
}

.floating-siwalan::after {

    content: "";

    position: absolute;

    top: -80%;
    left: -120%;

    width: 60%;
    height: 250%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.5),
            transparent
        );

    transform: rotate(20deg);

    transition:
        left .7s var(--ease);

    pointer-events: none;
}

.floating-siwalan:hover::after {

    left: 140%;
}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    min-height: 720px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(188,247,192,.45),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7faf8 100%
        );
}

.hero::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    top: 100px;

    border-radius: 50%;

    background:
        rgba(8,116,67,.05);

    filter: blur(2px);
}

.hero-container {

    width:
        min(
            1240px,
            calc(100% - 40px)
        );

    margin: auto;

    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    align-items: center;

    gap: 80px;

    padding: 90px 0;
}

.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 20px;

    padding: 7px 13px;

    border-radius: 50px;

    background:
        rgba(8,116,67,.07);

    color: var(--green);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.hero h1 {

    max-width: 720px;

    font-size:
        clamp(
            42px,
            5vw,
            72px
        );

    line-height: 1.05;

    letter-spacing: -.04em;

    color: var(--green-deep);
}

.hero h1 span {

    display: block;

    color: var(--green);
}

.hero-description {

    max-width: 650px;

    margin-top: 25px;

    color: var(--text-soft);

    font-size: 16px;
}

.hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;
}

.btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 22px;

    border-radius: 12px;

    font-size: 13px;

    font-weight: 700;

    transition:
        transform .35s var(--ease),
        box-shadow .35s ease,
        background .35s ease;
}

.btn-primary {

    color: var(--white);

    background:
        var(--green);

    box-shadow:
        0 12px 25px rgba(8,116,67,.20);
}

.btn-primary:hover {

    transform: translateY(-3px);

    background:
        var(--green-dark);

    box-shadow:
        0 18px 35px rgba(8,116,67,.25);
}

.btn-secondary {

    color: var(--green);

    background:
        rgba(8,116,67,.06);

    border:
        1px solid rgba(8,116,67,.12);
}

.btn-secondary:hover {

    transform: translateY(-3px);

    background:
        rgba(8,116,67,.10);
}

.hero-meta {

    display: flex;

    flex-wrap: wrap;

    gap: 28px;

    margin-top: 45px;
}

.hero-meta div {

    display: flex;

    flex-direction: column;
}

.hero-meta strong {

    color: var(--green);

    font-size: 17px;
}

.hero-meta span {

    color: var(--text-soft);

    font-size: 11px;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {

    position: relative;

    min-height: 520px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.hero-card {

    width: min(100%, 450px);

    padding: 30px;

    border:
        1px solid rgba(8,116,67,.10);

    border-radius: 25px;

    background:
        rgba(255,255,255,.90);

    box-shadow:
        0 25px 60px rgba(0,45,30,.12),
        0 50px 100px rgba(0,45,30,.07);

    backdrop-filter: blur(15px);
}

.hero-card-top {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 20px;
}

.small-label {

    display: block;

    margin-bottom: 7px;

    color: var(--text-soft);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .12em;
}

.hero-card h3 {

    color: var(--green-deep);

    font-size: 22px;
}

.status-dot {

    display: flex;

    align-items: center;

    gap: 6px;

    padding: 6px 10px;

    border-radius: 50px;

    background:
        rgba(8,116,67,.07);

    color: var(--green);

    font-size: 10px;

    font-weight: 700;
}

.status-dot span {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--green);
}

.dashboard-preview {

    margin-top: 35px;
}

.dashboard-row {

    display: flex;

    justify-content: space-between;

    margin-bottom: 8px;

    color: var(--text-soft);

    font-size: 11px;
}

.dashboard-row strong {

    color: var(--green);
}

.progress {

    width: 100%;
    height: 7px;

    margin-bottom: 22px;

    overflow: hidden;

    border-radius: 20px;

    background:
        rgba(8,116,67,.08);
}

.progress span {

    display: block;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            var(--green),
            #4aa96c
        );
}

.hero-stats {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 12px;

    margin-top: 30px;

    padding-top: 25px;

    border-top:
        1px solid rgba(8,116,67,.08);
}

.hero-stats div {

    display: flex;

    flex-direction: column;

    gap: 2px;
}

.hero-stats strong {

    color: var(--green-deep);

    font-size: 17px;
}

.hero-stats span {

    color: var(--text-soft);

    font-size: 9px;
}

.floating-card {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px 15px;

    border:
        1px solid rgba(8,116,67,.10);

    border-radius: 15px;

    background:
        rgba(255,255,255,.94);

    box-shadow:
        0 15px 35px rgba(0,45,30,.12);

    backdrop-filter: blur(12px);
}

.floating-card strong {

    display: block;

    color: var(--green-deep);

    font-size: 10px;
}

.floating-card span {

    display: block;

    color: var(--text-soft);

    font-size: 8px;
}

.floating-icon {

    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    color: var(--green);

    background:
        rgba(8,116,67,.08);

    font-size: 13px;
}

.floating-card-one {

    left: -20px;
    bottom: 100px;
}

.floating-card-two {

    right: -15px;
    top: 95px;
}


/* =========================================================
   GENERAL SECTION
========================================================= */

.section {

    position: relative;

    padding: 110px 0;
}

.section-light {

    background:
        var(--off-white);
}

.section-container {

    width:
        min(
            1160px,
            calc(100% - 40px)
        );

    margin: auto;
}

.section-heading {

    max-width: 720px;

    margin-bottom: 55px;
}

.section-heading h2 {

    margin-top: 8px;

    color: var(--green-deep);

    font-size:
        clamp(
            30px,
            4vw,
            48px
        );

    line-height: 1.12;

    letter-spacing: -.03em;
}

.section-heading p {

    margin-top: 18px;

    color: var(--text-soft);

    font-size: 15px;
}

.section-label {

    color: var(--green);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .15em;
}


/* =========================================================
   CONTENT CARDS
========================================================= */

.intro-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 25px;

    padding:
        10px 6px 25px;
}

.content-card,
.scope-card,
.benefit-card {

    position: relative;

    border:
        1px solid rgba(8,116,67,.10);

    box-shadow:
        var(--shadow-card);

    transition:
        transform .45s var(--ease),
        box-shadow .45s var(--ease),
        border-color .45s ease;
}

.content-card {

    padding: 32px;

    border-radius: 20px;

    background:
        rgba(255,255,255,.95);
}

.content-card:hover,
.scope-card:hover,
.benefit-card:hover {

    transform:
        translateY(-9px);

    border-color:
        rgba(8,116,67,.20);

    box-shadow:
        var(--shadow-card-hover);
}

.card-number {

    color: var(--gold);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .1em;
}

.content-card h3 {

    margin-top: 18px;

    color: var(--green-deep);

    font-size: 20px;
}

.content-card p {

    margin-top: 10px;

    color: var(--text-soft);

    font-size: 13px;
}


/* =========================================================
   OBJECTIVE BOX
========================================================= */

.objective-box {

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 50px;

    margin-top: 30px;

    padding: 42px;

    border-radius: 25px;

    background:
        var(--green-deep);

    box-shadow:
        0 25px 55px rgba(0,45,30,.18);
}

.objective-content h3 {

    max-width: 450px;

    margin-top: 12px;

    color: var(--white);

    font-size: 27px;

    line-height: 1.25;
}

.objective-list {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 15px;
}

.objective-list div {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    padding: 15px;

    border-radius: 12px;

    background:
        rgba(255,255,255,.06);
}

.objective-list span {

    color: var(--gold-light);

    font-weight: 800;
}

.objective-list p {

    color:
        rgba(255,255,255,.72);

    font-size: 12px;
}


/* =========================================================
   SCOPE
========================================================= */

.scope-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 25px;

    padding:
        10px 6px 25px;
}

.scope-card {

    padding: 30px;

    border-radius: 20px;

    background:
        var(--white);
}

.scope-number {

    display: block;

    margin-bottom: 25px;

    color: var(--gold);

    font-size: 11px;

    font-weight: 800;
}

.scope-card h3 {

    color: var(--green-deep);

    font-size: 19px;
}

.scope-card p {

    margin-top: 10px;

    color: var(--text-soft);

    font-size: 12px;
}


/* =========================================================
   DIGITALISASI
========================================================= */

.digital-section {

    background:
        var(--green-deep);

    color: var(--white);
}

.digital-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}

.digital-content h2 {

    margin-top: 8px;

    color: var(--white);

    font-size:
        clamp(
            30px,
            4vw,
            48px
        );

    line-height: 1.12;

    letter-spacing: -.03em;
}

.digital-content > p {

    margin-top: 20px;

    color:
        rgba(255,255,255,.68);

    font-size: 14px;
}

.digital-features {

    margin-top: 35px;

    display: grid;

    gap: 18px;
}

.digital-feature {

    display: flex;

    gap: 15px;

    align-items: flex-start;
}

.feature-icon {

    flex-shrink: 0;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: var(--gold-light);

    background:
        rgba(255,255,255,.07);

    font-size: 10px;

    font-weight: 800;
}

.digital-feature h3 {

    color: var(--white);

    font-size: 14px;
}

.digital-feature p {

    margin-top: 3px;

    color:
        rgba(255,255,255,.55);

    font-size: 11px;
}


/* =========================================================
   DIGITAL DASHBOARD
========================================================= */

.digital-dashboard {

    padding: 28px;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 25px;

    background:
        rgba(255,255,255,.05);

    box-shadow:
        0 30px 70px rgba(0,0,0,.15);

    backdrop-filter: blur(10px);
}

.dashboard-header {

    display: flex;

    justify-content: space-between;

    align-items: center;
}

.dashboard-header span {

    display: block;

    color:
        rgba(255,255,255,.45);

    font-size: 8px;

    letter-spacing: .1em;
}

.dashboard-header strong {

    display: block;

    margin-top: 3px;

    color: var(--white);

    font-size: 16px;
}

.dashboard-status {

    color: #8fe0a3;

    font-size: 9px;
}

.dashboard-chart {

    height: 260px;

    display: flex;

    align-items: flex-end;

    padding-top: 40px;
}

.chart-bars {

    width: 100%;
    height: 100%;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 12px;
}

.chart-bars span {

    flex: 1;

    min-height: 30px;

    border-radius:
        8px 8px 2px 2px;

    background:
        linear-gradient(
            180deg,
            #8fe0a3,
            #087443
        );

    opacity: .85;
}

.dashboard-bottom {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 12px;

    padding-top: 20px;

    border-top:
        1px solid rgba(255,255,255,.08);
}

.dashboard-bottom div {

    display: flex;

    flex-direction: column;
}

.dashboard-bottom small {

    color:
        rgba(255,255,255,.45);

    font-size: 9px;
}

.dashboard-bottom strong {

    margin-top: 3px;

    color: var(--white);

    font-size: 12px;
}


/* =========================================================
   BENEFIT
========================================================= */

.benefit-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 20px;

    padding:
        10px 6px 25px;
}

.benefit-card {

    padding: 28px;

    border-radius: 20px;

    background:
        var(--white);
}

.benefit-icon {

    color: var(--gold);

    font-size: 11px;

    font-weight: 800;
}

.benefit-card h3 {

    margin-top: 20px;

    color: var(--green-deep);

    font-size: 18px;
}

.benefit-card p {

    margin-top: 10px;

    color: var(--text-soft);

    font-size: 12px;
}


/* =========================================================
   CLOSING
========================================================= */

.closing-box {

    margin-top: 45px;

    padding: 55px 35px;

    text-align: center;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            #bcf7c0,
            #e9faeb
        );

    box-shadow:
        0 25px 60px rgba(0,55,35,.08);
}

.closing-box > span {

    color: var(--green);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .16em;
}

.closing-box h3 {

    max-width: 700px;

    margin: 10px auto 0;

    color: var(--green-deep);

    font-size:
        clamp(
            25px,
            4vw,
            42px
        );

    line-height: 1.15;
}

.closing-box p {

    max-width: 650px;

    margin: 15px auto 0;

    color:
        rgba(23,37,30,.65);

    font-size: 13px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    background:
        #012b1c;

    color: var(--white);

    padding: 28px 0;
}

.footer-container {

    width:
        min(
            1160px,
            calc(100% - 40px)
        );

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.footer-container div {

    display: flex;

    flex-direction: column;
}

.footer-container strong {

    font-size: 13px;
}

.footer-container span {

    margin-top: 2px;

    color:
        rgba(255,255,255,.5);

    font-size: 9px;
}

.footer-container > div:last-child {

    color:
        rgba(255,255,255,.45);

    font-size: 10px;
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {

    position: fixed;

    right: 20px;
    bottom: 20px;

    width: 44px;
    height: 44px;

    z-index: 4000;

    border: none;

    border-radius: 13px;

    color: var(--white);

    background:
        var(--green);

    box-shadow:
        0 12px 30px rgba(0,55,35,.20);

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(15px);

    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease,
        background .3s ease;
}

.back-to-top.show {

    opacity: 1;
    visibility: visible;

    transform:
        translateY(0);
}

.back-to-top:hover {

    background:
        var(--green-dark);
}


/* =========================================================
   REVEAL
========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(30px);

    transition:
        opacity .8s ease,
        transform .8s var(--ease);
}

.reveal.show {

    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   RESPONSIVE TABLET
========================================================= */

@media (max-width: 1000px) {

    .nav-menu {
        gap: 2px;
    }

    .nav-link {
        padding: 9px 9px;
        font-size: 11px;
    }

    .hero-container {

        grid-template-columns:
            1fr;

        gap: 40px;

        padding:
            80px 0;
    }

    .hero-content {
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-meta {
        justify-content: center;
    }

    .intro-grid,
    .scope-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .benefit-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .digital-grid {
        grid-template-columns:
            1fr;
    }

}


/* =========================================================
   RESPONSIVE HP
========================================================= */

@media (max-width: 650px) {

    .nav-container {

        width:
            calc(100% - 24px);

        min-height: 68px;
    }

    .brand-logo {

        width: 38px;
        height: 38px;
    }

    .brand-text strong {
        font-size: 12px;
    }

    .brand-text span {
        font-size: 8px;
    }

    .nav-menu {
        display: none;
    }


    /* Siwalan */

    .floating-siwalan {

        top: 145px;

        right: 12px;
        left: auto;

        width: 54px;
        height: 54px;

        border-radius: 14px;
    }

    .floating-siwalan img {
        padding: 5px;
    }


    /* Loader */

    .loader-logo {

        width: 78px;
        height: 78px;

        margin-bottom: 18px;
    }


    /* Hero */

    .hero {
        min-height: auto;
    }

    .hero-container {

        width:
            calc(100% - 28px);

        padding:
            65px 0 80px;
    }

    .hero h1 {

        font-size:
            clamp(
                36px,
                11vw,
                52px
            );
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-meta {
        gap: 18px;
    }

    .hero-visual {
        min-height: 440px;
    }

    .hero-card {
        padding: 22px;
    }

    .floating-card-one {
        left: -2px;
        bottom: 55px;
    }

    .floating-card-two {
        right: -2px;
        top: 45px;
    }


    /* Section */

    .section {
        padding: 80px 0;
    }

    .section-container {

        width:
            calc(100% - 28px);
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2 {
        font-size: 31px;
    }


    /* Cards */

    .intro-grid,
    .scope-grid,
    .benefit-grid {

        grid-template-columns:
            1fr;

        gap: 18px;
    }

    .content-card,
    .scope-card,
    .benefit-card {
        padding: 25px;
    }


    /* Objective */

    .objective-box {

        grid-template-columns:
            1fr;

        gap: 30px;

        padding: 28px;
    }

    .objective-content h3 {
        font-size: 23px;
    }

    .objective-list {
        grid-template-columns:
            1fr;
    }


    /* Digital */

    .digital-grid {
        gap: 45px;
    }

    .digital-content h2 {
        font-size: 31px;
    }

    .digital-dashboard {
        padding: 20px;
    }

    .dashboard-chart {
        height: 190px;
    }


    /* Closing */

    .closing-box {
        padding: 40px 22px;
    }


    /* Footer */

    .footer-container {

        width:
            calc(100% - 28px);

        flex-direction: column;

        align-items: flex-start;
    }

    .footer-container > div:last-child {
        margin-top: 5px;
    }


    /* Back top */

    .back-to-top {

        right: 14px;
        bottom: 14px;

        width: 40px;
        height: 40px;
    }

}


/* =========================================================
   HP KECIL
========================================================= */

@media (max-width: 380px) {

    .floating-siwalan {

        top: 140px;

        right: 10px;

        width: 48px;
        height: 48px;

        border-radius: 12px;
    }

    .hero-container {
        padding-top: 55px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero-card {
        padding: 18px;
    }

    .floating-card {
        padding: 9px 10px;
    }

    .floating-card strong {
        font-size: 9px;
    }

    .floating-card span {
        font-size: 7px;
    }

}