/*Untuk Halaman Home dan Products*/
/* ================= NAVBAR ================= */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    width: 55px;
}

/* Menu */
.nav-menu,
.nav-menu-collaborate {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: white;
    transition: 0.3s;
}

.nav-menu-collaborate a {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: rgba(82, 82, 82, 1);
    transition: 0.3s;
}

.nav-menu a:hover {
    opacity: 0.7;
}

/* Button */
.btn-primary,
.btn-primary-collaborate {
    background: #224b9a;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-family: "Nunito Sans", sans-serif;
}

.btn-primary-home {
    background: white;
    color: #224b9a;
    padding: 12px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    box-shadow: -4px 0px 44px rgba(34, 75, 154, 0.25);
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

/* ================= HAMBURGER ================= */
.nav-toggle,
.nav-toggle-collaborate {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    display: block;
    transition: 0.3s;
}

.nav-toggle-collaborate span {
    width: 25px;
    height: 3px;
    background: #224b9a;
    display: block;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .nav-menu,
    .nav-menu-collaborate {
        gap: 24px;
    }

    .btn-primary {
        padding: 10px 16px;
        font-size: 14px;
    }

    .btn-primary-home {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .nav-toggle,
    .nav-toggle-collaborate {
        display: flex;
    }

    .nav-right {
        display: none; /* hide button desktop */
    }

    .nav-menu {
        position: absolute;
        top: 70px; /* sesuaikan tinggi navbar */
        right: 20px; /* 🔥 pindah ke kanan */
        left: auto;

        width: 100px; /* 🔥 kecilin */
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.2);

        flex-direction: column;
        align-items: flex-start;
        gap: 12px;

        padding: 16px;

        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

        opacity: 0;
        transform: translateY(-10px) scale(0.95);
        pointer-events: none;

        transition: all 0.25s ease;
    }

    .nav-menu-collaborate {
        position: absolute;
        top: 70px; /* sesuaikan tinggi navbar */
        right: 20px; /* 🔥 pindah ke kanan */
        left: auto;

        width: 100px; /* 🔥 kecilin */
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.2);

        flex-direction: column;
        align-items: flex-start;
        gap: 12px;

        padding: 16px;

        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

        opacity: 0;
        transform: translateY(-10px) scale(0.95);
        pointer-events: none;

        transition: all 0.25s ease;
    }

    /* ACTIVE STATE */
    .nav-menu.active,
    .nav-menu-collaborate.active {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .nav-menu a {
        font-size: 16px;
    }

    .nav-menu-collaborate a {
        color: white; /* lebih solid */
    }

    .nav-mobile-btn {
        display: block;
    }

    .logo {
        width: 45px;
    }
}

.nav-mobile-btn {
    display: none;
}

/* ================= HERO ================= */
.hero {
    position: relative;
    width: 100%;
    min-height: 832px;
    padding-bottom: 20px;
    margin-bottom: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

/* CONTENT */
.hero-content {
    max-width: 863px; /* samakan dengan figma */
    margin: 0 auto;
    padding: 25px;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px; /* ini kunci */
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-title {
    width: 100%;
    margin: 0;

    font-family: "Anton SC", sans-serif;
    font-weight: 400;

    font-size: 122px;

    color: #062156;
    text-align: center;

    -webkit-text-stroke: 1px transparent;
    text-shadow: 0px 0px 52px rgba(255, 255, 255, 0.25);
}

.hero-desc {
    width: 100%;
    max-width: 585px;
}

.hero-desc p {
    margin: 0;
    width: 100%;
    font-weight: 500;
    font-family: "Nunito Sans", sans-serif;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.2px;
    color: rgba(230, 230, 230, 1);
    text-align: center;
}

.hero-btn-primary {
    width: 251px;
    height: 66px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 38px;

    background: #fff;
    color: #062156;

    font-family: "Nunito Sans", sans-serif;
    font-weight: 900;
    font-size: 16px;

    text-decoration: none;
}

.hero-widget-layer {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%); /* ini bikin layer selalu center */

    width: 1200px; /* samakan dengan max-width container */
    max-width: 100%;
    height: 100%;

    pointer-events: none;
    z-index: 1;
}

.hero-widget {
    position: absolute;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* BUTTON */
.hero-action {
    display: flex;
    gap: 32px;
    align-items: center;
}

.hero-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-family: "Nunito Sans", sans-serif;
    font-weight: 900;
    font-size: 16px;
    color: white;
    text-decoration: none;
}

/* FLOATING IMAGES */
.hero-img {
    position: absolute;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .hero {
        min-height: 740px;
        padding: 200px 10px 80px;
        margin-bottom: 80px;
    }

    .hero-content {
        max-width: 640px;
        gap: 40px;
        padding: 0;
    }

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

    .hero-desc {
        font-size: 16px;
        line-height: 22px;
        max-width: 480px;
    }

    .hero-action {
        flex-direction: column;
        gap: 20px;
    }

    .hero-btn-primary {
        width: 220px;
        height: 56px;
        font-size: 14px;
    }

    .hero-link {
        font-size: 14px;
    }

    /* WIDGET LAYER */
    .hero-widget-layer {
        width: 100%;
        height: 100%;
    }

    .hero-widget {
        transform: scale(0.7);
        transform-origin: top left;
        max-width: 100%;
    }

    .hero-widget:nth-child(n + 6) {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 20px 60px;
        min-height: 680px;
    }

    .hero-content {
        gap: 24px;
        padding: 10px;
        max-width: 100%;
    }

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

    .hero-desc p {
        font-size: 12px;
        max-width: 100%;
    }

    .hero-action {
        flex-direction: column;
        gap: 14px;
        width: 100%;
    }

    .hero-btn-primary {
        width: 100%;
        height: 56px;
    }

    .hero-widget {
        transform: scale(0.6);
        transform-origin: top left;
        max-width: 100%;
    }
}

/* ================= ABOUT ================= */
.about {
    background: #fff;
    z-index: 2;
    position: relative;
}

.about-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin: 0 auto;

    max-width: 1188px;
}

/* LEFT */
.about-content {
    flex: 1;
    max-width: 576px;

    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* LABEL (About + garis kecil) */
.about-label {
    display: flex;
    align-items: center;
    gap: 6px;
}

.about-dot {
    width: 8px;
    height: 13px;
    background: #224b9a;
}

.about-text {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -1.4px;
    color: #1e1e1e;
}

/* TITLE */
.about-title {
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-size: 78px;
    color: #1e1e1e;
    margin: 0;
}

/* DESCRIPTION */
.about-desc {
    color: #525252;
}

.about-desc p {
    margin: 0;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 500;
    font-size: 18px;
}

/* IMAGE */
.about-image {
    flex: 1;
    max-width: 586px;
}

.about-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 24px;
}

@media (max-width: 1024px) {
    .about-wrapper {
        gap: 32px;
    }

    .about-content {
        gap: 24px;

        max-width: 520px;
    }

    .about-title {
        font-size: 68px;
        line-height: 1.05;
    }

    .about-desc p {
        font-size: 16px;
        line-height: 26px;
    }

    .about-image {
        max-width: 520px;
    }

    .about-image img {
        height: 400px;
        border-radius: 22px;
    }
}

@media (max-width: 768px) {
    .about-wrapper {
        gap: 28px;

        align-items: flex-start;
    }

    .about-content {
        gap: 20px;

        max-width: 100%;
    }

    .about-label {
        gap: 5px;
    }

    .about-text {
        font-size: 16px;
        letter-spacing: -1px;
    }

    .about-title {
        font-size: 52px;
        line-height: 1.08;
    }

    .about-desc p {
        font-size: 15px;
        line-height: 24px;
    }

    /* tablet tetap side by side */
    .about-image {
        max-width: 45%;
    }

    .about-image img {
        height: 340px;
        border-radius: 20px;
    }
}

@media (max-width: 576px) {
    .about-wrapper {
        flex-direction: column;

        gap: 24px;

        padding-top: 10px;
    }

    .about-content {
        gap: 16px;
    }

    .about-label {
        gap: 5px;
    }

    .about-dot {
        width: 6px;
        height: 10px;
    }

    .about-text {
        font-size: 14px;
        letter-spacing: -0.5px;
    }

    .about-title {
        font-size: 36px;
        line-height: 1.12;
    }

    .about-desc p {
        font-size: 14px;
        line-height: 22px;
    }

    .about-image {
        width: 100%;
        max-width: 100%;
    }

    .about-image img {
        width: 100%;

        height: 260px;

        object-fit: cover;

        border-radius: 18px;
    }
}

/* ================= SERVICE ================= */
.service {
    padding: 100px 0;
}

.service-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.service-label {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}

.service-dot {
    width: 8px;
    height: 13px;
    background: #224b9a;
}

.service-label p {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -1.44px;
    color: #1e1e1e;
}

.service-title {
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-size: 80px;
    line-height: 72px;
    color: #1e1e1e;
    margin: 0;
}

.service-desc {
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    line-height: 27px;
    font-weight: 600;
    color: #525252;
}

/* GRID */
.service-list {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

/* CARD */
.service-card {
    position: relative;
    width: 100%;
    height: 428px;
    border-radius: 24px;
    overflow: hidden;
    background: #224b9a;
    display: flex;
    align-items: flex-end;
}

/* BG */
.service-bg {
    position: absolute;
    inset: 0;
}

.service-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */
.service-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(
        180deg,
        rgba(34, 75, 154, 0) 0%,
        rgba(34, 75, 154, 0.9) 80%,
        rgba(34, 75, 154, 1) 100%
    );
}

/* CONTENT */
.service-content {
    position: absolute;
    bottom: 46px;
    left: 50%;
    transform: translateX(-50%);
    width: 236px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;

    z-index: 2;
    color: white;
}

.service-top {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-icon-wrapper {
    width: 28px;
    height: 20px;
}

.service-icon {
    width: 100%;
}

.service-item-title {
    font-family: "Nunito Sans", sans-serif;
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    height: 30px;
}

.service-item-desc {
    font-family: "Nunito Sans", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    height: 64px;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .service {
        padding: 80px 0;
    }

    .service-header {
        gap: 24px;
        margin-bottom: 44px;
    }

    .service-title {
        font-size: 68px;
        line-height: 1.05;
    }

    .service-desc {
        font-size: 15px;
        line-height: 25px;
    }

    .service-list {
        flex-wrap: wrap;
        justify-content: center;

        gap: 18px;
    }

    .service-card {
        width: calc(50% - 9px);
        height: 390px;

        border-radius: 22px;
    }

    .service-content {
        width: calc(100% - 48px);

        left: 24px;
        right: 24px;
        bottom: 28px;

        transform: none;
    }

    .service-item-title {
        font-size: 22px;
        line-height: 28px;
    }

    .service-item-desc {
        font-size: 12px;
        line-height: 17px;

        height: auto;

        -webkit-line-clamp: 5;
    }
}

@media (max-width: 768px) {
    .service {
        padding: 70px 0;
    }

    .service-header {
        gap: 18px;
        margin-bottom: 36px;
    }

    .service-label p {
        font-size: 16px;
        letter-spacing: -1px;
    }

    .service-title {
        font-size: 52px;
        line-height: 1.08;
    }

    .service-desc {
        font-size: 15px;
        line-height: 24px;
    }

    /* tablet tetap 2 kolom */
    .service-list {
        flex-wrap: wrap;

        gap: 16px;
    }

    .service-card {
        width: calc(50% - 8px);
        height: 340px;

        border-radius: 20px;
    }

    .service-content {
        width: calc(100% - 40px);

        left: 20px;
        right: 20px;
        bottom: 22px;

        gap: 10px;
    }

    .service-top {
        gap: 10px;
    }

    .service-item-title {
        font-size: 20px;
        line-height: 26px;

        height: auto;
    }

    .service-item-desc {
        font-size: 12px;
        line-height: 18px;

        -webkit-line-clamp: 4;
    }
}

@media (max-width: 576px) {
    .service {
        padding: 56px 0;
    }

    .service-header {
        gap: 14px;
        margin-bottom: 28px;
    }

    .service-label {
        gap: 5px;
        margin-bottom: 12px;
    }

    .service-dot {
        width: 6px;
        height: 10px;
    }

    .service-label p {
        font-size: 14px;
        letter-spacing: -0.5px;
    }

    .service-title {
        font-size: 36px;
        line-height: 1.12;
    }

    .service-desc {
        font-size: 14px;
        line-height: 22px;
    }

    /* hp baru stack */
    .service-list {
        flex-direction: column;

        gap: 16px;
    }

    .service-card {
        width: 100%;
        max-width: 100%;

        height: 300px;

        border-radius: 18px;
    }

    .service-content {
        width: calc(100% - 36px);

        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .service-item-title {
        font-size: 18px;
        line-height: 24px;
    }

    .service-item-desc {
        font-size: 12px;
        line-height: 17px;

        -webkit-line-clamp: 3;
    }
}

/* ================= HOME PRODUCTS ================= */
.home-products {
    padding: 0 0 100px 0;
    background: #fff;
}

/* HEADER */
.home-products-header {
    margin-bottom: 60px;

    display: flex;
    flex-direction: column;
    gap: 28px;
}

.home-products-label {
    display: flex;
    align-items: center;
    gap: 6px;
}

.home-products-label .dot {
    width: 8px;
    height: 13px;
    background: #224b9a;
}

.home-products-label p {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -1.4px;
}

.home-products-header h2 {
    font-family: "Anton SC", sans-serif;
    font-size: 80px;
    font-weight: 400;
    line-height: 72px;
    margin: 0;
}

/* LIST */
.home-products-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* CARD (REUSE STYLE) */
.home-product-card {
    height: 357px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;

    background-size: cover;
    background-position: center;
}

.home-product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0) 100%
    );
}

