/* ========================================
   UNIQLO 2026 채용 캠페인 랜딩페이지
   ======================================== */

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #E30613;
  --red-dark: #C40510;
  --black: #000000;
  --white: #FFFFFF;
  --gray-light: #F5F5F5;
  --gray: #999999;
  --gray-dark: #333333;
  --font: 'NanumSquare', 'SUIT Variable', 'SUIT', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1440px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

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

/* ========================================
   Placeholder Styles (이미지/영상 교체용)
   ======================================== */
.img-placeholder,
.video-placeholder,
.logo-placeholder {
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px dashed #bbb;
}

.img-placeholder::after,
.video-placeholder::after {
  content: attr(data-placeholder);
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: #aaa;
  white-space: nowrap;
}

.video-placeholder {
  background: #222;
  color: #fff;
  border-color: #555;
  flex-direction: column;
  gap: 12px;
}

.video-placeholder::after {
  color: #666;
}

.play-btn {
  width: 60px;
  height: 60px;
  background: rgba(255, 0, 0, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  flex-shrink: 0;
}

.nav-logo-img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 48px;
}

.nav-links a {
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
  transition: opacity 0.2s;
  letter-spacing: -0.02em;
}

.nav-links a:hover {
  opacity: 0.8;
}

.nav-apply-btn {
  background: none;
  color: var(--white);
  padding: 12px 0;
  font-weight: 900;
  font-size: 17px;
  transition: opacity 0.2s;
  letter-spacing: -0.02em;
  border: none;
}

.nav-apply-btn:hover {
  opacity: 0.8;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--red);
  z-index: 999;
  padding: 40px;
  flex-direction: column;
}

.mobile-menu-overlay.active {
  display: flex;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-links a {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
}

.mobile-apply-btn {
  display: block;
  background: var(--white);
  color: var(--black) !important;
  padding: 16px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 18px;
  text-align: center;
  margin-top: auto;
  width: 100%;
}

/* ========================================
   Section: Hero
   ======================================== */
.hero {
  padding-top: 70px;
  min-height: 100vh;
  background: url('images/main_banner.png') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  position: relative;
}


.hero-content {
  position: absolute;
  top: 38%;
  left: 0;
  right: 0;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
  z-index: 1;
}

.hero-text {
  flex: 1;
}

.mobile-br {
  display: none;
}

.hero-tagline {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  font-style: normal;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: 22px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.02em;
}


.banner-close {
  display: none;
}

.floating-banner {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: var(--black);
  color: var(--white);
  padding: 28px 40px;
  border-radius: 16px;
  text-align: center;
  z-index: 900;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
}

.floating-banner:hover {
  transform: translateY(-4px);
}

.banner-small {
  font-size: 14px;
  margin-bottom: 4px;
}

.banner-big {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 12px;
}

.banner-btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 10px 36px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 14px;
  transition: transform 0.2s;
}

.banner-btn:hover {
  transform: scale(1.05);
}

/* ========================================
   Common Section Styles
   ======================================== */
.section {
  padding: 120px 0;
}

.section-badge,
.section-badge-red,
.section-badge-black {
  display: inline-block;
  padding: 14px 44px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.section-badge {
  background: var(--red);
  color: var(--white);
}

.section-badge-red {
  background: var(--red);
  color: var(--white);
}

.section-badge-black {
  background: var(--black);
  color: var(--white);
}

.section-badge-white {
  display: inline-block;
  padding: 14px 44px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 20px;
  background: var(--white);
  color: var(--black);
}

.section-title {
  font-size: 42px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 60px;
  line-height: 1.4;
}

.section-title-white {
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 60px;
  line-height: 1.4;
}

.section .container {
  text-align: center;
}

/* ========================================
   Section: FR WAY
   ======================================== */
.frway {
  background: var(--white);
}

.frway-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.frway-card {
  background: var(--gray-light);
  padding: 56px 36px;
  text-align: left;
}

.frway-card-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 4px;
}

