/* ============================================================
   people-cta.css — 社員インタビューページ CTAセクション
   背景: ネイビー（--c-navy-deep）
   アニメーション: rvシステム（rv-up）
   ============================================================ */

/* ---- Section ---- */
.people-cta {
  background: var(--c-navy-deep, #0D1B2E);
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
  z-index: var(--z-content, 10);
}

/* 装飾フレア */
.people-cta::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.people-cta::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(74, 144, 217, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

/* ---- Container ---- */
.people-cta__inner {
  max-width: var(--s-container, 1200px);
  margin: 0 auto;
  padding: 0 var(--s-gutter, 32px);
  position: relative;
  z-index: 1;
  text-align: center;
}

/* ---- Eyebrow ---- */
.people-cta__eyebrow {
  font-family: var(--f-label, 'Inter', sans-serif);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin: 0 0 20px;
}

/* ---- Title ---- */
.people-cta__title {
  font-family: var(--f-heading-ja, 'Noto Serif JP', serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.4;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

/* ---- Subtitle ---- */
.people-cta__subtitle {
  font-family: var(--f-body, 'Noto Sans JP', sans-serif);
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin: 0 0 48px;
}

/* ---- Buttons ---- */
.people-cta__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Primary Button: カジュアル面談 */
.people-cta__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-gold);
  color: var(--c-navy-deep, #0D1B2E);
  font-family: var(--f-body, 'Noto Sans JP', sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
  letter-spacing: 0.02em;
}

.people-cta__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.people-cta__btn-primary .people-cta__btn-arrow {
  font-size: 0.85rem;
  transition: transform 0.2s;
}

.people-cta__btn-primary:hover .people-cta__btn-arrow {
  transform: translateX(4px);
}

/* Ghost Button: 採用情報を見る */
.people-cta__btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--f-body, 'Noto Sans JP', sans-serif);
  font-size: 0.9rem;
  font-weight: 400;
  padding: 15px 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, transform 0.25s var(--ease-out);
}

.people-cta__btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ---- Privacy Note ---- */
.people-cta__note {
  margin: 32px 0 0;
  font-family: var(--f-body, 'Noto Sans JP', sans-serif);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.people-cta__note i {
  font-size: 0.7rem;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .people-cta {
    padding: 72px 0 80px;
  }

  .people-cta__buttons {
    flex-direction: column;
    gap: 14px;
  }

  .people-cta__btn-primary,
  .people-cta__btn-ghost {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}