/* CONTENT */
.home-product-card .card-content {
    position: relative;
    z-index: 2;

    height: 100%;
    width: 90%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 40px;
    color: white;
}

/* TEXT */
.card-text-home {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
}

.card-text-home h3 {
    font-family: "Nunito Sans", sans-serif;
    font-size: 28px;
    font-weight: 900;
    line-height: 32px;
    letter-spacing: 0.72px;
    margin: 0;
}

.card-text-home p {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;

    display: -webkit-box;
    -webkit-line-clamp: 4; /* jumlah baris yang ditampilkan */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* BUTTON */
.btn-detail-home {
    width: fit-content;
    padding: 14px 24px;

    background: #fefefe;
    color: rgba(30, 30, 30, 1);

    border-radius: 8px;
    text-decoration: none;
    font-family: "Nunito Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;

    transition: 0.3s;
}

.btn-detail-home:hover {
    transform: translateY(-4px);
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 28px;
    background: #224b9a;
    color: white;

    border-radius: 6px;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;

    transition: 0.3s;
}

.btn-view-all:hover {
    transform: translateY(-2px);
}

/* ACTION */
.home-products-action {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

@media (max-width: 1024px) {
    .home-products {
        padding: 0 0 80px 0;
    }

    .home-products-header {
        gap: 22px;
        margin-bottom: 42px;
    }

    .home-products-header h2 {
        font-size: 68px;
        line-height: 1.05;
    }

    .home-products-list {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .home-product-card {
        height: 320px;
        border-radius: 22px;
    }

    .home-product-card .card-content {
        width: 85%;
        padding: 30px;
    }

    .card-text-home {
        gap: 22px;
    }

    .card-text-home h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .card-text-home p {
        font-size: 15px;
        line-height: 23px;

        -webkit-line-clamp: 3;
    }

    .btn-detail-home {
        font-size: 16px;
        padding: 12px 20px;
    }

    .btn-view-all {
        font-size: 16px;
        padding: 16px 24px;
    }

    .home-products-action {
        margin-top: 42px;
    }
}

@media (max-width: 768px) {
    .home-products {
        padding: 0 0 70px 0;
    }

    .home-products-header {
        gap: 18px;
        margin-bottom: 32px;
    }

    .home-products-label p {
        font-size: 16px;
        letter-spacing: -1px;
    }

    .home-products-header h2 {
        font-size: 52px;
        line-height: 1.08;
    }

    /* tablet masih 2 kolom */
    .home-products-list {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .home-product-card {
        height: 280px;
        border-radius: 20px;
    }

    .home-product-card::before {
        background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.45) 60%,
            rgba(0, 0, 0, 0.1) 100%
        );
    }

    .home-product-card .card-content {
        width: 100%;
        padding: 24px;
    }

    .card-text-home {
        gap: 16px;
    }

    .card-text-home h3 {
        font-size: 20px;
        line-height: 26px;

        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;

        overflow: hidden;
    }

    .card-text-home p {
        font-size: 14px;
        line-height: 22px;

        -webkit-line-clamp: 3;
    }

    .btn-detail-home {
        font-size: 14px;
        padding: 10px 16px;
    }

    .btn-view-all {
        font-size: 15px;
        padding: 14px 22px;
    }

    .home-products-action {
        margin-top: 36px;
    }
}

@media (max-width: 576px) {
    .home-products {
        padding: 0 0 56px 0;
    }

    .home-products-header {
        gap: 14px;
        margin-bottom: 24px;
    }

    .home-products-label {
        gap: 5px;
    }

    .home-products-label .dot {
        width: 6px;
        height: 10px;
    }

    .home-products-label p {
        font-size: 14px;
        letter-spacing: -0.5px;
    }

    .home-products-header h2 {
        font-size: 36px;
        line-height: 1.12;
    }

    /* hp baru stack */
    .home-products-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-product-card {
        height: 250px;
        border-radius: 18px;
    }

    .home-product-card::before {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.82) 100%
        );
    }

    .home-product-card .card-content {
        width: 100%;

        padding: 20px;
    }

    .card-text-home {
        gap: 12px;
    }

    .card-text-home h3 {
        font-size: 18px;
        line-height: 24px;
    }

    .card-text-home p {
        font-size: 14px;
        line-height: 22px;

        -webkit-line-clamp: 3;
    }

    .btn-detail-home {
        font-size: 14px;
        padding: 10px 15px;
    }

    .btn-view-all {
        width: 100%;
        max-width: 240px;

        font-size: 14px;
        padding: 13px 18px;
    }

    .home-products-action {
        margin-top: 30px;
    }
}

