
.layout-container {
  max-width: 960px;
  padding: 0 1.5rem;
  margin: 0 auto;
}

.page-header {
  text-align: center;
  padding: 12px 0 8px;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.page-lead {
  color: var(--color-foreground-500);
  font-size: 1.05rem;
  margin: 0;
}

.process-wrapper {
  margin-top: 2rem;
  margin-bottom: 4rem;
  position: relative;
  padding: 0.5rem 0;
}

.process-wrapper::before {
  content: "";
  position: absolute;
  left: 26px;
  top: calc(1.75rem + 26px);
  bottom: calc(1.75rem + 52px);
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2563eb 0%, #22c55e 100%);
  opacity: 0.45;
  z-index: 0;
}

.process-step {
  display: flex;
  gap: 2rem;
  position: relative;
  z-index: 1;
  padding: 1.75rem 0;
  align-items: flex-start;
}

.process-icon-holder {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #1e3a8a);
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 45px rgba(30, 64, 175, 0.25);
  flex-shrink: 0;
}

.process-step--final .process-icon-holder {
  background: linear-gradient(135deg, #16a34a, #15803d);
  box-shadow: 0 18px 45px rgba(21, 128, 61, 0.25);
}

.process-card {
  position: relative;
  z-index: 1;
  flex: 1;
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  padding: 1.75rem 1.75rem 1.75rem 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 65px rgba(15, 23, 42, 0.18);
}

.process-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
}

.process-step--final .process-card__icon {
  background: rgba(34, 197, 94, 0.12);
}

.process-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.process-card__title {
  font-size: 16px !important;
  font-weight: 700;
  margin: 0;
}

.process-card__text {
  color: var(--color-foreground-500);
  line-height: 1.6;
  font-size: 16px;
  margin: 0;
}

.process-footer {
  text-align: center;
  margin-top: 2.5rem;
}

.btn-primary {
  background: #1f3c8d;
  border: none;
  color: #ffffff;
  border-radius: 12px;
  padding: 0.75rem 2.25rem;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 10px 22px rgba(31, 60, 141, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  text-decoration: none;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #1b357f;
  box-shadow: 0 12px 26px rgba(31, 60, 141, 0.32);
  transform: translateY(-1px);
}

.process-caption {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-foreground-500);
}

.page-footer {
  text-align: center;
  padding: 2rem 1rem 3rem;
  color: var(--color-foreground-500);
  font-size: 0.85rem;
}

@media (max-width: 767px) {
  .process-wrapper::before {
    display: none;
  }

  .process-step {
    flex-direction: column;
    padding-left: 0;
    gap: 1rem;
  }

  .process-step::before,
  .process-step::after {
    display: none;
  }

  .process-icon-holder {
    margin-left: 0;
  }

  .process-card {
    width: 100%;
    margin-left: 0;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
  }
}
