/* ════════════════════════════════════════════
   AFRILEAP — ENHANCEMENTS
   Grant Form · Verification Modal · Success Screen
   WhatsApp Float · Toast · Animations
   ════════════════════════════════════════════ */

/* ══════════════════════════════
   APPLICATION FORM SECTION
══════════════════════════════ */
#verify .apply-inner {
  max-width: 780px;
}

.application-form {
  width: 100%;
  text-align: left;
}

.form-box {
  background: rgba(253, 250, 244, 0.03);
  border: 1px solid rgba(212, 146, 10, 0.18);
  border-radius: 24px;
  padding: 36px;
  margin-top: 36px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold2);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-label .label-req {
  color: var(--sol2);
  font-size: 12px;
  line-height: 1;
}

.form-input {
  background: rgba(253, 250, 244, 0.06);
  border: 1.5px solid rgba(212, 146, 10, 0.22);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 15px;
  color: var(--cream);
  outline: none;
  transition: border-color 0.22s, background 0.22s, box-shadow 0.22s;
  width: 100%;
}

.form-input::placeholder {
  color: rgba(245, 237, 216, 0.22);
}

.form-input:focus {
  border-color: var(--gold);
  background: rgba(212, 146, 10, 0.05);
  box-shadow: 0 0 0 3px rgba(212, 146, 10, 0.1);
}

.form-input.input-error {
  border-color: #c0553a;
  background: rgba(184, 74, 30, 0.06);
}

.form-input.input-error:focus {
  box-shadow: 0 0 0 3px rgba(184, 74, 30, 0.12);
}

.form-input.input-valid {
  border-color: rgba(20, 241, 149, 0.4);
}

/* Select */
.form-select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23D4920A' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-select option {
  background: var(--forest2);
  color: var(--cream);
  padding: 8px;
}

/* Mono input (wallet address) */
.form-input-mono {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.5px;
}

/* Field error message */
.field-error {
  font-size: 12px;
  color: #e07a5f;
  min-height: 16px;
  display: block;
  animation: errSlide 0.2s ease;
}

@keyframes errSlide {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Notice banner */
.form-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(153, 69, 255, 0.07);
  border: 1px solid rgba(153, 69, 255, 0.2);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 13px;
  color: rgba(245, 237, 216, 0.5);
  line-height: 1.65;
  margin-bottom: 24px;
}

.form-notice svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(153, 69, 255, 0.7);
}

/* Applicant name preview (inside modal) */
#modalApplicantName {
  font-size: 12px;
  color: var(--sol2);
  font-family: 'DM Mono', monospace;
  background: rgba(20, 241, 149, 0.07);
  border: 1px solid rgba(20, 241, 149, 0.18);
  border-radius: 8px;
  padding: 6px 12px;
  display: inline-block;
  margin-top: 8px;
}

/* ══════════════════════════════
   MODAL OVERLAY
══════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 26, 19, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

.modal-card {
  position: relative;
  z-index: 2;
  background: linear-gradient(160deg, #1e4d34 0%, #143322 60%, #0f2a1d 100%);
  border: 1px solid rgba(212, 146, 10, 0.28);
  border-radius: 28px;
  padding: 36px 32px 28px;
  width: 100%;
  max-width: 530px;
  max-height: 92vh;
  overflow-y: auto;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(212, 146, 10, 0.1),
    inset 0 1px 0 rgba(245, 237, 216, 0.05);
}

.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-card::-webkit-scrollbar       { width: 4px; }
.modal-card::-webkit-scrollbar-track { background: transparent; }
.modal-card::-webkit-scrollbar-thumb { background: rgba(212,146,10,.3); border-radius: 100px; }

/* Close button */
.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  background: rgba(245, 237, 216, 0.07);
  border: 1px solid rgba(245, 237, 216, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(245, 237, 216, 0.45);
  transition: all 0.2s;
  flex-shrink: 0;
}

.modal-close-btn:hover {
  background: rgba(245, 237, 216, 0.14);
  color: var(--cream);
  border-color: rgba(245, 237, 216, 0.22);
  transform: rotate(90deg);
}

