.landing-page {
    --ink: #18232a;
    --muted: #637178;
    --line: #dce5e1;
    --paper: #ffffff;
    --surface: #f5f8f7;
    --teal: #0f766e;
    --green: #3c8f42;
    --gold: #d6a01d;
    --magenta: #c2186a;
    background: var(--surface);
    color: var(--ink);
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

.landing-page a {
    text-decoration: none;
}

.landing-shell {
    overflow: hidden;
}

.landing-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(20, 31, 36, 0.66);
    backdrop-filter: blur(18px);
    transition: background-color 180ms ease, box-shadow 180ms ease;
}

.landing-nav.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 32px rgba(16, 33, 41, 0.12);
}

.landing-nav .navbar {
    min-height: 74px;
}

.brand-mark {
    width: 70px;
    height: auto;
    flex: 0 0 70px;
    object-fit: contain;
}

.brand-title {
    display: block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.brand-subtitle {
    display: block;
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    line-height: 1.35;
}

.landing-nav .nav-link {
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 12px;
}

.landing-nav .nav-link:hover,
.landing-nav .nav-link:focus {
    color: #ffffff;
}

.landing-nav.is-scrolled .brand-title,
.landing-nav.is-scrolled .nav-link {
    color: var(--ink);
}

.landing-nav.is-scrolled .brand-subtitle {
    color: var(--muted);
}

.landing-nav.is-scrolled .nav-link:hover,
.landing-nav.is-scrolled .nav-link:focus {
    color: var(--teal);
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 8px;
    color: #ffffff;
    height: 42px;
    width: 46px;
}

.landing-nav.is-scrolled .navbar-toggler {
    border-color: var(--line);
    color: var(--ink);
}

.nav-login,
.landing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 8px;
    font-weight: 800;
}

.nav-login {
    min-height: 42px;
    background: var(--gold);
    color: #1c201a;
    padding: 0 16px;
}

.nav-login:hover,
.nav-login:focus {
    color: #1c201a;
    background: #e8b332;
}

