/* ===================================
   RIDEON — style.css
   =================================== */
/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  background: #F8F8F8;
  color: #1A1A1A;
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
ul { list-style: none; }

/* Skip link (accessibility) */
.skip-link{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;}
.skip-link:focus{left:16px;top:16px;width:auto;height:auto;padding:10px 14px;background:#fff;color:#000;border-radius:8px;z-index:2000;}

/* ── VARIABLES ── */
:root {
  --red:        #E8231A;
  --red-dark:   #C01810;
  --red-light:  #FF4A42;
  --dark:       #111111;
  --dark2:      #1C1C1C;
  --gray-900:   #1A1A1A;
  --gray-700:   #3A3A3A;
  --gray-500:   #6B6B6B;
  --gray-300:   #C4C4C4;
  --gray-100:   #F0F0F0;
  --white:      #FFFFFF;
  --bg:         #F8F8F8;
  --orange:     #FF6B00;
  --yellow:     #F5A623;

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow:     0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.16);
  --shadow-red: 0 8px 30px rgba(232,35,26,0.35);
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.nav-logo-text {
  font-family: inherit;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--dark);
}

.nav-logo-text span { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  padding: 8px 14px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { background: var(--gray-100); color: var(--dark); }
.nav-links a.active { color: var(--red); background: rgba(232,35,26,0.06); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-nav-call {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #6e48ff;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  transition: all 0.2s;
}
.btn-nav-call:hover { background: #b6a3ff; }

.btn-nav-apply {
  padding: 9px 20px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  box-shadow: var(--shadow-red);
}
.btn-nav-apply:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 35px rgba(232,35,26,0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 998;
  padding: 16px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 13px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid #f5f5f5;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { background: var(--gray-100); color: var(--red); }
.mobile-menu .m-apply {
  margin: 12px 24px 4px;
  display: block;
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  border-bottom: none;
}

/* ===================================
   HERO
   =================================== */
.hero {
  min-height: 100vh;
  background: var(--dark);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 65% 40%, rgba(232,35,26,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 15% 70%, rgba(255,107,0,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,35,26,0.18);
  border: 1px solid rgba(232,35,26,0.4);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #FF6B60;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease both;
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--red-light);
  border-radius: 50%;
  animation: blink 1.8s ease infinite;
  box-shadow: 0 0 8px rgba(255,107,96,0.6);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: inherit;
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 1px;
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.08s ease both;
}

.hero-title .accent { color: #727272; }

.hero-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 400;
  color: rgba(255,255,255,0.62);
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 40px;
  animation: fadeUp 0.7s 0.16s ease both;
}
.hero-desc strong { color: rgba(255,255,255,0.9); font-weight: 600; }

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeUp 0.7s 0.24s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.25s;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232,35,26,0.5);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.25s;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.3);
}

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 40px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.32s ease both;
}

.hero-stat {
  flex: 1;
  min-width: 130px;
  padding: 0 32px 0 0;
}

.hero-stat:first-child { padding-left: 0; }

.hero-stat + .hero-stat {
  border-left: 1px solid rgba(255,255,255,0.08);
  padding-left: 32px;
}