/* ================= HOME PRODUCTS BANNER ================= */
.home-products-banner {
    position: relative;
    width: 100%;
    height: 400px;

    margin-bottom: 24px;

    border-radius: 24px;
    overflow: hidden;
}

/* IMAGE */
.home-products-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* DARK OVERLAY */
.home-products-banner-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.25) 45%,
        rgba(0, 0, 0, 0) 100%
    );

    z-index: 1;
}

/* BUTTON */
.btn-detail-banner {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);

    z-index: 2;

    padding: 14px 28px;

    background: #ffffff;
    color: #1e1e1e;

    border-radius: 10px;

    text-decoration: none;
    font-family: "Nunito Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.btn-detail-banner:hover {
    transform: translateX(-50%) translateY(-3px);
}

@media (max-width: 1024px) {
    .home-products-banner {
        height: 320px;

        margin-bottom: 20px;

        border-radius: 22px;
    }

    .btn-detail-banner {
        bottom: 24px;

        padding: 12px 22px;

        font-size: 16px;
        border-radius: 8px;
    }
}

@media (max-width: 768px) {
    .home-products-banner {
        height: 280px;

        margin-bottom: 18px;

        border-radius: 20px;
    }

    .home-products-banner-overlay {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.35) 55%,
            rgba(0, 0, 0, 0.05) 100%
        );
    }

    .btn-detail-banner {
        bottom: 20px;

        padding: 11px 18px;

        font-size: 15px;
        border-radius: 8px;
    }
}

