.au {
    --primary: #168a40;
    --text: #0f172a;
    --muted: #475569;
    --surface: #fffdf9;
    --surface-strong: #ffffff;
    --border: rgba(15, 23, 42, 0.08);
    background: #f5f0eb;
    padding: clamp(4rem, 7vw, 5.5rem) 0;
}

.au__top {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 2rem;
    align-items: stretch;
}

.au__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 2rem 1.9rem;
    border-radius: 2rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 253, 249, 0.82));
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.au__badgeRow {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 1.1rem;
    padding: 0.8rem 0.95rem;
    border-radius: 1.35rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.74);
}

.au__muri {
    width: 126px;
    height: auto;
    flex: 0 0 auto;
    display: block;
}

.au__badgeText {
    min-width: 0;
}

.au__badgeTitle {
    margin: 0;
    color: var(--text);
    font-size: 0.96rem;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.au__badgeSub {
    margin-top: 0.18rem;
    color: rgba(15, 23, 42, 0.64);
    font-size: 0.84rem;
    line-height: 1.55;
}

.au__title {
    margin: 0 0 0.9rem;
    color: var(--text);
    font-size: clamp(2.05rem, 3.4vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    font-weight: 800;
    max-width: 13ch;
}

.au__desc {
    margin: 0;
    max-width: 60ch;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.82;
}

.au__statsWrap {
    margin-top: 1.2rem;
    width: 100%;
}

.au__stats {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 0;
}

.au__stat {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 148px;
    padding: 1.05rem 1rem 1rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.88);
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.au__stat::before {
    content: "";
    position: absolute;
    top: -1.75rem;
    right: -1.5rem;
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    transition: transform 0.22s ease, opacity 0.22s ease;
    opacity: 0.7;
}

.au__stat:hover {
    transform: translateY(-4px);
    border-color: rgba(22, 138, 64, 0.16);
    background: #ffffff;
}

.au__stat:hover::before {
    transform: scale(1.08);
    opacity: 1;
}

.au__statIcon {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
    font-size: 1.15rem;
    transition: transform 0.22s ease;
    position: relative;
    z-index: 1;
}

.au__statIcon.is-emerald {
    background: rgba(22, 138, 64, 0.12);
    color: #168a40;
}

.au__statIcon.is-sand {
    background: rgba(194, 124, 36, 0.12);
    color: #b76d1d;
}

.au__statIcon.is-sky {
    background: rgba(37, 99, 235, 0.12);
    color: #2563eb;
}

.au__statIcon.is-amber {
    background: rgba(217, 119, 6, 0.12);
    color: #d97706;
}

.au__statIcon.is-rose {
    background: rgba(225, 29, 72, 0.1);
    color: #e11d48;
}

.au__statIcon.is-forest {
    background: rgba(21, 128, 61, 0.12);
    color: #15803d;
}

.au__statNum {
    color: var(--text);
    font-size: 1.62rem;
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.04em;
    position: relative;
    z-index: 1;
    transition: transform 0.22s ease, color 0.22s ease;
}

.au__statLabel {
    margin-top: 0.45rem;
    color: rgba(15, 23, 42, 0.68);
    font-size: 0.84rem;
    line-height: 1.5;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.au__stat:hover .au__statIcon {
    transform: translateY(-2px) rotate(-6deg) scale(1.04);
}

.au__stat:hover .au__statNum {
    transform: translateY(-1px);
    color: var(--primary);
}

.au__video {
    position: sticky;
    top: 108px;
}

.au__videoBtn {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    background: transparent;
    border-radius: 2rem;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
}

.au__videoThumb {
    position: relative;
    display: block;
    min-height: 460px;
    height: 100%;
    border-radius: 2rem;
    overflow: hidden;
    isolation: isolate;
}

.au__videoThumb::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.5) 100%),
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), transparent 34%);
}

.au__videoImg {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.au__playOverlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    pointer-events: none;
}

.au__playCircle {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    transition: transform 0.24s ease, background-color 0.24s ease, color 0.24s ease;
}

.au__playCircle i {
    font-size: 2rem;
    line-height: 1;
    margin-left: 0.14rem;
}

