/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Plus Jakarta Sans', sans-serif;
    background:#f8fafc;
    color:#0f172a;
    overflow-x:hidden;
    line-height:1.6;
}

.container{
    width:min(90%,1400px);
    margin:0 auto;
    padding:0 15px;
}

.hero-wrapper{
    min-height:100vh;
}

img{
    display:block;
    max-width:100%;
    height:auto;
}

a{
    text-decoration:none;
}

/* ==========================
   NAVBAR
========================== */

.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
    transition: all .3s ease;
    padding: 18px 0;
}

.navbar.scrolled{
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.nav-wrapper{
    min-height:70px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo-img{
    height:32px;
    width:auto;
}

.logo span{
    font-size:20px;
    font-weight:700;
    color:#ffffff;
    transition:.35s;
}

.navbar.scrolled .logo span{
    color:#1b1b1b;
}

nav ul{
    display:flex;
    gap:35px;
    list-style:none;
}

nav a{
    color:#ffffff;
    font-weight:600;
    transition:.3s;
}

.navbar.scrolled nav a{
    color:#1e293b;
}

nav a:hover{
    color:#ffc107;
}

.navbar.scrolled nav a{
    color:#1e293b;
}

.navbar.scrolled nav a:hover{
    color:#ff0000;
}

.btn-wa{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg,#22c55e,#16a34a);
    color: #fff;
    padding: 18px 36px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(22,163,74,.35);
    transition: all .3s ease;
}

.btn-wa:hover{
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(22,163,74,.45);
}


/*==================================================
                HERO SECTION
==================================================*/

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
}

/* Background */

.hero-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

/* Overlay */

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:1;
}
/* Container */

.hero-container{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr 500px;
    align-items:center;
    gap:80px;
}

/*==================================================
TEXT
==================================================*/

.hero-text{
    color:white;
}

.hero-badge{
    display:inline-block;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(15px);
    padding:12px 28px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:25px;
}

.hero-text h1{
    font-size:72px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:30px;
}

.hero-text p{
    font-size:20px;
    line-height:1.9;
    max-width:620px;
    color:rgba(255,255,255,.92);
}

/*==================================================
BUTTON
==================================================*/

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:45px;
}

.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 40px;
    background:#16a34a;
    color:white;
    border-radius:50px;
    font-weight:700;
    transition:.35s;
}

.btn-primary:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(0,0,0,.25);
}

.btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 40px;
    border:2px solid white;
    color:white;
    border-radius:50px;
    font-weight:700;
    transition:.35s;
}

.btn-outline:hover{
    background:white;
    color:#1C304E;
}

/*==================================================
IMAGE
==================================================*/

.hero-image{
    display:flex;
    justify-content:center;
}

.hero-image img{
    width:430px;
    filter:drop-shadow(0 30px 40px rgba(0,0,0,.35));
    animation:floating 5s ease-in-out infinite;
}

/*==================================================
ABOUT PRODUCT
==================================================*/

.about-product{
    padding:120px 0;
    background:#ffffff;
}

.about-wrapper{
    display:grid;
    grid-template-columns:500px 1fr;
    align-items:center;
    gap:90px;
}

/*=========================
IMAGE
=========================*/

.about-image{
    display:flex;
    justify-content:center;
}

.about-image img{
    width:380px;
    transition:.5s;
    filter:drop-shadow(0 25px 35px rgba(0,0,0,.15));
}

.about-image img:hover{
    transform:scale(1.05) rotate(-2deg);
}

/*=========================
CONTENT
=========================*/

.section-tag{
    display:inline-block;
    padding:10px 24px;
    background:#EEF7EE;
    color:#16a34a;
    font-size:14px;
    font-weight:700;
    border-radius:50px;
    margin-bottom:22px;
}

.about-content h2{
    font-size:52px;
    color:#1C304E;
    margin-bottom:25px;
    line-height:1.2;
}

.about-content p{
    font-size:18px;
    line-height:1.9;
    color:#64748b;
    margin-bottom:40px;
}

/*=========================
FEATURE
=========================*/

.about-feature{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:45px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:15px;
    padding:18px 22px;
    border-radius:16px;
    background:#f8fafc;
    transition:.35s;
}

.feature-item:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 25px rgba(0,0,0,.08);
}

