@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Heebo:wght@400;500;600;700;800&display=swap');
:root {
  --bg: #f9fafb;
  --surface: #ffffff;
  --text: #0f172a;
  --primary: #dc2626;
  --secondary: #1e293b;
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Heebo', sans-serif;
  background-color: var(--bg);
  color: var(--text);
}
.font-heading {
  font-family: 'Fredoka', sans-serif;
}
.pricing-highlight {
  background: linear-gradient(135deg, #dc2626 0%, #c8452c 100%);
}
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease-out forwards;
}
.stagger-1 {
  animation-delay: 0.1s;
}
.stagger-2 {
  animation-delay: 0.2s;
}
.stagger-3 {
  animation-delay: 0.3s;
}
.stagger-4 {
  animation-delay: 0.4s;
}
.stagger-5 {
  animation-delay: 0.5s;
}
.stagger-6 {
  animation-delay: 0.6s;
}
.stagger-7 {
  animation-delay: 0.7s;
}
.stagger-8 {
  animation-delay: 0.8s;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.anim-float {
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
.pulse-ring {
  animation: pulse-ring 1.5s ease-out infinite;
}
@keyframes pulse-ring {
  from {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
  }
  to {
    box-shadow: 0 0 0 20px rgba(220, 38, 38, 0);
  }
}
.text-dark-600 {
  color: #0f172a;
}
.text-dark-500 {
  color: #1e293b;
}
.text-dark-400 {
  color: #475569;
}
.bg-dark-600 {
  background-color: #0f172a;
}
.bg-brand-50 {
  background-color: #fee2e2;
}
.bg-brand-100 {
  background-color: #fecaca;
}
.bg-brand-200 {
  background-color: #fca5a5;
}
.bg-brand-300 {
  background-color: #f87171;
}
.bg-brand-400 {
  background-color: #f87171;
}
.bg-brand-500 {
  background-color: #dc2626;
}
.bg-brand-600 {
  background-color: #b91c1c;
}
.bg-brand-800 {
  background-color: #7f1d1d;
}
.text-brand-50 {
  color: #fee2e2;
}
.text-brand-400 {
  color: #f87171;
}
.text-brand-500 {
  color: #dc2626;
}
.text-brand-600 {
  color: #b91c1c;
}
.border-brand-200 {
  border-color: #fca5a5;
}
.border-brand-300 {
  border-color: #f87171;
}
.shadow-brand-500\/20 {
  box-shadow: 0 10px 15px -3px rgba(220, 38, 38, 0.2);
}
.shadow-brand-500\/25 {
  box-shadow: 0 10px 15px -3px rgba(220, 38, 38, 0.25);
}
.shadow-brand-500\/30 {
  box-shadow: 0 10px 15px -3px rgba(220, 38, 38, 0.3);
}
.hover\:text-brand-500:hover {
  color: #dc2626;
}
.hover\:bg-brand-600:hover {
  background-color: #b91c1c;
}
.hover\:border-brand-300:hover {
  border-color: #f87171;
}
.faq-open .faq-answer {
  max-height: 200px;
}
.faq-open button i {
  transform: rotate(180deg);
}
body {
  box-sizing: border-box;
}
/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 640px) {
  /* Thumbnail video tidak terpotong */
  #video-thumbnail img {
    object-fit: contain;
    background-color: #111827;
  }

  /* Tombol play lebih kecil di mobile */
  #video-thumbnail .w-20 {
    width: 3.5rem;
    height: 3.5rem;
  }
  #video-thumbnail .w-8 {
    width: 1.5rem;
    height: 1.5rem;
  }

  /* Section demo padding lebih kecil */
  #demo {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  /* Judul lebih kecil di mobile */
  #demo h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  /* Video tetap aspect-ratio 16:9 */
  #demo .aspect-video {
    aspect-ratio: 16 / 9;
    width: 100%;
  }

  /* Tombol CTA full width di mobile */
  #demo a[href*='whatsapp'] {
    width: 100%;
    justify-content: center;
    margin-top: 1.25rem;
  }
}
