/* =========================================================
  RESET / BASE
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}
body {
  font-family: "Noto Sans KR", sans-serif;
  background: #fff;
  color: #111;
  word-break: keep-all;
  overflow-wrap: break-word;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  position: relative;
}
a {
  color: inherit;
}
a:hover {
  color: #ff6b2b;
}
img,
video,
iframe {
  max-width: 100%;
}

/* grid/flex 내부 요소가 부모 너비를 밀어내는 것 방지 */
section,
.si,
.about-top,
.ideal-wrap,
.ideal-row,
.why-grid,
.job-layout,
.job-sec,
.sidebar,
.s-card,
.ben-box,
.ben-grid,
.foot-in {
  min-width: 0;
  max-width: 100%;
}

/* =========================================================
  NAVIGATION
========================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #edeae5;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 44px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  min-width: 0;
}
.nav-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  overflow: hidden;
  flex: 0 0 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d1a2d;
}
.nav-logo-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.nav-logo-text {
  font-size: 17px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.5px;
  min-width: 0;
  overflow-wrap: break-word;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 0;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #ff6b2b;
}
.nav-cta {
  background: #111;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: #ff6b2b;
  color: #fff !important;
}

/* =========================================================
  HERO
========================================================= */
.hero {
  position: relative;
  background: #1a1a1a;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  width: 100%;
  max-width: 100%;
}
.hero-img {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?w=1400&q=80")
    center/cover no-repeat;
  filter: grayscale(100%) brightness(0.45);
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.72) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 44px 72px;
  width: 100%;
  min-width: 0;
}
.hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
}
.hero-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -1.8px;
  color: #fff;
  margin-bottom: 32px;
  overflow-wrap: break-word;
}
.hero-quote {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 680px;
  border-left: 3px solid #ff6b2b;
  padding-left: 20px;
  overflow-wrap: break-word;
}
.hero-quote em {
  font-style: normal;
  color: #ff9f1c;
  font-weight: 600;
}

/* =========================================================
  COMMON SECTION
========================================================= */
section {
  padding: 96px 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
.si {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 44px;
  width: 100%;
}
.sec-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ff6b2b;
  margin-bottom: 14px;
}
.sec-title {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -1.2px;
  line-height: 1.2;
  color: #111;
  margin-bottom: 16px;
  max-width: 100%;
  overflow-wrap: break-word;
}
.sec-desc {
  font-size: 16px;
  color: #888;
  line-height: 1.85;
  max-width: 580px;
  overflow-wrap: break-word;
}

/* =========================================================
  ABOUT / CHART
========================================================= */
.about-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
  margin-bottom: 64px;
}
.chart-wrap {
  border-radius: 20px;
  padding: 48px 48px 40px;
  text-align: center;
  min-width: 0;
  max-width: 100%;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  height: 240px;
  min-width: 0;
  max-width: 100%;
}

/* 강조 텍스트(오렌지) 공용 유틸리티 */
.text-accent {
  color: #ff6b2b;
}
.text-accent--bold {
  color: #ff6b2b;
  font-weight: 800;
}

/* ABOUT 섹션 (인라인 스타일 정리) */
.about-sec {
  background: #fff;
  padding: 96px 0 30px;
}
.about-label-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.about-label {
  color: #ff6b2b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.about-title {
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 900;
  color: #0d1a2d;
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  text-wrap: pretty;
}
.about-desc {
  font-size: clamp(15px, 1.4vw, 18px);
  color: #4a5568;
  line-height: 1.8;
  font-weight: 400;
  word-break: keep-all;
  max-width: 480px;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}
.about-stat-card {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 18px 16px;
}
.about-stat-card--accent {
  background: linear-gradient(135deg, #ff6b2b, #ffaa1c);
}
.about-stat-num {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -1px;
  color: #111;
}
.about-stat-num--light {
  color: #fff;
}
.about-stat-label {
  font-size: 12px;
  color: #aaa;
  margin-top: 3px;
}
.about-stat-label--light {
  color: rgba(255, 255, 255, 0.8);
}
.about-img-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.about-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  top: 20px;
}

