.process-page {
  background: var(--bg, #f4f7fa);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.process-intro {
  max-width: 780px;
  margin: 0 auto;
  padding: 72px 20px 34px;
  text-align: center;
}

.process-intro h1 {
  margin: 0 0 18px;
  color: var(--text-main, #1a202c);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.process-intro p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-dim, #475569);
  font-size: 1.08rem;
  line-height: 1.7;
}

.process-demo {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 20px 76px;
}

.process-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 20px;
}

.process-tab {
  min-height: 64px;
  padding: 10px 8px;
  border: 1px solid var(--border, #e1e8f0);
  border-radius: 10px;
  background: #fff;
  color: var(--text-dim, #475569);
  font: inherit;
  font-size: .84rem;
  font-weight: 700;
  cursor: pointer;
}

.process-tab:hover,
.process-tab:focus-visible {
  border-color: var(--primary, #0070f3);
  outline: 3px solid rgba(0,112,243,.18);
  outline-offset: 2px;
}

.process-tab[aria-selected="true"] {
  border-color: var(--primary, #0070f3);
  background: var(--primary, #0070f3);
  color: #fff;
}

.process-panel {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: 34px;
  align-items: center;
  min-height: 480px;
  padding: 28px;
  border: 1px solid var(--border, #e1e8f0);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0,43,92,.08);
}

.process-panel__copy h2 {
  margin: 0 0 14px;
  color: var(--text-main, #1a202c);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.process-panel__copy p {
  margin: 0;
  color: var(--text-dim, #475569);
  line-height: 1.7;
}

.process-panel__step {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary, #0070f3);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.process-panel__visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
  height: 540px;
  max-height: 540px;
  overflow: hidden;
  border-radius: 12px;
  background: #f4f7fa;
}

.process-panel__visual img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.process-cta {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px 80px;
  text-align: center;
}

.process-cta h2 {
  margin: 0 0 20px;
  color: var(--text-main, #1a202c);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.process-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 760px) {
  .process-intro { padding-top: 48px; }
  .process-tabs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .process-tab { min-height: 58px; font-size: .78rem; }
  .process-panel { grid-template-columns: 1fr; gap: 22px; padding: 20px; }
  .process-panel__visual { order: -1; height: 390px; max-height: 390px; }
  .process-panel__visual img { max-width: 100%; max-height: 100%; }
}

@media (max-width: 420px) {
  .process-tabs { gap: 6px; }
  .process-tab { padding: 9px 5px; font-size: .72rem; }
}
