.process-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-inline: 24px;
}

.process-hero {
  padding: 160px 0 90px;
  color: var(--text-light);
  background:
    radial-gradient(circle at 85% 40%, rgba(47, 128, 255, 0.32), transparent 28%),
    linear-gradient(135deg, #030712, #07111f);
}

.process-hero h1 {
  max-width: 850px;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -4px;
  margin-bottom: 24px;
}

.process-hero p:not(.eyebrow) {
  max-width: 650px;
  color: #cbd5e1;
  font-size: 1.1rem;
}

.process-timeline-section,
.expect-section {
  background: #05070d;
  color: var(--text-light);
  padding: 80px 0;
}

.process-heading h2,
.expect-section h2,
.portal-preview-section h2,
.process-cta h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -2px;
}

.process-heading,
.expect-section {
  text-align: center;
}

.process-timeline {
  max-width: 880px;
  margin: 46px auto 0;
  display: grid;
  gap: 22px;
  position: relative;
}

.process-step-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 28px;
  border-radius: 22px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
}

.step-number {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  font-weight: 900;
  box-shadow: var(--shadow-blue);
}

.process-step-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.process-step-card p {
  color: #cbd5e1;
  margin-bottom: 14px;
}

.process-step-card strong {
  color: var(--blue-light);
}

.portal-preview-section {
  padding: 80px 0;
  color: var(--text-light);
  background:
    radial-gradient(circle at 80% 40%, rgba(47, 128, 255, 0.24), transparent 30%),
    linear-gradient(135deg, #07111f, #020617);
  border-block: 1px solid rgba(47,128,255,0.25);
}

.portal-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.portal-grid p {
  color: #cbd5e1;
  margin: 20px 0;
}

.portal-grid ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.portal-grid li {
  color: #dbeafe;
}

.portal-grid li::before {
  content: "✓";
  color: var(--blue-light);
  font-weight: 900;
  margin-right: 10px;
}

.portal-mockup {
  min-height: 360px;
  border-radius: 28px;
  padding: 26px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
}

.portal-topbar {
  height: 48px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 26px;
}

.portal-progress {
  display: grid;
  gap: 12px;
}

.portal-progress div {
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.065);
  color: #94a3b8;
  font-weight: 800;
}

.portal-progress .done {
  color: white;
  background: rgba(16,185,129,0.18);
  border: 1px solid rgba(16,185,129,0.35);
}

.portal-progress .active {
  color: white;
  background: rgba(47,128,255,0.25);
  border: 1px solid rgba(47,128,255,0.5);
}

.portal-card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.portal-card-row div {
  height: 70px;
  border-radius: 16px;
  background: rgba(255,255,255,0.07);
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 38px;
}

.expect-grid div {
  padding: 30px 24px;
  border-radius: 20px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
}

.expect-grid span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(47,128,255,0.16);
  color: var(--blue-light);
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.expect-grid h3 {
  margin-bottom: 10px;
}

.expect-grid p {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.process-cta {
  padding: 60px 0;
  color: var(--text-light);
  background:
    radial-gradient(circle at 90% 30%, rgba(47,128,255,0.24), transparent 30%),
    linear-gradient(135deg, #07111f, #020617);
  border-top: 1px solid rgba(47,128,255,0.25);
}

.process-cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.process-cta p {
  color: #cbd5e1;
  margin-top: 10px;
}

.process-primary-btn {
  min-height: 50px;
  padding: 0 26px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: white;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-blue);
  white-space: nowrap;
}

.center {
  text-align: center;
}

@media (max-width: 900px) {
  .portal-grid,
  .expect-grid {
    grid-template-columns: 1fr;
  }

  .process-cta-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 650px) {
  .process-hero {
    padding-top: 130px;
  }

  .process-hero h1 {
    letter-spacing: -2px;
  }

  .process-step-card {
    grid-template-columns: 1fr;
  }

  .expect-grid {
    grid-template-columns: 1fr;
  }
}