.hero-stat-num {
  font-family: inherit;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-num em { color: var(--red-light); font-style: normal; }

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  font-weight: 500;
  letter-spacing: 0.5px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================================
   TICKER
   =================================== */
.ticker {
  background: var(--red);
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: scroll-x 30s linear infinite;
}
.ticker-item {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.9);
  padding: 0 36px;
  text-transform: uppercase;
}
.ticker-dot {
  color: rgba(255,255,255,0.4);
  padding: 0;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===================================
   SECTIONS — COMMON
   =================================== */
.section {
  padding: 88px 24px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-title {
  font-family: inherit;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.5px;
  color: var(--gray-900);
  margin-bottom: 16px;
}
.section-title em { color: var(--red); font-style: normal; }
.section-desc {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.85;
  max-width: 540px;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   WHY SECTION
   =================================== */
.why-section { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.why-card {
  background: var(--bg);
  border: 1px solid #EBEBEB;
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.why-card:hover {
  border-color: rgba(232,35,26,0.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.why-card:hover::after { transform: scaleX(1); }

.why-icon {
  width: 52px; height: 52px;
  background: rgba(232,35,26,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.why-card h3 {
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gray-900);
}

.why-card p {
  font-size: 0.87rem;
  color: var(--gray-500);
  line-height: 1.8;
}
.why-card p strong { color: #ff3d3d; font-weight: 600; }

/* ===================================
   POSITIONS
   =================================== */
.positions-section { background: #F2F2F2; }

.positions-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.position-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.position-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.position-card-top {
  padding: 36px 28px 24px;
  flex: 1;
}

.position-num-badge {
  display: inline-block;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--red);
  background: rgba(232,35,26,0.07);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.position-card h3 {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.position-card p {
  font-size: 0.87rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 20px;
}

.position-benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: #ffffff;
}
.benefit-check {
  width: 20px; height: 20px;
  background: rgba(232,35,26,0.09);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.position-tags-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.ptag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}
.ptag-red { background: rgba(232,35,26,0.09); color: var(--red); }
.ptag-dark { background: rgba(255,255,255,0.1); color: var(--gray-700); }
.ptag-yellow { background: rgba(245,166,35,0.12); color: #B07A00; }

.position-card-bottom {
  border-top: 1px solid #F0F0F0;
  padding: 20px 28px;
}

.income-range {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.income-label {
  font-size: 0.78rem;
  color: #ffffff;
  font-weight: 500;
}

.income-value {
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
}
.income-value span { font-size: 0.78rem; font-weight: 500; color: var(--gray-500); }

.position-cta-btn {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 13px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}
.position-cta-btn:hover { background: var(--red); }

.position-card.featured {
  background: var(--dark);
  color: var(--white);
}
.position-card.featured .position-card-top { background: var(--dark); }
.position-card.featured h3 { color: var(--white); }
.position-card.featured p { color: rgba(255,255,255,0.55); }
.position-card.featured .benefit-item { color: rgba(255,255,255,0.8); }
.position-card.featured .benefit-check { background: rgba(232,35,26,0.25); color: var(--red-light); }
.position-card.featured .position-card-bottom { border-top-color: rgba(255,255,255,0.1); background: #1C1C1C; }
.position-card.featured .income-label { color: rgba(255,255,255,0.45); }
.position-card.featured .income-value { color: var(--white); }
.position-card.featured .position-cta-btn { background: var(--red); }
.position-card.featured .position-cta-btn:hover { background: var(--red-dark); }
.position-card.featured .ptag-dark { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }

/* ===================================
   QUALIFICATIONS
   =================================== */
.qual-section { background: var(--white); }

.qual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.qual-card {
  border: 1px solid #E8E8E8;
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s;
}
.qual-card:hover {
  border-color: rgba(232,35,26,0.25);
  box-shadow: var(--shadow);
}

.qual-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.qual-icon-wrap {
  width: 48px; height: 48px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.qual-header-text h3 {
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.qual-header-text span {
  font-size: 0.78rem;
  color: var(--gray-500);
}

.qual-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qual-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #ffffff;
  line-height: 1.6;
}
.qual-item-bullet {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}
.qual-note {
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(232,35,26,0.05);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--red);
  line-height: 1.7;
}

/* ===================================
   REGIONAL CONTACTS (탭)
   =================================== */
.regional-section { background: #F2F2F2; }

.region-tab-wrapper {
  margin-top: 48px;
}

.region-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  border-bottom: 2px solid #E8E8E8;
  padding-bottom: 0;
}

.region-tab-btn {
  padding: 10px 20px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.region-tab-btn:hover { color: var(--gray-900); background: rgba(0,0,0,0.04); }
.region-tab-btn.active {
  color: var(--red);
  border-bottom-color: var(--red);
  background: rgba(232,35,26,0.04);
}

.region-panel { display: none; }
.region-panel.active { display: block; }

.region-header {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border: 1px solid #EBEBEB;
}

.region-name {
  font-family: inherit;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.region-note {
  font-size: 0.82rem;
  color: var(--gray-500);
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid #EBEBEB;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.contact-card:hover {
  border-color: rgba(232,35,26,0.25);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--red);
}

.contact-role {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(232,35,26,0.08);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.contact-name {
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.contact-area {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.contact-btns {
  display: flex;
  gap: 8px;
}

.contact-btn-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.contact-btn-call:hover {
  background: var(--red-dark);
  box-shadow: var(--shadow-red);
}

.contact-btn-kakao {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  background: #FEE500;
  color: #3A1D1D;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.contact-btn-kakao:hover { background: #F0D800; }

.contact-phone-display {
  font-size: 0.78rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 8px;
}

/* ===================================
   PROCESS
   =================================== */
.process-section { background: var(--dark); color: var(--white); }
.process-section .section-title { color: var(--white); }
.process-section .section-desc { color: rgba(255,255,255,0.5); }
.process-section .section-tag { color: rgba(232,35,26,0.9); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 38px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,35,26,0.4), transparent);
}

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

.step-circle {
  width: 76px; height: 76px;
  border: 2px solid rgba(232,35,26,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--red-light);
  background: rgba(232,35,26,0.06);
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
  transition: all 0.3s;
}

.process-step:hover .step-circle {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}

.step-body h4 {
  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.step-body p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
}

/* ===================================
   APPLY FORM
   =================================== */
.apply-section { background: var(--bg); }

.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
  margin-top: 52px;
}

.apply-info h3 {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.apply-info p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.85;
  margin-bottom: 36px;
}

.quick-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid #E8E8E8;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}
.quick-contact-item:hover {
  border-color: rgba(232,35,26,0.3);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.qc-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.qc-icon.red { background: rgba(232,35,26,0.1); }
.qc-icon.kakao { background: #FEE500; }
.qc-icon.chat { background: rgba(0,150,255,0.1); }

.qc-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gray-500);
  margin-bottom: 2px;
}
.qc-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray-900);
}

.form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid #E8E8E8;
  box-shadow: var(--shadow-sm);
}

.form-box h3 {
  font-family: inherit;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--gray-900);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  margin-bottom: 18px;
}
.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gray-700);
  margin-bottom: 7px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1.5px solid #E8E8E8;
  border-radius: var(--radius-sm);
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.88rem;
  color: var(--gray-900);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--gray-300); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232,35,26,0.08);
  background: var(--white);
}
.form-field select option { background: var(--white); }
.form-field textarea { resize: vertical; min-height: 90px; }

.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 2px;
  transition: all 0.25s;
  margin-top: 4px;
  box-shadow: var(--shadow-red);
}
.submit-btn:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(232,35,26,0.4);
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--gray-300);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}

.form-success {
  display: none;
  margin-top: 14px;
  padding: 14px 18px;
  background: rgba(0,180,80,0.08);
  border: 1px solid rgba(0,180,80,0.25);
  border-radius: var(--radius-sm);
  color: #00A855;
  font-size: 0.87rem;
  font-weight: 600;
  text-align: center;
}
.form-success.show { display: block; }

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

.faq-list {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #E8E8E8;
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(232,35,26,0.25); }

.faq-q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}
.faq-q:hover { background: rgba(0,0,0,0.02); }

.faq-q-num {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--red);
  min-width: 28px;
}

.faq-q-text {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray-900);
  flex: 1;
}

.faq-q-arrow {
  color: var(--gray-300);
  font-size: 1.1rem;
  transition: transform 0.3s;
}
.faq-item.open .faq-q-arrow { transform: rotate(180deg); color: var(--red); }

.faq-a {
  display: none;
  padding: 0 24px 20px 68px;
  font-size: 0.87rem;
  color: var(--gray-500);
  line-height: 1.85;
}
.faq-item.open .faq-a { display: block; }

/* ===================================
   FOOTER
   =================================== */
footer {
  background: #0A0A0A;
  color: rgba(255,255,255,0.5);
  padding: 56px 24px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}

.footer-brand {}
.footer-logo-text {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-logo-text span { color: var(--red); }
.footer-tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.78rem; }
.footer-right-text {
  font-size: 0.75rem;
  color: rgba(255,26,26,0.5);
}

/* ===================================
   FLOATING BTNS
   =================================== */
.floating-btns {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 900;
}

.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: all 0.2s;
}
.float-btn:hover { transform: scale(1.1); }