.frway-card h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 24px;
}

.frway-divider {
  width: 100%;
  height: 1px;
  background: #999;
  margin: 0 0 28px;
}

.frway-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* ========================================
   Section: Believe in Your Potential
   ======================================== */
.potential {
  background: var(--gray-light);
}

.potential-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  text-align: left;
}

.potential-card {
  background: var(--white);
  padding: 48px 40px;
  border-left: 4px solid var(--red);
}

.potential-card h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 4px;
}

.potential-highlight {
  font-size: 24px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 20px;
}

.potential-card > p:last-child {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* ========================================
   Section: Who We're Looking For
   ======================================== */
.looking-for {
  background: var(--white);
}

.uniqlo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.uniqlo-card {
  background: var(--gray-light);
  color: var(--black);
  padding: 36px 36px;
  text-align: left;
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
  min-height: 340px;
}

.uniqlo-card .uniqlo-kr {
  margin-top: auto;
}

.uniqlo-card:hover {
  transform: translateY(-4px);
}

.uniqlo-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--white);
  color: var(--black);
  font-size: 28px;
  font-weight: 900;
  border-radius: 50%;
  margin-bottom: 20px;
}

.uniqlo-card h3 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.3;
  color: var(--black);
}

.uniqlo-kr {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
  text-align: right;
  color: var(--black);
}

.uniqlo-card > p:last-child {
  font-size: 15px;
  text-align: right;
  color: #555;
  line-height: 1.6;
}

/* ========================================
   Section: Career Path
   ======================================== */
.career-path {
  background: var(--gray-light);
}

.career-badges {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 20px;
}

.career-path .section-badge-white,
.career-path .section-badge-red {
  display: block;
  width: auto;
  margin: 0 0 8px;
  text-align: center;
}

.career-layout {
  display: flex;
  gap: 10px;
  align-items: stretch;
  text-align: center;
}

/* 공통 아이템 - 호버 오버레이 */
.career-item {
  position: relative;
  cursor: pointer;
}

.career-item-detail {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #d5d5d5;
  color: var(--black);
  padding: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
  overflow: hidden;
}

.career-item:hover .career-item-detail {
  opacity: 1;
}

/* store는 JS 클래스로만 처리 (직접 호버 제외) */
.career-item-store:hover .career-item-detail {
  opacity: 0;
}

.career-item-detail p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 6px;
  color: #333;
}

