/* ==========================================================================
   Process — image + collapsible steps
   ========================================================================== */

.process__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 56px;
}
.process__media img {
  width: 100%; height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  position: sticky; top: 96px;
}
.process__steps { display: flex; flex-direction: column; gap: 14px; }

.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.process-step[open] { border-color: var(--red); box-shadow: var(--shadow-sm); }
.process-step summary {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px; cursor: pointer; list-style: none;
}
.process-step summary::-webkit-details-marker { display: none; }
.process-step__num {
  display: inline-flex; align-items: center; justify-content: center;
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  background: var(--red); color: #fff; font-weight: 700; font-size: 15px;
}
.process-step__title { font-weight: 700; font-size: 17px; color: var(--heading); flex: 1; }
.process-step .chevron { width: 20px; height: 20px; color: var(--text-faint); transition: transform .2s ease; flex: none; }
.process-step[open] .chevron { transform: rotate(180deg); }
.process-step__body { padding: 0 22px 22px 72px; }
.process-step__body p { color: var(--text-mute); line-height: 1.65; }
.process-step__body .btn { margin-top: 16px; }

.process__cta { align-self: flex-start; margin-top: 10px; }

@media (max-width: 900px) {
  .process__inner { grid-template-columns: 1fr; gap: 32px; }
  .process__media img { position: static; }
  .process__media { order: -1; }
  .process-step__body { padding-left: 22px; }
}
