/* freshpilot — platform only */

h3 { font-size: clamp(22px, 2.5vw, 28px); }

.page-hero p { font-size: 18px; color: var(--bark-soft); max-width: 560px; margin: 0 auto; line-height: 1.65; }

.page-hero {
  padding: 64px 0 48px;
  text-align: center;
}

.workflow-stage { padding: 60px 0; }

.workflow-stage + .workflow-stage { border-top: 1px solid var(--divider); }

.stage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.stage-layout.reverse .stage-content { order: 2; }

.stage-layout.reverse .stage-visual { order: 1; }

.stage-number {
  font-family: 'DM Serif Display', serif;
  font-size: 14px;
  color: var(--forest);
  background: var(--forest-light);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.stage-content h2 { margin-bottom: 12px; }

.stage-content > p {
  font-size: 16px;
  color: var(--bark-soft);
  line-height: 1.65;
  margin-bottom: 28px;
}

.stage-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stage-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.stage-feature-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: var(--radius-sm);
  background: var(--forest-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-top: 2px;
}

.stage-feature h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.stage-feature p {
  font-size: 14px;
  color: var(--bark-soft);
  line-height: 1.5;
}

.stage-visual {
  background: var(--cream-warm);
  border: 1px solid var(--divider);
  border-radius: var(--radius-xl);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.flow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 0 20px;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 0;
}

.cta-section h2 { color: var(--cream); margin-bottom: 14px; }

.flow-step-dot {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--forest-light);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.cta-section p { color: var(--sand); font-size: 17px; max-width: 480px; margin: 0 auto 32px; line-height: 1.6; }

.flow-step-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--bark-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: absolute;
  margin-top: 84px;
  white-space: nowrap;
}

.flow-step-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow-arrow {
  width: 80px;
  height: 2px;
  background: var(--divider);
  position: relative;
}

.flow-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--divider);
  border-top: 2px solid var(--divider);
  transform: rotate(45deg);
}

.all-features-link {
  text-align: center;
  padding: 40px 0 0;
}

.all-features-link a {
  font-size: 15px;
  font-weight: 600;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.all-features-link a:hover { gap: 12px; }

.all-features-link .arrow {
  font-size: 18px;
  transition: transform 0.2s;
}

@media (max-width: 1000px) {
  .stage-layout { grid-template-columns: 1fr !important; gap: 32px; }
}

@media (max-width: 1000px) {
  .stage-layout .stage-content, .stage-layout.reverse .stage-content { order: 1 !important; }
  .stage-layout .stage-visual, .stage-layout.reverse .stage-visual, .stage-layout .stage-img, .stage-layout.reverse .stage-img { order: 2 !important; }
}

@media (max-width: 600px) {
  .page-hero p { font-size: 16px; }
}

@media (max-width: 1000px) {
  .stage-visual { aspect-ratio: 16 / 10; }
  .flow-steps { flex-direction: column; align-items: center; gap: 0; overflow-x: visible; padding: 0 20px 16px; }
  .flow-step-wrap { flex-direction: row; gap: 14px; align-items: center; width: auto; }
}

@media (max-width: 1000px) {
  .flow-step-dot { width: 48px; height: 48px; min-width: 48px; font-size: 22px; }
}

@media (max-width: 1000px) {
  .flow-step-label { position: static; margin-top: 0; font-size: 13px; white-space: nowrap; letter-spacing: 0.06em; }
  .flow-arrow { width: 2px; height: 22px; }
}

@media (max-width: 1000px) {
  .flow-arrow::after { right: -3px; top: auto; bottom: 0; transform: rotate(135deg); }
}

@media (max-width: 600px) {
  .page-hero { padding: 48px 0 32px; }
  .flow-steps { flex-direction: column; align-items: center; padding: 0 20px 16px; overflow-x: visible; }
  .flow-step-wrap { flex-direction: row; gap: 12px; }
  .flow-step-dot { width: 44px; height: 44px; min-width: 44px; font-size: 20px; }
  .flow-step-label { position: static; margin-top: 0; font-size: 12px; white-space: nowrap; letter-spacing: 0.06em; }
  .flow-arrow { width: 2px; height: 24px; }
  .flow-arrow::after { right: -3px; top: auto; bottom: 0; transform: rotate(135deg); }
}

.stage-img {  }