@media (max-width: 576px) {
    .home-products-banner {
        height: 240px;

        margin-bottom: 16px;

        border-radius: 18px;
    }

    .home-products-banner-overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.82) 100%
        );
    }

    .btn-detail-banner {
        bottom: 16px;

        width: calc(100% - 40px);
        max-width: 220px;

        text-align: center;

        padding: 10px 16px;

        font-size: 14px;
        border-radius: 8px;
    }
}

/* ================= ACHIEVEMENT ================= */
.achievement {
    position: relative;
    padding: 120px 0;
    margin: 0 auto;
    color: white;
    overflow: hidden;
    width: 100%;
}

/* BACKGROUND IMAGE */
.achievement::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/bg-achievement.png") top/cover no-repeat;
    opacity: 0.6;
    filter: blur(1.5px);
    transform: scale(1);
}

/* BLUE OVERLAY */
.achievement::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(35, 76, 155, 0.85); /* <-- ini kunci */
}

.achievement .container {
    position: relative;
    z-index: 2;
}

.achievement::before,
.achievement::after {
    z-index: 0;
}

/* HEADER */
.achievement-header {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;

    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
}

.achievement-label {
    display: flex;
    align-items: center;
    gap: 6px;
}

.achievement-dot {
    width: 8px;
    height: 13px;
    background: white;
}

.achievement-label p {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -1.4px;
}

.achievement-title {
    font-family: "Anton SC", sans-serif;
    font-size: 80px;
    line-height: 72px;
    margin: 0;
}

.achievement-desc {
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    line-height: 27px;
    font-weight: 600;
    line-height: 27px;
    color: rgba(230, 230, 230, 1);
}

/* GRID */
.achievement-grid {
    display: grid;
    grid-template-columns: 570px 1fr;
    gap: 24px;
    max-width: 1088px;
    margin: 0 auto;
}

.achievement-right {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
}