.float-call { background: var(--red); }
.float-kakao { background: #FEE500; }
.float-top {
  background: #222;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  border: none;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(1, 1fr); }
  .positions-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .qual-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .apply-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: 2.5rem; }
  .hero-stats { gap: 16px; }
  .hero-stat { min-width: 80px; }
  .hero-stat + .hero-stat { padding-left: 16px; }
  .hero-stat-num { font-size: 1.7rem; }
  .why-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 20px; }
  .region-tabs { gap: 4px; }
  .region-tab-btn { padding: 8px 12px; font-size: 0.82rem; }
  .contacts-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .form-box { padding: 28px 20px; }
  .footer-top { flex-direction: column; }
  .footer-links { gap: 32px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-ghost { justify-content: center; width: 100%; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-stat + .hero-stat { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); padding-left: 0; padding-top: 20px; }
  .hero-stat { min-width: unset; padding-right: 0; }
  .process-steps { grid-template-columns: 1fr; }
  .region-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
}


/* ===================================
   🔥 LOGO DARK BOX FIX
   =================================== */

.logo-darkbox {
    background: rgba(0,0,0,0.85) !important;
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}

.logo-darkbox img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
}

/* Slightly bigger on desktop */
@media (min-width: 768px) {
    .logo-darkbox img {
        width: 34px;
        height: 34px;
    }
}