/* UMC 박스 */
.career-item-umc {
  flex: 0 0 280px;
  background: var(--white);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.career-item-umc h3 {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.4;
}

/* 오른쪽 다이어그램 */
.career-diagram {
  flex: 1;
}

.career-diagram-inner {
  background: #eee;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1.2fr 1.2fr;
  gap: 10px;
  padding: 0;
  min-height: 580px;
}

/* ㄱ자 반전: 상단 row 1 cols 1~3 */
.career-gieuk-top {
  grid-row: 1;
  grid-column: 1 / 4;
  background: var(--white);
  transition: background 0.27s ease;
  z-index: 0;
  cursor: pointer;
}

/* STORE MANAGEMENT - col 1 전체 높이 (ㄱ자 세로축, 갭 없이 연결) */
.career-item-store {
  grid-row: 1 / 4;
  grid-column: 1;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
  transition: background 0.15s ease;
  z-index: 1;
}

.career-item-store h3 {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.4;
  transition: color 0.15s ease;
}

/* ㄱ자 호버: JS로 .gieuk-hover 클래스 동기화 */
.career-diagram-inner.gieuk-hover .career-gieuk-top {
  transition: background 0.1s ease; /* 호버 시작은 빠르게 */
}

.career-diagram-inner.gieuk-hover .career-gieuk-top,
.career-diagram-inner.gieuk-hover .career-item-store {
  background: #d5d5d5;
}

.career-diagram-inner.gieuk-hover .career-item-store h3 {
  color: var(--black);
}

.career-diagram-inner.gieuk-hover .career-item-store .career-item-detail {
  opacity: 1;
  background: #d5d5d5;
  color: var(--black);
}

.career-diagram-inner.gieuk-hover .career-item-store .career-item-detail p {
  color: #333;
}

/* 흰색 박스들 (공통) */
.career-item-box {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  position: relative;
  z-index: 1;
}

.career-item-box h3 {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
}

/* AREA, STORE OP - row 2에 배치 */
.career-item-box:nth-child(2) { grid-row: 2; grid-column: 2; }
.career-item-box:nth-child(3) { grid-row: 2; grid-column: 3; }

/* GLOBAL LEADER - 오른쪽 전체 높이 */
.career-item-global {
  grid-row: 1 / 4;
  grid-column: 4;
}

/* HEAD QUARTERS - col 2~3만 */
.career-item-hq {
  grid-row: 3;
  grid-column: 2 / 4;
}

/* LOCAL / OVERSEAS */
.career-local-overseas {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 32px;
}

.career-tag {
  border: 2px solid var(--black);
  color: var(--black);
  padding: 18px 24px;
  font-weight: 900;
  font-size: 18px;
  text-align: center;
  width: 280px;
  flex-shrink: 0;
}

.career-tag-overseas {
  cursor: pointer;
  width: 280px;
  position: relative;
  transition: width 0.3s ease, background 0.15s ease, border-color 0.15s ease;
}

.career-tag-overseas > span {
  transition: opacity 0.15s ease;
}

.career-tag-overseas .career-item-detail {
  position: absolute;
  top: -2px;
  bottom: -2px;
  right: -2px;
  left: auto;
  width: 700px;
  background: #d5d5d5;
  border: 2px solid #d5d5d5;
  padding: 0 24px;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
}

.career-tag-overseas .career-item-detail::before {
  display: none;
}

.career-tag-overseas:hover {
  width: 700px;
  background: #d5d5d5;
  border-color: #d5d5d5;
}

.career-tag-overseas:hover > span {
  opacity: 0;
}

.career-tag-overseas:hover .career-item-detail {
  opacity: 1;
  pointer-events: auto;
}

.career-tag-overseas .career-item-detail p {
  color: #333;
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
  text-align: left;
}

.career-exchange {
  color: var(--black);
  font-size: 32px;
}

/* ========================================
   Section: Requirements
   ======================================== */
.requirements {
  background: var(--white);
  padding-top: 80px;
}

.req-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
}

.req-card {
  background: var(--gray-light);
  color: var(--black);
  padding: 28px 32px 44px;
  position: relative;
}

.req-label {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 28px;
}

.req-value {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
  color: var(--black);
}

.req-note {
  font-size: 13px;
  color: #888;
  margin-top: 20px;
}

/* ========================================
   Section: Recruitment Process
   ======================================== */
.process {
  background: var(--white);
}

.process-rows {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.process-capsule {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-capsule-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-light);
  border-radius: 120px;
  padding: 10px 16px;
  gap: 96px;
  position: relative;
}

.process-icon {
  width: 180px;
  height: 180px;
  background: var(--white);
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* 아이콘 사이 연결 라인 */
.process-icon + .process-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  right: calc(100%);
  width: 97px;
  height: 2px;
  background: #ddd;
  transform: translateY(-50%);
  z-index: 0;
}

.process-icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.process-icon-final {
  background: #ccc;
  border-color: #ccc;
}

.process-texts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 800px;
  margin-top: 28px;
}

.process-step {
  text-align: center;
}

.process-step h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 4px;
}

.process-date {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 10px;
}

.process-step > p:last-child {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* 2열: 캡슐(2개) + 별도 아이콘 */
.process-capsule-icons-row2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 96px;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 800px;
}


.process-capsule-row2 .process-capsule-icons {
  gap: 96px;
  flex-shrink: 0;
}

.process-icon-separate {
  position: relative;
}