/* CARD */
.achievement-card-1 {
    background: linear-gradient(
        95deg,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(188, 210, 252, 0.85) 100%
    );
    border-radius: 24px;
    padding: 32px;
    color: #224b9a;
    max-width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.achievement-card-2 {
    background: linear-gradient(
        268deg,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(188, 210, 252, 0.85) 100%
    );
    border-radius: 24px;
    padding: 32px;
    color: #224b9a;
    max-width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* BIG CARD */
.achievement-card-large {
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 350px;
    gap: 20px;
}

.achievement-number {
    font-family: "Anton SC", sans-serif;
    font-size: 130px;
    font-weight: 400;
    line-height: 124px;
}

.achievement-text {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 900;
    font-size: 32px;
    line-height: 32px;
}

/* SMALL CARD */
.achievement-card-2 h4 {
    font-family: "Nunito Sans", sans-serif;
    font-size: 24px;
    font-weight: 900;
    line-height: 32px;
}

.achievement-card-2 p {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 18px;
    color: rgba(34, 75, 154, 1);
}

@media (max-width: 1024px) {
    .achievement-header {
        max-width: 640px;

        gap: 24px;
        margin-bottom: 44px;
    }

    .achievement-title {
        font-size: 68px;
        line-height: 1.05;
    }

    .achievement-desc {
        font-size: 15px;
        line-height: 26px;
    }

    .achievement-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .achievement-right {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: unset;

        gap: 20px;
    }

    .achievement-card-1,
    .achievement-card-2 {
        padding: 28px;
        border-radius: 22px;
    }

    .achievement-card-large {
        min-height: 300px;
        gap: 16px;
    }

    .achievement-number {
        font-size: 100px;
        line-height: 1;
    }

    .achievement-text {
        font-size: 28px;
        line-height: 1.1;
    }

    .achievement-card-2 h4 {
        font-size: 22px;
        line-height: 30px;
    }
}

@media (max-width: 768px) {
    .achievement-header {
        gap: 18px;
        margin-bottom: 38px;
    }

    .achievement-label p {
        font-size: 16px;
        letter-spacing: -1px;
    }

    .achievement-title {
        font-size: 52px;
        line-height: 1.08;
    }

    .achievement-desc {
        font-size: 15px;
        line-height: 24px;
    }

    .achievement-grid {
        gap: 18px;
    }

    /* tetap 2 kolom dulu di tablet */
    .achievement-right {
        grid-template-columns: 1fr 1fr;

        gap: 18px;
    }

    .achievement-card-1,
    .achievement-card-2 {
        padding: 22px;
        border-radius: 20px;
        gap: 15px;
    }

    .achievement-card-large {
        min-height: 240px;
        gap: 12px;
    }

    .achievement-number {
        font-size: 76px;
        line-height: 1;
    }

    .achievement-text {
        font-size: 22px;
        line-height: 1.15;
    }

    .achievement-card-2 h4 {
        font-size: 18px;
        line-height: 24px;
    }

    .achievement-card-2 p {
        font-size: 12px;
        line-height: 18px;
    }
}

@media (max-width: 576px) {
    .achievement::before {
        filter: blur(1px);
    }

    .achievement-header {
        gap: 14px;
        margin-bottom: 30px;
    }

    .achievement-label {
        gap: 5px;
    }

    .achievement-dot {
        width: 6px;
        height: 10px;
    }

    .achievement-label p {
        font-size: 14px;
        letter-spacing: -0.5px;
    }

    .achievement-title {
        font-size: 36px;
        line-height: 1.12;
    }

    .achievement-desc {
        font-size: 14px;
        line-height: 22px;
    }

    .achievement-grid {
        gap: 14px;
    }

    /* hp baru full stack */
    .achievement-right {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .achievement-card-1,
    .achievement-card-2 {
        padding: 18px;
        border-radius: 18px;
        gap: 10px;
    }

    .achievement-card-large {
        min-height: 200px;
        gap: 10px;
    }

    .achievement-number {
        font-size: 60px;
        line-height: 1;
    }

    .achievement-text {
        font-size: 18px;
        line-height: 1.2;
    }

    .achievement-card-2 h4 {
        font-size: 16px;
        line-height: 22px;
    }

    .achievement-card-2 p {
        font-size: 11px;
        line-height: 17px;
    }
}

/* ================= CLIENTS ================= */
.clients {
    padding: 120px 0;
    background: #fff;
    text-align: center;
}

/* HEADER */
.clients-header {
    max-width: 720px;
    margin: 0 auto 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.clients-label {
    display: flex;
    align-items: center;
    gap: 6px;
}

.clients-dot {
    width: 8px;
    height: 13px;
    background: #224b9a;
}

.clients-label p {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -1.4px;
    color: #1e1e1e;
}

.clients-title {
    font-family: "Anton SC", sans-serif;
    font-size: 80px;
    line-height: 72px;
    margin: 0;
    color: #1e1e1e;
}

/* DESC */
.clients-desc {
    font-family: "Nunito Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #525252;
    margin-bottom: 60px;
}

/* LOGO GRID */
.clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 5px;
}

/* ITEM */
.client-item {
    width: 120px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.client-item img {
    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
    transition: 0.3s;
}

/* HOVER EFFECT */
.client-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .clients-header {
        max-width: 640px;
        gap: 18px;

        margin-bottom: 18px;
    }

    .clients-title {
        font-size: 68px;
        line-height: 1.05;
    }

    .clients-desc {
        font-size: 17px;
        margin-bottom: 50px;
    }

    .clients-logos {
        gap: 18px 10px;
    }

    .client-item {
        width: 105px;
        height: 45px;
    }

    .client-item img {
        max-height: 30px;
    }
}

@media (max-width: 768px) {
    .clients {
        padding: 80px 0 0 0;
    }

    .clients-header {
        max-width: 560px;
        gap: 16px;

        margin-bottom: 16px;
    }

    .clients-label p {
        font-size: 16px;
        letter-spacing: -1px;
    }

    .clients-title {
        font-size: 52px;
        line-height: 1.08;
    }

    .clients-desc {
        font-size: 15px;
        line-height: 24px;

        margin-bottom: 42px;
    }

    .clients-logos {
        gap: 14px 10px;
    }

    /* tetap banyak tapi lebih rapi */
    .clients-logos > *:nth-child(n + 19) {
        display: none;
    }

    .client-item {
        width: 90px;
        height: 42px;
    }

    .client-item img {
        max-height: 26px;
    }
}

@media (max-width: 576px) {
    .clients {
        padding: 60px 0 0 0;
    }

    .clients-header {
        gap: 14px;

        margin-bottom: 14px;
    }

    .clients-label {
        gap: 5px;
    }

    .clients-dot {
        width: 6px;
        height: 10px;
    }

    .clients-label p {
        font-size: 14px;
        letter-spacing: -0.5px;
    }

    .clients-title {
        font-size: 36px;
        line-height: 1.12;
    }

    .clients-desc {
        font-size: 14px;
        line-height: 22px;

        margin-bottom: 34px;
    }

    .clients-logos {
        gap: 10px 6px;
    }

    .clients-logos > *:nth-child(n + 15) {
        display: none;
    }

    .client-item {
        width: 78px;
        height: 36px;
    }

    .client-item img {
        max-height: 22px;
    }
}

/* ================= COLLABORATE ================= */
.collaborate {
    padding: 0 0 100px 0;
}

/* BOX */
.collaborate-box {
    max-width: 1188px;
    margin: 0 auto;
    padding: 60px 24px;

    border-radius: 24px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;

    background: linear-gradient(rgba(30, 30, 30, 0.72), rgba(30, 30, 30, 0.72)),
        url("../img/bg-collaborate.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;
}

/* LABEL */
.collaborate-label {
    display: flex;
    align-items: center;
    gap: 6px;
}

.collaborate-dot {
    width: 8px;
    height: 13px;
    background: #224b9a;
}

.collaborate-label p {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -1.4px;
}

/* CONTENT */
.collaborate-content {
    max-width: 958px;
    text-align: center;
    align-items: center;

    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* TITLE */
.collaborate-title {
    font-family: "Anton SC", sans-serif;
    font-size: 80px;
    line-height: 72px;
    margin: 0;
}

/* DESC */
.collaborate-desc {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
}

/* BUTTON */
.collaborate-btn {
    width: fit-content;
    align-items: center;
    justify-content: center;

    padding: 20px 24px;
    background: #224b9a;
    color: white;

    border-radius: 6px;

    font-family: "Nunito Sans", sans-serif;
    font-size: 24px;
    font-weight: 500;

    transition: 0.3s;
}

.collaborate-btn:hover {
    background: #1b4084;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .collaborate-box {
        padding: 50px 32px;
        border-radius: 22px;
    }

    .collaborate-content {
        gap: 36px;
        max-width: 820px;
    }

    .collaborate-title {
        font-size: 68px;
        line-height: 1.05;
    }

    .collaborate-desc {
        font-size: 18px;
        line-height: 28px;
    }

    .collaborate-btn {
        font-size: 20px;
        padding: 16px 22px;
    }
}

@media (max-width: 768px) {
    .collaborate {
        padding: 80px 0;
    }

    .collaborate-box {
        padding: 42px 28px;
        border-radius: 20px;
    }

    .collaborate-content {
        gap: 28px;
        max-width: 100%;
    }

    .collaborate-label p {
        font-size: 16px;
    }

    .collaborate-title {
        font-size: 52px;
        line-height: 1.08;
    }

    .collaborate-desc {
        font-size: 16px;
        line-height: 26px;
    }

    .collaborate-btn {
        font-size: 17px;
        padding: 14px 20px;
    }
}

@media (max-width: 576px) {
    .collaborate {
        padding: 60px 0;
    }

    .collaborate-box {
        padding: 34px 20px;
        border-radius: 18px;

        gap: 18px;
    }

    .collaborate-content {
        gap: 22px;
    }

    .collaborate-label {
        gap: 5px;
    }

    .collaborate-label p {
        font-size: 14px;
        letter-spacing: -0.5px;
    }

    .collaborate-dot {
        width: 6px;
        height: 10px;
    }

    .collaborate-title {
        font-size: 36px;
        line-height: 1.12;
    }

    .collaborate-desc {
        font-size: 14px;
        line-height: 24px;
    }

    .collaborate-btn {
        width: 100%;
        max-width: 220px;

        font-size: 15px;
        padding: 13px 18px;
    }
}

/* ================= PRODUCT HERO SLIDER ================= */
.hero-products {
    position: relative;
    width: 100%;
    height: 832px;
    overflow: hidden;
}

.hero-products .swiper {
    width: 100%;
    margin: 0 auto;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

/* TEXT */
.hero-content-left {
    position: relative;
    left: 90px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;

    max-width: 600px;
}

.hero-content-left h1 {
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-size: 130px;
    line-height: 124px;
    color: white;
    margin: 0;
}

/* ===== CUSTOM ARROW ===== */
.custom-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;

    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
}

.arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
}

/* hover */
.arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* PANAH SHAPE */
.arrow::before {
    content: "";
    width: 15px;
    height: 15px;
    border-top: 2px solid white;
    border-right: 2px solid white;
}

/* arah */
.arrow-next::before {
    transform: rotate(45deg);
}

.arrow-prev::before {
    transform: rotate(-135deg);
}

@media (max-width: 1024px) {
    .hero-products {
        height: 680px;
    }

    .hero-content-left h1 {
        font-size: 88px;
        line-height: 0.95;
    }

    .custom-nav {
        padding: 0 20px;
        box-sizing: border-box;
    }

    .arrow {
        width: 42px;
        height: 42px;
    }

    .arrow::before {
        width: 13px;
        height: 13px;
    }
}

@media (max-width: 768px) {
    .hero-products {
        height: 560px;
    }

    .swiper-slide {
        background-position: center;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.5);
    }

    .hero-content-left {
        left: 60px;
        top: 50%;
        transform: translateY(-50%);
        max-width: 400px;
    }

    .hero-content-left h1 {
        font-size: 58px;
        line-height: 1;
    }

    .custom-nav {
        padding: 0 14px;
        box-sizing: border-box;
    }

    .arrow {
        width: 38px;
        height: 38px;
    }

    .arrow::before {
        width: 11px;
        height: 11px;
    }
}

@media (max-width: 576px) {
    .hero-products {
        height: 480px;
    }

    .swiper-slide {
        align-items: center;
        background-position: center;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.58);
    }

    .hero-content-left {
        left: 50px;
        top: 50%;
        transform: translateY(-50%);
        max-width: 200px;
    }

    .hero-content-left h1 {
        font-size: 40px;
        line-height: 1.05;

        word-break: break-word;
    }

    .custom-nav {
        padding: 0 10px;
    }

    .arrow {
        width: 34px;
        height: 34px;
    }

    .arrow::before {
        width: 10px;
        height: 10px;
    }
}

/* ================= PRODUCTS ================= */
.products {
    padding: 70px 0;
    background: #fff;
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 60px;
}

/* CARD */
.card-game-list {
    width: 100%;
    height: 357px;
    border-radius: 24px;
    overflow: hidden;

    background-size: cover;
    background-position: center;

    position: relative;
}

/* overlay biar teks kebaca */
.card-game-list::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0) 100%
    );
}

