/* tools-cta.css — CTA block + Powered-by bar (shared across all tool pages) */

/* ── CTA Block ── */
.wc-cta-block {
  background: linear-gradient(135deg, rgba(107,63,246,.15) 0%, rgba(157,111,255,.08) 100%);
  border: 1px solid rgba(107,63,246,.4);
  border-radius: 16px;
  padding: 28px 24px;
  margin-bottom: 24px;
  text-align: center;
}
.wc-cta-headline {
  font-size: 18px; font-weight: 900;
  color: #fff; margin-bottom: 6px;
}
.wc-cta-subline {
  font-size: 13px; color: rgba(255,255,255,.6);
  margin-bottom: 18px;
}
.wc-cta-primary {
  display: inline-block;
  background: #9D6FFF; color: #fff;
  font-size: 16px; font-weight: 900;
  padding: 14px 40px; border-radius: 10px;
  text-decoration: none; margin-bottom: 18px;
  transition: background .2s, transform .15s;
  letter-spacing: .04em; box-shadow: 0 4px 16px rgba(107,63,246,.4);
}
.wc-cta-primary:hover { background: #8B5CF6; transform: scale(1.03); }
.wc-cta-social-row {
  display: flex; flex-direction: column; gap: 10px;
}
.wc-cta-tg-ch, .wc-cta-tg-gr {
  display: flex; align-items: center; gap: 12px;
  background: rgba(107,63,246,.1);
  border: 1px solid rgba(107,63,246,.28);
  border-radius: 10px; padding: 12px 16px;
  text-decoration: none; color: #fff;
  font-size: 14px; font-weight: 600;
  transition: border-color .2s, background .2s; text-align: left;
}
.wc-cta-tg-ch:hover, .wc-cta-tg-gr:hover {
  border-color: #9D6FFF; background: rgba(107,63,246,.22);
}
.wc-tg-icon { font-size: 20px; flex-shrink: 0; }
.wc-cta-tg-label { font-size: 11px; color: rgba(255,255,255,.5); font-weight: 400; display: block; }
.wc-cta-tg-name { display: block; }

/* ── Powered-by bar ── */
#wc-powered-bar {
  background: rgba(0,0,0,.45);
  border-top: 1px solid rgba(255,255,255,.07);
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,.38);
  padding: 9px 16px;
  letter-spacing: .04em;
}
#wc-powered-bar a {
  color: rgba(255,255,255,.6); text-decoration: none;
  font-weight: 700; transition: color .2s;
}
#wc-powered-bar a:hover { color: #9D6FFF; }

/* ── Responsive ── */
@media (min-width: 520px) {
  .wc-cta-social-row { flex-direction: row; }
  .wc-cta-tg-ch, .wc-cta-tg-gr { flex: 1; }
}
