.tp-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.tp-btn--pill {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.55);
}
.tp-btn--pill:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.2);
  color: #f5f5f5;
}

.tp-strip {
  text-align: center;
  padding: clamp(24px, 3.5vh, 40px) 28px;
}
.tp-strip-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin: 0 0 14px;
}
.tp-strip-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.tp-strip-sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .tp-strip-actions { gap: 8px; }
  .tp-btn--pill { padding: 7px 14px; font-size: 12px; }
  .tp-strip-sep { display: none; }
}

.ft-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: clamp(12px, 2vw, 18px) 0 clamp(14px, 2vw, 18px);
  padding: 0;
  font-size: 12px;
  color: rgba(255,255,255,0.22);
}
.ft-trust a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 12px;
}
.ft-trust a:hover { color: rgba(255,255,255,0.65); }
.ft-trust-sep { color: rgba(255,255,255,0.1); }

.tp-success-cta {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.tp-success-text {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin: 0 0 10px;
  line-height: 1.5;
}
.tp-success-cta .tp-btn { font-size: 12px; }
.tp-success-cta .tp-btn--pill { padding: 6px 14px; }
