.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:140px 30px 80px;
}

.hero-content{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.badge{
    display:inline-block;
    padding:12px 20px;
    border-radius:100px;
    background:rgba(34,197,94,.12);
    border:1px solid rgba(74,222,128,.2);
    color:#4ade80;
    margin-bottom:25px;
}

.hero h1{
    font-size:90px;
    line-height:1;
    margin-bottom:25px;
    font-weight:900;
}

.hero h1 span{
    color:#4ade80;
}

.hero p{
    color:#cbd5e1;
    line-height:1.9;
    font-size:18px;
    margin-bottom:35px;
    max-width:600px;
}

.btn-group{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-secondary{
    background:transparent;
    border:1px solid rgba(255,255,255,.12);
    color:white;
    box-shadow:none;
}

.hero-image{
    position:relative;
}

.hero-image::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:#22c55e;
    filter:blur(150px);
    opacity:.25;
    border-radius:50%;
    z-index:-1;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.product-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    border-radius:40px;
    overflow:hidden;
    box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.product-card img{
    width:100%;
    height:400px;
    object-fit:cover;
}

.product-info{
    padding:30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.product-info h2{
    font-size:34px;
    margin-bottom:5px;
}

.product-info p{
    color:#9ca3af;
}

.price{
    background:#4ade80;
    color:black;
    padding:14px 22px;
    border-radius:16px;
    font-weight:800;
    font-size:20px;
}

.section{
    max-width:1300px;
    margin:auto;
    padding:120px 30px;
}

.section-desc{
    max-width:700px;
    margin:auto;
    text-align:center;
    color:#cbd5e1;
    line-height:1.8;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
    margin-top:70px;
}

.card{
    background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
    border:1px solid rgba(255,255,255,.08);
    border-radius:35px;
    padding:40px;
    transition:.4s;
}

.card:hover{
    transform:translateY(-12px);
    border-color:#22c55e;
}

.card .icon{
    font-size:55px;
    margin-bottom:25px;
}

.card h3{
    font-size:28px;
    margin-bottom:15px;
}

.card p{
    color:#cbd5e1;
    line-height:1.8;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
    margin-top:70px;
}

.gallery-item, .product-card{
    position:relative;
    overflow:hidden;
    border-radius:35px;
}

.gallery img, .product-card img{
    width:100%;
    height:420px;
    object-fit:cover;
    transition:.5s;
}

.gallery-item:hover img, .product-card:hover img{
    transform:scale(1.08);
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.8),transparent);
    display:flex;
    align-items:flex-end;
    padding:25px;
    font-size:24px;
    font-weight:700;
}

.cta{
    background:linear-gradient(135deg,#22c55e,#4ade80);
    border-radius:50px;
    padding:90px 50px;
    text-align:center;
    color:black;
    box-shadow:0 30px 80px rgba(34,197,94,.25);
}

.cta h2{
    font-size:65px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:900;
}

.cta p{
    max-width:700px;
    margin:auto;
    line-height:1.9;
    margin-bottom:40px;
    font-size:18px;
}

.pip {
    display: flex;
    gap: inherit;
}

.pip a {
    display: none;
}

#varian {
    position: relative;
}

#varian .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 35px auto 0;
}

#varian .kartu {
    position: relative;
    padding: 30px 25px;
    background: linear-gradient( 145deg, rgba(255,255,255,0.98), rgba(241,248,243,0.98) );
    border: 1px solid #d6e5da;
    border-radius: 16px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(25, 70, 45, 0.08);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

#varian .kartu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient( 90deg, #1f6041, #8fc447, #1f6041 );
}

#varian .kartu:hover {
    transform: translateY(-7px);
    border-color: #8db6a0;
    box-shadow: 0 15px 35px rgba(25, 70, 45, 0.14);
}

#varian .kartu .icon {
    width: 260px;
    height: 260px;
    margin: 5px auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient( 135deg, #eaf4ed, #dceee2 );
    border: 1px solid #c9ddd0;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(31, 96, 65, 0.10);
}

