* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #fff8e1;
    color: #222;
}

/* NAVBAR */
.navbar {
    background: #e30613;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
}

.nav-cta {
    background: #ffcc00;
    border: none;
    padding: 10px 16px;
    font-weight: bold;
    cursor: pointer;
}

/* HERO */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffcc00, #e30613);
    color: white;
}

.hero h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.promo-box {
    background: white;
    color: #e30613;
    padding: 15px;
    font-weight: bold;
    margin: 20px auto;
    display: inline-block;
    border-radius: 8px;
}

.cta-primary {
    background: black;
    color: white;
    padding: 15px 30px;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

/* BENEFITS */
.benefits {
    padding: 60px 20px;
    text-align: center;
}

.benefit-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.benefit-card {
    background: white;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
}

/* PRODUCTS */
.products {
    padding: 60px 20px;
    text-align: center;
    background: #fff;
}

.product-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.product-card {
    background: #fff8e1;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
    position: relative;
    border: 2px solid #e30613;
}

.product-card.hot {
    background: #ffe5e5;
}

.badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #e30613;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
}

.price {
    margin-top: 10px;
    font-weight: bold;
    color: #e30613;
}

/* TESTIMONI */
.testimoni {
    padding: 60px 20px;
    text-align: center;
}

.testi-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.testi-card {
    background: white;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
}

/* ORDER */
.order {
    background: #e30613;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.cta-big {
    background: #ffcc00;
    border: none;
    padding: 20px 40px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
}

footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: white;
}

/* Animasi klik */
.clicked {
    transform: scale(0.95);
    transition: 0.2s;
}

.pulse {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
