.process-section {
  position: relative;
  overflow: hidden;

  padding:
    110px
    max(var(--side-padding), calc((100vw - var(--container)) / 2));

  background:
    radial-gradient(circle at 82% 16%, rgba(var(--accent-rgb), .16), transparent 28%),
    radial-gradient(circle at 12% 70%, rgba(34,85,115,.28), transparent 34%),
    linear-gradient(135deg, var(--bg-main) 0%, var(--bg-blue) 52%, var(--bg-main) 100%);

  color: var(--text-main);
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);

  background-size: 86px 86px;
  opacity: .5;

  pointer-events: none;
}

.process-section::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(180deg, rgba(var(--bg-main-rgb), .94) 0%, transparent 22%, rgba(var(--bg-main-rgb), .94) 100%),
    linear-gradient(90deg, rgba(var(--bg-main-rgb), .86) 0%, transparent 50%, rgba(var(--bg-main-rgb), .55) 100%);

  pointer-events: none;
}

.process-decor {
  position: absolute;
  top: 50px;
  right: -90px;

  width: 520px;
  height: 520px;

  border: 1px solid rgba(var(--accent-rgb), .22);
  border-radius: 50%;

  background:
    radial-gradient(circle, rgba(var(--accent-rgb), .12), transparent 58%);

  opacity: .72;

  filter: blur(.2px);

  pointer-events: none;
}

.process-decor::before,
.process-decor::after {
  content: "";
  position: absolute;
  inset: 70px;

  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}

.process-decor::after {
  inset: 145px;
  border-color: rgba(var(--accent-rgb), .18);
}

.process-header,
.process-steps {
  position: relative;
  z-index: 2;
}

.process-header {
  max-width: 720px;
  margin-bottom: 58px;
}

.process-header h2 {
  margin-top: 14px;

  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -.04em;
}

.process-header p {
  max-width: 610px;
  margin-top: 18px;

  color: var(--text-soft);

  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.65;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.process-step {
  position: relative;
  min-height: 260px;

  padding: 22px 18px;

  border: 1px solid rgba(var(--accent-rgb), .22);
  border-radius: 18px;

  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));

  backdrop-filter: blur(14px);

  box-shadow:
    0 20px 55px rgba(0,0,0,.24),
    inset 0 0 0 1px rgba(255,255,255,.03);

  transition:
    transform .35s ease,
    border-color .35s ease,
    box-shadow .35s ease,
    background .35s ease;
}

.process-step::before {
  content: "";

  position: absolute;
  left: 18px;
  right: 18px;
  top: -1px;

  height: 2px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(var(--accent-rgb), .9),
      transparent
    );

  opacity: 0;

  transition: .35s ease;
}

.process-step:hover {
  transform: translateY(-8px);

  border-color: rgba(var(--accent-rgb), .52);

  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), .1), rgba(255,255,255,.03));

  box-shadow:
    0 28px 80px rgba(0,0,0,.34),
    0 0 36px rgba(var(--accent-rgb), .12);
}

.process-step:hover::before {
  opacity: 1;
}

.process-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 28px;
}

.process-num {
  color: rgba(var(--accent-rgb), .95);

  font-size: 15px;
  font-weight: 900;
  letter-spacing: .08em;
}

.process-icon {
  width: 48px;
  height: 48px;

  flex: 0 0 48px;

  border: 1px solid rgba(var(--accent-rgb), .42);
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--accent);

  background:
    radial-gradient(
      circle,
      rgba(var(--accent-rgb), .14),
      rgba(var(--bg-main-rgb), .34)
    );

  box-shadow:
    0 0 24px rgba(var(--accent-rgb), .14),
    inset 0 0 18px rgba(var(--accent-rgb), .05);

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease,
    background .35s ease;
}

.process-icon svg {
  width: 24px;
  height: 24px;

  display: block;

  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-icon svg path,
.process-icon svg circle,
.process-icon svg rect,
.process-icon svg line,
.process-icon svg polyline,
.process-icon svg polygon {
  fill: none !important;
  stroke: currentColor !important;
}

.process-step:hover .process-icon {
  transform: translateY(-3px) scale(1.06);

  border-color: rgba(var(--accent-rgb), .72);

  background:
    radial-gradient(
      circle,
      rgba(var(--accent-rgb), .22),
      rgba(var(--bg-main-rgb), .42)
    );

  box-shadow:
    0 0 34px rgba(var(--accent-rgb), .26),
    inset 0 0 22px rgba(var(--accent-rgb), .08);
}

.process-step:hover .process-icon {
  transform: rotate(-4deg) scale(1.08);

  box-shadow:
    0 0 34px rgba(var(--accent-rgb), .26);
}

.process-step h3 {
  margin-bottom: 14px;

  color: var(--text-main);

  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
}

.process-step p {
  color: rgba(255,255,255,.74);

  font-size: 14px;
  line-height: 1.6;
}

.process-step:not(:last-child)::after {
  content: "";

  position: absolute;
  top: 50%;
  right: -19px;

  width: 20px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(var(--accent-rgb), .8),
      rgba(var(--accent-rgb), .15)
    );
}

@media (max-width: 1200px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .process-section {
    padding: 78px var(--side-padding);
  }

  .process-header {
    margin-bottom: 38px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-step {
    min-height: auto;
    padding: 20px;

    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
  }

  .process-top {
    grid-row: span 2;

    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    gap: 12px;

    margin-bottom: 0;
  }

  .process-step h3 {
    margin-bottom: 8px;
  }

  .process-step p {
    font-size: 13px;
  }
}