/* CHART (매출 그래프) 인라인 스타일 정리 */
.chart-desc {
  font-size: clamp(16px, 1.5vw, 25px);
  color: #222;
  line-height: 1.8;
  word-break: keep-all;
  font-weight: 500;
}
.chart-graph {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 48px auto 0;
}
.chart-bubble-pos {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
}
.chart-bubble {
  display: inline-block;
  background: #e8f0ff;
  border-radius: 40px;
  padding: 11px 28px;
  position: relative;
  white-space: nowrap;
}
.chart-bubble-text {
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 900;
  color: #111;
  letter-spacing: -0.02em;
}
.chart-bubble-arrow {
  position: absolute;
  bottom: -10px;
  left: 55%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #e8f0ff;
}
.chart-bars-outer {
  padding-top: 70px;
  position: relative;
}
.chart-bars-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(6px, 2vw, 20px);
  height: 260px;
  position: relative;
}
.chart-bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.chart-bar-pct {
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 700;
  color: #444;
}
.chart-bar-pct--accent {
  color: #ff6b2b;
}
.chart-bar-fill {
  width: 100%;
  border-radius: 4px 4px 0 0;
  background: #2d2d2d;
}
.chart-bar-fill--accent {
  background: #ff6b2b;
}
.chart-bar-year {
  font-size: clamp(10px, 1vw, 13px);
  color: #666;
}
.chart-bar-year--bold {
  font-weight: 700;
}
.chart-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 260px;
  pointer-events: none;
  overflow: visible;
}
/* 연도별 막대 높이 (데이터 값) */
.h-2020 {
  height: 80px;
}
.h-2021 {
  height: 120px;
}
.h-2022 {
  height: 155px;
}
.h-2023 {
  height: 185px;
}
.h-2024 {
  height: 218px;
}
.h-2025 {
  height: 260px;
}

/* =========================================================
  IDEAL CANDIDATE
========================================================= */
.ideal-sec {
  padding: 96px 0 30px;
  background-color: #fff;
  overflow: hidden;
}
.ideal-intro {
  margin-bottom: 56px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.sec-desc--wide {
  margin-top: 16px;
  max-width: none;
}
.ideal-wrap {
  display: flex;
  flex-direction: column;
  gap: 56px;
  max-width: 750px;
  margin: 0 auto;
  width: 100%;
  container-type: inline-size;
}
.ideal-row {
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  width: 100%;
}
.ideal-img {
  width: 400px;
  height: 270px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  max-width: 100%;
}
.ideal-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  max-width: 100%;
}
.ideal-title {
  font-size: 26px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  display: block;
  max-width: 100%;
  overflow-wrap: break-word;
}
.ideal-desc {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  max-width: 100%;
  overflow-wrap: break-word;
}

/* =========================================================
  WHY JOIN US
========================================================= */
.why {
  background: #fff;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.why-card {
  background: #f7f7f7;
  border-radius: 22px;
  padding: 38px 30px;
  position: relative;
  overflow: hidden;
  min-width: 0;
}
.why-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b2b, #ffaa1c);
}
.why-n {
  font-size: 68px;
  font-weight: 900;
  color: rgba(255, 107, 43, 0.25);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -2px;
}
.why-t {
  font-size: 22px;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
  max-width: 100%;
  overflow-wrap: break-word;
}
.why-d {
  font-size: 16px;
  color: #777;
  line-height: 1.85;
  max-width: 100%;
  overflow-wrap: break-word;
}

/* =========================================================
  JOB POSTING
========================================================= */
.job {
  background: #f7f7f7;
  /* 전역 section{overflow-x:hidden} 규칙이 사이드바의 position:sticky를
     막아서 이 섹션만 overflow를 visible로 되돌림 (가로 스크롤 방지는
     상위 html/body의 overflow-x:hidden이 이미 처리하고 있음) */
  overflow: visible;
}
.job-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
  margin-top: 56px;
  align-items: start;
  width: 100%;
  max-width: 100%;
}
.job-layout > * {
  min-width: 0;
  max-width: 100%;
}
.job-sec {
  margin-bottom: 36px;
  width: 100%;
}
.job-sec-t {
  font-size: 15px;
  font-weight: 800;
  color: #ff6b2b;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding-bottom: 14px;
  border-bottom: 2px solid #ffd5be;
  margin-bottom: 22px;
  max-width: 100%;
  overflow-wrap: break-word;
}
.jt {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.jt tr {
  border-bottom: 1px solid #efefef;
}
.jt td {
  padding: 18px 0;
  font-size: 18px;
  vertical-align: top;
  overflow-wrap: break-word;
  word-break: keep-all;
}
.jt td:first-child {
  font-weight: 700;
  color: #999;
  width: 140px;
}
.jt td:last-child {
  color: #111;
  font-weight: 600;
}
.j-salary {
  font-size: 24px;
  font-weight: 900;
  color: #ff6b2b;
  letter-spacing: -0.5px;
  display: inline-block;
  max-width: 100%;
  overflow-wrap: break-word;
}
.jl {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 100%;
}
.jl li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  color: #444;
  line-height: 1.65;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: break-word;
}
.jl-dot {
  width: 7px;
  height: 7px;
  background: #ff6b2b;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 10px;
}

