.cp_page {
  --cp-dark: #161616;
  --cp-text: #2a2a2a;
  --cp-muted: #5f5f5f;
  --cp-border: #dcdcdc;
  --cp-soft: #f7f7f7;
  --cp-accent: #f77b1b;
}
.cp_join_section,
.cp_mission_section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.cp_join_section {
  margin-top: 24px;
}
.cp_join_heading_wrap h2 {
  margin-top: 30px;
}
.cp_join_box {
  background: linear-gradient(140deg, #ffffff 0%, #fff7ef 52%, #ffffff 100%);
  padding: clamp(24px, 5vw, 44px);
}
.cp_section_tag {
  display: inline-block;
  margin: 0 0 12px;
  padding: 8px 14px;
  border: 1px solid rgba(247, 123, 27, 0.35);
  background: rgba(247, 123, 27, 0.08);
  color: var(--cp-accent);
  font-family: p_m;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cp_join_box h2,
.cp_mission_title {
  font-size: clamp(1.95rem, 4vw, 3rem);
  font-weight: 400;
  font-family: m_r;
  line-height: 1.15;
  margin-bottom: 22px;
  color: var(--cp-dark);
  letter-spacing: -0.02em;
}
.cp_join_box p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--cp-text);
  margin-bottom: 20px;
  font-family: p_r;
  margin-top: 30px;
}
.cp_profile_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
}
.cp_profile_card {
  background: #fff;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.cp_profile_icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f77b1b;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 14px;
}
.cp_profile_card h3 {
  font-family: m_r;
  font-size: 1.4rem;
  color: var(--cp-dark);
  margin-bottom: 8px;
}
.cp_profile_card p {
  margin-bottom: 0;
}
.cp_join_columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.cp_join_column {
  background: #fff;
  padding: 20px;
}
.cp_join_list_title {
  font-size: 1.5rem;
  margin: 16px 0 10px;
  font-weight: 400;
  font-family: m_r;
  color: var(--cp-dark);
}
.cp_join_list {
  padding-left: 0;
  margin-bottom: 22px;
  list-style: none;
}
.cp_join_list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 11px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--cp-dark);
  font-family: p_r;
}
.cp_join_list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--cp-accent);
  font-weight: 900;
}
.cp_join_closing {
  margin-top: 22px;
}
.cp_join_cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 13px 28px;
  border: 1px solid #f77b1b;
  background: #f77b1b;
  color: #fff;
  font-family: p_r;
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cp_join_cta:hover {
  background: transparent;
  color: #f77b1b;
  transform: translateY(-2px);
}
.cp_mission_section {
  margin-top: 56px;
}
.cp_mission_box {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 40px);
}
.cp_how_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}
.cp_step_card {
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid transparent;
}
.cp_step_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}
.cp_step_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-family: p_m;
  color: var(--cp-muted);
  background: #f1f4f8;
  border-radius: 999px;
  padding: 7px 14px;
  margin-bottom: 16px;
}
.cp_step_card h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 400;
  font-family: m_r;
  color: var(--cp-dark);
  margin-bottom: 10px;
}
.cp_step_card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cp-text);
  font-family: p_r;
}
.cp_step_card_1 {
  border-top-color: #f77b1b;
}
.cp_step_card_2 {
  border-top-color: #ff9850;
}
.cp_step_card_3 {
  border-top-color: #ffb781;
}
.cp_step_card_4 {
  border-top-color: #f7c99f;
}

@media (max-width: 991px) {
  .cp_how_grid {
    grid-template-columns: 1fr;
  }
  .cp_profile_grid,
  .cp_join_columns {
    grid-template-columns: 1fr;
  }
  .cp_join_section, .cp_mission_section {
    padding: 0px;
  }
}