#varian .kartu h3 {
    margin-bottom: 12px;
    font-size: 21px;
    font-weight: 700;
    color: #214d36;
    letter-spacing: .2px;
}

#varian .kartu p {
    min-height: 75px;
    margin-bottom: 18px;
    color: #64756a;
    font-size: 14px;
    line-height: 1.7;
}

#varian .kartu .product-price {
    margin-bottom: 18px;
    color: #1f6041;
    font-size: 21px;
    font-weight: 800;
}

#varian .kartu .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 145px;
    padding: 10px 18px;
    border-radius: 8px;
    background: linear-gradient( 135deg, #28724d 0%, #1f6041 100% );
    border: 1px solid #1b583b;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 5px 12px rgba(31, 96, 65, 0.18);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

#varian .kartu .btn:hover {
    background: linear-gradient( 135deg, #34865c 0%, #28724d 100% );
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(31, 96, 65, 0.25);
}

.kartu .icon {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

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

.slideshow {
    position: relative;
    overflow: hidden;
}

.slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slideshow .slide.active {
    opacity: 1;
}

.slideshow .slide:first-child {
    opacity: 1;
}

.rempah-gallery {
    padding: 80px 30px;
}

.rempah-gallery-inner {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gallery-image {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.gallery-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform .5s ease;
}

.gallery-image:hover img {
    transform: scale(1.03);
}


/* HP */
@media (max-width: 768px) {

    .rempah-gallery {
        padding: 50px 15px;
    }

    .rempah-gallery-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-image img {
        width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 900px) {
    #varian .cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media screen and (max-width: 600px) {
    #varian .cards {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 25px;
    }

    #varian .card {
        padding: 25px 20px;
    }

    #varian .card p {
        min-height: auto;
    }

    #varian .card .icon {
        width: 58px;
        height: 58px;
        font-size: 27px;
    }

    #varian .card h3 {
        font-size: 19px;
    }
}

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

    .hero-content{
        grid-template-columns:1fr;
        gap:50px;
        text-align:center;
    }

    .badge{
        font-size:13px;
        padding:10px 18px;
        margin-bottom:20px;
    }

    .hero h1{
        font-size:46px;
        line-height:1.1;
        margin-bottom:20px;
    }

    .hero p{
        max-width:100%;
        font-size:16px;
        line-height:1.8;
        margin-bottom:30px;
    }

    .btn-group{
        justify-content:center;
        gap:15px;
    }

    .btn, .btn-secondary{
        width:100%;
        text-align:center;
    }

    .hero-image::before{
        width:280px;
        height:280px;
        filter:blur(100px);
    }

    .product-card{
        border-radius:25px;
    }

    .product-card img{
        height:300px;
    }

    .product-info{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
        padding:22px;
    }

    .product-info h2{
        font-size:26px;
    }

    .price{
        font-size:18px;
        padding:17px 30px;
    }

    .section{
        padding:70px 20px;
    }

    .section-title{
        font-size:38px;
        line-height:1.2;
    }

    .section-desc{
        font-size:16px;
        line-height:1.8;
    }

    .cards{
        grid-template-columns:1fr;
        gap:25px;
        margin-top:45px;
    }

    .card{
        padding:28px;
        border-radius:25px;
    }

    .card .icon{
        font-size:42px;
        margin-bottom:18px;
    }

    .card h3{
        font-size:24px;
    }

    .card p{
        font-size:15px;
    }

    .gallery{
        grid-template-columns:1fr;
        gap:20px;
        margin-top:45px;
    }

    .gallery-item, .product-card{
        border-radius:25px;
    }

    .gallery img, .product-card img{
        height:300px;
    }

    .overlay{
        padding:18px;
        font-size:20px;
    }

    .cta{
        padding:60px 25px;
        border-radius:30px;
    }

    .cta h2{
        font-size:38px;
        line-height:1.2;
    }

    .cta p{
        font-size:16px;
        line-height:1.8;
        margin-bottom:30px;
    }

    .hero-image{
        order:-1;
    }

    .pip a {
        display: inherit;
    }

    .btn-group a {
        width: 100%;
    }

}