/* ==========================================================================
   PAYMENT PROCEDURE STYLING GRID COMPONENTS
   ========================================================================== */

/* Billing methods grid structure */
.billing-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.method-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.method-card:hover {
  border-color: #446084;
  transform: translateY(-2px);
}

.method-card .method-icon {
  font-size: 24px;
  color: #446084;
  margin-bottom: 12px;
}

.method-card h5 {
  margin: 0 0 8px 0;
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
}

.method-card p {
  font-size: 13.5px !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  color: #64748b;
}

/* Process step timelines for staging builds */
.process-steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
  position: relative;
}

.process-steps-timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background-color: #e2e8f0;
}

.step-item {
  display: flex;
  flex-direction: column;
  padding-left: 55px;
  position: relative;
}

.step-item .step-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  background-color: #f1f5f9;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #446084;
  z-index: 2;
}

.step-item strong {
  font-size: 15px;
  color: #334155;
  margin-bottom: 4px;
}

.step-item p {
  font-size: 13.5px !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  color: #64748b;
}

/* Mobile responsive fixes for payment layouts */
@media (max-width: 768px) {
  .process-steps-timeline::before {
    display: none;
  }
  .step-item {
    padding-left: 0;
    margin-top: 40px;
  }
  .step-item .step-num {
    position: relative;
    margin-bottom: 10px;
  }
}
