/* Premium enhancements on top of original design */
.stats-strip {
  padding: 28px 0;
  background: linear-gradient(90deg, #101216, #191d24);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.stats-grid-public {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.stat-item-public {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.stat-item-public strong {
  display: block;
  font-size: clamp(28px, 4vw, 42px);
  color: #fff;
  letter-spacing: -.04em;
}
.stat-item-public span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 700;
}
.premium-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.trust-card {
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(17,19,24,.08);
  box-shadow: 0 16px 40px rgba(17,19,24,.06);
}
.trust-card b { display: block; margin-bottom: 6px; color: #111318; }
.trust-card span { color: #5d6470; font-size: 14px; }
.faq-grid {
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid rgba(17,19,24,.10);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  font-weight: 800;
  color: #111318;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  padding: 0 20px 18px;
  border-top: 1px solid rgba(17,19,24,.06);
}
.contact-premium {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  align-items: start;
}
.contact-cards {
  display: grid;
  gap: 12px;
}
.contact-card {
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(17,19,24,.08);
}
.contact-card b { display: block; margin-bottom: 6px; }
.map-open-link {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 800;
}
.map-open-link a {
  color: var(--red);
  text-decoration: none;
}
.map-open-link a:hover { text-decoration: underline; }
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: var(--z-float);
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(37,211,102,.28);
}
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: var(--z-float);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(226,30,47,.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease, background .2s ease;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--red2);
  transform: translateY(-2px);
}
.back-to-top.visible:hover {
  transform: translateY(-2px);
}
.hero-title span { color: var(--red); }
@media (max-width: 900px) {
  .stats-grid-public, .premium-trust, .contact-premium { grid-template-columns: 1fr; }
  .back-to-top {
    right: max(18px, env(safe-area-inset-right));
    bottom: 82px;
    width: 44px;
    height: 44px;
  }
  .whatsapp-float {
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    max-width: calc(100vw - 36px);
  }
}