/* CONTENT */
.card-content {
    position: relative;
    z-index: 2;

    width: 70%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 54px 46px;
    color: white;
}

/* TEXT */
.card-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card-text h2 {
    font-family: "Nunito Sans", sans-serif;
    font-size: 32px;
    font-weight: 900;
    line-height: 32px;
    letter-spacing: 0.64px;
    margin: 0;
}

.card-text p {
    font-family: "Nunito Sans", sans-serif;

    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
}

/* BUTTON */
.btn-detail {
    width: fit-content;
    padding: 14px 24px;

    background: #ffeeff;
    color: rgba(30, 30, 30, 1);

    border-radius: 8px;
    text-decoration: none;
    font-family: "Nunito Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;

    transition: 0.3s;
}

.btn-detail:hover {
    transform: translateY(-3px);
}

/* PAGINATION */
.pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination li {
    list-style: none;
}

.pagination a,
.pagination span {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: "Nunito Sans", sans-serif;
}

.pagination .active span {
    background: #224b9a;
    color: white;
}

.pagination .disabled span {
    opacity: 0.3;
}

@media (max-width: 1024px) {
    .products {
        padding: 60px 0;
    }

    .products-list {
        gap: 20px;
        margin-bottom: 50px;
    }

    .card-game-list {
        height: 320px;
    }

    .card-content {
        width: 75%;
        padding: 40px 32px;
    }

    .card-text {
        gap: 16px;
    }

    .card-text h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .card-text p {
        font-size: 16px;
        line-height: 24px;
    }

    .btn-detail {
        font-size: 16px;
        padding: 12px 22px;
    }
}