.au__videoBtn:hover .au__videoImg {
    transform: scale(1.04);
}

.au__videoBtn:hover .au__playCircle {
    transform: scale(1.04);
    background: var(--primary);
    color: #ffffff;
}

.au__videoStamp {
    position: absolute;
    left: 1.2rem;
    bottom: 1.2rem;
    z-index: 3;
    display: inline-flex;
    flex-direction: column;
    gap: 0.15rem;
    max-width: min(72%, 260px);
    padding: 0.85rem 1rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.9);
}

.au__videoStamp strong {
    color: #0f172a;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.au__videoStamp span {
    color: #475569;
    font-size: 0.78rem;
    line-height: 1.5;
}

.au__bottom {
    margin-top: 4.5rem;
}

.au__hlHeader {
    max-width: 44rem;
    margin-bottom: 1.8rem;
}

.au__hlKicker {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(22, 138, 64, 0.09);
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.au__hlTitle {
    margin: 0.8rem 0 0;
    color: var(--text);
    font-size: clamp(1.85rem, 3vw, 2.45rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.au__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.au-bento-card {
    border-radius: 1.85rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.au-bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(22, 138, 64, 0.18);
}

.au-bento-card__content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.au-bento-card__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.95), rgba(255, 255, 255, 0.8));
}

.card--tracking {
    grid-column: span 2;
    flex-direction: row;
}

.card--tracking .au-bento-card__content {
    flex: 1;
    padding: 2.5rem 2.4rem;
}

.card--tracking .au-bento-card__media {
    flex: 0.95;
    padding: 2.2rem 2rem 0;
    align-items: flex-end;
    border-left: 1px solid rgba(15, 23, 42, 0.06);
}

.card--tracking .au-bento-card__img {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 18px 22px rgba(15, 23, 42, 0.12));
    transition: transform 0.3s ease;
}

.card--tracking:hover .au-bento-card__img {
    transform: translateY(-6px);
}