.feature-item i{
    color:#16a34a;
    font-size:22px;
}

.feature-item span{
    font-weight:700;
    color:#1C304E;
}

/*=====================================================
SECTION 3
KEUNGGULAN PRODUK
=====================================================*/

.advantages{
    padding:120px 0;
    background:
    linear-gradient(to bottom,#ffffff,#f8fbff);
}

.advantages .section-title{
    text-align:center;
    max-width:750px;
    margin:auto auto 70px;
}

.advantages .section-title span{
    color:#16a34a;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.advantages .section-title h2{
    font-size:46px;
    color:#1C304E;
    margin:15px 0;
}

.advantages .section-title p{
    color:#64748b;
    line-height:1.8;
    font-size:18px;
}

/*=========================
GRID
=========================*/

.advantages-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

/*=========================
CARD
=========================*/

.adv-card{
    background:#ffffff;
    border-radius:24px;
    padding:45px 35px;
    text-align:center;
    transition:.35s;
    border:1px solid #edf2f7;
    box-shadow:
    0 20px 45px rgba(15,23,42,.05);
}

.adv-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 30px 60px rgba(22,163,74,.18);
}

/*=========================
ICON
=========================*/

.adv-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:
    linear-gradient(135deg,#16a34a,#22c55e);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:42px;
    color:white;
    margin-bottom:30px;
}

/*=========================
TEXT
=========================*/

.adv-card h3{
    color:#1C304E;
    font-size:24px;
    margin-bottom:18px;
}

.adv-card p{
    color:#64748b;
    line-height:1.8;
    font-size:16px;
}

/* =========================================================
   INSPIRASI MENU
========================================================= */

.menu-section {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background: #f8fafc;
}


/* =========================
   JUDUL SECTION
========================= */

.menu-section .section-title {
    text-align: center;
    margin-bottom: 55px;
}


.menu-section .section-title span {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1C304E;
    margin-bottom: 15px;
}


.menu-section .section-title h2 {
    margin: 0;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
    color: #1C304E;
}


.menu-section .section-title p {
    max-width: 750px;
    margin: 20px auto 0;
    font-size: 17px;
    line-height: 1.7;
    color: #5b6575;
}


/* =========================================================
   GRID RESEP
========================================================= */

.menu-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 25px;
}


/* =========================================================
   CARD RESEP
========================================================= */

.menu-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #ffffff;
    cursor: pointer;
    box-shadow:
        0 10px 30px rgba(28,48,78,.10);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.menu-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 18px 40px rgba(28,48,78,.18);
}


/* =========================================================
   GAMBAR RESEP
========================================================= */

.menu-card img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
    cursor: zoom-in;
    transition:
        transform .4s ease;
}


.menu-card:hover img {
    transform: scale(1.04);
}


/* =========================================================
   OVERLAY JUDUL
========================================================= */

.menu-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 60px 25px 22px;
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.72),
            rgba(0,0,0,0)
        );
    pointer-events: none;
}


.menu-overlay h3 {
    margin: 0;
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
}


/* =========================================================
   POPUP / LIGHTBOX
========================================================= */

.recipe-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background:
        rgba(0, 0, 0, .85);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity .3s ease,
        visibility .3s ease;
    box-sizing: border-box;
}


/* MODAL AKTIF */

.recipe-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* =========================================================
   GAMBAR DI POPUP
========================================================= */

.recipe-modal img {
    display: block;
    max-width: 95vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow:
        0 20px 60px rgba(0,0,0,.45);
    transform: scale(.92);
    transition:
        transform .3s ease;
}


.recipe-modal.active img {
    transform: scale(1);
}


/* =========================================================
   TOMBOL CLOSE
========================================================= */

.recipe-close {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    color: #1C304E;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    transition:
        transform .2s ease,
        background .2s ease;
}


