/* ELEVA MEDIA Button Design Overrides */
.btn { border-radius: 0; text-decoration: none; }
.btn-primary { border-radius: 0; }
.btn-outline { border-radius: 0; }
.nav-toggle { border-radius: 0; }

/* Social icons: size consistency and spacing */
.socials a { display: inline-flex; align-items: center; justify-content: center; padding: 4px; }
.socials a img { width: 24px; height: 24px; display: inline-block; object-fit: contain; }

/* Anchor offset for sticky header: ensure target sections are fully visible */
#kontak { scroll-margin-top: 84px; }
@media (max-width: 768px) { #kontak { scroll-margin-top: 96px; } }

/* Reserve space for dynamic sections to reduce layout shift on initial render */
#portfolio-list { min-height: 340px; }
#faq-list { min-height: 0; }

/* FAQ mengikuti lebar container */
#faq-list.accordion {
  width: 100%;
  max-width: none;
  margin: 0; /* rata kiri, ikuti container */
  align-items: start; /* hindari item stretch tinggi */
  grid-auto-rows: auto;
}
#faq-list .accordion-item { width: 100%; }
#pricing { min-height: 380px; }

/* Pricing UI improvements: lebih rapi dan nyaman dibaca */
.tier {
  box-shadow: 0 8px 22px rgba(2, 6, 23, .06);
  transition: transform .15s ease, box-shadow .15s ease;
}
.tier:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(2, 6, 23, .10); }
.tier h3 { font-size: 18px; letter-spacing: .2px; }
.tier .price { font-size: 24px; margin: 6px 0 12px; }
.tier .price-original { font-size: 14px; color: #6b7280; text-decoration: line-through; margin: 2px 0 4px; }
.tier .badge-promo { display: inline-block; background: rgba(2, 132, 199, .12); color: var(--blue); border-radius: 10px; padding: 2px 8px; font-size: 12px; margin-left: 6px; vertical-align: middle; }
.tier ul { list-style: none; padding: 0; margin: 10px 0 16px; }
.tier ul li {
  position: relative; padding-left: 28px;
  margin: 8px 0; line-height: 1.6;
}
.tier ul li::before {
  content: '✓';
  position: absolute; left: 0; top: 2px;
  color: var(--blue);
  background: rgba(2, 132, 199, .12);
  border-radius: 6px; width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
}
.tier .btn { width: 100%; }