/* Modal header */
.modal-header {
  text-align: center;
  margin-bottom: 24px;
  padding-right: 28px;
}

.modal-icon {
  font-size: 30px;
  display: block;
  margin-bottom: 12px;
  animation: iconPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}

@keyframes iconPop {
  from { transform: scale(0.5) rotate(-10deg); opacity: 0; }
  to   { transform: scale(1) rotate(0deg); opacity: 1; }
}

.modal-title {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.7px;
  color: var(--cream);
  margin-bottom: 8px;
  line-height: 1.15;
}

.modal-desc {
  font-size: 13.5px;
  color: rgba(245, 237, 216, 0.48);
  line-height: 1.72;
  max-width: 380px;
  margin: 0 auto;
}

/* ══════════════════════════════
   VERIFICATION WALLET CARD
══════════════════════════════ */
.verify-wallet-card {
  background: rgba(253, 250, 244, 0.035);
  border: 1px solid rgba(212, 146, 10, 0.28);
  border-radius: 20px;
  padding: 22px;
  margin-bottom: 16px;
  transition: border-color 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.verify-wallet-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(ellipse at top right, rgba(212,146,10,0.07), transparent 70%);
  pointer-events: none;
}

.verify-wallet-card:hover {
  border-color: rgba(212, 146, 10, 0.48);
  box-shadow: 0 8px 32px rgba(212, 146, 10, 0.08);
}

/* Card header row */
.vwc-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.vwc-live-dot {
  width: 7px;
  height: 7px;
  background: var(--sol2);
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 1.4s ease-in-out infinite;
}

.vwc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold2);
}

.vwc-chain-badge {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(153, 69, 255, 0.1);
  border: 1px solid rgba(153, 69, 255, 0.2);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  color: #b07fff;
  letter-spacing: 0.5px;
}

.vwc-chain-badge .sol-glyph {
  font-size: 11px;
}

/* Address row */
.vwc-address-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.vwc-address {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--cream);
  background: rgba(253, 250, 244, 0.05);
  border: 1px solid rgba(212, 146, 10, 0.15);
  border-radius: 8px;
  padding: 9px 12px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: 0.4px;
  line-height: 1;
  user-select: all;
}

.vwc-copy-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 146, 10, 0.1);
  border: 1px solid rgba(212, 146, 10, 0.28);
  border-radius: 8px;
  padding: 9px 14px;
  color: var(--gold2);
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.vwc-copy-btn:hover {
  background: rgba(212, 146, 10, 0.2);
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 146, 10, 0.2);
}

.vwc-copy-btn.copied {
  background: rgba(20, 241, 149, 0.1);
  border-color: rgba(20, 241, 149, 0.35);
  color: var(--sol2);
}

/* Divider */
.vwc-divider {
  height: 1px;
  background: rgba(212, 146, 10, 0.1);
  margin-bottom: 18px;
}

/* Bottom area: QR + amount/status */
.vwc-bottom {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  align-items: start;
}

/* QR code box */
.vwc-qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

#qrCode {
  background: var(--cream);
  border-radius: 10px;
  padding: 7px;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

#qrCode img,
#qrCode canvas {
  width: 82px !important;
  height: 82px !important;
  display: block;
  border-radius: 4px;
}

.vwc-qr-label {
  font-size: 10px;
  color: rgba(245, 237, 216, 0.28);
  text-align: center;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 700;
}

/* Amount block */
.vwc-amount-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 2px;
}

.vwc-amount-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.35);
  margin-bottom: 2px;
}

.vwc-amount-value {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--gold2);
  letter-spacing: -1px;
  line-height: 1;
}

.vwc-amount-value span {
  font-size: 13px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(245, 237, 216, 0.38);
}

.vwc-amount-note {
  font-size: 11px;
  color: rgba(245, 237, 216, 0.28);
  line-height: 1.55;
  margin-bottom: 14px;
}

/* ══════════════════════════════
   STATUS BADGES
══════════════════════════════ */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  padding: 7px 13px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
  animation: statusFadeIn 0.3s ease;
}

