:root {
  --bg: #060918;
  --panel1: #111b3b;
  --panel2: #252a6b;
  --accent: #6b9bff;
  --accent2: #c084fc;
  --text: #f0f4ff;
  --green: #35ffb7;
  --shadow: rgba(0, 0, 0, 0.5);
}

/* === BASE === */
body {
  font-family: "Inter", Arial, sans-serif;
  background: radial-gradient(circle at top, #0a0f24, var(--bg));
  color: var(--text);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* === HEADER === */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(90deg, #1a1444, #351b75);
  box-shadow: 0 3px 12px var(--shadow);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(107, 155, 255, 0.5);
}
.brand h1 {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* === CARD PRODUK === */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  padding: 16px;
}

.card,
.akrab-item {
  background: linear-gradient(160deg, var(--panel1), var(--panel2));
  border-radius: 16px;
  padding: 20px 14px;
  text-align: center;
  box-shadow: 0 0 14px rgba(107, 155, 255, 0.1);
  transition: 0.25s ease;
  border: 1px solid rgba(107, 155, 255, 0.15);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 22px rgba(107, 155, 255, 0.3);
}
.card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.card p {
  color: #cfd5ff;
  font-size: 0.9rem;
  margin: 0 0 8px;
}
.price {
  font-weight: 700;
  color: var(--accent2);
  margin-bottom: 10px;
}

/* === BUTTON === */
.card button {
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  border: none;
  padding: 8px 18px;
  border-radius: 24px;
  color: #061323;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s;
}
.card button:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* === PRODUK SOSIAL MEDIA === */
.prod-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 16px 10px 24px;
  scroll-behavior: smooth;
}
.prod-strip::-webkit-scrollbar {
  height: 6px;
}
.prod-strip::-webkit-scrollbar-thumb {
  background: rgba(107, 155, 255, 0.4);
  border-radius: 8px;
}
.prod-card {
  flex: 0 0 220px;
  background: linear-gradient(135deg, #1e1b4b, #322d74);
  border-radius: 16px;
  padding: 16px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
  transition: 0.25s ease;
  border: 1px solid rgba(107, 155, 255, 0.15);
}
.prod-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 22px rgba(107, 155, 255, 0.3);
}
.prod-thumb {
  width: 100%;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.prod-thumb img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}
.prod-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.prod-desc {
  font-size: 0.85rem;
  color: #c5c9ff;
  margin: 6px 0;
  min-height: 40px;
}
.prod-price {
  font-weight: 600;
  color: var(--green);
  margin-bottom: 8px;
}
.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--green);
  color: #001a10;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
  box-shadow: 0 0 12px rgba(53, 255, 183, 0.25);
}
.btn-wa:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* === MODAL === */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.overlay.show {
  display: flex;
}
.modal {
  background: linear-gradient(145deg, #151a3b, #272a63);
  color: #eaf3ff;
  padding: 24px;
  border-radius: 16px;
  width: 85%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 0 25px rgba(0, 224, 255, 0.25),
              0 6px 16px rgba(0, 0, 0, 0.5);
  animation: popIn 0.3s ease;
}
.modal h2 {
  color: #7dd3fc;
  margin-bottom: 8px;
}
.modal ul {
  text-align: left;
  margin-top: 10px;
}
.modal ul li {
  margin: 4px 0;
  font-size: 0.9rem;
  color: #c8d5ff;
}
.modal .price {
  font-weight: 700;
  color: #c084fc;
  margin: 8px 0;
}
.modal .actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.modal .actions a {
  flex: 1;
  background: linear-gradient(90deg, #00e0ff, #60a5fa);
  color: #001826;
  text-decoration: none;
  font-weight: 700;
  padding: 10px;
  border-radius: 10px;
}
.modal .actions button {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}
@keyframes popIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}



/* === FITUR SECTION === */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  padding: 20px 16px 40px;
  text-align: center;
}

.feature-card {
  background: linear-gradient(145deg, #0d1330, #1d2460);
  border-radius: 16px;
  padding: 20px 14px;
  color: #e2e8ff;
  box-shadow: 0 0 14px rgba(107, 155, 255, 0.15);
  border: 1px solid rgba(107, 155, 255, 0.12);
  transition: 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 18px rgba(107, 155, 255, 0.25);
}

.feature-card .icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
  display: inline-block;
  color: #60a5fa;
  filter: drop-shadow(0 0 4px rgba(107, 155, 255, 0.3));
}

.feature-card h3 {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 0.85rem;
  color: #c8d5ff;
  line-height: 1.4;
  margin: 0;
}



/* TESTIMONI */
.testimonials {
  padding: 40px 16px;
  text-align: center;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.testi-card {
  background: linear-gradient(160deg, #111b3b, #252a6b);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(107, 155, 255, 0.2);
  color: #eaf3ff;
  text-align: left;
  transition: 0.3s ease;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(192, 132, 252, 0.4);
}

.testi-card h3 {
  color: #38bdf8;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.testi-card p {
  color: #cdd5ff;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* FAQ */
.faq {
  padding: 40px 16px;
  text-align: center;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: linear-gradient(160deg, #111b3b, #252a6b);
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(107, 155, 255, 0.2);
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 0 25px rgba(192, 132, 252, 0.4);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px;
  color: #6b9bff;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #c084fc;
}

.faq-answer {
  padding: 0 16px 16px;
  display: none;
  font-size: 0.95rem;
  color: #cdd5ff;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}


/* Tombol "Beli via Admin" */
.akrab-item button {
  background: linear-gradient(90deg, #8b5cf6, #3b82f6);
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.25);
}

.akrab-item button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(139, 92, 246, 0.4);
  filter: brightness(1.1);
}