.recipe-close:hover {
    transform: rotate(90deg);
    background: #f1f5f9;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .menu-section {
        padding: 70px 0;
    }


    /* JUDUL */

    .menu-section .section-title {
        margin-bottom: 35px;
        padding: 0 15px;
    }


    .menu-section .section-title span {
        font-size: 20px;
        margin-bottom: 12px;
    }


    .menu-section .section-title h2 {
        font-size: 32px;
        line-height: 1.2;
    }


    .menu-section .section-title p {
        font-size: 15px;
        line-height: 1.6;
        margin-top: 15px;
    }


    /* GRID */

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 0 15px;
    }


    /* CARD */

    .menu-card {
        border-radius: 18px;
    }


    /* GAMBAR */

    .menu-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
        object-fit: cover;
    }


    /* JUDUL RESEP */

    .menu-overlay {

        padding:
            60px
            18px
            18px;
    }


    .menu-overlay h3 {
        font-size: 22px;
    }


    /* POPUP */

    .recipe-modal {
        padding: 15px;
    }


    .recipe-modal img {
        max-width: 96vw;
        max-height: 82vh;
        border-radius: 10px;
    }


    .recipe-close {
        top: 15px;
        right: 15px;
        width: 42px;
        height: 42px;
        font-size: 28px;
    }

}


/* =========================================================
   HP KECIL
========================================================= */

@media (max-width: 480px) {

    .menu-section {
        padding: 60px 0;
    }


    .menu-section .section-title span {
        font-size: 18px;
    }


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


    .menu-section .section-title p {
        font-size: 14px;
    }


    .menu-grid {
        padding: 0 12px;
        gap: 18px;
    }


    .menu-overlay h3 {
        font-size: 20px;
    }


    .recipe-modal img {
        max-height: 78vh;
    }

}

/* ===============================
   VIDEO TESTIMONI
================================ */

.testimoni {
    padding: 100px 8%;
    background: #f8f8f5;
}

/* JUDUL */

.testimoni-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.testimoni-title span {
    color: #d4a017;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
}

.testimoni-title h2 {
    margin: 15px 0;
    color: #06112b;
    font-size: 45px;
}

.testimoni-title p {
    color: #666;
    line-height: 1.8;
}

/* CONTAINER VIDEO */

.video-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

/* CARD */