@media (max-width: 768px) {
    .products {
        padding: 50px 0;
    }

    .products-list {
        gap: 18px;
        margin-bottom: 40px;
    }

    .card-game-list {
        height: 280px;
        border-radius: 20px;

        background-position: center;
    }

    .card-game-list::before {
        background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.45) 60%,
            rgba(0, 0, 0, 0.1) 100%
        );
    }

    .card-content {
        width: 85%;
        height: 100%;

        padding: 28px 24px;
        box-sizing: border-box;
    }

    .card-text {
        gap: 14px;
    }

    .card-text h2 {
        font-size: 24px;
        line-height: 1.2;

        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;

        overflow: hidden;
    }

    .card-text p {
        font-size: 15px;
        line-height: 24px;

        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;

        overflow: hidden;
    }

    .btn-detail {
        width: fit-content;

        font-size: 15px;
        padding: 11px 18px;
    }

    .pagination ul {
        gap: 6px;
    }

    .pagination a,
    .pagination span {
        width: 34px;
        height: 34px;

        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .products {
        padding: 42px 0;
    }

    .products-list {
        gap: 16px;
        margin-bottom: 36px;
    }

    .card-game-list {
        height: 240px;
        border-radius: 18px;

        background-position: center;
    }

    /* overlay tetap horizontal seperti desktop */
    .card-game-list::before {
        background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.45) 65%,
            rgba(0, 0, 0, 0.08) 100%
        );
    }

    .card-content {
        width: 92%;
        height: 100%;

        display: flex;
        flex-direction: column;
        justify-content: space-between;

        padding: 20px;

        box-sizing: border-box;
    }

    .card-text {
        gap: 10px;
    }

    .card-text h2 {
        font-size: 20px;
        line-height: 1.2;

        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;

        overflow: hidden;
    }

    .card-text p {
        font-size: 14px;
        line-height: 22px;

        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;

        overflow: hidden;
    }

    .btn-detail {
        width: fit-content;

        font-size: 14px;
        padding: 10px 16px;
    }

    .pagination ul {
        gap: 5px;
    }

    .pagination a,
    .pagination span {
        width: 32px;
        height: 32px;

        font-size: 13px;
    }
}

/* ================= PRODUCTS BANNER ================= */
.products-banner {
    position: relative;
    width: 100%;
    height: 400px;

    margin-bottom: 24px;

    border-radius: 24px;
    overflow: hidden;
}

.products-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.products-banner-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.25) 45%,
        rgba(0, 0, 0, 0) 100%
    );

    z-index: 1;
}

@media (max-width: 1024px) {
    .products-banner {
        height: 340px;
        margin-bottom: 20px;
        border-radius: 22px;
    }
}

@media (max-width: 768px) {
    .products-banner {
        height: 280px;
        margin-bottom: 18px;
        border-radius: 20px;
    }

    .products-banner-overlay {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.05) 100%
        );
    }
}

@media (max-width: 576px) {
    .products-banner {
        height: 220px;
        margin-bottom: 16px;
        border-radius: 18px;
    }

    .products-banner-overlay {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.4) 55%,
            rgba(0, 0, 0, 0.08) 100%
        );
    }
}

/* ================= DETAIL PRODUCT ================= */

.product-hero {
    width: 100%;
    margin: 0 auto;

    min-height: 600px;

    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
}

.product-detail {
    padding: 120px 0;
}

.product-detail .container {
    padding-left: 0;
    padding-right: 32px;
}

.product-detail-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.product-media {
    position: relative;
    width: 50%;
    max-width: 620px;
}

/* iphone frame */
.phone-frame {
    width: 100%;
    display: block;
}

