/* ============================================
   TWING CAFE — APPLY PAGE STYLES
   ============================================ */

/* ── PROCESS STEPS ── */
.apply-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-bottom: 64px;
}
.apply-step {
  text-align: center;
  padding: 28px 16px;
  border: 1px solid rgba(24,62,44,0.08);
  border-radius: var(--radius-lg);
}
.apply-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 17px;
}
.apply-step h3 {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--green-deep);
  margin-bottom: 6px;
}
.apply-step p { font-size: 12.5px; line-height: 1.6; color: #7a8a80; }

/* ── LAYOUT ── */
.apply-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
  max-width: 1080px;
}
.apply-form__section-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(24,62,44,0.08);
}
.apply-form__section-title:first-of-type { margin-top: 0; }

/* ── SUCCESS SCREEN ── */
.apply-success {
  text-align: center;
  padding: 40px 20px;
}
.apply-success__check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: checkPop 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes checkPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ── SIDEBAR ── */
.apply-sidebar__card { position: sticky; top: 100px; }
.apply-sidebar__card h3 {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 19px;
  color: var(--green-deep);
  margin-bottom: 20px;
}
.apply-sidebar__row {
  font-size: 13.5px;
  color: #5a6a60;
  line-height: 1.7;
  margin-bottom: 16px;
}
.apply-sidebar__row a { color: var(--green); font-weight: 600; text-decoration: none; }
.apply-sidebar__row a:hover { color: var(--gold-dark); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .apply-layout { grid-template-columns: 1fr; }
  .apply-sidebar__card { position: static; }
}
@media (max-width: 768px) {
  .apply-steps { grid-template-columns: repeat(2, 1fr); }
}
