/* ===== PROCESS SECTION ===== */
.process-section {
  background: var(--bg-dark);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.process-section .process-container {
  max-width: 1000px;                  /* narrower than global container */
  margin: 0 auto;                    /* center align */
  padding: 0 40px;                   /* inner spacing */
  text-align: center;
}

.process-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.process-badge {
  display: inline-block;
  font-family: var(--font-accent);
  font-weight: 600;
  letter-spacing: 1px;
  background: rgba(0, 229, 255, 0.1);
  color: var(--accent-cyan);
  border: 1px solid var(--accent-cyan);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.process-title {
  font-size: 2.5rem;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
  text-shadow: var(--shadow-neon);
}

.process-subtitle {
  color: var(--text-body);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* TABLE WRAPPER */
.process-table-wrapper {
  position: relative;
  z-index: 2;
  overflow-x: auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.05);
}

/* TABLE STYLING */
.process-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(18, 18, 26, 0.7);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(125, 61, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.process-table thead {
  background: rgba(125, 61, 255, 0.15);
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.process-table th, 
.process-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  color: var(--text-body);
  font-family: var(--font-body);
  border-bottom: 1px solid rgba(125, 61, 255, 0.1);
}

.process-table th:first-child,
.process-table td:first-child {
  text-align: center;
  color: var(--accent-cyan);
  font-weight: 600;
  font-family: var(--font-heading);
}

.process-table tbody tr:hover {
  background: rgba(125, 61, 255, 0.1);
  transition: 0.3s ease;
  box-shadow: inset 0 0 10px rgba(0, 229, 255, 0.15);
}

.process-table tbody tr:last-child td {
  border-bottom: none;
}

/* BACKGROUND GRID EFFECT */
.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(125, 61, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 61, 255, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.05;
  z-index: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .process-section {
    padding: 3rem 0;
  }

  .process-title {
    font-size: 2rem;
  }

  .process-table th, 
  .process-table td {
    padding: 0.75rem;
    font-size: 0.95rem;
  }
}
