/* ===== HR Builder Featured Page ===== */

/* Hero extended */
.hr-hero-sub {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 36px;
}
.hr-hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hr-hero-cta .cta-btn {
  padding: 16px 44px;
}
.hr-hero-note {
  font-size: 12px;
  color: var(--text-secondary);
}

/* Problem section */
.hr-problems {
  padding: 80px 0;
  background: var(--bg-secondary);
}
.hr-problem-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hr-problem-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.hr-problem-item:first-child {
  border-top: 1px solid var(--border-subtle);
}
.hr-problem-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red-subtle);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.hr-problem-text h3 {
  font-size: 16px;
  margin-bottom: 6px;
}
.hr-problem-text p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Steps section */
.hr-steps {
  padding: 96px 0;
  background: var(--bg-primary);
}
.hr-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.hr-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.hr-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.hr-step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.hr-step-card:nth-child(1)::before { background: var(--red-primary); }
.hr-step-card:nth-child(2)::before { background: var(--amber); }
.hr-step-card:nth-child(3)::before { background: var(--teal); }
.hr-step-card:nth-child(4)::before { background: var(--red-primary); }
.hr-step-card:nth-child(5)::before { background: var(--amber); }
.hr-step-card:nth-child(6)::before { background: var(--teal); }
.hr-step-card:nth-child(7)::before { background: var(--red-primary); }

.hr-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.hr-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--red-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--red-primary);
}
.hr-step-time {
  font-size: 11px;
  color: var(--text-secondary);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}
.hr-step-title {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--text-bright);
  margin-bottom: 10px;
  line-height: 1.4;
}
.hr-step-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Features section */
.hr-features {
  padding: 80px 0;
  background: var(--bg-secondary);
}
.hr-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.hr-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.hr-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.hr-feature-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}
.hr-feature-title {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--text-bright);
  margin-bottom: 10px;
}
.hr-feature-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Target section */
.hr-target {
  padding: 80px 0;
  background: var(--bg-primary);
}
.hr-target-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.hr-target-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
}
.hr-target-check {
  color: var(--teal);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.hr-target-text {
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.7;
}

/* CTA section */
.hr-cta-section {
  padding: 96px 0;
  background: linear-gradient(160deg, #0d0010 0%, #0a0a0a 50%, #00080d 100%);
  text-align: center;
}
.hr-cta-section h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 16px;
}
.hr-cta-section > .container > p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.9;
}
.hr-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hr-cta-buttons .cta-btn {
  padding: 18px 48px;
}
.hr-cta-sub {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .hr-steps-grid {
    grid-template-columns: 1fr;
  }
  .hr-features-grid {
    grid-template-columns: 1fr;
  }
  .hr-target-grid {
    grid-template-columns: 1fr;
  }
  .hr-hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .hr-cta-buttons {
    flex-direction: column;
  }
}
