* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  background: #f3f5f9;
  color: #0a2342;
  min-height: 100vh;
}
.wire-header {
  background: linear-gradient(135deg, #4b38f5, #6a5cff);
  color: white;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}
.hc {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
}
.back-btn {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0.85;
}
.back-btn:hover {
  opacity: 1;
}
.wire-header h2 {
  font-size: 1.15rem;
  font-weight: 600;
}
.container {
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
}
.page-body {
  padding: 36px 0 80px;
}
.bal-bar {
  background: linear-gradient(135deg, #021633, #0a2342);
  color: white;
  border-radius: 18px;
  padding: 24px 28px;
  margin-bottom: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bal-bar .bal-lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  opacity: 0.65;
  margin-bottom: 5px;
}
.bal-bar .bal-amt {
  font-size: 1.7rem;
  font-weight: 700;
}
.bal-bar .bal-sub {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 3px;
}
.bal-bar-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-label {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding-left: 14px;
  border-left: 4px solid #4b38f5;
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.method-card {
  background: white;
  border-radius: 18px;
  padding: 26px 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: 0.25s;
  border: 2px solid transparent;
  text-decoration: none;
  color: inherit;
  display: block;
}
.method-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  border-color: #4b38f5;
}
.method-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.method-icon.blue {
  background: #f0f2ff;
  color: #4b38f5;
}
.method-icon.orange {
  background: #fff3e0;
  color: #e65100;
}
.method-icon.green {
  background: #e0faf6;
  color: #00897b;
}
.method-icon.teal {
  background: #e8f5e9;
  color: #2e7d32;
}
.method-icon.purple {
  background: #f3e5f5;
  color: #7b1fa2;
}
.method-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.method-card p {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.45;
}
.fee-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  background: #f0f2ff;
  color: #4b38f5;
}
.fee-tag.free {
  background: #e8f5e9;
  color: #2e7d32;
}
.limits-box {
  background: white;
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}
.limits-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.limits-table {
  width: 100%;
  border-collapse: collapse;
}
.limits-table th {
  text-align: left;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #999;
  padding: 0 0 10px;
  border-bottom: 1px solid #f0f2f5;
}
.limits-table td {
  padding: 12px 0;
  border-bottom: 1px solid #f0f2f5;
  font-size: 0.87rem;
}
.limits-table td:last-child {
  text-align: right;
  font-weight: 600;
}
.limits-table tr:last-child td {
  border-bottom: none;
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  background: white;
  border-radius: 20px;
  padding: 36px;
  width: 90%;
  max-width: 380px;
  animation: fadeUp 0.3s ease;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.app-options {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 24px;
}
.app-card {
  background: #f7f8fc;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
  border: 2px solid transparent;
  width: 140px;
}
.app-card:hover {
  border-color: #4b38f5;
}
.app-card img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 8px;
}
.app-card span {
  font-size: 0.85rem;
  font-weight: 600;
  display: block;
}
.close-modal {
  width: 100%;
  padding: 12px;
  background: #f0f0f0;
  border: none;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: "Inter", sans-serif;
}
.dark-mode {
  background: #121212;
  color: #e0e0e0;
}
.dark-mode .method-card,
.dark-mode .limits-box {
  background: #1c1f35;
  color: #e0e0e0;
}
.dark-mode .method-card p {
  color: #aaa;
}
.dark-mode .limits-table td,
.dark-mode .limits-table th {
  border-bottom-color: #2e3250;
}
.dark-mode .limits-table th {
  color: #666;
}
.dark-mode .modal-box {
  background: #1c1f35;
  color: #e0e0e0;
}
.dark-mode .app-card {
  background: #13162a;
}
@media (max-width: 600px) {
  .method-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bal-bar {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}