.process-capsule-row2 .process-texts .process-step:last-child {
  padding-left: 24px;
}

.process-icon-separate::before {
  content: '';
  position: absolute;
  top: 50%;
  right: calc(100% + 1px);
  width: 112px;
  height: 2px;
  background: #ddd;
  transform: translateY(-50%);
  z-index: 0;
}

.process-note {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-top: 48px;
}

/* ========================================
   Section: Benefits
   ======================================== */
.benefits {
  background: url('images/sub_banner(1).png') center bottom/cover no-repeat;
  min-height: 160vh;
  overflow: hidden;
  padding-bottom: 500px;
}

/* 슬라이더 - 풀뷰 무한 마퀴 */
.benefit-slider {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}

.benefit-track {
  display: flex;
  gap: 20px;
  padding: 10px 0 20px;
  animation: benefitScroll 40s linear infinite;
  width: max-content;
}

.benefit-track:hover {
  animation-play-state: paused;
}

@keyframes benefitScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.benefit-card {
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  padding: 64px 36px;
  text-align: center;
  min-width: 320px;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.benefit-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.benefit-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ========================================
   Section: Life at UNIQLO
   ======================================== */
.life {
  background: var(--gray-light);
}

.life-label {
  font-size: 24px;
  color: #666;
  letter-spacing: 4px;
  margin-bottom: 8px;
  font-weight: 900;
}

.life .section-title {
  margin-bottom: 16px;
}

.life-sub {
  color: #555;
  font-size: 18px;
  margin-bottom: 56px;
}

.life .container {
  max-width: 1600px;
}

.life-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.life-card {
  cursor: pointer;
  transition: transform 0.3s ease !important;
}

.life-card:hover {
  transform: translateY(-10px) !important;
}

.life-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  margin-bottom: 20px;
}

.life-card-info {
  text-align: left;
}