/* screenshot masuk ke dalam frame */
.phone-screen {
    position: absolute;

    top: 5%;

    width: 96%;
    height: 90%;

    object-fit: cover;
    object-position: right center; /* fokus ke kanan */

    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;

    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.product-info {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* title */
.product-title {
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-size: 34px;
    color: #1e1e1e;
}

/* description */
.product-description {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #333;
}

/* button */
.product-download img {
    width: 244px;
}

@media (max-width: 1024px) {
    .product-detail {
        padding: 90px 0;
    }

    .product-detail .container {
        padding-left: 0;
        padding-right: 24px;
    }

    .product-detail-wrapper {
        gap: 40px;
    }

    /* IMAGE */
    .product-media {
        width: 48%;
        max-width: 500px;

        /* kiri tetap nempel */
        padding-left: 0;

        /* kanan ada ruang */
        padding-right: 10px;
    }

    /* TEXT */
    .product-info {
        width: 52%;

        /* ada jarak dari gambar */
        padding-left: 10px;

        /* padding kanan */
        padding-right: 10px;
    }

    .product-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .product-description {
        font-size: 15px;
        line-height: 25px;
    }

    .product-download img {
        width: 210px;
    }

    .phone-screen {
        width: 92%;
        border-top-right-radius: 38px;
        border-bottom-right-radius: 38px;
    }
}

@media (max-width: 768px) {
    .product-hero {
        min-height: 380px;
        background-position: center;
    }

    .product-detail {
        padding: 80px 0;
    }

    .product-detail .container {
        padding-left: 0;
        padding-right: 20px;
    }

    .product-detail-wrapper {
        gap: 30px;

        /* tetap kanan kiri */
        flex-direction: row;
        align-items: center;
    }

    /* IMAGE */
    .product-media {
        width: 45%;
        max-width: 320px;

        /* kiri nempel */
        padding-left: 0;

        /* kanan ada ruang */
        padding-right: 10px;

        flex-shrink: 0;
    }

    /* TEXT */
    .product-info {
        width: 55%;

        /* kiri kanan nyaman */
        padding-left: 10px;
        padding-right: 10px;

        gap: 20px;
    }

    .product-title {
        font-size: 24px;
        line-height: 1.2;
    }

    .product-description {
        font-size: 14px;
        line-height: 24px;
    }

    .product-download img {
        width: 180px;
    }

    .phone-screen {
        border-top-right-radius: 26px;
        border-bottom-right-radius: 26px;
    }
}

@media (max-width: 576px) {
    .product-hero {
        min-height: 280px;
    }

    .product-detail {
        padding: 56px 0;
    }

    .product-detail .container {
        padding-left: 0;
        padding-right: 16px;
    }

    .product-detail-wrapper {
        /* hp baru stack */
        flex-direction: column;

        align-items: flex-start;

        gap: 40px;
    }

    /* IMAGE */
    .product-media {
        width: 82%;
        max-width: 300px;

        /* kiri nempel */
        margin-left: 0;

        /* kanan ada ruang */
        margin-right: auto;

        padding-left: 0;
        padding-right: 10px;
    }

    /* TEXT */
    .product-info {
        width: 100%;

        /* teks punya padding kanan kiri */
        padding-left: 20px;
        padding-right: 20px;

        gap: 20px;
    }

    .product-title {
        font-size: 22px;
        line-height: 1.2;
    }

    .product-description {
        font-size: 14px;
        line-height: 24px;
    }

    .product-download img {
        width: 170px;
    }

    .phone-screen {
        border-top-right-radius: 22px;
        border-bottom-right-radius: 22px;
    }
}

/* ================= FOOTER ================= */
.footer {
    background: linear-gradient(
        var(--angle, 135deg),
        var(--color1),
        var(--color2)
    );
    color: white;
    padding: 60px 0 30px;
}

/* TOP */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-items: flex-start;
    padding-bottom: 30px;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.6);
    flex-wrap: wrap;
}

.footer-title {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-social {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.icon-box {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-badge {
    height: auto;
    display: block;
}

.footer-badges {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-badge-large {
    width: 200px;
}

.footer-badge-small {
    width: 170px;
}

/* BOTTOM */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
    flex-wrap: wrap;
}

/* links */
.footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}

/* logo */
.footer-logo {
    width: 140px;
    height: auto;
}

@media (max-width: 1024px) {
    .footer {
        padding: 50px 0 28px;
    }

    .footer-top {
        gap: 30px;
        align-items: flex-start;
    }

    .footer-bottom {
        gap: 24px;
    }

    .footer-links {
        gap: 24px;
    }

    .footer-badge-large {
        width: 180px;
    }

    .footer-badge-small {
        width: 155px;
    }

    .footer-logo {
        width: 130px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 44px 0 24px;
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;

        gap: 28px;
    }

    .footer-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        justify-content: center;
        gap: 18px;
    }

    .footer-badges {
        justify-content: center;
        align-items: flex-end;
        gap: 10px;

        flex-wrap: nowrap;
    }

    .footer-badge-large {
        width: 160px;
    }

    .footer-badge-small {
        width: 140px;
    }

    .footer-logo {
        width: 120px;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 38px 0 20px;
    }

    .footer-top {
        padding-bottom: 24px;
        gap: 24px;
    }

    .footer-bottom {
        padding-top: 24px;
        gap: 20px;
    }

    .footer-title {
        font-size: 15px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-social {
        gap: 10px;
    }

    .icon-box {
        width: 28px;
        height: 28px;
    }

    .footer-badges {
        gap: 6px;
    }

    .footer-badge-large {
        width: 135px;
    }

    .footer-badge-small {
        width: 118px;
    }

    .footer-logo {
        width: 105px;
    }
}

#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    border: none;
    cursor: pointer;

    background: white;
    color: #224b9a;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.9);

    transition: all 0.3s ease;
}

#scrollTopBtn.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

/* hover effect */
#scrollTopBtn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(34, 75, 154, 0.3);
}

/* icon lebih tegas */
#scrollTopBtn svg {
    width: 22px;
    height: 22px;
}

@media (max-width: 1024px) {
    #scrollTopBtn {
        width: 52px;
        height: 52px;

        right: 24px;
        bottom: 24px;
    }

    #scrollTopBtn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    #scrollTopBtn {
        width: 48px;
        height: 48px;

        right: 20px;
        bottom: 20px;

        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
    }

    #scrollTopBtn:hover {
        transform: translateY(-2px) scale(1.04);
    }

    #scrollTopBtn svg {
        width: 19px;
        height: 19px;
    }
}

@media (max-width: 576px) {
    #scrollTopBtn {
        width: 44px;
        height: 44px;

        right: 16px;
        bottom: 16px;

        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
    }

    #scrollTopBtn:hover {
        transform: none;
    }

    #scrollTopBtn svg {
        width: 18px;
        height: 18px;
    }
}