/* =========================================================
  INCENTIVE CHIPS / PROCESS
========================================================= */
.ins-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.ins-chip {
  background: #fff0e8;
  color: #ff6b2b;
  border: 1px solid #ffd5be;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  max-width: 100%;
  overflow-wrap: break-word;
}

.proc {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.proc-s {
  background: #fff;
  border-radius: 8px;
  padding: 15px 24px;
  font-size: 17px;
  font-weight: 700;
  color: #333;
  max-width: 100%;
  overflow-wrap: break-word;
  text-align: center;
}
.proc-s.fin {
  background: linear-gradient(135deg, #ff6b2b, #ffaa1c);
  color: #fff;
}
.proc-arr {
  color: #ccc;
  font-size: 18px;
  flex-shrink: 0;
}

/* =========================================================
  APPLY FORM / SIDEBAR
========================================================= */
.sidebar {
  position: sticky;
  top: 76px;
  width: 100%;
}
.s-card {
  background: #fff;
  border-radius: 22px;
  padding: 30px 26px;
  border: 1.5px solid #efefef;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}
.s-card form {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.apply-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.s-badge-dot {
  width: 5px;
  height: 5px;
  background: #ff6b2b;
  border-radius: 50%;
}
.s-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff0e8;
  border: 1px solid #ffd5be;
  padding: 5px 11px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #ff6b2b;
  margin-bottom: 18px;
  max-width: 100%;
  overflow-wrap: break-word;
}
.s-t {
  font-size: 19px;
  font-weight: 800;
  color: #111;
  margin-bottom: 6px;
  max-width: 100%;
  overflow-wrap: break-word;
}
.s-sub {
  font-size: 13px;
  color: #999;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 100%;
  overflow-wrap: break-word;
}
.s-div {
  height: 1px;
  background: #f0f0f0;
  margin: 18px 0;
}
.s-btn-out {
  width: 100%;
  max-width: 100%;
  background: transparent;
  color: #666;
  border: 1px solid #ddd;
  padding: 13px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  text-decoration: none;
  display: block;
  overflow-wrap: break-word;
}
.s-btn-out:hover {
  border-color: #ff6b2b;
  color: #ff6b2b;
}
.af-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.af-label {
  font-size: 12px;
  font-weight: 700;
  color: #555;
  max-width: 100%;
  overflow-wrap: break-word;
}
.af-input,
.af-select,
.af-textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1.5px solid #e0e0e0;
  border-radius: 9px;
  padding: 13px 16px;
  font-size: 14px;
  font-family: inherit;
  color: #111;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.af-select {
  cursor: pointer;
  appearance: none;
}
.af-textarea {
  resize: vertical;
  min-height: 80px;
}
.af-input:focus,
.af-select:focus,
.af-textarea:focus {
  border-color: #ff6b2b;
}
.af-agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #888;
  line-height: 1.5;
  margin-top: 4px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: break-word;
}
.af-agree input {
  margin-top: 2px;
  accent-color: #ff6b2b;
  flex-shrink: 0;
}
.af-submit {
  width: 100%;
  max-width: 100%;
  background: linear-gradient(135deg, #ff6b2b, #ffaa1c);
  color: #fff;
  border: none;
  padding: 17px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  margin-top: 20px;
  transition: opacity 0.2s;
}

/* =========================================================
  BENEFITS
========================================================= */
.benefits {
  background: #fff;
}
.ben-box {
  margin-top: 48px;
  border: 1.5px solid #e8e8e8;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}
.ben-header {
  background: linear-gradient(135deg, #ff6b2b, #ffaa1c);
  padding: 22px;
  text-align: center;
}
.ben-header-t {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  max-width: 100%;
  overflow-wrap: break-word;
}
.ben-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.ben-card {
  padding: 36px 24px;
  text-align: center;
  background: #fff;
  border-right: 1.5px solid #e8e8e8;
  border-bottom: 1.5px solid #e8e8e8;
  min-width: 0;
}
.ben-card:nth-child(3n) {
  border-right: none;
}
.ben-card:nth-child(4),
.ben-card:nth-child(5),
.ben-card:nth-child(6) {
  border-bottom: none;
}
.ben-card-ico {
  width: 130px;
  height: 130px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}
.ben-card-ico img {
  width: 130px !important;
  height: 130px !important;
  object-fit: contain;
  max-width: 100%;
}
.ben-card-t {
  font-size: 18px;
  font-weight: 900;
  color: #ff6b2b;
  margin-bottom: 8px;
  max-width: 100%;
  overflow-wrap: break-word;
}
.ben-card-d {
  font-size: 16px;
  color: #777;
  line-height: 1.7;
  max-width: 100%;
  overflow-wrap: break-word;
}

/* =========================================================
  CTA
========================================================= */
.cta {
  background: linear-gradient(135deg, #ff6b2b, #ffaa1c);
  padding: 72px 20px;
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  overflow-x: hidden;
}
.cta .si {
  max-width: 760px;
  margin: 0 auto;
  overflow: visible;
}
.cta-t {
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: #fff;
  max-width: 100%;
  overflow-wrap: break-word;
}
.cta-d {
  margin: 24px 0 38px;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.8;
  color: #fff;
  word-break: keep-all;
  max-width: 100%;
  overflow-wrap: break-word;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 248px;
  max-width: 100%;
  height: 58px;
  padding: 0 34px;
  border-radius: 9px;
  background: #fff;
  color: #ff5f1f;
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.cta-c {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #fff;
  max-width: 100%;
}
.cta-c span {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
}
.cta-c strong {
  display: block;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.2px;
  max-width: 100%;
  overflow-wrap: break-word;
}
.cta-phone-link,
.cta-phone-link:visited,
.cta-phone-link:hover,
.cta-phone-link:active,
.cta-phone-link:focus {
  color: #fff !important;
  text-decoration: none !important;
  display: inline-block;
}
.cta-phone-link strong {
  color: #fff !important;
  text-decoration: none !important;
}

/* =========================================================
  FOOTER
========================================================= */
.footer {
  background: #333;
  padding: 36px 0;
  border-top: 4px solid #ff6b2b;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.foot-in {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.foot-logo {
  margin-bottom: 0;
}
.foot-logo img {
  display: block;
  width: 120px;
  height: auto;
}
.foot-info {
  line-height: 1.6;
  color: #9b9b9b;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  max-width: 100%;
  overflow-wrap: break-word;
}
.foot-line {
  display: block;
  color: #9b9b9b;
  margin: 2px 0;
  max-width: 100%;
  overflow-wrap: break-word;
}

/* =========================================================
  ANIMATION
========================================================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
  CONTAINER QUERY
========================================================= */
@container (max-width:600px) {
  .ideal-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    overflow: hidden;
  }
  .ideal-img {
    width: calc(100% - 16px);
    max-width: 100%;
    height: 220px;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
  }
  .ideal-text {
    padding: 0 16px;
    text-align: left;
  }
  .ideal-title {
    font-size: 20px;
  }
  .ideal-desc {
    font-size: 16px;
  }
}

/* =========================================================
  MEDIA QUERY - TABLET / MOBILE
========================================================= */
@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .nav-inner {
    padding: 0 20px;
  }
  .nav-links a:not(.nav-cta) {
    display: none;
  }

  section {
    padding: 96px 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .si {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    overflow-x: hidden;
  }

  .sec-title {
    font-size: 26px;
    letter-spacing: -0.6px;
  }
  .sec-desc {
    font-size: 15px;
    max-width: none;
  }

  .hero {
    min-height: 420px;
  }
  .hero-inner {
    padding: 72px 20px 44px;
  }
  .hero-sub {
    font-size: 13px;
  }
  .hero-title {
    font-size: 30px;
    letter-spacing: -0.8px;
  }
  .hero-quote {
    font-size: 14px;
  }

  .about-top {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .chart-wrap {
    padding: 24px 8px 20px;
  }
  .chart-bars {
    gap: 6px;
    height: 160px;
  }
  .chart-svg {
    transform: translateY(10px);
  }
  .chart-bubble {
    padding: 18px 32px !important;
  }

  .ideal-wrap {
    gap: 40px;
    width: 100%;
    max-width: 100%;
  }

  .ideal-row {
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100%;
    max-width: 100%;
    gap: 18px;
    overflow: hidden;
  }

  .ideal-img {
    width: 100%;
    max-width: 100%;
    height: 220px;
    border-radius: 12px;
  }

  .ideal-text {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .why-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .why-card {
    padding: 28px 22px;
  }
  .why-n {
    font-size: 48px;
  }
  .why-t {
    font-size: 18px;
  }
  .why-d {
    font-size: 15px;
  }

  /* 채용공고 + 입사지원서 모바일 1열 고정 */
  .job-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 28px;
    width: 100%;
    max-width: 100%;
    margin-top: 36px;
    overflow: hidden;
  }

  .job-layout > *,
  .job-sec,
  .sidebar,
  #apply,
  .s-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .sidebar {
    position: static;
    top: auto;
  }

  .s-card {
    padding: 24px 20px;
    border-radius: 18px;
    overflow: hidden;
  }

  .s-card form,
  .af-field,
  .af-input,
  .af-select,
  .af-textarea,
  .af-submit,
  .s-btn-out {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  /* 채용공고 표 모바일 세로형 전환 */
  .jt,
  .jt tbody,
  .jt tr,
  .jt td {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .jt {
    table-layout: auto;
  }

  .jt tr {
    padding: 14px 0;
  }

  .jt td {
    padding: 0;
    font-size: 15px;
    line-height: 1.65;
  }

  .jt td:first-child {
    width: 100%;
    margin-bottom: 4px;
    font-size: 13px;
    color: #999;
  }

  .jt td:last-child {
    width: 100%;
    font-size: 15px;
    color: #111;
    font-weight: 700;
  }

  .j-salary {
    display: block;
    font-size: 20px;
    line-height: 1.4;
  }

  .jl {
    width: 100%;
    max-width: 100%;
  }

  .jl li {
    width: 100%;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.7;
  }

  .ins-chips {
    width: 100%;
    max-width: 100%;
    gap: 8px;
  }

  .ins-chip {
    max-width: 100%;
    font-size: 14px;
    padding: 9px 14px;
    line-height: 1.4;
  }

  /* 전형 절차 모바일: 데스크탑처럼 가로형 유지 */
  .proc {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    overflow: visible;
  }

  .proc-s {
    width: auto;
    min-width: 0;
    max-width: none;
    flex: 0 0 auto;
    padding: 11px 15px;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
  }

  .proc-arr {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    font-size: 16px;
    line-height: 1;
    color: #ccc;
    flex: 0 0 auto;
  }

  .proc-arr::before {
    content: none;
  }

  .ben-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ben-card {
    padding: 20px 12px;
    border-right: 1.5px solid #e8e8e8 !important;
    border-bottom: 1.5px solid #e8e8e8 !important;
  }
  .ben-card:nth-child(3n) {
    border-right: 1.5px solid #e8e8e8 !important;
  }
  .ben-card:nth-child(2n) {
    border-right: none !important;
  }
  .ben-card:nth-child(5),
  .ben-card:nth-child(6) {
    border-bottom: none !important;
  }
  .ben-card-ico {
    width: 70px;
    height: 70px;
  }
  .ben-card-ico img {
    width: 70px !important;
    height: 70px !important;
  }
  .ben-card-t {
    font-size: 14px;
  }
  .ben-card-d {
    font-size: 13px;
  }

  .cta {
    padding: 58px 20px;
    overflow: visible;
    overflow-x: hidden;
  }

  .cta .si {
    overflow: visible;
  }

  .cta-d {
    margin: 18px 0 32px;
  }
  .cta-btn {
    width: 100%;
    max-width: 280px;
    height: 56px;
    min-width: 0;
  }
  .cta-c {
    margin-top: 30px;
  }

  .foot-in {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
    gap: 8px;
    width: 100%;
    max-width: 100%;
  }

  .foot-logo {
    margin-bottom: 22px;
  }
  .foot-logo img {
    width: 112px;
  }
  .foot-info {
    width: 100%;
    max-width: 100%;
    line-height: 1.5;
    color: #9b9b9b;
    font-size: 15px;
    font-weight: 600;
  }
  .foot-line {
    width: 100%;
    max-width: 100%;
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.75);
  }
}

/* =========================================================
  MEDIA QUERY - SMALL MOBILE
========================================================= */
@media (max-width: 480px) {
  .si {
    padding-left: 18px;
    padding-right: 18px;
  }

  .sec-title {
    font-size: 22px;
  }
  .hero-title {
    font-size: 24px;
  }
  .hero-quote {
    font-size: 13px;
  }

  .job-layout {
    gap: 24px;
  }

  .s-card {
    padding: 22px 18px;
  }

  .af-input,
  .af-select,
  .af-textarea {
    padding: 12px 14px;
    font-size: 14px;
  }

  .af-submit {
    padding: 15px;
    font-size: 15px;
  }

  .proc {
    gap: 6px;
  }

  .proc-s {
    padding: 9px 11px;
    font-size: 13px;
  }

  .proc-arr {
    font-size: 14px;
  }
}
