.fc-hero { padding: 56px 0 40px; }
.fc-hero-box {
  background: radial-gradient(120% 120% at 0% 0%, #f0f8ff 0%, #fff6e8 60%, #fff 100%);
  border: 1px solid var(--sub);
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(31,46,58,.07);
}
.fc-hero-box h1 { font-size: clamp(28px,5vw,48px); line-height: 1.15; margin-bottom: 14px; }
.fc-hero-box p { font-size: 17px; color: var(--dim); max-width: 700px; }
.fc-hero-actions { margin-top: 22px; display: flex; gap: 10px; flex-wrap: wrap; }
.fc-steps { padding: 10px 0 52px; }
.fc-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
}
.fc-step {
  background: #fff;
  border: 1.5px solid var(--sub);
  border-radius: 14px;
  padding: 20px;
}
.fc-step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gd);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--gold); font-size: 15px;
  margin-bottom: 10px;
}
.fc-step-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.fc-step-text { font-size: 13px; color: var(--dim); line-height: 1.55; }
.fc-features { padding: 0 0 52px; }
.fc-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}
.fc-feat-card {
  background: #fff;
  border: 1.5px solid var(--sub);
  border-radius: 14px;
  padding: 22px;
}
.fc-feat-icon { font-size: 24px; margin-bottom: 10px; }
.fc-feat-title { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.fc-feat-text { font-size: 14px; color: var(--dim); line-height: 1.6; }
.fc-cta {
  background: linear-gradient(135deg, #fff6e8, #f2f9ff);
  border: 1px solid rgba(181,148,62,.2);
  border-radius: 18px;
  padding: 36px;
  text-align: center;
  margin-bottom: 64px;
}
.fc-cta h2 { font-size: 26px; font-weight: 700; margin-bottom: 12px; }
.fc-cta p { font-size: 16px; color: var(--dim); margin-bottom: 22px; }
.fc-cta-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
@media(max-width:900px){
  .fc-steps-grid { grid-template-columns: 1fr 1fr; }
  .fc-features-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:600px){
  .fc-hero-box { padding: 22px; }
  .fc-steps-grid { grid-template-columns: 1fr; }
  .fc-features-grid { grid-template-columns: 1fr; }
}