/* =============================
   🌌 HERO ONLY SPACE EFFECT
   ============================= */

.hero {
  position: relative;
  overflow: hidden;
}

.hero-space-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-star-canvas,
#heroStarCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-galaxy {
  position: absolute;
  inset: -30%;
  opacity: 0.35;
  background:
    radial-gradient(circle at 30% 30%, rgba(120,180,255,0.25), transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(232,35,26,0.18), transparent 70%),
    conic-gradient(from 0deg,
      rgba(255,255,255,0.05),
      rgba(120,180,255,0.10),
      rgba(232,35,26,0.08),
      rgba(255,255,255,0.05)
    );
  filter: blur(40px);
  animation: heroGalaxyRotate 120s linear infinite;
}

@keyframes heroGalaxyRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* hero 내부 텍스트 위로 올리기 */
.hero > *:not(.hero-space-bg) {
  position: relative;
  z-index: 2;
}

/* =========================
   🌙 GLOBAL DARK MODE
   ========================= */

body {
  background: #0b0f18 !important;
  color: rgba(255,255,255,0.88) !important;
}

/* 섹션 기본 배경 */
.section,
footer {
  background: #0f1420 !important;
}

/* 카드들 */
.why-card,
.position-card,
.qual-card,
.region-header,
.contact-card,
.form-box,
.faq-item {
  background: #141b2a !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* 텍스트 */
.section-title,
h1, h2, h3, h4 {
  color: #ffffff !important;
}

.section-desc,
p,
span {
  color: #ffffff !important;
}

/* 네비바 */
.navbar {
  background: rgba(10,15,25,0.9) !important;
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}

.nav-links a {
  color: rgba(255,255,255,0.75) !important;
}

.nav-links a:hover {
  color: #ffffff !important;
  background: rgba(255,255,255,0.08) !important;
}

/* 버튼 */
.primary-btn,
.btn-primary {
  background: linear-gradient(135deg, #ff2d2d, #e8231a);
  box-shadow: 0 8px 25px rgba(232,35,26,0.4);
}

.secondary-btn {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
}


/* =============================
   ♿ prefers-reduced-motion
   ============================= */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}


/* ===== Accessibility Hard Fix ===== */

body {
  background: #0b0f18 !important;
  color: #ffffff !important;
}

a { color: #ffffff !important; }

p, span, .section-desc {
  color: rgba(255,255,255,0.92) !important;
}

.nav-links a {
  color: #ffffff !important;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  background: #ffffff;
  color: #000000;
  padding: 12px 16px;
  border-radius: 8px;
  z-index: 9999;
}

.skip-link:focus {
  left: 20px;
  top: 20px;
}

:focus {
  outline: 3px solid #ff2d2d !important;
  outline-offset: 2px;
}
