/* WhatsApp group CTA — shared on landing + thank you */
:root {
  --wa-green: #25d366;
  --wa-green-dark: #1da851;
}

.ty-wa-block {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(37, 211, 102, 0.35);
  background: linear-gradient(180deg, rgba(37, 211, 102, 0.1), rgba(5, 8, 10, 0.85));
  text-align: center;
  box-shadow: 0 0 32px rgba(37, 211, 102, 0.08);
}

.ty-wa-block__label {
  margin: 0 0 0.35rem;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #afffc1;
}

.ty-wa-block__text {
  margin: 0 0 0.85rem;
  font-size: 0.86rem;
  color: #d6ffe4;
  line-height: 1.45;
}

.ty-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 50px;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: Outfit, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--wa-green) 0%, var(--wa-green-dark) 100%);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
  transition: transform 0.14s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.ty-wa-btn:hover {
  filter: brightness(1.05);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transform: translateY(-1px);
}

.ty-wa-btn:active {
  transform: scale(0.98);
}

.ty-wa-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.ty-wa-btn__sub {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.92;
  margin-top: 0.1rem;
}

/* Floating button — main landing page */
.wa-float {
  position: fixed;
  right: 16px;
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 150;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem 0.7rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 211, 102, 0.45);
  background: linear-gradient(135deg, var(--wa-green) 0%, var(--wa-green-dark) 100%);
  color: #fff;
  font-family: Outfit, system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: waPulse 2.8s ease-in-out infinite;
  transition: transform 0.14s ease;
}

.wa-float:hover {
  transform: translateY(-2px) scale(1.02);
  color: #fff;
}

.wa-float:active {
  transform: scale(0.97);
}

.wa-float svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.wa-float__text {
  line-height: 1.15;
}

.wa-float__text small {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  opacity: 0.9;
}

@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
  }
  50% {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55), 0 0 20px rgba(37, 211, 102, 0.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float {
    animation: none;
  }
}

@media (max-width: 767px) {
  .wa-float {
    right: 12px;
    bottom: max(72px, calc(12px + env(safe-area-inset-bottom)));
  }
}