.video-card {
    background: white;
    padding: 12px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* VIDEO PORTRAIT */

.video-card video {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 14px;
    background: #000;
}

/* JUDUL VIDEO */

.video-card h3 {
    color: #06112b;
    font-size: 16px;
    margin: 15px 8px 8px;
}

/* =====================================================
   SECTION 6 — CTA PEMBELIAN
===================================================== */

.purchase-cta{
    position:relative;
    padding:100px 0;
    background:#f8fafc;
    overflow:hidden;
}

/* =====================================================
   CTA BOX
===================================================== */

.cta-box{
    position:relative;
    min-height:520px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:70px 90px;
    border-radius:40px;
    overflow:hidden;
    background:
        linear-gradient(
            135deg,
            #1C304E 0%,
            #243d60 55%,
            #16263e 100%
        );
    box-shadow:
        0 30px 80px rgba(15,23,42,.20);
}


/* =====================================================
   DECORATION
===================================================== */

.cta-decoration{
    position:absolute;
    border-radius:50%;
    pointer-events:none;
}

.cta-decoration-1{
    width:420px;
    height:420px;
    right:-150px;
    top:-180px;
    border:1px solid rgba(255,255,255,.10);
    box-shadow:
        0 0 0 50px rgba(255,255,255,.025),
        0 0 0 100px rgba(255,255,255,.015);
}

.cta-decoration-2{
    width:300px;
    height:300px;
    left:-180px;
    bottom:-180px;
    background:rgba(255,210,0,.06);
}


/* =====================================================
   CTA CONTENT
===================================================== */

.cta-content{
    position:relative;
    z-index:5;
    max-width:650px;
}

.cta-label{
    display:inline-flex;
    align-items:center;
    padding:8px 18px;
    margin-bottom:22px;
    border-radius:50px;
    background:rgba(255,210,0,.12);
    border:1px solid rgba(255,210,0,.25);
    color:#FFD200;
    font-size:13px;
    font-weight:800;
    letter-spacing:1.5px;
}

/* =====================================================
   CTA TITLE
===================================================== */

.cta-content h2{
    margin:0;
    color:#ffffff;
    font-size:46px;
    line-height:1.15;
    font-weight:500;
    letter-spacing:-1.5px;
}

.cta-content h2 strong{
    color:#FFD200;
    font-weight:800;
}

/* =====================================================
   CTA DESCRIPTION
===================================================== */

.cta-content > p{
    max-width:560px;
    margin:25px 0 35px;
    color:rgba(255,255,255,.72);
    font-size:17px;
    line-height:1.8;
}


/* =====================================================
   CTA BUTTONS
===================================================== */

.cta-buttons{
    display:flex;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.cta-primary,
.cta-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:55px;
    padding:0 28px;
    border-radius:50px;
    font-size:15px;
    font-weight:700;
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

/* PRIMARY */

.cta-primary{
    background:#25D366;
    color:#ffffff;
    box-shadow:
        0 12px 30px rgba(37,211,102,.25);
}

.cta-primary:hover{
    transform:translateY(-4px);
    background:#20bd5c;
    box-shadow:
        0 18px 40px rgba(37,211,102,.35);
}

.cta-primary i{
    font-size:20px;
}

/* SECONDARY */

.cta-secondary{
    color:#ffffff;
    border:1px solid rgba(255,255,255,.25);
    background:rgba(255,255,255,.06);
}

.cta-secondary:hover{
    transform:translateY(-4px);
    background:#ffffff;
    color:#1C304E;
}

/* =====================================================
   TRUST ITEM
===================================================== */

.cta-trust{
    display:flex;
    align-items:center;
    gap:25px;
    margin-top:35px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.12);
    flex-wrap:wrap;
}

.trust-item{
    display:flex;
    align-items:center;
    gap:8px;
    color:rgba(255,255,255,.65);
    font-size:13px;
    font-weight:500;
}

.trust-item i{
    color:#FFD200;
    font-size:14px;
}

/* =====================================================
   PRODUCT IMAGE
===================================================== */

.cta-product{
    position:relative;
    z-index:4;
    width:390px;
    min-width:390px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:20px;
}

.cta-product img{
    position:relative;
    z-index:3;
    width:100%;
    max-width:360px;
    height:auto;
    object-fit:contain;
    filter:
        drop-shadow(
            0 25px 30px rgba(0,0,0,.35)
        );
    transition:transform .5s ease;
}

.cta-box:hover .cta-product img{
    transform:
        translateY(-10px)
        rotate(2deg)
        scale(1.04);
}

/* =====================================================
   PRODUCT GLOW
===================================================== */

.product-glow{
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:
        radial-gradient(
            circle,
            rgba(255,210,0,.20) 0%,
            rgba(255,210,0,.06) 45%,
            transparent 70%
        );
    filter:blur(10px);
}


/* =========================================================
   RESPONSIVE
   PT MANERA PACIFIC INDONESIA
========================================================= */


/* =========================================================
   TABLET
   iPad / Tablet
   769px - 1024px
========================================================= */

@media (min-width: 769px) and (max-width: 1024px){

    /* =========================
       GLOBAL
    ========================= */

    .container{
        width:92%;
        max-width:100%;
        padding-left:10px;
        padding-right:10px;
    }


    /* =========================
       NAVBAR
    ========================= */

    .navbar{
        padding:14px 0;
    }

    .nav-wrapper{
        min-height:60px;
    }

    .logo-img{
        height:38px;
    }

    nav ul{
        gap:18px;
    }

    nav a{
        font-size:13px;
    }

    .btn-wa{
        padding:12px 20px;
        font-size:13px;
    }


    /* =========================
       HERO
    ========================= */

    .hero{
        min-height:85vh;
        padding:100px 0 70px;
    }

    .hero-container{
        grid-template-columns:1fr 320px;
        gap:35px;
    }

    .hero-text h1{
        font-size:48px;
    }

    .hero-text p{
        font-size:16px;
        line-height:1.7;
    }

    .hero-image img{
        width:300px;
        animation:none;
        filter:none;
    }


    /* =========================
       ABOUT
    ========================= */

    .about-product{
        padding:90px 0;
    }

    .about-wrapper{
        grid-template-columns:320px 1fr;
        gap:50px;
    }

    .about-image img{
        width:280px;
        filter:none;
    }

    .about-content h2{
        font-size:40px;
    }

    .about-content p{
        font-size:16px;
    }


    /* =========================
       ADVANTAGES
    ========================= */

    .advantages{
        padding:90px 0;
    }

    .advantages-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .adv-card{
        padding:35px 25px;
    }


    /* =========================
       MENU
    ========================= */

    .menu-section{
        padding:90px 0;
    }

    .menu-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .menu-card img{
        height:280px;
    }


    /* =========================
       VIDEO
    ========================= */

    .testimoni{
        padding:90px 5%;
    }

    .video-container{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }


    /* =========================
       CTA
    ========================= */

    .purchase-cta{
        padding:80px 0;
    }

    .cta-box{
        min-height:450px;
        padding:55px;
    }

    .cta-content{
        max-width:55%;
    }

    .cta-content h2{
        font-size:38px;
    }

    .cta-product{
        width:300px;
        min-width:300px;
    }

}


/* =========================================================
   MOBILE
   HP
   <= 768px
========================================================= */

@media (max-width:768px){

    /* =========================
       GLOBAL
    ========================= */

    body{
        font-size:15px;
    }

    .container{
        width:92%;
        max-width:100%;
        padding:0;
    }


    /* =========================
       NAVBAR
    ========================= */

    .navbar{
        padding:10px 0;
    }

    .nav-wrapper{
        min-height:50px;
    }

    .logo-img{
        height:34px;
    }

    nav{
        display:none;
    }

    .btn-wa{
        display:none;
    }


    /* =========================
       HERO
    ========================= */

    .hero{
        min-height:100svh;
        padding:90px 0 50px;
    }

    .hero-container{
        display:flex;
        flex-direction:column;
        text-align:center;
        gap:30px;
    }

    .hero-text{
        width:100%;
    }

    .hero-badge{
        padding:8px 16px;
        font-size:11px;
        margin-bottom:16px;
        backdrop-filter:none;
        -webkit-backdrop-filter:none;
    }

    .hero-text h1{
        font-size:clamp(34px,9vw,44px);
        line-height:1.08;
        margin-bottom:18px;
    }

    .hero-text p{
        max-width:100%;
        font-size:15px;
        line-height:1.7;
    }


    /* =========================
       HERO BUTTON
    ========================= */

    .hero-buttons{
        margin-top:25px;
        gap:10px;
        justify-content:center;
    }

    .btn-primary,
    .btn-outline{
        padding:13px 20px;
        font-size:14px;
    }


    /* =========================
       HERO IMAGE
    ========================= */

    .hero-image img{
        width:min(68vw,260px);
        animation:none;
        filter:none;
    }


    /* =========================
       ABOUT
    ========================= */

    .about-product{
        padding:70px 0;
    }

    .about-wrapper{
        display:flex;
        flex-direction:column;
        gap:30px;
        text-align:center;
    }

    .about-image img{
        width:min(68vw,260px);
        filter:none;
    }

    .about-content h2{
        font-size:clamp(30px,8vw,38px);
        line-height:1.2;
    }

    .about-content p{
        font-size:15px;
        line-height:1.7;
        margin-bottom:25px;
    }


    /* =========================
       ABOUT FEATURE
    ========================= */

    .about-feature{
        grid-template-columns:1fr;
        gap:10px;
    }

    .feature-item{
        justify-content:flex-start;
        text-align:left;
        padding:14px 16px;
    }

    .feature-item i{
        font-size:18px;
    }


    /* =========================
       ADVANTAGES
    ========================= */

    .advantages{
        padding:70px 0;
    }

    .advantages .section-title{
        margin-bottom:40px;
    }

    .advantages .section-title h2{
        font-size:clamp(30px,8vw,36px);
    }

    .advantages .section-title p{
        font-size:15px;
    }

    .advantages-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    .adv-card{
        padding:28px 22px;
        border-radius:20px;
        box-shadow:0 8px 20px rgba(15,23,42,.05);
    }

    .adv-card:hover{
        transform:none;
        box-shadow:0 8px 20px rgba(15,23,42,.05);
    }

    .adv-icon{
        width:65px;
        height:65px;
        font-size:28px;
        margin-bottom:18px;
    }

    .adv-card h3{
        font-size:20px;
    }

    .adv-card p{
        font-size:14px;
    }


    /* =========================
       MENU
    ========================= */

    .menu-section{
        padding:70px 0;
    }

    .menu-grid{
        grid-template-columns:1fr;
        gap:18px;
        margin-top:35px;
    }

    .menu-card{
        border-radius:20px;
        box-shadow:0 10px 25px rgba(0,0,0,.07);
    }

    .menu-card:hover{
        transform:none;
    }

    .menu-card img{
        height:240px;
    }

    .menu-card:hover img{
        transform:none;
    }

    .menu-overlay{
        left:20px;
        bottom:18px;
    }

    .menu-overlay h3{
        font-size:22px;
    }


    /* =========================
       VIDEO
    ========================= */

    .testimoni{
        padding:70px 0;
    }

    .testimoni-title{
        margin-bottom:35px;
        padding:0 10px;
    }

    .testimoni-title h2{
        font-size:clamp(30px,8vw,36px);
    }

    .testimoni-title p{
        font-size:14px;
    }

    .video-container{
        grid-template-columns:1fr;
        width:100%;
        max-width:360px;
        gap:18px;
    }

    .video-card{
        padding:8px;
        border-radius:18px;
        box-shadow:0 8px 20px rgba(0,0,0,.07);
    }

    .video-card:hover{
        transform:none;
        box-shadow:0 8px 20px rgba(0,0,0,.07);
    }

    .video-card video{
        border-radius:12px;
    }


    /* =========================
       CTA
    ========================= */

    .purchase-cta{
        padding:60px 0;
    }

    .cta-box{
        min-height:auto;
        padding:42px 22px 38px;
        flex-direction:column;
        text-align:center;
        border-radius:26px;
    }

    .cta-content{
        max-width:100%;
    }

    .cta-label{
        font-size:10px;
        padding:7px 14px;
        backdrop-filter:none;
        -webkit-backdrop-filter:none;
    }

    .cta-content h2{
        font-size:clamp(28px,8vw,34px);
        line-height:1.2;
    }

    .cta-content > p{
        font-size:14px;
        line-height:1.7;
        margin:18px auto 25px;
    }

    .cta-buttons{
        flex-direction:column;
        width:100%;
    }

    .cta-primary,
    .cta-secondary{
        width:100%;
        max-width:300px;
    }

    .cta-trust{
        justify-content:center;
        gap:10px 16px;
    }

    .cta-product{
        width:220px;
        min-width:220px;
        margin:28px 0 0;
    }

    .cta-product img{
        max-width:220px;
        filter:drop-shadow(0 12px 18px rgba(0,0,0,.22));
    }

    .product-glow{
        width:200px;
        height:200px;
    }


    /* =========================
       TOUCH DEVICE
    ========================= */

    .hero-image img,
    .about-image img,
    .cta-product img,
    .menu-card img,
    .adv-card,
    .feature-item,
    .video-card{
        transition:none;
    }

}


/* =========================================================
   HP KECIL
   <= 480px
========================================================= */

@media (max-width:480px){

    .container{
        width:90%;
    }

    .logo-img{
        height:32px;
    }


    /* HERO */

    .hero{
        padding-top:85px;
    }

    .hero-text h1{
        font-size:34px;
    }

    .hero-text p{
        font-size:14px;
    }

    .hero-image img{
        width:230px;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
        max-width:280px;
        margin-left:auto;
        margin-right:auto;
    }

    .btn-primary,
    .btn-outline{
        width:100%;
    }


    /* ABOUT */

    .about-product{
        padding:60px 0;
    }

    .about-image img{
        width:230px;
    }


    /* ADVANTAGES */

    .advantages{
        padding:60px 0;
    }


    /* MENU */

    .menu-section{
        padding:60px 0;
    }

    .menu-card img{
        height:210px;
    }


    /* VIDEO */

    .testimoni{
        padding:60px 0;
    }

    .video-container{
        max-width:100%;
    }


    /* CTA */

    .purchase-cta{
        padding:60px 0;
    }

    .cta-box{
        padding:38px 18px 32px;
    }

    .cta-content h2{
        font-size:28px;
    }

    .cta-content > p{
        font-size:14px;
    }

    .cta-product{
        width:200px;
        min-width:200px;
    }

    .cta-product img{
        max-width:200px;
    }

}


/* =========================================================
   REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion:reduce){

    *,
    *::before,
    *::after{
        animation-duration:.01ms !important;
        animation-iteration-count:1 !important;
        transition-duration:.01ms !important;
        scroll-behavior:auto !important;
    }

}