:root {
  --m-c1: #ff2d75;
  --m-c2: #7b2dff;
  --m-c3: #00e5ff;
  --m-bg-dark: #0a0418;
  --m-bg-card: #15082b;
  --m-border: rgba(255, 45, 117, 0.2);
  --m-grad: linear-gradient(135deg, #ff2d75 0%, #7b2dff 100%);
  --m-grad2: linear-gradient(135deg, #7b2dff 0%, #00e5ff 100%);
  --m-shadow: 0 20px 60px rgba(123, 45, 255, 0.35);
  --m-rad: 20px;
}

html, body { overflow-x: hidden; max-width: 100vw; }

.m-pay-wrap {
  color: #f0e8ff;
  padding: 60px 0;
}

.m-hero {
  background: radial-gradient(ellipse at top right, rgba(255, 45, 117, 0.25), transparent 50%),
              radial-gradient(ellipse at bottom left, rgba(0, 229, 255, 0.2), transparent 50%),
              var(--m-bg-dark);
  border: 1px solid var(--m-border);
  border-radius: var(--m-rad);
  box-shadow: var(--m-shadow);
  margin-bottom: 50px;
  overflow: hidden;
  padding: 60px 40px;
  position: relative;
}

.m-hero::before {
  background: var(--m-grad);
  border-radius: 50%;
  content: '';
  filter: blur(80px);
  height: 200px;
  opacity: 0.4;
  position: absolute;
  right: 3%;
  top: 5%;
  width: 200px;
}

.m-badge {
  background: rgba(255, 45, 117, 0.15);
  border: 1px solid var(--m-c1);
  border-radius: 50px;
  color: #ff6ba0;
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding: 8px 18px;
  position: relative;
  text-transform: uppercase;
}

.m-hero h1 {
  background: linear-gradient(135deg, #fff 0%, #ff6ba0 50%, #a06bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 20px;
  position: relative;
}

.m-hero-lead {
  color: #c8b8e0;
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 700px;
  position: relative;
}

.m-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}

.m-trust-item {
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  gap: 12px;
  padding: 14px 20px;
}

.m-trust-num {
  background: var(--m-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.5rem;
  font-weight: 800;
}

.m-trust-lbl {
  color: #c8b8e0;
  font-size: 0.85rem;
}

.m-cta-hero {
  background: var(--m-grad);
  border: none;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(255, 45, 117, 0.5);
  color: #fff;
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 30px;
  padding: 16px 40px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.3s, box-shadow 0.3s;
}

.m-cta-hero:hover {
  box-shadow: 0 15px 40px rgba(255, 45, 117, 0.7);
  color: #fff;
  transform: translateY(-3px);
}

.m-section {
  margin-bottom: 60px;
}

.m-section h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 30px;
  padding-left: 20px;
  position: relative;
}

.m-section h2::before {
  background: var(--m-grad);
  border-radius: 4px;
  bottom: 5px;
  content: '';
  left: 0;
  position: absolute;
  top: 5px;
  width: 5px;
}

.m-section h3 {
  color: #ff6ba0;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 30px 0 18px;
}

.m-section p {
  color: #c8b8e0;
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.m-method-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.m-method-card {
  background: linear-gradient(145deg, var(--m-bg-card), rgba(21, 8, 43, 0.6));
  border: 1px solid var(--m-border);
  border-radius: 16px;
  overflow: hidden;
  padding: 28px;
  position: relative;
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.m-method-card::before {
  background: var(--m-grad);
  content: '';
  height: 3px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.m-method-card:nth-child(2)::before { background: var(--m-grad2); }
.m-method-card:nth-child(3)::before { background: linear-gradient(135deg, #00e5ff, #ff2d75); }
.m-method-card:nth-child(4)::before { background: linear-gradient(135deg, #ffb800, #ff2d75); }
.m-method-card:nth-child(5)::before { background: linear-gradient(135deg, #00ff88, #00e5ff); }

.m-method-card:hover {
  border-color: rgba(255, 45, 117, 0.5);
  box-shadow: 0 15px 40px rgba(123, 45, 255, 0.3);
  transform: translateY(-6px);
}

.m-method-card h4 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.m-method-card p {
  color: #c8b8e0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.m-steps {
  counter-reset: step;
  display: grid;
  gap: 18px;
  list-style: none;
  margin: 30px 0;
  padding: 0;
}

.m-steps li {
  align-items: flex-start;
  background: linear-gradient(135deg, var(--m-bg-card), rgba(21, 8, 43, 0.5));
  border: 1px solid var(--m-border);
  border-radius: 14px;
  color: #e0d4f5;
  counter-increment: step;
  display: flex;
  gap: 20px;
  padding: 20px 24px;
  position: relative;
  transition: transform 0.3s;
}

.m-steps li:hover {
  transform: translateX(6px);
}

.m-steps li::before {
  align-items: center;
  background: var(--m-grad);
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(255, 45, 117, 0.4);
  color: #fff;
  content: counter(step);
  display: flex;
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.m-info-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.m-info-box {
  background: linear-gradient(145deg, rgba(123, 45, 255, 0.12), rgba(21, 8, 43, 0.6));
  border: 1px solid rgba(123, 45, 255, 0.3);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.m-info-box:hover {
  box-shadow: 0 12px 35px rgba(123, 45, 255, 0.25);
  transform: translateY(-4px);
}

.m-info-box h4 {
  color: #ff6ba0;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.m-info-box .m-amount {
  background: var(--m-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.m-info-box p {
  color: #c8b8e0;
  font-size: 0.92rem;
  margin: 0;
}

.m-timeline {
  display: grid;
  gap: 16px;
  margin: 30px 0;
}

.m-timeline-item {
  align-items: center;
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.08), transparent);
  border-left: 4px solid var(--m-c3);
  border-radius: 12px;
  display: flex;
  gap: 20px;
  padding: 18px 24px;
  transition: transform 0.3s, background 0.3s;
}

.m-timeline-item:nth-child(2) { border-left-color: var(--m-c1); background: linear-gradient(90deg, rgba(255, 45, 117, 0.08), transparent); }
.m-timeline-item:nth-child(3) { border-left-color: var(--m-c2); background: linear-gradient(90deg, rgba(123, 45, 255, 0.08), transparent); }
.m-timeline-item:nth-child(4) { border-left-color: #ffb800; background: linear-gradient(90deg, rgba(255, 184, 0, 0.08), transparent); }

.m-timeline-item:hover {
  transform: translateX(8px);
}

.m-tl-method {
  color: #fff;
  font-weight: 700;
  min-width: 200px;
}

.m-tl-time {
  color: #c8b8e0;
  flex: 1;
}

.m-security {
  background: radial-gradient(circle at 20% 50%, rgba(0, 229, 255, 0.15), transparent 60%),
              linear-gradient(145deg, var(--m-bg-card), rgba(10, 4, 24, 0.8));
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: var(--m-rad);
  padding: 40px;
  position: relative;
}

.m-sec-icon {
  align-items: center;
  background: linear-gradient(135deg, #00e5ff, #7b2dff);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.4);
  display: flex;
  font-size: 2rem;
  font-weight: 800;
  height: 70px;
  justify-content: center;
  margin-bottom: 24px;
  width: 70px;
}

.table-responsive {
  border-radius: var(--m-rad);
  margin: 30px 0;
  overflow-x: auto;
}

.m-table {
  background: var(--m-bg-card);
  border-collapse: collapse;
  border-radius: var(--m-rad);
  overflow: hidden;
  width: 100%;
}

.m-table thead {
  background: var(--m-grad);
}

.m-table th {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 18px 22px;
  text-align: left;
  text-transform: uppercase;
}

.m-table td {
  border-top: 1px solid var(--m-border);
  color: #e0d4f5;
  padding: 18px 22px;
}

.m-table tbody tr {
  transition: background 0.3s;
}

.m-table tbody tr:hover {
  background: rgba(255, 45, 117, 0.08);
}

.m-table td:first-child {
  color: #ff6ba0;
  font-weight: 700;
}

.m-faq {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.m-faq-item {
  background: linear-gradient(135deg, var(--m-bg-card), rgba(21, 8, 43, 0.5));
  border: 1px solid var(--m-border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.m-faq-item:hover {
  border-color: rgba(255, 45, 117, 0.5);
}

.m-faq-q {
  align-items: center;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 1.05rem;
  font-weight: 600;
  justify-content: space-between;
  list-style: none;
  padding: 22px 26px;
  transition: color 0.3s;
}

.m-faq-q::-webkit-details-marker { display: none; }

.m-faq-q::after {
  background: var(--m-grad);
  border-radius: 50%;
  color: #fff;
  content: '+';
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 700;
  height: 32px;
  line-height: 30px;
  margin-left: 16px;
  text-align: center;
  transition: transform 0.3s;
  width: 32px;
}

.m-faq-item[open] .m-faq-q::after {
  transform: rotate(45deg);
}

.m-faq-item[open] .m-faq-q {
  color: #ff6ba0;
}

.m-faq-a {
  color: #c8b8e0;
  line-height: 1.7;
  padding: 0 26px 24px;
}

.m-final {
  background: radial-gradient(ellipse at center, rgba(255, 45, 117, 0.2), transparent 70%),
              linear-gradient(145deg, var(--m-bg-card), var(--m-bg-dark));
  border: 1px solid var(--m-border);
  border-radius: var(--m-rad);
  margin-top: 40px;
  padding: 50px 30px;
  text-align: center;
}

.m-final h3 {
  color: #fff !important;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.m-final p {
  color: #c8b8e0;
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .m-hero { padding: 40px 24px; }
  .m-security { padding: 30px 22px; }
  .m-tl-method { min-width: auto; }
  .m-timeline-item { flex-direction: column; align-items: flex-start; gap: 6px; }
  .m-table th, .m-table td { padding: 14px 12px; font-size: 0.9rem; }
}