.card--izin-cloud .au-bento-card__media,
.card--oss-rba .au-bento-card__media {
    min-height: 220px;
    padding: 1.8rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.card--izin-cloud .au-bento-card__img,
.card--oss-rba .au-bento-card__img {
    width: 100%;
    max-width: 290px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.card--izin-cloud:hover .au-bento-card__img,
.card--oss-rba:hover .au-bento-card__img {
    transform: scale(1.03);
}

.card--ekraf {
    grid-column: span 2;
    flex-direction: row;
}

.card--ekraf .au-bento-card__content {
    flex: 1.12;
    padding: 2.35rem;
}

.card--ekraf .au-bento-card__media {
    flex: 0.88;
    border-left: 1px solid rgba(15, 23, 42, 0.06);
}

.card--ekraf .au-bento-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-expert {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 1rem;
    padding: 0.4rem 0.78rem;
    border-radius: 999px;
    background: rgba(22, 138, 64, 0.09);
    color: var(--primary);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.au-bento-card__title {
    margin: 0 0 0.75rem;
    color: var(--text);
    font-size: 1.42rem;
    line-height: 1.18;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.au-bento-card__desc {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.72;
    max-width: 48ch;
}

.au-bento-card__list {
    list-style: none;
    margin: 1.15rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.au-bento-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}

.au-bento-card__list i {
    color: var(--primary);
    font-size: 1rem;
    line-height: 1;
    margin-top: 0.24rem;
}

.au-bento-card__list span {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.btn-tracking {
    margin-top: 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    width: fit-content;
    padding: 0.85rem 1.15rem;
    border-radius: 999px;
    background: #0f172a;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    transition: transform 0.18s ease, background-color 0.18s ease, gap 0.18s ease;
}

.btn-tracking:hover {
    background: var(--primary);
    transform: translateY(-1px);
    gap: 0.8rem;
}

.au-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(2, 6, 23, 0.68);
    backdrop-filter: blur(6px);
}

.au-modal__panel {
    width: min(980px, 100%);
    border-radius: 1.5rem;
    background: #ffffff;
    overflow: hidden;
}

.au-modal__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.au-modal__title {
    color: var(--text);
    font-weight: 700;
}

.au-modal__close {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 0.9rem;
    background: #ffffff;
    color: rgba(15, 23, 42, 0.8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.au-modal__frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.au-modal__iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.au__actions {
    margin-top: 1.5rem;
}

.au__hero-cta-main {
    display: inline-flex;
    align-items: stretch;
    gap: 0;
    text-decoration: none;
    color: #ffffff;
    border-radius: 999px;
    transition: transform 0.2s ease;
    overflow: hidden;
    width: fit-content;
}

.au__hero-cta-main:hover {
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

.au__hero-cta-label,
.au__hero-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    border: 1px solid #168a40;
    background: #168a40;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.au__hero-cta-label {
    padding: 0 1.4rem;
    border-radius: 999px;
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.au__hero-cta-icon {
    width: 56px;
    border-radius: 999px;
    margin-left: -1px;
    font-size: 1.08rem;
    background: #168a40;
    border-color: #168a40;
}

.au__hero-cta-main:hover .au__hero-cta-label,
.au__hero-cta-main:hover .au__hero-cta-icon {
    background: #168a40;
    border-color: #168a40;
}

.au__hero-cta-main:hover .au__hero-cta-icon {
    transform: translateX(2px);
}

.au__hero-cta-icon i {
    display: inline-flex;
    font-size: 1.55rem;
    line-height: 1;
    transform: rotate(-42deg);
    transition: transform 0.2s ease;
}

.au__hero-cta-main:hover .au__hero-cta-icon i {
    transform: rotate(0deg);
}

@media (max-width: 1199.98px) {
    .au__title {
        max-width: 16ch;
    }

    .au__videoThumb,
    .au__videoImg {
        min-height: 420px;
    }
}

@media (max-width: 991.98px) {
    .au__top {
        grid-template-columns: 1fr;
    }

    .au__copy {
        padding: 1.6rem;
    }

    .au__video {
        position: static;
    }

    .au__videoThumb,
    .au__videoImg {
        min-height: 340px;
    }

    .card--tracking,
    .card--ekraf {
        grid-column: span 1;
        flex-direction: column;
    }

    .card--tracking .au-bento-card__media,
    .card--ekraf .au-bento-card__media {
        border-left: none;
        border-top: 1px solid rgba(15, 23, 42, 0.06);
    }

    .card--tracking .au-bento-card__content,
    .card--ekraf .au-bento-card__content {
        padding: 2rem;
    }

    .card--tracking .au-bento-card__media {
        padding: 1.8rem 1.5rem 0;
    }

    .card--ekraf .au-bento-card__media {
        min-height: 250px;
    }
}

@media (max-width: 767.98px) {
    .au {
        padding: 3.5rem 0;
    }

    .au__title {
        max-width: none;
        font-size: 2.2rem;
    }

    .au__grid {
        grid-template-columns: 1fr;
    }

    .au-bento-card__content {
        padding: 1.5rem;
    }

}

@media (max-width: 575.98px) {
    .au__badgeRow {
        width: 100%;
        align-items: flex-start;
        border-radius: 1.2rem;
    }

    .au__muri {
        width: 88px;
    }

    .au__copy {
        padding: 1.25rem;
        border-radius: 1.55rem;
    }

    .au__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .au__stat {
        min-height: 136px;
        padding: 0.95rem 0.9rem;
        border-radius: 1.2rem;
    }

    .au__statIcon {
        width: 2.55rem;
        height: 2.55rem;
        border-radius: 0.85rem;
        margin-bottom: 0.8rem;
        font-size: 1rem;
    }

    .au__statNum {
        font-size: 1.34rem;
    }

    .au__statLabel {
        font-size: 0.78rem;
    }

    .au__videoThumb,
    .au__videoImg {
        min-height: 250px;
        border-radius: 1.5rem;
    }

    .au__videoStamp {
        left: 0.9rem;
        right: 0.9rem;
        bottom: 0.9rem;
        max-width: none;
        padding: 0.75rem 0.85rem;
    }

    .au__playCircle {
        width: 4.6rem;
        height: 4.6rem;
    }

    .au__playCircle i {
        font-size: 1.7rem;
    }
}