.hero-section {
    min-height: 86vh;
    display: flex;
    align-items: flex-end;
    position: relative;
    color: #ffffff;
    background-image: linear-gradient(90deg, rgba(9, 22, 28, 0.92) 0%, rgba(9, 22, 28, 0.74) 42%, rgba(9, 22, 28, 0.32) 100%), var(--hero-image);
    background-position: center;
    background-size: cover;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 36%;
    background: linear-gradient(180deg, rgba(245, 248, 247, 0) 0%, var(--surface) 100%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 132px;
    padding-bottom: 72px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 700;
}

.hero-title {
    max-width: 850px;
    margin: 22px 0 18px;
    color: #ffffff;
    font-size: 54px;
    line-height: 1.04;
    font-weight: 800;
}

.hero-copy {
    max-width: 660px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.landing-btn {
    min-height: 48px;
    border: 1px solid transparent;
    padding: 0 20px;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.landing-btn:hover {
    transform: translateY(-1px);
}

.landing-btn-primary {
    background: var(--gold);
    color: #1d231e;
    box-shadow: 0 16px 34px rgba(214, 160, 29, 0.28);
}

.landing-btn-primary:hover,
.landing-btn-primary:focus {
    color: #1d231e;
    background: #e8b332;
}

.landing-btn-ghost {
    border-color: rgba(255, 255, 255, 0.34);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.landing-btn-ghost:hover,
.landing-btn-ghost:focus {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
}

.hero-panel {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(12, 24, 29, 0.7);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
    padding: 22px;
}

.hero-panel-title {
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 16px;
}

.hero-metric {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-metric:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.hero-metric-icon,
.trust-icon,
.service-icon,
.portal-icon,
.feature-list-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.hero-metric-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--gold);
    font-size: 22px;
}

.icon-besar {
    font-size: 38px; /* Ubah angka ini sesuai keinginan */
    display: inline-block;
    line-height: 1;
}

.hero-metric strong {
    display: block;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.2;
}

.hero-metric span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.section-pad {
    padding: 86px 0;
}

.section-pad-sm {
    padding: 62px 0;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.section-title {
    color: var(--ink);
    font-size: 36px;
    line-height: 1.18;
    font-weight: 800;
    margin: 12px 0 0;
}

.section-copy {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
    margin-top: 16px;
}

.trust-strip {
    position: relative;
    z-index: 2;
    margin-top: -34px;
}

.trust-strip-inner {
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 0 24px 48px rgba(27, 48, 55, 0.12);
    border: 1px solid var(--line);
    padding: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 72px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: #edf7f4;
    color: var(--teal);
    font-size: 24px;
    flex: 0 0 48px;
}

.trust-item strong {
    display: block;
    color: var(--ink);
    font-size: 16px;
}

.trust-item span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.service-card,
.agenda-card,
.portal-card {
    height: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 0 16px 38px rgba(25, 43, 51, 0.08);
}

.service-card {
    padding: 28px;
}

.service-icon {
    width: 52px;
    height: 52px;
    background: #eef8f3;
    color: var(--green);
    font-size: 27px;
    margin-bottom: 22px;
}

.service-card h3,
.portal-card h3 {
    color: var(--ink);
    font-size: 19px;
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: 12px;
}

.service-card p,
.portal-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 0;
}

.feature-band {
    background: #182a2f;
    color: #ffffff;
}

.feature-band .section-title,
.feature-band .section-kicker {
    color: #ffffff;
}

.feature-band .section-copy {
    color: rgba(255, 255, 255, 0.74);
}

.image-frame {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
    background: #203940;
}

.image-frame img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.feature-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.feature-list-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-list-item i {
    width: 42px;
    height: 42px;
    color: var(--gold);
    background: rgba(255, 255, 255, 0.11);
    font-size: 22px;
}

.feature-list-item strong {
    display: block;
    color: #ffffff;
    font-size: 16px;
}

.feature-list-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.65;
}

.agenda-card,
.portal-card {
    padding: 26px;
}

.agenda-date {
    display: inline-flex;
    min-width: 86px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff6db;
    color: #8f6400;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 18px;
}

.agenda-card h3 {
    color: var(--ink);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 10px;
}

.agenda-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

.portal-card {
    display: flex;
    flex-direction: column;
}

.portal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.portal-icon {
    width: 50px;
    height: 50px;
    color: var(--magenta);
    background: #fff0f7;
    font-size: 25px;
}

.portal-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    font-weight: 800;
    padding-top: 18px;
}

.portal-link:hover,
.portal-link:focus {
    color: var(--green);
}

.closing-cta {
    border-radius: 8px;
    background: #f0f6f2;
    border: 1px solid var(--line);
    padding: 34px;
}

.closing-cta h2 {
    color: var(--ink);
    font-size: 30px;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 12px;
}

.closing-cta p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 0;
}

.landing-footer {
    background: #10191d;
    color: rgba(255, 255, 255, 0.78);
    padding: 36px 0;
}

.landing-footer strong {
    color: #ffffff;
}

.asset-credit {
    color: rgba(255, 255, 255, 0.54);
    font-size: 12px;
}

@media (max-width: 991.98px) {
    .landing-nav .navbar-collapse {
        margin-top: 12px;
        padding: 14px;
        border-radius: 8px;
        background: rgba(16, 28, 34, 0.96);
    }

    .landing-nav.is-scrolled .navbar-collapse {
        background: #ffffff;
        border: 1px solid var(--line);
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-copy {
        font-size: 16px;
    }

    .hero-panel {
        margin-top: 34px;
    }
}

@media (max-width: 575.98px) {
    .brand-title {
        font-size: 14px;
    }

    .brand-subtitle {
        display: none;
    }

    .hero-section {
        min-height: 88vh;
        background-position: center right;
    }

    .hero-inner {
        padding-top: 112px;
        padding-bottom: 52px;
    }

    .hero-title {
        font-size: 34px;
        line-height: 1.1;
    }

    .hero-actions,
    .landing-btn {
        width: 100%;
    }

    .section-pad {
        padding: 62px 0;
    }

    .section-title {
        font-size: 29px;
    }

    .trust-strip {
        margin-top: 0;
    }

    .trust-strip-inner,
    .closing-cta {
        padding: 22px;
    }
}
