/* ================================================================
   BE:MOVE GYM 24 — 채용 사이트 스타일
   브랜드 컬러: 오렌지 #EE6325 / 차콜 #33393F
   ================================================================ */
:root {
  --orange: #ee6325;
  --orange-dark: #d4531a;
  --charcoal: #33393f;
  --charcoal-deep: #23272c;
  --ink: #1f2226;
  --gray-bg: #f5f4f2;
  --line: #e4e1dd;
  --white: #ffffff;
  --font-display: "Black Han Sans", sans-serif;
  --font-logo: "Alfa Slab One", "Black Han Sans", serif;
  --font-body: "Noto Sans KR", -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 14px;
  --shadow: 0 8px 28px rgba(35, 39, 44, 0.1);
  --maxw: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  word-break: keep-all;
}
img, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- 로고 배지 ---------- */
.brand-badge { width: 46px; height: 46px; flex: none; object-fit: contain; }

/* ---------- 헤더 ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(35, 39, 44, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--orange);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-word {
  font-family: var(--font-logo);
  color: var(--white); font-size: 1.05rem; letter-spacing: 0.02em;
}
.brand-word em { font-style: normal; color: var(--orange); }
.brand-word small { color: var(--orange); font-size: 0.7em; }

.gnb { display: flex; align-items: center; gap: 26px; }
.gnb a {
  color: #d8d8d6; font-weight: 500; font-size: 0.95rem;
  transition: color 0.15s;
}
.gnb a:hover { color: var(--orange); }
.nav-cta {
  background: var(--orange); color: var(--white) !important;
  padding: 9px 20px; border-radius: 999px; font-weight: 700;
}
.nav-cta:hover { background: var(--orange-dark); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 3px; background: var(--white); border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- 히어로 ---------- */
.hero {
  background:
    radial-gradient(ellipse 900px 500px at 85% 20%, rgba(238, 99, 37, 0.18), transparent 60%),
    linear-gradient(160deg, var(--charcoal-deep) 0%, var(--charcoal) 70%, #3d434a 100%);
  color: var(--white);
  padding: 96px 0 80px;
  overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 1.25fr 0.75fr;
  gap: 40px; align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-display);
  color: var(--orange); letter-spacing: 0.22em; font-size: 0.95rem;
  margin-bottom: 14px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.12; font-weight: 400;
}
.hero-title span { color: var(--orange); }
.hero-sub { margin: 22px 0 30px; color: #cfd2d5; font-size: 1.06rem; }
.hero-sub strong { color: var(--white); }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 999px;
  font-weight: 700; font-size: 1rem; border: 2px solid transparent;
  cursor: pointer; transition: transform 0.15s, background 0.15s, color 0.15s;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-ghost { border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-block { width: 100%; }

.hero-stats {
  display: flex; gap: 40px; margin-top: 44px; flex-wrap: wrap;
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: var(--font-display); font-size: 2rem; color: var(--orange);
  font-weight: 400;
}
.hero-stats span { color: #aeb3b8; font-size: 0.88rem; }

.hero-logo { text-align: center; }
.hero-badge {
  /* 원본 PNG에 여백이 넉넉해 실제 로고가 화면에 적당히 보이도록 크게 지정 */
  width: min(430px, 82vw); height: auto;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-badge { animation: none; }
}

/* ---------- 공통 섹션 ---------- */
.section { padding: 90px 0; }
.section-gray { background: var(--gray-bg); }
.section-dark { background: var(--charcoal); color: var(--white); }
.section-eyebrow {
  font-family: var(--font-display);
  color: var(--orange); letter-spacing: 0.2em; font-size: 0.9rem;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 400;
  margin-bottom: 14px;
}
.section-desc { color: #6a6f75; max-width: 620px; margin-bottom: 40px; }
.section-dark .section-desc { color: #b9bec3; }

/* ---------- 브랜드 스토리 ---------- */
.brand-story {
  border-left: 4px solid var(--orange);
  background: var(--gray-bg);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 26px; margin-top: 8px;
}
.brand-story-line { font-size: 1.12rem; font-weight: 700; }
.brand-story-line strong { font-family: var(--font-logo); color: var(--orange); font-weight: 400; }
.brand-story-line em { font-style: normal; color: var(--charcoal); }
.brand-story-sub { margin-top: 6px; color: #6a6f75; font-size: 0.95rem; }

/* ---------- 성장 타임라인 ---------- */
.growth { margin-top: 46px; }
.growth-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.3rem; margin-bottom: 18px;
}
.growth-steps { display: flex; gap: 10px; flex-wrap: wrap; }
.growth-steps li {
  flex: 1; min-width: 170px;
  background: var(--charcoal); color: var(--white);
  padding: 18px 22px 18px 34px;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%, 16px 50%);
  display: flex; flex-direction: column; gap: 2px;
}
.growth-steps li:first-child {
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
  padding-left: 26px;
}
.growth-steps li strong {
  font-family: var(--font-logo); color: var(--orange);
  font-size: 1.15rem; letter-spacing: 0.04em;
}
.growth-steps li span { font-size: 0.86rem; color: #cfd2d5; font-weight: 700; }
.growth-steps li.now { background: var(--orange); }
.growth-steps li.now strong { color: var(--white); }
.growth-steps li.now span { color: rgba(255, 255, 255, 0.9); }

/* ---------- 지점 지도 ---------- */
.growth-maps {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 18px;
  margin-top: 24px;
}
.map-card {
  background:
    radial-gradient(ellipse 480px 260px at 85% 0%, rgba(238, 99, 37, 0.14), transparent 60%),
    var(--charcoal);
  border-radius: var(--radius);
  padding: 22px 24px 16px;
  display: flex; flex-direction: column;
}
.map-card figcaption {
  display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px;
}
.map-card figcaption strong {
  font-family: var(--font-display); font-weight: 400;
  color: var(--white); font-size: 1.15rem;
}
.map-card figcaption span { color: #9aa0a6; font-size: 0.85rem; font-weight: 700; }
.map-card svg { width: 100%; height: auto; flex: 1; }
.map-card .land path {
  fill: #f2f1ef; stroke: #a9adb2; stroke-width: 0.7;
}
.map-card .d-label {
  fill: #6a6f75; font-size: 13px; font-weight: 700;
  font-family: var(--font-body);
}
.map-card .m-dot { fill: var(--orange); stroke: #fff; stroke-width: 2; }
.map-card .m-b {
  fill: var(--orange); font-family: var(--font-logo);
  font-size: 24px; paint-order: stroke; stroke: rgba(51, 57, 63, 0.35); stroke-width: 3px;
}
.map-card .m-line { stroke: var(--orange); stroke-width: 1.4; opacity: 0.85; }
.map-card .m-label {
  fill: #ffffff; font-size: 14.5px; font-weight: 700;
  font-family: var(--font-body); paint-order: stroke;
  stroke: rgba(35, 39, 44, 0.85); stroke-width: 3px; stroke-linejoin: round;
}

/* ---------- 브랜드 소개 ---------- */
.about-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 40px;
}
.about-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 22px; background: var(--white);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.about-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow);
  border-color: var(--orange);
}
.about-icon { font-size: 2rem; margin-bottom: 14px; }
.about-card h3 { font-size: 1.12rem; margin-bottom: 10px; font-weight: 900; }
.about-card p { font-size: 0.92rem; color: #5c6167; }

/* ---------- 크루 인용문 (단체 사진 배경) ---------- */
.crew-quote {
  border: 1px solid rgba(238, 99, 37, 0.4);
  border-radius: var(--radius);
  margin-bottom: 34px;
  text-align: center; overflow: hidden;
  /* 원본 사진 비율(2000x1429) 그대로 전체가 보이도록 */
  aspect-ratio: 2000 / 1429;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 40px 40px 46px;
  /* 사진은 밝게 유지, 글씨가 놓이는 하단(다리쪽)만 어둡게 */
  background:
    linear-gradient(to bottom, rgba(30, 34, 38, 0) 55%, rgba(24, 27, 30, 0.82) 92%),
    url("../assets/001_.jpg") center / cover no-repeat,
    rgba(238, 99, 37, 0.07);
}
.crew-quote p {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.3rem, 2.8vw, 1.9rem); line-height: 1.4;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
}
.crew-quote p strong { color: var(--orange); font-weight: 400; }
.crew-quote cite {
  display: block; margin-top: 12px; font-style: normal;
  color: #e6e8ea; font-size: 1rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.65);
}
@media (max-width: 720px) {
  .crew-quote { padding: 22px 18px 26px; }
}

/* ---------- 인재상 ---------- */
.culture-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.culture-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius); padding: 30px 24px;
  transition: border-color 0.2s, background 0.2s;
}
.culture-card:hover { border-color: var(--orange); background: rgba(238, 99, 37, 0.08); }
.culture-num {
  font-family: var(--font-display); color: var(--orange);
  font-size: 1.5rem; display: block; margin-bottom: 12px;
}
.culture-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.culture-card p { font-size: 0.9rem; color: #b9bec3; }

/* ---------- 채용 공고 ---------- */
.job-filters {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; margin-bottom: 28px; background: var(--gray-bg);
  display: flex; flex-direction: column; gap: 12px;
}
.filter-row { display: flex; align-items: flex-start; gap: 14px; }
.filter-label {
  font-weight: 900; font-size: 0.9rem; flex: none; padding-top: 6px;
  color: var(--charcoal); min-width: 34px;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1.5px solid var(--line); background: var(--white);
  border-radius: 999px; padding: 6px 16px; font-size: 0.88rem;
  cursor: pointer; font-family: var(--font-body); font-weight: 500;
  color: #55595e; transition: all 0.15s;
}
.chip:hover { border-color: var(--orange); color: var(--orange); }
.chip.active {
  background: var(--charcoal); border-color: var(--charcoal); color: var(--white);
  font-weight: 700;
}

.job-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.job-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; background: var(--white); position: relative;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.job-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--orange);
}
.job-card-top { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.job-badge {
  font-size: 0.76rem; font-weight: 700; padding: 4px 12px; border-radius: 999px;
}
.job-badge.role { background: rgba(238, 99, 37, 0.12); color: var(--orange-dark); }
.job-badge.branch { background: rgba(51, 57, 63, 0.08); color: var(--charcoal); }
.job-badge.type { background: transparent; border: 1px solid var(--line); color: #6a6f75; }
.job-dday {
  margin-left: auto; font-family: var(--font-display); font-size: 0.95rem;
  color: var(--orange);
}
.job-dday.closing { color: #d63a1e; }
.job-title { font-size: 1.2rem; font-weight: 900; line-height: 1.4; }
.job-desc { font-size: 0.92rem; color: #5c6167; flex: 1; }
.job-meta {
  display: flex; gap: 16px; font-size: 0.84rem; color: #82868b;
  border-top: 1px dashed var(--line); padding-top: 12px; flex-wrap: wrap;
}
.job-apply {
  color: var(--orange); font-weight: 700; font-size: 0.92rem;
}
.job-apply::after { content: " →"; }
.job-empty { text-align: center; padding: 40px 0; color: #82868b; }
.job-note { margin-top: 26px; font-size: 0.92rem; color: #6a6f75; }
.job-note a { color: var(--orange); font-weight: 700; text-decoration: underline; }

/* ---------- 직무 아코디언 ---------- */
.role-accordion { display: flex; flex-direction: column; gap: 12px; }
.role-item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.role-item[open] { border-color: var(--orange); }
.role-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  font-weight: 900; font-size: 1.05rem;
  display: flex; align-items: center; gap: 14px;
}
.role-item summary::-webkit-details-marker { display: none; }
.role-tag {
  font-family: var(--font-display); font-size: 0.8rem;
  background: var(--charcoal); color: var(--orange);
  padding: 4px 10px; border-radius: 6px; letter-spacing: 0.06em;
}
.role-arrow {
  margin-left: auto; width: 10px; height: 10px;
  border-right: 2.5px solid var(--orange); border-bottom: 2.5px solid var(--orange);
  transform: rotate(45deg); transition: transform 0.2s;
}
.role-item[open] .role-arrow { transform: rotate(225deg); }
.role-body { padding: 0 24px 22px; }
.role-body ul { display: flex; flex-direction: column; gap: 8px; }
.role-body li {
  font-size: 0.94rem; color: #4a4f55; padding-left: 16px; position: relative;
}
.role-body li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 6px; height: 6px; background: var(--orange); border-radius: 50%;
}
.role-body em { color: var(--orange-dark); font-style: normal; font-weight: 700; }

/* ---------- 트레이너 보상 제도 ---------- */
.pay-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
  max-width: 900px;
}
.pay-card {
  position: relative;
  border: 1.5px solid var(--line); border-radius: 18px;
  padding: 34px 30px; background: var(--white);
  display: flex; flex-direction: column; gap: 22px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pay-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pay-card.featured {
  border-color: var(--orange);
  background:
    radial-gradient(ellipse 420px 260px at 90% 0%, rgba(238, 99, 37, 0.09), transparent 65%),
    var(--white);
  box-shadow: 0 14px 40px rgba(238, 99, 37, 0.14);
}
.pay-flag {
  position: absolute; top: -14px; right: 24px;
  background: var(--orange); color: var(--white);
  font-weight: 900; font-size: 0.8rem;
  padding: 5px 16px; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(238, 99, 37, 0.35);
}
.pay-type {
  font-family: var(--font-logo); font-size: 0.78rem;
  color: var(--orange); letter-spacing: 0.14em;
}
.pay-head h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.7rem; margin: 6px 0 8px;
}
.pay-tagline { font-size: 0.9rem; color: #6a6f75; }
.pay-amount {
  display: flex; flex-direction: column; gap: 2px;
  padding: 18px 20px; border-radius: 12px;
  background: var(--gray-bg);
  font-variant-numeric: tabular-nums;
}
.pay-card.featured .pay-amount { background: rgba(238, 99, 37, 0.09); }
.pay-amount strong {
  font-family: var(--font-display); font-weight: 400;
  font-size: 2.3rem; color: var(--charcoal); line-height: 1.1;
}
.pay-card.featured .pay-amount strong { color: var(--orange-dark); }
.pay-amount small { font-size: 0.55em; margin-left: 2px; }
.pay-amount span { font-size: 0.82rem; color: #82868b; font-weight: 700; }
.pay-list { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pay-list li {
  position: relative; padding-left: 26px;
  font-size: 0.95rem; color: #4a4f55;
}
.pay-list li::before {
  content: "+"; position: absolute; left: 0; top: -1px;
  color: var(--orange); font-weight: 900; font-size: 1.1rem;
}
.pay-list li:first-child::before { content: "●"; font-size: 0.6rem; top: 6px; left: 3px; }
.pay-list b { color: var(--ink); }
.pay-list em { font-style: normal; color: #82868b; font-size: 0.88em; }
.pay-perk {
  border-top: 1px dashed var(--line); padding-top: 16px;
  font-weight: 700; font-size: 0.92rem; color: var(--orange-dark);
}
.pay-note { margin-top: 26px; font-size: 0.88rem; color: #82868b; }

/* 실제 급여 지급 내역 */
.pay-proof {
  margin-top: 40px; border-radius: 18px;
  background:
    radial-gradient(ellipse 640px 320px at 12% 0%, rgba(238, 99, 37, 0.14), transparent 60%),
    var(--charcoal);
  color: var(--white); padding: 38px 34px;
}
.proof-flag {
  display: inline-block;
  background: #c9302c; color: var(--white);
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.25rem; letter-spacing: 0.02em;
  padding: 8px 26px; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(201, 48, 44, 0.35);
  margin-bottom: 16px;
}
.proof-desc { color: #cfd2d5; font-size: 0.95rem; margin-bottom: 24px; }

/* 이체 내역·뱅킹앱 캡처 재현 카드 */
.proof-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.proof-shot {
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  display: flex; flex-direction: column;
}
.shot-body { padding: 18px 18px 14px; flex: 1; }
.shot-body dl { display: flex; flex-direction: column; }
.shot-body dl div {
  display: flex; justify-content: space-between; align-items: center;
  gap: 10px; padding: 8px 0;
}
.shot-body dt { font-size: 0.82rem; }
.shot-body dd { font-size: 0.86rem; font-weight: 700; font-variant-numeric: tabular-nums; }

/* 이체 내역서 스타일 (밝은 카드) */
.shot-body.receipt { background: #ffffff; color: #3a3f45; }
.shot-time {
  font-size: 0.78rem; color: #8a8f95;
  border-bottom: 1px solid #ececec; padding-bottom: 9px; margin-bottom: 6px;
}
.shot-body.receipt dl div { border-bottom: 1px solid #f4f4f4; }
.shot-body.receipt dt { color: #8a8f95; }
.shot-body.receipt .in { color: #3b6ef5; }

/* 뱅킹앱 입금 알림 스타일 (어두운 카드) */
.shot-body.bankapp { background: #15171d; color: #f2f3f5; }
.shot-org {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.84rem; color: #d7d9dd;
}
.shot-dot {
  width: 15px; height: 15px; border-radius: 50%;
  background: #19c37d; flex: none;
}
.shot-amt {
  font-size: 1.45rem; font-weight: 900;
  font-variant-numeric: tabular-nums;
  margin: 10px 0 12px;
}
.shot-body.bankapp dl div { border-top: 1px solid rgba(255, 255, 255, 0.07); }
.shot-body.bankapp dt { color: #8a8f95; }
.shot-body.bankapp .link { color: #5b8cff; font-weight: 500; }
.shot-body.bankapp .dim { color: #6d727a; font-weight: 500; }

/* 카드 하단 노란 금액 띠 */
.proof-shot figcaption {
  background: #0b0b0d; color: #ffd54f;
  font-family: var(--font-display); font-weight: 400;
  font-variant-numeric: tabular-nums;
  font-size: 1.4rem; text-align: center;
  padding: 12px 8px;
}
.proof-note {
  margin-top: 22px; font-size: 0.95rem; color: #cfd2d5;
  border-top: 1px dashed rgba(255, 255, 255, 0.18); padding-top: 18px;
}
.proof-note strong { color: var(--orange); }

/* 보상 비전 인용문 */
.pay-vision { margin-top: 40px; text-align: center; }
.pay-vision p {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem); line-height: 1.5;
}
.pay-vision p strong { color: var(--orange); font-weight: 400; }
.hashtags {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin-top: 18px;
}
.hashtags span {
  background: var(--charcoal); color: var(--white);
  font-weight: 700; font-size: 0.88rem;
  padding: 7px 16px; border-radius: 999px;
}

/* ---------- 복리후생 ---------- */
.benefit-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
}
.benefit-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 12px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.benefit-card:hover {
  transform: translateY(-4px); border-color: var(--orange); box-shadow: var(--shadow);
}
.benefit-icon { font-size: 1.9rem; }
.benefit-card h3 { font-size: 0.95rem; font-weight: 900; }
.benefit-lines {
  margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 30px;
  max-width: 760px;
}
.benefit-lines li {
  position: relative; padding-left: 24px; font-size: 0.98rem; color: #4a4f55;
}
.benefit-lines li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--orange); font-weight: 900;
}
.benefit-lines strong { color: var(--ink); }

/* ---------- 채용 절차 ---------- */
.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
  counter-reset: step;
}
.process-steps li {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius); padding: 26px 20px; position: relative;
}
.step-num {
  font-family: var(--font-display); font-size: 1.6rem; color: var(--white);
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--orange); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.process-steps h3 { font-size: 1.02rem; margin-bottom: 8px; }
.process-steps p { font-size: 0.85rem; color: #b9bec3; }
.process-steps em { color: var(--orange); font-style: normal; font-weight: 700; }
.process-note { margin-top: 24px; font-size: 0.88rem; color: #9aa0a6; }

/* ---------- 지점 ---------- */
.location-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.location-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; background: var(--white);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.location-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--orange);
}
.location-region {
  font-family: var(--font-display); font-size: 0.78rem; color: var(--orange);
  letter-spacing: 0.12em; display: block; margin-bottom: 6px;
}
.location-card h3 { font-size: 1.1rem; font-weight: 900; margin-bottom: 8px; }
.location-card p { font-size: 0.86rem; color: #6a6f75; }
.location-card .loc-badge {
  display: inline-block; margin-top: 12px; font-size: 0.76rem; font-weight: 700;
  background: rgba(238, 99, 37, 0.12); color: var(--orange-dark);
  padding: 3px 10px; border-radius: 999px;
}

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 860px; }
.faq-list details {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 0 24px;
}
.faq-list details[open] { border-color: var(--orange); }
.faq-list summary {
  list-style: none; cursor: pointer; font-weight: 700; padding: 20px 0;
  position: relative; padding-right: 34px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before { content: "Q. "; color: var(--orange); font-weight: 900; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  color: var(--orange); font-size: 1.4rem; font-weight: 400;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 0 20px; color: #5c6167; font-size: 0.95rem; }

/* ---------- 지원하기 ---------- */
.section-apply {
  background:
    radial-gradient(ellipse 700px 400px at 12% 90%, rgba(238, 99, 37, 0.16), transparent 60%),
    linear-gradient(200deg, #3d434a 0%, var(--charcoal) 45%, var(--charcoal-deep) 100%);
  color: var(--white);
}
.apply-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
}
.apply-copy p { color: #cfd2d5; }
.apply-checklist { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.apply-checklist li {
  padding-left: 30px; position: relative; color: #e2e4e6; font-size: 0.96rem;
}
.apply-checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--orange); font-weight: 900; font-size: 1.05rem;
}

.apply-form {
  background: var(--white); color: var(--ink);
  border-radius: 18px; padding: 34px 30px; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  display: flex; flex-direction: column; gap: 18px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-split { flex-direction: row; gap: 14px; }
.form-split > div { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.apply-form label { font-weight: 700; font-size: 0.9rem; }
.req { color: var(--orange); }
.apply-form input, .apply-form select, .apply-form textarea {
  font-family: var(--font-body); font-size: 0.95rem;
  border: 1.5px solid var(--line); border-radius: 10px;
  padding: 12px 14px; background: #fafaf9; width: 100%;
  transition: border-color 0.15s;
}
.apply-form input:focus, .apply-form select:focus, .apply-form textarea:focus {
  outline: none; border-color: var(--orange); background: var(--white);
}
.form-hint { font-size: 0.8rem; color: #82868b; text-align: center; }

/* ---------- 카카오톡 채널 ---------- */
.btn-kakao {
  background: #fee500; color: #191919;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-kakao:hover { background: #f4dc00; }
.kakao-icon { width: 20px; height: 20px; fill: currentColor; flex: none; }

.kakao-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: flex; align-items: center; gap: 8px;
  background: #fee500; color: #191919;
  padding: 13px 20px; border-radius: 999px;
  font-weight: 900; font-size: 0.94rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition: transform 0.15s, box-shadow 0.15s;
}
.kakao-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
}
.kakao-float .kakao-icon { width: 22px; height: 22px; }
@media (max-width: 720px) {
  .kakao-float { right: 14px; bottom: 14px; padding: 12px 16px; }
  .kakao-float span { display: none; }
  .kakao-float .kakao-icon { width: 26px; height: 26px; }
}

/* ---------- 푸터 ---------- */
.site-footer {
  background: var(--charcoal-deep); color: #b9bec3; padding: 48px 0;
  border-top: 2px solid var(--orange);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 30px; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand .brand-badge { width: 54px; height: 54px; }
.footer-logo {
  font-family: var(--font-logo); color: var(--white); font-size: 1.1rem;
}
.footer-slogan { font-size: 0.85rem; color: #82868b; }
.footer-info { font-size: 0.88rem; text-align: right; }
.footer-info a { color: var(--orange); font-weight: 700; }
.footer-copy { margin-top: 8px; color: #6a6f75; font-size: 0.8rem; }

/* ---------- 반응형 ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 2; }
  .hero-logo { order: 1; }
  .hero-actions, .hero-stats { justify-content: center; }
  .about-grid, .culture-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: repeat(2, 1fr); }
  .apply-inner { grid-template-columns: 1fr; gap: 40px; }
  .growth-maps { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-info { text-align: center; }
}

@media (max-width: 720px) {
  .gnb {
    position: fixed; inset: 68px 0 auto 0;
    background: var(--charcoal-deep);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 10px 20px 20px;
    transform: translateY(-130%); transition: transform 0.25s ease;
    border-bottom: 2px solid var(--orange);
  }
  .gnb.open { transform: translateY(0); }
  .gnb a { padding: 13px 4px; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-cta { text-align: center; margin-top: 12px; border-bottom: none !important; }
  .nav-toggle { display: flex; }
  .pc-br { display: none; }
  .job-list { grid-template-columns: 1fr; }
  .pay-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-lines { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .growth-steps { flex-direction: column; }
  .growth-steps li, .growth-steps li:first-child {
    clip-path: none; border-radius: 10px; padding: 16px 20px;
  }
  .form-split { flex-direction: column; }
  .section { padding: 64px 0; }
  .hero { padding: 64px 0 56px; }
}

@media (max-width: 480px) {
  .about-grid, .culture-grid, .process-steps, .location-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
}

/* ================================================================
   공고 요약 카드 + 상세 모달
   ================================================================ */
.job-card { cursor: pointer; }
.job-desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: pre-line;
}
.jobmodal-overlay {
  position: fixed; inset: 0; background: rgba(24, 27, 30, 0.55); z-index: 300;
  align-items: center; justify-content: center; padding: 24px 16px;
}
.jobmodal {
  position: relative; background: #fff; border-radius: 16px;
  width: 640px; max-width: 100%; max-height: calc(100vh - 48px);
  display: flex; flex-direction: column; gap: 12px; padding: 28px;
  box-shadow: 0 20px 60px rgba(24, 27, 30, 0.35);
}
.jobmodal-close {
  position: absolute; top: 14px; right: 14px; border: 0; background: #f5f4f2;
  width: 34px; height: 34px; border-radius: 999px; font-size: 1rem;
  cursor: pointer; color: #6a6f75;
}
.jobmodal-close:hover { background: #eceae7; }
.jobmodal-badges { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; padding-right: 40px; }
.jobmodal h3 { font-size: 1.35rem; font-weight: 900; line-height: 1.35; }
.jobmodal-meta { font-size: 0.85rem; color: #82868b; }
.jobmodal-desc {
  white-space: pre-line; line-height: 1.7; color: #3d4248; font-size: 0.95rem;
  overflow-y: auto; border-top: 1px solid #eceae7; padding-top: 12px;
}
.jobmodal-actions { display: flex; justify-content: flex-end; padding-top: 4px; }
.jobmodal-apply {
  background: #ee6325; color: #fff; font-weight: 800; text-decoration: none;
  padding: 13px 28px; border-radius: 999px; font-size: 1rem;
}
.jobmodal-apply:hover { background: #d4531a; }