.life-card-hash {
  font-size: 16px;
  font-weight: 900;
  color: var(--black);
  line-height: 1.5;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.life-card-hash::before {
  content: '#';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 900;
  flex-shrink: 0;
}

.life-card-name {
  font-size: 15px;
  color: var(--black);
  padding-top: 14px;
  border-top: 1px solid #ccc;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.life-card-name strong {
  font-weight: 900;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.life-card-name span {
  font-weight: 400;
  color: #666;
  font-size: 14px;
}

/* ========================================
   Section: Watch the Story
   ======================================== */
.story {
  background: var(--gray-light);
}

.story-label {
  font-size: 24px;
  color: #666;
  letter-spacing: 4px;
  margin-bottom: 8px;
  font-weight: 900;
}

.story .section-title {
  margin-bottom: 16px;
}

.story-sub {
  color: #555;
  font-size: 18px;
  margin-bottom: 56px;
}

.story .container {
  max-width: 1600px;
}

.story-videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.story-tags span {
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.story-tags span::before {
  content: '#';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}

/* ========================================
   Section: FAQ
   ======================================== */
.faq-section {
  background: var(--white);
}

.faq-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 0;
  justify-content: center;
  padding-bottom: 24px;
  border-bottom: 3px solid var(--red);
}

.faq-tab {
  padding: 16px 48px;
  border: 2px solid #ccc;
  background: var(--white);
  border-radius: 40px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s;
}

.faq-tab.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.faq-content {
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
  text-align: left;
}

.faq-q {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
}

.faq-question span:nth-child(2) {
  flex: 1;
}

.faq-arrow {
  font-size: 16px;
  color: #999;
  transition: transform 0.3s;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  padding-left: 56px;
}

/* ========================================
   Section: CTA
   ======================================== */
.cta-section {
  background: var(--white);
}

.cta-pre {
  font-size: 28px;
  color: #999;
  margin-bottom: 8px;
}

.cta-black {
  color: var(--black);
  font-weight: 800;
}

.cta-red {
  color: #999;
  font-weight: 800;
}

.cta-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 68px;
  font-weight: 900;
  color: var(--black);
  margin-top: 4px;
  margin-bottom: 8px;
}

.cta-desc {
  font-size: 18px;
  color: #555;
  margin-bottom: 48px;
}

.cta-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cta-btn {
  display: flex;
  flex-direction: column;
  padding: 32px 32px;
  border-radius: 20px;
  text-align: left;
  transition: transform 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
  min-height: 220px;
}

.cta-btn:hover {
  transform: translateY(-6px);
}

.cta-btn-header {
  text-align: left;
}

.cta-btn-header strong:first-child {
  display: block;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.cta-btn-header strong:last-child {
  display: block;
  font-size: 36px;
  font-weight: 900;
}

.cta-btn-apply {
  background: linear-gradient(135deg, #E30613, #F47B8A);
  color: var(--white);
}

.cta-btn-notify {
  background: linear-gradient(135deg, #222, #444);
  color: var(--white);
}

.cta-btn-qa {
  background: var(--white);
  color: var(--black);
  border: 2px solid #ddd;
}

.cta-btn p {
  font-size: 15px;
  margin-top: auto;
  opacity: 0.85;
  line-height: 1.6;
  text-align: right;
  width: 100%;
}

/* GET NOTIFIED Modal */
.modal-content.notify-modal-content {
  max-width: 500px;
  border-radius: 20px;
  max-height: 90vh;
  overflow-y: auto;
}

.notify-modal-header {
  display: flex;
  justify-content: flex-end;
  padding: 20px 24px 0;
}

.notify-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--black);
}

.notify-modal-body {
  padding: 0 28px 28px;
  text-align: center;
}

.notify-title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.notify-desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 28px;
}

.notify-form {
  max-width: 320px;
  margin: 0 auto;
}

.notify-field {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.notify-field label {
  font-size: 14px;
  font-weight: 800;
  min-width: 60px;
  text-align: right;
}

.notify-required {
  color: var(--red);
}

.notify-field input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 13px;
  font-family: inherit;
}

.notify-submit {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 24px auto 28px;
  padding: 14px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s;
}

.notify-submit:hover {
  transform: scale(1.02);
}

.notify-privacy {
  background: var(--white);
  padding: 16px;
  border-radius: 10px;
  text-align: left;
  margin-bottom: 14px;
  max-height: 160px;
  overflow-y: auto;
}

.notify-privacy h4 {
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 6px;
}

.notify-privacy p {
  font-size: 11px;
  color: #555;
  line-height: 1.6;
}

.notify-agree {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.notify-agree input {
  display: none;
}

.notify-agree span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #ccc;
  background: var(--white);
  flex-shrink: 0;
  transition: 0.2s;
  font-size: 0;
}

.notify-agree input:checked + span {
  background: var(--black);
  border-color: var(--black);
  font-size: 14px;
  color: var(--white);
}

.notify-agree input:checked + span::after {
  content: '✓';
  font-weight: 900;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--white);
  text-align: center;
  padding: 40px 0 60px;
  color: var(--gray);
  font-size: 14px;
}

