/* Social icons */
.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.625rem;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.social-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}
.social-icon:hover {
  transform: translateY(-2px);
}
.social-icon--instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}
.social-icon--facebook:hover {
  background: #1877f2;
  color: #fff;
}
.social-icon--channel:hover,
.social-icon--whatsapp:hover {
  background: #25d366;
  color: #fff;
}

[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
[data-animate-delay="4"] { transition-delay: 0.4s; }

/* Hero */
.hero-pattern {
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

/* Cards */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}
.card-gold-top {
  border-top: 3px solid transparent;
}
.card-gold-top:hover {
  border-top-color: #c9a227;
}

/* Stats divider */
@media (min-width: 768px) {
  .stat-item + .stat-item {
    border-left: 1px solid #e2e8f0;
  }
}

/* FAQ */
.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] {
  border-color: #c9a227;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: #0f172a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: #c9a227;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item .faq-body {
  padding: 0 1.5rem 1.25rem;
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, #c9a227, #e8c547);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 162, 39, 0.45);
}

/* Area pills */
.area-pill {
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.area-pill:hover {
  background: #0f172a;
  color: #e8c547;
  transform: translateY(-2px);
}

/* Nav active underline */
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #c9a227;
  transition: width 0.25s;
}
.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

/* Process step line */
.process-line {
  background: linear-gradient(90deg, #c9a227, #0f172a);
  height: 2px;
}
