:root {
  --primary: #5A2D82; /* Ungu RiDA */
  --accent: #F4C02B;  /* Kuning RiDA */
  --text-dark: #222222;
  --text-light: #555555;
  --bg-light: #ffffff;
  --rounded: 12px;
}

/* Header + Logo */
#site-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

#site-header .logo {
  height: 45px;
  width: auto;
}

/* Global typography & layout */
body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--primary);
}

section {
  padding: 60px 20px;
  max-width: 1080px;
  margin: 0 auto;
}

ul,
li {
  margin-bottom: 8px;
}

/* Buttons */
.btn-primary,
.btn-accent,
.btn-secondary,
.btn-whatsapp {
  padding: 14px 24px;
  border-radius: var(--rounded);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  opacity: 0.85;
}

.btn-accent {
  background: var(--accent);
  color: var(--text-dark);
}

.btn-secondary {
  background: #eee;
  color: var(--text-dark);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

/* Pricing Box */
#pricing {
  background: #fefefe;
  border: 2px solid var(--primary);
  border-radius: var(--rounded);
  text-align: center;
}

/* Hero layout */
#hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1080px;
  margin: 40px auto 0 auto;
  padding: 40px 20px;
}

.hero-copy p {
  color: var(--text-light);
}

.hero-image img {
  width: 100%;
  max-width: 380px;
  border-radius: var(--rounded);
  object-fit: cover;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.promo-badge {
  margin-top: 10px;
  font-weight: 600;
  color: var(--accent);
}

/* Benefits layout */
#benefits {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.benefits-image img,
.testimonial-image {
  max-width: 320px;
  border-radius: var(--rounded);
  object-fit: cover;
}

/* Testimonials section */
#testimonials {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Testimonial video + quotes */
.video-testimonial {
  background: #f4f4f4;
  padding: 16px;
  border-radius: var(--rounded);
  margin-bottom: 20px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.video-testimonial video {
  width: 100%;
  border-radius: var(--rounded);
}

.support-testimonials blockquote {
  margin: 8px 0;
  font-style: italic;
  color: var(--text-light);
}

/* FAQ details */
#faq details {
  margin-bottom: 10px;
  background: #f9f9f9;
  padding: 10px 14px;
  border-radius: var(--rounded);
}

/* Company info under header */
.company-info {
  text-align: center;
  color: var(--primary);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.3;
  margin: 8px auto 0 auto;
}

.company-name {
  font-size: 16px;
  font-weight: 700;
}

.company-ppiu {
  font-size: 14px;
  font-weight: 500;
}

.company-info a {
  color: var(--primary);
  text-decoration: none;
}

/* Logo kecil di bawah teks legal */
.company-logo {
  display: block;
  margin: 10px auto 0 auto;
  height: 42px; /* Increase for better visibility */
  width: auto;
  max-width: none; /* Prevent shrinking */
}

/* Instagram Feed */
.instagram-feed {
  margin-top: 32px;
  text-align: center;
}

.instagram-feed h3 {
  margin-bottom: 20px;
  font-size: 18px;
  color: var(--primary);
  font-weight: 700;
}

.instagram-widget,
.instagram-feed iframe {
  width: 100%;
  max-width: 650px;
  height: 650px;
  border: none;
}

/* Mobile overrides */
@media (max-width: 768px) {
  #site-header {
    padding: 6px 12px;
  }

  #site-header .logo {
    height: 36px;
  }

  section {
    padding: 40px 16px;
  }

  #hero {
    flex-direction: column-reverse;
    text-align: center;
    margin: 24px auto 0 auto;
    padding: 32px 16px;
  }

  #benefits {
    flex-direction: column-reverse;
    text-align: left;
    align-items: flex-start;
  }

  .hero-image img {
    max-width: 260px;
    margin: 0 auto 16px;
  }

  .benefits-image img,
  .testimonial-image {
    max-width: 100%;
    margin: 0 auto 16px;
  }

  .video-testimonial,
  .testimonial-image {
    max-width: 100%;
  }

  .cta-group {
    justify-content: center;
  }

  .floating-cta {
    bottom: 15px;
    right: 15px;
  }

  .company-logo {
    height: 36px; /* Larger but still mobile-friendly */
    max-width: none;
  }

  .instagram-widget,
  .instagram-feed iframe {
    height: 400px;
    max-width: 100%;
  }
}