@keyframes statusFadeIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

.status-waiting {
  background: rgba(212, 146, 10, 0.1);
  border: 1px solid rgba(212, 146, 10, 0.28);
  color: var(--gold2);
}

.status-verifying {
  background: rgba(153, 69, 255, 0.1);
  border: 1px solid rgba(153, 69, 255, 0.3);
  color: #c097ff;
}

.status-success-badge {
  background: rgba(20, 241, 149, 0.1);
  border: 1px solid rgba(20, 241, 149, 0.3);
  color: var(--sol2);
}

.status-failed {
  background: rgba(184, 74, 30, 0.12);
  border: 1px solid rgba(184, 74, 30, 0.3);
  color: #e88060;
}

/* Animated status indicators */
.status-ring {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid var(--gold2);
  flex-shrink: 0;
  animation: ringPulse 1.6s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.5; }
}

.status-spinner {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(153, 69, 255, 0.3);
  border-top-color: #c097ff;
  flex-shrink: 0;
  animation: spin 0.75s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.status-check-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--sol2);
  color: #0a2015;
  font-size: 9px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.status-x-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--rust);
  color: white;
  font-size: 9px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ══════════════════════════════
   DEMO SIMULATION CONTROL
══════════════════════════════ */
.demo-control {
  background: rgba(153, 69, 255, 0.05);
  border: 1px dashed rgba(153, 69, 255, 0.25);
  border-radius: 12px;
  padding: 14px 18px;
  text-align: center;
  margin-bottom: 16px;
}

.demo-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(153, 69, 255, 0.5);
  margin-bottom: 8px;
  display: block;
}

.demo-sim-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(153, 69, 255, 0.12);
  border: 1px solid rgba(153, 69, 255, 0.35);
  border-radius: 8px;
  padding: 9px 18px;
  color: #c097ff;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.demo-sim-btn:hover:not(:disabled) {
  background: rgba(153, 69, 255, 0.22);
  transform: translateY(-1px);
}

.demo-sim-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ══════════════════════════════
   MODAL FOOTER (WhatsApp + Disclaimer)
══════════════════════════════ */
.modal-footer-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 6px;
}

.modal-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.28);
  border-radius: 100px;
  padding: 10px 22px;
  color: #25D366;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.modal-wa-btn:hover {
  background: rgba(37, 211, 102, 0.18);
  border-color: rgba(37, 211, 102, 0.48);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.15);
}

.modal-disclaimer {
  font-size: 11px;
  color: rgba(245, 237, 216, 0.2);
  text-align: center;
  line-height: 1.55;
  font-style: italic;
  max-width: 340px;
}

/* ══════════════════════════════
   COPY TOAST NOTIFICATION
══════════════════════════════ */
.copy-toast {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--sol2);
  color: #0a2015;
  border-radius: 100px;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Cabinet Grotesk', sans-serif;
  box-shadow: 0 8px 28px rgba(20, 241, 149, 0.45);
  transform: translateY(-14px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  white-space: nowrap;
}

.copy-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ══════════════════════════════
   FLOATING WHATSAPP BUTTON
══════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.42);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wa-float:hover {
  transform: scale(1.14) translateY(-2px);
  box-shadow: 0 12px 34px rgba(37, 211, 102, 0.55);
}

.wa-float-pulse {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.22);
  animation: waPulse 2.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes waPulse {
  0%, 100% { transform: scale(1);   opacity: 0.6; }
  60%       { transform: scale(1.25); opacity: 0;   }
}

/* Tooltip on hover */
.wa-float-tooltip {
  position: absolute;
  right: 66px;
  bottom: 50%;
  transform: translateY(50%);
  background: var(--ink);
  color: var(--cream);
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}

.wa-float-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: none;
  border-left-color: var(--ink);
}

.wa-float:hover .wa-float-tooltip {
  opacity: 1;
}

/* ══════════════════════════════
   SUCCESS OVERLAY & CARD
══════════════════════════════ */
.success-overlay {
  /* inherits .modal-overlay */
}

