/* GAYA DESAIN ALA APPLE */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
body { background-color: #ffffff; color: #1d1d1f; line-height: 1.5; }
.container { max-width: 980px; margin: 0 auto; padding: 0 20px; }

/* NAVIGASI */
.navbar { padding: 20px 0; position: sticky; top: 0; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); z-index: 100; border-bottom: 1px solid #f5f5f7; }
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 700; font-size: 1.2rem; }
.btn-nav { text-decoration: none; background: #0071e3; color: white; padding: 8px 16px; border-radius: 20px; font-size: 0.9rem; }

/* HERO */
.hero { text-align: center; padding: 60px 0 40px; }
.headline { font-size: 3rem; font-weight: 700; margin-bottom: 15px; letter-spacing: -1px; }
.subheadline { font-size: 1.2rem; color: #86868b; max-width: 600px; margin: 0 auto 40px; }
.hero-img { width: 100%; max-width: 800px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.cta-container { margin-top: 30px; }
.btn-primary { display: inline-block; background-color: #0071e3; color: white; padding: 15px 30px; border-radius: 30px; text-decoration: none; font-size: 1.1rem; font-weight: 500; }
.stock-status { margin-top: 15px; font-size: 0.9rem; font-weight: 500; }

/* GRID & GALERI */
.features { padding: 60px 0; background-color: #f5f5f7; }
.grid-features, .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.feature-card { background: white; padding: 30px; border-radius: 18px; }
.feature-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.gallery-section { padding: 80px 0; }
.section-title { font-size: 2.5rem; text-align: center; margin-bottom: 40px; }
.gallery-img { width: 100%; height: 300px; object-fit: cover; border-radius: 18px; }

/* FOOTER */
footer { padding: 40px 0; text-align: center; border-top: 1px solid #d2d2d7; color: #86868b; font-size: 0.8rem; }
/* GAYA UNTUK PILIHAN PAKET */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.price-card {
    padding: 40px;
    border-radius: 20px;
    text-align: left;
    position: relative;
    transition: transform 0.3s ease;
}

/* Desain Kotak Eceran (Abu-abu lembut) */
.retail {
    border: 1px solid #d2d2d7;
    background: #fafafa;
}

/* Desain Kotak Grosir (Putih Menonjol + Bayangan Biru) */
.wholesale {
    border: 2px solid #0071e3;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,113,227,0.15);
    transform: scale(1.02); /* Sedikit lebih besar */
    z-index: 2;
}

.price-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; }
.price-desc { color: #86868b; margin-bottom: 25px; font-size: 0.95rem; }
.price-list { list-style: none; margin-bottom: 30px; padding: 0; }
.price-list li { margin-bottom: 12px; font-size: 1rem; }

.btn-price {
    display: block;
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
}

.retail-btn { background: #e8e8ed; color: #1d1d1f; }
.wholesale-btn { background: #0071e3; color: white; }

/* Label 'REKOMENDASI' di atas kotak Grosir */
.badge-pop {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #0071e3;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Supaya rapi di HP */
@media (max-width: 768px) {
    .wholesale { transform: scale(1); margin-top: 20px; }
}