.steps {
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.steps-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 26px;
}

.steps-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 247, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #c9f8ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.steps h2 {
  text-align: center;
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 10px;
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

.steps-subtitle {
  max-width: 560px;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.steps-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.step-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 14px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.02)
  );
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(30, 30, 74, 0.9);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.step-item:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 247, 255, 0.22);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.025)
  );
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #041018;
  background: linear-gradient(135deg, var(--neon), var(--neon-strong));
  box-shadow:
    0 0 18px rgba(0, 217, 255, 0.3),
    0 10px 24px rgba(0, 217, 255, 0.16);
}

.step-content h3 {
  font-size: 15.5px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--text);
}

.step-content p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 56ch;
}

.steps-end {
  text-align: center;
  max-width: 680px;
  margin: 18px auto 0;
  font-size: 13px;
  line-height: 1.7;
  color: #b6c3db;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .steps {
    padding: 72px 0 80px;
  }

  .steps-heading {
    margin-bottom: 34px;
  }

  .steps-eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
    padding: 7px 12px;
  }

  .steps h2 {
    max-width: 100%;
    font-size: clamp(26px, 8vw, 34px);
    margin-bottom: 12px;
  }

  .steps-subtitle {
    font-size: 14px;
    line-height: 1.6;
  }

  .steps-flow {
    gap: 16px;
  }

  .step-item {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
    padding: 22px 18px;
  }

  .step-number {
    margin: 0 auto;
  }

  .step-content p {
    max-width: 100%;
    font-size: 14px;
  }

  .steps-end {
    margin-top: 26px;
    font-size: 14px;
  }
}