.success-modal-card {
  position: relative;
  z-index: 2;
  background: linear-gradient(160deg, #1e4d34 0%, #143322 60%, #0f2a1d 100%);
  border: 1px solid rgba(20, 241, 149, 0.22);
  border-radius: 28px;
  padding: 52px 44px 44px;
  width: 100%;
  max-width: 490px;
  text-align: center;
  transform: translateY(28px) scale(0.93);
  transition: transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(20, 241, 149, 0.08),
    0 0 60px rgba(20, 241, 149, 0.07),
    inset 0 1px 0 rgba(245, 237, 216, 0.04);
}

.success-overlay.active .success-modal-card {
  transform: translateY(0) scale(1);
}

/* SVG checkmark animation */
.success-check-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 6px;
}

.success-svg {
  width: 76px;
  height: 76px;
}

.success-circle {
  fill: none;
  stroke: var(--sol2);
  stroke-width: 2.2;
  stroke-dasharray: 201;
  stroke-dashoffset: 201;
  transition: stroke-dashoffset 0.65s ease 0.15s;
}

.success-path {
  fill: none;
  stroke: var(--sol2);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  transition: stroke-dashoffset 0.42s ease 0.72s;
}

.success-overlay.active .success-circle {
  stroke-dashoffset: 0;
}

.success-overlay.active .success-path {
  stroke-dashoffset: 0;
}

.success-emoji {
  font-size: 44px;
  display: block;
  margin-bottom: 18px;
  animation: successPop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
}

@keyframes successPop {
  from { transform: scale(0) rotate(-15deg); opacity: 0; }
  to   { transform: scale(1) rotate(0deg); opacity: 1; }
}

.success-title {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 30px;
  letter-spacing: -1.2px;
  color: var(--sol2);
  margin-bottom: 5px;
  line-height: 1;
}

.success-congrats {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 20px;
  color: var(--gold2);
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.success-desc {
  font-size: 15px;
  color: rgba(245, 237, 216, 0.58);
  line-height: 1.8;
  margin-bottom: 10px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.success-stay {
  font-size: 13px;
  color: rgba(245, 237, 216, 0.35);
  margin-bottom: 36px;
  font-style: italic;
}

.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.success-btn-home {
  background: var(--gold);
  color: var(--forest);
  border: none;
  border-radius: 14px;
  padding: 14px 32px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: -0.3px;
  box-shadow: 0 6px 20px rgba(212, 146, 10, 0.3);
}

.success-btn-home:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 146, 10, 0.42);
}

.success-btn-support {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.28);
  border-radius: 14px;
  padding: 14px 26px;
  color: #25D366;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.success-btn-support:hover {
  background: rgba(37, 211, 102, 0.18);
  border-color: rgba(37, 211, 102, 0.48);
  transform: translateY(-2px);
}

/* TX badge */
.success-tx-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(20, 241, 149, 0.07);
  border: 1px solid rgba(20, 241, 149, 0.18);
  border-radius: 100px;
  padding: 7px 16px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--sol2);
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.tx-dot {
  width: 6px; height: 6px;
  background: var(--sol2);
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}

/* ══════════════════════════════
   RESPONSIVE — ENHANCEMENTS
══════════════════════════════ */
@media (max-width: 900px) {
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-box {
    padding: 24px 20px;
  }

  .modal-card {
    padding: 28px 20px 24px;
    border-radius: 22px;
    max-height: 88vh;
  }

  .vwc-bottom {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vwc-qr-wrap {
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }

  .vwc-amount-value {
    font-size: 22px;
  }

  .success-modal-card {
    padding: 40px 24px 36px;
    border-radius: 22px;
  }

  .success-title { font-size: 24px; }
  .success-emoji { font-size: 36px; }

  .success-actions {
    flex-direction: column;
  }

  .success-btn-home,
  .success-btn-support {
    width: 100%;
    justify-content: center;
  }

  .wa-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .copy-toast {
    top: 14px;
    right: 14px;
    font-size: 12px;
    padding: 9px 15px;
  }

  .wa-float-tooltip {
    display: none;
  }
}