/* ========================================
   Modal
   ======================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.modal-content {
  background: var(--gray-light);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  border-radius: 24px;
}

.modal-header {
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 2px;
  border-radius: 24px 24px 0 0;
}

.modal-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

.modal-body {
  padding: 0;
  overflow: hidden;
}

.modal-img {
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: cover;
  margin-bottom: 0;
  border-radius: 0;
}

.modal-text {
  padding: 36px 36px;
  max-height: 300px;
  overflow-y: auto;
}

.modal-text h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 16px;
}

.modal-text p,
.modal-text div {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.modal-divider {
  width: 100%;
  height: 1px;
  background: #ccc;
  margin: 28px 0;
}

.modal-text h4 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 12px;
}

/* ========================================
   Responsive: Tablet (768px)
   ======================================== */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .nav-apply-btn {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .navbar.scrolled {
    background: var(--black);
    backdrop-filter: none;
    box-shadow: none;
  }

  .navbar.menu-open {
    background: var(--black);
  }

  .mobile-menu-overlay {
    top: 60px;
    background: var(--black);
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    padding: 60px 24px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-logo-video {
    width: 250px;
    height: 250px;
  }

  .hero-banner {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 0 24px 40px;
  }

  .frway-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .uniqlo-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .career-layout {
    flex-direction: column;
  }

  .career-item-umc {
    flex: unset;
    width: 100%;
    min-height: auto;
    padding: 32px;
  }

  .career-diagram-inner {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    min-height: auto;
    gap: 8px;
  }

  /* 태블릿: ㄱ자 비활성화 */
  .career-diagram-inner::before {
    display: none;
  }

  .career-item-store {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 80px;
  }

  .career-item-global {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .career-item-hq {
    grid-column: 1 / -1;
  }

  .career-item-box:nth-child(2),
  .career-item-box:nth-child(3) {
    grid-row: auto;
    grid-column: auto;
  }

  .req-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .life-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-videos {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Responsive: Mobile (480px)
   ======================================== */
@media (max-width: 640px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 20px;
  }

  .nav-inner {
    padding: 0 20px;
    height: 60px;
  }

  .mobile-br {
    display: inline;
  }

  .hero {
    padding-top: 60px;
  }

  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.6) 100%);
    z-index: 0;
  }

  .hero-content {
    padding: 40px 20px;
    top: 32%;
    left: 0;
    right: 0;
    padding: 0 20px;
  }

  .hero-tagline {
    font-size: 18px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  }

  .hero h1 {
    font-size: 24px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  }

  .hero-sub {
    font-size: 16px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  }

  .hero-logo-video {
    width: 180px;
    height: 180px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title,
  .section-title-white {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .frway-cards {
    grid-template-columns: 1fr;
  }

  .potential-cards {
    grid-template-columns: 1fr;
  }

  .uniqlo-cards {
    grid-template-columns: 1fr;
  }

  /* Career Path 모바일: 세로 타임라인 */
  .career-layout {
    flex-direction: column;
    gap: 0;
  }

  .career-item-umc {
    width: 100%;
    padding: 28px 20px;
    min-height: auto;
    margin-bottom: 8px;
  }

  .career-diagram-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: auto;
    background: none;
  }

  .career-diagram-inner::before,
  .career-gieuk-top {
    display: none;
  }

  .career-item-store,
  .career-item-box,
  .career-item-global,
  .career-item-hq {
    display: block;
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
    background: var(--white);
    padding: 24px 20px;
    text-align: center;
    position: relative;
    margin-bottom: 8px;
  }

  .career-item-store {
    order: 1;
  }

  .career-item-box:nth-child(3) {
    order: 2;
  }

  .career-item-box:nth-child(4) {
    order: 3;
  }

  .career-item-hq {
    order: 4;
  }

  .career-item-global {
    order: 5;
  }

  /* 타임라인 화살표 제거 */
  .career-item-store::after,
  .career-item-box::after,
  .career-item-hq::after,
  .career-item-global::after {
    display: none;
  }

  /* 모바일 h3 가운데 정렬 */
  .career-item-store h3,
  .career-item-box h3,
  .career-item-global h3,
  .career-item-hq h3,
  .career-item-umc h3 {
    text-align: center;
    width: 100%;
  }

  /* 모바일 아코디언 */
  .career-item-store .career-item-detail,
  .career-item-box .career-item-detail,
  .career-item-global .career-item-detail,
  .career-item-hq .career-item-detail,
  .career-item-umc .career-item-detail,
  .career-tag-overseas .career-item-detail {
    position: static;
    width: 100%;
    box-sizing: border-box;
    opacity: 1;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: var(--white);
    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  .career-item.is-open {
    background: #d5d5d5;
  }

  .career-item.is-open .career-item-detail {
    max-height: 400px;
    padding: 16px 20px;
    background: #d5d5d5;
  }

  .career-local-overseas {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }

  .career-tag {
    width: 100%;
    max-width: none;
    flex: none;
    padding: 14px 16px;
    font-size: 15px;
    text-align: center;
  }

  .career-tag-overseas {
    width: 100%;
  }

  /* 모바일: hover 효과 완전 비활성화 */
  .career-tag-overseas:hover {
    width: 100%;
    background: var(--white);
    border-color: var(--black);
  }

  .career-tag-overseas:hover > span,
  .career-tag-overseas > span {
    opacity: 1;
  }

  .career-tag-overseas:hover .career-item-detail {
    opacity: 1;
    pointer-events: auto;
  }

  .career-tag-overseas .career-item-detail {
    display: block;
    pointer-events: auto;
  }

  .career-tag-overseas.is-open {
    background: #d5d5d5;
    border-color: #d5d5d5;
  }

  .career-exchange {
    text-align: center;
    font-size: 24px;
  }

  .req-cards {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-capsule-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    background: none;
    border-radius: 0;
    padding: 0;
    gap: 0;
    width: 100%;
  }

  .process-capsule-icons-row2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    gap: 0;
    width: 100%;
  }

  .process-capsule-row2 .process-capsule-icons {
    display: contents;
  }

  .process-icon-separate {
    width: auto;
  }

  .process-icon {
    width: 72px;
    height: 72px;
  }

  .process-icon-final {
    background: #ccc;
    border-color: #ccc;
  }

  .process-icon img {
    width: 32px;
    height: 32px;
  }

  .process-icon + .process-icon::before,
  .process-icon-separate::before {
    display: none;
  }

  .process-texts {
    gap: 0;
    margin-top: 16px;
  }

  .process-capsule-row2 .process-step:last-child {
    transform: translateX(-6px);
  }

  .process-step {
    padding: 0 4px;
    word-break: keep-all;
  }

  .process-step h3 {
    font-size: 14px;
  }

  .process-date {
    font-size: 11px;
  }

  .process-step > p:last-child {
    font-size: 11px;
  }

  .benefits {
    background: url('images/sub_banner(1)_M.jpg') center bottom/cover no-repeat;
    min-height: 100vh;
  }

  .benefit-track {
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;
    grid-auto-columns: 140px;
    gap: 10px;
  }

  .benefit-card {
    min-width: 0;
    padding: 16px 10px;
  }

  .benefit-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
  }

  .benefit-icon img {
    width: 28px;
    height: 28px;
  }

  .benefit-card h3 {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .benefit-card p {
    font-size: 10px;
    line-height: 1.4;
  }

  .life-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-tabs {
    flex-direction: column;
    align-items: center;
  }

  .faq-tab {
    width: 100%;
    text-align: center;
  }

  .cta-pre {
    font-size: 20px;
  }

  .cta-title {
    font-size: 30px;
  }

  .cta-desc {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-btn {
    width: 100%;
    max-width: 340px;
    padding: 20px 24px;
    min-height: 0;
    height: 135px;
    justify-content: space-between;
  }

  .cta-btn-header strong:first-child {
    font-size: 14px;
    line-height: normal;
  }

  .cta-btn-header strong:last-child {
    font-size: 24px;
    line-height: normal;
  }

  .cta-btn p {
    font-size: 12px;
    margin-top: 0;
  }

  .modal-overlay {
    padding: 16px;
  }

  .floating-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 16px 16px 0 0;
    padding: 20px 20px 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 998;
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }

  .floating-banner.show {
    transform: translateY(0);
  }

  .floating-banner.hidden {
    display: none;
  }

  .banner-close {
    display: block;
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    color: #999;
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
  }

  .banner-small {
    font-size: 12px;
    margin-bottom: 2px;
  }

  .banner-big {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .banner-btn {
    padding: 12px 0;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }
}
