/* ==========================================================================
   PROCESS — How we work (4-step workflow)
   ========================================================================== */

.process {
  position: relative;
}

.process__header {
  max-width: 640px;
  margin-bottom: var(--space-xl);
}

.process__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  margin-bottom: var(--space-md);
  border-radius: var(--radius-full);
  background: var(--color-accent-muted);
  border: 1px solid var(--color-border);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-accent);
  letter-spacing: 0.04em;
}

.process__badge svg {
  width: 14px;
  height: 14px;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  position: relative;
}

.process__steps::before {
  content: "";
  position: absolute;
  top: 2.4rem;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-border-hover) 15%,
    var(--color-border-hover) 85%,
    transparent
  );
  pointer-events: none;
}

.process-step {
  position: relative;
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--card-solid);
  border: 1px solid var(--color-border);
  transition: border-color var(--duration-fast) ease,
              transform var(--duration-normal) var(--ease-out-expo),
              box-shadow var(--duration-normal) ease;
}

.process-step:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.process-step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
  border-radius: 50%;
  background: var(--color-accent-muted);
  border: 1px solid var(--color-border);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--color-accent);
  position: relative;
  z-index: 1;
}

.process-step__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  color: var(--color-accent);
}

.process-step__icon svg {
  width: 22px;
  height: 22px;
}

.process-step__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.process-step__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   FAQ — International client questions
   ========================================================================== */

.faq {
  position: relative;
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: var(--space-xl);
  align-items: start;
}

.faq__intro {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.faq__intro .section__subtitle {
  margin-bottom: var(--space-md);
}

.faq__note {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-md);
  background: var(--color-accent-muted);
  border: 1px solid var(--color-border);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.faq__note svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--color-accent);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--card-solid);
  overflow: hidden;
  transition: border-color var(--duration-fast) ease,
              box-shadow var(--duration-fast) ease;
}

.faq-item.is-open {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-glow);
}

.faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  width: 100%;
  padding: 1.15rem 1.25rem;
  background: transparent;
  border: none;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
}

.faq-item__trigger:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}

.faq-item__question {
  font-size: var(--text-base);
  font-weight: 500;
  line-height: 1.4;
}

.faq-item__chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
  transition: transform var(--duration-fast) var(--ease-out-expo),
              color var(--duration-fast) ease;
}

.faq-item.is-open .faq-item__chevron {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.faq-item__panel {
  overflow: hidden;
}

.faq-item__answer {
  padding: 0 1.25rem 1.15rem;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 58ch;
}

/* Responsive */
@media (max-width: 1024px) {
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__steps::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .faq__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .faq__intro {
    position: static;
  }
}

@media (max-width: 640px) {
  .process__steps {
    grid-template-columns: 1fr;
  }
}
